i965: Rework Sandybridge 3DSTATE_VIEWPORT_STATE_POINTERS.
[mesa.git] / src / mesa / drivers / dri / i965 / genX_state_upload.c
1 /*
2 * Copyright © 2017 Intel Corporation
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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25
26 #include "common/gen_device_info.h"
27 #include "common/gen_sample_positions.h"
28 #include "genxml/gen_macros.h"
29
30 #include "main/bufferobj.h"
31 #include "main/context.h"
32 #include "main/enums.h"
33 #include "main/macros.h"
34
35 #include "brw_context.h"
36 #if GEN_GEN == 6
37 #include "brw_defines.h"
38 #endif
39 #include "brw_draw.h"
40 #include "brw_multisample_state.h"
41 #include "brw_state.h"
42 #include "brw_wm.h"
43 #include "brw_util.h"
44
45 #include "intel_batchbuffer.h"
46 #include "intel_buffer_objects.h"
47 #include "intel_fbo.h"
48
49 #include "main/enums.h"
50 #include "main/fbobject.h"
51 #include "main/framebuffer.h"
52 #include "main/glformats.h"
53 #include "main/shaderapi.h"
54 #include "main/stencil.h"
55 #include "main/transformfeedback.h"
56 #include "main/varray.h"
57 #include "main/viewport.h"
58
59 UNUSED static void *
60 emit_dwords(struct brw_context *brw, unsigned n)
61 {
62 intel_batchbuffer_begin(brw, n, RENDER_RING);
63 uint32_t *map = brw->batch.map_next;
64 brw->batch.map_next += n;
65 intel_batchbuffer_advance(brw);
66 return map;
67 }
68
69 struct brw_address {
70 struct brw_bo *bo;
71 uint32_t read_domains;
72 uint32_t write_domain;
73 uint32_t offset;
74 };
75
76 static uint64_t
77 emit_reloc(struct brw_context *brw,
78 void *location, struct brw_address address, uint32_t delta)
79 {
80 uint32_t offset = (char *) location - (char *) brw->batch.map;
81
82 return brw_emit_reloc(&brw->batch, offset, address.bo,
83 address.offset + delta,
84 address.read_domains,
85 address.write_domain);
86 }
87
88 #define __gen_address_type struct brw_address
89 #define __gen_user_data struct brw_context
90
91 static uint64_t
92 __gen_combine_address(struct brw_context *brw, void *location,
93 struct brw_address address, uint32_t delta)
94 {
95 if (address.bo == NULL) {
96 return address.offset + delta;
97 } else {
98 return emit_reloc(brw, location, address, delta);
99 }
100 }
101
102 static inline struct brw_address
103 render_bo(struct brw_bo *bo, uint32_t offset)
104 {
105 return (struct brw_address) {
106 .bo = bo,
107 .offset = offset,
108 .read_domains = I915_GEM_DOMAIN_RENDER,
109 .write_domain = I915_GEM_DOMAIN_RENDER,
110 };
111 }
112
113 static inline struct brw_address
114 render_ro_bo(struct brw_bo *bo, uint32_t offset)
115 {
116 return (struct brw_address) {
117 .bo = bo,
118 .offset = offset,
119 .read_domains = I915_GEM_DOMAIN_RENDER,
120 .write_domain = 0,
121 };
122 }
123
124 static inline struct brw_address
125 instruction_bo(struct brw_bo *bo, uint32_t offset)
126 {
127 return (struct brw_address) {
128 .bo = bo,
129 .offset = offset,
130 .read_domains = I915_GEM_DOMAIN_INSTRUCTION,
131 .write_domain = I915_GEM_DOMAIN_INSTRUCTION,
132 };
133 }
134
135 static inline struct brw_address
136 instruction_ro_bo(struct brw_bo *bo, uint32_t offset)
137 {
138 return (struct brw_address) {
139 .bo = bo,
140 .offset = offset,
141 .read_domains = I915_GEM_DOMAIN_INSTRUCTION,
142 .write_domain = 0,
143 };
144 }
145
146 static inline struct brw_address
147 vertex_bo(struct brw_bo *bo, uint32_t offset)
148 {
149 return (struct brw_address) {
150 .bo = bo,
151 .offset = offset,
152 .read_domains = I915_GEM_DOMAIN_VERTEX,
153 .write_domain = 0,
154 };
155 }
156
157 #include "genxml/genX_pack.h"
158
159 #define _brw_cmd_length(cmd) cmd ## _length
160 #define _brw_cmd_length_bias(cmd) cmd ## _length_bias
161 #define _brw_cmd_header(cmd) cmd ## _header
162 #define _brw_cmd_pack(cmd) cmd ## _pack
163
164 #define brw_batch_emit(brw, cmd, name) \
165 for (struct cmd name = { _brw_cmd_header(cmd) }, \
166 *_dst = emit_dwords(brw, _brw_cmd_length(cmd)); \
167 __builtin_expect(_dst != NULL, 1); \
168 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
169 _dst = NULL)
170
171 #define brw_batch_emitn(brw, cmd, n, ...) ({ \
172 uint32_t *_dw = emit_dwords(brw, n); \
173 struct cmd template = { \
174 _brw_cmd_header(cmd), \
175 .DWordLength = n - _brw_cmd_length_bias(cmd), \
176 __VA_ARGS__ \
177 }; \
178 _brw_cmd_pack(cmd)(brw, _dw, &template); \
179 _dw + 1; /* Array starts at dw[1] */ \
180 })
181
182 #define brw_state_emit(brw, cmd, align, offset, name) \
183 for (struct cmd name = { 0, }, \
184 *_dst = brw_state_batch(brw, _brw_cmd_length(cmd) * 4, \
185 align, offset); \
186 __builtin_expect(_dst != NULL, 1); \
187 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
188 _dst = NULL)
189
190 /**
191 * Polygon stipple packet
192 */
193 static void
194 genX(upload_polygon_stipple)(struct brw_context *brw)
195 {
196 struct gl_context *ctx = &brw->ctx;
197
198 /* _NEW_POLYGON */
199 if (!ctx->Polygon.StippleFlag)
200 return;
201
202 brw_batch_emit(brw, GENX(3DSTATE_POLY_STIPPLE_PATTERN), poly) {
203 /* Polygon stipple is provided in OpenGL order, i.e. bottom
204 * row first. If we're rendering to a window (i.e. the
205 * default frame buffer object, 0), then we need to invert
206 * it to match our pixel layout. But if we're rendering
207 * to a FBO (i.e. any named frame buffer object), we *don't*
208 * need to invert - we already match the layout.
209 */
210 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
211 for (unsigned i = 0; i < 32; i++)
212 poly.PatternRow[i] = ctx->PolygonStipple[31 - i]; /* invert */
213 } else {
214 for (unsigned i = 0; i < 32; i++)
215 poly.PatternRow[i] = ctx->PolygonStipple[i];
216 }
217 }
218 }
219
220 static const struct brw_tracked_state genX(polygon_stipple) = {
221 .dirty = {
222 .mesa = _NEW_POLYGON |
223 _NEW_POLYGONSTIPPLE,
224 .brw = BRW_NEW_CONTEXT,
225 },
226 .emit = genX(upload_polygon_stipple),
227 };
228
229 /**
230 * Polygon stipple offset packet
231 */
232 static void
233 genX(upload_polygon_stipple_offset)(struct brw_context *brw)
234 {
235 struct gl_context *ctx = &brw->ctx;
236
237 /* _NEW_POLYGON */
238 if (!ctx->Polygon.StippleFlag)
239 return;
240
241 brw_batch_emit(brw, GENX(3DSTATE_POLY_STIPPLE_OFFSET), poly) {
242 /* _NEW_BUFFERS
243 *
244 * If we're drawing to a system window we have to invert the Y axis
245 * in order to match the OpenGL pixel coordinate system, and our
246 * offset must be matched to the window position. If we're drawing
247 * to a user-created FBO then our native pixel coordinate system
248 * works just fine, and there's no window system to worry about.
249 */
250 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
251 poly.PolygonStippleYOffset =
252 (32 - (_mesa_geometric_height(ctx->DrawBuffer) & 31)) & 31;
253 }
254 }
255 }
256
257 static const struct brw_tracked_state genX(polygon_stipple_offset) = {
258 .dirty = {
259 .mesa = _NEW_BUFFERS |
260 _NEW_POLYGON,
261 .brw = BRW_NEW_CONTEXT,
262 },
263 .emit = genX(upload_polygon_stipple_offset),
264 };
265
266 /**
267 * Line stipple packet
268 */
269 static void
270 genX(upload_line_stipple)(struct brw_context *brw)
271 {
272 struct gl_context *ctx = &brw->ctx;
273
274 if (!ctx->Line.StippleFlag)
275 return;
276
277 brw_batch_emit(brw, GENX(3DSTATE_LINE_STIPPLE), line) {
278 line.LineStipplePattern = ctx->Line.StipplePattern;
279
280 line.LineStippleInverseRepeatCount = 1.0f / ctx->Line.StippleFactor;
281 line.LineStippleRepeatCount = ctx->Line.StippleFactor;
282 }
283 }
284
285 static const struct brw_tracked_state genX(line_stipple) = {
286 .dirty = {
287 .mesa = _NEW_LINE,
288 .brw = BRW_NEW_CONTEXT,
289 },
290 .emit = genX(upload_line_stipple),
291 };
292
293 /* Constant single cliprect for framebuffer object or DRI2 drawing */
294 static void
295 genX(upload_drawing_rect)(struct brw_context *brw)
296 {
297 struct gl_context *ctx = &brw->ctx;
298 const struct gl_framebuffer *fb = ctx->DrawBuffer;
299 const unsigned int fb_width = _mesa_geometric_width(fb);
300 const unsigned int fb_height = _mesa_geometric_height(fb);
301
302 brw_batch_emit(brw, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
303 rect.ClippedDrawingRectangleXMax = fb_width - 1;
304 rect.ClippedDrawingRectangleYMax = fb_height - 1;
305 }
306 }
307
308 static const struct brw_tracked_state genX(drawing_rect) = {
309 .dirty = {
310 .mesa = _NEW_BUFFERS,
311 .brw = BRW_NEW_BLORP |
312 BRW_NEW_CONTEXT,
313 },
314 .emit = genX(upload_drawing_rect),
315 };
316
317 static uint32_t *
318 genX(emit_vertex_buffer_state)(struct brw_context *brw,
319 uint32_t *dw,
320 unsigned buffer_nr,
321 struct brw_bo *bo,
322 unsigned start_offset,
323 unsigned end_offset,
324 unsigned stride,
325 unsigned step_rate)
326 {
327 struct GENX(VERTEX_BUFFER_STATE) buf_state = {
328 .VertexBufferIndex = buffer_nr,
329 .BufferPitch = stride,
330 .BufferStartingAddress = vertex_bo(bo, start_offset),
331 #if GEN_GEN >= 8
332 .BufferSize = end_offset - start_offset,
333 #endif
334
335 #if GEN_GEN >= 7
336 .AddressModifyEnable = true,
337 #endif
338
339 #if GEN_GEN < 8
340 .BufferAccessType = step_rate ? INSTANCEDATA : VERTEXDATA,
341 .InstanceDataStepRate = step_rate,
342 #if GEN_GEN >= 5
343 .EndAddress = vertex_bo(bo, end_offset - 1),
344 #endif
345 #endif
346
347 #if GEN_GEN == 9
348 .VertexBufferMOCS = SKL_MOCS_WB,
349 #elif GEN_GEN == 8
350 .VertexBufferMOCS = BDW_MOCS_WB,
351 #elif GEN_GEN == 7
352 .VertexBufferMOCS = GEN7_MOCS_L3,
353 #endif
354 };
355
356 GENX(VERTEX_BUFFER_STATE_pack)(brw, dw, &buf_state);
357 return dw + GENX(VERTEX_BUFFER_STATE_length);
358 }
359
360 UNUSED static bool
361 is_passthru_format(uint32_t format)
362 {
363 switch (format) {
364 case ISL_FORMAT_R64_PASSTHRU:
365 case ISL_FORMAT_R64G64_PASSTHRU:
366 case ISL_FORMAT_R64G64B64_PASSTHRU:
367 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
368 return true;
369 default:
370 return false;
371 }
372 }
373
374 UNUSED static int
375 uploads_needed(uint32_t format)
376 {
377 if (!is_passthru_format(format))
378 return 1;
379
380 switch (format) {
381 case ISL_FORMAT_R64_PASSTHRU:
382 case ISL_FORMAT_R64G64_PASSTHRU:
383 return 1;
384 case ISL_FORMAT_R64G64B64_PASSTHRU:
385 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
386 return 2;
387 default:
388 unreachable("not reached");
389 }
390 }
391
392 /*
393 * Returns the format that we are finally going to use when upload a vertex
394 * element. It will only change if we are using *64*PASSTHRU formats, as for
395 * gen < 8 they need to be splitted on two *32*FLOAT formats.
396 *
397 * @upload points in which upload we are. Valid values are [0,1]
398 */
399 static uint32_t
400 downsize_format_if_needed(uint32_t format,
401 int upload)
402 {
403 assert(upload == 0 || upload == 1);
404
405 if (!is_passthru_format(format))
406 return format;
407
408 switch (format) {
409 case ISL_FORMAT_R64_PASSTHRU:
410 return ISL_FORMAT_R32G32_FLOAT;
411 case ISL_FORMAT_R64G64_PASSTHRU:
412 return ISL_FORMAT_R32G32B32A32_FLOAT;
413 case ISL_FORMAT_R64G64B64_PASSTHRU:
414 return !upload ? ISL_FORMAT_R32G32B32A32_FLOAT
415 : ISL_FORMAT_R32G32_FLOAT;
416 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
417 return ISL_FORMAT_R32G32B32A32_FLOAT;
418 default:
419 unreachable("not reached");
420 }
421 }
422
423 /*
424 * Returns the number of componentes associated with a format that is used on
425 * a 64 to 32 format split. See downsize_format()
426 */
427 static int
428 upload_format_size(uint32_t upload_format)
429 {
430 switch (upload_format) {
431 case ISL_FORMAT_R32G32_FLOAT:
432 return 2;
433 case ISL_FORMAT_R32G32B32A32_FLOAT:
434 return 4;
435 default:
436 unreachable("not reached");
437 }
438 }
439
440 static void
441 genX(emit_vertices)(struct brw_context *brw)
442 {
443 uint32_t *dw;
444
445 brw_prepare_vertices(brw);
446 brw_prepare_shader_draw_parameters(brw);
447
448 #if GEN_GEN < 6
449 brw_emit_query_begin(brw);
450 #endif
451
452 const struct brw_vs_prog_data *vs_prog_data =
453 brw_vs_prog_data(brw->vs.base.prog_data);
454
455 #if GEN_GEN >= 8
456 struct gl_context *ctx = &brw->ctx;
457 const bool uses_edge_flag = (ctx->Polygon.FrontMode != GL_FILL ||
458 ctx->Polygon.BackMode != GL_FILL);
459
460 if (vs_prog_data->uses_vertexid || vs_prog_data->uses_instanceid) {
461 unsigned vue = brw->vb.nr_enabled;
462
463 /* The element for the edge flags must always be last, so we have to
464 * insert the SGVS before it in that case.
465 */
466 if (uses_edge_flag) {
467 assert(vue > 0);
468 vue--;
469 }
470
471 WARN_ONCE(vue >= 33,
472 "Trying to insert VID/IID past 33rd vertex element, "
473 "need to reorder the vertex attrbutes.");
474
475 brw_batch_emit(brw, GENX(3DSTATE_VF_SGVS), vfs) {
476 if (vs_prog_data->uses_vertexid) {
477 vfs.VertexIDEnable = true;
478 vfs.VertexIDComponentNumber = 2;
479 vfs.VertexIDElementOffset = vue;
480 }
481
482 if (vs_prog_data->uses_instanceid) {
483 vfs.InstanceIDEnable = true;
484 vfs.InstanceIDComponentNumber = 3;
485 vfs.InstanceIDElementOffset = vue;
486 }
487 }
488
489 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
490 vfi.InstancingEnable = true;
491 vfi.VertexElementIndex = vue;
492 }
493 } else {
494 brw_batch_emit(brw, GENX(3DSTATE_VF_SGVS), vfs);
495 }
496
497 /* Normally we don't need an element for the SGVS attribute because the
498 * 3DSTATE_VF_SGVS instruction lets you store the generated attribute in an
499 * element that is past the list in 3DSTATE_VERTEX_ELEMENTS. However if
500 * we're using draw parameters then we need an element for the those
501 * values. Additionally if there is an edge flag element then the SGVS
502 * can't be inserted past that so we need a dummy element to ensure that
503 * the edge flag is the last one.
504 */
505 const bool needs_sgvs_element = (vs_prog_data->uses_basevertex ||
506 vs_prog_data->uses_baseinstance ||
507 ((vs_prog_data->uses_instanceid ||
508 vs_prog_data->uses_vertexid)
509 && uses_edge_flag));
510 #else
511 const bool needs_sgvs_element = (vs_prog_data->uses_basevertex ||
512 vs_prog_data->uses_baseinstance ||
513 vs_prog_data->uses_instanceid ||
514 vs_prog_data->uses_vertexid);
515 #endif
516 unsigned nr_elements =
517 brw->vb.nr_enabled + needs_sgvs_element + vs_prog_data->uses_drawid;
518
519 #if GEN_GEN < 8
520 /* If any of the formats of vb.enabled needs more that one upload, we need
521 * to add it to nr_elements
522 */
523 for (unsigned i = 0; i < brw->vb.nr_enabled; i++) {
524 struct brw_vertex_element *input = brw->vb.enabled[i];
525 uint32_t format = brw_get_vertex_surface_type(brw, input->glarray);
526
527 if (uploads_needed(format) > 1)
528 nr_elements++;
529 }
530 #endif
531
532 /* If the VS doesn't read any inputs (calculating vertex position from
533 * a state variable for some reason, for example), emit a single pad
534 * VERTEX_ELEMENT struct and bail.
535 *
536 * The stale VB state stays in place, but they don't do anything unless
537 * a VE loads from them.
538 */
539 if (nr_elements == 0) {
540 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_ELEMENTS),
541 1 + GENX(VERTEX_ELEMENT_STATE_length));
542 struct GENX(VERTEX_ELEMENT_STATE) elem = {
543 .Valid = true,
544 .SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT,
545 .Component0Control = VFCOMP_STORE_0,
546 .Component1Control = VFCOMP_STORE_0,
547 .Component2Control = VFCOMP_STORE_0,
548 .Component3Control = VFCOMP_STORE_1_FP,
549 };
550 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem);
551 return;
552 }
553
554 /* Now emit 3DSTATE_VERTEX_BUFFERS and 3DSTATE_VERTEX_ELEMENTS packets. */
555 const bool uses_draw_params =
556 vs_prog_data->uses_basevertex ||
557 vs_prog_data->uses_baseinstance;
558 const unsigned nr_buffers = brw->vb.nr_buffers +
559 uses_draw_params + vs_prog_data->uses_drawid;
560
561 if (nr_buffers) {
562 assert(nr_buffers <= (GEN_GEN >= 6 ? 33 : 17));
563
564 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_BUFFERS),
565 1 + GENX(VERTEX_BUFFER_STATE_length) * nr_buffers);
566
567 for (unsigned i = 0; i < brw->vb.nr_buffers; i++) {
568 const struct brw_vertex_buffer *buffer = &brw->vb.buffers[i];
569 /* Prior to Haswell and Bay Trail we have to use 4-component formats
570 * to fake 3-component ones. In particular, we do this for
571 * half-float and 8 and 16-bit integer formats. This means that the
572 * vertex element may poke over the end of the buffer by 2 bytes.
573 */
574 const unsigned padding =
575 (GEN_GEN <= 7 && !brw->is_baytrail && !brw->is_haswell) * 2;
576 const unsigned end = buffer->offset + buffer->size + padding;
577 dw = genX(emit_vertex_buffer_state)(brw, dw, i, buffer->bo,
578 buffer->offset,
579 end,
580 buffer->stride,
581 buffer->step_rate);
582 }
583
584 if (uses_draw_params) {
585 dw = genX(emit_vertex_buffer_state)(brw, dw, brw->vb.nr_buffers,
586 brw->draw.draw_params_bo,
587 brw->draw.draw_params_offset,
588 brw->draw.draw_params_bo->size,
589 0 /* stride */,
590 0 /* step rate */);
591 }
592
593 if (vs_prog_data->uses_drawid) {
594 dw = genX(emit_vertex_buffer_state)(brw, dw, brw->vb.nr_buffers + 1,
595 brw->draw.draw_id_bo,
596 brw->draw.draw_id_offset,
597 brw->draw.draw_id_bo->size,
598 0 /* stride */,
599 0 /* step rate */);
600 }
601 }
602
603 /* The hardware allows one more VERTEX_ELEMENTS than VERTEX_BUFFERS,
604 * presumably for VertexID/InstanceID.
605 */
606 #if GEN_GEN >= 6
607 assert(nr_elements <= 34);
608 const struct brw_vertex_element *gen6_edgeflag_input = NULL;
609 #else
610 assert(nr_elements <= 18);
611 #endif
612
613 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_ELEMENTS),
614 1 + GENX(VERTEX_ELEMENT_STATE_length) * nr_elements);
615 unsigned i;
616 for (i = 0; i < brw->vb.nr_enabled; i++) {
617 const struct brw_vertex_element *input = brw->vb.enabled[i];
618 uint32_t format = brw_get_vertex_surface_type(brw, input->glarray);
619 uint32_t comp0 = VFCOMP_STORE_SRC;
620 uint32_t comp1 = VFCOMP_STORE_SRC;
621 uint32_t comp2 = VFCOMP_STORE_SRC;
622 uint32_t comp3 = VFCOMP_STORE_SRC;
623 const unsigned num_uploads = GEN_GEN < 8 ? uploads_needed(format) : 1;
624
625 #if GEN_GEN >= 8
626 /* From the BDW PRM, Volume 2d, page 588 (VERTEX_ELEMENT_STATE):
627 * "Any SourceElementFormat of *64*_PASSTHRU cannot be used with an
628 * element which has edge flag enabled."
629 */
630 assert(!(is_passthru_format(format) && uses_edge_flag));
631 #endif
632
633 /* The gen4 driver expects edgeflag to come in as a float, and passes
634 * that float on to the tests in the clipper. Mesa's current vertex
635 * attribute value for EdgeFlag is stored as a float, which works out.
636 * glEdgeFlagPointer, on the other hand, gives us an unnormalized
637 * integer ubyte. Just rewrite that to convert to a float.
638 *
639 * Gen6+ passes edgeflag as sideband along with the vertex, instead
640 * of in the VUE. We have to upload it sideband as the last vertex
641 * element according to the B-Spec.
642 */
643 #if GEN_GEN >= 6
644 if (input == &brw->vb.inputs[VERT_ATTRIB_EDGEFLAG]) {
645 gen6_edgeflag_input = input;
646 continue;
647 }
648 #endif
649
650 for (unsigned c = 0; c < num_uploads; c++) {
651 const uint32_t upload_format = GEN_GEN >= 8 ? format :
652 downsize_format_if_needed(format, c);
653 /* If we need more that one upload, the offset stride would be 128
654 * bits (16 bytes), as for previous uploads we are using the full
655 * entry. */
656 const unsigned offset = input->offset + c * 16;
657
658 const int size = (GEN_GEN < 8 && is_passthru_format(format)) ?
659 upload_format_size(upload_format) : input->glarray->Size;
660
661 switch (size) {
662 case 0: comp0 = VFCOMP_STORE_0;
663 case 1: comp1 = VFCOMP_STORE_0;
664 case 2: comp2 = VFCOMP_STORE_0;
665 case 3:
666 if (GEN_GEN >= 8 && input->glarray->Doubles) {
667 comp3 = VFCOMP_STORE_0;
668 } else if (input->glarray->Integer) {
669 comp3 = VFCOMP_STORE_1_INT;
670 } else {
671 comp3 = VFCOMP_STORE_1_FP;
672 }
673
674 break;
675 }
676
677 #if GEN_GEN >= 8
678 /* From the BDW PRM, Volume 2d, page 586 (VERTEX_ELEMENT_STATE):
679 *
680 * "When SourceElementFormat is set to one of the *64*_PASSTHRU
681 * formats, 64-bit components are stored in the URB without any
682 * conversion. In this case, vertex elements must be written as 128
683 * or 256 bits, with VFCOMP_STORE_0 being used to pad the output as
684 * required. E.g., if R64_PASSTHRU is used to copy a 64-bit Red
685 * component into the URB, Component 1 must be specified as
686 * VFCOMP_STORE_0 (with Components 2,3 set to VFCOMP_NOSTORE) in
687 * order to output a 128-bit vertex element, or Components 1-3 must
688 * be specified as VFCOMP_STORE_0 in order to output a 256-bit vertex
689 * element. Likewise, use of R64G64B64_PASSTHRU requires Component 3
690 * to be specified as VFCOMP_STORE_0 in order to output a 256-bit
691 * vertex element."
692 */
693 if (input->glarray->Doubles && !input->is_dual_slot) {
694 /* Store vertex elements which correspond to double and dvec2 vertex
695 * shader inputs as 128-bit vertex elements, instead of 256-bits.
696 */
697 comp2 = VFCOMP_NOSTORE;
698 comp3 = VFCOMP_NOSTORE;
699 }
700 #endif
701
702 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
703 .VertexBufferIndex = input->buffer,
704 .Valid = true,
705 .SourceElementFormat = upload_format,
706 .SourceElementOffset = offset,
707 .Component0Control = comp0,
708 .Component1Control = comp1,
709 .Component2Control = comp2,
710 .Component3Control = comp3,
711 #if GEN_GEN < 5
712 .DestinationElementOffset = i * 4,
713 #endif
714 };
715
716 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
717 dw += GENX(VERTEX_ELEMENT_STATE_length);
718 }
719 }
720
721 if (needs_sgvs_element) {
722 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
723 .Valid = true,
724 .Component0Control = VFCOMP_STORE_0,
725 .Component1Control = VFCOMP_STORE_0,
726 .Component2Control = VFCOMP_STORE_0,
727 .Component3Control = VFCOMP_STORE_0,
728 #if GEN_GEN < 5
729 .DestinationElementOffset = i * 4,
730 #endif
731 };
732
733 #if GEN_GEN >= 8
734 if (vs_prog_data->uses_basevertex ||
735 vs_prog_data->uses_baseinstance) {
736 elem_state.VertexBufferIndex = brw->vb.nr_buffers;
737 elem_state.SourceElementFormat = ISL_FORMAT_R32G32_UINT;
738 elem_state.Component0Control = VFCOMP_STORE_SRC;
739 elem_state.Component1Control = VFCOMP_STORE_SRC;
740 }
741 #else
742 elem_state.VertexBufferIndex = brw->vb.nr_buffers;
743 elem_state.SourceElementFormat = ISL_FORMAT_R32G32_UINT;
744 if (vs_prog_data->uses_basevertex)
745 elem_state.Component0Control = VFCOMP_STORE_SRC;
746
747 if (vs_prog_data->uses_baseinstance)
748 elem_state.Component1Control = VFCOMP_STORE_SRC;
749
750 if (vs_prog_data->uses_vertexid)
751 elem_state.Component2Control = VFCOMP_STORE_VID;
752
753 if (vs_prog_data->uses_instanceid)
754 elem_state.Component3Control = VFCOMP_STORE_IID;
755 #endif
756
757 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
758 dw += GENX(VERTEX_ELEMENT_STATE_length);
759 }
760
761 if (vs_prog_data->uses_drawid) {
762 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
763 .Valid = true,
764 .VertexBufferIndex = brw->vb.nr_buffers + 1,
765 .SourceElementFormat = ISL_FORMAT_R32_UINT,
766 .Component0Control = VFCOMP_STORE_SRC,
767 .Component1Control = VFCOMP_STORE_0,
768 .Component2Control = VFCOMP_STORE_0,
769 .Component3Control = VFCOMP_STORE_0,
770 #if GEN_GEN < 5
771 .DestinationElementOffset = i * 4,
772 #endif
773 };
774
775 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
776 dw += GENX(VERTEX_ELEMENT_STATE_length);
777 }
778
779 #if GEN_GEN >= 6
780 if (gen6_edgeflag_input) {
781 const uint32_t format =
782 brw_get_vertex_surface_type(brw, gen6_edgeflag_input->glarray);
783
784 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
785 .Valid = true,
786 .VertexBufferIndex = gen6_edgeflag_input->buffer,
787 .EdgeFlagEnable = true,
788 .SourceElementFormat = format,
789 .SourceElementOffset = gen6_edgeflag_input->offset,
790 .Component0Control = VFCOMP_STORE_SRC,
791 .Component1Control = VFCOMP_STORE_0,
792 .Component2Control = VFCOMP_STORE_0,
793 .Component3Control = VFCOMP_STORE_0,
794 };
795
796 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
797 dw += GENX(VERTEX_ELEMENT_STATE_length);
798 }
799 #endif
800
801 #if GEN_GEN >= 8
802 for (unsigned i = 0, j = 0; i < brw->vb.nr_enabled; i++) {
803 const struct brw_vertex_element *input = brw->vb.enabled[i];
804 const struct brw_vertex_buffer *buffer = &brw->vb.buffers[input->buffer];
805 unsigned element_index;
806
807 /* The edge flag element is reordered to be the last one in the code
808 * above so we need to compensate for that in the element indices used
809 * below.
810 */
811 if (input == gen6_edgeflag_input)
812 element_index = nr_elements - 1;
813 else
814 element_index = j++;
815
816 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
817 vfi.VertexElementIndex = element_index;
818 vfi.InstancingEnable = buffer->step_rate != 0;
819 vfi.InstanceDataStepRate = buffer->step_rate;
820 }
821 }
822
823 if (vs_prog_data->uses_drawid) {
824 const unsigned element = brw->vb.nr_enabled + needs_sgvs_element;
825
826 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
827 vfi.VertexElementIndex = element;
828 }
829 }
830 #endif
831 }
832
833 static const struct brw_tracked_state genX(vertices) = {
834 .dirty = {
835 .mesa = _NEW_POLYGON,
836 .brw = BRW_NEW_BATCH |
837 BRW_NEW_BLORP |
838 BRW_NEW_VERTICES |
839 BRW_NEW_VS_PROG_DATA,
840 },
841 .emit = genX(emit_vertices),
842 };
843
844 static void
845 genX(emit_index_buffer)(struct brw_context *brw)
846 {
847 const struct _mesa_index_buffer *index_buffer = brw->ib.ib;
848
849 if (index_buffer == NULL)
850 return;
851
852 brw_batch_emit(brw, GENX(3DSTATE_INDEX_BUFFER), ib) {
853 #if GEN_GEN < 8 && !GEN_IS_HASWELL
854 ib.CutIndexEnable = brw->prim_restart.enable_cut_index;
855 #endif
856 ib.IndexFormat = brw_get_index_type(index_buffer->index_size);
857 ib.BufferStartingAddress = vertex_bo(brw->ib.bo, 0);
858 #if GEN_GEN >= 8
859 ib.IndexBufferMOCS = GEN_GEN >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
860 ib.BufferSize = brw->ib.size;
861 #else
862 ib.BufferEndingAddress = vertex_bo(brw->ib.bo, brw->ib.size - 1);
863 #endif
864 }
865 }
866
867 static const struct brw_tracked_state genX(index_buffer) = {
868 .dirty = {
869 .mesa = 0,
870 .brw = BRW_NEW_BATCH |
871 BRW_NEW_BLORP |
872 BRW_NEW_INDEX_BUFFER,
873 },
874 .emit = genX(emit_index_buffer),
875 };
876
877 #if GEN_IS_HASWELL || GEN_GEN >= 8
878 static void
879 genX(upload_cut_index)(struct brw_context *brw)
880 {
881 const struct gl_context *ctx = &brw->ctx;
882
883 brw_batch_emit(brw, GENX(3DSTATE_VF), vf) {
884 if (ctx->Array._PrimitiveRestart && brw->ib.ib) {
885 vf.IndexedDrawCutIndexEnable = true;
886 vf.CutIndex = _mesa_primitive_restart_index(ctx, brw->ib.index_size);
887 }
888 }
889 }
890
891 const struct brw_tracked_state genX(cut_index) = {
892 .dirty = {
893 .mesa = _NEW_TRANSFORM,
894 .brw = BRW_NEW_INDEX_BUFFER,
895 },
896 .emit = genX(upload_cut_index),
897 };
898 #endif
899
900 #if GEN_GEN >= 6
901 /**
902 * Determine the appropriate attribute override value to store into the
903 * 3DSTATE_SF structure for a given fragment shader attribute. The attribute
904 * override value contains two pieces of information: the location of the
905 * attribute in the VUE (relative to urb_entry_read_offset, see below), and a
906 * flag indicating whether to "swizzle" the attribute based on the direction
907 * the triangle is facing.
908 *
909 * If an attribute is "swizzled", then the given VUE location is used for
910 * front-facing triangles, and the VUE location that immediately follows is
911 * used for back-facing triangles. We use this to implement the mapping from
912 * gl_FrontColor/gl_BackColor to gl_Color.
913 *
914 * urb_entry_read_offset is the offset into the VUE at which the SF unit is
915 * being instructed to begin reading attribute data. It can be set to a
916 * nonzero value to prevent the SF unit from wasting time reading elements of
917 * the VUE that are not needed by the fragment shader. It is measured in
918 * 256-bit increments.
919 */
920 static void
921 genX(get_attr_override)(struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr,
922 const struct brw_vue_map *vue_map,
923 int urb_entry_read_offset, int fs_attr,
924 bool two_side_color, uint32_t *max_source_attr)
925 {
926 /* Find the VUE slot for this attribute. */
927 int slot = vue_map->varying_to_slot[fs_attr];
928
929 /* Viewport and Layer are stored in the VUE header. We need to override
930 * them to zero if earlier stages didn't write them, as GL requires that
931 * they read back as zero when not explicitly set.
932 */
933 if (fs_attr == VARYING_SLOT_VIEWPORT || fs_attr == VARYING_SLOT_LAYER) {
934 attr->ComponentOverrideX = true;
935 attr->ComponentOverrideW = true;
936 attr->ConstantSource = CONST_0000;
937
938 if (!(vue_map->slots_valid & VARYING_BIT_LAYER))
939 attr->ComponentOverrideY = true;
940 if (!(vue_map->slots_valid & VARYING_BIT_VIEWPORT))
941 attr->ComponentOverrideZ = true;
942
943 return;
944 }
945
946 /* If there was only a back color written but not front, use back
947 * as the color instead of undefined
948 */
949 if (slot == -1 && fs_attr == VARYING_SLOT_COL0)
950 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC0];
951 if (slot == -1 && fs_attr == VARYING_SLOT_COL1)
952 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC1];
953
954 if (slot == -1) {
955 /* This attribute does not exist in the VUE--that means that the vertex
956 * shader did not write to it. This means that either:
957 *
958 * (a) This attribute is a texture coordinate, and it is going to be
959 * replaced with point coordinates (as a consequence of a call to
960 * glTexEnvi(GL_POINT_SPRITE, GL_COORD_REPLACE, GL_TRUE)), so the
961 * hardware will ignore whatever attribute override we supply.
962 *
963 * (b) This attribute is read by the fragment shader but not written by
964 * the vertex shader, so its value is undefined. Therefore the
965 * attribute override we supply doesn't matter.
966 *
967 * (c) This attribute is gl_PrimitiveID, and it wasn't written by the
968 * previous shader stage.
969 *
970 * Note that we don't have to worry about the cases where the attribute
971 * is gl_PointCoord or is undergoing point sprite coordinate
972 * replacement, because in those cases, this function isn't called.
973 *
974 * In case (c), we need to program the attribute overrides so that the
975 * primitive ID will be stored in this slot. In every other case, the
976 * attribute override we supply doesn't matter. So just go ahead and
977 * program primitive ID in every case.
978 */
979 attr->ComponentOverrideW = true;
980 attr->ComponentOverrideX = true;
981 attr->ComponentOverrideY = true;
982 attr->ComponentOverrideZ = true;
983 attr->ConstantSource = PRIM_ID;
984 return;
985 }
986
987 /* Compute the location of the attribute relative to urb_entry_read_offset.
988 * Each increment of urb_entry_read_offset represents a 256-bit value, so
989 * it counts for two 128-bit VUE slots.
990 */
991 int source_attr = slot - 2 * urb_entry_read_offset;
992 assert(source_attr >= 0 && source_attr < 32);
993
994 /* If we are doing two-sided color, and the VUE slot following this one
995 * represents a back-facing color, then we need to instruct the SF unit to
996 * do back-facing swizzling.
997 */
998 bool swizzling = two_side_color &&
999 ((vue_map->slot_to_varying[slot] == VARYING_SLOT_COL0 &&
1000 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC0) ||
1001 (vue_map->slot_to_varying[slot] == VARYING_SLOT_COL1 &&
1002 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC1));
1003
1004 /* Update max_source_attr. If swizzling, the SF will read this slot + 1. */
1005 if (*max_source_attr < source_attr + swizzling)
1006 *max_source_attr = source_attr + swizzling;
1007
1008 attr->SourceAttribute = source_attr;
1009 if (swizzling)
1010 attr->SwizzleSelect = INPUTATTR_FACING;
1011 }
1012
1013
1014 static void
1015 genX(calculate_attr_overrides)(const struct brw_context *brw,
1016 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr_overrides,
1017 uint32_t *point_sprite_enables,
1018 uint32_t *urb_entry_read_length,
1019 uint32_t *urb_entry_read_offset)
1020 {
1021 const struct gl_context *ctx = &brw->ctx;
1022
1023 /* _NEW_POINT */
1024 const struct gl_point_attrib *point = &ctx->Point;
1025
1026 /* BRW_NEW_FS_PROG_DATA */
1027 const struct brw_wm_prog_data *wm_prog_data =
1028 brw_wm_prog_data(brw->wm.base.prog_data);
1029 uint32_t max_source_attr = 0;
1030
1031 *point_sprite_enables = 0;
1032
1033 /* BRW_NEW_FRAGMENT_PROGRAM
1034 *
1035 * If the fragment shader reads VARYING_SLOT_LAYER, then we need to pass in
1036 * the full vertex header. Otherwise, we can program the SF to start
1037 * reading at an offset of 1 (2 varying slots) to skip unnecessary data:
1038 * - VARYING_SLOT_PSIZ and BRW_VARYING_SLOT_NDC on gen4-5
1039 * - VARYING_SLOT_{PSIZ,LAYER} and VARYING_SLOT_POS on gen6+
1040 */
1041
1042 bool fs_needs_vue_header = brw->fragment_program->info.inputs_read &
1043 (VARYING_BIT_LAYER | VARYING_BIT_VIEWPORT);
1044
1045 *urb_entry_read_offset = fs_needs_vue_header ? 0 : 1;
1046
1047 /* From the Ivybridge PRM, Vol 2 Part 1, 3DSTATE_SBE,
1048 * description of dw10 Point Sprite Texture Coordinate Enable:
1049 *
1050 * "This field must be programmed to zero when non-point primitives
1051 * are rendered."
1052 *
1053 * The SandyBridge PRM doesn't explicitly say that point sprite enables
1054 * must be programmed to zero when rendering non-point primitives, but
1055 * the IvyBridge PRM does, and if we don't, we get garbage.
1056 *
1057 * This is not required on Haswell, as the hardware ignores this state
1058 * when drawing non-points -- although we do still need to be careful to
1059 * correctly set the attr overrides.
1060 *
1061 * _NEW_POLYGON
1062 * BRW_NEW_PRIMITIVE | BRW_NEW_GS_PROG_DATA | BRW_NEW_TES_PROG_DATA
1063 */
1064 bool drawing_points = brw_is_drawing_points(brw);
1065
1066 for (int attr = 0; attr < VARYING_SLOT_MAX; attr++) {
1067 int input_index = wm_prog_data->urb_setup[attr];
1068
1069 if (input_index < 0)
1070 continue;
1071
1072 /* _NEW_POINT */
1073 bool point_sprite = false;
1074 if (drawing_points) {
1075 if (point->PointSprite &&
1076 (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) &&
1077 (point->CoordReplace & (1u << (attr - VARYING_SLOT_TEX0)))) {
1078 point_sprite = true;
1079 }
1080
1081 if (attr == VARYING_SLOT_PNTC)
1082 point_sprite = true;
1083
1084 if (point_sprite)
1085 *point_sprite_enables |= (1 << input_index);
1086 }
1087
1088 /* BRW_NEW_VUE_MAP_GEOM_OUT | _NEW_LIGHT | _NEW_PROGRAM */
1089 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attribute = { 0 };
1090
1091 if (!point_sprite) {
1092 genX(get_attr_override)(&attribute,
1093 &brw->vue_map_geom_out,
1094 *urb_entry_read_offset, attr,
1095 brw->ctx.VertexProgram._TwoSideEnabled,
1096 &max_source_attr);
1097 }
1098
1099 /* The hardware can only do the overrides on 16 overrides at a
1100 * time, and the other up to 16 have to be lined up so that the
1101 * input index = the output index. We'll need to do some
1102 * tweaking to make sure that's the case.
1103 */
1104 if (input_index < 16)
1105 attr_overrides[input_index] = attribute;
1106 else
1107 assert(attribute.SourceAttribute == input_index);
1108 }
1109
1110 /* From the Sandy Bridge PRM, Volume 2, Part 1, documentation for
1111 * 3DSTATE_SF DWord 1 bits 15:11, "Vertex URB Entry Read Length":
1112 *
1113 * "This field should be set to the minimum length required to read the
1114 * maximum source attribute. The maximum source attribute is indicated
1115 * by the maximum value of the enabled Attribute # Source Attribute if
1116 * Attribute Swizzle Enable is set, Number of Output Attributes-1 if
1117 * enable is not set.
1118 * read_length = ceiling((max_source_attr + 1) / 2)
1119 *
1120 * [errata] Corruption/Hang possible if length programmed larger than
1121 * recommended"
1122 *
1123 * Similar text exists for Ivy Bridge.
1124 */
1125 *urb_entry_read_length = DIV_ROUND_UP(max_source_attr + 1, 2);
1126 }
1127 #endif
1128
1129 /* ---------------------------------------------------------------------- */
1130
1131 #if GEN_GEN >= 6
1132 static void
1133 genX(upload_depth_stencil_state)(struct brw_context *brw)
1134 {
1135 struct gl_context *ctx = &brw->ctx;
1136
1137 /* _NEW_BUFFERS */
1138 struct intel_renderbuffer *depth_irb =
1139 intel_get_renderbuffer(ctx->DrawBuffer, BUFFER_DEPTH);
1140
1141 /* _NEW_DEPTH */
1142 struct gl_depthbuffer_attrib *depth = &ctx->Depth;
1143
1144 /* _NEW_STENCIL */
1145 struct gl_stencil_attrib *stencil = &ctx->Stencil;
1146 const int b = stencil->_BackFace;
1147
1148 #if GEN_GEN >= 8
1149 brw_batch_emit(brw, GENX(3DSTATE_WM_DEPTH_STENCIL), wmds) {
1150 #else
1151 uint32_t ds_offset;
1152 brw_state_emit(brw, GENX(DEPTH_STENCIL_STATE), 64, &ds_offset, wmds) {
1153 #endif
1154 if (depth->Test && depth_irb) {
1155 wmds.DepthTestEnable = true;
1156 wmds.DepthBufferWriteEnable = brw_depth_writes_enabled(brw);
1157 wmds.DepthTestFunction = intel_translate_compare_func(depth->Func);
1158 }
1159
1160 if (stencil->_Enabled) {
1161 wmds.StencilTestEnable = true;
1162 wmds.StencilWriteMask = stencil->WriteMask[0] & 0xff;
1163 wmds.StencilTestMask = stencil->ValueMask[0] & 0xff;
1164
1165 wmds.StencilTestFunction =
1166 intel_translate_compare_func(stencil->Function[0]);
1167 wmds.StencilFailOp =
1168 intel_translate_stencil_op(stencil->FailFunc[0]);
1169 wmds.StencilPassDepthPassOp =
1170 intel_translate_stencil_op(stencil->ZPassFunc[0]);
1171 wmds.StencilPassDepthFailOp =
1172 intel_translate_stencil_op(stencil->ZFailFunc[0]);
1173
1174 wmds.StencilBufferWriteEnable = stencil->_WriteEnabled;
1175
1176 if (stencil->_TestTwoSide) {
1177 wmds.DoubleSidedStencilEnable = true;
1178 wmds.BackfaceStencilWriteMask = stencil->WriteMask[b] & 0xff;
1179 wmds.BackfaceStencilTestMask = stencil->ValueMask[b] & 0xff;
1180
1181 wmds.BackfaceStencilTestFunction =
1182 intel_translate_compare_func(stencil->Function[b]);
1183 wmds.BackfaceStencilFailOp =
1184 intel_translate_stencil_op(stencil->FailFunc[b]);
1185 wmds.BackfaceStencilPassDepthPassOp =
1186 intel_translate_stencil_op(stencil->ZPassFunc[b]);
1187 wmds.BackfaceStencilPassDepthFailOp =
1188 intel_translate_stencil_op(stencil->ZFailFunc[b]);
1189 }
1190
1191 #if GEN_GEN >= 9
1192 wmds.StencilReferenceValue = _mesa_get_stencil_ref(ctx, 0);
1193 wmds.BackfaceStencilReferenceValue = _mesa_get_stencil_ref(ctx, b);
1194 #endif
1195 }
1196 }
1197
1198 #if GEN_GEN == 6
1199 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
1200 ptr.PointertoDEPTH_STENCIL_STATE = ds_offset;
1201 ptr.DEPTH_STENCIL_STATEChange = true;
1202 }
1203 #elif GEN_GEN == 7
1204 brw_batch_emit(brw, GENX(3DSTATE_DEPTH_STENCIL_STATE_POINTERS), ptr) {
1205 ptr.PointertoDEPTH_STENCIL_STATE = ds_offset;
1206 }
1207 #endif
1208 }
1209
1210 static const struct brw_tracked_state genX(depth_stencil_state) = {
1211 .dirty = {
1212 .mesa = _NEW_BUFFERS |
1213 _NEW_DEPTH |
1214 _NEW_STENCIL,
1215 .brw = BRW_NEW_BLORP |
1216 (GEN_GEN >= 8 ? BRW_NEW_CONTEXT
1217 : BRW_NEW_BATCH |
1218 BRW_NEW_STATE_BASE_ADDRESS),
1219 },
1220 .emit = genX(upload_depth_stencil_state),
1221 };
1222 #endif
1223
1224 /* ---------------------------------------------------------------------- */
1225
1226 #if GEN_GEN >= 6
1227 static void
1228 genX(upload_clip_state)(struct brw_context *brw)
1229 {
1230 struct gl_context *ctx = &brw->ctx;
1231
1232 /* _NEW_BUFFERS */
1233 struct gl_framebuffer *fb = ctx->DrawBuffer;
1234
1235 /* BRW_NEW_FS_PROG_DATA */
1236 struct brw_wm_prog_data *wm_prog_data =
1237 brw_wm_prog_data(brw->wm.base.prog_data);
1238
1239 brw_batch_emit(brw, GENX(3DSTATE_CLIP), clip) {
1240 clip.StatisticsEnable = !brw->meta_in_progress;
1241
1242 if (wm_prog_data->barycentric_interp_modes &
1243 BRW_BARYCENTRIC_NONPERSPECTIVE_BITS)
1244 clip.NonPerspectiveBarycentricEnable = true;
1245
1246 #if GEN_GEN >= 7
1247 clip.EarlyCullEnable = true;
1248 #endif
1249
1250 #if GEN_GEN == 7
1251 clip.FrontWinding = ctx->Polygon._FrontBit == _mesa_is_user_fbo(fb);
1252
1253 if (ctx->Polygon.CullFlag) {
1254 switch (ctx->Polygon.CullFaceMode) {
1255 case GL_FRONT:
1256 clip.CullMode = CULLMODE_FRONT;
1257 break;
1258 case GL_BACK:
1259 clip.CullMode = CULLMODE_BACK;
1260 break;
1261 case GL_FRONT_AND_BACK:
1262 clip.CullMode = CULLMODE_BOTH;
1263 break;
1264 default:
1265 unreachable("Should not get here: invalid CullFlag");
1266 }
1267 } else {
1268 clip.CullMode = CULLMODE_NONE;
1269 }
1270 #endif
1271
1272 #if GEN_GEN < 8
1273 clip.UserClipDistanceCullTestEnableBitmask =
1274 brw_vue_prog_data(brw->vs.base.prog_data)->cull_distance_mask;
1275
1276 clip.ViewportZClipTestEnable = !ctx->Transform.DepthClamp;
1277 #endif
1278
1279 /* _NEW_LIGHT */
1280 if (ctx->Light.ProvokingVertex == GL_FIRST_VERTEX_CONVENTION) {
1281 clip.TriangleStripListProvokingVertexSelect = 0;
1282 clip.TriangleFanProvokingVertexSelect = 1;
1283 clip.LineStripListProvokingVertexSelect = 0;
1284 } else {
1285 clip.TriangleStripListProvokingVertexSelect = 2;
1286 clip.TriangleFanProvokingVertexSelect = 2;
1287 clip.LineStripListProvokingVertexSelect = 1;
1288 }
1289
1290 /* _NEW_TRANSFORM */
1291 clip.UserClipDistanceClipTestEnableBitmask =
1292 ctx->Transform.ClipPlanesEnabled;
1293
1294 #if GEN_GEN >= 8
1295 clip.ForceUserClipDistanceClipTestEnableBitmask = true;
1296 #endif
1297
1298 if (ctx->Transform.ClipDepthMode == GL_ZERO_TO_ONE)
1299 clip.APIMode = APIMODE_D3D;
1300 else
1301 clip.APIMode = APIMODE_OGL;
1302
1303 clip.GuardbandClipTestEnable = true;
1304
1305 /* BRW_NEW_VIEWPORT_COUNT */
1306 const unsigned viewport_count = brw->clip.viewport_count;
1307
1308 if (ctx->RasterDiscard) {
1309 clip.ClipMode = CLIPMODE_REJECT_ALL;
1310 #if GEN_GEN == 6
1311 perf_debug("Rasterizer discard is currently implemented via the "
1312 "clipper; having the GS not write primitives would "
1313 "likely be faster.\n");
1314 #endif
1315 } else {
1316 clip.ClipMode = CLIPMODE_NORMAL;
1317 }
1318
1319 clip.ClipEnable = brw->primitive != _3DPRIM_RECTLIST;
1320
1321 /* _NEW_POLYGON,
1322 * BRW_NEW_GEOMETRY_PROGRAM | BRW_NEW_TES_PROG_DATA | BRW_NEW_PRIMITIVE
1323 */
1324 if (!brw_is_drawing_points(brw) && !brw_is_drawing_lines(brw))
1325 clip.ViewportXYClipTestEnable = true;
1326
1327 clip.MinimumPointWidth = 0.125;
1328 clip.MaximumPointWidth = 255.875;
1329 clip.MaximumVPIndex = viewport_count - 1;
1330 if (_mesa_geometric_layers(fb) == 0)
1331 clip.ForceZeroRTAIndexEnable = true;
1332 }
1333 }
1334
1335 static const struct brw_tracked_state genX(clip_state) = {
1336 .dirty = {
1337 .mesa = _NEW_BUFFERS |
1338 _NEW_LIGHT |
1339 _NEW_POLYGON |
1340 _NEW_TRANSFORM,
1341 .brw = BRW_NEW_BLORP |
1342 BRW_NEW_CONTEXT |
1343 BRW_NEW_FS_PROG_DATA |
1344 BRW_NEW_GS_PROG_DATA |
1345 BRW_NEW_VS_PROG_DATA |
1346 BRW_NEW_META_IN_PROGRESS |
1347 BRW_NEW_PRIMITIVE |
1348 BRW_NEW_RASTERIZER_DISCARD |
1349 BRW_NEW_TES_PROG_DATA |
1350 BRW_NEW_VIEWPORT_COUNT,
1351 },
1352 .emit = genX(upload_clip_state),
1353 };
1354 #endif
1355
1356 /* ---------------------------------------------------------------------- */
1357
1358 #if GEN_GEN >= 6
1359 static void
1360 genX(upload_sf)(struct brw_context *brw)
1361 {
1362 struct gl_context *ctx = &brw->ctx;
1363 float point_size;
1364
1365 #if GEN_GEN <= 7
1366 /* _NEW_BUFFERS */
1367 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
1368 const bool multisampled_fbo = _mesa_geometric_samples(ctx->DrawBuffer) > 1;
1369 #endif
1370
1371 brw_batch_emit(brw, GENX(3DSTATE_SF), sf) {
1372 sf.StatisticsEnable = true;
1373 sf.ViewportTransformEnable = true;
1374
1375 #if GEN_GEN == 7
1376 /* _NEW_BUFFERS */
1377 sf.DepthBufferSurfaceFormat = brw_depthbuffer_format(brw);
1378 #endif
1379
1380 #if GEN_GEN <= 7
1381 /* _NEW_POLYGON */
1382 sf.FrontWinding = ctx->Polygon._FrontBit == render_to_fbo;
1383 sf.GlobalDepthOffsetEnableSolid = ctx->Polygon.OffsetFill;
1384 sf.GlobalDepthOffsetEnableWireframe = ctx->Polygon.OffsetLine;
1385 sf.GlobalDepthOffsetEnablePoint = ctx->Polygon.OffsetPoint;
1386
1387 switch (ctx->Polygon.FrontMode) {
1388 case GL_FILL:
1389 sf.FrontFaceFillMode = FILL_MODE_SOLID;
1390 break;
1391 case GL_LINE:
1392 sf.FrontFaceFillMode = FILL_MODE_WIREFRAME;
1393 break;
1394 case GL_POINT:
1395 sf.FrontFaceFillMode = FILL_MODE_POINT;
1396 break;
1397 default:
1398 unreachable("not reached");
1399 }
1400
1401 switch (ctx->Polygon.BackMode) {
1402 case GL_FILL:
1403 sf.BackFaceFillMode = FILL_MODE_SOLID;
1404 break;
1405 case GL_LINE:
1406 sf.BackFaceFillMode = FILL_MODE_WIREFRAME;
1407 break;
1408 case GL_POINT:
1409 sf.BackFaceFillMode = FILL_MODE_POINT;
1410 break;
1411 default:
1412 unreachable("not reached");
1413 }
1414
1415 sf.ScissorRectangleEnable = true;
1416
1417 if (ctx->Polygon.CullFlag) {
1418 switch (ctx->Polygon.CullFaceMode) {
1419 case GL_FRONT:
1420 sf.CullMode = CULLMODE_FRONT;
1421 break;
1422 case GL_BACK:
1423 sf.CullMode = CULLMODE_BACK;
1424 break;
1425 case GL_FRONT_AND_BACK:
1426 sf.CullMode = CULLMODE_BOTH;
1427 break;
1428 default:
1429 unreachable("not reached");
1430 }
1431 } else {
1432 sf.CullMode = CULLMODE_NONE;
1433 }
1434
1435 #if GEN_IS_HASWELL
1436 sf.LineStippleEnable = ctx->Line.StippleFlag;
1437 #endif
1438
1439 if (multisampled_fbo && ctx->Multisample.Enabled)
1440 sf.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
1441
1442 sf.GlobalDepthOffsetConstant = ctx->Polygon.OffsetUnits * 2;
1443 sf.GlobalDepthOffsetScale = ctx->Polygon.OffsetFactor;
1444 sf.GlobalDepthOffsetClamp = ctx->Polygon.OffsetClamp;
1445 #endif
1446
1447 /* _NEW_LINE */
1448 #if GEN_GEN == 8
1449 if (brw->is_cherryview)
1450 sf.CHVLineWidth = brw_get_line_width(brw);
1451 else
1452 sf.LineWidth = brw_get_line_width(brw);
1453 #else
1454 sf.LineWidth = brw_get_line_width(brw);
1455 #endif
1456
1457 if (ctx->Line.SmoothFlag) {
1458 sf.LineEndCapAntialiasingRegionWidth = _10pixels;
1459 #if GEN_GEN <= 7
1460 sf.AntiAliasingEnable = true;
1461 #endif
1462 }
1463
1464 /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
1465 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
1466 /* Clamp to the hardware limits */
1467 sf.PointWidth = CLAMP(point_size, 0.125f, 255.875f);
1468
1469 /* _NEW_PROGRAM | _NEW_POINT, BRW_NEW_VUE_MAP_GEOM_OUT */
1470 if (use_state_point_size(brw))
1471 sf.PointWidthSource = State;
1472
1473 #if GEN_GEN >= 8
1474 /* _NEW_POINT | _NEW_MULTISAMPLE */
1475 if ((ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) &&
1476 !ctx->Point.PointSprite)
1477 sf.SmoothPointEnable = true;
1478 #endif
1479
1480 sf.AALineDistanceMode = AALINEDISTANCE_TRUE;
1481
1482 /* _NEW_LIGHT */
1483 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION) {
1484 sf.TriangleStripListProvokingVertexSelect = 2;
1485 sf.TriangleFanProvokingVertexSelect = 2;
1486 sf.LineStripListProvokingVertexSelect = 1;
1487 } else {
1488 sf.TriangleFanProvokingVertexSelect = 1;
1489 }
1490
1491 #if GEN_GEN == 6
1492 /* BRW_NEW_FS_PROG_DATA */
1493 const struct brw_wm_prog_data *wm_prog_data =
1494 brw_wm_prog_data(brw->wm.base.prog_data);
1495
1496 sf.AttributeSwizzleEnable = true;
1497 sf.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
1498
1499 /*
1500 * Window coordinates in an FBO are inverted, which means point
1501 * sprite origin must be inverted, too.
1502 */
1503 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo) {
1504 sf.PointSpriteTextureCoordinateOrigin = LOWERLEFT;
1505 } else {
1506 sf.PointSpriteTextureCoordinateOrigin = UPPERLEFT;
1507 }
1508
1509 /* BRW_NEW_VUE_MAP_GEOM_OUT | BRW_NEW_FRAGMENT_PROGRAM |
1510 * _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM | BRW_NEW_FS_PROG_DATA
1511 */
1512 uint32_t urb_entry_read_length;
1513 uint32_t urb_entry_read_offset;
1514 uint32_t point_sprite_enables;
1515 genX(calculate_attr_overrides)(brw, sf.Attribute, &point_sprite_enables,
1516 &urb_entry_read_length,
1517 &urb_entry_read_offset);
1518 sf.VertexURBEntryReadLength = urb_entry_read_length;
1519 sf.VertexURBEntryReadOffset = urb_entry_read_offset;
1520 sf.PointSpriteTextureCoordinateEnable = point_sprite_enables;
1521 sf.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
1522 #endif
1523 }
1524 }
1525
1526 static const struct brw_tracked_state genX(sf_state) = {
1527 .dirty = {
1528 .mesa = _NEW_LIGHT |
1529 _NEW_LINE |
1530 _NEW_MULTISAMPLE |
1531 _NEW_POINT |
1532 _NEW_PROGRAM |
1533 (GEN_GEN <= 7 ? _NEW_BUFFERS | _NEW_POLYGON : 0),
1534 .brw = BRW_NEW_BLORP |
1535 BRW_NEW_CONTEXT |
1536 BRW_NEW_VUE_MAP_GEOM_OUT |
1537 (GEN_GEN <= 7 ? BRW_NEW_GS_PROG_DATA |
1538 BRW_NEW_PRIMITIVE |
1539 BRW_NEW_TES_PROG_DATA
1540 : 0) |
1541 (GEN_GEN == 6 ? BRW_NEW_FS_PROG_DATA |
1542 BRW_NEW_FRAGMENT_PROGRAM
1543 : 0),
1544 },
1545 .emit = genX(upload_sf),
1546 };
1547 #endif
1548
1549 /* ---------------------------------------------------------------------- */
1550
1551 #if GEN_GEN >= 6
1552 static void
1553 genX(upload_wm)(struct brw_context *brw)
1554 {
1555 struct gl_context *ctx = &brw->ctx;
1556
1557 /* BRW_NEW_FS_PROG_DATA */
1558 const struct brw_wm_prog_data *wm_prog_data =
1559 brw_wm_prog_data(brw->wm.base.prog_data);
1560
1561 UNUSED bool writes_depth =
1562 wm_prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF;
1563
1564 #if GEN_GEN < 7
1565 const struct brw_stage_state *stage_state = &brw->wm.base;
1566 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1567
1568 /* We can't fold this into gen6_upload_wm_push_constants(), because
1569 * according to the SNB PRM, vol 2 part 1 section 7.2.2
1570 * (3DSTATE_CONSTANT_PS [DevSNB]):
1571 *
1572 * "[DevSNB]: This packet must be followed by WM_STATE."
1573 */
1574 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_PS), wmcp) {
1575 if (wm_prog_data->base.nr_params != 0) {
1576 wmcp.Buffer0Valid = true;
1577 /* Pointer to the WM constant buffer. Covered by the set of
1578 * state flags from gen6_upload_wm_push_constants.
1579 */
1580 wmcp.PointertoPSConstantBuffer0 = stage_state->push_const_offset;
1581 wmcp.PSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
1582 }
1583 }
1584 #endif
1585
1586 brw_batch_emit(brw, GENX(3DSTATE_WM), wm) {
1587 wm.StatisticsEnable = true;
1588 wm.LineAntialiasingRegionWidth = _10pixels;
1589 wm.LineEndCapAntialiasingRegionWidth = _05pixels;
1590
1591 #if GEN_GEN < 7
1592 if (wm_prog_data->base.use_alt_mode)
1593 wm.FloatingPointMode = Alternate;
1594
1595 wm.SamplerCount = DIV_ROUND_UP(stage_state->sampler_count, 4);
1596 wm.BindingTableEntryCount = wm_prog_data->base.binding_table.size_bytes / 4;
1597 wm.MaximumNumberofThreads = devinfo->max_wm_threads - 1;
1598 wm._8PixelDispatchEnable = wm_prog_data->dispatch_8;
1599 wm._16PixelDispatchEnable = wm_prog_data->dispatch_16;
1600 wm.DispatchGRFStartRegisterForConstantSetupData0 =
1601 wm_prog_data->base.dispatch_grf_start_reg;
1602 wm.DispatchGRFStartRegisterForConstantSetupData2 =
1603 wm_prog_data->dispatch_grf_start_reg_2;
1604 wm.KernelStartPointer0 = stage_state->prog_offset;
1605 wm.KernelStartPointer2 = stage_state->prog_offset +
1606 wm_prog_data->prog_offset_2;
1607 wm.DualSourceBlendEnable =
1608 wm_prog_data->dual_src_blend && (ctx->Color.BlendEnabled & 1) &&
1609 ctx->Color.Blend[0]._UsesDualSrc;
1610 wm.oMaskPresenttoRenderTarget = wm_prog_data->uses_omask;
1611 wm.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
1612
1613 /* From the SNB PRM, volume 2 part 1, page 281:
1614 * "If the PS kernel does not need the Position XY Offsets
1615 * to compute a Position XY value, then this field should be
1616 * programmed to POSOFFSET_NONE."
1617 *
1618 * "SW Recommendation: If the PS kernel needs the Position Offsets
1619 * to compute a Position XY value, this field should match Position
1620 * ZW Interpolation Mode to ensure a consistent position.xyzw
1621 * computation."
1622 * We only require XY sample offsets. So, this recommendation doesn't
1623 * look useful at the moment. We might need this in future.
1624 */
1625 if (wm_prog_data->uses_pos_offset)
1626 wm.PositionXYOffsetSelect = POSOFFSET_SAMPLE;
1627 else
1628 wm.PositionXYOffsetSelect = POSOFFSET_NONE;
1629
1630 if (wm_prog_data->base.total_scratch) {
1631 wm.ScratchSpaceBasePointer =
1632 render_bo(stage_state->scratch_bo,
1633 ffs(stage_state->per_thread_scratch) - 11);
1634 }
1635
1636 wm.PixelShaderComputedDepth = writes_depth;
1637 #endif
1638
1639 wm.PointRasterizationRule = RASTRULE_UPPER_RIGHT;
1640
1641 /* _NEW_LINE */
1642 wm.LineStippleEnable = ctx->Line.StippleFlag;
1643
1644 /* _NEW_POLYGON */
1645 wm.PolygonStippleEnable = ctx->Polygon.StippleFlag;
1646 wm.BarycentricInterpolationMode = wm_prog_data->barycentric_interp_modes;
1647
1648 #if GEN_GEN < 8
1649 /* _NEW_BUFFERS */
1650 const bool multisampled_fbo = _mesa_geometric_samples(ctx->DrawBuffer) > 1;
1651
1652 wm.PixelShaderUsesSourceDepth = wm_prog_data->uses_src_depth;
1653 wm.PixelShaderUsesSourceW = wm_prog_data->uses_src_w;
1654 if (wm_prog_data->uses_kill ||
1655 _mesa_is_alpha_test_enabled(ctx) ||
1656 _mesa_is_alpha_to_coverage_enabled(ctx) ||
1657 wm_prog_data->uses_omask) {
1658 wm.PixelShaderKillsPixel = true;
1659 }
1660
1661 /* _NEW_BUFFERS | _NEW_COLOR */
1662 if (brw_color_buffer_write_enabled(brw) || writes_depth ||
1663 wm_prog_data->has_side_effects || wm.PixelShaderKillsPixel) {
1664 wm.ThreadDispatchEnable = true;
1665 }
1666 if (multisampled_fbo) {
1667 /* _NEW_MULTISAMPLE */
1668 if (ctx->Multisample.Enabled)
1669 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
1670 else
1671 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
1672
1673 if (wm_prog_data->persample_dispatch)
1674 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
1675 else
1676 wm.MultisampleDispatchMode = MSDISPMODE_PERPIXEL;
1677 } else {
1678 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
1679 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
1680 }
1681
1682 #if GEN_GEN >= 7
1683 wm.PixelShaderComputedDepthMode = wm_prog_data->computed_depth_mode;
1684 wm.PixelShaderUsesInputCoverageMask = wm_prog_data->uses_sample_mask;
1685 #endif
1686
1687 /* The "UAV access enable" bits are unnecessary on HSW because they only
1688 * seem to have an effect on the HW-assisted coherency mechanism which we
1689 * don't need, and the rasterization-related UAV_ONLY flag and the
1690 * DISPATCH_ENABLE bit can be set independently from it.
1691 * C.f. gen8_upload_ps_extra().
1692 *
1693 * BRW_NEW_FRAGMENT_PROGRAM | BRW_NEW_FS_PROG_DATA | _NEW_BUFFERS |
1694 * _NEW_COLOR
1695 */
1696 #if GEN_IS_HASWELL
1697 if (!(brw_color_buffer_write_enabled(brw) || writes_depth) &&
1698 wm_prog_data->has_side_effects)
1699 wm.PSUAVonly = ON;
1700 #endif
1701 #endif
1702
1703 #if GEN_GEN >= 7
1704 /* BRW_NEW_FS_PROG_DATA */
1705 if (wm_prog_data->early_fragment_tests)
1706 wm.EarlyDepthStencilControl = EDSC_PREPS;
1707 else if (wm_prog_data->has_side_effects)
1708 wm.EarlyDepthStencilControl = EDSC_PSEXEC;
1709 #endif
1710 }
1711 }
1712
1713 static const struct brw_tracked_state genX(wm_state) = {
1714 .dirty = {
1715 .mesa = _NEW_LINE |
1716 _NEW_POLYGON |
1717 (GEN_GEN < 8 ? _NEW_BUFFERS |
1718 _NEW_COLOR |
1719 _NEW_MULTISAMPLE :
1720 0) |
1721 (GEN_GEN < 7 ? _NEW_PROGRAM_CONSTANTS : 0),
1722 .brw = BRW_NEW_BLORP |
1723 BRW_NEW_FS_PROG_DATA |
1724 (GEN_GEN < 7 ? BRW_NEW_BATCH : BRW_NEW_CONTEXT),
1725 },
1726 .emit = genX(upload_wm),
1727 };
1728 #endif
1729
1730 /* ---------------------------------------------------------------------- */
1731
1732 #if GEN_GEN == 4
1733 static inline struct brw_address
1734 KSP(struct brw_context *brw, uint32_t offset)
1735 {
1736 return instruction_bo(brw->cache.bo, offset);
1737 }
1738 #else
1739 static inline uint32_t
1740 KSP(struct brw_context *brw, uint32_t offset)
1741 {
1742 return offset;
1743 }
1744 #endif
1745
1746 #define INIT_THREAD_DISPATCH_FIELDS(pkt, prefix) \
1747 pkt.KernelStartPointer = KSP(brw, stage_state->prog_offset); \
1748 pkt.SamplerCount = \
1749 DIV_ROUND_UP(CLAMP(stage_state->sampler_count, 0, 16), 4); \
1750 pkt.BindingTableEntryCount = \
1751 stage_prog_data->binding_table.size_bytes / 4; \
1752 pkt.FloatingPointMode = stage_prog_data->use_alt_mode; \
1753 \
1754 if (stage_prog_data->total_scratch) { \
1755 pkt.ScratchSpaceBasePointer = \
1756 render_bo(stage_state->scratch_bo, 0); \
1757 pkt.PerThreadScratchSpace = \
1758 ffs(stage_state->per_thread_scratch) - 11; \
1759 } \
1760 \
1761 pkt.DispatchGRFStartRegisterForURBData = \
1762 stage_prog_data->dispatch_grf_start_reg; \
1763 pkt.prefix##URBEntryReadLength = vue_prog_data->urb_read_length; \
1764 pkt.prefix##URBEntryReadOffset = 0; \
1765 \
1766 pkt.StatisticsEnable = true; \
1767 pkt.Enable = true;
1768
1769 static void
1770 genX(upload_vs_state)(struct brw_context *brw)
1771 {
1772 UNUSED struct gl_context *ctx = &brw->ctx;
1773 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1774 struct brw_stage_state *stage_state = &brw->vs.base;
1775
1776 /* BRW_NEW_VS_PROG_DATA */
1777 const struct brw_vue_prog_data *vue_prog_data =
1778 brw_vue_prog_data(brw->vs.base.prog_data);
1779 const struct brw_stage_prog_data *stage_prog_data = &vue_prog_data->base;
1780
1781 assert(vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8 ||
1782 vue_prog_data->dispatch_mode == DISPATCH_MODE_4X2_DUAL_OBJECT);
1783
1784 #if GEN_GEN == 6
1785 /* From the BSpec, 3D Pipeline > Geometry > Vertex Shader > State,
1786 * 3DSTATE_VS, Dword 5.0 "VS Function Enable":
1787 *
1788 * [DevSNB] A pipeline flush must be programmed prior to a 3DSTATE_VS
1789 * command that causes the VS Function Enable to toggle. Pipeline
1790 * flush can be executed by sending a PIPE_CONTROL command with CS
1791 * stall bit set and a post sync operation.
1792 *
1793 * We've already done such a flush at the start of state upload, so we
1794 * don't need to do another one here.
1795 */
1796 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_VS), cvs) {
1797 if (stage_state->push_const_size != 0) {
1798 cvs.Buffer0Valid = true;
1799 cvs.PointertoVSConstantBuffer0 = stage_state->push_const_offset;
1800 cvs.VSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
1801 }
1802 }
1803 #endif
1804
1805 if (GEN_GEN == 7 && devinfo->is_ivybridge)
1806 gen7_emit_vs_workaround_flush(brw);
1807
1808 #if GEN_GEN >= 6
1809 brw_batch_emit(brw, GENX(3DSTATE_VS), vs) {
1810 #else
1811 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
1812 brw_state_emit(brw, GENX(VS_STATE), 32, &stage_state->state_offset, vs) {
1813 #endif
1814 INIT_THREAD_DISPATCH_FIELDS(vs, Vertex);
1815
1816 vs.MaximumNumberofThreads = devinfo->max_vs_threads - 1;
1817
1818 #if GEN_GEN < 6
1819 vs.GRFRegisterCount = DIV_ROUND_UP(vue_prog_data->total_grf, 16) - 1;
1820 vs.ConstantURBEntryReadLength = stage_prog_data->curb_read_length;
1821 vs.ConstantURBEntryReadOffset = brw->curbe.vs_start * 2;
1822
1823 vs.NumberofURBEntries = brw->urb.nr_vs_entries >> (GEN_GEN == 5 ? 2 : 0);
1824 vs.URBEntryAllocationSize = brw->urb.vsize - 1;
1825
1826 vs.MaximumNumberofThreads =
1827 CLAMP(brw->urb.nr_vs_entries / 2, 1, devinfo->max_vs_threads) - 1;
1828
1829 vs.StatisticsEnable = false;
1830 vs.SamplerStatePointer =
1831 instruction_ro_bo(brw->batch.bo, stage_state->sampler_offset);
1832 #endif
1833
1834 #if GEN_GEN == 5
1835 /* Force single program flow on Ironlake. We cannot reliably get
1836 * all applications working without it. See:
1837 * https://bugs.freedesktop.org/show_bug.cgi?id=29172
1838 *
1839 * The most notable and reliably failing application is the Humus
1840 * demo "CelShading"
1841 */
1842 vs.SingleProgramFlow = true;
1843 vs.SamplerCount = 0; /* hardware requirement */
1844 #endif
1845
1846 #if GEN_GEN >= 8
1847 vs.SIMD8DispatchEnable =
1848 vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8;
1849
1850 vs.UserClipDistanceCullTestEnableBitmask =
1851 vue_prog_data->cull_distance_mask;
1852 #endif
1853 }
1854
1855 #if GEN_GEN == 6
1856 /* Based on my reading of the simulator, the VS constants don't get
1857 * pulled into the VS FF unit until an appropriate pipeline flush
1858 * happens, and instead the 3DSTATE_CONSTANT_VS packet just adds
1859 * references to them into a little FIFO. The flushes are common,
1860 * but don't reliably happen between this and a 3DPRIMITIVE, causing
1861 * the primitive to use the wrong constants. Then the FIFO
1862 * containing the constant setup gets added to again on the next
1863 * constants change, and eventually when a flush does happen the
1864 * unit is overwhelmed by constant changes and dies.
1865 *
1866 * To avoid this, send a PIPE_CONTROL down the line that will
1867 * update the unit immediately loading the constants. The flush
1868 * type bits here were those set by the STATE_BASE_ADDRESS whose
1869 * move in a82a43e8d99e1715dd11c9c091b5ab734079b6a6 triggered the
1870 * bug reports that led to this workaround, and may be more than
1871 * what is strictly required to avoid the issue.
1872 */
1873 brw_emit_pipe_control_flush(brw,
1874 PIPE_CONTROL_DEPTH_STALL |
1875 PIPE_CONTROL_INSTRUCTION_INVALIDATE |
1876 PIPE_CONTROL_STATE_CACHE_INVALIDATE);
1877 #endif
1878 }
1879
1880 static const struct brw_tracked_state genX(vs_state) = {
1881 .dirty = {
1882 .mesa = (GEN_GEN == 6 ? (_NEW_PROGRAM_CONSTANTS | _NEW_TRANSFORM) : 0),
1883 .brw = BRW_NEW_BATCH |
1884 BRW_NEW_BLORP |
1885 BRW_NEW_CONTEXT |
1886 BRW_NEW_VS_PROG_DATA |
1887 (GEN_GEN == 6 ? BRW_NEW_VERTEX_PROGRAM : 0) |
1888 (GEN_GEN <= 5 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION |
1889 BRW_NEW_PROGRAM_CACHE |
1890 BRW_NEW_SAMPLER_STATE_TABLE |
1891 BRW_NEW_URB_FENCE
1892 : 0),
1893 },
1894 .emit = genX(upload_vs_state),
1895 };
1896
1897 /* ---------------------------------------------------------------------- */
1898
1899 static void
1900 genX(upload_cc_viewport)(struct brw_context *brw)
1901 {
1902 struct gl_context *ctx = &brw->ctx;
1903
1904 /* BRW_NEW_VIEWPORT_COUNT */
1905 const unsigned viewport_count = brw->clip.viewport_count;
1906
1907 struct GENX(CC_VIEWPORT) ccv;
1908 uint32_t cc_vp_offset;
1909 uint32_t *cc_map =
1910 brw_state_batch(brw, 4 * GENX(CC_VIEWPORT_length) * viewport_count,
1911 32, &cc_vp_offset);
1912
1913 for (unsigned i = 0; i < viewport_count; i++) {
1914 /* _NEW_VIEWPORT | _NEW_TRANSFORM */
1915 const struct gl_viewport_attrib *vp = &ctx->ViewportArray[i];
1916 if (ctx->Transform.DepthClamp) {
1917 ccv.MinimumDepth = MIN2(vp->Near, vp->Far);
1918 ccv.MaximumDepth = MAX2(vp->Near, vp->Far);
1919 } else {
1920 ccv.MinimumDepth = 0.0;
1921 ccv.MaximumDepth = 1.0;
1922 }
1923 GENX(CC_VIEWPORT_pack)(NULL, cc_map, &ccv);
1924 cc_map += GENX(CC_VIEWPORT_length);
1925 }
1926
1927 #if GEN_GEN >= 7
1928 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), ptr) {
1929 ptr.CCViewportPointer = cc_vp_offset;
1930 }
1931 #elif GEN_GEN == 6
1932 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vp) {
1933 vp.CCViewportStateChange = 1;
1934 vp.PointertoCC_VIEWPORT = cc_vp_offset;
1935 }
1936 #else
1937 brw->cc.vp_offset = cc_vp_offset;
1938 ctx->NewDriverState |= BRW_NEW_CC_VP;
1939 #endif
1940 }
1941
1942 const struct brw_tracked_state genX(cc_vp) = {
1943 .dirty = {
1944 .mesa = _NEW_TRANSFORM |
1945 _NEW_VIEWPORT,
1946 .brw = BRW_NEW_BATCH |
1947 BRW_NEW_BLORP |
1948 BRW_NEW_VIEWPORT_COUNT,
1949 },
1950 .emit = genX(upload_cc_viewport)
1951 };
1952
1953 /* ---------------------------------------------------------------------- */
1954
1955 #if GEN_GEN >= 6
1956 static void
1957 brw_calculate_guardband_size(const struct gen_device_info *devinfo,
1958 uint32_t fb_width, uint32_t fb_height,
1959 float m00, float m11, float m30, float m31,
1960 float *xmin, float *xmax,
1961 float *ymin, float *ymax)
1962 {
1963 /* According to the "Vertex X,Y Clamping and Quantization" section of the
1964 * Strips and Fans documentation:
1965 *
1966 * "The vertex X and Y screen-space coordinates are also /clamped/ to the
1967 * fixed-point "guardband" range supported by the rasterization hardware"
1968 *
1969 * and
1970 *
1971 * "In almost all circumstances, if an object’s vertices are actually
1972 * modified by this clamping (i.e., had X or Y coordinates outside of
1973 * the guardband extent the rendered object will not match the intended
1974 * result. Therefore software should take steps to ensure that this does
1975 * not happen - e.g., by clipping objects such that they do not exceed
1976 * these limits after the Drawing Rectangle is applied."
1977 *
1978 * I believe the fundamental restriction is that the rasterizer (in
1979 * the SF/WM stages) have a limit on the number of pixels that can be
1980 * rasterized. We need to ensure any coordinates beyond the rasterizer
1981 * limit are handled by the clipper. So effectively that limit becomes
1982 * the clipper's guardband size.
1983 *
1984 * It goes on to say:
1985 *
1986 * "In addition, in order to be correctly rendered, objects must have a
1987 * screenspace bounding box not exceeding 8K in the X or Y direction.
1988 * This additional restriction must also be comprehended by software,
1989 * i.e., enforced by use of clipping."
1990 *
1991 * This makes no sense. Gen7+ hardware supports 16K render targets,
1992 * and you definitely need to be able to draw polygons that fill the
1993 * surface. Our assumption is that the rasterizer was limited to 8K
1994 * on Sandybridge, which only supports 8K surfaces, and it was actually
1995 * increased to 16K on Ivybridge and later.
1996 *
1997 * So, limit the guardband to 16K on Gen7+ and 8K on Sandybridge.
1998 */
1999 const float gb_size = devinfo->gen >= 7 ? 16384.0f : 8192.0f;
2000
2001 if (m00 != 0 && m11 != 0) {
2002 /* First, we compute the screen-space render area */
2003 const float ss_ra_xmin = MIN3( 0, m30 + m00, m30 - m00);
2004 const float ss_ra_xmax = MAX3( fb_width, m30 + m00, m30 - m00);
2005 const float ss_ra_ymin = MIN3( 0, m31 + m11, m31 - m11);
2006 const float ss_ra_ymax = MAX3(fb_height, m31 + m11, m31 - m11);
2007
2008 /* We want the guardband to be centered on that */
2009 const float ss_gb_xmin = (ss_ra_xmin + ss_ra_xmax) / 2 - gb_size;
2010 const float ss_gb_xmax = (ss_ra_xmin + ss_ra_xmax) / 2 + gb_size;
2011 const float ss_gb_ymin = (ss_ra_ymin + ss_ra_ymax) / 2 - gb_size;
2012 const float ss_gb_ymax = (ss_ra_ymin + ss_ra_ymax) / 2 + gb_size;
2013
2014 /* Now we need it in native device coordinates */
2015 const float ndc_gb_xmin = (ss_gb_xmin - m30) / m00;
2016 const float ndc_gb_xmax = (ss_gb_xmax - m30) / m00;
2017 const float ndc_gb_ymin = (ss_gb_ymin - m31) / m11;
2018 const float ndc_gb_ymax = (ss_gb_ymax - m31) / m11;
2019
2020 /* Thanks to Y-flipping and ORIGIN_UPPER_LEFT, the Y coordinates may be
2021 * flipped upside-down. X should be fine though.
2022 */
2023 assert(ndc_gb_xmin <= ndc_gb_xmax);
2024 *xmin = ndc_gb_xmin;
2025 *xmax = ndc_gb_xmax;
2026 *ymin = MIN2(ndc_gb_ymin, ndc_gb_ymax);
2027 *ymax = MAX2(ndc_gb_ymin, ndc_gb_ymax);
2028 } else {
2029 /* The viewport scales to 0, so nothing will be rendered. */
2030 *xmin = 0.0f;
2031 *xmax = 0.0f;
2032 *ymin = 0.0f;
2033 *ymax = 0.0f;
2034 }
2035 }
2036
2037 static void
2038 genX(upload_sf_clip_viewport)(struct brw_context *brw)
2039 {
2040 struct gl_context *ctx = &brw->ctx;
2041 float y_scale, y_bias;
2042 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2043
2044 /* BRW_NEW_VIEWPORT_COUNT */
2045 const unsigned viewport_count = brw->clip.viewport_count;
2046
2047 /* _NEW_BUFFERS */
2048 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
2049 const uint32_t fb_width = (float)_mesa_geometric_width(ctx->DrawBuffer);
2050 const uint32_t fb_height = (float)_mesa_geometric_height(ctx->DrawBuffer);
2051
2052 #if GEN_GEN >= 7
2053 #define clv sfv
2054 struct GENX(SF_CLIP_VIEWPORT) sfv;
2055 uint32_t sf_clip_vp_offset;
2056 uint32_t *sf_clip_map = brw_state_batch(brw, 16 * 4 * viewport_count,
2057 64, &sf_clip_vp_offset);
2058 #else
2059 struct GENX(SF_VIEWPORT) sfv;
2060 struct GENX(CLIP_VIEWPORT) clv;
2061 uint32_t sf_vp_offset, clip_vp_offset;
2062 uint32_t *sf_map = brw_state_batch(brw, 8 * 4 * viewport_count,
2063 32, &sf_vp_offset);
2064 uint32_t *clip_map = brw_state_batch(brw, 4 * 4 * viewport_count,
2065 32, &clip_vp_offset);
2066 #endif
2067
2068 /* _NEW_BUFFERS */
2069 if (render_to_fbo) {
2070 y_scale = 1.0;
2071 y_bias = 0;
2072 } else {
2073 y_scale = -1.0;
2074 y_bias = (float)fb_height;
2075 }
2076
2077 for (unsigned i = 0; i < brw->clip.viewport_count; i++) {
2078 /* _NEW_VIEWPORT: Guardband Clipping */
2079 float scale[3], translate[3], gb_xmin, gb_xmax, gb_ymin, gb_ymax;
2080 _mesa_get_viewport_xform(ctx, i, scale, translate);
2081
2082 sfv.ViewportMatrixElementm00 = scale[0];
2083 sfv.ViewportMatrixElementm11 = scale[1] * y_scale,
2084 sfv.ViewportMatrixElementm22 = scale[2],
2085 sfv.ViewportMatrixElementm30 = translate[0],
2086 sfv.ViewportMatrixElementm31 = translate[1] * y_scale + y_bias,
2087 sfv.ViewportMatrixElementm32 = translate[2],
2088 brw_calculate_guardband_size(devinfo, fb_width, fb_height,
2089 sfv.ViewportMatrixElementm00,
2090 sfv.ViewportMatrixElementm11,
2091 sfv.ViewportMatrixElementm30,
2092 sfv.ViewportMatrixElementm31,
2093 &gb_xmin, &gb_xmax, &gb_ymin, &gb_ymax);
2094
2095
2096 clv.XMinClipGuardband = gb_xmin;
2097 clv.XMaxClipGuardband = gb_xmax;
2098 clv.YMinClipGuardband = gb_ymin;
2099 clv.YMaxClipGuardband = gb_ymax;
2100
2101 #if GEN_GEN >= 8
2102 /* _NEW_VIEWPORT | _NEW_BUFFERS: Screen Space Viewport
2103 * The hardware will take the intersection of the drawing rectangle,
2104 * scissor rectangle, and the viewport extents. We don't need to be
2105 * smart, and can therefore just program the viewport extents.
2106 */
2107 const float viewport_Xmax =
2108 ctx->ViewportArray[i].X + ctx->ViewportArray[i].Width;
2109 const float viewport_Ymax =
2110 ctx->ViewportArray[i].Y + ctx->ViewportArray[i].Height;
2111
2112 if (render_to_fbo) {
2113 sfv.XMinViewPort = ctx->ViewportArray[i].X;
2114 sfv.XMaxViewPort = viewport_Xmax - 1;
2115 sfv.YMinViewPort = ctx->ViewportArray[i].Y;
2116 sfv.YMaxViewPort = viewport_Ymax - 1;
2117 } else {
2118 sfv.XMinViewPort = ctx->ViewportArray[i].X;
2119 sfv.XMaxViewPort = viewport_Xmax - 1;
2120 sfv.YMinViewPort = fb_height - viewport_Ymax;
2121 sfv.YMaxViewPort = fb_height - ctx->ViewportArray[i].Y - 1;
2122 }
2123 #endif
2124
2125 #if GEN_GEN >= 7
2126 GENX(SF_CLIP_VIEWPORT_pack)(NULL, sf_clip_map, &sfv);
2127 sf_clip_map += 16;
2128 #else
2129 GENX(SF_VIEWPORT_pack)(NULL, sf_map, &sfv);
2130 GENX(CLIP_VIEWPORT_pack)(NULL, clip_map, &clv);
2131 sf_map += 8;
2132 clip_map += 4;
2133 #endif
2134 }
2135
2136 #if GEN_GEN >= 7
2137 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP), ptr) {
2138 ptr.SFClipViewportPointer = sf_clip_vp_offset;
2139 }
2140 #elif GEN_GEN == 6
2141 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vp) {
2142 vp.SFViewportStateChange = 1;
2143 vp.CLIPViewportStateChange = 1;
2144 vp.PointertoCLIP_VIEWPORT = clip_vp_offset;
2145 vp.PointertoSF_VIEWPORT = sf_vp_offset;
2146 }
2147 #else
2148 brw->ctx.NewDriverState |= BRW_NEW_SF_VP | BRW_NEW_CLIP_VP;
2149 #endif
2150 }
2151
2152 static const struct brw_tracked_state genX(sf_clip_viewport) = {
2153 .dirty = {
2154 .mesa = _NEW_BUFFERS |
2155 _NEW_VIEWPORT,
2156 .brw = BRW_NEW_BATCH |
2157 BRW_NEW_BLORP |
2158 BRW_NEW_VIEWPORT_COUNT,
2159 },
2160 .emit = genX(upload_sf_clip_viewport),
2161 };
2162 #endif
2163
2164 /* ---------------------------------------------------------------------- */
2165
2166 #if GEN_GEN >= 6
2167 static void
2168 genX(upload_gs_state)(struct brw_context *brw)
2169 {
2170 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2171 const struct brw_stage_state *stage_state = &brw->gs.base;
2172 /* BRW_NEW_GEOMETRY_PROGRAM */
2173 bool active = brw->geometry_program;
2174
2175 /* BRW_NEW_GS_PROG_DATA */
2176 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
2177 const struct brw_vue_prog_data *vue_prog_data =
2178 brw_vue_prog_data(stage_prog_data);
2179 #if GEN_GEN >= 7
2180 const struct brw_gs_prog_data *gs_prog_data =
2181 brw_gs_prog_data(stage_prog_data);
2182 #endif
2183
2184 #if GEN_GEN < 7
2185 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_GS), cgs) {
2186 if (active && stage_state->push_const_size != 0) {
2187 cgs.Buffer0Valid = true;
2188 cgs.PointertoGSConstantBuffer0 = stage_state->push_const_offset;
2189 cgs.GSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
2190 }
2191 }
2192 #endif
2193
2194 #if GEN_GEN == 7 && !GEN_IS_HASWELL
2195 /**
2196 * From Graphics BSpec: 3D-Media-GPGPU Engine > 3D Pipeline Stages >
2197 * Geometry > Geometry Shader > State:
2198 *
2199 * "Note: Because of corruption in IVB:GT2, software needs to flush the
2200 * whole fixed function pipeline when the GS enable changes value in
2201 * the 3DSTATE_GS."
2202 *
2203 * The hardware architects have clarified that in this context "flush the
2204 * whole fixed function pipeline" means to emit a PIPE_CONTROL with the "CS
2205 * Stall" bit set.
2206 */
2207 if (brw->gt == 2 && brw->gs.enabled != active)
2208 gen7_emit_cs_stall_flush(brw);
2209 #endif
2210
2211 if (active) {
2212 brw_batch_emit(brw, GENX(3DSTATE_GS), gs) {
2213 INIT_THREAD_DISPATCH_FIELDS(gs, Vertex);
2214
2215 #if GEN_GEN >= 7
2216 gs.OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1;
2217 gs.OutputTopology = gs_prog_data->output_topology;
2218 gs.ControlDataHeaderSize =
2219 gs_prog_data->control_data_header_size_hwords;
2220
2221 gs.InstanceControl = gs_prog_data->invocations - 1;
2222 gs.DispatchMode = vue_prog_data->dispatch_mode;
2223
2224 gs.IncludePrimitiveID = gs_prog_data->include_primitive_id;
2225
2226 gs.ControlDataFormat = gs_prog_data->control_data_format;
2227 #endif
2228
2229 /* Note: the meaning of the GEN7_GS_REORDER_TRAILING bit changes between
2230 * Ivy Bridge and Haswell.
2231 *
2232 * On Ivy Bridge, setting this bit causes the vertices of a triangle
2233 * strip to be delivered to the geometry shader in an order that does
2234 * not strictly follow the OpenGL spec, but preserves triangle
2235 * orientation. For example, if the vertices are (1, 2, 3, 4, 5), then
2236 * the geometry shader sees triangles:
2237 *
2238 * (1, 2, 3), (2, 4, 3), (3, 4, 5)
2239 *
2240 * (Clearing the bit is even worse, because it fails to preserve
2241 * orientation).
2242 *
2243 * Triangle strips with adjacency always ordered in a way that preserves
2244 * triangle orientation but does not strictly follow the OpenGL spec,
2245 * regardless of the setting of this bit.
2246 *
2247 * On Haswell, both triangle strips and triangle strips with adjacency
2248 * are always ordered in a way that preserves triangle orientation.
2249 * Setting this bit causes the ordering to strictly follow the OpenGL
2250 * spec.
2251 *
2252 * So in either case we want to set the bit. Unfortunately on Ivy
2253 * Bridge this will get the order close to correct but not perfect.
2254 */
2255 gs.ReorderMode = TRAILING;
2256 gs.MaximumNumberofThreads =
2257 GEN_GEN == 8 ? (devinfo->max_gs_threads / 2 - 1)
2258 : (devinfo->max_gs_threads - 1);
2259
2260 #if GEN_GEN < 7
2261 gs.SOStatisticsEnable = true;
2262 gs.RenderingEnabled = 1;
2263 if (brw->geometry_program->info.has_transform_feedback_varyings)
2264 gs.SVBIPayloadEnable = true;
2265
2266 /* GEN6_GS_SPF_MODE and GEN6_GS_VECTOR_MASK_ENABLE are enabled as it
2267 * was previously done for gen6.
2268 *
2269 * TODO: test with both disabled to see if the HW is behaving
2270 * as expected, like in gen7.
2271 */
2272 gs.SingleProgramFlow = true;
2273 gs.VectorMaskEnable = true;
2274 #endif
2275
2276 #if GEN_GEN >= 8
2277 gs.ExpectedVertexCount = gs_prog_data->vertices_in;
2278
2279 if (gs_prog_data->static_vertex_count != -1) {
2280 gs.StaticOutput = true;
2281 gs.StaticOutputVertexCount = gs_prog_data->static_vertex_count;
2282 }
2283 gs.IncludeVertexHandles = vue_prog_data->include_vue_handles;
2284
2285 gs.UserClipDistanceCullTestEnableBitmask =
2286 vue_prog_data->cull_distance_mask;
2287
2288 const int urb_entry_write_offset = 1;
2289 const uint32_t urb_entry_output_length =
2290 DIV_ROUND_UP(vue_prog_data->vue_map.num_slots, 2) -
2291 urb_entry_write_offset;
2292
2293 gs.VertexURBEntryOutputReadOffset = urb_entry_write_offset;
2294 gs.VertexURBEntryOutputLength = MAX2(urb_entry_output_length, 1);
2295 #endif
2296 }
2297 #if GEN_GEN < 7
2298 } else if (brw->ff_gs.prog_active) {
2299 /* In gen6, transform feedback for the VS stage is done with an ad-hoc GS
2300 * program. This function provides the needed 3DSTATE_GS for this.
2301 */
2302 upload_gs_state_for_tf(brw);
2303 #endif
2304 } else {
2305 brw_batch_emit(brw, GENX(3DSTATE_GS), gs) {
2306 gs.StatisticsEnable = true;
2307 #if GEN_GEN < 7
2308 gs.RenderingEnabled = true;
2309 #endif
2310
2311 #if GEN_GEN < 8
2312 gs.DispatchGRFStartRegisterForURBData = 1;
2313 #if GEN_GEN >= 7
2314 gs.IncludeVertexHandles = true;
2315 #endif
2316 #endif
2317 }
2318 }
2319 #if GEN_GEN < 7
2320 brw->gs.enabled = active;
2321 #endif
2322 }
2323
2324 static const struct brw_tracked_state genX(gs_state) = {
2325 .dirty = {
2326 .mesa = (GEN_GEN < 7 ? _NEW_PROGRAM_CONSTANTS : 0),
2327 .brw = BRW_NEW_BATCH |
2328 BRW_NEW_BLORP |
2329 BRW_NEW_CONTEXT |
2330 BRW_NEW_GEOMETRY_PROGRAM |
2331 BRW_NEW_GS_PROG_DATA |
2332 (GEN_GEN < 7 ? BRW_NEW_FF_GS_PROG_DATA : 0),
2333 },
2334 .emit = genX(upload_gs_state),
2335 };
2336 #endif
2337
2338 /* ---------------------------------------------------------------------- */
2339
2340 #define blend_factor(x) brw_translate_blend_factor(x)
2341 #define blend_eqn(x) brw_translate_blend_equation(x)
2342
2343 #if GEN_GEN >= 6
2344 static void
2345 genX(upload_blend_state)(struct brw_context *brw)
2346 {
2347 struct gl_context *ctx = &brw->ctx;
2348 int size;
2349
2350 /* We need at least one BLEND_STATE written, because we might do
2351 * thread dispatch even if _NumColorDrawBuffers is 0 (for example
2352 * for computed depth or alpha test), which will do an FB write
2353 * with render target 0, which will reference BLEND_STATE[0] for
2354 * alpha test enable.
2355 */
2356 int nr_draw_buffers = ctx->DrawBuffer->_NumColorDrawBuffers;
2357 if (nr_draw_buffers == 0 && ctx->Color.AlphaEnabled)
2358 nr_draw_buffers = 1;
2359
2360 size = GENX(BLEND_STATE_ENTRY_length) * 4 * nr_draw_buffers;
2361 #if GEN_GEN >= 8
2362 size += GENX(BLEND_STATE_length) * 4;
2363 #endif
2364
2365 uint32_t *blend_map;
2366 blend_map = brw_state_batch(brw, size, 64, &brw->cc.blend_state_offset);
2367
2368 #if GEN_GEN >= 8
2369 struct GENX(BLEND_STATE) blend = { 0 };
2370 {
2371 #else
2372 for (int i = 0; i < nr_draw_buffers; i++) {
2373 struct GENX(BLEND_STATE_ENTRY) entry = { 0 };
2374 #define blend entry
2375 #endif
2376 /* OpenGL specification 3.3 (page 196), section 4.1.3 says:
2377 * "If drawbuffer zero is not NONE and the buffer it references has an
2378 * integer format, the SAMPLE_ALPHA_TO_COVERAGE and SAMPLE_ALPHA_TO_ONE
2379 * operations are skipped."
2380 */
2381 if (!(ctx->DrawBuffer->_IntegerBuffers & 0x1)) {
2382 /* _NEW_MULTISAMPLE */
2383 if (_mesa_is_multisample_enabled(ctx)) {
2384 if (ctx->Multisample.SampleAlphaToCoverage) {
2385 blend.AlphaToCoverageEnable = true;
2386 blend.AlphaToCoverageDitherEnable = GEN_GEN >= 7;
2387 }
2388 if (ctx->Multisample.SampleAlphaToOne)
2389 blend.AlphaToOneEnable = true;
2390 }
2391
2392 /* _NEW_COLOR */
2393 if (ctx->Color.AlphaEnabled) {
2394 blend.AlphaTestEnable = true;
2395 blend.AlphaTestFunction =
2396 intel_translate_compare_func(ctx->Color.AlphaFunc);
2397 }
2398
2399 if (ctx->Color.DitherFlag) {
2400 blend.ColorDitherEnable = true;
2401 }
2402 }
2403
2404 #if GEN_GEN >= 8
2405 for (int i = 0; i < nr_draw_buffers; i++) {
2406 struct GENX(BLEND_STATE_ENTRY) entry = { 0 };
2407 #else
2408 {
2409 #endif
2410
2411 /* _NEW_BUFFERS */
2412 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[i];
2413
2414 /* Used for implementing the following bit of GL_EXT_texture_integer:
2415 * "Per-fragment operations that require floating-point color
2416 * components, including multisample alpha operations, alpha test,
2417 * blending, and dithering, have no effect when the corresponding
2418 * colors are written to an integer color buffer."
2419 */
2420 bool integer = ctx->DrawBuffer->_IntegerBuffers & (0x1 << i);
2421
2422 /* _NEW_COLOR */
2423 if (ctx->Color.ColorLogicOpEnabled) {
2424 GLenum rb_type = rb ? _mesa_get_format_datatype(rb->Format)
2425 : GL_UNSIGNED_NORMALIZED;
2426 WARN_ONCE(ctx->Color.LogicOp != GL_COPY &&
2427 rb_type != GL_UNSIGNED_NORMALIZED &&
2428 rb_type != GL_FLOAT, "Ignoring %s logic op on %s "
2429 "renderbuffer\n",
2430 _mesa_enum_to_string(ctx->Color.LogicOp),
2431 _mesa_enum_to_string(rb_type));
2432 if (GEN_GEN >= 8 || rb_type == GL_UNSIGNED_NORMALIZED) {
2433 entry.LogicOpEnable = true;
2434 entry.LogicOpFunction =
2435 intel_translate_logic_op(ctx->Color.LogicOp);
2436 }
2437 } else if (ctx->Color.BlendEnabled & (1 << i) && !integer &&
2438 !ctx->Color._AdvancedBlendMode) {
2439 GLenum eqRGB = ctx->Color.Blend[i].EquationRGB;
2440 GLenum eqA = ctx->Color.Blend[i].EquationA;
2441 GLenum srcRGB = ctx->Color.Blend[i].SrcRGB;
2442 GLenum dstRGB = ctx->Color.Blend[i].DstRGB;
2443 GLenum srcA = ctx->Color.Blend[i].SrcA;
2444 GLenum dstA = ctx->Color.Blend[i].DstA;
2445
2446 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
2447 srcRGB = dstRGB = GL_ONE;
2448
2449 if (eqA == GL_MIN || eqA == GL_MAX)
2450 srcA = dstA = GL_ONE;
2451
2452 /* Due to hardware limitations, the destination may have information
2453 * in an alpha channel even when the format specifies no alpha
2454 * channel. In order to avoid getting any incorrect blending due to
2455 * that alpha channel, coerce the blend factors to values that will
2456 * not read the alpha channel, but will instead use the correct
2457 * implicit value for alpha.
2458 */
2459 if (rb && !_mesa_base_format_has_channel(rb->_BaseFormat,
2460 GL_TEXTURE_ALPHA_TYPE)) {
2461 srcRGB = brw_fix_xRGB_alpha(srcRGB);
2462 srcA = brw_fix_xRGB_alpha(srcA);
2463 dstRGB = brw_fix_xRGB_alpha(dstRGB);
2464 dstA = brw_fix_xRGB_alpha(dstA);
2465 }
2466
2467 entry.ColorBufferBlendEnable = true;
2468 entry.DestinationBlendFactor = blend_factor(dstRGB);
2469 entry.SourceBlendFactor = blend_factor(srcRGB);
2470 entry.DestinationAlphaBlendFactor = blend_factor(dstA);
2471 entry.SourceAlphaBlendFactor = blend_factor(srcA);
2472 entry.ColorBlendFunction = blend_eqn(eqRGB);
2473 entry.AlphaBlendFunction = blend_eqn(eqA);
2474
2475 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
2476 blend.IndependentAlphaBlendEnable = true;
2477 }
2478
2479 /* See section 8.1.6 "Pre-Blend Color Clamping" of the
2480 * SandyBridge PRM Volume 2 Part 1 for HW requirements.
2481 *
2482 * We do our ARB_color_buffer_float CLAMP_FRAGMENT_COLOR
2483 * clamping in the fragment shader. For its clamping of
2484 * blending, the spec says:
2485 *
2486 * "RESOLVED: For fixed-point color buffers, the inputs and
2487 * the result of the blending equation are clamped. For
2488 * floating-point color buffers, no clamping occurs."
2489 *
2490 * So, generally, we want clamping to the render target's range.
2491 * And, good news, the hardware tables for both pre- and
2492 * post-blend color clamping are either ignored, or any are
2493 * allowed, or clamping is required but RT range clamping is a
2494 * valid option.
2495 */
2496 entry.PreBlendColorClampEnable = true;
2497 entry.PostBlendColorClampEnable = true;
2498 entry.ColorClampRange = COLORCLAMP_RTFORMAT;
2499
2500 entry.WriteDisableRed = !ctx->Color.ColorMask[i][0];
2501 entry.WriteDisableGreen = !ctx->Color.ColorMask[i][1];
2502 entry.WriteDisableBlue = !ctx->Color.ColorMask[i][2];
2503 entry.WriteDisableAlpha = !ctx->Color.ColorMask[i][3];
2504
2505 /* From the BLEND_STATE docs, DWord 0, Bit 29 (AlphaToOne Enable):
2506 * "If Dual Source Blending is enabled, this bit must be disabled."
2507 */
2508 WARN_ONCE(ctx->Color.Blend[i]._UsesDualSrc &&
2509 _mesa_is_multisample_enabled(ctx) &&
2510 ctx->Multisample.SampleAlphaToOne,
2511 "HW workaround: disabling alpha to one with dual src "
2512 "blending\n");
2513 if (ctx->Color.Blend[i]._UsesDualSrc)
2514 blend.AlphaToOneEnable = false;
2515 #if GEN_GEN >= 8
2516 GENX(BLEND_STATE_ENTRY_pack)(NULL, &blend_map[1 + i * 2], &entry);
2517 #else
2518 GENX(BLEND_STATE_ENTRY_pack)(NULL, &blend_map[i * 2], &entry);
2519 #endif
2520 }
2521 }
2522
2523 #if GEN_GEN >= 8
2524 GENX(BLEND_STATE_pack)(NULL, blend_map, &blend);
2525 #endif
2526
2527 #if GEN_GEN < 7
2528 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
2529 ptr.PointertoBLEND_STATE = brw->cc.blend_state_offset;
2530 ptr.BLEND_STATEChange = true;
2531 }
2532 #else
2533 brw_batch_emit(brw, GENX(3DSTATE_BLEND_STATE_POINTERS), ptr) {
2534 ptr.BlendStatePointer = brw->cc.blend_state_offset;
2535 #if GEN_GEN >= 8
2536 ptr.BlendStatePointerValid = true;
2537 #endif
2538 }
2539 #endif
2540 }
2541
2542 static const struct brw_tracked_state genX(blend_state) = {
2543 .dirty = {
2544 .mesa = _NEW_BUFFERS |
2545 _NEW_COLOR |
2546 _NEW_MULTISAMPLE,
2547 .brw = BRW_NEW_BATCH |
2548 BRW_NEW_BLORP |
2549 BRW_NEW_STATE_BASE_ADDRESS,
2550 },
2551 .emit = genX(upload_blend_state),
2552 };
2553 #endif
2554
2555 /* ---------------------------------------------------------------------- */
2556
2557 #if GEN_GEN >= 6
2558 static void
2559 genX(upload_scissor_state)(struct brw_context *brw)
2560 {
2561 struct gl_context *ctx = &brw->ctx;
2562 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
2563 struct GENX(SCISSOR_RECT) scissor;
2564 uint32_t scissor_state_offset;
2565 const unsigned int fb_width = _mesa_geometric_width(ctx->DrawBuffer);
2566 const unsigned int fb_height = _mesa_geometric_height(ctx->DrawBuffer);
2567 uint32_t *scissor_map;
2568
2569 /* BRW_NEW_VIEWPORT_COUNT */
2570 const unsigned viewport_count = brw->clip.viewport_count;
2571
2572 scissor_map = brw_state_batch(
2573 brw, GENX(SCISSOR_RECT_length) * sizeof(uint32_t) * viewport_count,
2574 32, &scissor_state_offset);
2575
2576 /* _NEW_SCISSOR | _NEW_BUFFERS | _NEW_VIEWPORT */
2577
2578 /* The scissor only needs to handle the intersection of drawable and
2579 * scissor rect. Clipping to the boundaries of static shared buffers
2580 * for front/back/depth is covered by looping over cliprects in brw_draw.c.
2581 *
2582 * Note that the hardware's coordinates are inclusive, while Mesa's min is
2583 * inclusive but max is exclusive.
2584 */
2585 for (unsigned i = 0; i < viewport_count; i++) {
2586 int bbox[4];
2587
2588 bbox[0] = MAX2(ctx->ViewportArray[i].X, 0);
2589 bbox[1] = MIN2(bbox[0] + ctx->ViewportArray[i].Width, fb_width);
2590 bbox[2] = MAX2(ctx->ViewportArray[i].Y, 0);
2591 bbox[3] = MIN2(bbox[2] + ctx->ViewportArray[i].Height, fb_height);
2592 _mesa_intersect_scissor_bounding_box(ctx, i, bbox);
2593
2594 if (bbox[0] == bbox[1] || bbox[2] == bbox[3]) {
2595 /* If the scissor was out of bounds and got clamped to 0 width/height
2596 * at the bounds, the subtraction of 1 from maximums could produce a
2597 * negative number and thus not clip anything. Instead, just provide
2598 * a min > max scissor inside the bounds, which produces the expected
2599 * no rendering.
2600 */
2601 scissor.ScissorRectangleXMin = 1;
2602 scissor.ScissorRectangleXMax = 0;
2603 scissor.ScissorRectangleYMin = 1;
2604 scissor.ScissorRectangleYMax = 0;
2605 } else if (render_to_fbo) {
2606 /* texmemory: Y=0=bottom */
2607 scissor.ScissorRectangleXMin = bbox[0];
2608 scissor.ScissorRectangleXMax = bbox[1] - 1;
2609 scissor.ScissorRectangleYMin = bbox[2];
2610 scissor.ScissorRectangleYMax = bbox[3] - 1;
2611 } else {
2612 /* memory: Y=0=top */
2613 scissor.ScissorRectangleXMin = bbox[0];
2614 scissor.ScissorRectangleXMax = bbox[1] - 1;
2615 scissor.ScissorRectangleYMin = fb_height - bbox[3];
2616 scissor.ScissorRectangleYMax = fb_height - bbox[2] - 1;
2617 }
2618
2619 GENX(SCISSOR_RECT_pack)(
2620 NULL, scissor_map + i * GENX(SCISSOR_RECT_length), &scissor);
2621 }
2622
2623 brw_batch_emit(brw, GENX(3DSTATE_SCISSOR_STATE_POINTERS), ptr) {
2624 ptr.ScissorRectPointer = scissor_state_offset;
2625 }
2626 }
2627
2628 static const struct brw_tracked_state genX(scissor_state) = {
2629 .dirty = {
2630 .mesa = _NEW_BUFFERS |
2631 _NEW_SCISSOR |
2632 _NEW_VIEWPORT,
2633 .brw = BRW_NEW_BATCH |
2634 BRW_NEW_BLORP |
2635 BRW_NEW_VIEWPORT_COUNT,
2636 },
2637 .emit = genX(upload_scissor_state),
2638 };
2639 #endif
2640
2641 /* ---------------------------------------------------------------------- */
2642
2643 #if GEN_GEN >= 7
2644 UNUSED static const uint32_t push_constant_opcodes[] = {
2645 [MESA_SHADER_VERTEX] = 21,
2646 [MESA_SHADER_TESS_CTRL] = 25, /* HS */
2647 [MESA_SHADER_TESS_EVAL] = 26, /* DS */
2648 [MESA_SHADER_GEOMETRY] = 22,
2649 [MESA_SHADER_FRAGMENT] = 23,
2650 [MESA_SHADER_COMPUTE] = 0,
2651 };
2652
2653 static void
2654 upload_constant_state(struct brw_context *brw,
2655 struct brw_stage_state *stage_state,
2656 bool active, uint32_t stage)
2657 {
2658 UNUSED uint32_t mocs = GEN_GEN < 8 ? GEN7_MOCS_L3 : 0;
2659 active = active && stage_state->push_const_size != 0;
2660
2661 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_VS), pkt) {
2662 pkt._3DCommandSubOpcode = push_constant_opcodes[stage];
2663 if (active) {
2664 #if GEN_GEN >= 8 || GEN_IS_HASWELL
2665 pkt.ConstantBody.ConstantBuffer2ReadLength =
2666 stage_state->push_const_size;
2667 pkt.ConstantBody.PointerToConstantBuffer2 =
2668 render_ro_bo(brw->curbe.curbe_bo, stage_state->push_const_offset);
2669 #else
2670 pkt.ConstantBody.ConstantBuffer0ReadLength =
2671 stage_state->push_const_size;
2672 pkt.ConstantBody.PointerToConstantBuffer0.offset =
2673 stage_state->push_const_offset | mocs;
2674 #endif
2675 }
2676 }
2677
2678 brw->ctx.NewDriverState |= GEN_GEN >= 9 ? BRW_NEW_SURFACES : 0;
2679 }
2680 #endif
2681
2682 #if GEN_GEN >= 6
2683 static void
2684 genX(upload_vs_push_constants)(struct brw_context *brw)
2685 {
2686 struct brw_stage_state *stage_state = &brw->vs.base;
2687
2688 /* _BRW_NEW_VERTEX_PROGRAM */
2689 const struct brw_program *vp = brw_program_const(brw->vertex_program);
2690 /* BRW_NEW_VS_PROG_DATA */
2691 const struct brw_stage_prog_data *prog_data = brw->vs.base.prog_data;
2692
2693 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_VERTEX);
2694 gen6_upload_push_constants(brw, &vp->program, prog_data, stage_state);
2695
2696 #if GEN_GEN >= 7
2697 if (GEN_GEN == 7 && !GEN_IS_HASWELL && !brw->is_baytrail)
2698 gen7_emit_vs_workaround_flush(brw);
2699
2700 upload_constant_state(brw, stage_state, true /* active */,
2701 MESA_SHADER_VERTEX);
2702 #endif
2703 }
2704
2705 static const struct brw_tracked_state genX(vs_push_constants) = {
2706 .dirty = {
2707 .mesa = _NEW_PROGRAM_CONSTANTS |
2708 _NEW_TRANSFORM,
2709 .brw = BRW_NEW_BATCH |
2710 BRW_NEW_BLORP |
2711 BRW_NEW_PUSH_CONSTANT_ALLOCATION |
2712 BRW_NEW_VERTEX_PROGRAM |
2713 BRW_NEW_VS_PROG_DATA,
2714 },
2715 .emit = genX(upload_vs_push_constants),
2716 };
2717
2718 static void
2719 genX(upload_gs_push_constants)(struct brw_context *brw)
2720 {
2721 struct brw_stage_state *stage_state = &brw->gs.base;
2722
2723 /* BRW_NEW_GEOMETRY_PROGRAM */
2724 const struct brw_program *gp = brw_program_const(brw->geometry_program);
2725
2726 if (gp) {
2727 /* BRW_NEW_GS_PROG_DATA */
2728 struct brw_stage_prog_data *prog_data = brw->gs.base.prog_data;
2729
2730 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_GEOMETRY);
2731 gen6_upload_push_constants(brw, &gp->program, prog_data, stage_state);
2732 }
2733
2734 #if GEN_GEN >= 7
2735 upload_constant_state(brw, stage_state, gp, MESA_SHADER_GEOMETRY);
2736 #endif
2737 }
2738
2739 static const struct brw_tracked_state genX(gs_push_constants) = {
2740 .dirty = {
2741 .mesa = _NEW_PROGRAM_CONSTANTS |
2742 _NEW_TRANSFORM,
2743 .brw = BRW_NEW_BATCH |
2744 BRW_NEW_BLORP |
2745 BRW_NEW_GEOMETRY_PROGRAM |
2746 BRW_NEW_GS_PROG_DATA |
2747 BRW_NEW_PUSH_CONSTANT_ALLOCATION,
2748 },
2749 .emit = genX(upload_gs_push_constants),
2750 };
2751
2752 static void
2753 genX(upload_wm_push_constants)(struct brw_context *brw)
2754 {
2755 struct brw_stage_state *stage_state = &brw->wm.base;
2756 /* BRW_NEW_FRAGMENT_PROGRAM */
2757 const struct brw_program *fp = brw_program_const(brw->fragment_program);
2758 /* BRW_NEW_FS_PROG_DATA */
2759 const struct brw_stage_prog_data *prog_data = brw->wm.base.prog_data;
2760
2761 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_FRAGMENT);
2762
2763 gen6_upload_push_constants(brw, &fp->program, prog_data, stage_state);
2764
2765 #if GEN_GEN >= 7
2766 upload_constant_state(brw, stage_state, true, MESA_SHADER_FRAGMENT);
2767 #endif
2768 }
2769
2770 static const struct brw_tracked_state genX(wm_push_constants) = {
2771 .dirty = {
2772 .mesa = _NEW_PROGRAM_CONSTANTS,
2773 .brw = BRW_NEW_BATCH |
2774 BRW_NEW_BLORP |
2775 BRW_NEW_FRAGMENT_PROGRAM |
2776 BRW_NEW_FS_PROG_DATA |
2777 BRW_NEW_PUSH_CONSTANT_ALLOCATION,
2778 },
2779 .emit = genX(upload_wm_push_constants),
2780 };
2781 #endif
2782
2783 /* ---------------------------------------------------------------------- */
2784
2785 #if GEN_GEN >= 6
2786 static unsigned
2787 genX(determine_sample_mask)(struct brw_context *brw)
2788 {
2789 struct gl_context *ctx = &brw->ctx;
2790 float coverage = 1.0f;
2791 float coverage_invert = false;
2792 unsigned sample_mask = ~0u;
2793
2794 /* BRW_NEW_NUM_SAMPLES */
2795 unsigned num_samples = brw->num_samples;
2796
2797 if (_mesa_is_multisample_enabled(ctx)) {
2798 if (ctx->Multisample.SampleCoverage) {
2799 coverage = ctx->Multisample.SampleCoverageValue;
2800 coverage_invert = ctx->Multisample.SampleCoverageInvert;
2801 }
2802 if (ctx->Multisample.SampleMask) {
2803 sample_mask = ctx->Multisample.SampleMaskValue;
2804 }
2805 }
2806
2807 if (num_samples > 1) {
2808 int coverage_int = (int) (num_samples * coverage + 0.5f);
2809 uint32_t coverage_bits = (1 << coverage_int) - 1;
2810 if (coverage_invert)
2811 coverage_bits ^= (1 << num_samples) - 1;
2812 return coverage_bits & sample_mask;
2813 } else {
2814 return 1;
2815 }
2816 }
2817
2818 static void
2819 genX(emit_3dstate_multisample2)(struct brw_context *brw,
2820 unsigned num_samples)
2821 {
2822 assert(brw->num_samples <= 16);
2823
2824 unsigned log2_samples = ffs(MAX2(num_samples, 1)) - 1;
2825
2826 brw_batch_emit(brw, GENX(3DSTATE_MULTISAMPLE), multi) {
2827 multi.PixelLocation = CENTER;
2828 multi.NumberofMultisamples = log2_samples;
2829 #if GEN_GEN == 6
2830 GEN_SAMPLE_POS_4X(multi.Sample);
2831 #elif GEN_GEN == 7
2832 switch (num_samples) {
2833 case 1:
2834 GEN_SAMPLE_POS_1X(multi.Sample);
2835 break;
2836 case 2:
2837 GEN_SAMPLE_POS_2X(multi.Sample);
2838 break;
2839 case 4:
2840 GEN_SAMPLE_POS_4X(multi.Sample);
2841 break;
2842 case 8:
2843 GEN_SAMPLE_POS_8X(multi.Sample);
2844 break;
2845 default:
2846 break;
2847 }
2848 #endif
2849 }
2850 }
2851
2852 static void
2853 genX(upload_multisample_state)(struct brw_context *brw)
2854 {
2855 genX(emit_3dstate_multisample2)(brw, brw->num_samples);
2856
2857 brw_batch_emit(brw, GENX(3DSTATE_SAMPLE_MASK), sm) {
2858 sm.SampleMask = genX(determine_sample_mask)(brw);
2859 }
2860 }
2861
2862 static const struct brw_tracked_state genX(multisample_state) = {
2863 .dirty = {
2864 .mesa = _NEW_MULTISAMPLE,
2865 .brw = BRW_NEW_BLORP |
2866 BRW_NEW_CONTEXT |
2867 BRW_NEW_NUM_SAMPLES,
2868 },
2869 .emit = genX(upload_multisample_state)
2870 };
2871 #endif
2872
2873 /* ---------------------------------------------------------------------- */
2874
2875 #if GEN_GEN >= 6
2876 static void
2877 genX(upload_color_calc_state)(struct brw_context *brw)
2878 {
2879 struct gl_context *ctx = &brw->ctx;
2880
2881 brw_state_emit(brw, GENX(COLOR_CALC_STATE), 64, &brw->cc.state_offset, cc) {
2882 /* _NEW_COLOR */
2883 cc.AlphaTestFormat = ALPHATEST_UNORM8;
2884 UNCLAMPED_FLOAT_TO_UBYTE(cc.AlphaReferenceValueAsUNORM8,
2885 ctx->Color.AlphaRef);
2886
2887 #if GEN_GEN < 9
2888 /* _NEW_STENCIL */
2889 cc.StencilReferenceValue = _mesa_get_stencil_ref(ctx, 0);
2890 cc.BackfaceStencilReferenceValue =
2891 _mesa_get_stencil_ref(ctx, ctx->Stencil._BackFace);
2892 #endif
2893
2894 /* _NEW_COLOR */
2895 cc.BlendConstantColorRed = ctx->Color.BlendColorUnclamped[0];
2896 cc.BlendConstantColorGreen = ctx->Color.BlendColorUnclamped[1];
2897 cc.BlendConstantColorBlue = ctx->Color.BlendColorUnclamped[2];
2898 cc.BlendConstantColorAlpha = ctx->Color.BlendColorUnclamped[3];
2899 }
2900
2901 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
2902 ptr.ColorCalcStatePointer = brw->cc.state_offset;
2903 #if GEN_GEN != 7
2904 ptr.ColorCalcStatePointerValid = true;
2905 #endif
2906 }
2907 }
2908
2909 static const struct brw_tracked_state genX(color_calc_state) = {
2910 .dirty = {
2911 .mesa = _NEW_COLOR |
2912 _NEW_STENCIL,
2913 .brw = BRW_NEW_BATCH |
2914 BRW_NEW_BLORP |
2915 BRW_NEW_CC_STATE |
2916 BRW_NEW_STATE_BASE_ADDRESS,
2917 },
2918 .emit = genX(upload_color_calc_state),
2919 };
2920
2921 #endif
2922
2923 /* ---------------------------------------------------------------------- */
2924
2925 #if GEN_GEN >= 7
2926 static void
2927 genX(upload_sbe)(struct brw_context *brw)
2928 {
2929 struct gl_context *ctx = &brw->ctx;
2930 /* BRW_NEW_FS_PROG_DATA */
2931 const struct brw_wm_prog_data *wm_prog_data =
2932 brw_wm_prog_data(brw->wm.base.prog_data);
2933 #if GEN_GEN >= 8
2934 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attr_overrides[16] = { { 0 } };
2935 #else
2936 #define attr_overrides sbe.Attribute
2937 #endif
2938 uint32_t urb_entry_read_length;
2939 uint32_t urb_entry_read_offset;
2940 uint32_t point_sprite_enables;
2941
2942 brw_batch_emit(brw, GENX(3DSTATE_SBE), sbe) {
2943 sbe.AttributeSwizzleEnable = true;
2944 sbe.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
2945
2946 /* _NEW_BUFFERS */
2947 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
2948
2949 /* _NEW_POINT
2950 *
2951 * Window coordinates in an FBO are inverted, which means point
2952 * sprite origin must be inverted.
2953 */
2954 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo)
2955 sbe.PointSpriteTextureCoordinateOrigin = LOWERLEFT;
2956 else
2957 sbe.PointSpriteTextureCoordinateOrigin = UPPERLEFT;
2958
2959 /* _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM,
2960 * BRW_NEW_FS_PROG_DATA | BRW_NEW_FRAGMENT_PROGRAM |
2961 * BRW_NEW_GS_PROG_DATA | BRW_NEW_PRIMITIVE | BRW_NEW_TES_PROG_DATA |
2962 * BRW_NEW_VUE_MAP_GEOM_OUT
2963 */
2964 genX(calculate_attr_overrides)(brw,
2965 attr_overrides,
2966 &point_sprite_enables,
2967 &urb_entry_read_length,
2968 &urb_entry_read_offset);
2969
2970 /* Typically, the URB entry read length and offset should be programmed
2971 * in 3DSTATE_VS and 3DSTATE_GS; SBE inherits it from the last active
2972 * stage which produces geometry. However, we don't know the proper
2973 * value until we call calculate_attr_overrides().
2974 *
2975 * To fit with our existing code, we override the inherited values and
2976 * specify it here directly, as we did on previous generations.
2977 */
2978 sbe.VertexURBEntryReadLength = urb_entry_read_length;
2979 sbe.VertexURBEntryReadOffset = urb_entry_read_offset;
2980 sbe.PointSpriteTextureCoordinateEnable = point_sprite_enables;
2981 sbe.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
2982
2983 #if GEN_GEN >= 8
2984 sbe.ForceVertexURBEntryReadLength = true;
2985 sbe.ForceVertexURBEntryReadOffset = true;
2986 #endif
2987
2988 #if GEN_GEN >= 9
2989 /* prepare the active component dwords */
2990 int input_index = 0;
2991 for (int attr = 0; attr < VARYING_SLOT_MAX; attr++) {
2992 if (!(brw->fragment_program->info.inputs_read &
2993 BITFIELD64_BIT(attr))) {
2994 continue;
2995 }
2996
2997 assert(input_index < 32);
2998
2999 sbe.AttributeActiveComponentFormat[input_index] = ACTIVE_COMPONENT_XYZW;
3000 ++input_index;
3001 }
3002 #endif
3003 }
3004
3005 #if GEN_GEN >= 8
3006 brw_batch_emit(brw, GENX(3DSTATE_SBE_SWIZ), sbes) {
3007 for (int i = 0; i < 16; i++)
3008 sbes.Attribute[i] = attr_overrides[i];
3009 }
3010 #endif
3011
3012 #undef attr_overrides
3013 }
3014
3015 static const struct brw_tracked_state genX(sbe_state) = {
3016 .dirty = {
3017 .mesa = _NEW_BUFFERS |
3018 _NEW_LIGHT |
3019 _NEW_POINT |
3020 _NEW_POLYGON |
3021 _NEW_PROGRAM,
3022 .brw = BRW_NEW_BLORP |
3023 BRW_NEW_CONTEXT |
3024 BRW_NEW_FRAGMENT_PROGRAM |
3025 BRW_NEW_FS_PROG_DATA |
3026 BRW_NEW_GS_PROG_DATA |
3027 BRW_NEW_TES_PROG_DATA |
3028 BRW_NEW_VUE_MAP_GEOM_OUT |
3029 (GEN_GEN == 7 ? BRW_NEW_PRIMITIVE
3030 : 0),
3031 },
3032 .emit = genX(upload_sbe),
3033 };
3034 #endif
3035
3036 /* ---------------------------------------------------------------------- */
3037
3038 #if GEN_GEN >= 7
3039 /**
3040 * Outputs the 3DSTATE_SO_DECL_LIST command.
3041 *
3042 * The data output is a series of 64-bit entries containing a SO_DECL per
3043 * stream. We only have one stream of rendering coming out of the GS unit, so
3044 * we only emit stream 0 (low 16 bits) SO_DECLs.
3045 */
3046 static void
3047 genX(upload_3dstate_so_decl_list)(struct brw_context *brw,
3048 const struct brw_vue_map *vue_map)
3049 {
3050 struct gl_context *ctx = &brw->ctx;
3051 /* BRW_NEW_TRANSFORM_FEEDBACK */
3052 struct gl_transform_feedback_object *xfb_obj =
3053 ctx->TransformFeedback.CurrentObject;
3054 const struct gl_transform_feedback_info *linked_xfb_info =
3055 xfb_obj->program->sh.LinkedTransformFeedback;
3056 struct GENX(SO_DECL) so_decl[MAX_VERTEX_STREAMS][128];
3057 int buffer_mask[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3058 int next_offset[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3059 int decls[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3060 int max_decls = 0;
3061 STATIC_ASSERT(ARRAY_SIZE(so_decl[0]) >= MAX_PROGRAM_OUTPUTS);
3062
3063 memset(so_decl, 0, sizeof(so_decl));
3064
3065 /* Construct the list of SO_DECLs to be emitted. The formatting of the
3066 * command feels strange -- each dword pair contains a SO_DECL per stream.
3067 */
3068 for (unsigned i = 0; i < linked_xfb_info->NumOutputs; i++) {
3069 int buffer = linked_xfb_info->Outputs[i].OutputBuffer;
3070 struct GENX(SO_DECL) decl = {0};
3071 int varying = linked_xfb_info->Outputs[i].OutputRegister;
3072 const unsigned components = linked_xfb_info->Outputs[i].NumComponents;
3073 unsigned component_mask = (1 << components) - 1;
3074 unsigned stream_id = linked_xfb_info->Outputs[i].StreamId;
3075 unsigned decl_buffer_slot = buffer;
3076 assert(stream_id < MAX_VERTEX_STREAMS);
3077
3078 /* gl_PointSize is stored in VARYING_SLOT_PSIZ.w
3079 * gl_Layer is stored in VARYING_SLOT_PSIZ.y
3080 * gl_ViewportIndex is stored in VARYING_SLOT_PSIZ.z
3081 */
3082 if (varying == VARYING_SLOT_PSIZ) {
3083 assert(components == 1);
3084 component_mask <<= 3;
3085 } else if (varying == VARYING_SLOT_LAYER) {
3086 assert(components == 1);
3087 component_mask <<= 1;
3088 } else if (varying == VARYING_SLOT_VIEWPORT) {
3089 assert(components == 1);
3090 component_mask <<= 2;
3091 } else {
3092 component_mask <<= linked_xfb_info->Outputs[i].ComponentOffset;
3093 }
3094
3095 buffer_mask[stream_id] |= 1 << buffer;
3096
3097 decl.OutputBufferSlot = decl_buffer_slot;
3098 if (varying == VARYING_SLOT_LAYER || varying == VARYING_SLOT_VIEWPORT) {
3099 decl.RegisterIndex = vue_map->varying_to_slot[VARYING_SLOT_PSIZ];
3100 } else {
3101 assert(vue_map->varying_to_slot[varying] >= 0);
3102 decl.RegisterIndex = vue_map->varying_to_slot[varying];
3103 }
3104 decl.ComponentMask = component_mask;
3105
3106 /* Mesa doesn't store entries for gl_SkipComponents in the Outputs[]
3107 * array. Instead, it simply increments DstOffset for the following
3108 * input by the number of components that should be skipped.
3109 *
3110 * Our hardware is unusual in that it requires us to program SO_DECLs
3111 * for fake "hole" components, rather than simply taking the offset
3112 * for each real varying. Each hole can have size 1, 2, 3, or 4; we
3113 * program as many size = 4 holes as we can, then a final hole to
3114 * accommodate the final 1, 2, or 3 remaining.
3115 */
3116 int skip_components =
3117 linked_xfb_info->Outputs[i].DstOffset - next_offset[buffer];
3118
3119 next_offset[buffer] += skip_components;
3120
3121 while (skip_components >= 4) {
3122 struct GENX(SO_DECL) *d = &so_decl[stream_id][decls[stream_id]++];
3123 d->HoleFlag = 1;
3124 d->OutputBufferSlot = decl_buffer_slot;
3125 d->ComponentMask = 0xf;
3126 skip_components -= 4;
3127 }
3128
3129 if (skip_components > 0) {
3130 struct GENX(SO_DECL) *d = &so_decl[stream_id][decls[stream_id]++];
3131 d->HoleFlag = 1;
3132 d->OutputBufferSlot = decl_buffer_slot;
3133 d->ComponentMask = (1 << skip_components) - 1;
3134 }
3135
3136 assert(linked_xfb_info->Outputs[i].DstOffset == next_offset[buffer]);
3137
3138 next_offset[buffer] += components;
3139
3140 so_decl[stream_id][decls[stream_id]++] = decl;
3141
3142 if (decls[stream_id] > max_decls)
3143 max_decls = decls[stream_id];
3144 }
3145
3146 uint32_t *dw;
3147 dw = brw_batch_emitn(brw, GENX(3DSTATE_SO_DECL_LIST), 3 + 2 * max_decls,
3148 .StreamtoBufferSelects0 = buffer_mask[0],
3149 .StreamtoBufferSelects1 = buffer_mask[1],
3150 .StreamtoBufferSelects2 = buffer_mask[2],
3151 .StreamtoBufferSelects3 = buffer_mask[3],
3152 .NumEntries0 = decls[0],
3153 .NumEntries1 = decls[1],
3154 .NumEntries2 = decls[2],
3155 .NumEntries3 = decls[3]);
3156
3157 for (int i = 0; i < max_decls; i++) {
3158 GENX(SO_DECL_ENTRY_pack)(
3159 brw, dw + 2 + i * 2,
3160 &(struct GENX(SO_DECL_ENTRY)) {
3161 .Stream0Decl = so_decl[0][i],
3162 .Stream1Decl = so_decl[1][i],
3163 .Stream2Decl = so_decl[2][i],
3164 .Stream3Decl = so_decl[3][i],
3165 });
3166 }
3167 }
3168
3169 static void
3170 genX(upload_3dstate_so_buffers)(struct brw_context *brw)
3171 {
3172 struct gl_context *ctx = &brw->ctx;
3173 /* BRW_NEW_TRANSFORM_FEEDBACK */
3174 struct gl_transform_feedback_object *xfb_obj =
3175 ctx->TransformFeedback.CurrentObject;
3176 #if GEN_GEN < 8
3177 const struct gl_transform_feedback_info *linked_xfb_info =
3178 xfb_obj->program->sh.LinkedTransformFeedback;
3179 #else
3180 struct brw_transform_feedback_object *brw_obj =
3181 (struct brw_transform_feedback_object *) xfb_obj;
3182 uint32_t mocs_wb = brw->gen >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
3183 #endif
3184
3185 /* Set up the up to 4 output buffers. These are the ranges defined in the
3186 * gl_transform_feedback_object.
3187 */
3188 for (int i = 0; i < 4; i++) {
3189 struct intel_buffer_object *bufferobj =
3190 intel_buffer_object(xfb_obj->Buffers[i]);
3191
3192 if (!bufferobj) {
3193 brw_batch_emit(brw, GENX(3DSTATE_SO_BUFFER), sob) {
3194 sob.SOBufferIndex = i;
3195 }
3196 continue;
3197 }
3198
3199 uint32_t start = xfb_obj->Offset[i];
3200 assert(start % 4 == 0);
3201 uint32_t end = ALIGN(start + xfb_obj->Size[i], 4);
3202 struct brw_bo *bo =
3203 intel_bufferobj_buffer(brw, bufferobj, start, end - start);
3204 assert(end <= bo->size);
3205
3206 brw_batch_emit(brw, GENX(3DSTATE_SO_BUFFER), sob) {
3207 sob.SOBufferIndex = i;
3208
3209 sob.SurfaceBaseAddress = render_bo(bo, start);
3210 #if GEN_GEN < 8
3211 sob.SurfacePitch = linked_xfb_info->Buffers[i].Stride * 4;
3212 sob.SurfaceEndAddress = render_bo(bo, end);
3213 #else
3214 sob.SOBufferEnable = true;
3215 sob.StreamOffsetWriteEnable = true;
3216 sob.StreamOutputBufferOffsetAddressEnable = true;
3217 sob.SOBufferMOCS = mocs_wb;
3218
3219 sob.SurfaceSize = MAX2(xfb_obj->Size[i] / 4, 1) - 1;
3220 sob.StreamOutputBufferOffsetAddress =
3221 instruction_bo(brw_obj->offset_bo, i * sizeof(uint32_t));
3222
3223 if (brw_obj->zero_offsets) {
3224 /* Zero out the offset and write that to offset_bo */
3225 sob.StreamOffset = 0;
3226 } else {
3227 /* Use offset_bo as the "Stream Offset." */
3228 sob.StreamOffset = 0xFFFFFFFF;
3229 }
3230 #endif
3231 }
3232 }
3233
3234 #if GEN_GEN >= 8
3235 brw_obj->zero_offsets = false;
3236 #endif
3237 }
3238
3239 static inline bool
3240 query_active(struct gl_query_object *q)
3241 {
3242 return q && q->Active;
3243 }
3244
3245 static void
3246 genX(upload_3dstate_streamout)(struct brw_context *brw, bool active,
3247 const struct brw_vue_map *vue_map)
3248 {
3249 struct gl_context *ctx = &brw->ctx;
3250 /* BRW_NEW_TRANSFORM_FEEDBACK */
3251 struct gl_transform_feedback_object *xfb_obj =
3252 ctx->TransformFeedback.CurrentObject;
3253
3254 brw_batch_emit(brw, GENX(3DSTATE_STREAMOUT), sos) {
3255 if (active) {
3256 int urb_entry_read_offset = 0;
3257 int urb_entry_read_length = (vue_map->num_slots + 1) / 2 -
3258 urb_entry_read_offset;
3259
3260 sos.SOFunctionEnable = true;
3261 sos.SOStatisticsEnable = true;
3262
3263 /* BRW_NEW_RASTERIZER_DISCARD */
3264 if (ctx->RasterDiscard) {
3265 if (!query_active(ctx->Query.PrimitivesGenerated[0])) {
3266 sos.RenderingDisable = true;
3267 } else {
3268 perf_debug("Rasterizer discard with a GL_PRIMITIVES_GENERATED "
3269 "query active relies on the clipper.");
3270 }
3271 }
3272
3273 /* _NEW_LIGHT */
3274 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION)
3275 sos.ReorderMode = TRAILING;
3276
3277 #if GEN_GEN < 8
3278 sos.SOBufferEnable0 = xfb_obj->Buffers[0] != NULL;
3279 sos.SOBufferEnable1 = xfb_obj->Buffers[1] != NULL;
3280 sos.SOBufferEnable2 = xfb_obj->Buffers[2] != NULL;
3281 sos.SOBufferEnable3 = xfb_obj->Buffers[3] != NULL;
3282 #else
3283 const struct gl_transform_feedback_info *linked_xfb_info =
3284 xfb_obj->program->sh.LinkedTransformFeedback;
3285 /* Set buffer pitches; 0 means unbound. */
3286 if (xfb_obj->Buffers[0])
3287 sos.Buffer0SurfacePitch = linked_xfb_info->Buffers[0].Stride * 4;
3288 if (xfb_obj->Buffers[1])
3289 sos.Buffer1SurfacePitch = linked_xfb_info->Buffers[1].Stride * 4;
3290 if (xfb_obj->Buffers[2])
3291 sos.Buffer2SurfacePitch = linked_xfb_info->Buffers[2].Stride * 4;
3292 if (xfb_obj->Buffers[3])
3293 sos.Buffer3SurfacePitch = linked_xfb_info->Buffers[3].Stride * 4;
3294 #endif
3295
3296 /* We always read the whole vertex. This could be reduced at some
3297 * point by reading less and offsetting the register index in the
3298 * SO_DECLs.
3299 */
3300 sos.Stream0VertexReadOffset = urb_entry_read_offset;
3301 sos.Stream0VertexReadLength = urb_entry_read_length - 1;
3302 sos.Stream1VertexReadOffset = urb_entry_read_offset;
3303 sos.Stream1VertexReadLength = urb_entry_read_length - 1;
3304 sos.Stream2VertexReadOffset = urb_entry_read_offset;
3305 sos.Stream2VertexReadLength = urb_entry_read_length - 1;
3306 sos.Stream3VertexReadOffset = urb_entry_read_offset;
3307 sos.Stream3VertexReadLength = urb_entry_read_length - 1;
3308 }
3309 }
3310 }
3311
3312 static void
3313 genX(upload_sol)(struct brw_context *brw)
3314 {
3315 struct gl_context *ctx = &brw->ctx;
3316 /* BRW_NEW_TRANSFORM_FEEDBACK */
3317 bool active = _mesa_is_xfb_active_and_unpaused(ctx);
3318
3319 if (active) {
3320 genX(upload_3dstate_so_buffers)(brw);
3321
3322 /* BRW_NEW_VUE_MAP_GEOM_OUT */
3323 genX(upload_3dstate_so_decl_list)(brw, &brw->vue_map_geom_out);
3324 }
3325
3326 /* Finally, set up the SOL stage. This command must always follow updates to
3327 * the nonpipelined SOL state (3DSTATE_SO_BUFFER, 3DSTATE_SO_DECL_LIST) or
3328 * MMIO register updates (current performed by the kernel at each batch
3329 * emit).
3330 */
3331 genX(upload_3dstate_streamout)(brw, active, &brw->vue_map_geom_out);
3332 }
3333
3334 static const struct brw_tracked_state genX(sol_state) = {
3335 .dirty = {
3336 .mesa = _NEW_LIGHT,
3337 .brw = BRW_NEW_BATCH |
3338 BRW_NEW_BLORP |
3339 BRW_NEW_RASTERIZER_DISCARD |
3340 BRW_NEW_VUE_MAP_GEOM_OUT |
3341 BRW_NEW_TRANSFORM_FEEDBACK,
3342 },
3343 .emit = genX(upload_sol),
3344 };
3345 #endif
3346
3347 /* ---------------------------------------------------------------------- */
3348
3349 #if GEN_GEN >= 7
3350 static void
3351 genX(upload_ps)(struct brw_context *brw)
3352 {
3353 UNUSED const struct gl_context *ctx = &brw->ctx;
3354 UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
3355
3356 /* BRW_NEW_FS_PROG_DATA */
3357 const struct brw_wm_prog_data *prog_data =
3358 brw_wm_prog_data(brw->wm.base.prog_data);
3359 const struct brw_stage_state *stage_state = &brw->wm.base;
3360
3361 #if GEN_GEN < 8
3362 #endif
3363
3364 brw_batch_emit(brw, GENX(3DSTATE_PS), ps) {
3365 /* Initialize the execution mask with VMask. Otherwise, derivatives are
3366 * incorrect for subspans where some of the pixels are unlit. We believe
3367 * the bit just didn't take effect in previous generations.
3368 */
3369 ps.VectorMaskEnable = GEN_GEN >= 8;
3370
3371 ps.SamplerCount =
3372 DIV_ROUND_UP(CLAMP(stage_state->sampler_count, 0, 16), 4);
3373
3374 /* BRW_NEW_FS_PROG_DATA */
3375 ps.BindingTableEntryCount = prog_data->base.binding_table.size_bytes / 4;
3376
3377 if (prog_data->base.use_alt_mode)
3378 ps.FloatingPointMode = Alternate;
3379
3380 /* Haswell requires the sample mask to be set in this packet as well as
3381 * in 3DSTATE_SAMPLE_MASK; the values should match.
3382 */
3383
3384 /* _NEW_BUFFERS, _NEW_MULTISAMPLE */
3385 #if GEN_IS_HASWELL
3386 ps.SampleMask = genX(determine_sample_mask(brw));
3387 #endif
3388
3389 /* 3DSTATE_PS expects the number of threads per PSD, which is always 64;
3390 * it implicitly scales for different GT levels (which have some # of
3391 * PSDs).
3392 *
3393 * In Gen8 the format is U8-2 whereas in Gen9 it is U8-1.
3394 */
3395 #if GEN_GEN >= 9
3396 ps.MaximumNumberofThreadsPerPSD = 64 - 1;
3397 #elif GEN_GEN >= 8
3398 ps.MaximumNumberofThreadsPerPSD = 64 - 2;
3399 #else
3400 ps.MaximumNumberofThreads = devinfo->max_wm_threads - 1;
3401 #endif
3402
3403 if (prog_data->base.nr_params > 0)
3404 ps.PushConstantEnable = true;
3405
3406 #if GEN_GEN < 8
3407 /* From the IVB PRM, volume 2 part 1, page 287:
3408 * "This bit is inserted in the PS payload header and made available to
3409 * the DataPort (either via the message header or via header bypass) to
3410 * indicate that oMask data (one or two phases) is included in Render
3411 * Target Write messages. If present, the oMask data is used to mask off
3412 * samples."
3413 */
3414 ps.oMaskPresenttoRenderTarget = prog_data->uses_omask;
3415
3416 /* The hardware wedges if you have this bit set but don't turn on any
3417 * dual source blend factors.
3418 *
3419 * BRW_NEW_FS_PROG_DATA | _NEW_COLOR
3420 */
3421 ps.DualSourceBlendEnable = prog_data->dual_src_blend &&
3422 (ctx->Color.BlendEnabled & 1) &&
3423 ctx->Color.Blend[0]._UsesDualSrc;
3424
3425 /* BRW_NEW_FS_PROG_DATA */
3426 ps.AttributeEnable = (prog_data->num_varying_inputs != 0);
3427 #endif
3428
3429 /* From the documentation for this packet:
3430 * "If the PS kernel does not need the Position XY Offsets to
3431 * compute a Position Value, then this field should be programmed
3432 * to POSOFFSET_NONE."
3433 *
3434 * "SW Recommendation: If the PS kernel needs the Position Offsets
3435 * to compute a Position XY value, this field should match Position
3436 * ZW Interpolation Mode to ensure a consistent position.xyzw
3437 * computation."
3438 *
3439 * We only require XY sample offsets. So, this recommendation doesn't
3440 * look useful at the moment. We might need this in future.
3441 */
3442 if (prog_data->uses_pos_offset)
3443 ps.PositionXYOffsetSelect = POSOFFSET_SAMPLE;
3444 else
3445 ps.PositionXYOffsetSelect = POSOFFSET_NONE;
3446
3447 ps.RenderTargetFastClearEnable = brw->wm.fast_clear_op;
3448 ps._8PixelDispatchEnable = prog_data->dispatch_8;
3449 ps._16PixelDispatchEnable = prog_data->dispatch_16;
3450 ps.DispatchGRFStartRegisterForConstantSetupData0 =
3451 prog_data->base.dispatch_grf_start_reg;
3452 ps.DispatchGRFStartRegisterForConstantSetupData2 =
3453 prog_data->dispatch_grf_start_reg_2;
3454
3455 ps.KernelStartPointer0 = stage_state->prog_offset;
3456 ps.KernelStartPointer2 = stage_state->prog_offset +
3457 prog_data->prog_offset_2;
3458
3459 if (prog_data->base.total_scratch) {
3460 ps.ScratchSpaceBasePointer =
3461 render_bo(stage_state->scratch_bo,
3462 ffs(stage_state->per_thread_scratch) - 11);
3463 }
3464 }
3465 }
3466
3467 static const struct brw_tracked_state genX(ps_state) = {
3468 .dirty = {
3469 .mesa = _NEW_MULTISAMPLE |
3470 (GEN_GEN < 8 ? _NEW_BUFFERS |
3471 _NEW_COLOR
3472 : 0),
3473 .brw = BRW_NEW_BATCH |
3474 BRW_NEW_BLORP |
3475 BRW_NEW_FS_PROG_DATA,
3476 },
3477 .emit = genX(upload_ps),
3478 };
3479 #endif
3480
3481 /* ---------------------------------------------------------------------- */
3482
3483 #if GEN_GEN >= 7
3484 static void
3485 genX(upload_hs_state)(struct brw_context *brw)
3486 {
3487 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3488 struct brw_stage_state *stage_state = &brw->tcs.base;
3489 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
3490 const struct brw_vue_prog_data *vue_prog_data =
3491 brw_vue_prog_data(stage_prog_data);
3492
3493 /* BRW_NEW_TES_PROG_DATA */
3494 struct brw_tcs_prog_data *tcs_prog_data =
3495 brw_tcs_prog_data(stage_prog_data);
3496
3497 if (!tcs_prog_data) {
3498 brw_batch_emit(brw, GENX(3DSTATE_HS), hs);
3499 } else {
3500 brw_batch_emit(brw, GENX(3DSTATE_HS), hs) {
3501 INIT_THREAD_DISPATCH_FIELDS(hs, Vertex);
3502
3503 hs.InstanceCount = tcs_prog_data->instances - 1;
3504 hs.IncludeVertexHandles = true;
3505
3506 hs.MaximumNumberofThreads = devinfo->max_tcs_threads - 1;
3507 }
3508 }
3509 }
3510
3511 static const struct brw_tracked_state genX(hs_state) = {
3512 .dirty = {
3513 .mesa = 0,
3514 .brw = BRW_NEW_BATCH |
3515 BRW_NEW_BLORP |
3516 BRW_NEW_TCS_PROG_DATA |
3517 BRW_NEW_TESS_PROGRAMS,
3518 },
3519 .emit = genX(upload_hs_state),
3520 };
3521
3522 static void
3523 genX(upload_ds_state)(struct brw_context *brw)
3524 {
3525 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3526 const struct brw_stage_state *stage_state = &brw->tes.base;
3527 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
3528
3529 /* BRW_NEW_TES_PROG_DATA */
3530 const struct brw_tes_prog_data *tes_prog_data =
3531 brw_tes_prog_data(stage_prog_data);
3532 const struct brw_vue_prog_data *vue_prog_data =
3533 brw_vue_prog_data(stage_prog_data);
3534
3535 if (!tes_prog_data) {
3536 brw_batch_emit(brw, GENX(3DSTATE_DS), ds);
3537 } else {
3538 brw_batch_emit(brw, GENX(3DSTATE_DS), ds) {
3539 INIT_THREAD_DISPATCH_FIELDS(ds, Patch);
3540
3541 ds.MaximumNumberofThreads = devinfo->max_tes_threads - 1;
3542 ds.ComputeWCoordinateEnable =
3543 tes_prog_data->domain == BRW_TESS_DOMAIN_TRI;
3544
3545 #if GEN_GEN >= 8
3546 if (vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8)
3547 ds.DispatchMode = DISPATCH_MODE_SIMD8_SINGLE_PATCH;
3548 ds.UserClipDistanceCullTestEnableBitmask =
3549 vue_prog_data->cull_distance_mask;
3550 #endif
3551 }
3552 }
3553 }
3554
3555 static const struct brw_tracked_state genX(ds_state) = {
3556 .dirty = {
3557 .mesa = 0,
3558 .brw = BRW_NEW_BATCH |
3559 BRW_NEW_BLORP |
3560 BRW_NEW_TESS_PROGRAMS |
3561 BRW_NEW_TES_PROG_DATA,
3562 },
3563 .emit = genX(upload_ds_state),
3564 };
3565
3566 /* ---------------------------------------------------------------------- */
3567
3568 static void
3569 upload_te_state(struct brw_context *brw)
3570 {
3571 /* BRW_NEW_TESS_PROGRAMS */
3572 bool active = brw->tess_eval_program;
3573
3574 /* BRW_NEW_TES_PROG_DATA */
3575 const struct brw_tes_prog_data *tes_prog_data =
3576 brw_tes_prog_data(brw->tes.base.prog_data);
3577
3578 if (active) {
3579 brw_batch_emit(brw, GENX(3DSTATE_TE), te) {
3580 te.Partitioning = tes_prog_data->partitioning;
3581 te.OutputTopology = tes_prog_data->output_topology;
3582 te.TEDomain = tes_prog_data->domain;
3583 te.TEEnable = true;
3584 te.MaximumTessellationFactorOdd = 63.0;
3585 te.MaximumTessellationFactorNotOdd = 64.0;
3586 }
3587 } else {
3588 brw_batch_emit(brw, GENX(3DSTATE_TE), te);
3589 }
3590 }
3591
3592 static const struct brw_tracked_state genX(te_state) = {
3593 .dirty = {
3594 .mesa = 0,
3595 .brw = BRW_NEW_BLORP |
3596 BRW_NEW_CONTEXT |
3597 BRW_NEW_TES_PROG_DATA |
3598 BRW_NEW_TESS_PROGRAMS,
3599 },
3600 .emit = upload_te_state,
3601 };
3602
3603 /* ---------------------------------------------------------------------- */
3604
3605 static void
3606 genX(upload_tes_push_constants)(struct brw_context *brw)
3607 {
3608 struct brw_stage_state *stage_state = &brw->tes.base;
3609 /* BRW_NEW_TESS_PROGRAMS */
3610 const struct brw_program *tep = brw_program_const(brw->tess_eval_program);
3611
3612 if (tep) {
3613 /* BRW_NEW_TES_PROG_DATA */
3614 const struct brw_stage_prog_data *prog_data = brw->tes.base.prog_data;
3615 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_TESS_EVAL);
3616 gen6_upload_push_constants(brw, &tep->program, prog_data, stage_state);
3617 }
3618
3619 upload_constant_state(brw, stage_state, tep, MESA_SHADER_TESS_EVAL);
3620 }
3621
3622 static const struct brw_tracked_state genX(tes_push_constants) = {
3623 .dirty = {
3624 .mesa = _NEW_PROGRAM_CONSTANTS,
3625 .brw = BRW_NEW_BATCH |
3626 BRW_NEW_BLORP |
3627 BRW_NEW_PUSH_CONSTANT_ALLOCATION |
3628 BRW_NEW_TESS_PROGRAMS |
3629 BRW_NEW_TES_PROG_DATA,
3630 },
3631 .emit = genX(upload_tes_push_constants),
3632 };
3633
3634 static void
3635 genX(upload_tcs_push_constants)(struct brw_context *brw)
3636 {
3637 struct brw_stage_state *stage_state = &brw->tcs.base;
3638 /* BRW_NEW_TESS_PROGRAMS */
3639 const struct brw_program *tcp = brw_program_const(brw->tess_ctrl_program);
3640 bool active = brw->tess_eval_program;
3641
3642 if (active) {
3643 /* BRW_NEW_TCS_PROG_DATA */
3644 const struct brw_stage_prog_data *prog_data = brw->tcs.base.prog_data;
3645
3646 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_TESS_CTRL);
3647 gen6_upload_push_constants(brw, &tcp->program, prog_data, stage_state);
3648 }
3649
3650 upload_constant_state(brw, stage_state, active, MESA_SHADER_TESS_CTRL);
3651 }
3652
3653 static const struct brw_tracked_state genX(tcs_push_constants) = {
3654 .dirty = {
3655 .mesa = _NEW_PROGRAM_CONSTANTS,
3656 .brw = BRW_NEW_BATCH |
3657 BRW_NEW_BLORP |
3658 BRW_NEW_DEFAULT_TESS_LEVELS |
3659 BRW_NEW_PUSH_CONSTANT_ALLOCATION |
3660 BRW_NEW_TESS_PROGRAMS |
3661 BRW_NEW_TCS_PROG_DATA,
3662 },
3663 .emit = genX(upload_tcs_push_constants),
3664 };
3665
3666 #endif
3667
3668 /* ---------------------------------------------------------------------- */
3669
3670 #if GEN_GEN >= 7
3671 static void
3672 genX(upload_cs_state)(struct brw_context *brw)
3673 {
3674 if (!brw->cs.base.prog_data)
3675 return;
3676
3677 uint32_t offset;
3678 uint32_t *desc = (uint32_t*) brw_state_batch(
3679 brw, GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t), 64,
3680 &offset);
3681
3682 struct brw_stage_state *stage_state = &brw->cs.base;
3683 struct brw_stage_prog_data *prog_data = stage_state->prog_data;
3684 struct brw_cs_prog_data *cs_prog_data = brw_cs_prog_data(prog_data);
3685 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3686
3687 if (INTEL_DEBUG & DEBUG_SHADER_TIME) {
3688 brw_emit_buffer_surface_state(
3689 brw, &stage_state->surf_offset[
3690 prog_data->binding_table.shader_time_start],
3691 brw->shader_time.bo, 0, ISL_FORMAT_RAW,
3692 brw->shader_time.bo->size, 1, true);
3693 }
3694
3695 uint32_t *bind = brw_state_batch(brw, prog_data->binding_table.size_bytes,
3696 32, &stage_state->bind_bo_offset);
3697
3698 brw_batch_emit(brw, GENX(MEDIA_VFE_STATE), vfe) {
3699 if (prog_data->total_scratch) {
3700 uint32_t bo_offset;
3701
3702 if (GEN_GEN >= 8) {
3703 /* Broadwell's Per Thread Scratch Space is in the range [0, 11]
3704 * where 0 = 1k, 1 = 2k, 2 = 4k, ..., 11 = 2M.
3705 */
3706 bo_offset = ffs(stage_state->per_thread_scratch) - 11;
3707 } else if (GEN_IS_HASWELL) {
3708 /* Haswell's Per Thread Scratch Space is in the range [0, 10]
3709 * where 0 = 2k, 1 = 4k, 2 = 8k, ..., 10 = 2M.
3710 */
3711 bo_offset = ffs(stage_state->per_thread_scratch) - 12;
3712 } else {
3713 /* Earlier platforms use the range [0, 11] to mean [1kB, 12kB]
3714 * where 0 = 1kB, 1 = 2kB, 2 = 3kB, ..., 11 = 12kB.
3715 */
3716 bo_offset = stage_state->per_thread_scratch / 1024 - 1;
3717 }
3718 vfe.ScratchSpaceBasePointer =
3719 render_bo(stage_state->scratch_bo, bo_offset);
3720 }
3721
3722 const uint32_t subslices = MAX2(brw->screen->subslice_total, 1);
3723 vfe.MaximumNumberofThreads = devinfo->max_cs_threads * subslices - 1;
3724 vfe.NumberofURBEntries = GEN_GEN >= 8 ? 2 : 0;;
3725 vfe.ResetGatewayTimer =
3726 Resettingrelativetimerandlatchingtheglobaltimestamp;
3727 #if GEN_GEN < 9
3728 vfe.BypassGatewayControl = BypassingOpenGatewayCloseGatewayprotocol;
3729 #endif
3730 #if GEN_GEN == 7
3731 vfe.GPGPUMode = 1;
3732 #endif
3733
3734 /* We are uploading duplicated copies of push constant uniforms for each
3735 * thread. Although the local id data needs to vary per thread, it won't
3736 * change for other uniform data. Unfortunately this duplication is
3737 * required for gen7. As of Haswell, this duplication can be avoided,
3738 * but this older mechanism with duplicated data continues to work.
3739 *
3740 * FINISHME: As of Haswell, we could make use of the
3741 * INTERFACE_DESCRIPTOR_DATA "Cross-Thread Constant Data Read Length"
3742 * field to only store one copy of uniform data.
3743 *
3744 * FINISHME: Broadwell adds a new alternative "Indirect Payload Storage"
3745 * which is described in the GPGPU_WALKER command and in the Broadwell
3746 * PRM Volume 7: 3D Media GPGPU, under Media GPGPU Pipeline => Mode of
3747 * Operations => GPGPU Mode => Indirect Payload Storage.
3748 *
3749 * Note: The constant data is built in brw_upload_cs_push_constants
3750 * below.
3751 */
3752 vfe.URBEntryAllocationSize = GEN_GEN >= 8 ? 2 : 0;
3753
3754 const uint32_t vfe_curbe_allocation =
3755 ALIGN(cs_prog_data->push.per_thread.regs * cs_prog_data->threads +
3756 cs_prog_data->push.cross_thread.regs, 2);
3757 vfe.CURBEAllocationSize = vfe_curbe_allocation;
3758 }
3759
3760 if (cs_prog_data->push.total.size > 0) {
3761 brw_batch_emit(brw, GENX(MEDIA_CURBE_LOAD), curbe) {
3762 curbe.CURBETotalDataLength =
3763 ALIGN(cs_prog_data->push.total.size, 64);
3764 curbe.CURBEDataStartAddress = stage_state->push_const_offset;
3765 }
3766 }
3767
3768 /* BRW_NEW_SURFACES and BRW_NEW_*_CONSTBUF */
3769 memcpy(bind, stage_state->surf_offset,
3770 prog_data->binding_table.size_bytes);
3771 const struct GENX(INTERFACE_DESCRIPTOR_DATA) idd = {
3772 .KernelStartPointer = brw->cs.base.prog_offset,
3773 .SamplerStatePointer = stage_state->sampler_offset,
3774 .SamplerCount = DIV_ROUND_UP(stage_state->sampler_count, 4) >> 2,
3775 .BindingTablePointer = stage_state->bind_bo_offset,
3776 .ConstantURBEntryReadLength = cs_prog_data->push.per_thread.regs,
3777 .NumberofThreadsinGPGPUThreadGroup = cs_prog_data->threads,
3778 .SharedLocalMemorySize = encode_slm_size(devinfo->gen,
3779 prog_data->total_shared),
3780 .BarrierEnable = cs_prog_data->uses_barrier,
3781 #if GEN_GEN >= 8 || GEN_IS_HASWELL
3782 .CrossThreadConstantDataReadLength =
3783 cs_prog_data->push.cross_thread.regs,
3784 #endif
3785 };
3786
3787 GENX(INTERFACE_DESCRIPTOR_DATA_pack)(brw, desc, &idd);
3788
3789 brw_batch_emit(brw, GENX(MEDIA_INTERFACE_DESCRIPTOR_LOAD), load) {
3790 load.InterfaceDescriptorTotalLength =
3791 GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t);
3792 load.InterfaceDescriptorDataStartAddress = offset;
3793 }
3794 }
3795
3796 static const struct brw_tracked_state genX(cs_state) = {
3797 .dirty = {
3798 .mesa = _NEW_PROGRAM_CONSTANTS,
3799 .brw = BRW_NEW_BATCH |
3800 BRW_NEW_BLORP |
3801 BRW_NEW_CS_PROG_DATA |
3802 BRW_NEW_SAMPLER_STATE_TABLE |
3803 BRW_NEW_SURFACES,
3804 },
3805 .emit = genX(upload_cs_state)
3806 };
3807
3808 #endif
3809
3810 /* ---------------------------------------------------------------------- */
3811
3812 #if GEN_GEN >= 8
3813 static void
3814 genX(upload_raster)(struct brw_context *brw)
3815 {
3816 struct gl_context *ctx = &brw->ctx;
3817
3818 /* _NEW_BUFFERS */
3819 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
3820
3821 /* _NEW_POLYGON */
3822 struct gl_polygon_attrib *polygon = &ctx->Polygon;
3823
3824 /* _NEW_POINT */
3825 struct gl_point_attrib *point = &ctx->Point;
3826
3827 brw_batch_emit(brw, GENX(3DSTATE_RASTER), raster) {
3828 if (polygon->_FrontBit == render_to_fbo)
3829 raster.FrontWinding = CounterClockwise;
3830
3831 if (polygon->CullFlag) {
3832 switch (polygon->CullFaceMode) {
3833 case GL_FRONT:
3834 raster.CullMode = CULLMODE_FRONT;
3835 break;
3836 case GL_BACK:
3837 raster.CullMode = CULLMODE_BACK;
3838 break;
3839 case GL_FRONT_AND_BACK:
3840 raster.CullMode = CULLMODE_BOTH;
3841 break;
3842 default:
3843 unreachable("not reached");
3844 }
3845 } else {
3846 raster.CullMode = CULLMODE_NONE;
3847 }
3848
3849 point->SmoothFlag = raster.SmoothPointEnable;
3850
3851 raster.DXMultisampleRasterizationEnable =
3852 _mesa_is_multisample_enabled(ctx);
3853
3854 raster.GlobalDepthOffsetEnableSolid = polygon->OffsetFill;
3855 raster.GlobalDepthOffsetEnableWireframe = polygon->OffsetLine;
3856 raster.GlobalDepthOffsetEnablePoint = polygon->OffsetPoint;
3857
3858 switch (polygon->FrontMode) {
3859 case GL_FILL:
3860 raster.FrontFaceFillMode = FILL_MODE_SOLID;
3861 break;
3862 case GL_LINE:
3863 raster.FrontFaceFillMode = FILL_MODE_WIREFRAME;
3864 break;
3865 case GL_POINT:
3866 raster.FrontFaceFillMode = FILL_MODE_POINT;
3867 break;
3868 default:
3869 unreachable("not reached");
3870 }
3871
3872 switch (polygon->BackMode) {
3873 case GL_FILL:
3874 raster.BackFaceFillMode = FILL_MODE_SOLID;
3875 break;
3876 case GL_LINE:
3877 raster.BackFaceFillMode = FILL_MODE_WIREFRAME;
3878 break;
3879 case GL_POINT:
3880 raster.BackFaceFillMode = FILL_MODE_POINT;
3881 break;
3882 default:
3883 unreachable("not reached");
3884 }
3885
3886 /* _NEW_LINE */
3887 raster.AntialiasingEnable = ctx->Line.SmoothFlag;
3888
3889 /* _NEW_SCISSOR */
3890 raster.ScissorRectangleEnable = ctx->Scissor.EnableFlags;
3891
3892 /* _NEW_TRANSFORM */
3893 if (!ctx->Transform.DepthClamp) {
3894 #if GEN_GEN >= 9
3895 raster.ViewportZFarClipTestEnable = true;
3896 raster.ViewportZNearClipTestEnable = true;
3897 #else
3898 raster.ViewportZClipTestEnable = true;
3899 #endif
3900 }
3901
3902 /* BRW_NEW_CONSERVATIVE_RASTERIZATION */
3903 #if GEN_GEN >= 9
3904 raster.ConservativeRasterizationEnable =
3905 ctx->IntelConservativeRasterization;
3906 #endif
3907
3908 raster.GlobalDepthOffsetClamp = polygon->OffsetClamp;
3909 raster.GlobalDepthOffsetScale = polygon->OffsetFactor;
3910
3911 raster.GlobalDepthOffsetConstant = polygon->OffsetUnits * 2;
3912 }
3913 }
3914
3915 static const struct brw_tracked_state genX(raster_state) = {
3916 .dirty = {
3917 .mesa = _NEW_BUFFERS |
3918 _NEW_LINE |
3919 _NEW_MULTISAMPLE |
3920 _NEW_POINT |
3921 _NEW_POLYGON |
3922 _NEW_SCISSOR |
3923 _NEW_TRANSFORM,
3924 .brw = BRW_NEW_BLORP |
3925 BRW_NEW_CONTEXT |
3926 BRW_NEW_CONSERVATIVE_RASTERIZATION,
3927 },
3928 .emit = genX(upload_raster),
3929 };
3930 #endif
3931
3932 /* ---------------------------------------------------------------------- */
3933
3934 #if GEN_GEN >= 8
3935 static void
3936 genX(upload_ps_extra)(struct brw_context *brw)
3937 {
3938 UNUSED struct gl_context *ctx = &brw->ctx;
3939
3940 const struct brw_wm_prog_data *prog_data =
3941 brw_wm_prog_data(brw->wm.base.prog_data);
3942
3943 brw_batch_emit(brw, GENX(3DSTATE_PS_EXTRA), psx) {
3944 psx.PixelShaderValid = true;
3945 psx.PixelShaderComputedDepthMode = prog_data->computed_depth_mode;
3946 psx.PixelShaderKillsPixel = prog_data->uses_kill;
3947 psx.AttributeEnable = prog_data->num_varying_inputs != 0;
3948 psx.PixelShaderUsesSourceDepth = prog_data->uses_src_depth;
3949 psx.PixelShaderUsesSourceW = prog_data->uses_src_w;
3950 psx.PixelShaderIsPerSample = prog_data->persample_dispatch;
3951
3952 /* _NEW_MULTISAMPLE | BRW_NEW_CONSERVATIVE_RASTERIZATION */
3953 if (prog_data->uses_sample_mask) {
3954 #if GEN_GEN >= 9
3955 if (prog_data->post_depth_coverage)
3956 psx.InputCoverageMaskState = ICMS_DEPTH_COVERAGE;
3957 else if (prog_data->inner_coverage && ctx->IntelConservativeRasterization)
3958 psx.InputCoverageMaskState = ICMS_INNER_CONSERVATIVE;
3959 else
3960 psx.InputCoverageMaskState = ICMS_NORMAL;
3961 #else
3962 psx.PixelShaderUsesInputCoverageMask = true;
3963 #endif
3964 }
3965
3966 psx.oMaskPresenttoRenderTarget = prog_data->uses_omask;
3967 #if GEN_GEN >= 9
3968 psx.PixelShaderPullsBary = prog_data->pulls_bary;
3969 psx.PixelShaderComputesStencil = prog_data->computed_stencil;
3970 #endif
3971
3972 /* The stricter cross-primitive coherency guarantees that the hardware
3973 * gives us with the "Accesses UAV" bit set for at least one shader stage
3974 * and the "UAV coherency required" bit set on the 3DPRIMITIVE command
3975 * are redundant within the current image, atomic counter and SSBO GL
3976 * APIs, which all have very loose ordering and coherency requirements
3977 * and generally rely on the application to insert explicit barriers when
3978 * a shader invocation is expected to see the memory writes performed by
3979 * the invocations of some previous primitive. Regardless of the value
3980 * of "UAV coherency required", the "Accesses UAV" bits will implicitly
3981 * cause an in most cases useless DC flush when the lowermost stage with
3982 * the bit set finishes execution.
3983 *
3984 * It would be nice to disable it, but in some cases we can't because on
3985 * Gen8+ it also has an influence on rasterization via the PS UAV-only
3986 * signal (which could be set independently from the coherency mechanism
3987 * in the 3DSTATE_WM command on Gen7), and because in some cases it will
3988 * determine whether the hardware skips execution of the fragment shader
3989 * or not via the ThreadDispatchEnable signal. However if we know that
3990 * GEN8_PS_BLEND_HAS_WRITEABLE_RT is going to be set and
3991 * GEN8_PSX_PIXEL_SHADER_NO_RT_WRITE is not set it shouldn't make any
3992 * difference so we may just disable it here.
3993 *
3994 * Gen8 hardware tries to compute ThreadDispatchEnable for us but doesn't
3995 * take into account KillPixels when no depth or stencil writes are
3996 * enabled. In order for occlusion queries to work correctly with no
3997 * attachments, we need to force-enable here.
3998 *
3999 * BRW_NEW_FS_PROG_DATA | BRW_NEW_FRAGMENT_PROGRAM | _NEW_BUFFERS |
4000 * _NEW_COLOR
4001 */
4002 if ((prog_data->has_side_effects || prog_data->uses_kill) &&
4003 !brw_color_buffer_write_enabled(brw))
4004 psx.PixelShaderHasUAV = true;
4005 }
4006 }
4007
4008 const struct brw_tracked_state genX(ps_extra) = {
4009 .dirty = {
4010 .mesa = _NEW_BUFFERS | _NEW_COLOR,
4011 .brw = BRW_NEW_BLORP |
4012 BRW_NEW_CONTEXT |
4013 BRW_NEW_FRAGMENT_PROGRAM |
4014 BRW_NEW_FS_PROG_DATA |
4015 BRW_NEW_CONSERVATIVE_RASTERIZATION,
4016 },
4017 .emit = genX(upload_ps_extra),
4018 };
4019 #endif
4020
4021 /* ---------------------------------------------------------------------- */
4022
4023 #if GEN_GEN >= 8
4024 static void
4025 genX(upload_ps_blend)(struct brw_context *brw)
4026 {
4027 struct gl_context *ctx = &brw->ctx;
4028
4029 /* _NEW_BUFFERS */
4030 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[0];
4031 const bool buffer0_is_integer = ctx->DrawBuffer->_IntegerBuffers & 0x1;
4032
4033 /* _NEW_COLOR */
4034 struct gl_colorbuffer_attrib *color = &ctx->Color;
4035
4036 brw_batch_emit(brw, GENX(3DSTATE_PS_BLEND), pb) {
4037 /* BRW_NEW_FRAGMENT_PROGRAM | _NEW_BUFFERS | _NEW_COLOR */
4038 pb.HasWriteableRT = brw_color_buffer_write_enabled(brw);
4039
4040 if (!buffer0_is_integer) {
4041 /* _NEW_MULTISAMPLE */
4042 pb.AlphaToCoverageEnable =
4043 _mesa_is_multisample_enabled(ctx) &&
4044 ctx->Multisample.SampleAlphaToCoverage;
4045
4046 pb.AlphaTestEnable = color->AlphaEnabled;
4047 }
4048
4049 /* Used for implementing the following bit of GL_EXT_texture_integer:
4050 * "Per-fragment operations that require floating-point color
4051 * components, including multisample alpha operations, alpha test,
4052 * blending, and dithering, have no effect when the corresponding
4053 * colors are written to an integer color buffer."
4054 *
4055 * The OpenGL specification 3.3 (page 196), section 4.1.3 says:
4056 * "If drawbuffer zero is not NONE and the buffer it references has an
4057 * integer format, the SAMPLE_ALPHA_TO_COVERAGE and SAMPLE_ALPHA_TO_ONE
4058 * operations are skipped."
4059 */
4060 if (rb && !buffer0_is_integer && (color->BlendEnabled & 1)) {
4061 GLenum eqRGB = color->Blend[0].EquationRGB;
4062 GLenum eqA = color->Blend[0].EquationA;
4063 GLenum srcRGB = color->Blend[0].SrcRGB;
4064 GLenum dstRGB = color->Blend[0].DstRGB;
4065 GLenum srcA = color->Blend[0].SrcA;
4066 GLenum dstA = color->Blend[0].DstA;
4067
4068 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
4069 srcRGB = dstRGB = GL_ONE;
4070
4071 if (eqA == GL_MIN || eqA == GL_MAX)
4072 srcA = dstA = GL_ONE;
4073
4074 /* Due to hardware limitations, the destination may have information
4075 * in an alpha channel even when the format specifies no alpha
4076 * channel. In order to avoid getting any incorrect blending due to
4077 * that alpha channel, coerce the blend factors to values that will
4078 * not read the alpha channel, but will instead use the correct
4079 * implicit value for alpha.
4080 */
4081 if (!_mesa_base_format_has_channel(rb->_BaseFormat,
4082 GL_TEXTURE_ALPHA_TYPE)) {
4083 srcRGB = brw_fix_xRGB_alpha(srcRGB);
4084 srcA = brw_fix_xRGB_alpha(srcA);
4085 dstRGB = brw_fix_xRGB_alpha(dstRGB);
4086 dstA = brw_fix_xRGB_alpha(dstA);
4087 }
4088
4089 pb.ColorBufferBlendEnable = true;
4090 pb.SourceAlphaBlendFactor = brw_translate_blend_factor(srcA);
4091 pb.DestinationAlphaBlendFactor = brw_translate_blend_factor(dstA);
4092 pb.SourceBlendFactor = brw_translate_blend_factor(srcRGB);
4093 pb.DestinationBlendFactor = brw_translate_blend_factor(dstRGB);
4094
4095 pb.IndependentAlphaBlendEnable =
4096 srcA != srcRGB || dstA != dstRGB || eqA != eqRGB;
4097 }
4098 }
4099 }
4100
4101 static const struct brw_tracked_state genX(ps_blend) = {
4102 .dirty = {
4103 .mesa = _NEW_BUFFERS |
4104 _NEW_COLOR |
4105 _NEW_MULTISAMPLE,
4106 .brw = BRW_NEW_BLORP |
4107 BRW_NEW_CONTEXT |
4108 BRW_NEW_FRAGMENT_PROGRAM,
4109 },
4110 .emit = genX(upload_ps_blend)
4111 };
4112 #endif
4113
4114 /* ---------------------------------------------------------------------- */
4115
4116 #if GEN_GEN >= 8
4117 static void
4118 genX(emit_vf_topology)(struct brw_context *brw)
4119 {
4120 brw_batch_emit(brw, GENX(3DSTATE_VF_TOPOLOGY), vftopo) {
4121 vftopo.PrimitiveTopologyType = brw->primitive;
4122 }
4123 }
4124
4125 static const struct brw_tracked_state genX(vf_topology) = {
4126 .dirty = {
4127 .mesa = 0,
4128 .brw = BRW_NEW_BLORP |
4129 BRW_NEW_PRIMITIVE,
4130 },
4131 .emit = genX(emit_vf_topology),
4132 };
4133 #endif
4134
4135 /* ---------------------------------------------------------------------- */
4136
4137 void
4138 genX(init_atoms)(struct brw_context *brw)
4139 {
4140 #if GEN_GEN < 6
4141 static const struct brw_tracked_state *render_atoms[] =
4142 {
4143 /* Once all the programs are done, we know how large urb entry
4144 * sizes need to be and can decide if we need to change the urb
4145 * layout.
4146 */
4147 &brw_curbe_offsets,
4148 &brw_recalculate_urb_fence,
4149
4150 &genX(cc_vp),
4151 &brw_cc_unit,
4152
4153 /* Surface state setup. Must come before the VS/WM unit. The binding
4154 * table upload must be last.
4155 */
4156 &brw_vs_pull_constants,
4157 &brw_wm_pull_constants,
4158 &brw_renderbuffer_surfaces,
4159 &brw_renderbuffer_read_surfaces,
4160 &brw_texture_surfaces,
4161 &brw_vs_binding_table,
4162 &brw_wm_binding_table,
4163
4164 &brw_fs_samplers,
4165 &brw_vs_samplers,
4166
4167 /* These set up state for brw_psp_urb_cbs */
4168 &brw_wm_unit,
4169 &brw_sf_vp,
4170 &brw_sf_unit,
4171 &genX(vs_state), /* always required, enabled or not */
4172 &brw_clip_unit,
4173 &brw_gs_unit,
4174
4175 /* Command packets:
4176 */
4177 &brw_invariant_state,
4178
4179 &brw_binding_table_pointers,
4180 &brw_blend_constant_color,
4181
4182 &brw_depthbuffer,
4183
4184 &genX(polygon_stipple),
4185 &genX(polygon_stipple_offset),
4186
4187 &genX(line_stipple),
4188
4189 &brw_psp_urb_cbs,
4190
4191 &genX(drawing_rect),
4192 &brw_indices, /* must come before brw_vertices */
4193 &genX(index_buffer),
4194 &genX(vertices),
4195
4196 &brw_constant_buffer
4197 };
4198 #elif GEN_GEN == 6
4199 static const struct brw_tracked_state *render_atoms[] =
4200 {
4201 &genX(sf_clip_viewport),
4202
4203 /* Command packets: */
4204
4205 &genX(cc_vp),
4206
4207 &gen6_urb,
4208 &genX(blend_state), /* must do before cc unit */
4209 &genX(color_calc_state), /* must do before cc unit */
4210 &genX(depth_stencil_state), /* must do before cc unit */
4211
4212 &genX(vs_push_constants), /* Before vs_state */
4213 &genX(gs_push_constants), /* Before gs_state */
4214 &genX(wm_push_constants), /* Before wm_state */
4215
4216 /* Surface state setup. Must come before the VS/WM unit. The binding
4217 * table upload must be last.
4218 */
4219 &brw_vs_pull_constants,
4220 &brw_vs_ubo_surfaces,
4221 &brw_gs_pull_constants,
4222 &brw_gs_ubo_surfaces,
4223 &brw_wm_pull_constants,
4224 &brw_wm_ubo_surfaces,
4225 &gen6_renderbuffer_surfaces,
4226 &brw_renderbuffer_read_surfaces,
4227 &brw_texture_surfaces,
4228 &gen6_sol_surface,
4229 &brw_vs_binding_table,
4230 &gen6_gs_binding_table,
4231 &brw_wm_binding_table,
4232
4233 &brw_fs_samplers,
4234 &brw_vs_samplers,
4235 &brw_gs_samplers,
4236 &gen6_sampler_state,
4237 &genX(multisample_state),
4238
4239 &genX(vs_state),
4240 &genX(gs_state),
4241 &genX(clip_state),
4242 &genX(sf_state),
4243 &genX(wm_state),
4244
4245 &genX(scissor_state),
4246
4247 &gen6_binding_table_pointers,
4248
4249 &brw_depthbuffer,
4250
4251 &genX(polygon_stipple),
4252 &genX(polygon_stipple_offset),
4253
4254 &genX(line_stipple),
4255
4256 &genX(drawing_rect),
4257
4258 &brw_indices, /* must come before brw_vertices */
4259 &genX(index_buffer),
4260 &genX(vertices),
4261 };
4262 #elif GEN_GEN == 7
4263 static const struct brw_tracked_state *render_atoms[] =
4264 {
4265 /* Command packets: */
4266
4267 &genX(cc_vp),
4268 &genX(sf_clip_viewport),
4269
4270 &gen7_l3_state,
4271 &gen7_push_constant_space,
4272 &gen7_urb,
4273 &genX(blend_state), /* must do before cc unit */
4274 &genX(color_calc_state), /* must do before cc unit */
4275 &genX(depth_stencil_state), /* must do before cc unit */
4276
4277 &brw_vs_image_surfaces, /* Before vs push/pull constants and binding table */
4278 &brw_tcs_image_surfaces, /* Before tcs push/pull constants and binding table */
4279 &brw_tes_image_surfaces, /* Before tes push/pull constants and binding table */
4280 &brw_gs_image_surfaces, /* Before gs push/pull constants and binding table */
4281 &brw_wm_image_surfaces, /* Before wm push/pull constants and binding table */
4282
4283 &genX(vs_push_constants), /* Before vs_state */
4284 &genX(tcs_push_constants),
4285 &genX(tes_push_constants),
4286 &genX(gs_push_constants), /* Before gs_state */
4287 &genX(wm_push_constants), /* Before wm_surfaces and constant_buffer */
4288
4289 /* Surface state setup. Must come before the VS/WM unit. The binding
4290 * table upload must be last.
4291 */
4292 &brw_vs_pull_constants,
4293 &brw_vs_ubo_surfaces,
4294 &brw_vs_abo_surfaces,
4295 &brw_tcs_pull_constants,
4296 &brw_tcs_ubo_surfaces,
4297 &brw_tcs_abo_surfaces,
4298 &brw_tes_pull_constants,
4299 &brw_tes_ubo_surfaces,
4300 &brw_tes_abo_surfaces,
4301 &brw_gs_pull_constants,
4302 &brw_gs_ubo_surfaces,
4303 &brw_gs_abo_surfaces,
4304 &brw_wm_pull_constants,
4305 &brw_wm_ubo_surfaces,
4306 &brw_wm_abo_surfaces,
4307 &gen6_renderbuffer_surfaces,
4308 &brw_renderbuffer_read_surfaces,
4309 &brw_texture_surfaces,
4310 &brw_vs_binding_table,
4311 &brw_tcs_binding_table,
4312 &brw_tes_binding_table,
4313 &brw_gs_binding_table,
4314 &brw_wm_binding_table,
4315
4316 &brw_fs_samplers,
4317 &brw_vs_samplers,
4318 &brw_tcs_samplers,
4319 &brw_tes_samplers,
4320 &brw_gs_samplers,
4321 &genX(multisample_state),
4322
4323 &genX(vs_state),
4324 &genX(hs_state),
4325 &genX(te_state),
4326 &genX(ds_state),
4327 &genX(gs_state),
4328 &genX(sol_state),
4329 &genX(clip_state),
4330 &genX(sbe_state),
4331 &genX(sf_state),
4332 &genX(wm_state),
4333 &genX(ps_state),
4334
4335 &genX(scissor_state),
4336
4337 &gen7_depthbuffer,
4338
4339 &genX(polygon_stipple),
4340 &genX(polygon_stipple_offset),
4341
4342 &genX(line_stipple),
4343
4344 &genX(drawing_rect),
4345
4346 &brw_indices, /* must come before brw_vertices */
4347 &genX(index_buffer),
4348 &genX(vertices),
4349
4350 #if GEN_IS_HASWELL
4351 &genX(cut_index),
4352 #endif
4353 };
4354 #elif GEN_GEN >= 8
4355 static const struct brw_tracked_state *render_atoms[] =
4356 {
4357 &genX(cc_vp),
4358 &genX(sf_clip_viewport),
4359
4360 &gen7_l3_state,
4361 &gen7_push_constant_space,
4362 &gen7_urb,
4363 &genX(blend_state),
4364 &genX(color_calc_state),
4365
4366 &brw_vs_image_surfaces, /* Before vs push/pull constants and binding table */
4367 &brw_tcs_image_surfaces, /* Before tcs push/pull constants and binding table */
4368 &brw_tes_image_surfaces, /* Before tes push/pull constants and binding table */
4369 &brw_gs_image_surfaces, /* Before gs push/pull constants and binding table */
4370 &brw_wm_image_surfaces, /* Before wm push/pull constants and binding table */
4371
4372 &genX(vs_push_constants), /* Before vs_state */
4373 &genX(tcs_push_constants),
4374 &genX(tes_push_constants),
4375 &genX(gs_push_constants), /* Before gs_state */
4376 &genX(wm_push_constants), /* Before wm_surfaces and constant_buffer */
4377
4378 /* Surface state setup. Must come before the VS/WM unit. The binding
4379 * table upload must be last.
4380 */
4381 &brw_vs_pull_constants,
4382 &brw_vs_ubo_surfaces,
4383 &brw_vs_abo_surfaces,
4384 &brw_tcs_pull_constants,
4385 &brw_tcs_ubo_surfaces,
4386 &brw_tcs_abo_surfaces,
4387 &brw_tes_pull_constants,
4388 &brw_tes_ubo_surfaces,
4389 &brw_tes_abo_surfaces,
4390 &brw_gs_pull_constants,
4391 &brw_gs_ubo_surfaces,
4392 &brw_gs_abo_surfaces,
4393 &brw_wm_pull_constants,
4394 &brw_wm_ubo_surfaces,
4395 &brw_wm_abo_surfaces,
4396 &gen6_renderbuffer_surfaces,
4397 &brw_renderbuffer_read_surfaces,
4398 &brw_texture_surfaces,
4399 &brw_vs_binding_table,
4400 &brw_tcs_binding_table,
4401 &brw_tes_binding_table,
4402 &brw_gs_binding_table,
4403 &brw_wm_binding_table,
4404
4405 &brw_fs_samplers,
4406 &brw_vs_samplers,
4407 &brw_tcs_samplers,
4408 &brw_tes_samplers,
4409 &brw_gs_samplers,
4410 &genX(multisample_state),
4411
4412 &genX(vs_state),
4413 &genX(hs_state),
4414 &genX(te_state),
4415 &genX(ds_state),
4416 &genX(gs_state),
4417 &genX(sol_state),
4418 &genX(clip_state),
4419 &genX(raster_state),
4420 &genX(sbe_state),
4421 &genX(sf_state),
4422 &genX(ps_blend),
4423 &genX(ps_extra),
4424 &genX(ps_state),
4425 &genX(depth_stencil_state),
4426 &genX(wm_state),
4427
4428 &genX(scissor_state),
4429
4430 &gen7_depthbuffer,
4431
4432 &genX(polygon_stipple),
4433 &genX(polygon_stipple_offset),
4434
4435 &genX(line_stipple),
4436
4437 &genX(drawing_rect),
4438
4439 &genX(vf_topology),
4440
4441 &brw_indices,
4442 &genX(index_buffer),
4443 &genX(vertices),
4444
4445 &genX(cut_index),
4446 &gen8_pma_fix,
4447 };
4448 #endif
4449
4450 STATIC_ASSERT(ARRAY_SIZE(render_atoms) <= ARRAY_SIZE(brw->render_atoms));
4451 brw_copy_pipeline_atoms(brw, BRW_RENDER_PIPELINE,
4452 render_atoms, ARRAY_SIZE(render_atoms));
4453
4454 #if GEN_GEN >= 7
4455 static const struct brw_tracked_state *compute_atoms[] =
4456 {
4457 &gen7_l3_state,
4458 &brw_cs_image_surfaces,
4459 &gen7_cs_push_constants,
4460 &brw_cs_pull_constants,
4461 &brw_cs_ubo_surfaces,
4462 &brw_cs_abo_surfaces,
4463 &brw_cs_texture_surfaces,
4464 &brw_cs_work_groups_surface,
4465 &brw_cs_samplers,
4466 &genX(cs_state),
4467 };
4468
4469 STATIC_ASSERT(ARRAY_SIZE(compute_atoms) <= ARRAY_SIZE(brw->compute_atoms));
4470 brw_copy_pipeline_atoms(brw, BRW_COMPUTE_PIPELINE,
4471 compute_atoms, ARRAY_SIZE(compute_atoms));
4472 #endif
4473 }