intel/blorp: Use the hardware op for CCS ambiguate on gen10+
[mesa.git] / src / intel / blorp / blorp_genX_exec.h
1 /*
2 * Copyright © 2016 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 #ifndef BLORP_GENX_EXEC_H
25 #define BLORP_GENX_EXEC_H
26
27 #include "blorp_priv.h"
28 #include "dev/gen_device_info.h"
29 #include "common/gen_sample_positions.h"
30 #include "genxml/gen_macros.h"
31
32 /**
33 * This file provides the blorp pipeline setup and execution functionality.
34 * It defines the following function:
35 *
36 * static void
37 * blorp_exec(struct blorp_context *blorp, void *batch_data,
38 * const struct blorp_params *params);
39 *
40 * It is the job of whoever includes this header to wrap this in something
41 * to get an externally visible symbol.
42 *
43 * In order for the blorp_exec function to work, the driver must provide
44 * implementations of the following static helper functions.
45 */
46
47 static void *
48 blorp_emit_dwords(struct blorp_batch *batch, unsigned n);
49
50 static uint64_t
51 blorp_emit_reloc(struct blorp_batch *batch,
52 void *location, struct blorp_address address, uint32_t delta);
53
54 static void *
55 blorp_alloc_dynamic_state(struct blorp_batch *batch,
56 uint32_t size,
57 uint32_t alignment,
58 uint32_t *offset);
59 static void *
60 blorp_alloc_vertex_buffer(struct blorp_batch *batch, uint32_t size,
61 struct blorp_address *addr);
62 static void
63 blorp_vf_invalidate_for_vb_48b_transitions(struct blorp_batch *batch,
64 const struct blorp_address *addrs,
65 unsigned num_vbs);
66
67 #if GEN_GEN >= 8
68 static struct blorp_address
69 blorp_get_workaround_page(struct blorp_batch *batch);
70 #endif
71
72 static void
73 blorp_alloc_binding_table(struct blorp_batch *batch, unsigned num_entries,
74 unsigned state_size, unsigned state_alignment,
75 uint32_t *bt_offset, uint32_t *surface_offsets,
76 void **surface_maps);
77
78 static void
79 blorp_flush_range(struct blorp_batch *batch, void *start, size_t size);
80
81 static void
82 blorp_surface_reloc(struct blorp_batch *batch, uint32_t ss_offset,
83 struct blorp_address address, uint32_t delta);
84
85 static uint64_t
86 blorp_get_surface_address(struct blorp_batch *batch,
87 struct blorp_address address);
88
89 #if GEN_GEN >= 7 && GEN_GEN < 10
90 static struct blorp_address
91 blorp_get_surface_base_address(struct blorp_batch *batch);
92 #endif
93
94 static void
95 blorp_emit_urb_config(struct blorp_batch *batch,
96 unsigned vs_entry_size, unsigned sf_entry_size);
97
98 static void
99 blorp_emit_pipeline(struct blorp_batch *batch,
100 const struct blorp_params *params);
101
102 /***** BEGIN blorp_exec implementation ******/
103
104 static uint64_t
105 _blorp_combine_address(struct blorp_batch *batch, void *location,
106 struct blorp_address address, uint32_t delta)
107 {
108 if (address.buffer == NULL) {
109 return address.offset + delta;
110 } else {
111 return blorp_emit_reloc(batch, location, address, delta);
112 }
113 }
114
115 #define __gen_address_type struct blorp_address
116 #define __gen_user_data struct blorp_batch
117 #define __gen_combine_address _blorp_combine_address
118
119 #include "genxml/genX_pack.h"
120
121 #define _blorp_cmd_length(cmd) cmd ## _length
122 #define _blorp_cmd_length_bias(cmd) cmd ## _length_bias
123 #define _blorp_cmd_header(cmd) cmd ## _header
124 #define _blorp_cmd_pack(cmd) cmd ## _pack
125
126 #define blorp_emit(batch, cmd, name) \
127 for (struct cmd name = { _blorp_cmd_header(cmd) }, \
128 *_dst = blorp_emit_dwords(batch, _blorp_cmd_length(cmd)); \
129 __builtin_expect(_dst != NULL, 1); \
130 _blorp_cmd_pack(cmd)(batch, (void *)_dst, &name), \
131 _dst = NULL)
132
133 #define blorp_emitn(batch, cmd, n, ...) ({ \
134 uint32_t *_dw = blorp_emit_dwords(batch, n); \
135 if (_dw) { \
136 struct cmd template = { \
137 _blorp_cmd_header(cmd), \
138 .DWordLength = n - _blorp_cmd_length_bias(cmd), \
139 __VA_ARGS__ \
140 }; \
141 _blorp_cmd_pack(cmd)(batch, _dw, &template); \
142 } \
143 _dw ? _dw + 1 : NULL; /* Array starts at dw[1] */ \
144 })
145
146 #define STRUCT_ZERO(S) ({ struct S t; memset(&t, 0, sizeof(t)); t; })
147
148 #define blorp_emit_dynamic(batch, state, name, align, offset) \
149 for (struct state name = STRUCT_ZERO(state), \
150 *_dst = blorp_alloc_dynamic_state(batch, \
151 _blorp_cmd_length(state) * 4, \
152 align, offset); \
153 __builtin_expect(_dst != NULL, 1); \
154 _blorp_cmd_pack(state)(batch, (void *)_dst, &name), \
155 blorp_flush_range(batch, _dst, _blorp_cmd_length(state) * 4), \
156 _dst = NULL)
157
158 /* 3DSTATE_URB
159 * 3DSTATE_URB_VS
160 * 3DSTATE_URB_HS
161 * 3DSTATE_URB_DS
162 * 3DSTATE_URB_GS
163 *
164 * Assign the entire URB to the VS. Even though the VS disabled, URB space
165 * is still needed because the clipper loads the VUE's from the URB. From
166 * the Sandybridge PRM, Volume 2, Part 1, Section 3DSTATE,
167 * Dword 1.15:0 "VS Number of URB Entries":
168 * This field is always used (even if VS Function Enable is DISABLED).
169 *
170 * The warning below appears in the PRM (Section 3DSTATE_URB), but we can
171 * safely ignore it because this batch contains only one draw call.
172 * Because of URB corruption caused by allocating a previous GS unit
173 * URB entry to the VS unit, software is required to send a “GS NULL
174 * Fence” (Send URB fence with VS URB size == 1 and GS URB size == 0)
175 * plus a dummy DRAW call before any case where VS will be taking over
176 * GS URB space.
177 *
178 * If the 3DSTATE_URB_VS is emitted, than the others must be also.
179 * From the Ivybridge PRM, Volume 2 Part 1, section 1.7.1 3DSTATE_URB_VS:
180 *
181 * 3DSTATE_URB_HS, 3DSTATE_URB_DS, and 3DSTATE_URB_GS must also be
182 * programmed in order for the programming of this state to be
183 * valid.
184 */
185 static void
186 emit_urb_config(struct blorp_batch *batch,
187 const struct blorp_params *params)
188 {
189 /* Once vertex fetcher has written full VUE entries with complete
190 * header the space requirement is as follows per vertex (in bytes):
191 *
192 * Header Position Program constants
193 * +--------+------------+-------------------+
194 * | 16 | 16 | n x 16 |
195 * +--------+------------+-------------------+
196 *
197 * where 'n' stands for number of varying inputs expressed as vec4s.
198 */
199 const unsigned num_varyings =
200 params->wm_prog_data ? params->wm_prog_data->num_varying_inputs : 0;
201 const unsigned total_needed = 16 + 16 + num_varyings * 16;
202
203 /* The URB size is expressed in units of 64 bytes (512 bits) */
204 const unsigned vs_entry_size = DIV_ROUND_UP(total_needed, 64);
205
206 const unsigned sf_entry_size =
207 params->sf_prog_data ? params->sf_prog_data->urb_entry_size : 0;
208
209 blorp_emit_urb_config(batch, vs_entry_size, sf_entry_size);
210 }
211
212 #if GEN_GEN >= 7
213 static void
214 blorp_emit_memcpy(struct blorp_batch *batch,
215 struct blorp_address dst,
216 struct blorp_address src,
217 uint32_t size);
218 #endif
219
220 static void
221 blorp_emit_vertex_data(struct blorp_batch *batch,
222 const struct blorp_params *params,
223 struct blorp_address *addr,
224 uint32_t *size)
225 {
226 const float vertices[] = {
227 /* v0 */ (float)params->x1, (float)params->y1, params->z,
228 /* v1 */ (float)params->x0, (float)params->y1, params->z,
229 /* v2 */ (float)params->x0, (float)params->y0, params->z,
230 };
231
232 void *data = blorp_alloc_vertex_buffer(batch, sizeof(vertices), addr);
233 memcpy(data, vertices, sizeof(vertices));
234 *size = sizeof(vertices);
235 blorp_flush_range(batch, data, *size);
236 }
237
238 static void
239 blorp_emit_input_varying_data(struct blorp_batch *batch,
240 const struct blorp_params *params,
241 struct blorp_address *addr,
242 uint32_t *size)
243 {
244 const unsigned vec4_size_in_bytes = 4 * sizeof(float);
245 const unsigned max_num_varyings =
246 DIV_ROUND_UP(sizeof(params->wm_inputs), vec4_size_in_bytes);
247 const unsigned num_varyings =
248 params->wm_prog_data ? params->wm_prog_data->num_varying_inputs : 0;
249
250 *size = 16 + num_varyings * vec4_size_in_bytes;
251
252 const uint32_t *const inputs_src = (const uint32_t *)&params->wm_inputs;
253 void *data = blorp_alloc_vertex_buffer(batch, *size, addr);
254 uint32_t *inputs = data;
255
256 /* Copy in the VS inputs */
257 assert(sizeof(params->vs_inputs) == 16);
258 memcpy(inputs, &params->vs_inputs, sizeof(params->vs_inputs));
259 inputs += 4;
260
261 if (params->wm_prog_data) {
262 /* Walk over the attribute slots, determine if the attribute is used by
263 * the program and when necessary copy the values from the input storage
264 * to the vertex data buffer.
265 */
266 for (unsigned i = 0; i < max_num_varyings; i++) {
267 const gl_varying_slot attr = VARYING_SLOT_VAR0 + i;
268
269 const int input_index = params->wm_prog_data->urb_setup[attr];
270 if (input_index < 0)
271 continue;
272
273 memcpy(inputs, inputs_src + i * 4, vec4_size_in_bytes);
274
275 inputs += 4;
276 }
277 }
278
279 blorp_flush_range(batch, data, *size);
280
281 if (params->dst_clear_color_as_input) {
282 #if GEN_GEN >= 7
283 /* In this case, the clear color isn't known statically and instead
284 * comes in through an indirect which we have to copy into the vertex
285 * buffer before we execute the 3DPRIMITIVE. We already copied the
286 * value of params->wm_inputs.clear_color into the vertex buffer in the
287 * loop above. Now we emit code to stomp it from the GPU with the
288 * actual clear color value.
289 */
290 assert(num_varyings == 1);
291
292 /* The clear color is the first thing after the header */
293 struct blorp_address clear_color_input_addr = *addr;
294 clear_color_input_addr.offset += 16;
295
296 const unsigned clear_color_size =
297 GEN_GEN < 10 ? batch->blorp->isl_dev->ss.clear_value_size : 4 * 4;
298 blorp_emit_memcpy(batch, clear_color_input_addr,
299 params->dst.clear_color_addr,
300 clear_color_size);
301 #else
302 unreachable("MCS partial resolve is not a thing on SNB and earlier");
303 #endif
304 }
305 }
306
307 static void
308 blorp_fill_vertex_buffer_state(struct blorp_batch *batch,
309 struct GENX(VERTEX_BUFFER_STATE) *vb,
310 unsigned idx,
311 struct blorp_address addr, uint32_t size,
312 uint32_t stride)
313 {
314 vb[idx].VertexBufferIndex = idx;
315 vb[idx].BufferStartingAddress = addr;
316 vb[idx].BufferPitch = stride;
317
318 #if GEN_GEN >= 6
319 vb[idx].MOCS = addr.mocs;
320 #endif
321
322 #if GEN_GEN >= 7
323 vb[idx].AddressModifyEnable = true;
324 #endif
325
326 #if GEN_GEN >= 8
327 vb[idx].BufferSize = size;
328 #elif GEN_GEN >= 5
329 vb[idx].BufferAccessType = stride > 0 ? VERTEXDATA : INSTANCEDATA;
330 vb[idx].EndAddress = vb[idx].BufferStartingAddress;
331 vb[idx].EndAddress.offset += size - 1;
332 #elif GEN_GEN == 4
333 vb[idx].BufferAccessType = stride > 0 ? VERTEXDATA : INSTANCEDATA;
334 vb[idx].MaxIndex = stride > 0 ? size / stride : 0;
335 #endif
336 }
337
338 static void
339 blorp_emit_vertex_buffers(struct blorp_batch *batch,
340 const struct blorp_params *params)
341 {
342 struct GENX(VERTEX_BUFFER_STATE) vb[3];
343 uint32_t num_vbs = 2;
344 memset(vb, 0, sizeof(vb));
345
346 struct blorp_address addrs[2] = {};
347 uint32_t size;
348 blorp_emit_vertex_data(batch, params, &addrs[0], &size);
349 blorp_fill_vertex_buffer_state(batch, vb, 0, addrs[0], size,
350 3 * sizeof(float));
351
352 blorp_emit_input_varying_data(batch, params, &addrs[1], &size);
353 blorp_fill_vertex_buffer_state(batch, vb, 1, addrs[1], size, 0);
354
355 blorp_vf_invalidate_for_vb_48b_transitions(batch, addrs, num_vbs);
356
357 const unsigned num_dwords = 1 + num_vbs * GENX(VERTEX_BUFFER_STATE_length);
358 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_BUFFERS), num_dwords);
359 if (!dw)
360 return;
361
362 for (unsigned i = 0; i < num_vbs; i++) {
363 GENX(VERTEX_BUFFER_STATE_pack)(batch, dw, &vb[i]);
364 dw += GENX(VERTEX_BUFFER_STATE_length);
365 }
366 }
367
368 static void
369 blorp_emit_vertex_elements(struct blorp_batch *batch,
370 const struct blorp_params *params)
371 {
372 const unsigned num_varyings =
373 params->wm_prog_data ? params->wm_prog_data->num_varying_inputs : 0;
374 bool need_ndc = batch->blorp->compiler->devinfo->gen <= 5;
375 const unsigned num_elements = 2 + need_ndc + num_varyings;
376
377 struct GENX(VERTEX_ELEMENT_STATE) ve[num_elements];
378 memset(ve, 0, num_elements * sizeof(*ve));
379
380 /* Setup VBO for the rectangle primitive..
381 *
382 * A rectangle primitive (3DPRIM_RECTLIST) consists of only three
383 * vertices. The vertices reside in screen space with DirectX
384 * coordinates (that is, (0, 0) is the upper left corner).
385 *
386 * v2 ------ implied
387 * | |
388 * | |
389 * v1 ----- v0
390 *
391 * Since the VS is disabled, the clipper loads each VUE directly from
392 * the URB. This is controlled by the 3DSTATE_VERTEX_BUFFERS and
393 * 3DSTATE_VERTEX_ELEMENTS packets below. The VUE contents are as follows:
394 * dw0: Reserved, MBZ.
395 * dw1: Render Target Array Index. Below vertex fetcher gets programmed
396 * to assign this with primitive instance identifier which will be
397 * used for layered clears. All other renders have only one instance
398 * and therefore the value will be effectively zero.
399 * dw2: Viewport Index. The HiZ op disables viewport mapping and
400 * scissoring, so set the dword to 0.
401 * dw3: Point Width: The HiZ op does not emit the POINTLIST primitive,
402 * so set the dword to 0.
403 * dw4: Vertex Position X.
404 * dw5: Vertex Position Y.
405 * dw6: Vertex Position Z.
406 * dw7: Vertex Position W.
407 *
408 * dw8: Flat vertex input 0
409 * dw9: Flat vertex input 1
410 * ...
411 * dwn: Flat vertex input n - 8
412 *
413 * For details, see the Sandybridge PRM, Volume 2, Part 1, Section 1.5.1
414 * "Vertex URB Entry (VUE) Formats".
415 *
416 * Only vertex position X and Y are going to be variable, Z is fixed to
417 * zero and W to one. Header words dw0,2,3 are zero. There is no need to
418 * include the fixed values in the vertex buffer. Vertex fetcher can be
419 * instructed to fill vertex elements with constant values of one and zero
420 * instead of reading them from the buffer.
421 * Flat inputs are program constants that are not interpolated. Moreover
422 * their values will be the same between vertices.
423 *
424 * See the vertex element setup below.
425 */
426 unsigned slot = 0;
427
428 ve[slot] = (struct GENX(VERTEX_ELEMENT_STATE)) {
429 .VertexBufferIndex = 1,
430 .Valid = true,
431 .SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT,
432 .SourceElementOffset = 0,
433 .Component0Control = VFCOMP_STORE_SRC,
434
435 /* From Gen8 onwards hardware is no more instructed to overwrite
436 * components using an element specifier. Instead one has separate
437 * 3DSTATE_VF_SGVS (System Generated Value Setup) state packet for it.
438 */
439 #if GEN_GEN >= 8
440 .Component1Control = VFCOMP_STORE_0,
441 #elif GEN_GEN >= 5
442 .Component1Control = VFCOMP_STORE_IID,
443 #else
444 .Component1Control = VFCOMP_STORE_0,
445 #endif
446 .Component2Control = VFCOMP_STORE_0,
447 .Component3Control = VFCOMP_STORE_0,
448 #if GEN_GEN <= 5
449 .DestinationElementOffset = slot * 4,
450 #endif
451 };
452 slot++;
453
454 #if GEN_GEN <= 5
455 /* On Iron Lake and earlier, a native device coordinates version of the
456 * position goes right after the normal VUE header and before position.
457 * Since w == 1 for all of our coordinates, this is just a copy of the
458 * position.
459 */
460 ve[slot] = (struct GENX(VERTEX_ELEMENT_STATE)) {
461 .VertexBufferIndex = 0,
462 .Valid = true,
463 .SourceElementFormat = ISL_FORMAT_R32G32B32_FLOAT,
464 .SourceElementOffset = 0,
465 .Component0Control = VFCOMP_STORE_SRC,
466 .Component1Control = VFCOMP_STORE_SRC,
467 .Component2Control = VFCOMP_STORE_SRC,
468 .Component3Control = VFCOMP_STORE_1_FP,
469 .DestinationElementOffset = slot * 4,
470 };
471 slot++;
472 #endif
473
474 ve[slot] = (struct GENX(VERTEX_ELEMENT_STATE)) {
475 .VertexBufferIndex = 0,
476 .Valid = true,
477 .SourceElementFormat = ISL_FORMAT_R32G32B32_FLOAT,
478 .SourceElementOffset = 0,
479 .Component0Control = VFCOMP_STORE_SRC,
480 .Component1Control = VFCOMP_STORE_SRC,
481 .Component2Control = VFCOMP_STORE_SRC,
482 .Component3Control = VFCOMP_STORE_1_FP,
483 #if GEN_GEN <= 5
484 .DestinationElementOffset = slot * 4,
485 #endif
486 };
487 slot++;
488
489 for (unsigned i = 0; i < num_varyings; ++i) {
490 ve[slot] = (struct GENX(VERTEX_ELEMENT_STATE)) {
491 .VertexBufferIndex = 1,
492 .Valid = true,
493 .SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT,
494 .SourceElementOffset = 16 + i * 4 * sizeof(float),
495 .Component0Control = VFCOMP_STORE_SRC,
496 .Component1Control = VFCOMP_STORE_SRC,
497 .Component2Control = VFCOMP_STORE_SRC,
498 .Component3Control = VFCOMP_STORE_SRC,
499 #if GEN_GEN <= 5
500 .DestinationElementOffset = slot * 4,
501 #endif
502 };
503 slot++;
504 }
505
506 const unsigned num_dwords =
507 1 + GENX(VERTEX_ELEMENT_STATE_length) * num_elements;
508 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_ELEMENTS), num_dwords);
509 if (!dw)
510 return;
511
512 for (unsigned i = 0; i < num_elements; i++) {
513 GENX(VERTEX_ELEMENT_STATE_pack)(batch, dw, &ve[i]);
514 dw += GENX(VERTEX_ELEMENT_STATE_length);
515 }
516
517 blorp_emit(batch, GENX(3DSTATE_VF_STATISTICS), vf) {
518 vf.StatisticsEnable = false;
519 }
520
521 #if GEN_GEN >= 8
522 /* Overwrite Render Target Array Index (2nd dword) in the VUE header with
523 * primitive instance identifier. This is used for layered clears.
524 */
525 blorp_emit(batch, GENX(3DSTATE_VF_SGVS), sgvs) {
526 sgvs.InstanceIDEnable = true;
527 sgvs.InstanceIDComponentNumber = COMP_1;
528 sgvs.InstanceIDElementOffset = 0;
529 }
530
531 for (unsigned i = 0; i < num_elements; i++) {
532 blorp_emit(batch, GENX(3DSTATE_VF_INSTANCING), vf) {
533 vf.VertexElementIndex = i;
534 vf.InstancingEnable = false;
535 }
536 }
537
538 blorp_emit(batch, GENX(3DSTATE_VF_TOPOLOGY), topo) {
539 topo.PrimitiveTopologyType = _3DPRIM_RECTLIST;
540 }
541 #endif
542 }
543
544 /* 3DSTATE_VIEWPORT_STATE_POINTERS */
545 static uint32_t
546 blorp_emit_cc_viewport(struct blorp_batch *batch)
547 {
548 uint32_t cc_vp_offset;
549 blorp_emit_dynamic(batch, GENX(CC_VIEWPORT), vp, 32, &cc_vp_offset) {
550 vp.MinimumDepth = 0.0;
551 vp.MaximumDepth = 1.0;
552 }
553
554 #if GEN_GEN >= 7
555 blorp_emit(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), vsp) {
556 vsp.CCViewportPointer = cc_vp_offset;
557 }
558 #elif GEN_GEN == 6
559 blorp_emit(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vsp) {
560 vsp.CCViewportStateChange = true;
561 vsp.PointertoCC_VIEWPORT = cc_vp_offset;
562 }
563 #endif
564
565 return cc_vp_offset;
566 }
567
568 static uint32_t
569 blorp_emit_sampler_state(struct blorp_batch *batch)
570 {
571 uint32_t offset;
572 blorp_emit_dynamic(batch, GENX(SAMPLER_STATE), sampler, 32, &offset) {
573 sampler.MipModeFilter = MIPFILTER_NONE;
574 sampler.MagModeFilter = MAPFILTER_LINEAR;
575 sampler.MinModeFilter = MAPFILTER_LINEAR;
576 sampler.MinLOD = 0;
577 sampler.MaxLOD = 0;
578 sampler.TCXAddressControlMode = TCM_CLAMP;
579 sampler.TCYAddressControlMode = TCM_CLAMP;
580 sampler.TCZAddressControlMode = TCM_CLAMP;
581 sampler.MaximumAnisotropy = RATIO21;
582 sampler.RAddressMinFilterRoundingEnable = true;
583 sampler.RAddressMagFilterRoundingEnable = true;
584 sampler.VAddressMinFilterRoundingEnable = true;
585 sampler.VAddressMagFilterRoundingEnable = true;
586 sampler.UAddressMinFilterRoundingEnable = true;
587 sampler.UAddressMagFilterRoundingEnable = true;
588 #if GEN_GEN > 6
589 sampler.NonnormalizedCoordinateEnable = true;
590 #endif
591 }
592
593 #if GEN_GEN >= 7
594 blorp_emit(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS_PS), ssp) {
595 ssp.PointertoPSSamplerState = offset;
596 }
597 #elif GEN_GEN == 6
598 blorp_emit(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS), ssp) {
599 ssp.VSSamplerStateChange = true;
600 ssp.GSSamplerStateChange = true;
601 ssp.PSSamplerStateChange = true;
602 ssp.PointertoPSSamplerState = offset;
603 }
604 #endif
605
606 return offset;
607 }
608
609 /* What follows is the code for setting up a "pipeline" on Sandy Bridge and
610 * later hardware. This file will be included by i965 for gen4-5 as well, so
611 * this code is guarded by GEN_GEN >= 6.
612 */
613 #if GEN_GEN >= 6
614
615 static void
616 blorp_emit_vs_config(struct blorp_batch *batch,
617 const struct blorp_params *params)
618 {
619 struct brw_vs_prog_data *vs_prog_data = params->vs_prog_data;
620 assert(!vs_prog_data || GEN_GEN < 11 ||
621 vs_prog_data->base.dispatch_mode == DISPATCH_MODE_SIMD8);
622
623 blorp_emit(batch, GENX(3DSTATE_VS), vs) {
624 if (vs_prog_data) {
625 vs.Enable = true;
626
627 vs.KernelStartPointer = params->vs_prog_kernel;
628
629 vs.DispatchGRFStartRegisterForURBData =
630 vs_prog_data->base.base.dispatch_grf_start_reg;
631 vs.VertexURBEntryReadLength =
632 vs_prog_data->base.urb_read_length;
633 vs.VertexURBEntryReadOffset = 0;
634
635 vs.MaximumNumberofThreads =
636 batch->blorp->isl_dev->info->max_vs_threads - 1;
637
638 #if GEN_GEN >= 8
639 vs.SIMD8DispatchEnable =
640 vs_prog_data->base.dispatch_mode == DISPATCH_MODE_SIMD8;
641 #endif
642 }
643 }
644 }
645
646 static void
647 blorp_emit_sf_config(struct blorp_batch *batch,
648 const struct blorp_params *params)
649 {
650 const struct brw_wm_prog_data *prog_data = params->wm_prog_data;
651
652 /* 3DSTATE_SF
653 *
654 * Disable ViewportTransformEnable (dw2.1)
655 *
656 * From the SandyBridge PRM, Volume 2, Part 1, Section 1.3, "3D
657 * Primitives Overview":
658 * RECTLIST: Viewport Mapping must be DISABLED (as is typical with the
659 * use of screen- space coordinates).
660 *
661 * A solid rectangle must be rendered, so set FrontFaceFillMode (dw2.4:3)
662 * and BackFaceFillMode (dw2.5:6) to SOLID(0).
663 *
664 * From the Sandy Bridge PRM, Volume 2, Part 1, Section
665 * 6.4.1.1 3DSTATE_SF, Field FrontFaceFillMode:
666 * SOLID: Any triangle or rectangle object found to be front-facing
667 * is rendered as a solid object. This setting is required when
668 * (rendering rectangle (RECTLIST) objects.
669 */
670
671 #if GEN_GEN >= 8
672
673 blorp_emit(batch, GENX(3DSTATE_SF), sf);
674
675 blorp_emit(batch, GENX(3DSTATE_RASTER), raster) {
676 raster.CullMode = CULLMODE_NONE;
677 }
678
679 blorp_emit(batch, GENX(3DSTATE_SBE), sbe) {
680 sbe.VertexURBEntryReadOffset = 1;
681 if (prog_data) {
682 sbe.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
683 sbe.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
684 sbe.ConstantInterpolationEnable = prog_data->flat_inputs;
685 } else {
686 sbe.NumberofSFOutputAttributes = 0;
687 sbe.VertexURBEntryReadLength = 1;
688 }
689 sbe.ForceVertexURBEntryReadLength = true;
690 sbe.ForceVertexURBEntryReadOffset = true;
691
692 #if GEN_GEN >= 9
693 for (unsigned i = 0; i < 32; i++)
694 sbe.AttributeActiveComponentFormat[i] = ACF_XYZW;
695 #endif
696 }
697
698 #elif GEN_GEN >= 7
699
700 blorp_emit(batch, GENX(3DSTATE_SF), sf) {
701 sf.FrontFaceFillMode = FILL_MODE_SOLID;
702 sf.BackFaceFillMode = FILL_MODE_SOLID;
703
704 sf.MultisampleRasterizationMode = params->num_samples > 1 ?
705 MSRASTMODE_ON_PATTERN : MSRASTMODE_OFF_PIXEL;
706
707 #if GEN_GEN == 7
708 sf.DepthBufferSurfaceFormat = params->depth_format;
709 #endif
710 }
711
712 blorp_emit(batch, GENX(3DSTATE_SBE), sbe) {
713 sbe.VertexURBEntryReadOffset = 1;
714 if (prog_data) {
715 sbe.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
716 sbe.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
717 sbe.ConstantInterpolationEnable = prog_data->flat_inputs;
718 } else {
719 sbe.NumberofSFOutputAttributes = 0;
720 sbe.VertexURBEntryReadLength = 1;
721 }
722 }
723
724 #else /* GEN_GEN <= 6 */
725
726 blorp_emit(batch, GENX(3DSTATE_SF), sf) {
727 sf.FrontFaceFillMode = FILL_MODE_SOLID;
728 sf.BackFaceFillMode = FILL_MODE_SOLID;
729
730 sf.MultisampleRasterizationMode = params->num_samples > 1 ?
731 MSRASTMODE_ON_PATTERN : MSRASTMODE_OFF_PIXEL;
732
733 sf.VertexURBEntryReadOffset = 1;
734 if (prog_data) {
735 sf.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
736 sf.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
737 sf.ConstantInterpolationEnable = prog_data->flat_inputs;
738 } else {
739 sf.NumberofSFOutputAttributes = 0;
740 sf.VertexURBEntryReadLength = 1;
741 }
742 }
743
744 #endif /* GEN_GEN */
745 }
746
747 static void
748 blorp_emit_ps_config(struct blorp_batch *batch,
749 const struct blorp_params *params)
750 {
751 const struct brw_wm_prog_data *prog_data = params->wm_prog_data;
752
753 /* Even when thread dispatch is disabled, max threads (dw5.25:31) must be
754 * nonzero to prevent the GPU from hanging. While the documentation doesn't
755 * mention this explicitly, it notes that the valid range for the field is
756 * [1,39] = [2,40] threads, which excludes zero.
757 *
758 * To be safe (and to minimize extraneous code) we go ahead and fully
759 * configure the WM state whether or not there is a WM program.
760 */
761
762 #if GEN_GEN >= 8
763
764 blorp_emit(batch, GENX(3DSTATE_WM), wm);
765
766 blorp_emit(batch, GENX(3DSTATE_PS), ps) {
767 if (params->src.enabled) {
768 ps.SamplerCount = 1; /* Up to 4 samplers */
769 ps.BindingTableEntryCount = 2;
770 } else {
771 ps.BindingTableEntryCount = 1;
772 }
773
774 /* Gen 11 workarounds table #2056 WABTPPrefetchDisable suggests to
775 * disable prefetching of binding tables on A0 and B0 steppings.
776 * TODO: Revisit this WA on C0 stepping.
777 */
778 if (GEN_GEN == 11)
779 ps.BindingTableEntryCount = 0;
780
781 if (prog_data) {
782 ps._8PixelDispatchEnable = prog_data->dispatch_8;
783 ps._16PixelDispatchEnable = prog_data->dispatch_16;
784 ps._32PixelDispatchEnable = prog_data->dispatch_32;
785
786 /* From the Sky Lake PRM 3DSTATE_PS::32 Pixel Dispatch Enable:
787 *
788 * "When NUM_MULTISAMPLES = 16 or FORCE_SAMPLE_COUNT = 16, SIMD32
789 * Dispatch must not be enabled for PER_PIXEL dispatch mode."
790 *
791 * Since 16x MSAA is first introduced on SKL, we don't need to apply
792 * the workaround on any older hardware.
793 */
794 if (GEN_GEN >= 9 && !prog_data->persample_dispatch &&
795 params->num_samples == 16) {
796 assert(ps._8PixelDispatchEnable || ps._16PixelDispatchEnable);
797 ps._32PixelDispatchEnable = false;
798 }
799
800 ps.DispatchGRFStartRegisterForConstantSetupData0 =
801 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 0);
802 ps.DispatchGRFStartRegisterForConstantSetupData1 =
803 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 1);
804 ps.DispatchGRFStartRegisterForConstantSetupData2 =
805 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 2);
806
807 ps.KernelStartPointer0 = params->wm_prog_kernel +
808 brw_wm_prog_data_prog_offset(prog_data, ps, 0);
809 ps.KernelStartPointer1 = params->wm_prog_kernel +
810 brw_wm_prog_data_prog_offset(prog_data, ps, 1);
811 ps.KernelStartPointer2 = params->wm_prog_kernel +
812 brw_wm_prog_data_prog_offset(prog_data, ps, 2);
813 }
814
815 /* 3DSTATE_PS expects the number of threads per PSD, which is always 64
816 * for pre Gen11 and 128 for gen11+; On gen11+ If a programmed value is
817 * k, it implies 2(k+1) threads. It implicitly scales for different GT
818 * levels (which have some # of PSDs).
819 *
820 * In Gen8 the format is U8-2 whereas in Gen9+ it is U9-1.
821 */
822 if (GEN_GEN >= 9)
823 ps.MaximumNumberofThreadsPerPSD = 64 - 1;
824 else
825 ps.MaximumNumberofThreadsPerPSD = 64 - 2;
826
827 switch (params->fast_clear_op) {
828 case ISL_AUX_OP_NONE:
829 break;
830 #if GEN_GEN >= 10
831 case ISL_AUX_OP_AMBIGUATE:
832 ps.RenderTargetFastClearEnable = true;
833 ps.RenderTargetResolveType = FAST_CLEAR_0;
834 break;
835 #endif
836 #if GEN_GEN >= 9
837 case ISL_AUX_OP_PARTIAL_RESOLVE:
838 ps.RenderTargetResolveType = RESOLVE_PARTIAL;
839 break;
840 case ISL_AUX_OP_FULL_RESOLVE:
841 ps.RenderTargetResolveType = RESOLVE_FULL;
842 break;
843 #else
844 case ISL_AUX_OP_FULL_RESOLVE:
845 ps.RenderTargetResolveEnable = true;
846 break;
847 #endif
848 case ISL_AUX_OP_FAST_CLEAR:
849 ps.RenderTargetFastClearEnable = true;
850 break;
851 default:
852 unreachable("Invalid fast clear op");
853 }
854 }
855
856 blorp_emit(batch, GENX(3DSTATE_PS_EXTRA), psx) {
857 if (prog_data) {
858 psx.PixelShaderValid = true;
859 psx.AttributeEnable = prog_data->num_varying_inputs > 0;
860 psx.PixelShaderIsPerSample = prog_data->persample_dispatch;
861 }
862
863 if (params->src.enabled)
864 psx.PixelShaderKillsPixel = true;
865 }
866
867 #elif GEN_GEN >= 7
868
869 blorp_emit(batch, GENX(3DSTATE_WM), wm) {
870 switch (params->hiz_op) {
871 case ISL_AUX_OP_FAST_CLEAR:
872 wm.DepthBufferClear = true;
873 break;
874 case ISL_AUX_OP_FULL_RESOLVE:
875 wm.DepthBufferResolveEnable = true;
876 break;
877 case ISL_AUX_OP_AMBIGUATE:
878 wm.HierarchicalDepthBufferResolveEnable = true;
879 break;
880 case ISL_AUX_OP_NONE:
881 break;
882 default:
883 unreachable("not reached");
884 }
885
886 if (prog_data)
887 wm.ThreadDispatchEnable = true;
888
889 if (params->src.enabled)
890 wm.PixelShaderKillsPixel = true;
891
892 if (params->num_samples > 1) {
893 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
894 wm.MultisampleDispatchMode =
895 (prog_data && prog_data->persample_dispatch) ?
896 MSDISPMODE_PERSAMPLE : MSDISPMODE_PERPIXEL;
897 } else {
898 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
899 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
900 }
901 }
902
903 blorp_emit(batch, GENX(3DSTATE_PS), ps) {
904 ps.MaximumNumberofThreads =
905 batch->blorp->isl_dev->info->max_wm_threads - 1;
906
907 #if GEN_IS_HASWELL
908 ps.SampleMask = 1;
909 #endif
910
911 if (prog_data) {
912 ps._8PixelDispatchEnable = prog_data->dispatch_8;
913 ps._16PixelDispatchEnable = prog_data->dispatch_16;
914 ps._32PixelDispatchEnable = prog_data->dispatch_32;
915
916 ps.DispatchGRFStartRegisterForConstantSetupData0 =
917 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 0);
918 ps.DispatchGRFStartRegisterForConstantSetupData1 =
919 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 1);
920 ps.DispatchGRFStartRegisterForConstantSetupData2 =
921 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, ps, 2);
922
923 ps.KernelStartPointer0 = params->wm_prog_kernel +
924 brw_wm_prog_data_prog_offset(prog_data, ps, 0);
925 ps.KernelStartPointer1 = params->wm_prog_kernel +
926 brw_wm_prog_data_prog_offset(prog_data, ps, 1);
927 ps.KernelStartPointer2 = params->wm_prog_kernel +
928 brw_wm_prog_data_prog_offset(prog_data, ps, 2);
929
930 ps.AttributeEnable = prog_data->num_varying_inputs > 0;
931 } else {
932 /* Gen7 hardware gets angry if we don't enable at least one dispatch
933 * mode, so just enable 16-pixel dispatch if we don't have a program.
934 */
935 ps._16PixelDispatchEnable = true;
936 }
937
938 if (params->src.enabled)
939 ps.SamplerCount = 1; /* Up to 4 samplers */
940
941 switch (params->fast_clear_op) {
942 case ISL_AUX_OP_NONE:
943 break;
944 case ISL_AUX_OP_FULL_RESOLVE:
945 ps.RenderTargetResolveEnable = true;
946 break;
947 case ISL_AUX_OP_FAST_CLEAR:
948 ps.RenderTargetFastClearEnable = true;
949 break;
950 default:
951 unreachable("Invalid fast clear op");
952 }
953 }
954
955 #else /* GEN_GEN <= 6 */
956
957 blorp_emit(batch, GENX(3DSTATE_WM), wm) {
958 wm.MaximumNumberofThreads =
959 batch->blorp->isl_dev->info->max_wm_threads - 1;
960
961 switch (params->hiz_op) {
962 case ISL_AUX_OP_FAST_CLEAR:
963 wm.DepthBufferClear = true;
964 break;
965 case ISL_AUX_OP_FULL_RESOLVE:
966 wm.DepthBufferResolveEnable = true;
967 break;
968 case ISL_AUX_OP_AMBIGUATE:
969 wm.HierarchicalDepthBufferResolveEnable = true;
970 break;
971 case ISL_AUX_OP_NONE:
972 break;
973 default:
974 unreachable("not reached");
975 }
976
977 if (prog_data) {
978 wm.ThreadDispatchEnable = true;
979
980 wm._8PixelDispatchEnable = prog_data->dispatch_8;
981 wm._16PixelDispatchEnable = prog_data->dispatch_16;
982 wm._32PixelDispatchEnable = prog_data->dispatch_32;
983
984 wm.DispatchGRFStartRegisterForConstantSetupData0 =
985 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, wm, 0);
986 wm.DispatchGRFStartRegisterForConstantSetupData1 =
987 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, wm, 1);
988 wm.DispatchGRFStartRegisterForConstantSetupData2 =
989 brw_wm_prog_data_dispatch_grf_start_reg(prog_data, wm, 2);
990
991 wm.KernelStartPointer0 = params->wm_prog_kernel +
992 brw_wm_prog_data_prog_offset(prog_data, wm, 0);
993 wm.KernelStartPointer1 = params->wm_prog_kernel +
994 brw_wm_prog_data_prog_offset(prog_data, wm, 1);
995 wm.KernelStartPointer2 = params->wm_prog_kernel +
996 brw_wm_prog_data_prog_offset(prog_data, wm, 2);
997
998 wm.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
999 }
1000
1001 if (params->src.enabled) {
1002 wm.SamplerCount = 1; /* Up to 4 samplers */
1003 wm.PixelShaderKillsPixel = true; /* TODO: temporarily smash on */
1004 }
1005
1006 if (params->num_samples > 1) {
1007 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
1008 wm.MultisampleDispatchMode =
1009 (prog_data && prog_data->persample_dispatch) ?
1010 MSDISPMODE_PERSAMPLE : MSDISPMODE_PERPIXEL;
1011 } else {
1012 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
1013 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
1014 }
1015 }
1016
1017 #endif /* GEN_GEN */
1018 }
1019
1020 static uint32_t
1021 blorp_emit_blend_state(struct blorp_batch *batch,
1022 const struct blorp_params *params)
1023 {
1024 struct GENX(BLEND_STATE) blend;
1025 memset(&blend, 0, sizeof(blend));
1026
1027 uint32_t offset;
1028 int size = GENX(BLEND_STATE_length) * 4;
1029 size += GENX(BLEND_STATE_ENTRY_length) * 4 * params->num_draw_buffers;
1030 uint32_t *state = blorp_alloc_dynamic_state(batch, size, 64, &offset);
1031 uint32_t *pos = state;
1032
1033 GENX(BLEND_STATE_pack)(NULL, pos, &blend);
1034 pos += GENX(BLEND_STATE_length);
1035
1036 for (unsigned i = 0; i < params->num_draw_buffers; ++i) {
1037 struct GENX(BLEND_STATE_ENTRY) entry = {
1038 .PreBlendColorClampEnable = true,
1039 .PostBlendColorClampEnable = true,
1040 .ColorClampRange = COLORCLAMP_RTFORMAT,
1041
1042 .WriteDisableRed = params->color_write_disable[0],
1043 .WriteDisableGreen = params->color_write_disable[1],
1044 .WriteDisableBlue = params->color_write_disable[2],
1045 .WriteDisableAlpha = params->color_write_disable[3],
1046 };
1047 GENX(BLEND_STATE_ENTRY_pack)(NULL, pos, &entry);
1048 pos += GENX(BLEND_STATE_ENTRY_length);
1049 }
1050
1051 blorp_flush_range(batch, state, size);
1052
1053 #if GEN_GEN >= 7
1054 blorp_emit(batch, GENX(3DSTATE_BLEND_STATE_POINTERS), sp) {
1055 sp.BlendStatePointer = offset;
1056 #if GEN_GEN >= 8
1057 sp.BlendStatePointerValid = true;
1058 #endif
1059 }
1060 #endif
1061
1062 #if GEN_GEN >= 8
1063 blorp_emit(batch, GENX(3DSTATE_PS_BLEND), ps_blend) {
1064 ps_blend.HasWriteableRT = true;
1065 }
1066 #endif
1067
1068 return offset;
1069 }
1070
1071 static uint32_t
1072 blorp_emit_color_calc_state(struct blorp_batch *batch,
1073 MAYBE_UNUSED const struct blorp_params *params)
1074 {
1075 uint32_t offset;
1076 blorp_emit_dynamic(batch, GENX(COLOR_CALC_STATE), cc, 64, &offset) {
1077 #if GEN_GEN <= 8
1078 cc.StencilReferenceValue = params->stencil_ref;
1079 #endif
1080 }
1081
1082 #if GEN_GEN >= 7
1083 blorp_emit(batch, GENX(3DSTATE_CC_STATE_POINTERS), sp) {
1084 sp.ColorCalcStatePointer = offset;
1085 #if GEN_GEN >= 8
1086 sp.ColorCalcStatePointerValid = true;
1087 #endif
1088 }
1089 #endif
1090
1091 return offset;
1092 }
1093
1094 static uint32_t
1095 blorp_emit_depth_stencil_state(struct blorp_batch *batch,
1096 const struct blorp_params *params)
1097 {
1098 #if GEN_GEN >= 8
1099 struct GENX(3DSTATE_WM_DEPTH_STENCIL) ds = {
1100 GENX(3DSTATE_WM_DEPTH_STENCIL_header),
1101 };
1102 #else
1103 struct GENX(DEPTH_STENCIL_STATE) ds = { 0 };
1104 #endif
1105
1106 if (params->depth.enabled) {
1107 ds.DepthBufferWriteEnable = true;
1108
1109 switch (params->hiz_op) {
1110 case ISL_AUX_OP_NONE:
1111 ds.DepthTestEnable = true;
1112 ds.DepthTestFunction = COMPAREFUNCTION_ALWAYS;
1113 break;
1114
1115 /* See the following sections of the Sandy Bridge PRM, Volume 2, Part1:
1116 * - 7.5.3.1 Depth Buffer Clear
1117 * - 7.5.3.2 Depth Buffer Resolve
1118 * - 7.5.3.3 Hierarchical Depth Buffer Resolve
1119 */
1120 case ISL_AUX_OP_FULL_RESOLVE:
1121 ds.DepthTestEnable = true;
1122 ds.DepthTestFunction = COMPAREFUNCTION_NEVER;
1123 break;
1124
1125 case ISL_AUX_OP_FAST_CLEAR:
1126 case ISL_AUX_OP_AMBIGUATE:
1127 ds.DepthTestEnable = false;
1128 break;
1129 case ISL_AUX_OP_PARTIAL_RESOLVE:
1130 unreachable("Invalid HIZ op");
1131 }
1132 }
1133
1134 if (params->stencil.enabled) {
1135 ds.StencilBufferWriteEnable = true;
1136 ds.StencilTestEnable = true;
1137 ds.DoubleSidedStencilEnable = false;
1138
1139 ds.StencilTestFunction = COMPAREFUNCTION_ALWAYS;
1140 ds.StencilPassDepthPassOp = STENCILOP_REPLACE;
1141
1142 ds.StencilWriteMask = params->stencil_mask;
1143 #if GEN_GEN >= 9
1144 ds.StencilReferenceValue = params->stencil_ref;
1145 #endif
1146 }
1147
1148 #if GEN_GEN >= 8
1149 uint32_t offset = 0;
1150 uint32_t *dw = blorp_emit_dwords(batch,
1151 GENX(3DSTATE_WM_DEPTH_STENCIL_length));
1152 if (!dw)
1153 return 0;
1154
1155 GENX(3DSTATE_WM_DEPTH_STENCIL_pack)(NULL, dw, &ds);
1156 #else
1157 uint32_t offset;
1158 void *state = blorp_alloc_dynamic_state(batch,
1159 GENX(DEPTH_STENCIL_STATE_length) * 4,
1160 64, &offset);
1161 GENX(DEPTH_STENCIL_STATE_pack)(NULL, state, &ds);
1162 blorp_flush_range(batch, state, GENX(DEPTH_STENCIL_STATE_length) * 4);
1163 #endif
1164
1165 #if GEN_GEN == 7
1166 blorp_emit(batch, GENX(3DSTATE_DEPTH_STENCIL_STATE_POINTERS), sp) {
1167 sp.PointertoDEPTH_STENCIL_STATE = offset;
1168 }
1169 #endif
1170
1171 return offset;
1172 }
1173
1174 static void
1175 blorp_emit_3dstate_multisample(struct blorp_batch *batch,
1176 const struct blorp_params *params)
1177 {
1178 blorp_emit(batch, GENX(3DSTATE_MULTISAMPLE), ms) {
1179 ms.NumberofMultisamples = __builtin_ffs(params->num_samples) - 1;
1180
1181 #if GEN_GEN >= 8
1182 /* The PRM says that this bit is valid only for DX9:
1183 *
1184 * SW can choose to set this bit only for DX9 API. DX10/OGL API's
1185 * should not have any effect by setting or not setting this bit.
1186 */
1187 ms.PixelPositionOffsetEnable = false;
1188 #elif GEN_GEN >= 7
1189
1190 switch (params->num_samples) {
1191 case 1:
1192 GEN_SAMPLE_POS_1X(ms.Sample);
1193 break;
1194 case 2:
1195 GEN_SAMPLE_POS_2X(ms.Sample);
1196 break;
1197 case 4:
1198 GEN_SAMPLE_POS_4X(ms.Sample);
1199 break;
1200 case 8:
1201 GEN_SAMPLE_POS_8X(ms.Sample);
1202 break;
1203 default:
1204 break;
1205 }
1206 #else
1207 GEN_SAMPLE_POS_4X(ms.Sample);
1208 #endif
1209 ms.PixelLocation = CENTER;
1210 }
1211 }
1212
1213 static void
1214 blorp_emit_pipeline(struct blorp_batch *batch,
1215 const struct blorp_params *params)
1216 {
1217 uint32_t blend_state_offset = 0;
1218 uint32_t color_calc_state_offset;
1219 uint32_t depth_stencil_state_offset;
1220
1221 emit_urb_config(batch, params);
1222
1223 if (params->wm_prog_data) {
1224 blend_state_offset = blorp_emit_blend_state(batch, params);
1225 }
1226 color_calc_state_offset = blorp_emit_color_calc_state(batch, params);
1227 depth_stencil_state_offset = blorp_emit_depth_stencil_state(batch, params);
1228
1229 #if GEN_GEN == 6
1230 /* 3DSTATE_CC_STATE_POINTERS
1231 *
1232 * The pointer offsets are relative to
1233 * CMD_STATE_BASE_ADDRESS.DynamicStateBaseAddress.
1234 *
1235 * The HiZ op doesn't use BLEND_STATE or COLOR_CALC_STATE.
1236 *
1237 * The dynamic state emit helpers emit their own STATE_POINTERS packets on
1238 * gen7+. However, on gen6 and earlier, they're all lumpped together in
1239 * one CC_STATE_POINTERS packet so we have to emit that here.
1240 */
1241 blorp_emit(batch, GENX(3DSTATE_CC_STATE_POINTERS), cc) {
1242 cc.BLEND_STATEChange = true;
1243 cc.ColorCalcStatePointerValid = true;
1244 cc.DEPTH_STENCIL_STATEChange = true;
1245 cc.PointertoBLEND_STATE = blend_state_offset;
1246 cc.ColorCalcStatePointer = color_calc_state_offset;
1247 cc.PointertoDEPTH_STENCIL_STATE = depth_stencil_state_offset;
1248 }
1249 #else
1250 (void)blend_state_offset;
1251 (void)color_calc_state_offset;
1252 (void)depth_stencil_state_offset;
1253 #endif
1254
1255 blorp_emit(batch, GENX(3DSTATE_CONSTANT_VS), vs);
1256 #if GEN_GEN >= 7
1257 blorp_emit(batch, GENX(3DSTATE_CONSTANT_HS), hs);
1258 blorp_emit(batch, GENX(3DSTATE_CONSTANT_DS), DS);
1259 #endif
1260 blorp_emit(batch, GENX(3DSTATE_CONSTANT_GS), gs);
1261 blorp_emit(batch, GENX(3DSTATE_CONSTANT_PS), ps);
1262
1263 if (params->src.enabled)
1264 blorp_emit_sampler_state(batch);
1265
1266 blorp_emit_3dstate_multisample(batch, params);
1267
1268 blorp_emit(batch, GENX(3DSTATE_SAMPLE_MASK), mask) {
1269 mask.SampleMask = (1 << params->num_samples) - 1;
1270 }
1271
1272 /* From the BSpec, 3D Pipeline > Geometry > Vertex Shader > State,
1273 * 3DSTATE_VS, Dword 5.0 "VS Function Enable":
1274 *
1275 * [DevSNB] A pipeline flush must be programmed prior to a
1276 * 3DSTATE_VS command that causes the VS Function Enable to
1277 * toggle. Pipeline flush can be executed by sending a PIPE_CONTROL
1278 * command with CS stall bit set and a post sync operation.
1279 *
1280 * We've already done one at the start of the BLORP operation.
1281 */
1282 blorp_emit_vs_config(batch, params);
1283 #if GEN_GEN >= 7
1284 blorp_emit(batch, GENX(3DSTATE_HS), hs);
1285 blorp_emit(batch, GENX(3DSTATE_TE), te);
1286 blorp_emit(batch, GENX(3DSTATE_DS), DS);
1287 blorp_emit(batch, GENX(3DSTATE_STREAMOUT), so);
1288 #endif
1289 blorp_emit(batch, GENX(3DSTATE_GS), gs);
1290
1291 blorp_emit(batch, GENX(3DSTATE_CLIP), clip) {
1292 clip.PerspectiveDivideDisable = true;
1293 }
1294
1295 blorp_emit_sf_config(batch, params);
1296 blorp_emit_ps_config(batch, params);
1297
1298 blorp_emit_cc_viewport(batch);
1299 }
1300
1301 /******** This is the end of the pipeline setup code ********/
1302
1303 #endif /* GEN_GEN >= 6 */
1304
1305 #if GEN_GEN >= 7
1306 static void
1307 blorp_emit_memcpy(struct blorp_batch *batch,
1308 struct blorp_address dst,
1309 struct blorp_address src,
1310 uint32_t size)
1311 {
1312 assert(size % 4 == 0);
1313
1314 for (unsigned dw = 0; dw < size; dw += 4) {
1315 #if GEN_GEN >= 8
1316 blorp_emit(batch, GENX(MI_COPY_MEM_MEM), cp) {
1317 cp.DestinationMemoryAddress = dst;
1318 cp.SourceMemoryAddress = src;
1319 }
1320 #else
1321 /* IVB does not have a general purpose register for command streamer
1322 * commands. Therefore, we use an alternate temporary register.
1323 */
1324 #define BLORP_TEMP_REG 0x2440 /* GEN7_3DPRIM_BASE_VERTEX */
1325 blorp_emit(batch, GENX(MI_LOAD_REGISTER_MEM), load) {
1326 load.RegisterAddress = BLORP_TEMP_REG;
1327 load.MemoryAddress = src;
1328 }
1329 blorp_emit(batch, GENX(MI_STORE_REGISTER_MEM), store) {
1330 store.RegisterAddress = BLORP_TEMP_REG;
1331 store.MemoryAddress = dst;
1332 }
1333 #undef BLORP_TEMP_REG
1334 #endif
1335 dst.offset += 4;
1336 src.offset += 4;
1337 }
1338 }
1339 #endif
1340
1341 static void
1342 blorp_emit_surface_state(struct blorp_batch *batch,
1343 const struct brw_blorp_surface_info *surface,
1344 enum isl_aux_op aux_op,
1345 void *state, uint32_t state_offset,
1346 const bool color_write_disables[4],
1347 bool is_render_target)
1348 {
1349 const struct isl_device *isl_dev = batch->blorp->isl_dev;
1350 struct isl_surf surf = surface->surf;
1351
1352 if (surf.dim == ISL_SURF_DIM_1D &&
1353 surf.dim_layout == ISL_DIM_LAYOUT_GEN4_2D) {
1354 assert(surf.logical_level0_px.height == 1);
1355 surf.dim = ISL_SURF_DIM_2D;
1356 }
1357
1358 /* Blorp doesn't support HiZ in any of the blit or slow-clear paths */
1359 enum isl_aux_usage aux_usage = surface->aux_usage;
1360 if (aux_usage == ISL_AUX_USAGE_HIZ)
1361 aux_usage = ISL_AUX_USAGE_NONE;
1362
1363 isl_channel_mask_t write_disable_mask = 0;
1364 if (is_render_target && GEN_GEN <= 5) {
1365 if (color_write_disables[0])
1366 write_disable_mask |= ISL_CHANNEL_RED_BIT;
1367 if (color_write_disables[1])
1368 write_disable_mask |= ISL_CHANNEL_GREEN_BIT;
1369 if (color_write_disables[2])
1370 write_disable_mask |= ISL_CHANNEL_BLUE_BIT;
1371 if (color_write_disables[3])
1372 write_disable_mask |= ISL_CHANNEL_ALPHA_BIT;
1373 }
1374
1375 const bool use_clear_address =
1376 GEN_GEN >= 10 && (surface->clear_color_addr.buffer != NULL);
1377
1378 isl_surf_fill_state(batch->blorp->isl_dev, state,
1379 .surf = &surf, .view = &surface->view,
1380 .aux_surf = &surface->aux_surf, .aux_usage = aux_usage,
1381 .address =
1382 blorp_get_surface_address(batch, surface->addr),
1383 .aux_address = aux_usage == ISL_AUX_USAGE_NONE ? 0 :
1384 blorp_get_surface_address(batch, surface->aux_addr),
1385 .clear_address = !use_clear_address ? 0 :
1386 blorp_get_surface_address(batch,
1387 surface->clear_color_addr),
1388 .mocs = surface->addr.mocs,
1389 .clear_color = surface->clear_color,
1390 .use_clear_address = use_clear_address,
1391 .write_disables = write_disable_mask);
1392
1393 blorp_surface_reloc(batch, state_offset + isl_dev->ss.addr_offset,
1394 surface->addr, 0);
1395
1396 if (aux_usage != ISL_AUX_USAGE_NONE) {
1397 /* On gen7 and prior, the bottom 12 bits of the MCS base address are
1398 * used to store other information. This should be ok, however, because
1399 * surface buffer addresses are always 4K page alinged.
1400 */
1401 assert((surface->aux_addr.offset & 0xfff) == 0);
1402 uint32_t *aux_addr = state + isl_dev->ss.aux_addr_offset;
1403 blorp_surface_reloc(batch, state_offset + isl_dev->ss.aux_addr_offset,
1404 surface->aux_addr, *aux_addr);
1405 }
1406
1407 if (aux_usage != ISL_AUX_USAGE_NONE && surface->clear_color_addr.buffer) {
1408 #if GEN_GEN >= 10
1409 assert((surface->clear_color_addr.offset & 0x3f) == 0);
1410 uint32_t *clear_addr = state + isl_dev->ss.clear_color_state_offset;
1411 blorp_surface_reloc(batch, state_offset +
1412 isl_dev->ss.clear_color_state_offset,
1413 surface->clear_color_addr, *clear_addr);
1414 #elif GEN_GEN >= 7
1415 /* Fast clears just whack the AUX surface and don't actually use the
1416 * clear color for anything. We can avoid the MI memcpy on that case.
1417 */
1418 if (aux_op != ISL_AUX_OP_FAST_CLEAR) {
1419 struct blorp_address dst_addr = blorp_get_surface_base_address(batch);
1420 dst_addr.offset += state_offset + isl_dev->ss.clear_value_offset;
1421 blorp_emit_memcpy(batch, dst_addr, surface->clear_color_addr,
1422 isl_dev->ss.clear_value_size);
1423 }
1424 #else
1425 unreachable("Fast clears are only supported on gen7+");
1426 #endif
1427 }
1428
1429 blorp_flush_range(batch, state, GENX(RENDER_SURFACE_STATE_length) * 4);
1430 }
1431
1432 static void
1433 blorp_emit_null_surface_state(struct blorp_batch *batch,
1434 const struct brw_blorp_surface_info *surface,
1435 uint32_t *state)
1436 {
1437 struct GENX(RENDER_SURFACE_STATE) ss = {
1438 .SurfaceType = SURFTYPE_NULL,
1439 .SurfaceFormat = ISL_FORMAT_R8G8B8A8_UNORM,
1440 .Width = surface->surf.logical_level0_px.width - 1,
1441 .Height = surface->surf.logical_level0_px.height - 1,
1442 .MIPCountLOD = surface->view.base_level,
1443 .MinimumArrayElement = surface->view.base_array_layer,
1444 .Depth = surface->view.array_len - 1,
1445 .RenderTargetViewExtent = surface->view.array_len - 1,
1446 #if GEN_GEN >= 6
1447 .NumberofMultisamples = ffs(surface->surf.samples) - 1,
1448 #endif
1449
1450 #if GEN_GEN >= 7
1451 .SurfaceArray = surface->surf.dim != ISL_SURF_DIM_3D,
1452 #endif
1453
1454 #if GEN_GEN >= 8
1455 .TileMode = YMAJOR,
1456 #else
1457 .TiledSurface = true,
1458 #endif
1459 };
1460
1461 GENX(RENDER_SURFACE_STATE_pack)(NULL, state, &ss);
1462
1463 blorp_flush_range(batch, state, GENX(RENDER_SURFACE_STATE_length) * 4);
1464 }
1465
1466 static void
1467 blorp_emit_surface_states(struct blorp_batch *batch,
1468 const struct blorp_params *params)
1469 {
1470 const struct isl_device *isl_dev = batch->blorp->isl_dev;
1471 uint32_t bind_offset = 0, surface_offsets[2];
1472 void *surface_maps[2];
1473
1474 MAYBE_UNUSED bool has_indirect_clear_color = false;
1475 if (params->use_pre_baked_binding_table) {
1476 bind_offset = params->pre_baked_binding_table_offset;
1477 } else {
1478 unsigned num_surfaces = 1 + params->src.enabled;
1479 blorp_alloc_binding_table(batch, num_surfaces,
1480 isl_dev->ss.size, isl_dev->ss.align,
1481 &bind_offset, surface_offsets, surface_maps);
1482
1483 if (params->dst.enabled) {
1484 blorp_emit_surface_state(batch, &params->dst,
1485 params->fast_clear_op,
1486 surface_maps[BLORP_RENDERBUFFER_BT_INDEX],
1487 surface_offsets[BLORP_RENDERBUFFER_BT_INDEX],
1488 params->color_write_disable, true);
1489 if (params->dst.clear_color_addr.buffer != NULL)
1490 has_indirect_clear_color = true;
1491 } else {
1492 assert(params->depth.enabled || params->stencil.enabled);
1493 const struct brw_blorp_surface_info *surface =
1494 params->depth.enabled ? &params->depth : &params->stencil;
1495 blorp_emit_null_surface_state(batch, surface,
1496 surface_maps[BLORP_RENDERBUFFER_BT_INDEX]);
1497 }
1498
1499 if (params->src.enabled) {
1500 blorp_emit_surface_state(batch, &params->src,
1501 params->fast_clear_op,
1502 surface_maps[BLORP_TEXTURE_BT_INDEX],
1503 surface_offsets[BLORP_TEXTURE_BT_INDEX],
1504 NULL, false);
1505 if (params->src.clear_color_addr.buffer != NULL)
1506 has_indirect_clear_color = true;
1507 }
1508 }
1509
1510 #if GEN_GEN >= 7
1511 if (has_indirect_clear_color) {
1512 /* Updating a surface state object may require that the state cache be
1513 * invalidated. From the SKL PRM, Shared Functions -> State -> State
1514 * Caching:
1515 *
1516 * Whenever the RENDER_SURFACE_STATE object in memory pointed to by
1517 * the Binding Table Pointer (BTP) and Binding Table Index (BTI) is
1518 * modified [...], the L1 state cache must be invalidated to ensure
1519 * the new surface or sampler state is fetched from system memory.
1520 */
1521 blorp_emit(batch, GENX(PIPE_CONTROL), pipe) {
1522 pipe.StateCacheInvalidationEnable = true;
1523 }
1524 }
1525 #endif
1526
1527 #if GEN_GEN >= 7
1528 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_VS), bt);
1529 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_HS), bt);
1530 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_DS), bt);
1531 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_GS), bt);
1532
1533 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_PS), bt) {
1534 bt.PointertoPSBindingTable = bind_offset;
1535 }
1536 #elif GEN_GEN >= 6
1537 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS), bt) {
1538 bt.PSBindingTableChange = true;
1539 bt.PointertoPSBindingTable = bind_offset;
1540 }
1541 #else
1542 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS), bt) {
1543 bt.PointertoPSBindingTable = bind_offset;
1544 }
1545 #endif
1546 }
1547
1548 static void
1549 blorp_emit_depth_stencil_config(struct blorp_batch *batch,
1550 const struct blorp_params *params)
1551 {
1552 const struct isl_device *isl_dev = batch->blorp->isl_dev;
1553
1554 uint32_t *dw = blorp_emit_dwords(batch, isl_dev->ds.size / 4);
1555 if (dw == NULL)
1556 return;
1557
1558 struct isl_depth_stencil_hiz_emit_info info = { };
1559
1560 if (params->depth.enabled) {
1561 info.view = &params->depth.view;
1562 info.mocs = params->depth.addr.mocs;
1563 } else if (params->stencil.enabled) {
1564 info.view = &params->stencil.view;
1565 info.mocs = params->stencil.addr.mocs;
1566 }
1567
1568 if (params->depth.enabled) {
1569 info.depth_surf = &params->depth.surf;
1570
1571 info.depth_address =
1572 blorp_emit_reloc(batch, dw + isl_dev->ds.depth_offset / 4,
1573 params->depth.addr, 0);
1574
1575 info.hiz_usage = params->depth.aux_usage;
1576 if (info.hiz_usage == ISL_AUX_USAGE_HIZ) {
1577 info.hiz_surf = &params->depth.aux_surf;
1578
1579 struct blorp_address hiz_address = params->depth.aux_addr;
1580 #if GEN_GEN == 6
1581 /* Sandy bridge hardware does not technically support mipmapped HiZ.
1582 * However, we have a special layout that allows us to make it work
1583 * anyway by manually offsetting to the specified miplevel.
1584 */
1585 assert(info.hiz_surf->dim_layout == ISL_DIM_LAYOUT_GEN6_STENCIL_HIZ);
1586 uint32_t offset_B;
1587 isl_surf_get_image_offset_B_tile_sa(info.hiz_surf,
1588 info.view->base_level, 0, 0,
1589 &offset_B, NULL, NULL);
1590 hiz_address.offset += offset_B;
1591 #endif
1592
1593 info.hiz_address =
1594 blorp_emit_reloc(batch, dw + isl_dev->ds.hiz_offset / 4,
1595 hiz_address, 0);
1596
1597 info.depth_clear_value = params->depth.clear_color.f32[0];
1598 }
1599 }
1600
1601 if (params->stencil.enabled) {
1602 info.stencil_surf = &params->stencil.surf;
1603
1604 struct blorp_address stencil_address = params->stencil.addr;
1605 #if GEN_GEN == 6
1606 /* Sandy bridge hardware does not technically support mipmapped stencil.
1607 * However, we have a special layout that allows us to make it work
1608 * anyway by manually offsetting to the specified miplevel.
1609 */
1610 assert(info.stencil_surf->dim_layout == ISL_DIM_LAYOUT_GEN6_STENCIL_HIZ);
1611 uint32_t offset_B;
1612 isl_surf_get_image_offset_B_tile_sa(info.stencil_surf,
1613 info.view->base_level, 0, 0,
1614 &offset_B, NULL, NULL);
1615 stencil_address.offset += offset_B;
1616 #endif
1617
1618 info.stencil_address =
1619 blorp_emit_reloc(batch, dw + isl_dev->ds.stencil_offset / 4,
1620 stencil_address, 0);
1621 }
1622
1623 isl_emit_depth_stencil_hiz_s(isl_dev, dw, &info);
1624 }
1625
1626 #if GEN_GEN >= 8
1627 /* Emits the Optimized HiZ sequence specified in the BDW+ PRMs. The
1628 * depth/stencil buffer extents are ignored to handle APIs which perform
1629 * clearing operations without such information.
1630 * */
1631 static void
1632 blorp_emit_gen8_hiz_op(struct blorp_batch *batch,
1633 const struct blorp_params *params)
1634 {
1635 /* We should be performing an operation on a depth or stencil buffer.
1636 */
1637 assert(params->depth.enabled || params->stencil.enabled);
1638
1639 /* The stencil buffer should only be enabled if a fast clear operation is
1640 * requested.
1641 */
1642 if (params->stencil.enabled)
1643 assert(params->hiz_op == ISL_AUX_OP_FAST_CLEAR);
1644
1645 /* From the BDW PRM Volume 2, 3DSTATE_WM_HZ_OP:
1646 *
1647 * 3DSTATE_MULTISAMPLE packet must be used prior to this packet to change
1648 * the Number of Multisamples. This packet must not be used to change
1649 * Number of Multisamples in a rendering sequence.
1650 *
1651 * Since HIZ may be the first thing in a batch buffer, play safe and always
1652 * emit 3DSTATE_MULTISAMPLE.
1653 */
1654 blorp_emit_3dstate_multisample(batch, params);
1655
1656 /* From the BDW PRM Volume 7, Depth Buffer Clear:
1657 *
1658 * The clear value must be between the min and max depth values
1659 * (inclusive) defined in the CC_VIEWPORT. If the depth buffer format is
1660 * D32_FLOAT, then +/-DENORM values are also allowed.
1661 *
1662 * Set the bounds to match our hardware limits, [0.0, 1.0].
1663 */
1664 if (params->depth.enabled && params->hiz_op == ISL_AUX_OP_FAST_CLEAR) {
1665 assert(params->depth.clear_color.f32[0] >= 0.0f);
1666 assert(params->depth.clear_color.f32[0] <= 1.0f);
1667 blorp_emit_cc_viewport(batch);
1668 }
1669
1670 /* According to the SKL PRM formula for WM_INT::ThreadDispatchEnable, the
1671 * 3DSTATE_WM::ForceThreadDispatchEnable field can force WM thread dispatch
1672 * even when WM_HZ_OP is active. However, WM thread dispatch is normally
1673 * disabled for HiZ ops and it appears that force-enabling it can lead to
1674 * GPU hangs on at least Skylake. Since we don't know the current state of
1675 * the 3DSTATE_WM packet, just emit a dummy one prior to 3DSTATE_WM_HZ_OP.
1676 */
1677 blorp_emit(batch, GENX(3DSTATE_WM), wm);
1678
1679 /* If we can't alter the depth stencil config and multiple layers are
1680 * involved, the HiZ op will fail. This is because the op requires that a
1681 * new config is emitted for each additional layer.
1682 */
1683 if (batch->flags & BLORP_BATCH_NO_EMIT_DEPTH_STENCIL) {
1684 assert(params->num_layers <= 1);
1685 } else {
1686 blorp_emit_depth_stencil_config(batch, params);
1687 }
1688
1689 blorp_emit(batch, GENX(3DSTATE_WM_HZ_OP), hzp) {
1690 switch (params->hiz_op) {
1691 case ISL_AUX_OP_FAST_CLEAR:
1692 hzp.StencilBufferClearEnable = params->stencil.enabled;
1693 hzp.DepthBufferClearEnable = params->depth.enabled;
1694 hzp.StencilClearValue = params->stencil_ref;
1695 hzp.FullSurfaceDepthandStencilClear = params->full_surface_hiz_op;
1696 break;
1697 case ISL_AUX_OP_FULL_RESOLVE:
1698 assert(params->full_surface_hiz_op);
1699 hzp.DepthBufferResolveEnable = true;
1700 break;
1701 case ISL_AUX_OP_AMBIGUATE:
1702 assert(params->full_surface_hiz_op);
1703 hzp.HierarchicalDepthBufferResolveEnable = true;
1704 break;
1705 case ISL_AUX_OP_PARTIAL_RESOLVE:
1706 case ISL_AUX_OP_NONE:
1707 unreachable("Invalid HIZ op");
1708 }
1709
1710 hzp.NumberofMultisamples = ffs(params->num_samples) - 1;
1711 hzp.SampleMask = 0xFFFF;
1712
1713 /* Due to a hardware issue, this bit MBZ */
1714 assert(hzp.ScissorRectangleEnable == false);
1715
1716 /* Contrary to the HW docs both fields are inclusive */
1717 hzp.ClearRectangleXMin = params->x0;
1718 hzp.ClearRectangleYMin = params->y0;
1719
1720 /* Contrary to the HW docs both fields are exclusive */
1721 hzp.ClearRectangleXMax = params->x1;
1722 hzp.ClearRectangleYMax = params->y1;
1723 }
1724
1725 /* PIPE_CONTROL w/ all bits clear except for “Post-Sync Operation” must set
1726 * to “Write Immediate Data” enabled.
1727 */
1728 blorp_emit(batch, GENX(PIPE_CONTROL), pc) {
1729 pc.PostSyncOperation = WriteImmediateData;
1730 pc.Address = blorp_get_workaround_page(batch);
1731 }
1732
1733 blorp_emit(batch, GENX(3DSTATE_WM_HZ_OP), hzp);
1734 }
1735 #endif
1736
1737 static void
1738 blorp_update_clear_color(struct blorp_batch *batch,
1739 const struct brw_blorp_surface_info *info,
1740 enum isl_aux_op op)
1741 {
1742 if (info->clear_color_addr.buffer && op == ISL_AUX_OP_FAST_CLEAR) {
1743 #if GEN_GEN == 11
1744 blorp_emit(batch, GENX(PIPE_CONTROL), pipe) {
1745 pipe.CommandStreamerStallEnable = true;
1746 }
1747
1748 /* 2 QWORDS */
1749 const unsigned inlinedata_dw = 2 * 2;
1750 const unsigned num_dwords = GENX(MI_ATOMIC_length) + inlinedata_dw;
1751
1752 struct blorp_address clear_addr = info->clear_color_addr;
1753 uint32_t *dw = blorp_emitn(batch, GENX(MI_ATOMIC), num_dwords,
1754 .DataSize = MI_ATOMIC_QWORD,
1755 .ATOMICOPCODE = MI_ATOMIC_OP_MOVE8B,
1756 .InlineData = true,
1757 .MemoryAddress = clear_addr);
1758 /* dw starts at dword 1, but we need to fill dwords 3 and 5 */
1759 dw[2] = info->clear_color.u32[0];
1760 dw[4] = info->clear_color.u32[1];
1761
1762 clear_addr.offset += 8;
1763 dw = blorp_emitn(batch, GENX(MI_ATOMIC), num_dwords,
1764 .DataSize = MI_ATOMIC_QWORD,
1765 .ATOMICOPCODE = MI_ATOMIC_OP_MOVE8B,
1766 .CSSTALL = true,
1767 .ReturnDataControl = true,
1768 .InlineData = true,
1769 .MemoryAddress = clear_addr);
1770 /* dw starts at dword 1, but we need to fill dwords 3 and 5 */
1771 dw[2] = info->clear_color.u32[2];
1772 dw[4] = info->clear_color.u32[3];
1773
1774 blorp_emit(batch, GENX(PIPE_CONTROL), pipe) {
1775 pipe.StateCacheInvalidationEnable = true;
1776 pipe.TextureCacheInvalidationEnable = true;
1777 }
1778 #elif GEN_GEN >= 9
1779 for (int i = 0; i < 4; i++) {
1780 blorp_emit(batch, GENX(MI_STORE_DATA_IMM), sdi) {
1781 sdi.Address = info->clear_color_addr;
1782 sdi.Address.offset += i * 4;
1783 sdi.ImmediateData = info->clear_color.u32[i];
1784 }
1785 }
1786 #elif GEN_GEN >= 7
1787 blorp_emit(batch, GENX(MI_STORE_DATA_IMM), sdi) {
1788 sdi.Address = info->clear_color_addr;
1789 sdi.ImmediateData = ISL_CHANNEL_SELECT_RED << 25 |
1790 ISL_CHANNEL_SELECT_GREEN << 22 |
1791 ISL_CHANNEL_SELECT_BLUE << 19 |
1792 ISL_CHANNEL_SELECT_ALPHA << 16;
1793 if (isl_format_has_int_channel(info->view.format)) {
1794 for (unsigned i = 0; i < 4; i++) {
1795 assert(info->clear_color.u32[i] == 0 ||
1796 info->clear_color.u32[i] == 1);
1797 }
1798 sdi.ImmediateData |= (info->clear_color.u32[0] != 0) << 31;
1799 sdi.ImmediateData |= (info->clear_color.u32[1] != 0) << 30;
1800 sdi.ImmediateData |= (info->clear_color.u32[2] != 0) << 29;
1801 sdi.ImmediateData |= (info->clear_color.u32[3] != 0) << 28;
1802 } else {
1803 for (unsigned i = 0; i < 4; i++) {
1804 assert(info->clear_color.f32[i] == 0.0f ||
1805 info->clear_color.f32[i] == 1.0f);
1806 }
1807 sdi.ImmediateData |= (info->clear_color.f32[0] != 0.0f) << 31;
1808 sdi.ImmediateData |= (info->clear_color.f32[1] != 0.0f) << 30;
1809 sdi.ImmediateData |= (info->clear_color.f32[2] != 0.0f) << 29;
1810 sdi.ImmediateData |= (info->clear_color.f32[3] != 0.0f) << 28;
1811 }
1812 }
1813 #endif
1814 }
1815 }
1816
1817 /**
1818 * \brief Execute a blit or render pass operation.
1819 *
1820 * To execute the operation, this function manually constructs and emits a
1821 * batch to draw a rectangle primitive. The batchbuffer is flushed before
1822 * constructing and after emitting the batch.
1823 *
1824 * This function alters no GL state.
1825 */
1826 static void
1827 blorp_exec(struct blorp_batch *batch, const struct blorp_params *params)
1828 {
1829 if (!(batch->flags & BLORP_BATCH_NO_UPDATE_CLEAR_COLOR)) {
1830 blorp_update_clear_color(batch, &params->dst, params->fast_clear_op);
1831 blorp_update_clear_color(batch, &params->depth, params->hiz_op);
1832 }
1833
1834 #if GEN_GEN >= 8
1835 if (params->hiz_op != ISL_AUX_OP_NONE) {
1836 blorp_emit_gen8_hiz_op(batch, params);
1837 return;
1838 }
1839 #endif
1840
1841 blorp_emit_vertex_buffers(batch, params);
1842 blorp_emit_vertex_elements(batch, params);
1843
1844 blorp_emit_pipeline(batch, params);
1845
1846 blorp_emit_surface_states(batch, params);
1847
1848 if (!(batch->flags & BLORP_BATCH_NO_EMIT_DEPTH_STENCIL))
1849 blorp_emit_depth_stencil_config(batch, params);
1850
1851 blorp_emit(batch, GENX(3DPRIMITIVE), prim) {
1852 prim.VertexAccessType = SEQUENTIAL;
1853 prim.PrimitiveTopologyType = _3DPRIM_RECTLIST;
1854 #if GEN_GEN >= 7
1855 prim.PredicateEnable = batch->flags & BLORP_BATCH_PREDICATE_ENABLE;
1856 #endif
1857 prim.VertexCountPerInstance = 3;
1858 prim.InstanceCount = params->num_layers;
1859 }
1860 }
1861
1862 #endif /* BLORP_GENX_EXEC_H */