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