f2b3e4570b2bda02d9d92ca39ddc6cbdc8c21ded
[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 #include "main/state.h"
35
36 #include "brw_context.h"
37 #if GEN_GEN == 6
38 #include "brw_defines.h"
39 #endif
40 #include "brw_draw.h"
41 #include "brw_multisample_state.h"
42 #include "brw_state.h"
43 #include "brw_wm.h"
44 #include "brw_util.h"
45
46 #include "intel_batchbuffer.h"
47 #include "intel_buffer_objects.h"
48 #include "intel_fbo.h"
49
50 #include "main/enums.h"
51 #include "main/fbobject.h"
52 #include "main/framebuffer.h"
53 #include "main/glformats.h"
54 #include "main/samplerobj.h"
55 #include "main/shaderapi.h"
56 #include "main/stencil.h"
57 #include "main/transformfeedback.h"
58 #include "main/varray.h"
59 #include "main/viewport.h"
60 #include "util/half_float.h"
61
62 UNUSED static void *
63 emit_dwords(struct brw_context *brw, unsigned n)
64 {
65 intel_batchbuffer_begin(brw, n, RENDER_RING);
66 uint32_t *map = brw->batch.map_next;
67 brw->batch.map_next += n;
68 intel_batchbuffer_advance(brw);
69 return map;
70 }
71
72 struct brw_address {
73 struct brw_bo *bo;
74 unsigned reloc_flags;
75 uint32_t offset;
76 };
77
78 #define __gen_address_type struct brw_address
79 #define __gen_user_data struct brw_context
80
81 static uint64_t
82 __gen_combine_address(struct brw_context *brw, void *location,
83 struct brw_address address, uint32_t delta)
84 {
85 struct intel_batchbuffer *batch = &brw->batch;
86 uint32_t offset;
87
88 if (address.bo == NULL) {
89 return address.offset + delta;
90 } else {
91 if (GEN_GEN < 6 && brw_ptr_in_state_buffer(batch, location)) {
92 offset = (char *) location - (char *) brw->batch.state_map;
93 return brw_state_reloc(batch, offset, address.bo,
94 address.offset + delta,
95 address.reloc_flags);
96 }
97
98 assert(!brw_ptr_in_state_buffer(batch, location));
99
100 offset = (char *) location - (char *) brw->batch.map;
101 return brw_batch_reloc(batch, offset, address.bo,
102 address.offset + delta,
103 address.reloc_flags);
104 }
105 }
106
107 static struct brw_address
108 rw_bo(struct brw_bo *bo, uint32_t offset)
109 {
110 return (struct brw_address) {
111 .bo = bo,
112 .offset = offset,
113 .reloc_flags = RELOC_WRITE,
114 };
115 }
116
117 static struct brw_address
118 ro_bo(struct brw_bo *bo, uint32_t offset)
119 {
120 return (struct brw_address) {
121 .bo = bo,
122 .offset = offset,
123 };
124 }
125
126 UNUSED static struct brw_address
127 ggtt_bo(struct brw_bo *bo, uint32_t offset)
128 {
129 return (struct brw_address) {
130 .bo = bo,
131 .offset = offset,
132 .reloc_flags = RELOC_WRITE | RELOC_NEEDS_GGTT,
133 };
134 }
135
136 #if GEN_GEN == 4
137 static struct brw_address
138 KSP(struct brw_context *brw, uint32_t offset)
139 {
140 return ro_bo(brw->cache.bo, offset);
141 }
142 #else
143 static uint32_t
144 KSP(struct brw_context *brw, uint32_t offset)
145 {
146 return offset;
147 }
148 #endif
149
150 #include "genxml/genX_pack.h"
151
152 #define _brw_cmd_length(cmd) cmd ## _length
153 #define _brw_cmd_length_bias(cmd) cmd ## _length_bias
154 #define _brw_cmd_header(cmd) cmd ## _header
155 #define _brw_cmd_pack(cmd) cmd ## _pack
156
157 #define brw_batch_emit(brw, cmd, name) \
158 for (struct cmd name = { _brw_cmd_header(cmd) }, \
159 *_dst = emit_dwords(brw, _brw_cmd_length(cmd)); \
160 __builtin_expect(_dst != NULL, 1); \
161 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
162 _dst = NULL)
163
164 #define brw_batch_emitn(brw, cmd, n, ...) ({ \
165 uint32_t *_dw = emit_dwords(brw, n); \
166 struct cmd template = { \
167 _brw_cmd_header(cmd), \
168 .DWordLength = n - _brw_cmd_length_bias(cmd), \
169 __VA_ARGS__ \
170 }; \
171 _brw_cmd_pack(cmd)(brw, _dw, &template); \
172 _dw + 1; /* Array starts at dw[1] */ \
173 })
174
175 #define brw_state_emit(brw, cmd, align, offset, name) \
176 for (struct cmd name = {}, \
177 *_dst = brw_state_batch(brw, _brw_cmd_length(cmd) * 4, \
178 align, offset); \
179 __builtin_expect(_dst != NULL, 1); \
180 _brw_cmd_pack(cmd)(brw, (void *)_dst, &name), \
181 _dst = NULL)
182
183 /**
184 * Polygon stipple packet
185 */
186 static void
187 genX(upload_polygon_stipple)(struct brw_context *brw)
188 {
189 struct gl_context *ctx = &brw->ctx;
190
191 /* _NEW_POLYGON */
192 if (!ctx->Polygon.StippleFlag)
193 return;
194
195 brw_batch_emit(brw, GENX(3DSTATE_POLY_STIPPLE_PATTERN), poly) {
196 /* Polygon stipple is provided in OpenGL order, i.e. bottom
197 * row first. If we're rendering to a window (i.e. the
198 * default frame buffer object, 0), then we need to invert
199 * it to match our pixel layout. But if we're rendering
200 * to a FBO (i.e. any named frame buffer object), we *don't*
201 * need to invert - we already match the layout.
202 */
203 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
204 for (unsigned i = 0; i < 32; i++)
205 poly.PatternRow[i] = ctx->PolygonStipple[31 - i]; /* invert */
206 } else {
207 for (unsigned i = 0; i < 32; i++)
208 poly.PatternRow[i] = ctx->PolygonStipple[i];
209 }
210 }
211 }
212
213 static const struct brw_tracked_state genX(polygon_stipple) = {
214 .dirty = {
215 .mesa = _NEW_POLYGON |
216 _NEW_POLYGONSTIPPLE,
217 .brw = BRW_NEW_CONTEXT,
218 },
219 .emit = genX(upload_polygon_stipple),
220 };
221
222 /**
223 * Polygon stipple offset packet
224 */
225 static void
226 genX(upload_polygon_stipple_offset)(struct brw_context *brw)
227 {
228 struct gl_context *ctx = &brw->ctx;
229
230 /* _NEW_POLYGON */
231 if (!ctx->Polygon.StippleFlag)
232 return;
233
234 brw_batch_emit(brw, GENX(3DSTATE_POLY_STIPPLE_OFFSET), poly) {
235 /* _NEW_BUFFERS
236 *
237 * If we're drawing to a system window we have to invert the Y axis
238 * in order to match the OpenGL pixel coordinate system, and our
239 * offset must be matched to the window position. If we're drawing
240 * to a user-created FBO then our native pixel coordinate system
241 * works just fine, and there's no window system to worry about.
242 */
243 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
244 poly.PolygonStippleYOffset =
245 (32 - (_mesa_geometric_height(ctx->DrawBuffer) & 31)) & 31;
246 }
247 }
248 }
249
250 static const struct brw_tracked_state genX(polygon_stipple_offset) = {
251 .dirty = {
252 .mesa = _NEW_BUFFERS |
253 _NEW_POLYGON,
254 .brw = BRW_NEW_CONTEXT,
255 },
256 .emit = genX(upload_polygon_stipple_offset),
257 };
258
259 /**
260 * Line stipple packet
261 */
262 static void
263 genX(upload_line_stipple)(struct brw_context *brw)
264 {
265 struct gl_context *ctx = &brw->ctx;
266
267 if (!ctx->Line.StippleFlag)
268 return;
269
270 brw_batch_emit(brw, GENX(3DSTATE_LINE_STIPPLE), line) {
271 line.LineStipplePattern = ctx->Line.StipplePattern;
272
273 line.LineStippleInverseRepeatCount = 1.0f / ctx->Line.StippleFactor;
274 line.LineStippleRepeatCount = ctx->Line.StippleFactor;
275 }
276 }
277
278 static const struct brw_tracked_state genX(line_stipple) = {
279 .dirty = {
280 .mesa = _NEW_LINE,
281 .brw = BRW_NEW_CONTEXT,
282 },
283 .emit = genX(upload_line_stipple),
284 };
285
286 /* Constant single cliprect for framebuffer object or DRI2 drawing */
287 static void
288 genX(upload_drawing_rect)(struct brw_context *brw)
289 {
290 struct gl_context *ctx = &brw->ctx;
291 const struct gl_framebuffer *fb = ctx->DrawBuffer;
292 const unsigned int fb_width = _mesa_geometric_width(fb);
293 const unsigned int fb_height = _mesa_geometric_height(fb);
294
295 brw_batch_emit(brw, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
296 rect.ClippedDrawingRectangleXMax = fb_width - 1;
297 rect.ClippedDrawingRectangleYMax = fb_height - 1;
298 }
299 }
300
301 static const struct brw_tracked_state genX(drawing_rect) = {
302 .dirty = {
303 .mesa = _NEW_BUFFERS,
304 .brw = BRW_NEW_BLORP |
305 BRW_NEW_CONTEXT,
306 },
307 .emit = genX(upload_drawing_rect),
308 };
309
310 static uint32_t *
311 genX(emit_vertex_buffer_state)(struct brw_context *brw,
312 uint32_t *dw,
313 unsigned buffer_nr,
314 struct brw_bo *bo,
315 unsigned start_offset,
316 unsigned end_offset,
317 unsigned stride,
318 unsigned step_rate)
319 {
320 struct GENX(VERTEX_BUFFER_STATE) buf_state = {
321 .VertexBufferIndex = buffer_nr,
322 .BufferPitch = stride,
323 .BufferStartingAddress = ro_bo(bo, start_offset),
324 #if GEN_GEN >= 8
325 .BufferSize = end_offset - start_offset,
326 #endif
327
328 #if GEN_GEN >= 7
329 .AddressModifyEnable = true,
330 #endif
331
332 #if GEN_GEN < 8
333 .BufferAccessType = step_rate ? INSTANCEDATA : VERTEXDATA,
334 .InstanceDataStepRate = step_rate,
335 #if GEN_GEN >= 5
336 .EndAddress = ro_bo(bo, end_offset - 1),
337 #endif
338 #endif
339
340 #if GEN_GEN == 10
341 .VertexBufferMOCS = CNL_MOCS_WB,
342 #elif GEN_GEN == 9
343 .VertexBufferMOCS = SKL_MOCS_WB,
344 #elif GEN_GEN == 8
345 .VertexBufferMOCS = BDW_MOCS_WB,
346 #elif GEN_GEN == 7
347 .VertexBufferMOCS = GEN7_MOCS_L3,
348 #endif
349 };
350
351 GENX(VERTEX_BUFFER_STATE_pack)(brw, dw, &buf_state);
352 return dw + GENX(VERTEX_BUFFER_STATE_length);
353 }
354
355 UNUSED static bool
356 is_passthru_format(uint32_t format)
357 {
358 switch (format) {
359 case ISL_FORMAT_R64_PASSTHRU:
360 case ISL_FORMAT_R64G64_PASSTHRU:
361 case ISL_FORMAT_R64G64B64_PASSTHRU:
362 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
363 return true;
364 default:
365 return false;
366 }
367 }
368
369 UNUSED static int
370 uploads_needed(uint32_t format)
371 {
372 if (!is_passthru_format(format))
373 return 1;
374
375 switch (format) {
376 case ISL_FORMAT_R64_PASSTHRU:
377 case ISL_FORMAT_R64G64_PASSTHRU:
378 return 1;
379 case ISL_FORMAT_R64G64B64_PASSTHRU:
380 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
381 return 2;
382 default:
383 unreachable("not reached");
384 }
385 }
386
387 /*
388 * Returns the format that we are finally going to use when upload a vertex
389 * element. It will only change if we are using *64*PASSTHRU formats, as for
390 * gen < 8 they need to be splitted on two *32*FLOAT formats.
391 *
392 * @upload points in which upload we are. Valid values are [0,1]
393 */
394 static uint32_t
395 downsize_format_if_needed(uint32_t format,
396 int upload)
397 {
398 assert(upload == 0 || upload == 1);
399
400 if (!is_passthru_format(format))
401 return format;
402
403 switch (format) {
404 case ISL_FORMAT_R64_PASSTHRU:
405 return ISL_FORMAT_R32G32_FLOAT;
406 case ISL_FORMAT_R64G64_PASSTHRU:
407 return ISL_FORMAT_R32G32B32A32_FLOAT;
408 case ISL_FORMAT_R64G64B64_PASSTHRU:
409 return !upload ? ISL_FORMAT_R32G32B32A32_FLOAT
410 : ISL_FORMAT_R32G32_FLOAT;
411 case ISL_FORMAT_R64G64B64A64_PASSTHRU:
412 return ISL_FORMAT_R32G32B32A32_FLOAT;
413 default:
414 unreachable("not reached");
415 }
416 }
417
418 /*
419 * Returns the number of componentes associated with a format that is used on
420 * a 64 to 32 format split. See downsize_format()
421 */
422 static int
423 upload_format_size(uint32_t upload_format)
424 {
425 switch (upload_format) {
426 case ISL_FORMAT_R32G32_FLOAT:
427 return 2;
428 case ISL_FORMAT_R32G32B32A32_FLOAT:
429 return 4;
430 default:
431 unreachable("not reached");
432 }
433 }
434
435 static void
436 genX(emit_vertices)(struct brw_context *brw)
437 {
438 const struct gen_device_info *devinfo = &brw->screen->devinfo;
439 uint32_t *dw;
440
441 brw_prepare_vertices(brw);
442 brw_prepare_shader_draw_parameters(brw);
443
444 #if GEN_GEN < 6
445 brw_emit_query_begin(brw);
446 #endif
447
448 const struct brw_vs_prog_data *vs_prog_data =
449 brw_vs_prog_data(brw->vs.base.prog_data);
450
451 #if GEN_GEN >= 8
452 struct gl_context *ctx = &brw->ctx;
453 const bool uses_edge_flag = (ctx->Polygon.FrontMode != GL_FILL ||
454 ctx->Polygon.BackMode != GL_FILL);
455
456 if (vs_prog_data->uses_vertexid || vs_prog_data->uses_instanceid) {
457 unsigned vue = brw->vb.nr_enabled;
458
459 /* The element for the edge flags must always be last, so we have to
460 * insert the SGVS before it in that case.
461 */
462 if (uses_edge_flag) {
463 assert(vue > 0);
464 vue--;
465 }
466
467 WARN_ONCE(vue >= 33,
468 "Trying to insert VID/IID past 33rd vertex element, "
469 "need to reorder the vertex attrbutes.");
470
471 brw_batch_emit(brw, GENX(3DSTATE_VF_SGVS), vfs) {
472 if (vs_prog_data->uses_vertexid) {
473 vfs.VertexIDEnable = true;
474 vfs.VertexIDComponentNumber = 2;
475 vfs.VertexIDElementOffset = vue;
476 }
477
478 if (vs_prog_data->uses_instanceid) {
479 vfs.InstanceIDEnable = true;
480 vfs.InstanceIDComponentNumber = 3;
481 vfs.InstanceIDElementOffset = vue;
482 }
483 }
484
485 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
486 vfi.InstancingEnable = true;
487 vfi.VertexElementIndex = vue;
488 }
489 } else {
490 brw_batch_emit(brw, GENX(3DSTATE_VF_SGVS), vfs);
491 }
492
493 /* Normally we don't need an element for the SGVS attribute because the
494 * 3DSTATE_VF_SGVS instruction lets you store the generated attribute in an
495 * element that is past the list in 3DSTATE_VERTEX_ELEMENTS. However if
496 * we're using draw parameters then we need an element for the those
497 * values. Additionally if there is an edge flag element then the SGVS
498 * can't be inserted past that so we need a dummy element to ensure that
499 * the edge flag is the last one.
500 */
501 const bool needs_sgvs_element = (vs_prog_data->uses_basevertex ||
502 vs_prog_data->uses_baseinstance ||
503 ((vs_prog_data->uses_instanceid ||
504 vs_prog_data->uses_vertexid)
505 && uses_edge_flag));
506 #else
507 const bool needs_sgvs_element = (vs_prog_data->uses_basevertex ||
508 vs_prog_data->uses_baseinstance ||
509 vs_prog_data->uses_instanceid ||
510 vs_prog_data->uses_vertexid);
511 #endif
512 unsigned nr_elements =
513 brw->vb.nr_enabled + needs_sgvs_element + vs_prog_data->uses_drawid;
514
515 #if GEN_GEN < 8
516 /* If any of the formats of vb.enabled needs more that one upload, we need
517 * to add it to nr_elements
518 */
519 for (unsigned i = 0; i < brw->vb.nr_enabled; i++) {
520 struct brw_vertex_element *input = brw->vb.enabled[i];
521 uint32_t format = brw_get_vertex_surface_type(brw, input->glarray);
522
523 if (uploads_needed(format) > 1)
524 nr_elements++;
525 }
526 #endif
527
528 /* If the VS doesn't read any inputs (calculating vertex position from
529 * a state variable for some reason, for example), emit a single pad
530 * VERTEX_ELEMENT struct and bail.
531 *
532 * The stale VB state stays in place, but they don't do anything unless
533 * a VE loads from them.
534 */
535 if (nr_elements == 0) {
536 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_ELEMENTS),
537 1 + GENX(VERTEX_ELEMENT_STATE_length));
538 struct GENX(VERTEX_ELEMENT_STATE) elem = {
539 .Valid = true,
540 .SourceElementFormat = (enum GENX(SURFACE_FORMAT)) ISL_FORMAT_R32G32B32A32_FLOAT,
541 .Component0Control = VFCOMP_STORE_0,
542 .Component1Control = VFCOMP_STORE_0,
543 .Component2Control = VFCOMP_STORE_0,
544 .Component3Control = VFCOMP_STORE_1_FP,
545 };
546 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem);
547 return;
548 }
549
550 /* Now emit 3DSTATE_VERTEX_BUFFERS and 3DSTATE_VERTEX_ELEMENTS packets. */
551 const bool uses_draw_params =
552 vs_prog_data->uses_basevertex ||
553 vs_prog_data->uses_baseinstance;
554 const unsigned nr_buffers = brw->vb.nr_buffers +
555 uses_draw_params + vs_prog_data->uses_drawid;
556
557 if (nr_buffers) {
558 assert(nr_buffers <= (GEN_GEN >= 6 ? 33 : 17));
559
560 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_BUFFERS),
561 1 + GENX(VERTEX_BUFFER_STATE_length) * nr_buffers);
562
563 for (unsigned i = 0; i < brw->vb.nr_buffers; i++) {
564 const struct brw_vertex_buffer *buffer = &brw->vb.buffers[i];
565 /* Prior to Haswell and Bay Trail we have to use 4-component formats
566 * to fake 3-component ones. In particular, we do this for
567 * half-float and 8 and 16-bit integer formats. This means that the
568 * vertex element may poke over the end of the buffer by 2 bytes.
569 */
570 const unsigned padding =
571 (GEN_GEN <= 7 && !GEN_IS_HASWELL && !devinfo->is_baytrail) * 2;
572 const unsigned end = buffer->offset + buffer->size + padding;
573 dw = genX(emit_vertex_buffer_state)(brw, dw, i, buffer->bo,
574 buffer->offset,
575 end,
576 buffer->stride,
577 buffer->step_rate);
578 }
579
580 if (uses_draw_params) {
581 dw = genX(emit_vertex_buffer_state)(brw, dw, brw->vb.nr_buffers,
582 brw->draw.draw_params_bo,
583 brw->draw.draw_params_offset,
584 brw->draw.draw_params_bo->size,
585 0 /* stride */,
586 0 /* step rate */);
587 }
588
589 if (vs_prog_data->uses_drawid) {
590 dw = genX(emit_vertex_buffer_state)(brw, dw, brw->vb.nr_buffers + 1,
591 brw->draw.draw_id_bo,
592 brw->draw.draw_id_offset,
593 brw->draw.draw_id_bo->size,
594 0 /* stride */,
595 0 /* step rate */);
596 }
597 }
598
599 /* The hardware allows one more VERTEX_ELEMENTS than VERTEX_BUFFERS,
600 * presumably for VertexID/InstanceID.
601 */
602 #if GEN_GEN >= 6
603 assert(nr_elements <= 34);
604 const struct brw_vertex_element *gen6_edgeflag_input = NULL;
605 #else
606 assert(nr_elements <= 18);
607 #endif
608
609 dw = brw_batch_emitn(brw, GENX(3DSTATE_VERTEX_ELEMENTS),
610 1 + GENX(VERTEX_ELEMENT_STATE_length) * nr_elements);
611 unsigned i;
612 for (i = 0; i < brw->vb.nr_enabled; i++) {
613 const struct brw_vertex_element *input = brw->vb.enabled[i];
614 uint32_t format = brw_get_vertex_surface_type(brw, input->glarray);
615 uint32_t comp0 = VFCOMP_STORE_SRC;
616 uint32_t comp1 = VFCOMP_STORE_SRC;
617 uint32_t comp2 = VFCOMP_STORE_SRC;
618 uint32_t comp3 = VFCOMP_STORE_SRC;
619 const unsigned num_uploads = GEN_GEN < 8 ? uploads_needed(format) : 1;
620
621 #if GEN_GEN >= 8
622 /* From the BDW PRM, Volume 2d, page 588 (VERTEX_ELEMENT_STATE):
623 * "Any SourceElementFormat of *64*_PASSTHRU cannot be used with an
624 * element which has edge flag enabled."
625 */
626 assert(!(is_passthru_format(format) && uses_edge_flag));
627 #endif
628
629 /* The gen4 driver expects edgeflag to come in as a float, and passes
630 * that float on to the tests in the clipper. Mesa's current vertex
631 * attribute value for EdgeFlag is stored as a float, which works out.
632 * glEdgeFlagPointer, on the other hand, gives us an unnormalized
633 * integer ubyte. Just rewrite that to convert to a float.
634 *
635 * Gen6+ passes edgeflag as sideband along with the vertex, instead
636 * of in the VUE. We have to upload it sideband as the last vertex
637 * element according to the B-Spec.
638 */
639 #if GEN_GEN >= 6
640 if (input == &brw->vb.inputs[VERT_ATTRIB_EDGEFLAG]) {
641 gen6_edgeflag_input = input;
642 continue;
643 }
644 #endif
645
646 for (unsigned c = 0; c < num_uploads; c++) {
647 const uint32_t upload_format = GEN_GEN >= 8 ? format :
648 downsize_format_if_needed(format, c);
649 /* If we need more that one upload, the offset stride would be 128
650 * bits (16 bytes), as for previous uploads we are using the full
651 * entry. */
652 const unsigned offset = input->offset + c * 16;
653
654 const int size = (GEN_GEN < 8 && is_passthru_format(format)) ?
655 upload_format_size(upload_format) : input->glarray->Size;
656
657 switch (size) {
658 case 0: comp0 = VFCOMP_STORE_0;
659 case 1: comp1 = VFCOMP_STORE_0;
660 case 2: comp2 = VFCOMP_STORE_0;
661 case 3:
662 if (GEN_GEN >= 8 && input->glarray->Doubles) {
663 comp3 = VFCOMP_STORE_0;
664 } else if (input->glarray->Integer) {
665 comp3 = VFCOMP_STORE_1_INT;
666 } else {
667 comp3 = VFCOMP_STORE_1_FP;
668 }
669
670 break;
671 }
672
673 #if GEN_GEN >= 8
674 /* From the BDW PRM, Volume 2d, page 586 (VERTEX_ELEMENT_STATE):
675 *
676 * "When SourceElementFormat is set to one of the *64*_PASSTHRU
677 * formats, 64-bit components are stored in the URB without any
678 * conversion. In this case, vertex elements must be written as 128
679 * or 256 bits, with VFCOMP_STORE_0 being used to pad the output as
680 * required. E.g., if R64_PASSTHRU is used to copy a 64-bit Red
681 * component into the URB, Component 1 must be specified as
682 * VFCOMP_STORE_0 (with Components 2,3 set to VFCOMP_NOSTORE) in
683 * order to output a 128-bit vertex element, or Components 1-3 must
684 * be specified as VFCOMP_STORE_0 in order to output a 256-bit vertex
685 * element. Likewise, use of R64G64B64_PASSTHRU requires Component 3
686 * to be specified as VFCOMP_STORE_0 in order to output a 256-bit
687 * vertex element."
688 */
689 if (input->glarray->Doubles && !input->is_dual_slot) {
690 /* Store vertex elements which correspond to double and dvec2 vertex
691 * shader inputs as 128-bit vertex elements, instead of 256-bits.
692 */
693 comp2 = VFCOMP_NOSTORE;
694 comp3 = VFCOMP_NOSTORE;
695 }
696 #endif
697
698 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
699 .VertexBufferIndex = input->buffer,
700 .Valid = true,
701 .SourceElementFormat = upload_format,
702 .SourceElementOffset = offset,
703 .Component0Control = comp0,
704 .Component1Control = comp1,
705 .Component2Control = comp2,
706 .Component3Control = comp3,
707 #if GEN_GEN < 5
708 .DestinationElementOffset = i * 4,
709 #endif
710 };
711
712 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
713 dw += GENX(VERTEX_ELEMENT_STATE_length);
714 }
715 }
716
717 if (needs_sgvs_element) {
718 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
719 .Valid = true,
720 .Component0Control = VFCOMP_STORE_0,
721 .Component1Control = VFCOMP_STORE_0,
722 .Component2Control = VFCOMP_STORE_0,
723 .Component3Control = VFCOMP_STORE_0,
724 #if GEN_GEN < 5
725 .DestinationElementOffset = i * 4,
726 #endif
727 };
728
729 #if GEN_GEN >= 8
730 if (vs_prog_data->uses_basevertex ||
731 vs_prog_data->uses_baseinstance) {
732 elem_state.VertexBufferIndex = brw->vb.nr_buffers;
733 elem_state.SourceElementFormat = (enum GENX(SURFACE_FORMAT)) ISL_FORMAT_R32G32_UINT;
734 elem_state.Component0Control = VFCOMP_STORE_SRC;
735 elem_state.Component1Control = VFCOMP_STORE_SRC;
736 }
737 #else
738 elem_state.VertexBufferIndex = brw->vb.nr_buffers;
739 elem_state.SourceElementFormat = (enum GENX(SURFACE_FORMAT)) ISL_FORMAT_R32G32_UINT;
740 if (vs_prog_data->uses_basevertex)
741 elem_state.Component0Control = VFCOMP_STORE_SRC;
742
743 if (vs_prog_data->uses_baseinstance)
744 elem_state.Component1Control = VFCOMP_STORE_SRC;
745
746 if (vs_prog_data->uses_vertexid)
747 elem_state.Component2Control = VFCOMP_STORE_VID;
748
749 if (vs_prog_data->uses_instanceid)
750 elem_state.Component3Control = VFCOMP_STORE_IID;
751 #endif
752
753 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
754 dw += GENX(VERTEX_ELEMENT_STATE_length);
755 }
756
757 if (vs_prog_data->uses_drawid) {
758 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
759 .Valid = true,
760 .VertexBufferIndex = brw->vb.nr_buffers + 1,
761 .SourceElementFormat = (enum GENX(SURFACE_FORMAT)) ISL_FORMAT_R32_UINT,
762 .Component0Control = VFCOMP_STORE_SRC,
763 .Component1Control = VFCOMP_STORE_0,
764 .Component2Control = VFCOMP_STORE_0,
765 .Component3Control = VFCOMP_STORE_0,
766 #if GEN_GEN < 5
767 .DestinationElementOffset = i * 4,
768 #endif
769 };
770
771 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
772 dw += GENX(VERTEX_ELEMENT_STATE_length);
773 }
774
775 #if GEN_GEN >= 6
776 if (gen6_edgeflag_input) {
777 const uint32_t format =
778 brw_get_vertex_surface_type(brw, gen6_edgeflag_input->glarray);
779
780 struct GENX(VERTEX_ELEMENT_STATE) elem_state = {
781 .Valid = true,
782 .VertexBufferIndex = gen6_edgeflag_input->buffer,
783 .EdgeFlagEnable = true,
784 .SourceElementFormat = format,
785 .SourceElementOffset = gen6_edgeflag_input->offset,
786 .Component0Control = VFCOMP_STORE_SRC,
787 .Component1Control = VFCOMP_STORE_0,
788 .Component2Control = VFCOMP_STORE_0,
789 .Component3Control = VFCOMP_STORE_0,
790 };
791
792 GENX(VERTEX_ELEMENT_STATE_pack)(brw, dw, &elem_state);
793 dw += GENX(VERTEX_ELEMENT_STATE_length);
794 }
795 #endif
796
797 #if GEN_GEN >= 8
798 for (unsigned i = 0, j = 0; i < brw->vb.nr_enabled; i++) {
799 const struct brw_vertex_element *input = brw->vb.enabled[i];
800 const struct brw_vertex_buffer *buffer = &brw->vb.buffers[input->buffer];
801 unsigned element_index;
802
803 /* The edge flag element is reordered to be the last one in the code
804 * above so we need to compensate for that in the element indices used
805 * below.
806 */
807 if (input == gen6_edgeflag_input)
808 element_index = nr_elements - 1;
809 else
810 element_index = j++;
811
812 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
813 vfi.VertexElementIndex = element_index;
814 vfi.InstancingEnable = buffer->step_rate != 0;
815 vfi.InstanceDataStepRate = buffer->step_rate;
816 }
817 }
818
819 if (vs_prog_data->uses_drawid) {
820 const unsigned element = brw->vb.nr_enabled + needs_sgvs_element;
821
822 brw_batch_emit(brw, GENX(3DSTATE_VF_INSTANCING), vfi) {
823 vfi.VertexElementIndex = element;
824 }
825 }
826 #endif
827 }
828
829 static const struct brw_tracked_state genX(vertices) = {
830 .dirty = {
831 .mesa = _NEW_POLYGON,
832 .brw = BRW_NEW_BATCH |
833 BRW_NEW_BLORP |
834 BRW_NEW_VERTICES |
835 BRW_NEW_VS_PROG_DATA,
836 },
837 .emit = genX(emit_vertices),
838 };
839
840 static void
841 genX(emit_index_buffer)(struct brw_context *brw)
842 {
843 const struct _mesa_index_buffer *index_buffer = brw->ib.ib;
844
845 if (index_buffer == NULL)
846 return;
847
848 brw_batch_emit(brw, GENX(3DSTATE_INDEX_BUFFER), ib) {
849 #if GEN_GEN < 8 && !GEN_IS_HASWELL
850 ib.CutIndexEnable = brw->prim_restart.enable_cut_index;
851 #endif
852 ib.IndexFormat = brw_get_index_type(index_buffer->index_size);
853 ib.BufferStartingAddress = ro_bo(brw->ib.bo, 0);
854 #if GEN_GEN >= 8
855 ib.IndexBufferMOCS = GEN_GEN >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
856 ib.BufferSize = brw->ib.size;
857 #else
858 ib.BufferEndingAddress = ro_bo(brw->ib.bo, brw->ib.size - 1);
859 #endif
860 }
861 }
862
863 static const struct brw_tracked_state genX(index_buffer) = {
864 .dirty = {
865 .mesa = 0,
866 .brw = BRW_NEW_BATCH |
867 BRW_NEW_BLORP |
868 BRW_NEW_INDEX_BUFFER,
869 },
870 .emit = genX(emit_index_buffer),
871 };
872
873 #if GEN_IS_HASWELL || GEN_GEN >= 8
874 static void
875 genX(upload_cut_index)(struct brw_context *brw)
876 {
877 const struct gl_context *ctx = &brw->ctx;
878
879 brw_batch_emit(brw, GENX(3DSTATE_VF), vf) {
880 if (ctx->Array._PrimitiveRestart && brw->ib.ib) {
881 vf.IndexedDrawCutIndexEnable = true;
882 vf.CutIndex = _mesa_primitive_restart_index(ctx, brw->ib.index_size);
883 }
884 }
885 }
886
887 const struct brw_tracked_state genX(cut_index) = {
888 .dirty = {
889 .mesa = _NEW_TRANSFORM,
890 .brw = BRW_NEW_INDEX_BUFFER,
891 },
892 .emit = genX(upload_cut_index),
893 };
894 #endif
895
896 #if GEN_GEN >= 6
897 /**
898 * Determine the appropriate attribute override value to store into the
899 * 3DSTATE_SF structure for a given fragment shader attribute. The attribute
900 * override value contains two pieces of information: the location of the
901 * attribute in the VUE (relative to urb_entry_read_offset, see below), and a
902 * flag indicating whether to "swizzle" the attribute based on the direction
903 * the triangle is facing.
904 *
905 * If an attribute is "swizzled", then the given VUE location is used for
906 * front-facing triangles, and the VUE location that immediately follows is
907 * used for back-facing triangles. We use this to implement the mapping from
908 * gl_FrontColor/gl_BackColor to gl_Color.
909 *
910 * urb_entry_read_offset is the offset into the VUE at which the SF unit is
911 * being instructed to begin reading attribute data. It can be set to a
912 * nonzero value to prevent the SF unit from wasting time reading elements of
913 * the VUE that are not needed by the fragment shader. It is measured in
914 * 256-bit increments.
915 */
916 static void
917 genX(get_attr_override)(struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr,
918 const struct brw_vue_map *vue_map,
919 int urb_entry_read_offset, int fs_attr,
920 bool two_side_color, uint32_t *max_source_attr)
921 {
922 /* Find the VUE slot for this attribute. */
923 int slot = vue_map->varying_to_slot[fs_attr];
924
925 /* Viewport and Layer are stored in the VUE header. We need to override
926 * them to zero if earlier stages didn't write them, as GL requires that
927 * they read back as zero when not explicitly set.
928 */
929 if (fs_attr == VARYING_SLOT_VIEWPORT || fs_attr == VARYING_SLOT_LAYER) {
930 attr->ComponentOverrideX = true;
931 attr->ComponentOverrideW = true;
932 attr->ConstantSource = CONST_0000;
933
934 if (!(vue_map->slots_valid & VARYING_BIT_LAYER))
935 attr->ComponentOverrideY = true;
936 if (!(vue_map->slots_valid & VARYING_BIT_VIEWPORT))
937 attr->ComponentOverrideZ = true;
938
939 return;
940 }
941
942 /* If there was only a back color written but not front, use back
943 * as the color instead of undefined
944 */
945 if (slot == -1 && fs_attr == VARYING_SLOT_COL0)
946 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC0];
947 if (slot == -1 && fs_attr == VARYING_SLOT_COL1)
948 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC1];
949
950 if (slot == -1) {
951 /* This attribute does not exist in the VUE--that means that the vertex
952 * shader did not write to it. This means that either:
953 *
954 * (a) This attribute is a texture coordinate, and it is going to be
955 * replaced with point coordinates (as a consequence of a call to
956 * glTexEnvi(GL_POINT_SPRITE, GL_COORD_REPLACE, GL_TRUE)), so the
957 * hardware will ignore whatever attribute override we supply.
958 *
959 * (b) This attribute is read by the fragment shader but not written by
960 * the vertex shader, so its value is undefined. Therefore the
961 * attribute override we supply doesn't matter.
962 *
963 * (c) This attribute is gl_PrimitiveID, and it wasn't written by the
964 * previous shader stage.
965 *
966 * Note that we don't have to worry about the cases where the attribute
967 * is gl_PointCoord or is undergoing point sprite coordinate
968 * replacement, because in those cases, this function isn't called.
969 *
970 * In case (c), we need to program the attribute overrides so that the
971 * primitive ID will be stored in this slot. In every other case, the
972 * attribute override we supply doesn't matter. So just go ahead and
973 * program primitive ID in every case.
974 */
975 attr->ComponentOverrideW = true;
976 attr->ComponentOverrideX = true;
977 attr->ComponentOverrideY = true;
978 attr->ComponentOverrideZ = true;
979 attr->ConstantSource = PRIM_ID;
980 return;
981 }
982
983 /* Compute the location of the attribute relative to urb_entry_read_offset.
984 * Each increment of urb_entry_read_offset represents a 256-bit value, so
985 * it counts for two 128-bit VUE slots.
986 */
987 int source_attr = slot - 2 * urb_entry_read_offset;
988 assert(source_attr >= 0 && source_attr < 32);
989
990 /* If we are doing two-sided color, and the VUE slot following this one
991 * represents a back-facing color, then we need to instruct the SF unit to
992 * do back-facing swizzling.
993 */
994 bool swizzling = two_side_color &&
995 ((vue_map->slot_to_varying[slot] == VARYING_SLOT_COL0 &&
996 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC0) ||
997 (vue_map->slot_to_varying[slot] == VARYING_SLOT_COL1 &&
998 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC1));
999
1000 /* Update max_source_attr. If swizzling, the SF will read this slot + 1. */
1001 if (*max_source_attr < source_attr + swizzling)
1002 *max_source_attr = source_attr + swizzling;
1003
1004 attr->SourceAttribute = source_attr;
1005 if (swizzling)
1006 attr->SwizzleSelect = INPUTATTR_FACING;
1007 }
1008
1009
1010 static void
1011 genX(calculate_attr_overrides)(const struct brw_context *brw,
1012 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr_overrides,
1013 uint32_t *point_sprite_enables,
1014 uint32_t *urb_entry_read_length,
1015 uint32_t *urb_entry_read_offset)
1016 {
1017 const struct gl_context *ctx = &brw->ctx;
1018
1019 /* _NEW_POINT */
1020 const struct gl_point_attrib *point = &ctx->Point;
1021
1022 /* BRW_NEW_FRAGMENT_PROGRAM */
1023 const struct gl_program *fp = brw->programs[MESA_SHADER_FRAGMENT];
1024
1025 /* BRW_NEW_FS_PROG_DATA */
1026 const struct brw_wm_prog_data *wm_prog_data =
1027 brw_wm_prog_data(brw->wm.base.prog_data);
1028 uint32_t max_source_attr = 0;
1029
1030 *point_sprite_enables = 0;
1031
1032 int first_slot =
1033 brw_compute_first_urb_slot_required(fp->info.inputs_read,
1034 &brw->vue_map_geom_out);
1035
1036 /* Each URB offset packs two varying slots */
1037 assert(first_slot % 2 == 0);
1038 *urb_entry_read_offset = first_slot / 2;
1039
1040 /* From the Ivybridge PRM, Vol 2 Part 1, 3DSTATE_SBE,
1041 * description of dw10 Point Sprite Texture Coordinate Enable:
1042 *
1043 * "This field must be programmed to zero when non-point primitives
1044 * are rendered."
1045 *
1046 * The SandyBridge PRM doesn't explicitly say that point sprite enables
1047 * must be programmed to zero when rendering non-point primitives, but
1048 * the IvyBridge PRM does, and if we don't, we get garbage.
1049 *
1050 * This is not required on Haswell, as the hardware ignores this state
1051 * when drawing non-points -- although we do still need to be careful to
1052 * correctly set the attr overrides.
1053 *
1054 * _NEW_POLYGON
1055 * BRW_NEW_PRIMITIVE | BRW_NEW_GS_PROG_DATA | BRW_NEW_TES_PROG_DATA
1056 */
1057 bool drawing_points = brw_is_drawing_points(brw);
1058
1059 for (int attr = 0; attr < VARYING_SLOT_MAX; attr++) {
1060 int input_index = wm_prog_data->urb_setup[attr];
1061
1062 if (input_index < 0)
1063 continue;
1064
1065 /* _NEW_POINT */
1066 bool point_sprite = false;
1067 if (drawing_points) {
1068 if (point->PointSprite &&
1069 (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) &&
1070 (point->CoordReplace & (1u << (attr - VARYING_SLOT_TEX0)))) {
1071 point_sprite = true;
1072 }
1073
1074 if (attr == VARYING_SLOT_PNTC)
1075 point_sprite = true;
1076
1077 if (point_sprite)
1078 *point_sprite_enables |= (1 << input_index);
1079 }
1080
1081 /* BRW_NEW_VUE_MAP_GEOM_OUT | _NEW_LIGHT | _NEW_PROGRAM */
1082 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attribute = { 0 };
1083
1084 if (!point_sprite) {
1085 genX(get_attr_override)(&attribute,
1086 &brw->vue_map_geom_out,
1087 *urb_entry_read_offset, attr,
1088 _mesa_vertex_program_two_side_enabled(ctx),
1089 &max_source_attr);
1090 }
1091
1092 /* The hardware can only do the overrides on 16 overrides at a
1093 * time, and the other up to 16 have to be lined up so that the
1094 * input index = the output index. We'll need to do some
1095 * tweaking to make sure that's the case.
1096 */
1097 if (input_index < 16)
1098 attr_overrides[input_index] = attribute;
1099 else
1100 assert(attribute.SourceAttribute == input_index);
1101 }
1102
1103 /* From the Sandy Bridge PRM, Volume 2, Part 1, documentation for
1104 * 3DSTATE_SF DWord 1 bits 15:11, "Vertex URB Entry Read Length":
1105 *
1106 * "This field should be set to the minimum length required to read the
1107 * maximum source attribute. The maximum source attribute is indicated
1108 * by the maximum value of the enabled Attribute # Source Attribute if
1109 * Attribute Swizzle Enable is set, Number of Output Attributes-1 if
1110 * enable is not set.
1111 * read_length = ceiling((max_source_attr + 1) / 2)
1112 *
1113 * [errata] Corruption/Hang possible if length programmed larger than
1114 * recommended"
1115 *
1116 * Similar text exists for Ivy Bridge.
1117 */
1118 *urb_entry_read_length = DIV_ROUND_UP(max_source_attr + 1, 2);
1119 }
1120 #endif
1121
1122 /* ---------------------------------------------------------------------- */
1123
1124 #if GEN_GEN >= 8
1125 typedef struct GENX(3DSTATE_WM_DEPTH_STENCIL) DEPTH_STENCIL_GENXML;
1126 #elif GEN_GEN >= 6
1127 typedef struct GENX(DEPTH_STENCIL_STATE) DEPTH_STENCIL_GENXML;
1128 #else
1129 typedef struct GENX(COLOR_CALC_STATE) DEPTH_STENCIL_GENXML;
1130 #endif
1131
1132 static inline void
1133 set_depth_stencil_bits(struct brw_context *brw, DEPTH_STENCIL_GENXML *ds)
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 (depth->Test && depth_irb) {
1149 ds->DepthTestEnable = true;
1150 ds->DepthBufferWriteEnable = brw_depth_writes_enabled(brw);
1151 ds->DepthTestFunction = intel_translate_compare_func(depth->Func);
1152 }
1153
1154 if (brw->stencil_enabled) {
1155 ds->StencilTestEnable = true;
1156 ds->StencilWriteMask = stencil->WriteMask[0] & 0xff;
1157 ds->StencilTestMask = stencil->ValueMask[0] & 0xff;
1158
1159 ds->StencilTestFunction =
1160 intel_translate_compare_func(stencil->Function[0]);
1161 ds->StencilFailOp =
1162 intel_translate_stencil_op(stencil->FailFunc[0]);
1163 ds->StencilPassDepthPassOp =
1164 intel_translate_stencil_op(stencil->ZPassFunc[0]);
1165 ds->StencilPassDepthFailOp =
1166 intel_translate_stencil_op(stencil->ZFailFunc[0]);
1167
1168 ds->StencilBufferWriteEnable = brw->stencil_write_enabled;
1169
1170 if (brw->stencil_two_sided) {
1171 ds->DoubleSidedStencilEnable = true;
1172 ds->BackfaceStencilWriteMask = stencil->WriteMask[b] & 0xff;
1173 ds->BackfaceStencilTestMask = stencil->ValueMask[b] & 0xff;
1174
1175 ds->BackfaceStencilTestFunction =
1176 intel_translate_compare_func(stencil->Function[b]);
1177 ds->BackfaceStencilFailOp =
1178 intel_translate_stencil_op(stencil->FailFunc[b]);
1179 ds->BackfaceStencilPassDepthPassOp =
1180 intel_translate_stencil_op(stencil->ZPassFunc[b]);
1181 ds->BackfaceStencilPassDepthFailOp =
1182 intel_translate_stencil_op(stencil->ZFailFunc[b]);
1183 }
1184
1185 #if GEN_GEN <= 5 || GEN_GEN >= 9
1186 ds->StencilReferenceValue = _mesa_get_stencil_ref(ctx, 0);
1187 ds->BackfaceStencilReferenceValue = _mesa_get_stencil_ref(ctx, b);
1188 #endif
1189 }
1190 }
1191
1192 #if GEN_GEN >= 6
1193 static void
1194 genX(upload_depth_stencil_state)(struct brw_context *brw)
1195 {
1196 #if GEN_GEN >= 8
1197 brw_batch_emit(brw, GENX(3DSTATE_WM_DEPTH_STENCIL), wmds) {
1198 set_depth_stencil_bits(brw, &wmds);
1199 }
1200 #else
1201 uint32_t ds_offset;
1202 brw_state_emit(brw, GENX(DEPTH_STENCIL_STATE), 64, &ds_offset, ds) {
1203 set_depth_stencil_bits(brw, &ds);
1204 }
1205
1206 /* Now upload a pointer to the indirect state */
1207 #if GEN_GEN == 6
1208 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
1209 ptr.PointertoDEPTH_STENCIL_STATE = ds_offset;
1210 ptr.DEPTH_STENCIL_STATEChange = true;
1211 }
1212 #else
1213 brw_batch_emit(brw, GENX(3DSTATE_DEPTH_STENCIL_STATE_POINTERS), ptr) {
1214 ptr.PointertoDEPTH_STENCIL_STATE = ds_offset;
1215 }
1216 #endif
1217 #endif
1218 }
1219
1220 static const struct brw_tracked_state genX(depth_stencil_state) = {
1221 .dirty = {
1222 .mesa = _NEW_BUFFERS |
1223 _NEW_DEPTH |
1224 _NEW_STENCIL,
1225 .brw = BRW_NEW_BLORP |
1226 (GEN_GEN >= 8 ? BRW_NEW_CONTEXT
1227 : BRW_NEW_BATCH |
1228 BRW_NEW_STATE_BASE_ADDRESS),
1229 },
1230 .emit = genX(upload_depth_stencil_state),
1231 };
1232 #endif
1233
1234 /* ---------------------------------------------------------------------- */
1235
1236 #if GEN_GEN <= 5
1237
1238 static void
1239 genX(upload_clip_state)(struct brw_context *brw)
1240 {
1241 struct gl_context *ctx = &brw->ctx;
1242
1243 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
1244 brw_state_emit(brw, GENX(CLIP_STATE), 32, &brw->clip.state_offset, clip) {
1245 clip.KernelStartPointer = KSP(brw, brw->clip.prog_offset);
1246 clip.GRFRegisterCount =
1247 DIV_ROUND_UP(brw->clip.prog_data->total_grf, 16) - 1;
1248 clip.FloatingPointMode = FLOATING_POINT_MODE_Alternate;
1249 clip.SingleProgramFlow = true;
1250 clip.VertexURBEntryReadLength = brw->clip.prog_data->urb_read_length;
1251 clip.ConstantURBEntryReadLength = brw->clip.prog_data->curb_read_length;
1252
1253 /* BRW_NEW_PUSH_CONSTANT_ALLOCATION */
1254 clip.ConstantURBEntryReadOffset = brw->curbe.clip_start * 2;
1255 clip.DispatchGRFStartRegisterForURBData = 1;
1256 clip.VertexURBEntryReadOffset = 0;
1257
1258 /* BRW_NEW_URB_FENCE */
1259 clip.NumberofURBEntries = brw->urb.nr_clip_entries;
1260 clip.URBEntryAllocationSize = brw->urb.vsize - 1;
1261
1262 if (brw->urb.nr_clip_entries >= 10) {
1263 /* Half of the URB entries go to each thread, and it has to be an
1264 * even number.
1265 */
1266 assert(brw->urb.nr_clip_entries % 2 == 0);
1267
1268 /* Although up to 16 concurrent Clip threads are allowed on Ironlake,
1269 * only 2 threads can output VUEs at a time.
1270 */
1271 clip.MaximumNumberofThreads = (GEN_GEN == 5 ? 16 : 2) - 1;
1272 } else {
1273 assert(brw->urb.nr_clip_entries >= 5);
1274 clip.MaximumNumberofThreads = 1 - 1;
1275 }
1276
1277 clip.VertexPositionSpace = VPOS_NDCSPACE;
1278 clip.UserClipFlagsMustClipEnable = true;
1279 clip.GuardbandClipTestEnable = true;
1280
1281 clip.ClipperViewportStatePointer =
1282 ro_bo(brw->batch.state_bo, brw->clip.vp_offset);
1283
1284 clip.ScreenSpaceViewportXMin = -1;
1285 clip.ScreenSpaceViewportXMax = 1;
1286 clip.ScreenSpaceViewportYMin = -1;
1287 clip.ScreenSpaceViewportYMax = 1;
1288
1289 clip.ViewportXYClipTestEnable = true;
1290 clip.ViewportZClipTestEnable = !ctx->Transform.DepthClamp;
1291
1292 /* _NEW_TRANSFORM */
1293 if (GEN_GEN == 5 || GEN_IS_G4X) {
1294 clip.UserClipDistanceClipTestEnableBitmask =
1295 ctx->Transform.ClipPlanesEnabled;
1296 } else {
1297 /* Up to 6 actual clip flags, plus the 7th for the negative RHW
1298 * workaround.
1299 */
1300 clip.UserClipDistanceClipTestEnableBitmask =
1301 (ctx->Transform.ClipPlanesEnabled & 0x3f) | 0x40;
1302 }
1303
1304 if (ctx->Transform.ClipDepthMode == GL_ZERO_TO_ONE)
1305 clip.APIMode = APIMODE_D3D;
1306 else
1307 clip.APIMode = APIMODE_OGL;
1308
1309 clip.GuardbandClipTestEnable = true;
1310
1311 clip.ClipMode = brw->clip.prog_data->clip_mode;
1312
1313 #if GEN_IS_G4X
1314 clip.NegativeWClipTestEnable = true;
1315 #endif
1316 }
1317 }
1318
1319 const struct brw_tracked_state genX(clip_state) = {
1320 .dirty = {
1321 .mesa = _NEW_TRANSFORM |
1322 _NEW_VIEWPORT,
1323 .brw = BRW_NEW_BATCH |
1324 BRW_NEW_BLORP |
1325 BRW_NEW_CLIP_PROG_DATA |
1326 BRW_NEW_PUSH_CONSTANT_ALLOCATION |
1327 BRW_NEW_PROGRAM_CACHE |
1328 BRW_NEW_URB_FENCE,
1329 },
1330 .emit = genX(upload_clip_state),
1331 };
1332
1333 #else
1334
1335 static void
1336 genX(upload_clip_state)(struct brw_context *brw)
1337 {
1338 struct gl_context *ctx = &brw->ctx;
1339
1340 /* _NEW_BUFFERS */
1341 struct gl_framebuffer *fb = ctx->DrawBuffer;
1342
1343 /* BRW_NEW_FS_PROG_DATA */
1344 struct brw_wm_prog_data *wm_prog_data =
1345 brw_wm_prog_data(brw->wm.base.prog_data);
1346
1347 brw_batch_emit(brw, GENX(3DSTATE_CLIP), clip) {
1348 clip.StatisticsEnable = !brw->meta_in_progress;
1349
1350 if (wm_prog_data->barycentric_interp_modes &
1351 BRW_BARYCENTRIC_NONPERSPECTIVE_BITS)
1352 clip.NonPerspectiveBarycentricEnable = true;
1353
1354 #if GEN_GEN >= 7
1355 clip.EarlyCullEnable = true;
1356 #endif
1357
1358 #if GEN_GEN == 7
1359 clip.FrontWinding = brw->polygon_front_bit == _mesa_is_user_fbo(fb);
1360
1361 if (ctx->Polygon.CullFlag) {
1362 switch (ctx->Polygon.CullFaceMode) {
1363 case GL_FRONT:
1364 clip.CullMode = CULLMODE_FRONT;
1365 break;
1366 case GL_BACK:
1367 clip.CullMode = CULLMODE_BACK;
1368 break;
1369 case GL_FRONT_AND_BACK:
1370 clip.CullMode = CULLMODE_BOTH;
1371 break;
1372 default:
1373 unreachable("Should not get here: invalid CullFlag");
1374 }
1375 } else {
1376 clip.CullMode = CULLMODE_NONE;
1377 }
1378 #endif
1379
1380 #if GEN_GEN < 8
1381 clip.UserClipDistanceCullTestEnableBitmask =
1382 brw_vue_prog_data(brw->vs.base.prog_data)->cull_distance_mask;
1383
1384 clip.ViewportZClipTestEnable = !ctx->Transform.DepthClamp;
1385 #endif
1386
1387 /* _NEW_LIGHT */
1388 if (ctx->Light.ProvokingVertex == GL_FIRST_VERTEX_CONVENTION) {
1389 clip.TriangleStripListProvokingVertexSelect = 0;
1390 clip.TriangleFanProvokingVertexSelect = 1;
1391 clip.LineStripListProvokingVertexSelect = 0;
1392 } else {
1393 clip.TriangleStripListProvokingVertexSelect = 2;
1394 clip.TriangleFanProvokingVertexSelect = 2;
1395 clip.LineStripListProvokingVertexSelect = 1;
1396 }
1397
1398 /* _NEW_TRANSFORM */
1399 clip.UserClipDistanceClipTestEnableBitmask =
1400 ctx->Transform.ClipPlanesEnabled;
1401
1402 #if GEN_GEN >= 8
1403 clip.ForceUserClipDistanceClipTestEnableBitmask = true;
1404 #endif
1405
1406 if (ctx->Transform.ClipDepthMode == GL_ZERO_TO_ONE)
1407 clip.APIMode = APIMODE_D3D;
1408 else
1409 clip.APIMode = APIMODE_OGL;
1410
1411 clip.GuardbandClipTestEnable = true;
1412
1413 /* BRW_NEW_VIEWPORT_COUNT */
1414 const unsigned viewport_count = brw->clip.viewport_count;
1415
1416 if (ctx->RasterDiscard) {
1417 clip.ClipMode = CLIPMODE_REJECT_ALL;
1418 #if GEN_GEN == 6
1419 perf_debug("Rasterizer discard is currently implemented via the "
1420 "clipper; having the GS not write primitives would "
1421 "likely be faster.\n");
1422 #endif
1423 } else {
1424 clip.ClipMode = CLIPMODE_NORMAL;
1425 }
1426
1427 clip.ClipEnable = true;
1428
1429 /* _NEW_POLYGON,
1430 * BRW_NEW_GEOMETRY_PROGRAM | BRW_NEW_TES_PROG_DATA | BRW_NEW_PRIMITIVE
1431 */
1432 if (!brw_is_drawing_points(brw) && !brw_is_drawing_lines(brw))
1433 clip.ViewportXYClipTestEnable = true;
1434
1435 clip.MinimumPointWidth = 0.125;
1436 clip.MaximumPointWidth = 255.875;
1437 clip.MaximumVPIndex = viewport_count - 1;
1438 if (_mesa_geometric_layers(fb) == 0)
1439 clip.ForceZeroRTAIndexEnable = true;
1440 }
1441 }
1442
1443 static const struct brw_tracked_state genX(clip_state) = {
1444 .dirty = {
1445 .mesa = _NEW_BUFFERS |
1446 _NEW_LIGHT |
1447 _NEW_POLYGON |
1448 _NEW_TRANSFORM,
1449 .brw = BRW_NEW_BLORP |
1450 BRW_NEW_CONTEXT |
1451 BRW_NEW_FS_PROG_DATA |
1452 BRW_NEW_GS_PROG_DATA |
1453 BRW_NEW_VS_PROG_DATA |
1454 BRW_NEW_META_IN_PROGRESS |
1455 BRW_NEW_PRIMITIVE |
1456 BRW_NEW_RASTERIZER_DISCARD |
1457 BRW_NEW_TES_PROG_DATA |
1458 BRW_NEW_VIEWPORT_COUNT,
1459 },
1460 .emit = genX(upload_clip_state),
1461 };
1462 #endif
1463
1464 /* ---------------------------------------------------------------------- */
1465
1466 static void
1467 genX(upload_sf)(struct brw_context *brw)
1468 {
1469 struct gl_context *ctx = &brw->ctx;
1470 float point_size;
1471
1472 #if GEN_GEN <= 7
1473 /* _NEW_BUFFERS */
1474 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
1475 UNUSED const bool multisampled_fbo =
1476 _mesa_geometric_samples(ctx->DrawBuffer) > 1;
1477 #endif
1478
1479 #if GEN_GEN < 6
1480 const struct brw_sf_prog_data *sf_prog_data = brw->sf.prog_data;
1481
1482 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
1483
1484 brw_state_emit(brw, GENX(SF_STATE), 64, &brw->sf.state_offset, sf) {
1485 sf.KernelStartPointer = KSP(brw, brw->sf.prog_offset);
1486 sf.FloatingPointMode = FLOATING_POINT_MODE_Alternate;
1487 sf.GRFRegisterCount = DIV_ROUND_UP(sf_prog_data->total_grf, 16) - 1;
1488 sf.DispatchGRFStartRegisterForURBData = 3;
1489 sf.VertexURBEntryReadOffset = BRW_SF_URB_ENTRY_READ_OFFSET;
1490 sf.VertexURBEntryReadLength = sf_prog_data->urb_read_length;
1491 sf.NumberofURBEntries = brw->urb.nr_sf_entries;
1492 sf.URBEntryAllocationSize = brw->urb.sfsize - 1;
1493
1494 /* STATE_PREFETCH command description describes this state as being
1495 * something loaded through the GPE (L2 ISC), so it's INSTRUCTION
1496 * domain.
1497 */
1498 sf.SetupViewportStateOffset =
1499 ro_bo(brw->batch.state_bo, brw->sf.vp_offset);
1500
1501 sf.PointRasterizationRule = RASTRULE_UPPER_RIGHT;
1502
1503 /* sf.ConstantURBEntryReadLength = stage_prog_data->curb_read_length; */
1504 /* sf.ConstantURBEntryReadOffset = brw->curbe.vs_start * 2; */
1505
1506 sf.MaximumNumberofThreads =
1507 MIN2(GEN_GEN == 5 ? 48 : 24, brw->urb.nr_sf_entries) - 1;
1508
1509 sf.SpritePointEnable = ctx->Point.PointSprite;
1510
1511 sf.DestinationOriginHorizontalBias = 0.5;
1512 sf.DestinationOriginVerticalBias = 0.5;
1513 #else
1514 brw_batch_emit(brw, GENX(3DSTATE_SF), sf) {
1515 sf.StatisticsEnable = true;
1516 #endif
1517 sf.ViewportTransformEnable = true;
1518
1519 #if GEN_GEN == 7
1520 /* _NEW_BUFFERS */
1521 sf.DepthBufferSurfaceFormat = brw_depthbuffer_format(brw);
1522 #endif
1523
1524 #if GEN_GEN <= 7
1525 /* _NEW_POLYGON */
1526 sf.FrontWinding = brw->polygon_front_bit == render_to_fbo;
1527 #if GEN_GEN >= 6
1528 sf.GlobalDepthOffsetEnableSolid = ctx->Polygon.OffsetFill;
1529 sf.GlobalDepthOffsetEnableWireframe = ctx->Polygon.OffsetLine;
1530 sf.GlobalDepthOffsetEnablePoint = ctx->Polygon.OffsetPoint;
1531
1532 switch (ctx->Polygon.FrontMode) {
1533 case GL_FILL:
1534 sf.FrontFaceFillMode = FILL_MODE_SOLID;
1535 break;
1536 case GL_LINE:
1537 sf.FrontFaceFillMode = FILL_MODE_WIREFRAME;
1538 break;
1539 case GL_POINT:
1540 sf.FrontFaceFillMode = FILL_MODE_POINT;
1541 break;
1542 default:
1543 unreachable("not reached");
1544 }
1545
1546 switch (ctx->Polygon.BackMode) {
1547 case GL_FILL:
1548 sf.BackFaceFillMode = FILL_MODE_SOLID;
1549 break;
1550 case GL_LINE:
1551 sf.BackFaceFillMode = FILL_MODE_WIREFRAME;
1552 break;
1553 case GL_POINT:
1554 sf.BackFaceFillMode = FILL_MODE_POINT;
1555 break;
1556 default:
1557 unreachable("not reached");
1558 }
1559
1560 if (multisampled_fbo && ctx->Multisample.Enabled)
1561 sf.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
1562
1563 sf.GlobalDepthOffsetConstant = ctx->Polygon.OffsetUnits * 2;
1564 sf.GlobalDepthOffsetScale = ctx->Polygon.OffsetFactor;
1565 sf.GlobalDepthOffsetClamp = ctx->Polygon.OffsetClamp;
1566 #endif
1567
1568 sf.ScissorRectangleEnable = true;
1569
1570 if (ctx->Polygon.CullFlag) {
1571 switch (ctx->Polygon.CullFaceMode) {
1572 case GL_FRONT:
1573 sf.CullMode = CULLMODE_FRONT;
1574 break;
1575 case GL_BACK:
1576 sf.CullMode = CULLMODE_BACK;
1577 break;
1578 case GL_FRONT_AND_BACK:
1579 sf.CullMode = CULLMODE_BOTH;
1580 break;
1581 default:
1582 unreachable("not reached");
1583 }
1584 } else {
1585 sf.CullMode = CULLMODE_NONE;
1586 }
1587
1588 #if GEN_IS_HASWELL
1589 sf.LineStippleEnable = ctx->Line.StippleFlag;
1590 #endif
1591
1592 #endif
1593
1594 /* _NEW_LINE */
1595 #if GEN_GEN == 8
1596 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1597
1598 if (devinfo->is_cherryview)
1599 sf.CHVLineWidth = brw_get_line_width(brw);
1600 else
1601 sf.LineWidth = brw_get_line_width(brw);
1602 #else
1603 sf.LineWidth = brw_get_line_width(brw);
1604 #endif
1605
1606 if (ctx->Line.SmoothFlag) {
1607 sf.LineEndCapAntialiasingRegionWidth = _10pixels;
1608 #if GEN_GEN <= 7
1609 sf.AntiAliasingEnable = true;
1610 #endif
1611 }
1612
1613 /* _NEW_POINT - Clamp to ARB_point_parameters user limits */
1614 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
1615 /* Clamp to the hardware limits */
1616 sf.PointWidth = CLAMP(point_size, 0.125f, 255.875f);
1617
1618 /* _NEW_PROGRAM | _NEW_POINT, BRW_NEW_VUE_MAP_GEOM_OUT */
1619 if (use_state_point_size(brw))
1620 sf.PointWidthSource = State;
1621
1622 #if GEN_GEN >= 8
1623 /* _NEW_POINT | _NEW_MULTISAMPLE */
1624 if ((ctx->Point.SmoothFlag || _mesa_is_multisample_enabled(ctx)) &&
1625 !ctx->Point.PointSprite)
1626 sf.SmoothPointEnable = true;
1627 #endif
1628
1629 #if GEN_IS_G4X || GEN_GEN >= 5
1630 sf.AALineDistanceMode = AALINEDISTANCE_TRUE;
1631 #endif
1632
1633 /* _NEW_LIGHT */
1634 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION) {
1635 sf.TriangleStripListProvokingVertexSelect = 2;
1636 sf.TriangleFanProvokingVertexSelect = 2;
1637 sf.LineStripListProvokingVertexSelect = 1;
1638 } else {
1639 sf.TriangleFanProvokingVertexSelect = 1;
1640 }
1641
1642 #if GEN_GEN == 6
1643 /* BRW_NEW_FS_PROG_DATA */
1644 const struct brw_wm_prog_data *wm_prog_data =
1645 brw_wm_prog_data(brw->wm.base.prog_data);
1646
1647 sf.AttributeSwizzleEnable = true;
1648 sf.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
1649
1650 /*
1651 * Window coordinates in an FBO are inverted, which means point
1652 * sprite origin must be inverted, too.
1653 */
1654 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo) {
1655 sf.PointSpriteTextureCoordinateOrigin = LOWERLEFT;
1656 } else {
1657 sf.PointSpriteTextureCoordinateOrigin = UPPERLEFT;
1658 }
1659
1660 /* BRW_NEW_VUE_MAP_GEOM_OUT | BRW_NEW_FRAGMENT_PROGRAM |
1661 * _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM | BRW_NEW_FS_PROG_DATA
1662 */
1663 uint32_t urb_entry_read_length;
1664 uint32_t urb_entry_read_offset;
1665 uint32_t point_sprite_enables;
1666 genX(calculate_attr_overrides)(brw, sf.Attribute, &point_sprite_enables,
1667 &urb_entry_read_length,
1668 &urb_entry_read_offset);
1669 sf.VertexURBEntryReadLength = urb_entry_read_length;
1670 sf.VertexURBEntryReadOffset = urb_entry_read_offset;
1671 sf.PointSpriteTextureCoordinateEnable = point_sprite_enables;
1672 sf.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
1673 #endif
1674 }
1675 }
1676
1677 static const struct brw_tracked_state genX(sf_state) = {
1678 .dirty = {
1679 .mesa = _NEW_LIGHT |
1680 _NEW_LINE |
1681 _NEW_POINT |
1682 _NEW_PROGRAM |
1683 (GEN_GEN >= 6 ? _NEW_MULTISAMPLE : 0) |
1684 (GEN_GEN <= 7 ? _NEW_BUFFERS | _NEW_POLYGON : 0),
1685 .brw = BRW_NEW_BLORP |
1686 BRW_NEW_VUE_MAP_GEOM_OUT |
1687 (GEN_GEN <= 5 ? BRW_NEW_BATCH |
1688 BRW_NEW_PROGRAM_CACHE |
1689 BRW_NEW_SF_PROG_DATA |
1690 BRW_NEW_SF_VP |
1691 BRW_NEW_URB_FENCE
1692 : 0) |
1693 (GEN_GEN >= 6 ? BRW_NEW_CONTEXT : 0) |
1694 (GEN_GEN >= 6 && GEN_GEN <= 7 ?
1695 BRW_NEW_GS_PROG_DATA |
1696 BRW_NEW_PRIMITIVE |
1697 BRW_NEW_TES_PROG_DATA
1698 : 0) |
1699 (GEN_GEN == 6 ? BRW_NEW_FS_PROG_DATA |
1700 BRW_NEW_FRAGMENT_PROGRAM
1701 : 0),
1702 },
1703 .emit = genX(upload_sf),
1704 };
1705
1706 /* ---------------------------------------------------------------------- */
1707
1708 static bool
1709 brw_color_buffer_write_enabled(struct brw_context *brw)
1710 {
1711 struct gl_context *ctx = &brw->ctx;
1712 /* BRW_NEW_FRAGMENT_PROGRAM */
1713 const struct gl_program *fp = brw->programs[MESA_SHADER_FRAGMENT];
1714 unsigned i;
1715
1716 /* _NEW_BUFFERS */
1717 for (i = 0; i < ctx->DrawBuffer->_NumColorDrawBuffers; i++) {
1718 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[i];
1719 uint64_t outputs_written = fp->info.outputs_written;
1720
1721 /* _NEW_COLOR */
1722 if (rb && (outputs_written & BITFIELD64_BIT(FRAG_RESULT_COLOR) ||
1723 outputs_written & BITFIELD64_BIT(FRAG_RESULT_DATA0 + i)) &&
1724 (ctx->Color.ColorMask[i][0] ||
1725 ctx->Color.ColorMask[i][1] ||
1726 ctx->Color.ColorMask[i][2] ||
1727 ctx->Color.ColorMask[i][3])) {
1728 return true;
1729 }
1730 }
1731
1732 return false;
1733 }
1734
1735 static void
1736 genX(upload_wm)(struct brw_context *brw)
1737 {
1738 struct gl_context *ctx = &brw->ctx;
1739
1740 /* BRW_NEW_FS_PROG_DATA */
1741 const struct brw_wm_prog_data *wm_prog_data =
1742 brw_wm_prog_data(brw->wm.base.prog_data);
1743
1744 UNUSED bool writes_depth =
1745 wm_prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF;
1746 UNUSED struct brw_stage_state *stage_state = &brw->wm.base;
1747 UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
1748
1749 #if GEN_GEN == 6
1750 /* We can't fold this into gen6_upload_wm_push_constants(), because
1751 * according to the SNB PRM, vol 2 part 1 section 7.2.2
1752 * (3DSTATE_CONSTANT_PS [DevSNB]):
1753 *
1754 * "[DevSNB]: This packet must be followed by WM_STATE."
1755 */
1756 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_PS), wmcp) {
1757 if (wm_prog_data->base.nr_params != 0) {
1758 wmcp.Buffer0Valid = true;
1759 /* Pointer to the WM constant buffer. Covered by the set of
1760 * state flags from gen6_upload_wm_push_constants.
1761 */
1762 wmcp.PointertoPSConstantBuffer0 = stage_state->push_const_offset;
1763 wmcp.PSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
1764 }
1765 }
1766 #endif
1767
1768 #if GEN_GEN >= 6
1769 brw_batch_emit(brw, GENX(3DSTATE_WM), wm) {
1770 wm.LineAntialiasingRegionWidth = _10pixels;
1771 wm.LineEndCapAntialiasingRegionWidth = _05pixels;
1772
1773 wm.PointRasterizationRule = RASTRULE_UPPER_RIGHT;
1774 wm.BarycentricInterpolationMode = wm_prog_data->barycentric_interp_modes;
1775 #else
1776 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
1777 brw_state_emit(brw, GENX(WM_STATE), 64, &stage_state->state_offset, wm) {
1778 if (wm_prog_data->dispatch_8 && wm_prog_data->dispatch_16) {
1779 /* These two fields should be the same pre-gen6, which is why we
1780 * only have one hardware field to program for both dispatch
1781 * widths.
1782 */
1783 assert(wm_prog_data->base.dispatch_grf_start_reg ==
1784 wm_prog_data->dispatch_grf_start_reg_2);
1785 }
1786
1787 if (wm_prog_data->dispatch_8 || wm_prog_data->dispatch_16)
1788 wm.GRFRegisterCount0 = wm_prog_data->reg_blocks_0;
1789
1790 if (stage_state->sampler_count)
1791 wm.SamplerStatePointer =
1792 ro_bo(brw->batch.state_bo, stage_state->sampler_offset);
1793 #if GEN_GEN == 5
1794 if (wm_prog_data->prog_offset_2)
1795 wm.GRFRegisterCount2 = wm_prog_data->reg_blocks_2;
1796 #endif
1797
1798 wm.SetupURBEntryReadLength = wm_prog_data->num_varying_inputs * 2;
1799 wm.ConstantURBEntryReadLength = wm_prog_data->base.curb_read_length;
1800 /* BRW_NEW_PUSH_CONSTANT_ALLOCATION */
1801 wm.ConstantURBEntryReadOffset = brw->curbe.wm_start * 2;
1802 wm.EarlyDepthTestEnable = true;
1803 wm.LineAntialiasingRegionWidth = _05pixels;
1804 wm.LineEndCapAntialiasingRegionWidth = _10pixels;
1805
1806 /* _NEW_POLYGON */
1807 if (ctx->Polygon.OffsetFill) {
1808 wm.GlobalDepthOffsetEnable = true;
1809 /* Something weird going on with legacy_global_depth_bias,
1810 * offset_constant, scaling and MRD. This value passes glean
1811 * but gives some odd results elsewere (eg. the
1812 * quad-offset-units test).
1813 */
1814 wm.GlobalDepthOffsetConstant = ctx->Polygon.OffsetUnits * 2;
1815
1816 /* This is the only value that passes glean:
1817 */
1818 wm.GlobalDepthOffsetScale = ctx->Polygon.OffsetFactor;
1819 }
1820
1821 wm.DepthCoefficientURBReadOffset = 1;
1822 #endif
1823
1824 /* BRW_NEW_STATS_WM */
1825 wm.StatisticsEnable = GEN_GEN >= 6 || brw->stats_wm;
1826
1827 #if GEN_GEN < 7
1828 if (wm_prog_data->base.use_alt_mode)
1829 wm.FloatingPointMode = FLOATING_POINT_MODE_Alternate;
1830
1831 wm.SamplerCount = GEN_GEN == 5 ?
1832 0 : DIV_ROUND_UP(stage_state->sampler_count, 4);
1833
1834 wm.BindingTableEntryCount =
1835 wm_prog_data->base.binding_table.size_bytes / 4;
1836 wm.MaximumNumberofThreads = devinfo->max_wm_threads - 1;
1837 wm._8PixelDispatchEnable = wm_prog_data->dispatch_8;
1838 wm._16PixelDispatchEnable = wm_prog_data->dispatch_16;
1839 wm.DispatchGRFStartRegisterForConstantSetupData0 =
1840 wm_prog_data->base.dispatch_grf_start_reg;
1841 if (GEN_GEN == 6 ||
1842 wm_prog_data->dispatch_8 || wm_prog_data->dispatch_16) {
1843 wm.KernelStartPointer0 = KSP(brw, stage_state->prog_offset);
1844 }
1845
1846 #if GEN_GEN >= 5
1847 if (GEN_GEN == 6 || wm_prog_data->prog_offset_2) {
1848 wm.KernelStartPointer2 =
1849 KSP(brw, stage_state->prog_offset + wm_prog_data->prog_offset_2);
1850 }
1851 #endif
1852
1853 #if GEN_GEN == 6
1854 wm.DualSourceBlendEnable =
1855 wm_prog_data->dual_src_blend && (ctx->Color.BlendEnabled & 1) &&
1856 ctx->Color.Blend[0]._UsesDualSrc;
1857 wm.oMaskPresenttoRenderTarget = wm_prog_data->uses_omask;
1858 wm.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
1859
1860 /* From the SNB PRM, volume 2 part 1, page 281:
1861 * "If the PS kernel does not need the Position XY Offsets
1862 * to compute a Position XY value, then this field should be
1863 * programmed to POSOFFSET_NONE."
1864 *
1865 * "SW Recommendation: If the PS kernel needs the Position Offsets
1866 * to compute a Position XY value, this field should match Position
1867 * ZW Interpolation Mode to ensure a consistent position.xyzw
1868 * computation."
1869 * We only require XY sample offsets. So, this recommendation doesn't
1870 * look useful at the moment. We might need this in future.
1871 */
1872 if (wm_prog_data->uses_pos_offset)
1873 wm.PositionXYOffsetSelect = POSOFFSET_SAMPLE;
1874 else
1875 wm.PositionXYOffsetSelect = POSOFFSET_NONE;
1876
1877 wm.DispatchGRFStartRegisterForConstantSetupData2 =
1878 wm_prog_data->dispatch_grf_start_reg_2;
1879 #endif
1880
1881 if (wm_prog_data->base.total_scratch) {
1882 wm.ScratchSpaceBasePointer = rw_bo(stage_state->scratch_bo, 0);
1883 wm.PerThreadScratchSpace =
1884 ffs(stage_state->per_thread_scratch) - 11;
1885 }
1886
1887 wm.PixelShaderComputedDepth = writes_depth;
1888 #endif
1889
1890 /* _NEW_LINE */
1891 wm.LineStippleEnable = ctx->Line.StippleFlag;
1892
1893 /* _NEW_POLYGON */
1894 wm.PolygonStippleEnable = ctx->Polygon.StippleFlag;
1895
1896 #if GEN_GEN < 8
1897
1898 #if GEN_GEN >= 6
1899 wm.PixelShaderUsesSourceW = wm_prog_data->uses_src_w;
1900
1901 /* _NEW_BUFFERS */
1902 const bool multisampled_fbo = _mesa_geometric_samples(ctx->DrawBuffer) > 1;
1903
1904 if (multisampled_fbo) {
1905 /* _NEW_MULTISAMPLE */
1906 if (ctx->Multisample.Enabled)
1907 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
1908 else
1909 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
1910
1911 if (wm_prog_data->persample_dispatch)
1912 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
1913 else
1914 wm.MultisampleDispatchMode = MSDISPMODE_PERPIXEL;
1915 } else {
1916 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
1917 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
1918 }
1919 #endif
1920 wm.PixelShaderUsesSourceDepth = wm_prog_data->uses_src_depth;
1921 if (wm_prog_data->uses_kill ||
1922 _mesa_is_alpha_test_enabled(ctx) ||
1923 _mesa_is_alpha_to_coverage_enabled(ctx) ||
1924 (GEN_GEN >= 6 && wm_prog_data->uses_omask)) {
1925 wm.PixelShaderKillsPixel = true;
1926 }
1927
1928 /* _NEW_BUFFERS | _NEW_COLOR */
1929 if (brw_color_buffer_write_enabled(brw) || writes_depth ||
1930 wm.PixelShaderKillsPixel ||
1931 (GEN_GEN >= 6 && wm_prog_data->has_side_effects)) {
1932 wm.ThreadDispatchEnable = true;
1933 }
1934
1935 #if GEN_GEN >= 7
1936 wm.PixelShaderComputedDepthMode = wm_prog_data->computed_depth_mode;
1937 wm.PixelShaderUsesInputCoverageMask = wm_prog_data->uses_sample_mask;
1938 #endif
1939
1940 /* The "UAV access enable" bits are unnecessary on HSW because they only
1941 * seem to have an effect on the HW-assisted coherency mechanism which we
1942 * don't need, and the rasterization-related UAV_ONLY flag and the
1943 * DISPATCH_ENABLE bit can be set independently from it.
1944 * C.f. gen8_upload_ps_extra().
1945 *
1946 * BRW_NEW_FRAGMENT_PROGRAM | BRW_NEW_FS_PROG_DATA | _NEW_BUFFERS |
1947 * _NEW_COLOR
1948 */
1949 #if GEN_IS_HASWELL
1950 if (!(brw_color_buffer_write_enabled(brw) || writes_depth) &&
1951 wm_prog_data->has_side_effects)
1952 wm.PSUAVonly = ON;
1953 #endif
1954 #endif
1955
1956 #if GEN_GEN >= 7
1957 /* BRW_NEW_FS_PROG_DATA */
1958 if (wm_prog_data->early_fragment_tests)
1959 wm.EarlyDepthStencilControl = EDSC_PREPS;
1960 else if (wm_prog_data->has_side_effects)
1961 wm.EarlyDepthStencilControl = EDSC_PSEXEC;
1962 #endif
1963 }
1964
1965 #if GEN_GEN <= 5
1966 if (brw->wm.offset_clamp != ctx->Polygon.OffsetClamp) {
1967 brw_batch_emit(brw, GENX(3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP), clamp) {
1968 clamp.GlobalDepthOffsetClamp = ctx->Polygon.OffsetClamp;
1969 }
1970
1971 brw->wm.offset_clamp = ctx->Polygon.OffsetClamp;
1972 }
1973 #endif
1974 }
1975
1976 static const struct brw_tracked_state genX(wm_state) = {
1977 .dirty = {
1978 .mesa = _NEW_LINE |
1979 _NEW_POLYGON |
1980 (GEN_GEN < 8 ? _NEW_BUFFERS |
1981 _NEW_COLOR :
1982 0) |
1983 (GEN_GEN == 6 ? _NEW_PROGRAM_CONSTANTS : 0) |
1984 (GEN_GEN < 6 ? _NEW_POLYGONSTIPPLE : 0) |
1985 (GEN_GEN < 8 && GEN_GEN >= 6 ? _NEW_MULTISAMPLE : 0),
1986 .brw = BRW_NEW_BLORP |
1987 BRW_NEW_FS_PROG_DATA |
1988 (GEN_GEN < 6 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION |
1989 BRW_NEW_FRAGMENT_PROGRAM |
1990 BRW_NEW_PROGRAM_CACHE |
1991 BRW_NEW_SAMPLER_STATE_TABLE |
1992 BRW_NEW_STATS_WM
1993 : 0) |
1994 (GEN_GEN < 7 ? BRW_NEW_BATCH : BRW_NEW_CONTEXT),
1995 },
1996 .emit = genX(upload_wm),
1997 };
1998
1999 /* ---------------------------------------------------------------------- */
2000
2001 #define INIT_THREAD_DISPATCH_FIELDS(pkt, prefix) \
2002 pkt.KernelStartPointer = KSP(brw, stage_state->prog_offset); \
2003 pkt.SamplerCount = \
2004 DIV_ROUND_UP(CLAMP(stage_state->sampler_count, 0, 16), 4); \
2005 pkt.BindingTableEntryCount = \
2006 stage_prog_data->binding_table.size_bytes / 4; \
2007 pkt.FloatingPointMode = stage_prog_data->use_alt_mode; \
2008 \
2009 if (stage_prog_data->total_scratch) { \
2010 pkt.ScratchSpaceBasePointer = rw_bo(stage_state->scratch_bo, 0); \
2011 pkt.PerThreadScratchSpace = \
2012 ffs(stage_state->per_thread_scratch) - 11; \
2013 } \
2014 \
2015 pkt.DispatchGRFStartRegisterForURBData = \
2016 stage_prog_data->dispatch_grf_start_reg; \
2017 pkt.prefix##URBEntryReadLength = vue_prog_data->urb_read_length; \
2018 pkt.prefix##URBEntryReadOffset = 0; \
2019 \
2020 pkt.StatisticsEnable = true; \
2021 pkt.Enable = true;
2022
2023 static void
2024 genX(upload_vs_state)(struct brw_context *brw)
2025 {
2026 UNUSED struct gl_context *ctx = &brw->ctx;
2027 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2028 struct brw_stage_state *stage_state = &brw->vs.base;
2029
2030 /* BRW_NEW_VS_PROG_DATA */
2031 const struct brw_vue_prog_data *vue_prog_data =
2032 brw_vue_prog_data(brw->vs.base.prog_data);
2033 const struct brw_stage_prog_data *stage_prog_data = &vue_prog_data->base;
2034
2035 assert(vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8 ||
2036 vue_prog_data->dispatch_mode == DISPATCH_MODE_4X2_DUAL_OBJECT);
2037
2038 #if GEN_GEN == 6
2039 /* From the BSpec, 3D Pipeline > Geometry > Vertex Shader > State,
2040 * 3DSTATE_VS, Dword 5.0 "VS Function Enable":
2041 *
2042 * [DevSNB] A pipeline flush must be programmed prior to a 3DSTATE_VS
2043 * command that causes the VS Function Enable to toggle. Pipeline
2044 * flush can be executed by sending a PIPE_CONTROL command with CS
2045 * stall bit set and a post sync operation.
2046 *
2047 * We've already done such a flush at the start of state upload, so we
2048 * don't need to do another one here.
2049 */
2050 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_VS), cvs) {
2051 if (stage_state->push_const_size != 0) {
2052 cvs.Buffer0Valid = true;
2053 cvs.PointertoVSConstantBuffer0 = stage_state->push_const_offset;
2054 cvs.VSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
2055 }
2056 }
2057 #endif
2058
2059 if (GEN_GEN == 7 && devinfo->is_ivybridge)
2060 gen7_emit_vs_workaround_flush(brw);
2061
2062 #if GEN_GEN >= 6
2063 brw_batch_emit(brw, GENX(3DSTATE_VS), vs) {
2064 #else
2065 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
2066 brw_state_emit(brw, GENX(VS_STATE), 32, &stage_state->state_offset, vs) {
2067 #endif
2068 INIT_THREAD_DISPATCH_FIELDS(vs, Vertex);
2069
2070 vs.MaximumNumberofThreads = devinfo->max_vs_threads - 1;
2071
2072 #if GEN_GEN < 6
2073 vs.GRFRegisterCount = DIV_ROUND_UP(vue_prog_data->total_grf, 16) - 1;
2074 vs.ConstantURBEntryReadLength = stage_prog_data->curb_read_length;
2075 vs.ConstantURBEntryReadOffset = brw->curbe.vs_start * 2;
2076
2077 vs.NumberofURBEntries = brw->urb.nr_vs_entries >> (GEN_GEN == 5 ? 2 : 0);
2078 vs.URBEntryAllocationSize = brw->urb.vsize - 1;
2079
2080 vs.MaximumNumberofThreads =
2081 CLAMP(brw->urb.nr_vs_entries / 2, 1, devinfo->max_vs_threads) - 1;
2082
2083 vs.StatisticsEnable = false;
2084 vs.SamplerStatePointer =
2085 ro_bo(brw->batch.state_bo, stage_state->sampler_offset);
2086 #endif
2087
2088 #if GEN_GEN == 5
2089 /* Force single program flow on Ironlake. We cannot reliably get
2090 * all applications working without it. See:
2091 * https://bugs.freedesktop.org/show_bug.cgi?id=29172
2092 *
2093 * The most notable and reliably failing application is the Humus
2094 * demo "CelShading"
2095 */
2096 vs.SingleProgramFlow = true;
2097 vs.SamplerCount = 0; /* hardware requirement */
2098 #endif
2099
2100 #if GEN_GEN >= 8
2101 vs.SIMD8DispatchEnable =
2102 vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8;
2103
2104 vs.UserClipDistanceCullTestEnableBitmask =
2105 vue_prog_data->cull_distance_mask;
2106 #endif
2107 }
2108
2109 #if GEN_GEN == 6
2110 /* Based on my reading of the simulator, the VS constants don't get
2111 * pulled into the VS FF unit until an appropriate pipeline flush
2112 * happens, and instead the 3DSTATE_CONSTANT_VS packet just adds
2113 * references to them into a little FIFO. The flushes are common,
2114 * but don't reliably happen between this and a 3DPRIMITIVE, causing
2115 * the primitive to use the wrong constants. Then the FIFO
2116 * containing the constant setup gets added to again on the next
2117 * constants change, and eventually when a flush does happen the
2118 * unit is overwhelmed by constant changes and dies.
2119 *
2120 * To avoid this, send a PIPE_CONTROL down the line that will
2121 * update the unit immediately loading the constants. The flush
2122 * type bits here were those set by the STATE_BASE_ADDRESS whose
2123 * move in a82a43e8d99e1715dd11c9c091b5ab734079b6a6 triggered the
2124 * bug reports that led to this workaround, and may be more than
2125 * what is strictly required to avoid the issue.
2126 */
2127 brw_emit_pipe_control_flush(brw,
2128 PIPE_CONTROL_DEPTH_STALL |
2129 PIPE_CONTROL_INSTRUCTION_INVALIDATE |
2130 PIPE_CONTROL_STATE_CACHE_INVALIDATE);
2131 #endif
2132 }
2133
2134 static const struct brw_tracked_state genX(vs_state) = {
2135 .dirty = {
2136 .mesa = (GEN_GEN == 6 ? (_NEW_PROGRAM_CONSTANTS | _NEW_TRANSFORM) : 0),
2137 .brw = BRW_NEW_BATCH |
2138 BRW_NEW_BLORP |
2139 BRW_NEW_CONTEXT |
2140 BRW_NEW_VS_PROG_DATA |
2141 (GEN_GEN == 6 ? BRW_NEW_VERTEX_PROGRAM : 0) |
2142 (GEN_GEN <= 5 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION |
2143 BRW_NEW_PROGRAM_CACHE |
2144 BRW_NEW_SAMPLER_STATE_TABLE |
2145 BRW_NEW_URB_FENCE
2146 : 0),
2147 },
2148 .emit = genX(upload_vs_state),
2149 };
2150
2151 /* ---------------------------------------------------------------------- */
2152
2153 static void
2154 genX(upload_cc_viewport)(struct brw_context *brw)
2155 {
2156 struct gl_context *ctx = &brw->ctx;
2157
2158 /* BRW_NEW_VIEWPORT_COUNT */
2159 const unsigned viewport_count = brw->clip.viewport_count;
2160
2161 struct GENX(CC_VIEWPORT) ccv;
2162 uint32_t cc_vp_offset;
2163 uint32_t *cc_map =
2164 brw_state_batch(brw, 4 * GENX(CC_VIEWPORT_length) * viewport_count,
2165 32, &cc_vp_offset);
2166
2167 for (unsigned i = 0; i < viewport_count; i++) {
2168 /* _NEW_VIEWPORT | _NEW_TRANSFORM */
2169 const struct gl_viewport_attrib *vp = &ctx->ViewportArray[i];
2170 if (ctx->Transform.DepthClamp) {
2171 ccv.MinimumDepth = MIN2(vp->Near, vp->Far);
2172 ccv.MaximumDepth = MAX2(vp->Near, vp->Far);
2173 } else {
2174 ccv.MinimumDepth = 0.0;
2175 ccv.MaximumDepth = 1.0;
2176 }
2177 GENX(CC_VIEWPORT_pack)(NULL, cc_map, &ccv);
2178 cc_map += GENX(CC_VIEWPORT_length);
2179 }
2180
2181 #if GEN_GEN >= 7
2182 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), ptr) {
2183 ptr.CCViewportPointer = cc_vp_offset;
2184 }
2185 #elif GEN_GEN == 6
2186 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vp) {
2187 vp.CCViewportStateChange = 1;
2188 vp.PointertoCC_VIEWPORT = cc_vp_offset;
2189 }
2190 #else
2191 brw->cc.vp_offset = cc_vp_offset;
2192 ctx->NewDriverState |= BRW_NEW_CC_VP;
2193 #endif
2194 }
2195
2196 const struct brw_tracked_state genX(cc_vp) = {
2197 .dirty = {
2198 .mesa = _NEW_TRANSFORM |
2199 _NEW_VIEWPORT,
2200 .brw = BRW_NEW_BATCH |
2201 BRW_NEW_BLORP |
2202 BRW_NEW_VIEWPORT_COUNT,
2203 },
2204 .emit = genX(upload_cc_viewport)
2205 };
2206
2207 /* ---------------------------------------------------------------------- */
2208
2209 static void
2210 set_scissor_bits(const struct gl_context *ctx, int i,
2211 bool render_to_fbo, unsigned fb_width, unsigned fb_height,
2212 struct GENX(SCISSOR_RECT) *sc)
2213 {
2214 int bbox[4];
2215
2216 bbox[0] = MAX2(ctx->ViewportArray[i].X, 0);
2217 bbox[1] = MIN2(bbox[0] + ctx->ViewportArray[i].Width, fb_width);
2218 bbox[2] = MAX2(ctx->ViewportArray[i].Y, 0);
2219 bbox[3] = MIN2(bbox[2] + ctx->ViewportArray[i].Height, fb_height);
2220 _mesa_intersect_scissor_bounding_box(ctx, i, bbox);
2221
2222 if (bbox[0] == bbox[1] || bbox[2] == bbox[3]) {
2223 /* If the scissor was out of bounds and got clamped to 0 width/height
2224 * at the bounds, the subtraction of 1 from maximums could produce a
2225 * negative number and thus not clip anything. Instead, just provide
2226 * a min > max scissor inside the bounds, which produces the expected
2227 * no rendering.
2228 */
2229 sc->ScissorRectangleXMin = 1;
2230 sc->ScissorRectangleXMax = 0;
2231 sc->ScissorRectangleYMin = 1;
2232 sc->ScissorRectangleYMax = 0;
2233 } else if (render_to_fbo) {
2234 /* texmemory: Y=0=bottom */
2235 sc->ScissorRectangleXMin = bbox[0];
2236 sc->ScissorRectangleXMax = bbox[1] - 1;
2237 sc->ScissorRectangleYMin = bbox[2];
2238 sc->ScissorRectangleYMax = bbox[3] - 1;
2239 } else {
2240 /* memory: Y=0=top */
2241 sc->ScissorRectangleXMin = bbox[0];
2242 sc->ScissorRectangleXMax = bbox[1] - 1;
2243 sc->ScissorRectangleYMin = fb_height - bbox[3];
2244 sc->ScissorRectangleYMax = fb_height - bbox[2] - 1;
2245 }
2246 }
2247
2248 #if GEN_GEN >= 6
2249 static void
2250 genX(upload_scissor_state)(struct brw_context *brw)
2251 {
2252 struct gl_context *ctx = &brw->ctx;
2253 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
2254 struct GENX(SCISSOR_RECT) scissor;
2255 uint32_t scissor_state_offset;
2256 const unsigned int fb_width = _mesa_geometric_width(ctx->DrawBuffer);
2257 const unsigned int fb_height = _mesa_geometric_height(ctx->DrawBuffer);
2258 uint32_t *scissor_map;
2259
2260 /* BRW_NEW_VIEWPORT_COUNT */
2261 const unsigned viewport_count = brw->clip.viewport_count;
2262
2263 scissor_map = brw_state_batch(
2264 brw, GENX(SCISSOR_RECT_length) * sizeof(uint32_t) * viewport_count,
2265 32, &scissor_state_offset);
2266
2267 /* _NEW_SCISSOR | _NEW_BUFFERS | _NEW_VIEWPORT */
2268
2269 /* The scissor only needs to handle the intersection of drawable and
2270 * scissor rect. Clipping to the boundaries of static shared buffers
2271 * for front/back/depth is covered by looping over cliprects in brw_draw.c.
2272 *
2273 * Note that the hardware's coordinates are inclusive, while Mesa's min is
2274 * inclusive but max is exclusive.
2275 */
2276 for (unsigned i = 0; i < viewport_count; i++) {
2277 set_scissor_bits(ctx, i, render_to_fbo, fb_width, fb_height, &scissor);
2278 GENX(SCISSOR_RECT_pack)(
2279 NULL, scissor_map + i * GENX(SCISSOR_RECT_length), &scissor);
2280 }
2281
2282 brw_batch_emit(brw, GENX(3DSTATE_SCISSOR_STATE_POINTERS), ptr) {
2283 ptr.ScissorRectPointer = scissor_state_offset;
2284 }
2285 }
2286
2287 static const struct brw_tracked_state genX(scissor_state) = {
2288 .dirty = {
2289 .mesa = _NEW_BUFFERS |
2290 _NEW_SCISSOR |
2291 _NEW_VIEWPORT,
2292 .brw = BRW_NEW_BATCH |
2293 BRW_NEW_BLORP |
2294 BRW_NEW_VIEWPORT_COUNT,
2295 },
2296 .emit = genX(upload_scissor_state),
2297 };
2298 #endif
2299
2300 /* ---------------------------------------------------------------------- */
2301
2302 static void
2303 brw_calculate_guardband_size(uint32_t fb_width, uint32_t fb_height,
2304 float m00, float m11, float m30, float m31,
2305 float *xmin, float *xmax,
2306 float *ymin, float *ymax)
2307 {
2308 /* According to the "Vertex X,Y Clamping and Quantization" section of the
2309 * Strips and Fans documentation:
2310 *
2311 * "The vertex X and Y screen-space coordinates are also /clamped/ to the
2312 * fixed-point "guardband" range supported by the rasterization hardware"
2313 *
2314 * and
2315 *
2316 * "In almost all circumstances, if an object’s vertices are actually
2317 * modified by this clamping (i.e., had X or Y coordinates outside of
2318 * the guardband extent the rendered object will not match the intended
2319 * result. Therefore software should take steps to ensure that this does
2320 * not happen - e.g., by clipping objects such that they do not exceed
2321 * these limits after the Drawing Rectangle is applied."
2322 *
2323 * I believe the fundamental restriction is that the rasterizer (in
2324 * the SF/WM stages) have a limit on the number of pixels that can be
2325 * rasterized. We need to ensure any coordinates beyond the rasterizer
2326 * limit are handled by the clipper. So effectively that limit becomes
2327 * the clipper's guardband size.
2328 *
2329 * It goes on to say:
2330 *
2331 * "In addition, in order to be correctly rendered, objects must have a
2332 * screenspace bounding box not exceeding 8K in the X or Y direction.
2333 * This additional restriction must also be comprehended by software,
2334 * i.e., enforced by use of clipping."
2335 *
2336 * This makes no sense. Gen7+ hardware supports 16K render targets,
2337 * and you definitely need to be able to draw polygons that fill the
2338 * surface. Our assumption is that the rasterizer was limited to 8K
2339 * on Sandybridge, which only supports 8K surfaces, and it was actually
2340 * increased to 16K on Ivybridge and later.
2341 *
2342 * So, limit the guardband to 16K on Gen7+ and 8K on Sandybridge.
2343 */
2344 const float gb_size = GEN_GEN >= 7 ? 16384.0f : 8192.0f;
2345
2346 if (m00 != 0 && m11 != 0) {
2347 /* First, we compute the screen-space render area */
2348 const float ss_ra_xmin = MIN3( 0, m30 + m00, m30 - m00);
2349 const float ss_ra_xmax = MAX3( fb_width, m30 + m00, m30 - m00);
2350 const float ss_ra_ymin = MIN3( 0, m31 + m11, m31 - m11);
2351 const float ss_ra_ymax = MAX3(fb_height, m31 + m11, m31 - m11);
2352
2353 /* We want the guardband to be centered on that */
2354 const float ss_gb_xmin = (ss_ra_xmin + ss_ra_xmax) / 2 - gb_size;
2355 const float ss_gb_xmax = (ss_ra_xmin + ss_ra_xmax) / 2 + gb_size;
2356 const float ss_gb_ymin = (ss_ra_ymin + ss_ra_ymax) / 2 - gb_size;
2357 const float ss_gb_ymax = (ss_ra_ymin + ss_ra_ymax) / 2 + gb_size;
2358
2359 /* Now we need it in native device coordinates */
2360 const float ndc_gb_xmin = (ss_gb_xmin - m30) / m00;
2361 const float ndc_gb_xmax = (ss_gb_xmax - m30) / m00;
2362 const float ndc_gb_ymin = (ss_gb_ymin - m31) / m11;
2363 const float ndc_gb_ymax = (ss_gb_ymax - m31) / m11;
2364
2365 /* Thanks to Y-flipping and ORIGIN_UPPER_LEFT, the Y coordinates may be
2366 * flipped upside-down. X should be fine though.
2367 */
2368 assert(ndc_gb_xmin <= ndc_gb_xmax);
2369 *xmin = ndc_gb_xmin;
2370 *xmax = ndc_gb_xmax;
2371 *ymin = MIN2(ndc_gb_ymin, ndc_gb_ymax);
2372 *ymax = MAX2(ndc_gb_ymin, ndc_gb_ymax);
2373 } else {
2374 /* The viewport scales to 0, so nothing will be rendered. */
2375 *xmin = 0.0f;
2376 *xmax = 0.0f;
2377 *ymin = 0.0f;
2378 *ymax = 0.0f;
2379 }
2380 }
2381
2382 static void
2383 genX(upload_sf_clip_viewport)(struct brw_context *brw)
2384 {
2385 struct gl_context *ctx = &brw->ctx;
2386 float y_scale, y_bias;
2387
2388 /* BRW_NEW_VIEWPORT_COUNT */
2389 const unsigned viewport_count = brw->clip.viewport_count;
2390
2391 /* _NEW_BUFFERS */
2392 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
2393 const uint32_t fb_width = (float)_mesa_geometric_width(ctx->DrawBuffer);
2394 const uint32_t fb_height = (float)_mesa_geometric_height(ctx->DrawBuffer);
2395
2396 #if GEN_GEN >= 7
2397 #define clv sfv
2398 struct GENX(SF_CLIP_VIEWPORT) sfv;
2399 uint32_t sf_clip_vp_offset;
2400 uint32_t *sf_clip_map =
2401 brw_state_batch(brw, GENX(SF_CLIP_VIEWPORT_length) * 4 * viewport_count,
2402 64, &sf_clip_vp_offset);
2403 #else
2404 struct GENX(SF_VIEWPORT) sfv;
2405 struct GENX(CLIP_VIEWPORT) clv;
2406 uint32_t sf_vp_offset, clip_vp_offset;
2407 uint32_t *sf_map =
2408 brw_state_batch(brw, GENX(SF_VIEWPORT_length) * 4 * viewport_count,
2409 32, &sf_vp_offset);
2410 uint32_t *clip_map =
2411 brw_state_batch(brw, GENX(CLIP_VIEWPORT_length) * 4 * viewport_count,
2412 32, &clip_vp_offset);
2413 #endif
2414
2415 /* _NEW_BUFFERS */
2416 if (render_to_fbo) {
2417 y_scale = 1.0;
2418 y_bias = 0;
2419 } else {
2420 y_scale = -1.0;
2421 y_bias = (float)fb_height;
2422 }
2423
2424 for (unsigned i = 0; i < brw->clip.viewport_count; i++) {
2425 /* _NEW_VIEWPORT: Guardband Clipping */
2426 float scale[3], translate[3], gb_xmin, gb_xmax, gb_ymin, gb_ymax;
2427 _mesa_get_viewport_xform(ctx, i, scale, translate);
2428
2429 sfv.ViewportMatrixElementm00 = scale[0];
2430 sfv.ViewportMatrixElementm11 = scale[1] * y_scale,
2431 sfv.ViewportMatrixElementm22 = scale[2],
2432 sfv.ViewportMatrixElementm30 = translate[0],
2433 sfv.ViewportMatrixElementm31 = translate[1] * y_scale + y_bias,
2434 sfv.ViewportMatrixElementm32 = translate[2],
2435 brw_calculate_guardband_size(fb_width, fb_height,
2436 sfv.ViewportMatrixElementm00,
2437 sfv.ViewportMatrixElementm11,
2438 sfv.ViewportMatrixElementm30,
2439 sfv.ViewportMatrixElementm31,
2440 &gb_xmin, &gb_xmax, &gb_ymin, &gb_ymax);
2441
2442
2443 clv.XMinClipGuardband = gb_xmin;
2444 clv.XMaxClipGuardband = gb_xmax;
2445 clv.YMinClipGuardband = gb_ymin;
2446 clv.YMaxClipGuardband = gb_ymax;
2447
2448 #if GEN_GEN < 6
2449 set_scissor_bits(ctx, i, render_to_fbo, fb_width, fb_height,
2450 &sfv.ScissorRectangle);
2451 #elif GEN_GEN >= 8
2452 /* _NEW_VIEWPORT | _NEW_BUFFERS: Screen Space Viewport
2453 * The hardware will take the intersection of the drawing rectangle,
2454 * scissor rectangle, and the viewport extents. We don't need to be
2455 * smart, and can therefore just program the viewport extents.
2456 */
2457 const float viewport_Xmax =
2458 ctx->ViewportArray[i].X + ctx->ViewportArray[i].Width;
2459 const float viewport_Ymax =
2460 ctx->ViewportArray[i].Y + ctx->ViewportArray[i].Height;
2461
2462 if (render_to_fbo) {
2463 sfv.XMinViewPort = ctx->ViewportArray[i].X;
2464 sfv.XMaxViewPort = viewport_Xmax - 1;
2465 sfv.YMinViewPort = ctx->ViewportArray[i].Y;
2466 sfv.YMaxViewPort = viewport_Ymax - 1;
2467 } else {
2468 sfv.XMinViewPort = ctx->ViewportArray[i].X;
2469 sfv.XMaxViewPort = viewport_Xmax - 1;
2470 sfv.YMinViewPort = fb_height - viewport_Ymax;
2471 sfv.YMaxViewPort = fb_height - ctx->ViewportArray[i].Y - 1;
2472 }
2473 #endif
2474
2475 #if GEN_GEN >= 7
2476 GENX(SF_CLIP_VIEWPORT_pack)(NULL, sf_clip_map, &sfv);
2477 sf_clip_map += GENX(SF_CLIP_VIEWPORT_length);
2478 #else
2479 GENX(SF_VIEWPORT_pack)(NULL, sf_map, &sfv);
2480 GENX(CLIP_VIEWPORT_pack)(NULL, clip_map, &clv);
2481 sf_map += GENX(SF_VIEWPORT_length);
2482 clip_map += GENX(CLIP_VIEWPORT_length);
2483 #endif
2484 }
2485
2486 #if GEN_GEN >= 7
2487 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP), ptr) {
2488 ptr.SFClipViewportPointer = sf_clip_vp_offset;
2489 }
2490 #elif GEN_GEN == 6
2491 brw_batch_emit(brw, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vp) {
2492 vp.SFViewportStateChange = 1;
2493 vp.CLIPViewportStateChange = 1;
2494 vp.PointertoCLIP_VIEWPORT = clip_vp_offset;
2495 vp.PointertoSF_VIEWPORT = sf_vp_offset;
2496 }
2497 #else
2498 brw->sf.vp_offset = sf_vp_offset;
2499 brw->clip.vp_offset = clip_vp_offset;
2500 brw->ctx.NewDriverState |= BRW_NEW_SF_VP | BRW_NEW_CLIP_VP;
2501 #endif
2502 }
2503
2504 static const struct brw_tracked_state genX(sf_clip_viewport) = {
2505 .dirty = {
2506 .mesa = _NEW_BUFFERS |
2507 _NEW_VIEWPORT |
2508 (GEN_GEN <= 5 ? _NEW_SCISSOR : 0),
2509 .brw = BRW_NEW_BATCH |
2510 BRW_NEW_BLORP |
2511 BRW_NEW_VIEWPORT_COUNT,
2512 },
2513 .emit = genX(upload_sf_clip_viewport),
2514 };
2515
2516 /* ---------------------------------------------------------------------- */
2517
2518 static void
2519 genX(upload_gs_state)(struct brw_context *brw)
2520 {
2521 UNUSED struct gl_context *ctx = &brw->ctx;
2522 UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
2523 const struct brw_stage_state *stage_state = &brw->gs.base;
2524 const struct gl_program *gs_prog = brw->programs[MESA_SHADER_GEOMETRY];
2525 /* BRW_NEW_GEOMETRY_PROGRAM */
2526 bool active = GEN_GEN >= 6 && gs_prog;
2527
2528 /* BRW_NEW_GS_PROG_DATA */
2529 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
2530 UNUSED const struct brw_vue_prog_data *vue_prog_data =
2531 brw_vue_prog_data(stage_prog_data);
2532 #if GEN_GEN >= 7
2533 const struct brw_gs_prog_data *gs_prog_data =
2534 brw_gs_prog_data(stage_prog_data);
2535 #endif
2536
2537 #if GEN_GEN == 6
2538 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_GS), cgs) {
2539 if (active && stage_state->push_const_size != 0) {
2540 cgs.Buffer0Valid = true;
2541 cgs.PointertoGSConstantBuffer0 = stage_state->push_const_offset;
2542 cgs.GSConstantBuffer0ReadLength = stage_state->push_const_size - 1;
2543 }
2544 }
2545 #endif
2546
2547 #if GEN_GEN == 7 && !GEN_IS_HASWELL
2548 /**
2549 * From Graphics BSpec: 3D-Media-GPGPU Engine > 3D Pipeline Stages >
2550 * Geometry > Geometry Shader > State:
2551 *
2552 * "Note: Because of corruption in IVB:GT2, software needs to flush the
2553 * whole fixed function pipeline when the GS enable changes value in
2554 * the 3DSTATE_GS."
2555 *
2556 * The hardware architects have clarified that in this context "flush the
2557 * whole fixed function pipeline" means to emit a PIPE_CONTROL with the "CS
2558 * Stall" bit set.
2559 */
2560 if (devinfo->gt == 2 && brw->gs.enabled != active)
2561 gen7_emit_cs_stall_flush(brw);
2562 #endif
2563
2564 #if GEN_GEN >= 6
2565 brw_batch_emit(brw, GENX(3DSTATE_GS), gs) {
2566 #else
2567 ctx->NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
2568 brw_state_emit(brw, GENX(GS_STATE), 32, &brw->ff_gs.state_offset, gs) {
2569 #endif
2570
2571 #if GEN_GEN >= 6
2572 if (active) {
2573 INIT_THREAD_DISPATCH_FIELDS(gs, Vertex);
2574
2575 #if GEN_GEN >= 7
2576 gs.OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1;
2577 gs.OutputTopology = gs_prog_data->output_topology;
2578 gs.ControlDataHeaderSize =
2579 gs_prog_data->control_data_header_size_hwords;
2580
2581 gs.InstanceControl = gs_prog_data->invocations - 1;
2582 gs.DispatchMode = vue_prog_data->dispatch_mode;
2583
2584 gs.IncludePrimitiveID = gs_prog_data->include_primitive_id;
2585
2586 gs.ControlDataFormat = gs_prog_data->control_data_format;
2587 #endif
2588
2589 /* Note: the meaning of the GEN7_GS_REORDER_TRAILING bit changes between
2590 * Ivy Bridge and Haswell.
2591 *
2592 * On Ivy Bridge, setting this bit causes the vertices of a triangle
2593 * strip to be delivered to the geometry shader in an order that does
2594 * not strictly follow the OpenGL spec, but preserves triangle
2595 * orientation. For example, if the vertices are (1, 2, 3, 4, 5), then
2596 * the geometry shader sees triangles:
2597 *
2598 * (1, 2, 3), (2, 4, 3), (3, 4, 5)
2599 *
2600 * (Clearing the bit is even worse, because it fails to preserve
2601 * orientation).
2602 *
2603 * Triangle strips with adjacency always ordered in a way that preserves
2604 * triangle orientation but does not strictly follow the OpenGL spec,
2605 * regardless of the setting of this bit.
2606 *
2607 * On Haswell, both triangle strips and triangle strips with adjacency
2608 * are always ordered in a way that preserves triangle orientation.
2609 * Setting this bit causes the ordering to strictly follow the OpenGL
2610 * spec.
2611 *
2612 * So in either case we want to set the bit. Unfortunately on Ivy
2613 * Bridge this will get the order close to correct but not perfect.
2614 */
2615 gs.ReorderMode = TRAILING;
2616 gs.MaximumNumberofThreads =
2617 GEN_GEN == 8 ? (devinfo->max_gs_threads / 2 - 1)
2618 : (devinfo->max_gs_threads - 1);
2619
2620 #if GEN_GEN < 7
2621 gs.SOStatisticsEnable = true;
2622 if (gs_prog->info.has_transform_feedback_varyings)
2623 gs.SVBIPayloadEnable = true;
2624
2625 /* GEN6_GS_SPF_MODE and GEN6_GS_VECTOR_MASK_ENABLE are enabled as it
2626 * was previously done for gen6.
2627 *
2628 * TODO: test with both disabled to see if the HW is behaving
2629 * as expected, like in gen7.
2630 */
2631 gs.SingleProgramFlow = true;
2632 gs.VectorMaskEnable = true;
2633 #endif
2634
2635 #if GEN_GEN >= 8
2636 gs.ExpectedVertexCount = gs_prog_data->vertices_in;
2637
2638 if (gs_prog_data->static_vertex_count != -1) {
2639 gs.StaticOutput = true;
2640 gs.StaticOutputVertexCount = gs_prog_data->static_vertex_count;
2641 }
2642 gs.IncludeVertexHandles = vue_prog_data->include_vue_handles;
2643
2644 gs.UserClipDistanceCullTestEnableBitmask =
2645 vue_prog_data->cull_distance_mask;
2646
2647 const int urb_entry_write_offset = 1;
2648 const uint32_t urb_entry_output_length =
2649 DIV_ROUND_UP(vue_prog_data->vue_map.num_slots, 2) -
2650 urb_entry_write_offset;
2651
2652 gs.VertexURBEntryOutputReadOffset = urb_entry_write_offset;
2653 gs.VertexURBEntryOutputLength = MAX2(urb_entry_output_length, 1);
2654 #endif
2655 }
2656 #endif
2657
2658 #if GEN_GEN <= 6
2659 if (!active && brw->ff_gs.prog_active) {
2660 /* In gen6, transform feedback for the VS stage is done with an
2661 * ad-hoc GS program. This function provides the needed 3DSTATE_GS
2662 * for this.
2663 */
2664 gs.KernelStartPointer = KSP(brw, brw->ff_gs.prog_offset);
2665 gs.SingleProgramFlow = true;
2666 gs.DispatchGRFStartRegisterForURBData = GEN_GEN == 6 ? 2 : 1;
2667 gs.VertexURBEntryReadLength = brw->ff_gs.prog_data->urb_read_length;
2668
2669 #if GEN_GEN <= 5
2670 gs.GRFRegisterCount =
2671 DIV_ROUND_UP(brw->ff_gs.prog_data->total_grf, 16) - 1;
2672 /* BRW_NEW_URB_FENCE */
2673 gs.NumberofURBEntries = brw->urb.nr_gs_entries;
2674 gs.URBEntryAllocationSize = brw->urb.vsize - 1;
2675 gs.MaximumNumberofThreads = brw->urb.nr_gs_entries >= 8 ? 1 : 0;
2676 gs.FloatingPointMode = FLOATING_POINT_MODE_Alternate;
2677 #else
2678 gs.Enable = true;
2679 gs.VectorMaskEnable = true;
2680 gs.SVBIPayloadEnable = true;
2681 gs.SVBIPostIncrementEnable = true;
2682 gs.SVBIPostIncrementValue =
2683 brw->ff_gs.prog_data->svbi_postincrement_value;
2684 gs.SOStatisticsEnable = true;
2685 gs.MaximumNumberofThreads = devinfo->max_gs_threads - 1;
2686 #endif
2687 }
2688 #endif
2689 if (!active && !brw->ff_gs.prog_active) {
2690 #if GEN_GEN < 8
2691 gs.DispatchGRFStartRegisterForURBData = 1;
2692 #if GEN_GEN >= 7
2693 gs.IncludeVertexHandles = true;
2694 #endif
2695 #endif
2696 }
2697
2698 #if GEN_GEN >= 6
2699 gs.StatisticsEnable = true;
2700 #endif
2701 #if GEN_GEN == 5 || GEN_GEN == 6
2702 gs.RenderingEnabled = true;
2703 #endif
2704 #if GEN_GEN <= 5
2705 gs.MaximumVPIndex = brw->clip.viewport_count - 1;
2706 #endif
2707 }
2708
2709 #if GEN_GEN == 6
2710 brw->gs.enabled = active;
2711 #endif
2712 }
2713
2714 static const struct brw_tracked_state genX(gs_state) = {
2715 .dirty = {
2716 .mesa = (GEN_GEN == 6 ? _NEW_PROGRAM_CONSTANTS : 0),
2717 .brw = BRW_NEW_BATCH |
2718 BRW_NEW_BLORP |
2719 (GEN_GEN <= 5 ? BRW_NEW_PUSH_CONSTANT_ALLOCATION |
2720 BRW_NEW_PROGRAM_CACHE |
2721 BRW_NEW_URB_FENCE |
2722 BRW_NEW_VIEWPORT_COUNT
2723 : 0) |
2724 (GEN_GEN >= 6 ? BRW_NEW_CONTEXT |
2725 BRW_NEW_GEOMETRY_PROGRAM |
2726 BRW_NEW_GS_PROG_DATA
2727 : 0) |
2728 (GEN_GEN < 7 ? BRW_NEW_FF_GS_PROG_DATA : 0),
2729 },
2730 .emit = genX(upload_gs_state),
2731 };
2732
2733 /* ---------------------------------------------------------------------- */
2734
2735 UNUSED static GLenum
2736 fix_dual_blend_alpha_to_one(GLenum function)
2737 {
2738 switch (function) {
2739 case GL_SRC1_ALPHA:
2740 return GL_ONE;
2741
2742 case GL_ONE_MINUS_SRC1_ALPHA:
2743 return GL_ZERO;
2744 }
2745
2746 return function;
2747 }
2748
2749 #define blend_factor(x) brw_translate_blend_factor(x)
2750 #define blend_eqn(x) brw_translate_blend_equation(x)
2751
2752 /**
2753 * Modify blend function to force destination alpha to 1.0
2754 *
2755 * If \c function specifies a blend function that uses destination alpha,
2756 * replace it with a function that hard-wires destination alpha to 1.0. This
2757 * is used when rendering to xRGB targets.
2758 */
2759 static GLenum
2760 brw_fix_xRGB_alpha(GLenum function)
2761 {
2762 switch (function) {
2763 case GL_DST_ALPHA:
2764 return GL_ONE;
2765
2766 case GL_ONE_MINUS_DST_ALPHA:
2767 case GL_SRC_ALPHA_SATURATE:
2768 return GL_ZERO;
2769 }
2770
2771 return function;
2772 }
2773
2774 #if GEN_GEN >= 6
2775 typedef struct GENX(BLEND_STATE_ENTRY) BLEND_ENTRY_GENXML;
2776 #else
2777 typedef struct GENX(COLOR_CALC_STATE) BLEND_ENTRY_GENXML;
2778 #endif
2779
2780 UNUSED static bool
2781 set_blend_entry_bits(struct brw_context *brw, BLEND_ENTRY_GENXML *entry, int i,
2782 bool alpha_to_one)
2783 {
2784 struct gl_context *ctx = &brw->ctx;
2785
2786 /* _NEW_BUFFERS */
2787 const struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[i];
2788
2789 bool independent_alpha_blend = false;
2790
2791 /* Used for implementing the following bit of GL_EXT_texture_integer:
2792 * "Per-fragment operations that require floating-point color
2793 * components, including multisample alpha operations, alpha test,
2794 * blending, and dithering, have no effect when the corresponding
2795 * colors are written to an integer color buffer."
2796 */
2797 const bool integer = ctx->DrawBuffer->_IntegerBuffers & (0x1 << i);
2798
2799 const unsigned blend_enabled = GEN_GEN >= 6 ?
2800 ctx->Color.BlendEnabled & (1 << i) : ctx->Color.BlendEnabled;
2801
2802 /* _NEW_COLOR */
2803 if (ctx->Color.ColorLogicOpEnabled) {
2804 GLenum rb_type = rb ? _mesa_get_format_datatype(rb->Format)
2805 : GL_UNSIGNED_NORMALIZED;
2806 WARN_ONCE(ctx->Color.LogicOp != GL_COPY &&
2807 rb_type != GL_UNSIGNED_NORMALIZED &&
2808 rb_type != GL_FLOAT, "Ignoring %s logic op on %s "
2809 "renderbuffer\n",
2810 _mesa_enum_to_string(ctx->Color.LogicOp),
2811 _mesa_enum_to_string(rb_type));
2812 if (GEN_GEN >= 8 || rb_type == GL_UNSIGNED_NORMALIZED) {
2813 entry->LogicOpEnable = true;
2814 entry->LogicOpFunction =
2815 intel_translate_logic_op(ctx->Color.LogicOp);
2816 }
2817 } else if (blend_enabled && !ctx->Color._AdvancedBlendMode
2818 && (GEN_GEN <= 5 || !integer)) {
2819 GLenum eqRGB = ctx->Color.Blend[i].EquationRGB;
2820 GLenum eqA = ctx->Color.Blend[i].EquationA;
2821 GLenum srcRGB = ctx->Color.Blend[i].SrcRGB;
2822 GLenum dstRGB = ctx->Color.Blend[i].DstRGB;
2823 GLenum srcA = ctx->Color.Blend[i].SrcA;
2824 GLenum dstA = ctx->Color.Blend[i].DstA;
2825
2826 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
2827 srcRGB = dstRGB = GL_ONE;
2828
2829 if (eqA == GL_MIN || eqA == GL_MAX)
2830 srcA = dstA = GL_ONE;
2831
2832 /* Due to hardware limitations, the destination may have information
2833 * in an alpha channel even when the format specifies no alpha
2834 * channel. In order to avoid getting any incorrect blending due to
2835 * that alpha channel, coerce the blend factors to values that will
2836 * not read the alpha channel, but will instead use the correct
2837 * implicit value for alpha.
2838 */
2839 if (rb && !_mesa_base_format_has_channel(rb->_BaseFormat,
2840 GL_TEXTURE_ALPHA_TYPE)) {
2841 srcRGB = brw_fix_xRGB_alpha(srcRGB);
2842 srcA = brw_fix_xRGB_alpha(srcA);
2843 dstRGB = brw_fix_xRGB_alpha(dstRGB);
2844 dstA = brw_fix_xRGB_alpha(dstA);
2845 }
2846
2847 /* From the BLEND_STATE docs, DWord 0, Bit 29 (AlphaToOne Enable):
2848 * "If Dual Source Blending is enabled, this bit must be disabled."
2849 *
2850 * We override SRC1_ALPHA to ONE and ONE_MINUS_SRC1_ALPHA to ZERO,
2851 * and leave it enabled anyway.
2852 */
2853 if (GEN_GEN >= 6 && ctx->Color.Blend[i]._UsesDualSrc && alpha_to_one) {
2854 srcRGB = fix_dual_blend_alpha_to_one(srcRGB);
2855 srcA = fix_dual_blend_alpha_to_one(srcA);
2856 dstRGB = fix_dual_blend_alpha_to_one(dstRGB);
2857 dstA = fix_dual_blend_alpha_to_one(dstA);
2858 }
2859
2860 entry->ColorBufferBlendEnable = true;
2861 entry->DestinationBlendFactor = blend_factor(dstRGB);
2862 entry->SourceBlendFactor = blend_factor(srcRGB);
2863 entry->DestinationAlphaBlendFactor = blend_factor(dstA);
2864 entry->SourceAlphaBlendFactor = blend_factor(srcA);
2865 entry->ColorBlendFunction = blend_eqn(eqRGB);
2866 entry->AlphaBlendFunction = blend_eqn(eqA);
2867
2868 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
2869 independent_alpha_blend = true;
2870 }
2871
2872 return independent_alpha_blend;
2873 }
2874
2875 #if GEN_GEN >= 6
2876 static void
2877 genX(upload_blend_state)(struct brw_context *brw)
2878 {
2879 struct gl_context *ctx = &brw->ctx;
2880 int size;
2881
2882 /* We need at least one BLEND_STATE written, because we might do
2883 * thread dispatch even if _NumColorDrawBuffers is 0 (for example
2884 * for computed depth or alpha test), which will do an FB write
2885 * with render target 0, which will reference BLEND_STATE[0] for
2886 * alpha test enable.
2887 */
2888 int nr_draw_buffers = ctx->DrawBuffer->_NumColorDrawBuffers;
2889 if (nr_draw_buffers == 0 && ctx->Color.AlphaEnabled)
2890 nr_draw_buffers = 1;
2891
2892 size = GENX(BLEND_STATE_ENTRY_length) * 4 * nr_draw_buffers;
2893 #if GEN_GEN >= 8
2894 size += GENX(BLEND_STATE_length) * 4;
2895 #endif
2896
2897 uint32_t *blend_map;
2898 blend_map = brw_state_batch(brw, size, 64, &brw->cc.blend_state_offset);
2899
2900 #if GEN_GEN >= 8
2901 struct GENX(BLEND_STATE) blend = { 0 };
2902 {
2903 #else
2904 for (int i = 0; i < nr_draw_buffers; i++) {
2905 struct GENX(BLEND_STATE_ENTRY) entry = { 0 };
2906 #define blend entry
2907 #endif
2908 /* OpenGL specification 3.3 (page 196), section 4.1.3 says:
2909 * "If drawbuffer zero is not NONE and the buffer it references has an
2910 * integer format, the SAMPLE_ALPHA_TO_COVERAGE and SAMPLE_ALPHA_TO_ONE
2911 * operations are skipped."
2912 */
2913 if (!(ctx->DrawBuffer->_IntegerBuffers & 0x1)) {
2914 /* _NEW_MULTISAMPLE */
2915 if (_mesa_is_multisample_enabled(ctx)) {
2916 if (ctx->Multisample.SampleAlphaToCoverage) {
2917 blend.AlphaToCoverageEnable = true;
2918 blend.AlphaToCoverageDitherEnable = GEN_GEN >= 7;
2919 }
2920 if (ctx->Multisample.SampleAlphaToOne)
2921 blend.AlphaToOneEnable = true;
2922 }
2923
2924 /* _NEW_COLOR */
2925 if (ctx->Color.AlphaEnabled) {
2926 blend.AlphaTestEnable = true;
2927 blend.AlphaTestFunction =
2928 intel_translate_compare_func(ctx->Color.AlphaFunc);
2929 }
2930
2931 if (ctx->Color.DitherFlag) {
2932 blend.ColorDitherEnable = true;
2933 }
2934 }
2935
2936 #if GEN_GEN >= 8
2937 for (int i = 0; i < nr_draw_buffers; i++) {
2938 struct GENX(BLEND_STATE_ENTRY) entry = { 0 };
2939 #else
2940 {
2941 #endif
2942 blend.IndependentAlphaBlendEnable =
2943 set_blend_entry_bits(brw, &entry, i, blend.AlphaToOneEnable) ||
2944 blend.IndependentAlphaBlendEnable;
2945
2946 /* See section 8.1.6 "Pre-Blend Color Clamping" of the
2947 * SandyBridge PRM Volume 2 Part 1 for HW requirements.
2948 *
2949 * We do our ARB_color_buffer_float CLAMP_FRAGMENT_COLOR
2950 * clamping in the fragment shader. For its clamping of
2951 * blending, the spec says:
2952 *
2953 * "RESOLVED: For fixed-point color buffers, the inputs and
2954 * the result of the blending equation are clamped. For
2955 * floating-point color buffers, no clamping occurs."
2956 *
2957 * So, generally, we want clamping to the render target's range.
2958 * And, good news, the hardware tables for both pre- and
2959 * post-blend color clamping are either ignored, or any are
2960 * allowed, or clamping is required but RT range clamping is a
2961 * valid option.
2962 */
2963 entry.PreBlendColorClampEnable = true;
2964 entry.PostBlendColorClampEnable = true;
2965 entry.ColorClampRange = COLORCLAMP_RTFORMAT;
2966
2967 entry.WriteDisableRed = !ctx->Color.ColorMask[i][0];
2968 entry.WriteDisableGreen = !ctx->Color.ColorMask[i][1];
2969 entry.WriteDisableBlue = !ctx->Color.ColorMask[i][2];
2970 entry.WriteDisableAlpha = !ctx->Color.ColorMask[i][3];
2971
2972 #if GEN_GEN >= 8
2973 GENX(BLEND_STATE_ENTRY_pack)(NULL, &blend_map[1 + i * 2], &entry);
2974 #else
2975 GENX(BLEND_STATE_ENTRY_pack)(NULL, &blend_map[i * 2], &entry);
2976 #endif
2977 }
2978 }
2979
2980 #if GEN_GEN >= 8
2981 GENX(BLEND_STATE_pack)(NULL, blend_map, &blend);
2982 #endif
2983
2984 #if GEN_GEN < 7
2985 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
2986 ptr.PointertoBLEND_STATE = brw->cc.blend_state_offset;
2987 ptr.BLEND_STATEChange = true;
2988 }
2989 #else
2990 brw_batch_emit(brw, GENX(3DSTATE_BLEND_STATE_POINTERS), ptr) {
2991 ptr.BlendStatePointer = brw->cc.blend_state_offset;
2992 #if GEN_GEN >= 8
2993 ptr.BlendStatePointerValid = true;
2994 #endif
2995 }
2996 #endif
2997 }
2998
2999 static const struct brw_tracked_state genX(blend_state) = {
3000 .dirty = {
3001 .mesa = _NEW_BUFFERS |
3002 _NEW_COLOR |
3003 _NEW_MULTISAMPLE,
3004 .brw = BRW_NEW_BATCH |
3005 BRW_NEW_BLORP |
3006 BRW_NEW_STATE_BASE_ADDRESS,
3007 },
3008 .emit = genX(upload_blend_state),
3009 };
3010 #endif
3011
3012 /* ---------------------------------------------------------------------- */
3013
3014 #if GEN_GEN >= 7
3015 UNUSED static const uint32_t push_constant_opcodes[] = {
3016 [MESA_SHADER_VERTEX] = 21,
3017 [MESA_SHADER_TESS_CTRL] = 25, /* HS */
3018 [MESA_SHADER_TESS_EVAL] = 26, /* DS */
3019 [MESA_SHADER_GEOMETRY] = 22,
3020 [MESA_SHADER_FRAGMENT] = 23,
3021 [MESA_SHADER_COMPUTE] = 0,
3022 };
3023
3024 static void
3025 genX(upload_push_constant_packets)(struct brw_context *brw)
3026 {
3027 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3028 struct gl_context *ctx = &brw->ctx;
3029
3030 UNUSED uint32_t mocs = GEN_GEN < 8 ? GEN7_MOCS_L3 : 0;
3031
3032 struct brw_stage_state *stage_states[] = {
3033 &brw->vs.base,
3034 &brw->tcs.base,
3035 &brw->tes.base,
3036 &brw->gs.base,
3037 &brw->wm.base,
3038 };
3039
3040 if (GEN_GEN == 7 && !GEN_IS_HASWELL && !devinfo->is_baytrail &&
3041 stage_states[MESA_SHADER_VERTEX]->push_constants_dirty)
3042 gen7_emit_vs_workaround_flush(brw);
3043
3044 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
3045 struct brw_stage_state *stage_state = stage_states[stage];
3046 UNUSED struct gl_program *prog = ctx->_Shader->CurrentProgram[stage];
3047
3048 if (!stage_state->push_constants_dirty)
3049 continue;
3050
3051 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_VS), pkt) {
3052 pkt._3DCommandSubOpcode = push_constant_opcodes[stage];
3053 if (stage_state->prog_data) {
3054 #if GEN_GEN >= 8 || GEN_IS_HASWELL
3055 /* The Skylake PRM contains the following restriction:
3056 *
3057 * "The driver must ensure The following case does not occur
3058 * without a flush to the 3D engine: 3DSTATE_CONSTANT_* with
3059 * buffer 3 read length equal to zero committed followed by a
3060 * 3DSTATE_CONSTANT_* with buffer 0 read length not equal to
3061 * zero committed."
3062 *
3063 * To avoid this, we program the buffers in the highest slots.
3064 * This way, slot 0 is only used if slot 3 is also used.
3065 */
3066 int n = 3;
3067
3068 for (int i = 3; i >= 0; i--) {
3069 const struct brw_ubo_range *range =
3070 &stage_state->prog_data->ubo_ranges[i];
3071
3072 if (range->length == 0)
3073 continue;
3074
3075 const struct gl_uniform_block *block =
3076 prog->sh.UniformBlocks[range->block];
3077 const struct gl_buffer_binding *binding =
3078 &ctx->UniformBufferBindings[block->Binding];
3079
3080 if (binding->BufferObject == ctx->Shared->NullBufferObj) {
3081 static unsigned msg_id = 0;
3082 _mesa_gl_debug(ctx, &msg_id, MESA_DEBUG_SOURCE_API,
3083 MESA_DEBUG_TYPE_UNDEFINED,
3084 MESA_DEBUG_SEVERITY_HIGH,
3085 "UBO %d unbound, %s shader uniform data "
3086 "will be undefined.",
3087 range->block,
3088 _mesa_shader_stage_to_string(stage));
3089 continue;
3090 }
3091
3092 assert(binding->Offset % 32 == 0);
3093
3094 struct brw_bo *bo = intel_bufferobj_buffer(brw,
3095 intel_buffer_object(binding->BufferObject),
3096 binding->Offset, range->length * 32, false);
3097
3098 pkt.ConstantBody.ReadLength[n] = range->length;
3099 pkt.ConstantBody.Buffer[n] =
3100 ro_bo(bo, range->start * 32 + binding->Offset);
3101 n--;
3102 }
3103
3104 if (stage_state->push_const_size > 0) {
3105 assert(n >= 0);
3106 pkt.ConstantBody.ReadLength[n] = stage_state->push_const_size;
3107 pkt.ConstantBody.Buffer[n] =
3108 ro_bo(stage_state->push_const_bo,
3109 stage_state->push_const_offset);
3110 }
3111 #else
3112 pkt.ConstantBody.ReadLength[0] = stage_state->push_const_size;
3113 pkt.ConstantBody.Buffer[0].offset =
3114 stage_state->push_const_offset | mocs;
3115 #endif
3116 }
3117 }
3118
3119 stage_state->push_constants_dirty = false;
3120 }
3121
3122 brw->ctx.NewDriverState |= GEN_GEN >= 9 ? BRW_NEW_SURFACES : 0;
3123 }
3124
3125 const struct brw_tracked_state genX(push_constant_packets) = {
3126 .dirty = {
3127 .mesa = 0,
3128 .brw = BRW_NEW_DRAW_CALL,
3129 },
3130 .emit = genX(upload_push_constant_packets),
3131 };
3132 #endif
3133
3134 #if GEN_GEN >= 6
3135 static void
3136 genX(upload_vs_push_constants)(struct brw_context *brw)
3137 {
3138 struct brw_stage_state *stage_state = &brw->vs.base;
3139
3140 /* BRW_NEW_VERTEX_PROGRAM */
3141 const struct gl_program *vp = brw->programs[MESA_SHADER_VERTEX];
3142 /* BRW_NEW_VS_PROG_DATA */
3143 const struct brw_stage_prog_data *prog_data = brw->vs.base.prog_data;
3144
3145 gen6_upload_push_constants(brw, vp, prog_data, stage_state);
3146 }
3147
3148 static const struct brw_tracked_state genX(vs_push_constants) = {
3149 .dirty = {
3150 .mesa = _NEW_PROGRAM_CONSTANTS |
3151 _NEW_TRANSFORM,
3152 .brw = BRW_NEW_BATCH |
3153 BRW_NEW_BLORP |
3154 BRW_NEW_VERTEX_PROGRAM |
3155 BRW_NEW_VS_PROG_DATA,
3156 },
3157 .emit = genX(upload_vs_push_constants),
3158 };
3159
3160 static void
3161 genX(upload_gs_push_constants)(struct brw_context *brw)
3162 {
3163 struct brw_stage_state *stage_state = &brw->gs.base;
3164
3165 /* BRW_NEW_GEOMETRY_PROGRAM */
3166 const struct gl_program *gp = brw->programs[MESA_SHADER_GEOMETRY];
3167
3168 if (gp) {
3169 /* BRW_NEW_GS_PROG_DATA */
3170 struct brw_stage_prog_data *prog_data = brw->gs.base.prog_data;
3171
3172 gen6_upload_push_constants(brw, gp, prog_data, stage_state);
3173 }
3174 }
3175
3176 static const struct brw_tracked_state genX(gs_push_constants) = {
3177 .dirty = {
3178 .mesa = _NEW_PROGRAM_CONSTANTS |
3179 _NEW_TRANSFORM,
3180 .brw = BRW_NEW_BATCH |
3181 BRW_NEW_BLORP |
3182 BRW_NEW_GEOMETRY_PROGRAM |
3183 BRW_NEW_GS_PROG_DATA,
3184 },
3185 .emit = genX(upload_gs_push_constants),
3186 };
3187
3188 static void
3189 genX(upload_wm_push_constants)(struct brw_context *brw)
3190 {
3191 struct brw_stage_state *stage_state = &brw->wm.base;
3192 /* BRW_NEW_FRAGMENT_PROGRAM */
3193 const struct gl_program *fp = brw->programs[MESA_SHADER_FRAGMENT];
3194 /* BRW_NEW_FS_PROG_DATA */
3195 const struct brw_stage_prog_data *prog_data = brw->wm.base.prog_data;
3196
3197 gen6_upload_push_constants(brw, fp, prog_data, stage_state);
3198 }
3199
3200 static const struct brw_tracked_state genX(wm_push_constants) = {
3201 .dirty = {
3202 .mesa = _NEW_PROGRAM_CONSTANTS,
3203 .brw = BRW_NEW_BATCH |
3204 BRW_NEW_BLORP |
3205 BRW_NEW_FRAGMENT_PROGRAM |
3206 BRW_NEW_FS_PROG_DATA,
3207 },
3208 .emit = genX(upload_wm_push_constants),
3209 };
3210 #endif
3211
3212 /* ---------------------------------------------------------------------- */
3213
3214 #if GEN_GEN >= 6
3215 static unsigned
3216 genX(determine_sample_mask)(struct brw_context *brw)
3217 {
3218 struct gl_context *ctx = &brw->ctx;
3219 float coverage = 1.0f;
3220 float coverage_invert = false;
3221 unsigned sample_mask = ~0u;
3222
3223 /* BRW_NEW_NUM_SAMPLES */
3224 unsigned num_samples = brw->num_samples;
3225
3226 if (_mesa_is_multisample_enabled(ctx)) {
3227 if (ctx->Multisample.SampleCoverage) {
3228 coverage = ctx->Multisample.SampleCoverageValue;
3229 coverage_invert = ctx->Multisample.SampleCoverageInvert;
3230 }
3231 if (ctx->Multisample.SampleMask) {
3232 sample_mask = ctx->Multisample.SampleMaskValue;
3233 }
3234 }
3235
3236 if (num_samples > 1) {
3237 int coverage_int = (int) (num_samples * coverage + 0.5f);
3238 uint32_t coverage_bits = (1 << coverage_int) - 1;
3239 if (coverage_invert)
3240 coverage_bits ^= (1 << num_samples) - 1;
3241 return coverage_bits & sample_mask;
3242 } else {
3243 return 1;
3244 }
3245 }
3246
3247 static void
3248 genX(emit_3dstate_multisample2)(struct brw_context *brw,
3249 unsigned num_samples)
3250 {
3251 unsigned log2_samples = ffs(num_samples) - 1;
3252
3253 brw_batch_emit(brw, GENX(3DSTATE_MULTISAMPLE), multi) {
3254 multi.PixelLocation = CENTER;
3255 multi.NumberofMultisamples = log2_samples;
3256 #if GEN_GEN == 6
3257 GEN_SAMPLE_POS_4X(multi.Sample);
3258 #elif GEN_GEN == 7
3259 switch (num_samples) {
3260 case 1:
3261 GEN_SAMPLE_POS_1X(multi.Sample);
3262 break;
3263 case 2:
3264 GEN_SAMPLE_POS_2X(multi.Sample);
3265 break;
3266 case 4:
3267 GEN_SAMPLE_POS_4X(multi.Sample);
3268 break;
3269 case 8:
3270 GEN_SAMPLE_POS_8X(multi.Sample);
3271 break;
3272 default:
3273 break;
3274 }
3275 #endif
3276 }
3277 }
3278
3279 static void
3280 genX(upload_multisample_state)(struct brw_context *brw)
3281 {
3282 assert(brw->num_samples > 0 && brw->num_samples <= 16);
3283
3284 genX(emit_3dstate_multisample2)(brw, brw->num_samples);
3285
3286 brw_batch_emit(brw, GENX(3DSTATE_SAMPLE_MASK), sm) {
3287 sm.SampleMask = genX(determine_sample_mask)(brw);
3288 }
3289 }
3290
3291 static const struct brw_tracked_state genX(multisample_state) = {
3292 .dirty = {
3293 .mesa = _NEW_MULTISAMPLE,
3294 .brw = BRW_NEW_BLORP |
3295 BRW_NEW_CONTEXT |
3296 BRW_NEW_NUM_SAMPLES,
3297 },
3298 .emit = genX(upload_multisample_state)
3299 };
3300 #endif
3301
3302 /* ---------------------------------------------------------------------- */
3303
3304 static void
3305 genX(upload_color_calc_state)(struct brw_context *brw)
3306 {
3307 struct gl_context *ctx = &brw->ctx;
3308
3309 brw_state_emit(brw, GENX(COLOR_CALC_STATE), 64, &brw->cc.state_offset, cc) {
3310 #if GEN_GEN <= 5
3311 cc.IndependentAlphaBlendEnable =
3312 set_blend_entry_bits(brw, &cc, 0, false);
3313 set_depth_stencil_bits(brw, &cc);
3314
3315 if (ctx->Color.AlphaEnabled &&
3316 ctx->DrawBuffer->_NumColorDrawBuffers <= 1) {
3317 cc.AlphaTestEnable = true;
3318 cc.AlphaTestFunction =
3319 intel_translate_compare_func(ctx->Color.AlphaFunc);
3320 }
3321
3322 cc.ColorDitherEnable = ctx->Color.DitherFlag;
3323
3324 cc.StatisticsEnable = brw->stats_wm;
3325
3326 cc.CCViewportStatePointer =
3327 ro_bo(brw->batch.state_bo, brw->cc.vp_offset);
3328 #else
3329 /* _NEW_COLOR */
3330 cc.BlendConstantColorRed = ctx->Color.BlendColorUnclamped[0];
3331 cc.BlendConstantColorGreen = ctx->Color.BlendColorUnclamped[1];
3332 cc.BlendConstantColorBlue = ctx->Color.BlendColorUnclamped[2];
3333 cc.BlendConstantColorAlpha = ctx->Color.BlendColorUnclamped[3];
3334
3335 #if GEN_GEN < 9
3336 /* _NEW_STENCIL */
3337 cc.StencilReferenceValue = _mesa_get_stencil_ref(ctx, 0);
3338 cc.BackfaceStencilReferenceValue =
3339 _mesa_get_stencil_ref(ctx, ctx->Stencil._BackFace);
3340 #endif
3341
3342 #endif
3343
3344 /* _NEW_COLOR */
3345 UNCLAMPED_FLOAT_TO_UBYTE(cc.AlphaReferenceValueAsUNORM8,
3346 ctx->Color.AlphaRef);
3347 }
3348
3349 #if GEN_GEN >= 6
3350 brw_batch_emit(brw, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
3351 ptr.ColorCalcStatePointer = brw->cc.state_offset;
3352 #if GEN_GEN != 7
3353 ptr.ColorCalcStatePointerValid = true;
3354 #endif
3355 }
3356 #else
3357 brw->ctx.NewDriverState |= BRW_NEW_GEN4_UNIT_STATE;
3358 #endif
3359 }
3360
3361 static const struct brw_tracked_state genX(color_calc_state) = {
3362 .dirty = {
3363 .mesa = _NEW_COLOR |
3364 _NEW_STENCIL |
3365 (GEN_GEN <= 5 ? _NEW_BUFFERS |
3366 _NEW_DEPTH
3367 : 0),
3368 .brw = BRW_NEW_BATCH |
3369 BRW_NEW_BLORP |
3370 (GEN_GEN <= 5 ? BRW_NEW_CC_VP |
3371 BRW_NEW_STATS_WM
3372 : BRW_NEW_CC_STATE |
3373 BRW_NEW_STATE_BASE_ADDRESS),
3374 },
3375 .emit = genX(upload_color_calc_state),
3376 };
3377
3378
3379 /* ---------------------------------------------------------------------- */
3380
3381 #if GEN_GEN >= 7
3382 static void
3383 genX(upload_sbe)(struct brw_context *brw)
3384 {
3385 struct gl_context *ctx = &brw->ctx;
3386 /* BRW_NEW_FRAGMENT_PROGRAM */
3387 UNUSED const struct gl_program *fp = brw->programs[MESA_SHADER_FRAGMENT];
3388 /* BRW_NEW_FS_PROG_DATA */
3389 const struct brw_wm_prog_data *wm_prog_data =
3390 brw_wm_prog_data(brw->wm.base.prog_data);
3391 #if GEN_GEN >= 8
3392 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attr_overrides[16] = { { 0 } };
3393 #else
3394 #define attr_overrides sbe.Attribute
3395 #endif
3396 uint32_t urb_entry_read_length;
3397 uint32_t urb_entry_read_offset;
3398 uint32_t point_sprite_enables;
3399
3400 brw_batch_emit(brw, GENX(3DSTATE_SBE), sbe) {
3401 sbe.AttributeSwizzleEnable = true;
3402 sbe.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
3403
3404 /* _NEW_BUFFERS */
3405 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
3406
3407 /* _NEW_POINT
3408 *
3409 * Window coordinates in an FBO are inverted, which means point
3410 * sprite origin must be inverted.
3411 */
3412 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo)
3413 sbe.PointSpriteTextureCoordinateOrigin = LOWERLEFT;
3414 else
3415 sbe.PointSpriteTextureCoordinateOrigin = UPPERLEFT;
3416
3417 /* _NEW_POINT | _NEW_LIGHT | _NEW_PROGRAM,
3418 * BRW_NEW_FS_PROG_DATA | BRW_NEW_FRAGMENT_PROGRAM |
3419 * BRW_NEW_GS_PROG_DATA | BRW_NEW_PRIMITIVE | BRW_NEW_TES_PROG_DATA |
3420 * BRW_NEW_VUE_MAP_GEOM_OUT
3421 */
3422 genX(calculate_attr_overrides)(brw,
3423 attr_overrides,
3424 &point_sprite_enables,
3425 &urb_entry_read_length,
3426 &urb_entry_read_offset);
3427
3428 /* Typically, the URB entry read length and offset should be programmed
3429 * in 3DSTATE_VS and 3DSTATE_GS; SBE inherits it from the last active
3430 * stage which produces geometry. However, we don't know the proper
3431 * value until we call calculate_attr_overrides().
3432 *
3433 * To fit with our existing code, we override the inherited values and
3434 * specify it here directly, as we did on previous generations.
3435 */
3436 sbe.VertexURBEntryReadLength = urb_entry_read_length;
3437 sbe.VertexURBEntryReadOffset = urb_entry_read_offset;
3438 sbe.PointSpriteTextureCoordinateEnable = point_sprite_enables;
3439 sbe.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
3440
3441 #if GEN_GEN >= 8
3442 sbe.ForceVertexURBEntryReadLength = true;
3443 sbe.ForceVertexURBEntryReadOffset = true;
3444 #endif
3445
3446 #if GEN_GEN >= 9
3447 /* prepare the active component dwords */
3448 const int num_inputs = urb_entry_read_length * 2;
3449 for (int input_index = 0; input_index < num_inputs; input_index++) {
3450 sbe.AttributeActiveComponentFormat[input_index] = ACTIVE_COMPONENT_XYZW;
3451 }
3452 #endif
3453 }
3454
3455 #if GEN_GEN >= 8
3456 brw_batch_emit(brw, GENX(3DSTATE_SBE_SWIZ), sbes) {
3457 for (int i = 0; i < 16; i++)
3458 sbes.Attribute[i] = attr_overrides[i];
3459 }
3460 #endif
3461
3462 #undef attr_overrides
3463 }
3464
3465 static const struct brw_tracked_state genX(sbe_state) = {
3466 .dirty = {
3467 .mesa = _NEW_BUFFERS |
3468 _NEW_LIGHT |
3469 _NEW_POINT |
3470 _NEW_POLYGON |
3471 _NEW_PROGRAM,
3472 .brw = BRW_NEW_BLORP |
3473 BRW_NEW_CONTEXT |
3474 BRW_NEW_FRAGMENT_PROGRAM |
3475 BRW_NEW_FS_PROG_DATA |
3476 BRW_NEW_GS_PROG_DATA |
3477 BRW_NEW_TES_PROG_DATA |
3478 BRW_NEW_VUE_MAP_GEOM_OUT |
3479 (GEN_GEN == 7 ? BRW_NEW_PRIMITIVE
3480 : 0),
3481 },
3482 .emit = genX(upload_sbe),
3483 };
3484 #endif
3485
3486 /* ---------------------------------------------------------------------- */
3487
3488 #if GEN_GEN >= 7
3489 /**
3490 * Outputs the 3DSTATE_SO_DECL_LIST command.
3491 *
3492 * The data output is a series of 64-bit entries containing a SO_DECL per
3493 * stream. We only have one stream of rendering coming out of the GS unit, so
3494 * we only emit stream 0 (low 16 bits) SO_DECLs.
3495 */
3496 static void
3497 genX(upload_3dstate_so_decl_list)(struct brw_context *brw,
3498 const struct brw_vue_map *vue_map)
3499 {
3500 struct gl_context *ctx = &brw->ctx;
3501 /* BRW_NEW_TRANSFORM_FEEDBACK */
3502 struct gl_transform_feedback_object *xfb_obj =
3503 ctx->TransformFeedback.CurrentObject;
3504 const struct gl_transform_feedback_info *linked_xfb_info =
3505 xfb_obj->program->sh.LinkedTransformFeedback;
3506 struct GENX(SO_DECL) so_decl[MAX_VERTEX_STREAMS][128];
3507 int buffer_mask[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3508 int next_offset[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3509 int decls[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
3510 int max_decls = 0;
3511 STATIC_ASSERT(ARRAY_SIZE(so_decl[0]) >= MAX_PROGRAM_OUTPUTS);
3512
3513 memset(so_decl, 0, sizeof(so_decl));
3514
3515 /* Construct the list of SO_DECLs to be emitted. The formatting of the
3516 * command feels strange -- each dword pair contains a SO_DECL per stream.
3517 */
3518 for (unsigned i = 0; i < linked_xfb_info->NumOutputs; i++) {
3519 const struct gl_transform_feedback_output *output =
3520 &linked_xfb_info->Outputs[i];
3521 const int buffer = output->OutputBuffer;
3522 const int varying = output->OutputRegister;
3523 const unsigned stream_id = output->StreamId;
3524 assert(stream_id < MAX_VERTEX_STREAMS);
3525
3526 buffer_mask[stream_id] |= 1 << buffer;
3527
3528 assert(vue_map->varying_to_slot[varying] >= 0);
3529
3530 /* Mesa doesn't store entries for gl_SkipComponents in the Outputs[]
3531 * array. Instead, it simply increments DstOffset for the following
3532 * input by the number of components that should be skipped.
3533 *
3534 * Our hardware is unusual in that it requires us to program SO_DECLs
3535 * for fake "hole" components, rather than simply taking the offset
3536 * for each real varying. Each hole can have size 1, 2, 3, or 4; we
3537 * program as many size = 4 holes as we can, then a final hole to
3538 * accommodate the final 1, 2, or 3 remaining.
3539 */
3540 int skip_components = output->DstOffset - next_offset[buffer];
3541
3542 while (skip_components > 0) {
3543 so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
3544 .HoleFlag = 1,
3545 .OutputBufferSlot = output->OutputBuffer,
3546 .ComponentMask = (1 << MIN2(skip_components, 4)) - 1,
3547 };
3548 skip_components -= 4;
3549 }
3550
3551 next_offset[buffer] = output->DstOffset + output->NumComponents;
3552
3553 so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
3554 .OutputBufferSlot = output->OutputBuffer,
3555 .RegisterIndex = vue_map->varying_to_slot[varying],
3556 .ComponentMask =
3557 ((1 << output->NumComponents) - 1) << output->ComponentOffset,
3558 };
3559
3560 if (decls[stream_id] > max_decls)
3561 max_decls = decls[stream_id];
3562 }
3563
3564 uint32_t *dw;
3565 dw = brw_batch_emitn(brw, GENX(3DSTATE_SO_DECL_LIST), 3 + 2 * max_decls,
3566 .StreamtoBufferSelects0 = buffer_mask[0],
3567 .StreamtoBufferSelects1 = buffer_mask[1],
3568 .StreamtoBufferSelects2 = buffer_mask[2],
3569 .StreamtoBufferSelects3 = buffer_mask[3],
3570 .NumEntries0 = decls[0],
3571 .NumEntries1 = decls[1],
3572 .NumEntries2 = decls[2],
3573 .NumEntries3 = decls[3]);
3574
3575 for (int i = 0; i < max_decls; i++) {
3576 GENX(SO_DECL_ENTRY_pack)(
3577 brw, dw + 2 + i * 2,
3578 &(struct GENX(SO_DECL_ENTRY)) {
3579 .Stream0Decl = so_decl[0][i],
3580 .Stream1Decl = so_decl[1][i],
3581 .Stream2Decl = so_decl[2][i],
3582 .Stream3Decl = so_decl[3][i],
3583 });
3584 }
3585 }
3586
3587 static void
3588 genX(upload_3dstate_so_buffers)(struct brw_context *brw)
3589 {
3590 struct gl_context *ctx = &brw->ctx;
3591 /* BRW_NEW_TRANSFORM_FEEDBACK */
3592 struct gl_transform_feedback_object *xfb_obj =
3593 ctx->TransformFeedback.CurrentObject;
3594 #if GEN_GEN < 8
3595 const struct gl_transform_feedback_info *linked_xfb_info =
3596 xfb_obj->program->sh.LinkedTransformFeedback;
3597 #else
3598 struct brw_transform_feedback_object *brw_obj =
3599 (struct brw_transform_feedback_object *) xfb_obj;
3600 uint32_t mocs_wb = GEN_GEN >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
3601 #endif
3602
3603 /* Set up the up to 4 output buffers. These are the ranges defined in the
3604 * gl_transform_feedback_object.
3605 */
3606 for (int i = 0; i < 4; i++) {
3607 struct intel_buffer_object *bufferobj =
3608 intel_buffer_object(xfb_obj->Buffers[i]);
3609
3610 if (!bufferobj) {
3611 brw_batch_emit(brw, GENX(3DSTATE_SO_BUFFER), sob) {
3612 sob.SOBufferIndex = i;
3613 }
3614 continue;
3615 }
3616
3617 uint32_t start = xfb_obj->Offset[i];
3618 assert(start % 4 == 0);
3619 uint32_t end = ALIGN(start + xfb_obj->Size[i], 4);
3620 struct brw_bo *bo =
3621 intel_bufferobj_buffer(brw, bufferobj, start, end - start, true);
3622 assert(end <= bo->size);
3623
3624 brw_batch_emit(brw, GENX(3DSTATE_SO_BUFFER), sob) {
3625 sob.SOBufferIndex = i;
3626
3627 sob.SurfaceBaseAddress = rw_bo(bo, start);
3628 #if GEN_GEN < 8
3629 sob.SurfacePitch = linked_xfb_info->Buffers[i].Stride * 4;
3630 sob.SurfaceEndAddress = rw_bo(bo, end);
3631 #else
3632 sob.SOBufferEnable = true;
3633 sob.StreamOffsetWriteEnable = true;
3634 sob.StreamOutputBufferOffsetAddressEnable = true;
3635 sob.SOBufferMOCS = mocs_wb;
3636
3637 sob.SurfaceSize = MAX2(xfb_obj->Size[i] / 4, 1) - 1;
3638 sob.StreamOutputBufferOffsetAddress =
3639 rw_bo(brw_obj->offset_bo, i * sizeof(uint32_t));
3640
3641 if (brw_obj->zero_offsets) {
3642 /* Zero out the offset and write that to offset_bo */
3643 sob.StreamOffset = 0;
3644 } else {
3645 /* Use offset_bo as the "Stream Offset." */
3646 sob.StreamOffset = 0xFFFFFFFF;
3647 }
3648 #endif
3649 }
3650 }
3651
3652 #if GEN_GEN >= 8
3653 brw_obj->zero_offsets = false;
3654 #endif
3655 }
3656
3657 static bool
3658 query_active(struct gl_query_object *q)
3659 {
3660 return q && q->Active;
3661 }
3662
3663 static void
3664 genX(upload_3dstate_streamout)(struct brw_context *brw, bool active,
3665 const struct brw_vue_map *vue_map)
3666 {
3667 struct gl_context *ctx = &brw->ctx;
3668 /* BRW_NEW_TRANSFORM_FEEDBACK */
3669 struct gl_transform_feedback_object *xfb_obj =
3670 ctx->TransformFeedback.CurrentObject;
3671
3672 brw_batch_emit(brw, GENX(3DSTATE_STREAMOUT), sos) {
3673 if (active) {
3674 int urb_entry_read_offset = 0;
3675 int urb_entry_read_length = (vue_map->num_slots + 1) / 2 -
3676 urb_entry_read_offset;
3677
3678 sos.SOFunctionEnable = true;
3679 sos.SOStatisticsEnable = true;
3680
3681 /* BRW_NEW_RASTERIZER_DISCARD */
3682 if (ctx->RasterDiscard) {
3683 if (!query_active(ctx->Query.PrimitivesGenerated[0])) {
3684 sos.RenderingDisable = true;
3685 } else {
3686 perf_debug("Rasterizer discard with a GL_PRIMITIVES_GENERATED "
3687 "query active relies on the clipper.\n");
3688 }
3689 }
3690
3691 /* _NEW_LIGHT */
3692 if (ctx->Light.ProvokingVertex != GL_FIRST_VERTEX_CONVENTION)
3693 sos.ReorderMode = TRAILING;
3694
3695 #if GEN_GEN < 8
3696 sos.SOBufferEnable0 = xfb_obj->Buffers[0] != NULL;
3697 sos.SOBufferEnable1 = xfb_obj->Buffers[1] != NULL;
3698 sos.SOBufferEnable2 = xfb_obj->Buffers[2] != NULL;
3699 sos.SOBufferEnable3 = xfb_obj->Buffers[3] != NULL;
3700 #else
3701 const struct gl_transform_feedback_info *linked_xfb_info =
3702 xfb_obj->program->sh.LinkedTransformFeedback;
3703 /* Set buffer pitches; 0 means unbound. */
3704 if (xfb_obj->Buffers[0])
3705 sos.Buffer0SurfacePitch = linked_xfb_info->Buffers[0].Stride * 4;
3706 if (xfb_obj->Buffers[1])
3707 sos.Buffer1SurfacePitch = linked_xfb_info->Buffers[1].Stride * 4;
3708 if (xfb_obj->Buffers[2])
3709 sos.Buffer2SurfacePitch = linked_xfb_info->Buffers[2].Stride * 4;
3710 if (xfb_obj->Buffers[3])
3711 sos.Buffer3SurfacePitch = linked_xfb_info->Buffers[3].Stride * 4;
3712 #endif
3713
3714 /* We always read the whole vertex. This could be reduced at some
3715 * point by reading less and offsetting the register index in the
3716 * SO_DECLs.
3717 */
3718 sos.Stream0VertexReadOffset = urb_entry_read_offset;
3719 sos.Stream0VertexReadLength = urb_entry_read_length - 1;
3720 sos.Stream1VertexReadOffset = urb_entry_read_offset;
3721 sos.Stream1VertexReadLength = urb_entry_read_length - 1;
3722 sos.Stream2VertexReadOffset = urb_entry_read_offset;
3723 sos.Stream2VertexReadLength = urb_entry_read_length - 1;
3724 sos.Stream3VertexReadOffset = urb_entry_read_offset;
3725 sos.Stream3VertexReadLength = urb_entry_read_length - 1;
3726 }
3727 }
3728 }
3729
3730 static void
3731 genX(upload_sol)(struct brw_context *brw)
3732 {
3733 struct gl_context *ctx = &brw->ctx;
3734 /* BRW_NEW_TRANSFORM_FEEDBACK */
3735 bool active = _mesa_is_xfb_active_and_unpaused(ctx);
3736
3737 if (active) {
3738 genX(upload_3dstate_so_buffers)(brw);
3739
3740 /* BRW_NEW_VUE_MAP_GEOM_OUT */
3741 genX(upload_3dstate_so_decl_list)(brw, &brw->vue_map_geom_out);
3742 }
3743
3744 /* Finally, set up the SOL stage. This command must always follow updates to
3745 * the nonpipelined SOL state (3DSTATE_SO_BUFFER, 3DSTATE_SO_DECL_LIST) or
3746 * MMIO register updates (current performed by the kernel at each batch
3747 * emit).
3748 */
3749 genX(upload_3dstate_streamout)(brw, active, &brw->vue_map_geom_out);
3750 }
3751
3752 static const struct brw_tracked_state genX(sol_state) = {
3753 .dirty = {
3754 .mesa = _NEW_LIGHT,
3755 .brw = BRW_NEW_BATCH |
3756 BRW_NEW_BLORP |
3757 BRW_NEW_RASTERIZER_DISCARD |
3758 BRW_NEW_VUE_MAP_GEOM_OUT |
3759 BRW_NEW_TRANSFORM_FEEDBACK,
3760 },
3761 .emit = genX(upload_sol),
3762 };
3763 #endif
3764
3765 /* ---------------------------------------------------------------------- */
3766
3767 #if GEN_GEN >= 7
3768 static void
3769 genX(upload_ps)(struct brw_context *brw)
3770 {
3771 UNUSED const struct gl_context *ctx = &brw->ctx;
3772 UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
3773
3774 /* BRW_NEW_FS_PROG_DATA */
3775 const struct brw_wm_prog_data *prog_data =
3776 brw_wm_prog_data(brw->wm.base.prog_data);
3777 const struct brw_stage_state *stage_state = &brw->wm.base;
3778
3779 #if GEN_GEN < 8
3780 #endif
3781
3782 brw_batch_emit(brw, GENX(3DSTATE_PS), ps) {
3783 /* Initialize the execution mask with VMask. Otherwise, derivatives are
3784 * incorrect for subspans where some of the pixels are unlit. We believe
3785 * the bit just didn't take effect in previous generations.
3786 */
3787 ps.VectorMaskEnable = GEN_GEN >= 8;
3788
3789 ps.SamplerCount =
3790 DIV_ROUND_UP(CLAMP(stage_state->sampler_count, 0, 16), 4);
3791
3792 /* BRW_NEW_FS_PROG_DATA */
3793 ps.BindingTableEntryCount = prog_data->base.binding_table.size_bytes / 4;
3794
3795 if (prog_data->base.use_alt_mode)
3796 ps.FloatingPointMode = Alternate;
3797
3798 /* Haswell requires the sample mask to be set in this packet as well as
3799 * in 3DSTATE_SAMPLE_MASK; the values should match.
3800 */
3801
3802 /* _NEW_BUFFERS, _NEW_MULTISAMPLE */
3803 #if GEN_IS_HASWELL
3804 ps.SampleMask = genX(determine_sample_mask(brw));
3805 #endif
3806
3807 /* 3DSTATE_PS expects the number of threads per PSD, which is always 64;
3808 * it implicitly scales for different GT levels (which have some # of
3809 * PSDs).
3810 *
3811 * In Gen8 the format is U8-2 whereas in Gen9 it is U8-1.
3812 */
3813 #if GEN_GEN >= 9
3814 ps.MaximumNumberofThreadsPerPSD = 64 - 1;
3815 #elif GEN_GEN >= 8
3816 ps.MaximumNumberofThreadsPerPSD = 64 - 2;
3817 #else
3818 ps.MaximumNumberofThreads = devinfo->max_wm_threads - 1;
3819 #endif
3820
3821 if (prog_data->base.nr_params > 0 ||
3822 prog_data->base.ubo_ranges[0].length > 0)
3823 ps.PushConstantEnable = true;
3824
3825 #if GEN_GEN < 8
3826 /* From the IVB PRM, volume 2 part 1, page 287:
3827 * "This bit is inserted in the PS payload header and made available to
3828 * the DataPort (either via the message header or via header bypass) to
3829 * indicate that oMask data (one or two phases) is included in Render
3830 * Target Write messages. If present, the oMask data is used to mask off
3831 * samples."
3832 */
3833 ps.oMaskPresenttoRenderTarget = prog_data->uses_omask;
3834
3835 /* The hardware wedges if you have this bit set but don't turn on any
3836 * dual source blend factors.
3837 *
3838 * BRW_NEW_FS_PROG_DATA | _NEW_COLOR
3839 */
3840 ps.DualSourceBlendEnable = prog_data->dual_src_blend &&
3841 (ctx->Color.BlendEnabled & 1) &&
3842 ctx->Color.Blend[0]._UsesDualSrc;
3843
3844 /* BRW_NEW_FS_PROG_DATA */
3845 ps.AttributeEnable = (prog_data->num_varying_inputs != 0);
3846 #endif
3847
3848 /* From the documentation for this packet:
3849 * "If the PS kernel does not need the Position XY Offsets to
3850 * compute a Position Value, then this field should be programmed
3851 * to POSOFFSET_NONE."
3852 *
3853 * "SW Recommendation: If the PS kernel needs the Position Offsets
3854 * to compute a Position XY value, this field should match Position
3855 * ZW Interpolation Mode to ensure a consistent position.xyzw
3856 * computation."
3857 *
3858 * We only require XY sample offsets. So, this recommendation doesn't
3859 * look useful at the moment. We might need this in future.
3860 */
3861 if (prog_data->uses_pos_offset)
3862 ps.PositionXYOffsetSelect = POSOFFSET_SAMPLE;
3863 else
3864 ps.PositionXYOffsetSelect = POSOFFSET_NONE;
3865
3866 ps._8PixelDispatchEnable = prog_data->dispatch_8;
3867 ps._16PixelDispatchEnable = prog_data->dispatch_16;
3868 ps.DispatchGRFStartRegisterForConstantSetupData0 =
3869 prog_data->base.dispatch_grf_start_reg;
3870 ps.DispatchGRFStartRegisterForConstantSetupData2 =
3871 prog_data->dispatch_grf_start_reg_2;
3872
3873 ps.KernelStartPointer0 = stage_state->prog_offset;
3874 ps.KernelStartPointer2 = stage_state->prog_offset +
3875 prog_data->prog_offset_2;
3876
3877 if (prog_data->base.total_scratch) {
3878 ps.ScratchSpaceBasePointer =
3879 rw_bo(stage_state->scratch_bo,
3880 ffs(stage_state->per_thread_scratch) - 11);
3881 }
3882 }
3883 }
3884
3885 static const struct brw_tracked_state genX(ps_state) = {
3886 .dirty = {
3887 .mesa = _NEW_MULTISAMPLE |
3888 (GEN_GEN < 8 ? _NEW_BUFFERS |
3889 _NEW_COLOR
3890 : 0),
3891 .brw = BRW_NEW_BATCH |
3892 BRW_NEW_BLORP |
3893 BRW_NEW_FS_PROG_DATA,
3894 },
3895 .emit = genX(upload_ps),
3896 };
3897 #endif
3898
3899 /* ---------------------------------------------------------------------- */
3900
3901 #if GEN_GEN >= 7
3902 static void
3903 genX(upload_hs_state)(struct brw_context *brw)
3904 {
3905 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3906 struct brw_stage_state *stage_state = &brw->tcs.base;
3907 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
3908 const struct brw_vue_prog_data *vue_prog_data =
3909 brw_vue_prog_data(stage_prog_data);
3910
3911 /* BRW_NEW_TES_PROG_DATA */
3912 struct brw_tcs_prog_data *tcs_prog_data =
3913 brw_tcs_prog_data(stage_prog_data);
3914
3915 if (!tcs_prog_data) {
3916 brw_batch_emit(brw, GENX(3DSTATE_HS), hs);
3917 } else {
3918 brw_batch_emit(brw, GENX(3DSTATE_HS), hs) {
3919 INIT_THREAD_DISPATCH_FIELDS(hs, Vertex);
3920
3921 hs.InstanceCount = tcs_prog_data->instances - 1;
3922 hs.IncludeVertexHandles = true;
3923
3924 hs.MaximumNumberofThreads = devinfo->max_tcs_threads - 1;
3925 }
3926 }
3927 }
3928
3929 static const struct brw_tracked_state genX(hs_state) = {
3930 .dirty = {
3931 .mesa = 0,
3932 .brw = BRW_NEW_BATCH |
3933 BRW_NEW_BLORP |
3934 BRW_NEW_TCS_PROG_DATA |
3935 BRW_NEW_TESS_PROGRAMS,
3936 },
3937 .emit = genX(upload_hs_state),
3938 };
3939
3940 static void
3941 genX(upload_ds_state)(struct brw_context *brw)
3942 {
3943 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3944 const struct brw_stage_state *stage_state = &brw->tes.base;
3945 struct brw_stage_prog_data *stage_prog_data = stage_state->prog_data;
3946
3947 /* BRW_NEW_TES_PROG_DATA */
3948 const struct brw_tes_prog_data *tes_prog_data =
3949 brw_tes_prog_data(stage_prog_data);
3950 const struct brw_vue_prog_data *vue_prog_data =
3951 brw_vue_prog_data(stage_prog_data);
3952
3953 if (!tes_prog_data) {
3954 brw_batch_emit(brw, GENX(3DSTATE_DS), ds);
3955 } else {
3956 brw_batch_emit(brw, GENX(3DSTATE_DS), ds) {
3957 INIT_THREAD_DISPATCH_FIELDS(ds, Patch);
3958
3959 ds.MaximumNumberofThreads = devinfo->max_tes_threads - 1;
3960 ds.ComputeWCoordinateEnable =
3961 tes_prog_data->domain == BRW_TESS_DOMAIN_TRI;
3962
3963 #if GEN_GEN >= 8
3964 if (vue_prog_data->dispatch_mode == DISPATCH_MODE_SIMD8)
3965 ds.DispatchMode = DISPATCH_MODE_SIMD8_SINGLE_PATCH;
3966 ds.UserClipDistanceCullTestEnableBitmask =
3967 vue_prog_data->cull_distance_mask;
3968 #endif
3969 }
3970 }
3971 }
3972
3973 static const struct brw_tracked_state genX(ds_state) = {
3974 .dirty = {
3975 .mesa = 0,
3976 .brw = BRW_NEW_BATCH |
3977 BRW_NEW_BLORP |
3978 BRW_NEW_TESS_PROGRAMS |
3979 BRW_NEW_TES_PROG_DATA,
3980 },
3981 .emit = genX(upload_ds_state),
3982 };
3983
3984 /* ---------------------------------------------------------------------- */
3985
3986 static void
3987 upload_te_state(struct brw_context *brw)
3988 {
3989 /* BRW_NEW_TESS_PROGRAMS */
3990 bool active = brw->programs[MESA_SHADER_TESS_EVAL];
3991
3992 /* BRW_NEW_TES_PROG_DATA */
3993 const struct brw_tes_prog_data *tes_prog_data =
3994 brw_tes_prog_data(brw->tes.base.prog_data);
3995
3996 if (active) {
3997 brw_batch_emit(brw, GENX(3DSTATE_TE), te) {
3998 te.Partitioning = tes_prog_data->partitioning;
3999 te.OutputTopology = tes_prog_data->output_topology;
4000 te.TEDomain = tes_prog_data->domain;
4001 te.TEEnable = true;
4002 te.MaximumTessellationFactorOdd = 63.0;
4003 te.MaximumTessellationFactorNotOdd = 64.0;
4004 }
4005 } else {
4006 brw_batch_emit(brw, GENX(3DSTATE_TE), te);
4007 }
4008 }
4009
4010 static const struct brw_tracked_state genX(te_state) = {
4011 .dirty = {
4012 .mesa = 0,
4013 .brw = BRW_NEW_BLORP |
4014 BRW_NEW_CONTEXT |
4015 BRW_NEW_TES_PROG_DATA |
4016 BRW_NEW_TESS_PROGRAMS,
4017 },
4018 .emit = upload_te_state,
4019 };
4020
4021 /* ---------------------------------------------------------------------- */
4022
4023 static void
4024 genX(upload_tes_push_constants)(struct brw_context *brw)
4025 {
4026 struct brw_stage_state *stage_state = &brw->tes.base;
4027 /* BRW_NEW_TESS_PROGRAMS */
4028 const struct gl_program *tep = brw->programs[MESA_SHADER_TESS_EVAL];
4029
4030 if (tep) {
4031 /* BRW_NEW_TES_PROG_DATA */
4032 const struct brw_stage_prog_data *prog_data = brw->tes.base.prog_data;
4033 gen6_upload_push_constants(brw, tep, prog_data, stage_state);
4034 }
4035 }
4036
4037 static const struct brw_tracked_state genX(tes_push_constants) = {
4038 .dirty = {
4039 .mesa = _NEW_PROGRAM_CONSTANTS,
4040 .brw = BRW_NEW_BATCH |
4041 BRW_NEW_BLORP |
4042 BRW_NEW_TESS_PROGRAMS |
4043 BRW_NEW_TES_PROG_DATA,
4044 },
4045 .emit = genX(upload_tes_push_constants),
4046 };
4047
4048 static void
4049 genX(upload_tcs_push_constants)(struct brw_context *brw)
4050 {
4051 struct brw_stage_state *stage_state = &brw->tcs.base;
4052 /* BRW_NEW_TESS_PROGRAMS */
4053 const struct gl_program *tcp = brw->programs[MESA_SHADER_TESS_CTRL];
4054 bool active = brw->programs[MESA_SHADER_TESS_EVAL];
4055
4056 if (active) {
4057 /* BRW_NEW_TCS_PROG_DATA */
4058 const struct brw_stage_prog_data *prog_data = brw->tcs.base.prog_data;
4059
4060 gen6_upload_push_constants(brw, tcp, prog_data, stage_state);
4061 }
4062 }
4063
4064 static const struct brw_tracked_state genX(tcs_push_constants) = {
4065 .dirty = {
4066 .mesa = _NEW_PROGRAM_CONSTANTS,
4067 .brw = BRW_NEW_BATCH |
4068 BRW_NEW_BLORP |
4069 BRW_NEW_DEFAULT_TESS_LEVELS |
4070 BRW_NEW_TESS_PROGRAMS |
4071 BRW_NEW_TCS_PROG_DATA,
4072 },
4073 .emit = genX(upload_tcs_push_constants),
4074 };
4075
4076 #endif
4077
4078 /* ---------------------------------------------------------------------- */
4079
4080 #if GEN_GEN >= 7
4081 static void
4082 genX(upload_cs_push_constants)(struct brw_context *brw)
4083 {
4084 struct brw_stage_state *stage_state = &brw->cs.base;
4085
4086 /* BRW_NEW_COMPUTE_PROGRAM */
4087 const struct gl_program *cp = brw->programs[MESA_SHADER_COMPUTE];
4088
4089 if (cp) {
4090 /* BRW_NEW_CS_PROG_DATA */
4091 struct brw_cs_prog_data *cs_prog_data =
4092 brw_cs_prog_data(brw->cs.base.prog_data);
4093
4094 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_COMPUTE);
4095 brw_upload_cs_push_constants(brw, cp, cs_prog_data, stage_state);
4096 }
4097 }
4098
4099 const struct brw_tracked_state genX(cs_push_constants) = {
4100 .dirty = {
4101 .mesa = _NEW_PROGRAM_CONSTANTS,
4102 .brw = BRW_NEW_BATCH |
4103 BRW_NEW_BLORP |
4104 BRW_NEW_COMPUTE_PROGRAM |
4105 BRW_NEW_CS_PROG_DATA,
4106 },
4107 .emit = genX(upload_cs_push_constants),
4108 };
4109
4110 /**
4111 * Creates a new CS constant buffer reflecting the current CS program's
4112 * constants, if needed by the CS program.
4113 */
4114 static void
4115 genX(upload_cs_pull_constants)(struct brw_context *brw)
4116 {
4117 struct brw_stage_state *stage_state = &brw->cs.base;
4118
4119 /* BRW_NEW_COMPUTE_PROGRAM */
4120 struct brw_program *cp =
4121 (struct brw_program *) brw->programs[MESA_SHADER_COMPUTE];
4122
4123 /* BRW_NEW_CS_PROG_DATA */
4124 const struct brw_stage_prog_data *prog_data = brw->cs.base.prog_data;
4125
4126 _mesa_shader_write_subroutine_indices(&brw->ctx, MESA_SHADER_COMPUTE);
4127 /* _NEW_PROGRAM_CONSTANTS */
4128 brw_upload_pull_constants(brw, BRW_NEW_SURFACES, &cp->program,
4129 stage_state, prog_data);
4130 }
4131
4132 const struct brw_tracked_state genX(cs_pull_constants) = {
4133 .dirty = {
4134 .mesa = _NEW_PROGRAM_CONSTANTS,
4135 .brw = BRW_NEW_BATCH |
4136 BRW_NEW_BLORP |
4137 BRW_NEW_COMPUTE_PROGRAM |
4138 BRW_NEW_CS_PROG_DATA,
4139 },
4140 .emit = genX(upload_cs_pull_constants),
4141 };
4142
4143 static void
4144 genX(upload_cs_state)(struct brw_context *brw)
4145 {
4146 if (!brw->cs.base.prog_data)
4147 return;
4148
4149 uint32_t offset;
4150 uint32_t *desc = (uint32_t*) brw_state_batch(
4151 brw, GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t), 64,
4152 &offset);
4153
4154 struct brw_stage_state *stage_state = &brw->cs.base;
4155 struct brw_stage_prog_data *prog_data = stage_state->prog_data;
4156 struct brw_cs_prog_data *cs_prog_data = brw_cs_prog_data(prog_data);
4157 const struct gen_device_info *devinfo = &brw->screen->devinfo;
4158
4159 if (INTEL_DEBUG & DEBUG_SHADER_TIME) {
4160 brw_emit_buffer_surface_state(
4161 brw, &stage_state->surf_offset[
4162 prog_data->binding_table.shader_time_start],
4163 brw->shader_time.bo, 0, ISL_FORMAT_RAW,
4164 brw->shader_time.bo->size, 1,
4165 RELOC_WRITE);
4166 }
4167
4168 uint32_t *bind = brw_state_batch(brw, prog_data->binding_table.size_bytes,
4169 32, &stage_state->bind_bo_offset);
4170
4171 brw_batch_emit(brw, GENX(MEDIA_VFE_STATE), vfe) {
4172 if (prog_data->total_scratch) {
4173 uint32_t bo_offset;
4174
4175 if (GEN_GEN >= 8) {
4176 /* Broadwell's Per Thread Scratch Space is in the range [0, 11]
4177 * where 0 = 1k, 1 = 2k, 2 = 4k, ..., 11 = 2M.
4178 */
4179 bo_offset = ffs(stage_state->per_thread_scratch) - 11;
4180 } else if (GEN_IS_HASWELL) {
4181 /* Haswell's Per Thread Scratch Space is in the range [0, 10]
4182 * where 0 = 2k, 1 = 4k, 2 = 8k, ..., 10 = 2M.
4183 */
4184 bo_offset = ffs(stage_state->per_thread_scratch) - 12;
4185 } else {
4186 /* Earlier platforms use the range [0, 11] to mean [1kB, 12kB]
4187 * where 0 = 1kB, 1 = 2kB, 2 = 3kB, ..., 11 = 12kB.
4188 */
4189 bo_offset = stage_state->per_thread_scratch / 1024 - 1;
4190 }
4191 vfe.ScratchSpaceBasePointer =
4192 rw_bo(stage_state->scratch_bo, bo_offset);
4193 }
4194
4195 const uint32_t subslices = MAX2(brw->screen->subslice_total, 1);
4196 vfe.MaximumNumberofThreads = devinfo->max_cs_threads * subslices - 1;
4197 vfe.NumberofURBEntries = GEN_GEN >= 8 ? 2 : 0;
4198 vfe.ResetGatewayTimer =
4199 Resettingrelativetimerandlatchingtheglobaltimestamp;
4200 #if GEN_GEN < 9
4201 vfe.BypassGatewayControl = BypassingOpenGatewayCloseGatewayprotocol;
4202 #endif
4203 #if GEN_GEN == 7
4204 vfe.GPGPUMode = 1;
4205 #endif
4206
4207 /* We are uploading duplicated copies of push constant uniforms for each
4208 * thread. Although the local id data needs to vary per thread, it won't
4209 * change for other uniform data. Unfortunately this duplication is
4210 * required for gen7. As of Haswell, this duplication can be avoided,
4211 * but this older mechanism with duplicated data continues to work.
4212 *
4213 * FINISHME: As of Haswell, we could make use of the
4214 * INTERFACE_DESCRIPTOR_DATA "Cross-Thread Constant Data Read Length"
4215 * field to only store one copy of uniform data.
4216 *
4217 * FINISHME: Broadwell adds a new alternative "Indirect Payload Storage"
4218 * which is described in the GPGPU_WALKER command and in the Broadwell
4219 * PRM Volume 7: 3D Media GPGPU, under Media GPGPU Pipeline => Mode of
4220 * Operations => GPGPU Mode => Indirect Payload Storage.
4221 *
4222 * Note: The constant data is built in brw_upload_cs_push_constants
4223 * below.
4224 */
4225 vfe.URBEntryAllocationSize = GEN_GEN >= 8 ? 2 : 0;
4226
4227 const uint32_t vfe_curbe_allocation =
4228 ALIGN(cs_prog_data->push.per_thread.regs * cs_prog_data->threads +
4229 cs_prog_data->push.cross_thread.regs, 2);
4230 vfe.CURBEAllocationSize = vfe_curbe_allocation;
4231 }
4232
4233 if (cs_prog_data->push.total.size > 0) {
4234 brw_batch_emit(brw, GENX(MEDIA_CURBE_LOAD), curbe) {
4235 curbe.CURBETotalDataLength =
4236 ALIGN(cs_prog_data->push.total.size, 64);
4237 curbe.CURBEDataStartAddress = stage_state->push_const_offset;
4238 }
4239 }
4240
4241 /* BRW_NEW_SURFACES and BRW_NEW_*_CONSTBUF */
4242 memcpy(bind, stage_state->surf_offset,
4243 prog_data->binding_table.size_bytes);
4244 const struct GENX(INTERFACE_DESCRIPTOR_DATA) idd = {
4245 .KernelStartPointer = brw->cs.base.prog_offset,
4246 .SamplerStatePointer = stage_state->sampler_offset,
4247 .SamplerCount = DIV_ROUND_UP(stage_state->sampler_count, 4) >> 2,
4248 .BindingTablePointer = stage_state->bind_bo_offset,
4249 .ConstantURBEntryReadLength = cs_prog_data->push.per_thread.regs,
4250 .NumberofThreadsinGPGPUThreadGroup = cs_prog_data->threads,
4251 .SharedLocalMemorySize = encode_slm_size(GEN_GEN,
4252 prog_data->total_shared),
4253 .BarrierEnable = cs_prog_data->uses_barrier,
4254 #if GEN_GEN >= 8 || GEN_IS_HASWELL
4255 .CrossThreadConstantDataReadLength =
4256 cs_prog_data->push.cross_thread.regs,
4257 #endif
4258 };
4259
4260 GENX(INTERFACE_DESCRIPTOR_DATA_pack)(brw, desc, &idd);
4261
4262 brw_batch_emit(brw, GENX(MEDIA_INTERFACE_DESCRIPTOR_LOAD), load) {
4263 load.InterfaceDescriptorTotalLength =
4264 GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t);
4265 load.InterfaceDescriptorDataStartAddress = offset;
4266 }
4267 }
4268
4269 static const struct brw_tracked_state genX(cs_state) = {
4270 .dirty = {
4271 .mesa = _NEW_PROGRAM_CONSTANTS,
4272 .brw = BRW_NEW_BATCH |
4273 BRW_NEW_BLORP |
4274 BRW_NEW_CS_PROG_DATA |
4275 BRW_NEW_SAMPLER_STATE_TABLE |
4276 BRW_NEW_SURFACES,
4277 },
4278 .emit = genX(upload_cs_state)
4279 };
4280
4281 #endif
4282
4283 /* ---------------------------------------------------------------------- */
4284
4285 #if GEN_GEN >= 8
4286 static void
4287 genX(upload_raster)(struct brw_context *brw)
4288 {
4289 struct gl_context *ctx = &brw->ctx;
4290
4291 /* _NEW_BUFFERS */
4292 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
4293
4294 /* _NEW_POLYGON */
4295 struct gl_polygon_attrib *polygon = &ctx->Polygon;
4296
4297 /* _NEW_POINT */
4298 struct gl_point_attrib *point = &ctx->Point;
4299
4300 brw_batch_emit(brw, GENX(3DSTATE_RASTER), raster) {
4301 if (brw->polygon_front_bit == render_to_fbo)
4302 raster.FrontWinding = CounterClockwise;
4303
4304 if (polygon->CullFlag) {
4305 switch (polygon->CullFaceMode) {
4306 case GL_FRONT:
4307 raster.CullMode = CULLMODE_FRONT;
4308 break;
4309 case GL_BACK:
4310 raster.CullMode = CULLMODE_BACK;
4311 break;
4312 case GL_FRONT_AND_BACK:
4313 raster.CullMode = CULLMODE_BOTH;
4314 break;
4315 default:
4316 unreachable("not reached");
4317 }
4318 } else {
4319 raster.CullMode = CULLMODE_NONE;
4320 }
4321
4322 point->SmoothFlag = raster.SmoothPointEnable;
4323
4324 raster.DXMultisampleRasterizationEnable =
4325 _mesa_is_multisample_enabled(ctx);
4326
4327 raster.GlobalDepthOffsetEnableSolid = polygon->OffsetFill;
4328 raster.GlobalDepthOffsetEnableWireframe = polygon->OffsetLine;
4329 raster.GlobalDepthOffsetEnablePoint = polygon->OffsetPoint;
4330
4331 switch (polygon->FrontMode) {
4332 case GL_FILL:
4333 raster.FrontFaceFillMode = FILL_MODE_SOLID;
4334 break;
4335 case GL_LINE:
4336 raster.FrontFaceFillMode = FILL_MODE_WIREFRAME;
4337 break;
4338 case GL_POINT:
4339 raster.FrontFaceFillMode = FILL_MODE_POINT;
4340 break;
4341 default:
4342 unreachable("not reached");
4343 }
4344
4345 switch (polygon->BackMode) {
4346 case GL_FILL:
4347 raster.BackFaceFillMode = FILL_MODE_SOLID;
4348 break;
4349 case GL_LINE:
4350 raster.BackFaceFillMode = FILL_MODE_WIREFRAME;
4351 break;
4352 case GL_POINT:
4353 raster.BackFaceFillMode = FILL_MODE_POINT;
4354 break;
4355 default:
4356 unreachable("not reached");
4357 }
4358
4359 /* _NEW_LINE */
4360 raster.AntialiasingEnable = ctx->Line.SmoothFlag;
4361
4362 /* _NEW_SCISSOR */
4363 raster.ScissorRectangleEnable = ctx->Scissor.EnableFlags;
4364
4365 /* _NEW_TRANSFORM */
4366 if (!ctx->Transform.DepthClamp) {
4367 #if GEN_GEN >= 9
4368 raster.ViewportZFarClipTestEnable = true;
4369 raster.ViewportZNearClipTestEnable = true;
4370 #else
4371 raster.ViewportZClipTestEnable = true;
4372 #endif
4373 }
4374
4375 /* BRW_NEW_CONSERVATIVE_RASTERIZATION */
4376 #if GEN_GEN >= 9
4377 raster.ConservativeRasterizationEnable =
4378 ctx->IntelConservativeRasterization;
4379 #endif
4380
4381 raster.GlobalDepthOffsetClamp = polygon->OffsetClamp;
4382 raster.GlobalDepthOffsetScale = polygon->OffsetFactor;
4383
4384 raster.GlobalDepthOffsetConstant = polygon->OffsetUnits * 2;
4385 }
4386 }
4387
4388 static const struct brw_tracked_state genX(raster_state) = {
4389 .dirty = {
4390 .mesa = _NEW_BUFFERS |
4391 _NEW_LINE |
4392 _NEW_MULTISAMPLE |
4393 _NEW_POINT |
4394 _NEW_POLYGON |
4395 _NEW_SCISSOR |
4396 _NEW_TRANSFORM,
4397 .brw = BRW_NEW_BLORP |
4398 BRW_NEW_CONTEXT |
4399 BRW_NEW_CONSERVATIVE_RASTERIZATION,
4400 },
4401 .emit = genX(upload_raster),
4402 };
4403 #endif
4404
4405 /* ---------------------------------------------------------------------- */
4406
4407 #if GEN_GEN >= 8
4408 static void
4409 genX(upload_ps_extra)(struct brw_context *brw)
4410 {
4411 UNUSED struct gl_context *ctx = &brw->ctx;
4412
4413 const struct brw_wm_prog_data *prog_data =
4414 brw_wm_prog_data(brw->wm.base.prog_data);
4415
4416 brw_batch_emit(brw, GENX(3DSTATE_PS_EXTRA), psx) {
4417 psx.PixelShaderValid = true;
4418 psx.PixelShaderComputedDepthMode = prog_data->computed_depth_mode;
4419 psx.PixelShaderKillsPixel = prog_data->uses_kill;
4420 psx.AttributeEnable = prog_data->num_varying_inputs != 0;
4421 psx.PixelShaderUsesSourceDepth = prog_data->uses_src_depth;
4422 psx.PixelShaderUsesSourceW = prog_data->uses_src_w;
4423 psx.PixelShaderIsPerSample = prog_data->persample_dispatch;
4424
4425 /* _NEW_MULTISAMPLE | BRW_NEW_CONSERVATIVE_RASTERIZATION */
4426 if (prog_data->uses_sample_mask) {
4427 #if GEN_GEN >= 9
4428 if (prog_data->post_depth_coverage)
4429 psx.InputCoverageMaskState = ICMS_DEPTH_COVERAGE;
4430 else if (prog_data->inner_coverage && ctx->IntelConservativeRasterization)
4431 psx.InputCoverageMaskState = ICMS_INNER_CONSERVATIVE;
4432 else
4433 psx.InputCoverageMaskState = ICMS_NORMAL;
4434 #else
4435 psx.PixelShaderUsesInputCoverageMask = true;
4436 #endif
4437 }
4438
4439 psx.oMaskPresenttoRenderTarget = prog_data->uses_omask;
4440 #if GEN_GEN >= 9
4441 psx.PixelShaderPullsBary = prog_data->pulls_bary;
4442 psx.PixelShaderComputesStencil = prog_data->computed_stencil;
4443 #endif
4444
4445 /* The stricter cross-primitive coherency guarantees that the hardware
4446 * gives us with the "Accesses UAV" bit set for at least one shader stage
4447 * and the "UAV coherency required" bit set on the 3DPRIMITIVE command
4448 * are redundant within the current image, atomic counter and SSBO GL
4449 * APIs, which all have very loose ordering and coherency requirements
4450 * and generally rely on the application to insert explicit barriers when
4451 * a shader invocation is expected to see the memory writes performed by
4452 * the invocations of some previous primitive. Regardless of the value
4453 * of "UAV coherency required", the "Accesses UAV" bits will implicitly
4454 * cause an in most cases useless DC flush when the lowermost stage with
4455 * the bit set finishes execution.
4456 *
4457 * It would be nice to disable it, but in some cases we can't because on
4458 * Gen8+ it also has an influence on rasterization via the PS UAV-only
4459 * signal (which could be set independently from the coherency mechanism
4460 * in the 3DSTATE_WM command on Gen7), and because in some cases it will
4461 * determine whether the hardware skips execution of the fragment shader
4462 * or not via the ThreadDispatchEnable signal. However if we know that
4463 * GEN8_PS_BLEND_HAS_WRITEABLE_RT is going to be set and
4464 * GEN8_PSX_PIXEL_SHADER_NO_RT_WRITE is not set it shouldn't make any
4465 * difference so we may just disable it here.
4466 *
4467 * Gen8 hardware tries to compute ThreadDispatchEnable for us but doesn't
4468 * take into account KillPixels when no depth or stencil writes are
4469 * enabled. In order for occlusion queries to work correctly with no
4470 * attachments, we need to force-enable here.
4471 *
4472 * BRW_NEW_FS_PROG_DATA | BRW_NEW_FRAGMENT_PROGRAM | _NEW_BUFFERS |
4473 * _NEW_COLOR
4474 */
4475 if ((prog_data->has_side_effects || prog_data->uses_kill) &&
4476 !brw_color_buffer_write_enabled(brw))
4477 psx.PixelShaderHasUAV = true;
4478 }
4479 }
4480
4481 const struct brw_tracked_state genX(ps_extra) = {
4482 .dirty = {
4483 .mesa = _NEW_BUFFERS | _NEW_COLOR,
4484 .brw = BRW_NEW_BLORP |
4485 BRW_NEW_CONTEXT |
4486 BRW_NEW_FRAGMENT_PROGRAM |
4487 BRW_NEW_FS_PROG_DATA |
4488 BRW_NEW_CONSERVATIVE_RASTERIZATION,
4489 },
4490 .emit = genX(upload_ps_extra),
4491 };
4492 #endif
4493
4494 /* ---------------------------------------------------------------------- */
4495
4496 #if GEN_GEN >= 8
4497 static void
4498 genX(upload_ps_blend)(struct brw_context *brw)
4499 {
4500 struct gl_context *ctx = &brw->ctx;
4501
4502 /* _NEW_BUFFERS */
4503 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[0];
4504 const bool buffer0_is_integer = ctx->DrawBuffer->_IntegerBuffers & 0x1;
4505
4506 /* _NEW_COLOR */
4507 struct gl_colorbuffer_attrib *color = &ctx->Color;
4508
4509 brw_batch_emit(brw, GENX(3DSTATE_PS_BLEND), pb) {
4510 /* BRW_NEW_FRAGMENT_PROGRAM | _NEW_BUFFERS | _NEW_COLOR */
4511 pb.HasWriteableRT = brw_color_buffer_write_enabled(brw);
4512
4513 bool alpha_to_one = false;
4514
4515 if (!buffer0_is_integer) {
4516 /* _NEW_MULTISAMPLE */
4517
4518 if (_mesa_is_multisample_enabled(ctx)) {
4519 pb.AlphaToCoverageEnable = ctx->Multisample.SampleAlphaToCoverage;
4520 alpha_to_one = ctx->Multisample.SampleAlphaToOne;
4521 }
4522
4523 pb.AlphaTestEnable = color->AlphaEnabled;
4524 }
4525
4526 /* Used for implementing the following bit of GL_EXT_texture_integer:
4527 * "Per-fragment operations that require floating-point color
4528 * components, including multisample alpha operations, alpha test,
4529 * blending, and dithering, have no effect when the corresponding
4530 * colors are written to an integer color buffer."
4531 *
4532 * The OpenGL specification 3.3 (page 196), section 4.1.3 says:
4533 * "If drawbuffer zero is not NONE and the buffer it references has an
4534 * integer format, the SAMPLE_ALPHA_TO_COVERAGE and SAMPLE_ALPHA_TO_ONE
4535 * operations are skipped."
4536 */
4537 if (rb && !buffer0_is_integer && (color->BlendEnabled & 1)) {
4538 GLenum eqRGB = color->Blend[0].EquationRGB;
4539 GLenum eqA = color->Blend[0].EquationA;
4540 GLenum srcRGB = color->Blend[0].SrcRGB;
4541 GLenum dstRGB = color->Blend[0].DstRGB;
4542 GLenum srcA = color->Blend[0].SrcA;
4543 GLenum dstA = color->Blend[0].DstA;
4544
4545 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
4546 srcRGB = dstRGB = GL_ONE;
4547
4548 if (eqA == GL_MIN || eqA == GL_MAX)
4549 srcA = dstA = GL_ONE;
4550
4551 /* Due to hardware limitations, the destination may have information
4552 * in an alpha channel even when the format specifies no alpha
4553 * channel. In order to avoid getting any incorrect blending due to
4554 * that alpha channel, coerce the blend factors to values that will
4555 * not read the alpha channel, but will instead use the correct
4556 * implicit value for alpha.
4557 */
4558 if (!_mesa_base_format_has_channel(rb->_BaseFormat,
4559 GL_TEXTURE_ALPHA_TYPE)) {
4560 srcRGB = brw_fix_xRGB_alpha(srcRGB);
4561 srcA = brw_fix_xRGB_alpha(srcA);
4562 dstRGB = brw_fix_xRGB_alpha(dstRGB);
4563 dstA = brw_fix_xRGB_alpha(dstA);
4564 }
4565
4566 /* Alpha to One doesn't work with Dual Color Blending. Override
4567 * SRC1_ALPHA to ONE and ONE_MINUS_SRC1_ALPHA to ZERO.
4568 */
4569 if (alpha_to_one && color->Blend[0]._UsesDualSrc) {
4570 srcRGB = fix_dual_blend_alpha_to_one(srcRGB);
4571 srcA = fix_dual_blend_alpha_to_one(srcA);
4572 dstRGB = fix_dual_blend_alpha_to_one(dstRGB);
4573 dstA = fix_dual_blend_alpha_to_one(dstA);
4574 }
4575
4576 pb.ColorBufferBlendEnable = true;
4577 pb.SourceAlphaBlendFactor = brw_translate_blend_factor(srcA);
4578 pb.DestinationAlphaBlendFactor = brw_translate_blend_factor(dstA);
4579 pb.SourceBlendFactor = brw_translate_blend_factor(srcRGB);
4580 pb.DestinationBlendFactor = brw_translate_blend_factor(dstRGB);
4581
4582 pb.IndependentAlphaBlendEnable =
4583 srcA != srcRGB || dstA != dstRGB || eqA != eqRGB;
4584 }
4585 }
4586 }
4587
4588 static const struct brw_tracked_state genX(ps_blend) = {
4589 .dirty = {
4590 .mesa = _NEW_BUFFERS |
4591 _NEW_COLOR |
4592 _NEW_MULTISAMPLE,
4593 .brw = BRW_NEW_BLORP |
4594 BRW_NEW_CONTEXT |
4595 BRW_NEW_FRAGMENT_PROGRAM,
4596 },
4597 .emit = genX(upload_ps_blend)
4598 };
4599 #endif
4600
4601 /* ---------------------------------------------------------------------- */
4602
4603 #if GEN_GEN >= 8
4604 static void
4605 genX(emit_vf_topology)(struct brw_context *brw)
4606 {
4607 brw_batch_emit(brw, GENX(3DSTATE_VF_TOPOLOGY), vftopo) {
4608 vftopo.PrimitiveTopologyType = brw->primitive;
4609 }
4610 }
4611
4612 static const struct brw_tracked_state genX(vf_topology) = {
4613 .dirty = {
4614 .mesa = 0,
4615 .brw = BRW_NEW_BLORP |
4616 BRW_NEW_PRIMITIVE,
4617 },
4618 .emit = genX(emit_vf_topology),
4619 };
4620 #endif
4621
4622 /* ---------------------------------------------------------------------- */
4623
4624 #if GEN_GEN >= 7
4625 static void
4626 genX(emit_mi_report_perf_count)(struct brw_context *brw,
4627 struct brw_bo *bo,
4628 uint32_t offset_in_bytes,
4629 uint32_t report_id)
4630 {
4631 brw_batch_emit(brw, GENX(MI_REPORT_PERF_COUNT), mi_rpc) {
4632 mi_rpc.MemoryAddress = ggtt_bo(bo, offset_in_bytes);
4633 mi_rpc.ReportID = report_id;
4634 }
4635 }
4636 #endif
4637
4638 /* ---------------------------------------------------------------------- */
4639
4640 /**
4641 * Emit a 3DSTATE_SAMPLER_STATE_POINTERS_{VS,HS,GS,DS,PS} packet.
4642 */
4643 static void
4644 genX(emit_sampler_state_pointers_xs)(struct brw_context *brw,
4645 struct brw_stage_state *stage_state)
4646 {
4647 #if GEN_GEN >= 7
4648 static const uint16_t packet_headers[] = {
4649 [MESA_SHADER_VERTEX] = 43,
4650 [MESA_SHADER_TESS_CTRL] = 44,
4651 [MESA_SHADER_TESS_EVAL] = 45,
4652 [MESA_SHADER_GEOMETRY] = 46,
4653 [MESA_SHADER_FRAGMENT] = 47,
4654 };
4655
4656 /* Ivybridge requires a workaround flush before VS packets. */
4657 if (GEN_GEN == 7 && !GEN_IS_HASWELL &&
4658 stage_state->stage == MESA_SHADER_VERTEX) {
4659 gen7_emit_vs_workaround_flush(brw);
4660 }
4661
4662 brw_batch_emit(brw, GENX(3DSTATE_SAMPLER_STATE_POINTERS_VS), ptr) {
4663 ptr._3DCommandSubOpcode = packet_headers[stage_state->stage];
4664 ptr.PointertoVSSamplerState = stage_state->sampler_offset;
4665 }
4666 #endif
4667 }
4668
4669 UNUSED static bool
4670 has_component(mesa_format format, int i)
4671 {
4672 if (_mesa_is_format_color_format(format))
4673 return _mesa_format_has_color_component(format, i);
4674
4675 /* depth and stencil have only one component */
4676 return i == 0;
4677 }
4678
4679 /**
4680 * Upload SAMPLER_BORDER_COLOR_STATE.
4681 */
4682 static void
4683 genX(upload_default_color)(struct brw_context *brw,
4684 const struct gl_sampler_object *sampler,
4685 mesa_format format, GLenum base_format,
4686 bool is_integer_format, bool is_stencil_sampling,
4687 uint32_t *sdc_offset)
4688 {
4689 union gl_color_union color;
4690
4691 switch (base_format) {
4692 case GL_DEPTH_COMPONENT:
4693 /* GL specs that border color for depth textures is taken from the
4694 * R channel, while the hardware uses A. Spam R into all the
4695 * channels for safety.
4696 */
4697 color.ui[0] = sampler->BorderColor.ui[0];
4698 color.ui[1] = sampler->BorderColor.ui[0];
4699 color.ui[2] = sampler->BorderColor.ui[0];
4700 color.ui[3] = sampler->BorderColor.ui[0];
4701 break;
4702 case GL_ALPHA:
4703 color.ui[0] = 0u;
4704 color.ui[1] = 0u;
4705 color.ui[2] = 0u;
4706 color.ui[3] = sampler->BorderColor.ui[3];
4707 break;
4708 case GL_INTENSITY:
4709 color.ui[0] = sampler->BorderColor.ui[0];
4710 color.ui[1] = sampler->BorderColor.ui[0];
4711 color.ui[2] = sampler->BorderColor.ui[0];
4712 color.ui[3] = sampler->BorderColor.ui[0];
4713 break;
4714 case GL_LUMINANCE:
4715 color.ui[0] = sampler->BorderColor.ui[0];
4716 color.ui[1] = sampler->BorderColor.ui[0];
4717 color.ui[2] = sampler->BorderColor.ui[0];
4718 color.ui[3] = float_as_int(1.0);
4719 break;
4720 case GL_LUMINANCE_ALPHA:
4721 color.ui[0] = sampler->BorderColor.ui[0];
4722 color.ui[1] = sampler->BorderColor.ui[0];
4723 color.ui[2] = sampler->BorderColor.ui[0];
4724 color.ui[3] = sampler->BorderColor.ui[3];
4725 break;
4726 default:
4727 color.ui[0] = sampler->BorderColor.ui[0];
4728 color.ui[1] = sampler->BorderColor.ui[1];
4729 color.ui[2] = sampler->BorderColor.ui[2];
4730 color.ui[3] = sampler->BorderColor.ui[3];
4731 break;
4732 }
4733
4734 /* In some cases we use an RGBA surface format for GL RGB textures,
4735 * where we've initialized the A channel to 1.0. We also have to set
4736 * the border color alpha to 1.0 in that case.
4737 */
4738 if (base_format == GL_RGB)
4739 color.ui[3] = float_as_int(1.0);
4740
4741 int alignment = 32;
4742 if (GEN_GEN >= 8) {
4743 alignment = 64;
4744 } else if (GEN_IS_HASWELL && (is_integer_format || is_stencil_sampling)) {
4745 alignment = 512;
4746 }
4747
4748 uint32_t *sdc = brw_state_batch(
4749 brw, GENX(SAMPLER_BORDER_COLOR_STATE_length) * sizeof(uint32_t),
4750 alignment, sdc_offset);
4751
4752 struct GENX(SAMPLER_BORDER_COLOR_STATE) state = { 0 };
4753
4754 #define ASSIGN(dst, src) \
4755 do { \
4756 dst = src; \
4757 } while (0)
4758
4759 #define ASSIGNu16(dst, src) \
4760 do { \
4761 dst = (uint16_t)src; \
4762 } while (0)
4763
4764 #define ASSIGNu8(dst, src) \
4765 do { \
4766 dst = (uint8_t)src; \
4767 } while (0)
4768
4769 #define BORDER_COLOR_ATTR(macro, _color_type, src) \
4770 macro(state.BorderColor ## _color_type ## Red, src[0]); \
4771 macro(state.BorderColor ## _color_type ## Green, src[1]); \
4772 macro(state.BorderColor ## _color_type ## Blue, src[2]); \
4773 macro(state.BorderColor ## _color_type ## Alpha, src[3]);
4774
4775 #if GEN_GEN >= 8
4776 /* On Broadwell, the border color is represented as four 32-bit floats,
4777 * integers, or unsigned values, interpreted according to the surface
4778 * format. This matches the sampler->BorderColor union exactly; just
4779 * memcpy the values.
4780 */
4781 BORDER_COLOR_ATTR(ASSIGN, 32bit, color.ui);
4782 #elif GEN_IS_HASWELL
4783 if (is_integer_format || is_stencil_sampling) {
4784 bool stencil = format == MESA_FORMAT_S_UINT8 || is_stencil_sampling;
4785 const int bits_per_channel =
4786 _mesa_get_format_bits(format, stencil ? GL_STENCIL_BITS : GL_RED_BITS);
4787
4788 /* From the Haswell PRM, "Command Reference: Structures", Page 36:
4789 * "If any color channel is missing from the surface format,
4790 * corresponding border color should be programmed as zero and if
4791 * alpha channel is missing, corresponding Alpha border color should
4792 * be programmed as 1."
4793 */
4794 unsigned c[4] = { 0, 0, 0, 1 };
4795 for (int i = 0; i < 4; i++) {
4796 if (has_component(format, i))
4797 c[i] = color.ui[i];
4798 }
4799
4800 switch (bits_per_channel) {
4801 case 8:
4802 /* Copy RGBA in order. */
4803 BORDER_COLOR_ATTR(ASSIGNu8, 8bit, c);
4804 break;
4805 case 10:
4806 /* R10G10B10A2_UINT is treated like a 16-bit format. */
4807 case 16:
4808 BORDER_COLOR_ATTR(ASSIGNu16, 16bit, c);
4809 break;
4810 case 32:
4811 if (base_format == GL_RG) {
4812 /* Careful inspection of the tables reveals that for RG32 formats,
4813 * the green channel needs to go where blue normally belongs.
4814 */
4815 state.BorderColor32bitRed = c[0];
4816 state.BorderColor32bitBlue = c[1];
4817 state.BorderColor32bitAlpha = 1;
4818 } else {
4819 /* Copy RGBA in order. */
4820 BORDER_COLOR_ATTR(ASSIGN, 32bit, c);
4821 }
4822 break;
4823 default:
4824 assert(!"Invalid number of bits per channel in integer format.");
4825 break;
4826 }
4827 } else {
4828 BORDER_COLOR_ATTR(ASSIGN, Float, color.f);
4829 }
4830 #elif GEN_GEN == 5 || GEN_GEN == 6
4831 BORDER_COLOR_ATTR(UNCLAMPED_FLOAT_TO_UBYTE, Unorm, color.f);
4832 BORDER_COLOR_ATTR(UNCLAMPED_FLOAT_TO_USHORT, Unorm16, color.f);
4833 BORDER_COLOR_ATTR(UNCLAMPED_FLOAT_TO_SHORT, Snorm16, color.f);
4834
4835 #define MESA_FLOAT_TO_HALF(dst, src) \
4836 dst = _mesa_float_to_half(src);
4837
4838 BORDER_COLOR_ATTR(MESA_FLOAT_TO_HALF, Float16, color.f);
4839
4840 #undef MESA_FLOAT_TO_HALF
4841
4842 state.BorderColorSnorm8Red = state.BorderColorSnorm16Red >> 8;
4843 state.BorderColorSnorm8Green = state.BorderColorSnorm16Green >> 8;
4844 state.BorderColorSnorm8Blue = state.BorderColorSnorm16Blue >> 8;
4845 state.BorderColorSnorm8Alpha = state.BorderColorSnorm16Alpha >> 8;
4846
4847 BORDER_COLOR_ATTR(ASSIGN, Float, color.f);
4848 #elif GEN_GEN == 4
4849 BORDER_COLOR_ATTR(ASSIGN, , color.f);
4850 #else
4851 BORDER_COLOR_ATTR(ASSIGN, Float, color.f);
4852 #endif
4853
4854 #undef ASSIGN
4855 #undef BORDER_COLOR_ATTR
4856
4857 GENX(SAMPLER_BORDER_COLOR_STATE_pack)(brw, sdc, &state);
4858 }
4859
4860 static uint32_t
4861 translate_wrap_mode(struct brw_context *brw, GLenum wrap, bool using_nearest)
4862 {
4863 switch (wrap) {
4864 case GL_REPEAT:
4865 return TCM_WRAP;
4866 case GL_CLAMP:
4867 #if GEN_GEN >= 8
4868 /* GL_CLAMP is the weird mode where coordinates are clamped to
4869 * [0.0, 1.0], so linear filtering of coordinates outside of
4870 * [0.0, 1.0] give you half edge texel value and half border
4871 * color.
4872 *
4873 * Gen8+ supports this natively.
4874 */
4875 return TCM_HALF_BORDER;
4876 #else
4877 /* On Gen4-7.5, we clamp the coordinates in the fragment shader
4878 * and set clamp_border here, which gets the result desired.
4879 * We just use clamp(_to_edge) for nearest, because for nearest
4880 * clamping to 1.0 gives border color instead of the desired
4881 * edge texels.
4882 */
4883 if (using_nearest)
4884 return TCM_CLAMP;
4885 else
4886 return TCM_CLAMP_BORDER;
4887 #endif
4888 case GL_CLAMP_TO_EDGE:
4889 return TCM_CLAMP;
4890 case GL_CLAMP_TO_BORDER:
4891 return TCM_CLAMP_BORDER;
4892 case GL_MIRRORED_REPEAT:
4893 return TCM_MIRROR;
4894 case GL_MIRROR_CLAMP_TO_EDGE:
4895 return TCM_MIRROR_ONCE;
4896 default:
4897 return TCM_WRAP;
4898 }
4899 }
4900
4901 /**
4902 * Return true if the given wrap mode requires the border color to exist.
4903 */
4904 static bool
4905 wrap_mode_needs_border_color(unsigned wrap_mode)
4906 {
4907 #if GEN_GEN >= 8
4908 return wrap_mode == TCM_CLAMP_BORDER ||
4909 wrap_mode == TCM_HALF_BORDER;
4910 #else
4911 return wrap_mode == TCM_CLAMP_BORDER;
4912 #endif
4913 }
4914
4915 /**
4916 * Sets the sampler state for a single unit based off of the sampler key
4917 * entry.
4918 */
4919 static void
4920 genX(update_sampler_state)(struct brw_context *brw,
4921 GLenum target, bool tex_cube_map_seamless,
4922 GLfloat tex_unit_lod_bias,
4923 mesa_format format, GLenum base_format,
4924 const struct gl_texture_object *texObj,
4925 const struct gl_sampler_object *sampler,
4926 uint32_t *sampler_state,
4927 uint32_t batch_offset_for_sampler_state)
4928 {
4929 struct GENX(SAMPLER_STATE) samp_st = { 0 };
4930
4931 /* Select min and mip filters. */
4932 switch (sampler->MinFilter) {
4933 case GL_NEAREST:
4934 samp_st.MinModeFilter = MAPFILTER_NEAREST;
4935 samp_st.MipModeFilter = MIPFILTER_NONE;
4936 break;
4937 case GL_LINEAR:
4938 samp_st.MinModeFilter = MAPFILTER_LINEAR;
4939 samp_st.MipModeFilter = MIPFILTER_NONE;
4940 break;
4941 case GL_NEAREST_MIPMAP_NEAREST:
4942 samp_st.MinModeFilter = MAPFILTER_NEAREST;
4943 samp_st.MipModeFilter = MIPFILTER_NEAREST;
4944 break;
4945 case GL_LINEAR_MIPMAP_NEAREST:
4946 samp_st.MinModeFilter = MAPFILTER_LINEAR;
4947 samp_st.MipModeFilter = MIPFILTER_NEAREST;
4948 break;
4949 case GL_NEAREST_MIPMAP_LINEAR:
4950 samp_st.MinModeFilter = MAPFILTER_NEAREST;
4951 samp_st.MipModeFilter = MIPFILTER_LINEAR;
4952 break;
4953 case GL_LINEAR_MIPMAP_LINEAR:
4954 samp_st.MinModeFilter = MAPFILTER_LINEAR;
4955 samp_st.MipModeFilter = MIPFILTER_LINEAR;
4956 break;
4957 default:
4958 unreachable("not reached");
4959 }
4960
4961 /* Select mag filter. */
4962 samp_st.MagModeFilter = sampler->MagFilter == GL_LINEAR ?
4963 MAPFILTER_LINEAR : MAPFILTER_NEAREST;
4964
4965 /* Enable anisotropic filtering if desired. */
4966 samp_st.MaximumAnisotropy = RATIO21;
4967
4968 if (sampler->MaxAnisotropy > 1.0f) {
4969 if (samp_st.MinModeFilter == MAPFILTER_LINEAR)
4970 samp_st.MinModeFilter = MAPFILTER_ANISOTROPIC;
4971 if (samp_st.MagModeFilter == MAPFILTER_LINEAR)
4972 samp_st.MagModeFilter = MAPFILTER_ANISOTROPIC;
4973
4974 if (sampler->MaxAnisotropy > 2.0f) {
4975 samp_st.MaximumAnisotropy =
4976 MIN2((sampler->MaxAnisotropy - 2) / 2, RATIO161);
4977 }
4978 }
4979
4980 /* Set address rounding bits if not using nearest filtering. */
4981 if (samp_st.MinModeFilter != MAPFILTER_NEAREST) {
4982 samp_st.UAddressMinFilterRoundingEnable = true;
4983 samp_st.VAddressMinFilterRoundingEnable = true;
4984 samp_st.RAddressMinFilterRoundingEnable = true;
4985 }
4986
4987 if (samp_st.MagModeFilter != MAPFILTER_NEAREST) {
4988 samp_st.UAddressMagFilterRoundingEnable = true;
4989 samp_st.VAddressMagFilterRoundingEnable = true;
4990 samp_st.RAddressMagFilterRoundingEnable = true;
4991 }
4992
4993 bool either_nearest =
4994 sampler->MinFilter == GL_NEAREST || sampler->MagFilter == GL_NEAREST;
4995 unsigned wrap_s = translate_wrap_mode(brw, sampler->WrapS, either_nearest);
4996 unsigned wrap_t = translate_wrap_mode(brw, sampler->WrapT, either_nearest);
4997 unsigned wrap_r = translate_wrap_mode(brw, sampler->WrapR, either_nearest);
4998
4999 if (target == GL_TEXTURE_CUBE_MAP ||
5000 target == GL_TEXTURE_CUBE_MAP_ARRAY) {
5001 /* Cube maps must use the same wrap mode for all three coordinate
5002 * dimensions. Prior to Haswell, only CUBE and CLAMP are valid.
5003 *
5004 * Ivybridge and Baytrail seem to have problems with CUBE mode and
5005 * integer formats. Fall back to CLAMP for now.
5006 */
5007 if ((tex_cube_map_seamless || sampler->CubeMapSeamless) &&
5008 !(GEN_GEN == 7 && !GEN_IS_HASWELL && texObj->_IsIntegerFormat)) {
5009 wrap_s = TCM_CUBE;
5010 wrap_t = TCM_CUBE;
5011 wrap_r = TCM_CUBE;
5012 } else {
5013 wrap_s = TCM_CLAMP;
5014 wrap_t = TCM_CLAMP;
5015 wrap_r = TCM_CLAMP;
5016 }
5017 } else if (target == GL_TEXTURE_1D) {
5018 /* There's a bug in 1D texture sampling - it actually pays
5019 * attention to the wrap_t value, though it should not.
5020 * Override the wrap_t value here to GL_REPEAT to keep
5021 * any nonexistent border pixels from floating in.
5022 */
5023 wrap_t = TCM_WRAP;
5024 }
5025
5026 samp_st.TCXAddressControlMode = wrap_s;
5027 samp_st.TCYAddressControlMode = wrap_t;
5028 samp_st.TCZAddressControlMode = wrap_r;
5029
5030 samp_st.ShadowFunction =
5031 sampler->CompareMode == GL_COMPARE_R_TO_TEXTURE_ARB ?
5032 intel_translate_shadow_compare_func(sampler->CompareFunc) : 0;
5033
5034 #if GEN_GEN >= 7
5035 /* Set shadow function. */
5036 samp_st.AnisotropicAlgorithm =
5037 samp_st.MinModeFilter == MAPFILTER_ANISOTROPIC ?
5038 EWAApproximation : LEGACY;
5039 #endif
5040
5041 #if GEN_GEN >= 6
5042 samp_st.NonnormalizedCoordinateEnable = target == GL_TEXTURE_RECTANGLE;
5043 #endif
5044
5045 const float hw_max_lod = GEN_GEN >= 7 ? 14 : 13;
5046 samp_st.MinLOD = CLAMP(sampler->MinLod, 0, hw_max_lod);
5047 samp_st.MaxLOD = CLAMP(sampler->MaxLod, 0, hw_max_lod);
5048 samp_st.TextureLODBias =
5049 CLAMP(tex_unit_lod_bias + sampler->LodBias, -16, 15);
5050
5051 #if GEN_GEN == 6
5052 samp_st.BaseMipLevel =
5053 CLAMP(texObj->MinLevel + texObj->BaseLevel, 0, hw_max_lod);
5054 samp_st.MinandMagStateNotEqual =
5055 samp_st.MinModeFilter != samp_st.MagModeFilter;
5056 #endif
5057
5058 /* Upload the border color if necessary. If not, just point it at
5059 * offset 0 (the start of the batch) - the color should be ignored,
5060 * but that address won't fault in case something reads it anyway.
5061 */
5062 uint32_t border_color_offset = 0;
5063 if (wrap_mode_needs_border_color(wrap_s) ||
5064 wrap_mode_needs_border_color(wrap_t) ||
5065 wrap_mode_needs_border_color(wrap_r)) {
5066 genX(upload_default_color)(brw, sampler, format, base_format,
5067 texObj->_IsIntegerFormat,
5068 texObj->StencilSampling,
5069 &border_color_offset);
5070 }
5071 #if GEN_GEN < 6
5072 samp_st.BorderColorPointer =
5073 ro_bo(brw->batch.state_bo, border_color_offset);
5074 #else
5075 samp_st.BorderColorPointer = border_color_offset;
5076 #endif
5077
5078 #if GEN_GEN >= 8
5079 samp_st.LODPreClampMode = CLAMP_MODE_OGL;
5080 #else
5081 samp_st.LODPreClampEnable = true;
5082 #endif
5083
5084 GENX(SAMPLER_STATE_pack)(brw, sampler_state, &samp_st);
5085 }
5086
5087 static void
5088 update_sampler_state(struct brw_context *brw,
5089 int unit,
5090 uint32_t *sampler_state,
5091 uint32_t batch_offset_for_sampler_state)
5092 {
5093 struct gl_context *ctx = &brw->ctx;
5094 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
5095 const struct gl_texture_object *texObj = texUnit->_Current;
5096 const struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
5097
5098 /* These don't use samplers at all. */
5099 if (texObj->Target == GL_TEXTURE_BUFFER)
5100 return;
5101
5102 struct gl_texture_image *firstImage = texObj->Image[0][texObj->BaseLevel];
5103 genX(update_sampler_state)(brw, texObj->Target,
5104 ctx->Texture.CubeMapSeamless,
5105 texUnit->LodBias,
5106 firstImage->TexFormat, firstImage->_BaseFormat,
5107 texObj, sampler,
5108 sampler_state, batch_offset_for_sampler_state);
5109 }
5110
5111 static void
5112 genX(upload_sampler_state_table)(struct brw_context *brw,
5113 struct gl_program *prog,
5114 struct brw_stage_state *stage_state)
5115 {
5116 struct gl_context *ctx = &brw->ctx;
5117 uint32_t sampler_count = stage_state->sampler_count;
5118
5119 GLbitfield SamplersUsed = prog->SamplersUsed;
5120
5121 if (sampler_count == 0)
5122 return;
5123
5124 /* SAMPLER_STATE is 4 DWords on all platforms. */
5125 const int dwords = GENX(SAMPLER_STATE_length);
5126 const int size_in_bytes = dwords * sizeof(uint32_t);
5127
5128 uint32_t *sampler_state = brw_state_batch(brw,
5129 sampler_count * size_in_bytes,
5130 32, &stage_state->sampler_offset);
5131 /* memset(sampler_state, 0, sampler_count * size_in_bytes); */
5132
5133 uint32_t batch_offset_for_sampler_state = stage_state->sampler_offset;
5134
5135 for (unsigned s = 0; s < sampler_count; s++) {
5136 if (SamplersUsed & (1 << s)) {
5137 const unsigned unit = prog->SamplerUnits[s];
5138 if (ctx->Texture.Unit[unit]._Current) {
5139 update_sampler_state(brw, unit, sampler_state,
5140 batch_offset_for_sampler_state);
5141 }
5142 }
5143
5144 sampler_state += dwords;
5145 batch_offset_for_sampler_state += size_in_bytes;
5146 }
5147
5148 if (GEN_GEN >= 7 && stage_state->stage != MESA_SHADER_COMPUTE) {
5149 /* Emit a 3DSTATE_SAMPLER_STATE_POINTERS_XS packet. */
5150 genX(emit_sampler_state_pointers_xs)(brw, stage_state);
5151 } else {
5152 /* Flag that the sampler state table pointer has changed; later atoms
5153 * will handle it.
5154 */
5155 brw->ctx.NewDriverState |= BRW_NEW_SAMPLER_STATE_TABLE;
5156 }
5157 }
5158
5159 static void
5160 genX(upload_fs_samplers)(struct brw_context *brw)
5161 {
5162 /* BRW_NEW_FRAGMENT_PROGRAM */
5163 struct gl_program *fs = brw->programs[MESA_SHADER_FRAGMENT];
5164 genX(upload_sampler_state_table)(brw, fs, &brw->wm.base);
5165 }
5166
5167 static const struct brw_tracked_state genX(fs_samplers) = {
5168 .dirty = {
5169 .mesa = _NEW_TEXTURE,
5170 .brw = BRW_NEW_BATCH |
5171 BRW_NEW_BLORP |
5172 BRW_NEW_FRAGMENT_PROGRAM,
5173 },
5174 .emit = genX(upload_fs_samplers),
5175 };
5176
5177 static void
5178 genX(upload_vs_samplers)(struct brw_context *brw)
5179 {
5180 /* BRW_NEW_VERTEX_PROGRAM */
5181 struct gl_program *vs = brw->programs[MESA_SHADER_VERTEX];
5182 genX(upload_sampler_state_table)(brw, vs, &brw->vs.base);
5183 }
5184
5185 static const struct brw_tracked_state genX(vs_samplers) = {
5186 .dirty = {
5187 .mesa = _NEW_TEXTURE,
5188 .brw = BRW_NEW_BATCH |
5189 BRW_NEW_BLORP |
5190 BRW_NEW_VERTEX_PROGRAM,
5191 },
5192 .emit = genX(upload_vs_samplers),
5193 };
5194
5195 #if GEN_GEN >= 6
5196 static void
5197 genX(upload_gs_samplers)(struct brw_context *brw)
5198 {
5199 /* BRW_NEW_GEOMETRY_PROGRAM */
5200 struct gl_program *gs = brw->programs[MESA_SHADER_GEOMETRY];
5201 if (!gs)
5202 return;
5203
5204 genX(upload_sampler_state_table)(brw, gs, &brw->gs.base);
5205 }
5206
5207
5208 static const struct brw_tracked_state genX(gs_samplers) = {
5209 .dirty = {
5210 .mesa = _NEW_TEXTURE,
5211 .brw = BRW_NEW_BATCH |
5212 BRW_NEW_BLORP |
5213 BRW_NEW_GEOMETRY_PROGRAM,
5214 },
5215 .emit = genX(upload_gs_samplers),
5216 };
5217 #endif
5218
5219 #if GEN_GEN >= 7
5220 static void
5221 genX(upload_tcs_samplers)(struct brw_context *brw)
5222 {
5223 /* BRW_NEW_TESS_PROGRAMS */
5224 struct gl_program *tcs = brw->programs[MESA_SHADER_TESS_CTRL];
5225 if (!tcs)
5226 return;
5227
5228 genX(upload_sampler_state_table)(brw, tcs, &brw->tcs.base);
5229 }
5230
5231 static const struct brw_tracked_state genX(tcs_samplers) = {
5232 .dirty = {
5233 .mesa = _NEW_TEXTURE,
5234 .brw = BRW_NEW_BATCH |
5235 BRW_NEW_BLORP |
5236 BRW_NEW_TESS_PROGRAMS,
5237 },
5238 .emit = genX(upload_tcs_samplers),
5239 };
5240 #endif
5241
5242 #if GEN_GEN >= 7
5243 static void
5244 genX(upload_tes_samplers)(struct brw_context *brw)
5245 {
5246 /* BRW_NEW_TESS_PROGRAMS */
5247 struct gl_program *tes = brw->programs[MESA_SHADER_TESS_EVAL];
5248 if (!tes)
5249 return;
5250
5251 genX(upload_sampler_state_table)(brw, tes, &brw->tes.base);
5252 }
5253
5254 static const struct brw_tracked_state genX(tes_samplers) = {
5255 .dirty = {
5256 .mesa = _NEW_TEXTURE,
5257 .brw = BRW_NEW_BATCH |
5258 BRW_NEW_BLORP |
5259 BRW_NEW_TESS_PROGRAMS,
5260 },
5261 .emit = genX(upload_tes_samplers),
5262 };
5263 #endif
5264
5265 #if GEN_GEN >= 7
5266 static void
5267 genX(upload_cs_samplers)(struct brw_context *brw)
5268 {
5269 /* BRW_NEW_COMPUTE_PROGRAM */
5270 struct gl_program *cs = brw->programs[MESA_SHADER_COMPUTE];
5271 if (!cs)
5272 return;
5273
5274 genX(upload_sampler_state_table)(brw, cs, &brw->cs.base);
5275 }
5276
5277 const struct brw_tracked_state genX(cs_samplers) = {
5278 .dirty = {
5279 .mesa = _NEW_TEXTURE,
5280 .brw = BRW_NEW_BATCH |
5281 BRW_NEW_BLORP |
5282 BRW_NEW_COMPUTE_PROGRAM,
5283 },
5284 .emit = genX(upload_cs_samplers),
5285 };
5286 #endif
5287
5288 /* ---------------------------------------------------------------------- */
5289
5290 #if GEN_GEN <= 5
5291
5292 static void genX(upload_blend_constant_color)(struct brw_context *brw)
5293 {
5294 struct gl_context *ctx = &brw->ctx;
5295
5296 brw_batch_emit(brw, GENX(3DSTATE_CONSTANT_COLOR), blend_cc) {
5297 blend_cc.BlendConstantColorRed = ctx->Color.BlendColorUnclamped[0];
5298 blend_cc.BlendConstantColorGreen = ctx->Color.BlendColorUnclamped[1];
5299 blend_cc.BlendConstantColorBlue = ctx->Color.BlendColorUnclamped[2];
5300 blend_cc.BlendConstantColorAlpha = ctx->Color.BlendColorUnclamped[3];
5301 }
5302 }
5303
5304 static const struct brw_tracked_state genX(blend_constant_color) = {
5305 .dirty = {
5306 .mesa = _NEW_COLOR,
5307 .brw = BRW_NEW_CONTEXT |
5308 BRW_NEW_BLORP,
5309 },
5310 .emit = genX(upload_blend_constant_color)
5311 };
5312 #endif
5313
5314 /* ---------------------------------------------------------------------- */
5315
5316 void
5317 genX(init_atoms)(struct brw_context *brw)
5318 {
5319 #if GEN_GEN < 6
5320 static const struct brw_tracked_state *render_atoms[] =
5321 {
5322 /* Once all the programs are done, we know how large urb entry
5323 * sizes need to be and can decide if we need to change the urb
5324 * layout.
5325 */
5326 &brw_curbe_offsets,
5327 &brw_recalculate_urb_fence,
5328
5329 &genX(cc_vp),
5330 &genX(color_calc_state),
5331
5332 /* Surface state setup. Must come before the VS/WM unit. The binding
5333 * table upload must be last.
5334 */
5335 &brw_vs_pull_constants,
5336 &brw_wm_pull_constants,
5337 &brw_renderbuffer_surfaces,
5338 &brw_renderbuffer_read_surfaces,
5339 &brw_texture_surfaces,
5340 &brw_vs_binding_table,
5341 &brw_wm_binding_table,
5342
5343 &genX(fs_samplers),
5344 &genX(vs_samplers),
5345
5346 /* These set up state for brw_psp_urb_cbs */
5347 &genX(wm_state),
5348 &genX(sf_clip_viewport),
5349 &genX(sf_state),
5350 &genX(vs_state), /* always required, enabled or not */
5351 &genX(clip_state),
5352 &genX(gs_state),
5353
5354 /* Command packets:
5355 */
5356 &brw_invariant_state,
5357
5358 &brw_binding_table_pointers,
5359 &genX(blend_constant_color),
5360
5361 &brw_depthbuffer,
5362
5363 &genX(polygon_stipple),
5364 &genX(polygon_stipple_offset),
5365
5366 &genX(line_stipple),
5367
5368 &brw_psp_urb_cbs,
5369
5370 &genX(drawing_rect),
5371 &brw_indices, /* must come before brw_vertices */
5372 &genX(index_buffer),
5373 &genX(vertices),
5374
5375 &brw_constant_buffer
5376 };
5377 #elif GEN_GEN == 6
5378 static const struct brw_tracked_state *render_atoms[] =
5379 {
5380 &genX(sf_clip_viewport),
5381
5382 /* Command packets: */
5383
5384 &genX(cc_vp),
5385
5386 &gen6_urb,
5387 &genX(blend_state), /* must do before cc unit */
5388 &genX(color_calc_state), /* must do before cc unit */
5389 &genX(depth_stencil_state), /* must do before cc unit */
5390
5391 &genX(vs_push_constants), /* Before vs_state */
5392 &genX(gs_push_constants), /* Before gs_state */
5393 &genX(wm_push_constants), /* Before wm_state */
5394
5395 /* Surface state setup. Must come before the VS/WM unit. The binding
5396 * table upload must be last.
5397 */
5398 &brw_vs_pull_constants,
5399 &brw_vs_ubo_surfaces,
5400 &brw_gs_pull_constants,
5401 &brw_gs_ubo_surfaces,
5402 &brw_wm_pull_constants,
5403 &brw_wm_ubo_surfaces,
5404 &gen6_renderbuffer_surfaces,
5405 &brw_renderbuffer_read_surfaces,
5406 &brw_texture_surfaces,
5407 &gen6_sol_surface,
5408 &brw_vs_binding_table,
5409 &gen6_gs_binding_table,
5410 &brw_wm_binding_table,
5411
5412 &genX(fs_samplers),
5413 &genX(vs_samplers),
5414 &genX(gs_samplers),
5415 &gen6_sampler_state,
5416 &genX(multisample_state),
5417
5418 &genX(vs_state),
5419 &genX(gs_state),
5420 &genX(clip_state),
5421 &genX(sf_state),
5422 &genX(wm_state),
5423
5424 &genX(scissor_state),
5425
5426 &gen6_binding_table_pointers,
5427
5428 &brw_depthbuffer,
5429
5430 &genX(polygon_stipple),
5431 &genX(polygon_stipple_offset),
5432
5433 &genX(line_stipple),
5434
5435 &genX(drawing_rect),
5436
5437 &brw_indices, /* must come before brw_vertices */
5438 &genX(index_buffer),
5439 &genX(vertices),
5440 };
5441 #elif GEN_GEN == 7
5442 static const struct brw_tracked_state *render_atoms[] =
5443 {
5444 /* Command packets: */
5445
5446 &genX(cc_vp),
5447 &genX(sf_clip_viewport),
5448
5449 &gen7_l3_state,
5450 &gen7_push_constant_space,
5451 &gen7_urb,
5452 &genX(blend_state), /* must do before cc unit */
5453 &genX(color_calc_state), /* must do before cc unit */
5454 &genX(depth_stencil_state), /* must do before cc unit */
5455
5456 &brw_vs_image_surfaces, /* Before vs push/pull constants and binding table */
5457 &brw_tcs_image_surfaces, /* Before tcs push/pull constants and binding table */
5458 &brw_tes_image_surfaces, /* Before tes push/pull constants and binding table */
5459 &brw_gs_image_surfaces, /* Before gs push/pull constants and binding table */
5460 &brw_wm_image_surfaces, /* Before wm push/pull constants and binding table */
5461
5462 &genX(vs_push_constants), /* Before vs_state */
5463 &genX(tcs_push_constants),
5464 &genX(tes_push_constants),
5465 &genX(gs_push_constants), /* Before gs_state */
5466 &genX(wm_push_constants), /* Before wm_surfaces and constant_buffer */
5467
5468 /* Surface state setup. Must come before the VS/WM unit. The binding
5469 * table upload must be last.
5470 */
5471 &brw_vs_pull_constants,
5472 &brw_vs_ubo_surfaces,
5473 &brw_vs_abo_surfaces,
5474 &brw_tcs_pull_constants,
5475 &brw_tcs_ubo_surfaces,
5476 &brw_tcs_abo_surfaces,
5477 &brw_tes_pull_constants,
5478 &brw_tes_ubo_surfaces,
5479 &brw_tes_abo_surfaces,
5480 &brw_gs_pull_constants,
5481 &brw_gs_ubo_surfaces,
5482 &brw_gs_abo_surfaces,
5483 &brw_wm_pull_constants,
5484 &brw_wm_ubo_surfaces,
5485 &brw_wm_abo_surfaces,
5486 &gen6_renderbuffer_surfaces,
5487 &brw_renderbuffer_read_surfaces,
5488 &brw_texture_surfaces,
5489
5490 &genX(push_constant_packets),
5491
5492 &brw_vs_binding_table,
5493 &brw_tcs_binding_table,
5494 &brw_tes_binding_table,
5495 &brw_gs_binding_table,
5496 &brw_wm_binding_table,
5497
5498 &genX(fs_samplers),
5499 &genX(vs_samplers),
5500 &genX(tcs_samplers),
5501 &genX(tes_samplers),
5502 &genX(gs_samplers),
5503 &genX(multisample_state),
5504
5505 &genX(vs_state),
5506 &genX(hs_state),
5507 &genX(te_state),
5508 &genX(ds_state),
5509 &genX(gs_state),
5510 &genX(sol_state),
5511 &genX(clip_state),
5512 &genX(sbe_state),
5513 &genX(sf_state),
5514 &genX(wm_state),
5515 &genX(ps_state),
5516
5517 &genX(scissor_state),
5518
5519 &gen7_depthbuffer,
5520
5521 &genX(polygon_stipple),
5522 &genX(polygon_stipple_offset),
5523
5524 &genX(line_stipple),
5525
5526 &genX(drawing_rect),
5527
5528 &brw_indices, /* must come before brw_vertices */
5529 &genX(index_buffer),
5530 &genX(vertices),
5531
5532 #if GEN_IS_HASWELL
5533 &genX(cut_index),
5534 #endif
5535 };
5536 #elif GEN_GEN >= 8
5537 static const struct brw_tracked_state *render_atoms[] =
5538 {
5539 &genX(cc_vp),
5540 &genX(sf_clip_viewport),
5541
5542 &gen7_l3_state,
5543 &gen7_push_constant_space,
5544 &gen7_urb,
5545 &genX(blend_state),
5546 &genX(color_calc_state),
5547
5548 &brw_vs_image_surfaces, /* Before vs push/pull constants and binding table */
5549 &brw_tcs_image_surfaces, /* Before tcs push/pull constants and binding table */
5550 &brw_tes_image_surfaces, /* Before tes push/pull constants and binding table */
5551 &brw_gs_image_surfaces, /* Before gs push/pull constants and binding table */
5552 &brw_wm_image_surfaces, /* Before wm push/pull constants and binding table */
5553
5554 &genX(vs_push_constants), /* Before vs_state */
5555 &genX(tcs_push_constants),
5556 &genX(tes_push_constants),
5557 &genX(gs_push_constants), /* Before gs_state */
5558 &genX(wm_push_constants), /* Before wm_surfaces and constant_buffer */
5559
5560 /* Surface state setup. Must come before the VS/WM unit. The binding
5561 * table upload must be last.
5562 */
5563 &brw_vs_pull_constants,
5564 &brw_vs_ubo_surfaces,
5565 &brw_vs_abo_surfaces,
5566 &brw_tcs_pull_constants,
5567 &brw_tcs_ubo_surfaces,
5568 &brw_tcs_abo_surfaces,
5569 &brw_tes_pull_constants,
5570 &brw_tes_ubo_surfaces,
5571 &brw_tes_abo_surfaces,
5572 &brw_gs_pull_constants,
5573 &brw_gs_ubo_surfaces,
5574 &brw_gs_abo_surfaces,
5575 &brw_wm_pull_constants,
5576 &brw_wm_ubo_surfaces,
5577 &brw_wm_abo_surfaces,
5578 &gen6_renderbuffer_surfaces,
5579 &brw_renderbuffer_read_surfaces,
5580 &brw_texture_surfaces,
5581
5582 &genX(push_constant_packets),
5583
5584 &brw_vs_binding_table,
5585 &brw_tcs_binding_table,
5586 &brw_tes_binding_table,
5587 &brw_gs_binding_table,
5588 &brw_wm_binding_table,
5589
5590 &genX(fs_samplers),
5591 &genX(vs_samplers),
5592 &genX(tcs_samplers),
5593 &genX(tes_samplers),
5594 &genX(gs_samplers),
5595 &genX(multisample_state),
5596
5597 &genX(vs_state),
5598 &genX(hs_state),
5599 &genX(te_state),
5600 &genX(ds_state),
5601 &genX(gs_state),
5602 &genX(sol_state),
5603 &genX(clip_state),
5604 &genX(raster_state),
5605 &genX(sbe_state),
5606 &genX(sf_state),
5607 &genX(ps_blend),
5608 &genX(ps_extra),
5609 &genX(ps_state),
5610 &genX(depth_stencil_state),
5611 &genX(wm_state),
5612
5613 &genX(scissor_state),
5614
5615 &gen7_depthbuffer,
5616
5617 &genX(polygon_stipple),
5618 &genX(polygon_stipple_offset),
5619
5620 &genX(line_stipple),
5621
5622 &genX(drawing_rect),
5623
5624 &genX(vf_topology),
5625
5626 &brw_indices,
5627 &genX(index_buffer),
5628 &genX(vertices),
5629
5630 &genX(cut_index),
5631 &gen8_pma_fix,
5632 };
5633 #endif
5634
5635 STATIC_ASSERT(ARRAY_SIZE(render_atoms) <= ARRAY_SIZE(brw->render_atoms));
5636 brw_copy_pipeline_atoms(brw, BRW_RENDER_PIPELINE,
5637 render_atoms, ARRAY_SIZE(render_atoms));
5638
5639 #if GEN_GEN >= 7
5640 static const struct brw_tracked_state *compute_atoms[] =
5641 {
5642 &gen7_l3_state,
5643 &brw_cs_image_surfaces,
5644 &genX(cs_push_constants),
5645 &genX(cs_pull_constants),
5646 &brw_cs_ubo_surfaces,
5647 &brw_cs_abo_surfaces,
5648 &brw_cs_texture_surfaces,
5649 &brw_cs_work_groups_surface,
5650 &genX(cs_samplers),
5651 &genX(cs_state),
5652 };
5653
5654 STATIC_ASSERT(ARRAY_SIZE(compute_atoms) <= ARRAY_SIZE(brw->compute_atoms));
5655 brw_copy_pipeline_atoms(brw, BRW_COMPUTE_PIPELINE,
5656 compute_atoms, ARRAY_SIZE(compute_atoms));
5657
5658 brw->vtbl.emit_mi_report_perf_count = genX(emit_mi_report_perf_count);
5659 #endif
5660 }