intel/blorp: Move CLEAR_PARAMS setup into emit_depth_stencil_config
[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 "common/gen_device_info.h"
29 #include "common/gen_sample_positions.h"
30 #include "intel_aub.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 enum aub_state_struct_type type,
57 uint32_t size,
58 uint32_t alignment,
59 uint32_t *offset);
60 static void *
61 blorp_alloc_vertex_buffer(struct blorp_batch *batch, uint32_t size,
62 struct blorp_address *addr);
63
64 static void
65 blorp_alloc_binding_table(struct blorp_batch *batch, unsigned num_entries,
66 unsigned state_size, unsigned state_alignment,
67 uint32_t *bt_offset, uint32_t *surface_offsets,
68 void **surface_maps);
69 static void
70 blorp_surface_reloc(struct blorp_batch *batch, uint32_t ss_offset,
71 struct blorp_address address, uint32_t delta);
72
73 static void
74 blorp_emit_urb_config(struct blorp_batch *batch, unsigned vs_entry_size);
75
76 /***** BEGIN blorp_exec implementation ******/
77
78 #include "genxml/gen_macros.h"
79
80 static uint64_t
81 _blorp_combine_address(struct blorp_batch *batch, void *location,
82 struct blorp_address address, uint32_t delta)
83 {
84 if (address.buffer == NULL) {
85 return address.offset + delta;
86 } else {
87 return blorp_emit_reloc(batch, location, address, delta);
88 }
89 }
90
91 #define __gen_address_type struct blorp_address
92 #define __gen_user_data struct blorp_batch
93 #define __gen_combine_address _blorp_combine_address
94
95 #include "genxml/genX_pack.h"
96
97 #define _blorp_cmd_length(cmd) cmd ## _length
98 #define _blorp_cmd_length_bias(cmd) cmd ## _length_bias
99 #define _blorp_cmd_header(cmd) cmd ## _header
100 #define _blorp_cmd_pack(cmd) cmd ## _pack
101
102 #define blorp_emit(batch, cmd, name) \
103 for (struct cmd name = { _blorp_cmd_header(cmd) }, \
104 *_dst = blorp_emit_dwords(batch, _blorp_cmd_length(cmd)); \
105 __builtin_expect(_dst != NULL, 1); \
106 _blorp_cmd_pack(cmd)(batch, (void *)_dst, &name), \
107 _dst = NULL)
108
109 #define blorp_emitn(batch, cmd, n) ({ \
110 uint32_t *_dw = blorp_emit_dwords(batch, n); \
111 struct cmd template = { \
112 _blorp_cmd_header(cmd), \
113 .DWordLength = n - _blorp_cmd_length_bias(cmd), \
114 }; \
115 _blorp_cmd_pack(cmd)(batch, _dw, &template); \
116 _dw + 1; /* Array starts at dw[1] */ \
117 })
118
119 /* 3DSTATE_URB
120 * 3DSTATE_URB_VS
121 * 3DSTATE_URB_HS
122 * 3DSTATE_URB_DS
123 * 3DSTATE_URB_GS
124 *
125 * Assign the entire URB to the VS. Even though the VS disabled, URB space
126 * is still needed because the clipper loads the VUE's from the URB. From
127 * the Sandybridge PRM, Volume 2, Part 1, Section 3DSTATE,
128 * Dword 1.15:0 "VS Number of URB Entries":
129 * This field is always used (even if VS Function Enable is DISABLED).
130 *
131 * The warning below appears in the PRM (Section 3DSTATE_URB), but we can
132 * safely ignore it because this batch contains only one draw call.
133 * Because of URB corruption caused by allocating a previous GS unit
134 * URB entry to the VS unit, software is required to send a “GS NULL
135 * Fence” (Send URB fence with VS URB size == 1 and GS URB size == 0)
136 * plus a dummy DRAW call before any case where VS will be taking over
137 * GS URB space.
138 *
139 * If the 3DSTATE_URB_VS is emitted, than the others must be also.
140 * From the Ivybridge PRM, Volume 2 Part 1, section 1.7.1 3DSTATE_URB_VS:
141 *
142 * 3DSTATE_URB_HS, 3DSTATE_URB_DS, and 3DSTATE_URB_GS must also be
143 * programmed in order for the programming of this state to be
144 * valid.
145 */
146 static void
147 emit_urb_config(struct blorp_batch *batch,
148 const struct blorp_params *params)
149 {
150 /* Once vertex fetcher has written full VUE entries with complete
151 * header the space requirement is as follows per vertex (in bytes):
152 *
153 * Header Position Program constants
154 * +--------+------------+-------------------+
155 * | 16 | 16 | n x 16 |
156 * +--------+------------+-------------------+
157 *
158 * where 'n' stands for number of varying inputs expressed as vec4s.
159 */
160 const unsigned num_varyings =
161 params->wm_prog_data ? params->wm_prog_data->num_varying_inputs : 0;
162 const unsigned total_needed = 16 + 16 + num_varyings * 16;
163
164 /* The URB size is expressed in units of 64 bytes (512 bits) */
165 const unsigned vs_entry_size = DIV_ROUND_UP(total_needed, 64);
166
167 blorp_emit_urb_config(batch, vs_entry_size);
168 }
169
170 static void
171 blorp_emit_vertex_data(struct blorp_batch *batch,
172 const struct blorp_params *params,
173 struct blorp_address *addr,
174 uint32_t *size)
175 {
176 const float vertices[] = {
177 /* v0 */ (float)params->x1, (float)params->y1, params->z,
178 /* v1 */ (float)params->x0, (float)params->y1, params->z,
179 /* v2 */ (float)params->x0, (float)params->y0, params->z,
180 };
181
182 void *data = blorp_alloc_vertex_buffer(batch, sizeof(vertices), addr);
183 memcpy(data, vertices, sizeof(vertices));
184 *size = sizeof(vertices);
185 }
186
187 static void
188 blorp_emit_input_varying_data(struct blorp_batch *batch,
189 const struct blorp_params *params,
190 struct blorp_address *addr,
191 uint32_t *size)
192 {
193 const unsigned vec4_size_in_bytes = 4 * sizeof(float);
194 const unsigned max_num_varyings =
195 DIV_ROUND_UP(sizeof(params->wm_inputs), vec4_size_in_bytes);
196 const unsigned num_varyings = params->wm_prog_data->num_varying_inputs;
197
198 *size = num_varyings * vec4_size_in_bytes;
199
200 const float *const inputs_src = (const float *)&params->wm_inputs;
201 float *inputs = blorp_alloc_vertex_buffer(batch, *size, addr);
202
203 /* Walk over the attribute slots, determine if the attribute is used by
204 * the program and when necessary copy the values from the input storage to
205 * the vertex data buffer.
206 */
207 for (unsigned i = 0; i < max_num_varyings; i++) {
208 const gl_varying_slot attr = VARYING_SLOT_VAR0 + i;
209
210 if (!(params->wm_prog_data->inputs_read & (1ull << attr)))
211 continue;
212
213 memcpy(inputs, inputs_src + i * 4, vec4_size_in_bytes);
214
215 inputs += 4;
216 }
217 }
218
219 static void
220 blorp_emit_vertex_buffers(struct blorp_batch *batch,
221 const struct blorp_params *params)
222 {
223 struct GENX(VERTEX_BUFFER_STATE) vb[2];
224 memset(vb, 0, sizeof(vb));
225
226 unsigned num_buffers = 1;
227
228 uint32_t size;
229 blorp_emit_vertex_data(batch, params, &vb[0].BufferStartingAddress, &size);
230 vb[0].VertexBufferIndex = 0;
231 vb[0].BufferPitch = 3 * sizeof(float);
232 vb[0].VertexBufferMOCS = batch->blorp->mocs.vb;
233 #if GEN_GEN >= 7
234 vb[0].AddressModifyEnable = true;
235 #endif
236 #if GEN_GEN >= 8
237 vb[0].BufferSize = size;
238 #else
239 vb[0].BufferAccessType = VERTEXDATA;
240 vb[0].EndAddress = vb[0].BufferStartingAddress;
241 vb[0].EndAddress.offset += size - 1;
242 #endif
243
244 if (params->wm_prog_data && params->wm_prog_data->num_varying_inputs) {
245 blorp_emit_input_varying_data(batch, params,
246 &vb[1].BufferStartingAddress, &size);
247 vb[1].VertexBufferIndex = 1;
248 vb[1].BufferPitch = 0;
249 vb[1].VertexBufferMOCS = batch->blorp->mocs.vb;
250 #if GEN_GEN >= 7
251 vb[1].AddressModifyEnable = true;
252 #endif
253 #if GEN_GEN >= 8
254 vb[1].BufferSize = size;
255 #else
256 vb[1].BufferAccessType = INSTANCEDATA;
257 vb[1].EndAddress = vb[1].BufferStartingAddress;
258 vb[1].EndAddress.offset += size - 1;
259 #endif
260 num_buffers++;
261 }
262
263 const unsigned num_dwords =
264 1 + GENX(VERTEX_BUFFER_STATE_length) * num_buffers;
265 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_BUFFERS), num_dwords);
266
267 for (unsigned i = 0; i < num_buffers; i++) {
268 GENX(VERTEX_BUFFER_STATE_pack)(batch, dw, &vb[i]);
269 dw += GENX(VERTEX_BUFFER_STATE_length);
270 }
271 }
272
273 static void
274 blorp_emit_vertex_elements(struct blorp_batch *batch,
275 const struct blorp_params *params)
276 {
277 const unsigned num_varyings =
278 params->wm_prog_data ? params->wm_prog_data->num_varying_inputs : 0;
279 const unsigned num_elements = 2 + num_varyings;
280
281 struct GENX(VERTEX_ELEMENT_STATE) ve[num_elements];
282 memset(ve, 0, num_elements * sizeof(*ve));
283
284 /* Setup VBO for the rectangle primitive..
285 *
286 * A rectangle primitive (3DPRIM_RECTLIST) consists of only three
287 * vertices. The vertices reside in screen space with DirectX
288 * coordinates (that is, (0, 0) is the upper left corner).
289 *
290 * v2 ------ implied
291 * | |
292 * | |
293 * v1 ----- v0
294 *
295 * Since the VS is disabled, the clipper loads each VUE directly from
296 * the URB. This is controlled by the 3DSTATE_VERTEX_BUFFERS and
297 * 3DSTATE_VERTEX_ELEMENTS packets below. The VUE contents are as follows:
298 * dw0: Reserved, MBZ.
299 * dw1: Render Target Array Index. Below vertex fetcher gets programmed
300 * to assign this with primitive instance identifier which will be
301 * used for layered clears. All other renders have only one instance
302 * and therefore the value will be effectively zero.
303 * dw2: Viewport Index. The HiZ op disables viewport mapping and
304 * scissoring, so set the dword to 0.
305 * dw3: Point Width: The HiZ op does not emit the POINTLIST primitive,
306 * so set the dword to 0.
307 * dw4: Vertex Position X.
308 * dw5: Vertex Position Y.
309 * dw6: Vertex Position Z.
310 * dw7: Vertex Position W.
311 *
312 * dw8: Flat vertex input 0
313 * dw9: Flat vertex input 1
314 * ...
315 * dwn: Flat vertex input n - 8
316 *
317 * For details, see the Sandybridge PRM, Volume 2, Part 1, Section 1.5.1
318 * "Vertex URB Entry (VUE) Formats".
319 *
320 * Only vertex position X and Y are going to be variable, Z is fixed to
321 * zero and W to one. Header words dw0,2,3 are zero. There is no need to
322 * include the fixed values in the vertex buffer. Vertex fetcher can be
323 * instructed to fill vertex elements with constant values of one and zero
324 * instead of reading them from the buffer.
325 * Flat inputs are program constants that are not interpolated. Moreover
326 * their values will be the same between vertices.
327 *
328 * See the vertex element setup below.
329 */
330 ve[0].VertexBufferIndex = 0;
331 ve[0].Valid = true;
332 ve[0].SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT;
333 ve[0].SourceElementOffset = 0;
334 ve[0].Component0Control = VFCOMP_STORE_0;
335
336 /* From Gen8 onwards hardware is no more instructed to overwrite components
337 * using an element specifier. Instead one has separate 3DSTATE_VF_SGVS
338 * (System Generated Value Setup) state packet for it.
339 */
340 #if GEN_GEN >= 8
341 ve[0].Component1Control = VFCOMP_STORE_0;
342 #else
343 ve[0].Component1Control = VFCOMP_STORE_IID;
344 #endif
345 ve[0].Component2Control = VFCOMP_STORE_0;
346 ve[0].Component3Control = VFCOMP_STORE_0;
347
348 ve[1].VertexBufferIndex = 0;
349 ve[1].Valid = true;
350 ve[1].SourceElementFormat = ISL_FORMAT_R32G32B32_FLOAT;
351 ve[1].SourceElementOffset = 0;
352 ve[1].Component0Control = VFCOMP_STORE_SRC;
353 ve[1].Component1Control = VFCOMP_STORE_SRC;
354 ve[1].Component2Control = VFCOMP_STORE_SRC;
355 ve[1].Component3Control = VFCOMP_STORE_1_FP;
356
357 for (unsigned i = 0; i < num_varyings; ++i) {
358 ve[i + 2].VertexBufferIndex = 1;
359 ve[i + 2].Valid = true;
360 ve[i + 2].SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT;
361 ve[i + 2].SourceElementOffset = i * 4 * sizeof(float);
362 ve[i + 2].Component0Control = VFCOMP_STORE_SRC;
363 ve[i + 2].Component1Control = VFCOMP_STORE_SRC;
364 ve[i + 2].Component2Control = VFCOMP_STORE_SRC;
365 ve[i + 2].Component3Control = VFCOMP_STORE_SRC;
366 }
367
368 const unsigned num_dwords =
369 1 + GENX(VERTEX_ELEMENT_STATE_length) * num_elements;
370 uint32_t *dw = blorp_emitn(batch, GENX(3DSTATE_VERTEX_ELEMENTS), num_dwords);
371
372 for (unsigned i = 0; i < num_elements; i++) {
373 GENX(VERTEX_ELEMENT_STATE_pack)(batch, dw, &ve[i]);
374 dw += GENX(VERTEX_ELEMENT_STATE_length);
375 }
376
377 #if GEN_GEN >= 8
378 /* Overwrite Render Target Array Index (2nd dword) in the VUE header with
379 * primitive instance identifier. This is used for layered clears.
380 */
381 blorp_emit(batch, GENX(3DSTATE_VF_SGVS), sgvs) {
382 sgvs.InstanceIDEnable = true;
383 sgvs.InstanceIDComponentNumber = COMP_1;
384 sgvs.InstanceIDElementOffset = 0;
385 }
386
387 for (unsigned i = 0; i < num_elements; i++) {
388 blorp_emit(batch, GENX(3DSTATE_VF_INSTANCING), vf) {
389 vf.VertexElementIndex = i;
390 vf.InstancingEnable = false;
391 }
392 }
393
394 blorp_emit(batch, GENX(3DSTATE_VF_TOPOLOGY), topo) {
395 topo.PrimitiveTopologyType = _3DPRIM_RECTLIST;
396 }
397 #endif
398 }
399
400 static void
401 blorp_emit_sf_config(struct blorp_batch *batch,
402 const struct blorp_params *params)
403 {
404 const struct brw_blorp_prog_data *prog_data = params->wm_prog_data;
405
406 /* 3DSTATE_SF
407 *
408 * Disable ViewportTransformEnable (dw2.1)
409 *
410 * From the SandyBridge PRM, Volume 2, Part 1, Section 1.3, "3D
411 * Primitives Overview":
412 * RECTLIST: Viewport Mapping must be DISABLED (as is typical with the
413 * use of screen- space coordinates).
414 *
415 * A solid rectangle must be rendered, so set FrontFaceFillMode (dw2.4:3)
416 * and BackFaceFillMode (dw2.5:6) to SOLID(0).
417 *
418 * From the Sandy Bridge PRM, Volume 2, Part 1, Section
419 * 6.4.1.1 3DSTATE_SF, Field FrontFaceFillMode:
420 * SOLID: Any triangle or rectangle object found to be front-facing
421 * is rendered as a solid object. This setting is required when
422 * (rendering rectangle (RECTLIST) objects.
423 */
424
425 #if GEN_GEN >= 8
426
427 blorp_emit(batch, GENX(3DSTATE_SF), sf);
428
429 blorp_emit(batch, GENX(3DSTATE_RASTER), raster) {
430 raster.CullMode = CULLMODE_NONE;
431 }
432
433 blorp_emit(batch, GENX(3DSTATE_SBE), sbe) {
434 sbe.VertexURBEntryReadOffset = 1;
435 sbe.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
436 sbe.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
437 sbe.ForceVertexURBEntryReadLength = true;
438 sbe.ForceVertexURBEntryReadOffset = true;
439 sbe.ConstantInterpolationEnable = prog_data->flat_inputs;
440
441 #if GEN_GEN >= 9
442 for (unsigned i = 0; i < 32; i++)
443 sbe.AttributeActiveComponentFormat[i] = ACF_XYZW;
444 #endif
445 }
446
447 #elif GEN_GEN >= 7
448
449 blorp_emit(batch, GENX(3DSTATE_SF), sf) {
450 sf.FrontFaceFillMode = FILL_MODE_SOLID;
451 sf.BackFaceFillMode = FILL_MODE_SOLID;
452
453 sf.MultisampleRasterizationMode = params->dst.surf.samples > 1 ?
454 MSRASTMODE_ON_PATTERN : MSRASTMODE_OFF_PIXEL;
455
456 #if GEN_GEN == 7
457 sf.DepthBufferSurfaceFormat = params->depth_format;
458 #endif
459 }
460
461 blorp_emit(batch, GENX(3DSTATE_SBE), sbe) {
462 sbe.VertexURBEntryReadOffset = 1;
463 if (prog_data) {
464 sbe.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
465 sbe.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
466 sbe.ConstantInterpolationEnable = prog_data->flat_inputs;
467 } else {
468 sbe.NumberofSFOutputAttributes = 0;
469 sbe.VertexURBEntryReadLength = 1;
470 }
471 }
472
473 #else /* GEN_GEN <= 6 */
474
475 blorp_emit(batch, GENX(3DSTATE_SF), sf) {
476 sf.FrontFaceFillMode = FILL_MODE_SOLID;
477 sf.BackFaceFillMode = FILL_MODE_SOLID;
478
479 sf.MultisampleRasterizationMode = params->dst.surf.samples > 1 ?
480 MSRASTMODE_ON_PATTERN : MSRASTMODE_OFF_PIXEL;
481
482 sf.VertexURBEntryReadOffset = 1;
483 if (prog_data) {
484 sf.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
485 sf.VertexURBEntryReadLength = brw_blorp_get_urb_length(prog_data);
486 sf.ConstantInterpolationEnable = prog_data->flat_inputs;
487 } else {
488 sf.NumberofSFOutputAttributes = 0;
489 sf.VertexURBEntryReadLength = 1;
490 }
491 }
492
493 #endif /* GEN_GEN */
494 }
495
496 static void
497 blorp_emit_ps_config(struct blorp_batch *batch,
498 const struct blorp_params *params)
499 {
500 const struct brw_blorp_prog_data *prog_data = params->wm_prog_data;
501
502 /* Even when thread dispatch is disabled, max threads (dw5.25:31) must be
503 * nonzero to prevent the GPU from hanging. While the documentation doesn't
504 * mention this explicitly, it notes that the valid range for the field is
505 * [1,39] = [2,40] threads, which excludes zero.
506 *
507 * To be safe (and to minimize extraneous code) we go ahead and fully
508 * configure the WM state whether or not there is a WM program.
509 */
510
511 #if GEN_GEN >= 8
512
513 blorp_emit(batch, GENX(3DSTATE_WM), wm);
514
515 blorp_emit(batch, GENX(3DSTATE_PS), ps) {
516 if (params->src.addr.buffer) {
517 ps.SamplerCount = 1; /* Up to 4 samplers */
518 ps.BindingTableEntryCount = 2;
519 } else {
520 ps.BindingTableEntryCount = 1;
521 }
522
523 ps.DispatchGRFStartRegisterForConstantSetupData0 =
524 prog_data->first_curbe_grf_0;
525 ps.DispatchGRFStartRegisterForConstantSetupData2 =
526 prog_data->first_curbe_grf_2;
527
528 ps._8PixelDispatchEnable = prog_data->dispatch_8;
529 ps._16PixelDispatchEnable = prog_data->dispatch_16;
530
531 ps.KernelStartPointer0 = params->wm_prog_kernel;
532 ps.KernelStartPointer2 =
533 params->wm_prog_kernel + prog_data->ksp_offset_2;
534
535 /* 3DSTATE_PS expects the number of threads per PSD, which is always 64;
536 * it implicitly scales for different GT levels (which have some # of
537 * PSDs).
538 *
539 * In Gen8 the format is U8-2 whereas in Gen9 it is U8-1.
540 */
541 if (GEN_GEN >= 9)
542 ps.MaximumNumberofThreadsPerPSD = 64 - 1;
543 else
544 ps.MaximumNumberofThreadsPerPSD = 64 - 2;
545
546 switch (params->fast_clear_op) {
547 case BLORP_FAST_CLEAR_OP_NONE:
548 break;
549 #if GEN_GEN >= 9
550 case BLORP_FAST_CLEAR_OP_RESOLVE_PARTIAL:
551 ps.RenderTargetResolveType = RESOLVE_PARTIAL;
552 break;
553 case BLORP_FAST_CLEAR_OP_RESOLVE_FULL:
554 ps.RenderTargetResolveType = RESOLVE_FULL;
555 break;
556 #else
557 case BLORP_FAST_CLEAR_OP_RESOLVE_FULL:
558 ps.RenderTargetResolveEnable = true;
559 break;
560 #endif
561 case BLORP_FAST_CLEAR_OP_CLEAR:
562 ps.RenderTargetFastClearEnable = true;
563 break;
564 default:
565 unreachable("Invalid fast clear op");
566 }
567 }
568
569 blorp_emit(batch, GENX(3DSTATE_PS_EXTRA), psx) {
570 psx.PixelShaderValid = true;
571
572 if (params->src.addr.buffer)
573 psx.PixelShaderKillsPixel = true;
574
575 psx.AttributeEnable = prog_data->num_varying_inputs > 0;
576
577 if (prog_data && prog_data->persample_msaa_dispatch)
578 psx.PixelShaderIsPerSample = true;
579 }
580
581 #elif GEN_GEN >= 7
582
583 blorp_emit(batch, GENX(3DSTATE_WM), wm) {
584 switch (params->hiz_op) {
585 case BLORP_HIZ_OP_DEPTH_CLEAR:
586 wm.DepthBufferClear = true;
587 break;
588 case BLORP_HIZ_OP_DEPTH_RESOLVE:
589 wm.DepthBufferResolveEnable = true;
590 break;
591 case BLORP_HIZ_OP_HIZ_RESOLVE:
592 wm.HierarchicalDepthBufferResolveEnable = true;
593 break;
594 case BLORP_HIZ_OP_NONE:
595 break;
596 default:
597 unreachable("not reached");
598 }
599
600 if (prog_data)
601 wm.ThreadDispatchEnable = true;
602
603 if (params->src.addr.buffer)
604 wm.PixelShaderKillPixel = true;
605
606 if (params->dst.surf.samples > 1) {
607 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
608 wm.MultisampleDispatchMode =
609 (prog_data && prog_data->persample_msaa_dispatch) ?
610 MSDISPMODE_PERSAMPLE : MSDISPMODE_PERPIXEL;
611 } else {
612 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
613 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
614 }
615 }
616
617 blorp_emit(batch, GENX(3DSTATE_PS), ps) {
618 ps.MaximumNumberofThreads =
619 batch->blorp->isl_dev->info->max_wm_threads - 1;
620
621 #if GEN_IS_HASWELL
622 ps.SampleMask = 1;
623 #endif
624
625 if (prog_data) {
626 ps.DispatchGRFStartRegisterforConstantSetupData0 =
627 prog_data->first_curbe_grf_0;
628 ps.DispatchGRFStartRegisterforConstantSetupData2 =
629 prog_data->first_curbe_grf_2;
630
631 ps.KernelStartPointer0 = params->wm_prog_kernel;
632 ps.KernelStartPointer2 =
633 params->wm_prog_kernel + prog_data->ksp_offset_2;
634
635 ps._8PixelDispatchEnable = prog_data->dispatch_8;
636 ps._16PixelDispatchEnable = prog_data->dispatch_16;
637
638 ps.AttributeEnable = prog_data->num_varying_inputs > 0;
639 } else {
640 /* Gen7 hardware gets angry if we don't enable at least one dispatch
641 * mode, so just enable 16-pixel dispatch if we don't have a program.
642 */
643 ps._16PixelDispatchEnable = true;
644 }
645
646 if (params->src.addr.buffer)
647 ps.SamplerCount = 1; /* Up to 4 samplers */
648
649 switch (params->fast_clear_op) {
650 case BLORP_FAST_CLEAR_OP_NONE:
651 break;
652 case BLORP_FAST_CLEAR_OP_RESOLVE_FULL:
653 ps.RenderTargetResolveEnable = true;
654 break;
655 case BLORP_FAST_CLEAR_OP_CLEAR:
656 ps.RenderTargetFastClearEnable = true;
657 break;
658 default:
659 unreachable("Invalid fast clear op");
660 }
661 }
662
663 #else /* GEN_GEN <= 6 */
664
665 blorp_emit(batch, GENX(3DSTATE_WM), wm) {
666 wm.MaximumNumberofThreads =
667 batch->blorp->isl_dev->info->max_wm_threads - 1;
668
669 switch (params->hiz_op) {
670 case BLORP_HIZ_OP_DEPTH_CLEAR:
671 wm.DepthBufferClear = true;
672 break;
673 case BLORP_HIZ_OP_DEPTH_RESOLVE:
674 wm.DepthBufferResolveEnable = true;
675 break;
676 case BLORP_HIZ_OP_HIZ_RESOLVE:
677 wm.HierarchicalDepthBufferResolveEnable = true;
678 break;
679 case BLORP_HIZ_OP_NONE:
680 break;
681 default:
682 unreachable("not reached");
683 }
684
685 if (prog_data) {
686 wm.ThreadDispatchEnable = true;
687
688 wm.DispatchGRFStartRegisterforConstantSetupData0 =
689 prog_data->first_curbe_grf_0;
690 wm.DispatchGRFStartRegisterforConstantSetupData2 =
691 prog_data->first_curbe_grf_2;
692
693 wm.KernelStartPointer0 = params->wm_prog_kernel;
694 wm.KernelStartPointer2 =
695 params->wm_prog_kernel + prog_data->ksp_offset_2;
696
697 wm._8PixelDispatchEnable = prog_data->dispatch_8;
698 wm._16PixelDispatchEnable = prog_data->dispatch_16;
699
700 wm.NumberofSFOutputAttributes = prog_data->num_varying_inputs;
701 }
702
703 if (params->src.addr.buffer) {
704 wm.SamplerCount = 1; /* Up to 4 samplers */
705 wm.PixelShaderKillPixel = true; /* TODO: temporarily smash on */
706 }
707
708 if (params->dst.surf.samples > 1) {
709 wm.MultisampleRasterizationMode = MSRASTMODE_ON_PATTERN;
710 wm.MultisampleDispatchMode =
711 (prog_data && prog_data->persample_msaa_dispatch) ?
712 MSDISPMODE_PERSAMPLE : MSDISPMODE_PERPIXEL;
713 } else {
714 wm.MultisampleRasterizationMode = MSRASTMODE_OFF_PIXEL;
715 wm.MultisampleDispatchMode = MSDISPMODE_PERSAMPLE;
716 }
717 }
718
719 #endif /* GEN_GEN */
720 }
721
722
723 static void
724 blorp_emit_depth_stencil_config(struct blorp_batch *batch,
725 const struct blorp_params *params)
726 {
727 #if GEN_GEN >= 7
728 const uint32_t mocs = 1; /* GEN7_MOCS_L3 */
729 #else
730 const uint32_t mocs = 0;
731 #endif
732
733 blorp_emit(batch, GENX(3DSTATE_DEPTH_BUFFER), db) {
734 switch (params->depth.surf.dim) {
735 case ISL_SURF_DIM_1D:
736 db.SurfaceType = SURFTYPE_1D;
737 break;
738 case ISL_SURF_DIM_2D:
739 db.SurfaceType = SURFTYPE_2D;
740 break;
741 case ISL_SURF_DIM_3D:
742 db.SurfaceType = SURFTYPE_3D;
743 break;
744 }
745
746 db.SurfaceFormat = params->depth_format;
747
748 #if GEN_GEN >= 7
749 db.DepthWriteEnable = true;
750 #endif
751
752 #if GEN_GEN <= 6
753 db.TiledSurface = true;
754 db.TileWalk = TILEWALK_YMAJOR;
755 db.MIPMapLayoutMode = MIPLAYOUT_BELOW;
756 db.SeparateStencilBufferEnable = true;
757 #endif
758
759 db.HierarchicalDepthBufferEnable = true;
760
761 db.Width = params->depth.surf.logical_level0_px.width - 1;
762 db.Height = params->depth.surf.logical_level0_px.height - 1;
763 db.RenderTargetViewExtent = db.Depth =
764 MAX2(params->depth.surf.logical_level0_px.depth,
765 params->depth.surf.logical_level0_px.array_len) - 1;
766
767 db.LOD = params->depth.view.base_level;
768 db.MinimumArrayElement = params->depth.view.base_array_layer;
769
770 db.SurfacePitch = params->depth.surf.row_pitch - 1;
771 db.SurfaceBaseAddress = params->depth.addr;
772 db.DepthBufferMOCS = mocs;
773 }
774
775 blorp_emit(batch, GENX(3DSTATE_HIER_DEPTH_BUFFER), hiz) {
776 hiz.SurfacePitch = params->depth.aux_surf.row_pitch - 1;
777 hiz.SurfaceBaseAddress = params->depth.aux_addr;
778 hiz.HierarchicalDepthBufferMOCS = mocs;
779 }
780
781 blorp_emit(batch, GENX(3DSTATE_STENCIL_BUFFER), sb);
782
783 /* 3DSTATE_CLEAR_PARAMS
784 *
785 * From the Sandybridge PRM, Volume 2, Part 1, Section 3DSTATE_CLEAR_PARAMS:
786 * [DevSNB] 3DSTATE_CLEAR_PARAMS packet must follow the DEPTH_BUFFER_STATE
787 * packet when HiZ is enabled and the DEPTH_BUFFER_STATE changes.
788 */
789 blorp_emit(batch, GENX(3DSTATE_CLEAR_PARAMS), clear) {
790 clear.DepthClearValueValid = true;
791 clear.DepthClearValue = params->depth.clear_color.u32[0];
792 }
793 }
794
795 static uint32_t
796 blorp_emit_blend_state(struct blorp_batch *batch,
797 const struct blorp_params *params)
798 {
799 struct GENX(BLEND_STATE) blend;
800 memset(&blend, 0, sizeof(blend));
801
802 for (unsigned i = 0; i < params->num_draw_buffers; ++i) {
803 blend.Entry[i].PreBlendColorClampEnable = true;
804 blend.Entry[i].PostBlendColorClampEnable = true;
805 blend.Entry[i].ColorClampRange = COLORCLAMP_RTFORMAT;
806
807 blend.Entry[i].WriteDisableRed = params->color_write_disable[0];
808 blend.Entry[i].WriteDisableGreen = params->color_write_disable[1];
809 blend.Entry[i].WriteDisableBlue = params->color_write_disable[2];
810 blend.Entry[i].WriteDisableAlpha = params->color_write_disable[3];
811 }
812
813 uint32_t offset;
814 void *state = blorp_alloc_dynamic_state(batch, AUB_TRACE_BLEND_STATE,
815 GENX(BLEND_STATE_length) * 4,
816 64, &offset);
817 GENX(BLEND_STATE_pack)(NULL, state, &blend);
818
819 #if GEN_GEN >= 7
820 blorp_emit(batch, GENX(3DSTATE_BLEND_STATE_POINTERS), sp) {
821 sp.BlendStatePointer = offset;
822 #if GEN_GEN >= 8
823 sp.BlendStatePointerValid = true;
824 #endif
825 }
826 #endif
827
828 #if GEN_GEN >= 8
829 blorp_emit(batch, GENX(3DSTATE_PS_BLEND), ps_blend) {
830 ps_blend.HasWriteableRT = true;
831 }
832 #endif
833
834 return offset;
835 }
836
837 static uint32_t
838 blorp_emit_color_calc_state(struct blorp_batch *batch,
839 const struct blorp_params *params)
840 {
841 uint32_t offset;
842 void *state = blorp_alloc_dynamic_state(batch, AUB_TRACE_CC_STATE,
843 GENX(COLOR_CALC_STATE_length) * 4,
844 64, &offset);
845 memset(state, 0, GENX(COLOR_CALC_STATE_length) * 4);
846
847 #if GEN_GEN >= 7
848 blorp_emit(batch, GENX(3DSTATE_CC_STATE_POINTERS), sp) {
849 sp.ColorCalcStatePointer = offset;
850 #if GEN_GEN >= 8
851 sp.ColorCalcStatePointerValid = true;
852 #endif
853 }
854 #endif
855
856 return offset;
857 }
858
859 static uint32_t
860 blorp_emit_depth_stencil_state(struct blorp_batch *batch,
861 const struct blorp_params *params)
862 {
863 #if GEN_GEN >= 8
864
865 /* On gen8+, DEPTH_STENCIL state is simply an instruction */
866 blorp_emit(batch, GENX(3DSTATE_WM_DEPTH_STENCIL), ds);
867 return 0;
868
869 #else /* GEN_GEN <= 7 */
870
871 /* See the following sections of the Sandy Bridge PRM, Volume 1, Part2:
872 * - 7.5.3.1 Depth Buffer Clear
873 * - 7.5.3.2 Depth Buffer Resolve
874 * - 7.5.3.3 Hierarchical Depth Buffer Resolve
875 */
876 struct GENX(DEPTH_STENCIL_STATE) ds = {
877 .DepthBufferWriteEnable = true,
878 };
879
880 if (params->hiz_op == BLORP_HIZ_OP_DEPTH_RESOLVE) {
881 ds.DepthTestEnable = true;
882 ds.DepthTestFunction = COMPAREFUNCTION_NEVER;
883 }
884
885 uint32_t offset;
886 void *state = blorp_alloc_dynamic_state(batch, AUB_TRACE_DEPTH_STENCIL_STATE,
887 GENX(DEPTH_STENCIL_STATE_length) * 4,
888 64, &offset);
889 GENX(DEPTH_STENCIL_STATE_pack)(NULL, state, &ds);
890
891 #if GEN_GEN >= 7
892 blorp_emit(batch, GENX(3DSTATE_DEPTH_STENCIL_STATE_POINTERS), sp) {
893 sp.PointertoDEPTH_STENCIL_STATE = offset;
894 }
895 #endif
896
897 return offset;
898
899 #endif /* GEN_GEN */
900 }
901
902 struct surface_state_info {
903 unsigned num_dwords;
904 unsigned ss_align; /* Required alignment of RENDER_SURFACE_STATE in bytes */
905 unsigned reloc_dw;
906 unsigned aux_reloc_dw;
907 };
908
909 static const struct surface_state_info surface_state_infos[] = {
910 [6] = {6, 32, 1, 0},
911 [7] = {8, 32, 1, 6},
912 [8] = {13, 64, 8, 10},
913 [9] = {16, 64, 8, 10},
914 };
915
916 static void
917 blorp_emit_surface_state(struct blorp_batch *batch,
918 const struct brw_blorp_surface_info *surface,
919 uint32_t *state, uint32_t state_offset,
920 bool is_render_target)
921 {
922 const struct surface_state_info ss_info = surface_state_infos[GEN_GEN];
923
924 struct isl_surf surf = surface->surf;
925
926 if (surf.dim == ISL_SURF_DIM_1D &&
927 surf.dim_layout == ISL_DIM_LAYOUT_GEN4_2D) {
928 assert(surf.logical_level0_px.height == 1);
929 surf.dim = ISL_SURF_DIM_2D;
930 }
931
932 /* Blorp doesn't support HiZ in any of the blit or slow-clear paths */
933 enum isl_aux_usage aux_usage = surface->aux_usage;
934 if (aux_usage == ISL_AUX_USAGE_HIZ)
935 aux_usage = ISL_AUX_USAGE_NONE;
936
937 const uint32_t mocs =
938 is_render_target ? batch->blorp->mocs.rb : batch->blorp->mocs.tex;
939
940 isl_surf_fill_state(batch->blorp->isl_dev, state,
941 .surf = &surf, .view = &surface->view,
942 .aux_surf = &surface->aux_surf, .aux_usage = aux_usage,
943 .mocs = mocs, .clear_color = surface->clear_color);
944
945 blorp_surface_reloc(batch, state_offset + ss_info.reloc_dw * 4,
946 surface->addr, 0);
947
948 if (aux_usage != ISL_AUX_USAGE_NONE) {
949 /* On gen7 and prior, the bottom 12 bits of the MCS base address are
950 * used to store other information. This should be ok, however, because
951 * surface buffer addresses are always 4K page alinged.
952 */
953 assert((surface->aux_addr.offset & 0xfff) == 0);
954 blorp_surface_reloc(batch, state_offset + ss_info.aux_reloc_dw * 4,
955 surface->aux_addr, state[ss_info.aux_reloc_dw]);
956 }
957 }
958
959 static void
960 blorp_emit_surface_states(struct blorp_batch *batch,
961 const struct blorp_params *params)
962 {
963 uint32_t bind_offset, surface_offsets[2];
964 void *surface_maps[2];
965
966 const unsigned ss_size = GENX(RENDER_SURFACE_STATE_length) * 4;
967 const unsigned ss_align = GENX(RENDER_SURFACE_STATE_length) > 8 ? 64 : 32;
968
969 unsigned num_surfaces = 1 + (params->src.addr.buffer != NULL);
970 blorp_alloc_binding_table(batch, num_surfaces, ss_size, ss_align,
971 &bind_offset, surface_offsets, surface_maps);
972
973 blorp_emit_surface_state(batch, &params->dst,
974 surface_maps[BLORP_RENDERBUFFER_BT_INDEX],
975 surface_offsets[BLORP_RENDERBUFFER_BT_INDEX], true);
976 if (params->src.addr.buffer) {
977 blorp_emit_surface_state(batch, &params->src,
978 surface_maps[BLORP_TEXTURE_BT_INDEX],
979 surface_offsets[BLORP_TEXTURE_BT_INDEX], false);
980 }
981
982 #if GEN_GEN >= 7
983 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_PS), bt) {
984 bt.PointertoPSBindingTable = bind_offset;
985 }
986 #else
987 blorp_emit(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS), bt) {
988 bt.PSBindingTableChange = true;
989 bt.PointertoPSBindingTable = bind_offset;
990 }
991 #endif
992 }
993
994 static void
995 blorp_emit_sampler_state(struct blorp_batch *batch,
996 const struct blorp_params *params)
997 {
998 struct GENX(SAMPLER_STATE) sampler = {
999 .MipModeFilter = MIPFILTER_NONE,
1000 .MagModeFilter = MAPFILTER_LINEAR,
1001 .MinModeFilter = MAPFILTER_LINEAR,
1002 .MinLOD = 0,
1003 .MaxLOD = 0,
1004 .TCXAddressControlMode = TCM_CLAMP,
1005 .TCYAddressControlMode = TCM_CLAMP,
1006 .TCZAddressControlMode = TCM_CLAMP,
1007 .MaximumAnisotropy = RATIO21,
1008 .RAddressMinFilterRoundingEnable = true,
1009 .RAddressMagFilterRoundingEnable = true,
1010 .VAddressMinFilterRoundingEnable = true,
1011 .VAddressMagFilterRoundingEnable = true,
1012 .UAddressMinFilterRoundingEnable = true,
1013 .UAddressMagFilterRoundingEnable = true,
1014 .NonnormalizedCoordinateEnable = true,
1015 };
1016
1017 uint32_t offset;
1018 void *state = blorp_alloc_dynamic_state(batch, AUB_TRACE_SAMPLER_STATE,
1019 GENX(SAMPLER_STATE_length) * 4,
1020 32, &offset);
1021 GENX(SAMPLER_STATE_pack)(NULL, state, &sampler);
1022
1023 #if GEN_GEN >= 7
1024 blorp_emit(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS_PS), ssp) {
1025 ssp.PointertoPSSamplerState = offset;
1026 }
1027 #else
1028 blorp_emit(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS), ssp) {
1029 ssp.VSSamplerStateChange = true;
1030 ssp.GSSamplerStateChange = true;
1031 ssp.PSSamplerStateChange = true;
1032 ssp.PointertoPSSamplerState = offset;
1033 }
1034 #endif
1035 }
1036
1037 static void
1038 blorp_emit_3dstate_multisample(struct blorp_batch *batch,
1039 const struct blorp_params *params)
1040 {
1041 const unsigned samples = params->dst.surf.samples;
1042
1043 blorp_emit(batch, GENX(3DSTATE_MULTISAMPLE), ms) {
1044 ms.NumberofMultisamples = __builtin_ffs(samples) - 1;
1045
1046 #if GEN_GEN >= 8
1047 /* The PRM says that this bit is valid only for DX9:
1048 *
1049 * SW can choose to set this bit only for DX9 API. DX10/OGL API's
1050 * should not have any effect by setting or not setting this bit.
1051 */
1052 ms.PixelPositionOffsetEnable = false;
1053 ms.PixelLocation = CENTER;
1054 #elif GEN_GEN >= 7
1055 ms.PixelLocation = PIXLOC_CENTER;
1056
1057 switch (samples) {
1058 case 1:
1059 GEN_SAMPLE_POS_1X(ms.Sample);
1060 break;
1061 case 2:
1062 GEN_SAMPLE_POS_2X(ms.Sample);
1063 break;
1064 case 4:
1065 GEN_SAMPLE_POS_4X(ms.Sample);
1066 break;
1067 case 8:
1068 GEN_SAMPLE_POS_8X(ms.Sample);
1069 break;
1070 default:
1071 break;
1072 }
1073 #else
1074 ms.PixelLocation = PIXLOC_CENTER;
1075 GEN_SAMPLE_POS_4X(ms.Sample);
1076 #endif
1077 }
1078 }
1079
1080 /* 3DSTATE_VIEWPORT_STATE_POINTERS */
1081 static void
1082 blorp_emit_viewport_state(struct blorp_batch *batch,
1083 const struct blorp_params *params)
1084 {
1085 uint32_t cc_vp_offset;
1086
1087 void *state = blorp_alloc_dynamic_state(batch, AUB_TRACE_CC_VP_STATE,
1088 GENX(CC_VIEWPORT_length) * 4, 32,
1089 &cc_vp_offset);
1090
1091 GENX(CC_VIEWPORT_pack)(batch, state,
1092 &(struct GENX(CC_VIEWPORT)) {
1093 .MinimumDepth = 0.0,
1094 .MaximumDepth = 1.0,
1095 });
1096
1097 #if GEN_GEN >= 7
1098 blorp_emit(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), vsp) {
1099 vsp.CCViewportPointer = cc_vp_offset;
1100 }
1101 #else
1102 blorp_emit(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS), vsp) {
1103 vsp.CCViewportStateChange = true;
1104 vsp.PointertoCC_VIEWPORT = cc_vp_offset;
1105 }
1106 #endif
1107 }
1108
1109
1110 /**
1111 * \brief Execute a blit or render pass operation.
1112 *
1113 * To execute the operation, this function manually constructs and emits a
1114 * batch to draw a rectangle primitive. The batchbuffer is flushed before
1115 * constructing and after emitting the batch.
1116 *
1117 * This function alters no GL state.
1118 */
1119 static void
1120 blorp_exec(struct blorp_batch *batch, const struct blorp_params *params)
1121 {
1122 uint32_t blend_state_offset = 0;
1123 uint32_t color_calc_state_offset = 0;
1124 uint32_t depth_stencil_state_offset;
1125
1126 blorp_emit_vertex_buffers(batch, params);
1127 blorp_emit_vertex_elements(batch, params);
1128
1129 emit_urb_config(batch, params);
1130
1131 if (params->wm_prog_data) {
1132 blend_state_offset = blorp_emit_blend_state(batch, params);
1133 color_calc_state_offset = blorp_emit_color_calc_state(batch, params);
1134 }
1135 depth_stencil_state_offset = blorp_emit_depth_stencil_state(batch, params);
1136
1137 #if GEN_GEN <= 6
1138 /* 3DSTATE_CC_STATE_POINTERS
1139 *
1140 * The pointer offsets are relative to
1141 * CMD_STATE_BASE_ADDRESS.DynamicStateBaseAddress.
1142 *
1143 * The HiZ op doesn't use BLEND_STATE or COLOR_CALC_STATE.
1144 *
1145 * The dynamic state emit helpers emit their own STATE_POINTERS packets on
1146 * gen7+. However, on gen6 and earlier, they're all lumpped together in
1147 * one CC_STATE_POINTERS packet so we have to emit that here.
1148 */
1149 blorp_emit(batch, GENX(3DSTATE_CC_STATE_POINTERS), cc) {
1150 cc.BLEND_STATEChange = true;
1151 cc.COLOR_CALC_STATEChange = true;
1152 cc.DEPTH_STENCIL_STATEChange = true;
1153 cc.PointertoBLEND_STATE = blend_state_offset;
1154 cc.PointertoCOLOR_CALC_STATE = color_calc_state_offset;
1155 cc.PointertoDEPTH_STENCIL_STATE = depth_stencil_state_offset;
1156 }
1157 #else
1158 (void)blend_state_offset;
1159 (void)color_calc_state_offset;
1160 (void)depth_stencil_state_offset;
1161 #endif
1162
1163 blorp_emit(batch, GENX(3DSTATE_CONSTANT_VS), vs);
1164 #if GEN_GEN >= 7
1165 blorp_emit(batch, GENX(3DSTATE_CONSTANT_HS), hs);
1166 blorp_emit(batch, GENX(3DSTATE_CONSTANT_DS), DS);
1167 #endif
1168 blorp_emit(batch, GENX(3DSTATE_CONSTANT_GS), gs);
1169 blorp_emit(batch, GENX(3DSTATE_CONSTANT_PS), ps);
1170
1171 if (params->wm_prog_data)
1172 blorp_emit_surface_states(batch, params);
1173
1174 if (params->src.addr.buffer)
1175 blorp_emit_sampler_state(batch, params);
1176
1177 blorp_emit_3dstate_multisample(batch, params);
1178
1179 blorp_emit(batch, GENX(3DSTATE_SAMPLE_MASK), mask) {
1180 mask.SampleMask = (1 << params->dst.surf.samples) - 1;
1181 }
1182
1183 /* From the BSpec, 3D Pipeline > Geometry > Vertex Shader > State,
1184 * 3DSTATE_VS, Dword 5.0 "VS Function Enable":
1185 *
1186 * [DevSNB] A pipeline flush must be programmed prior to a
1187 * 3DSTATE_VS command that causes the VS Function Enable to
1188 * toggle. Pipeline flush can be executed by sending a PIPE_CONTROL
1189 * command with CS stall bit set and a post sync operation.
1190 *
1191 * We've already done one at the start of the BLORP operation.
1192 */
1193 blorp_emit(batch, GENX(3DSTATE_VS), vs);
1194 #if GEN_GEN >= 7
1195 blorp_emit(batch, GENX(3DSTATE_HS), hs);
1196 blorp_emit(batch, GENX(3DSTATE_TE), te);
1197 blorp_emit(batch, GENX(3DSTATE_DS), DS);
1198 blorp_emit(batch, GENX(3DSTATE_STREAMOUT), so);
1199 #endif
1200 blorp_emit(batch, GENX(3DSTATE_GS), gs);
1201
1202 blorp_emit(batch, GENX(3DSTATE_CLIP), clip) {
1203 clip.PerspectiveDivideDisable = true;
1204 }
1205
1206 blorp_emit_sf_config(batch, params);
1207 blorp_emit_ps_config(batch, params);
1208
1209 blorp_emit_viewport_state(batch, params);
1210
1211 if (params->depth.addr.buffer) {
1212 blorp_emit_depth_stencil_config(batch, params);
1213 } else {
1214 blorp_emit(batch, GENX(3DSTATE_DEPTH_BUFFER), db) {
1215 db.SurfaceType = SURFTYPE_NULL;
1216 db.SurfaceFormat = D32_FLOAT;
1217 }
1218 blorp_emit(batch, GENX(3DSTATE_HIER_DEPTH_BUFFER), hiz);
1219 blorp_emit(batch, GENX(3DSTATE_STENCIL_BUFFER), sb);
1220 blorp_emit(batch, GENX(3DSTATE_CLEAR_PARAMS), clear);
1221 }
1222
1223 blorp_emit(batch, GENX(3DPRIMITIVE), prim) {
1224 prim.VertexAccessType = SEQUENTIAL;
1225 prim.PrimitiveTopologyType = _3DPRIM_RECTLIST;
1226 prim.VertexCountPerInstance = 3;
1227 prim.InstanceCount = params->num_layers;
1228 }
1229 }
1230
1231 #endif /* BLORP_GENX_EXEC_H */