i965: Delete vestiges of resource streamer code.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_misc_state.c
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keithw@vmware.com>
30 */
31
32
33
34 #include "intel_batchbuffer.h"
35 #include "intel_fbo.h"
36 #include "intel_mipmap_tree.h"
37
38 #include "brw_context.h"
39 #include "brw_state.h"
40 #include "brw_defines.h"
41
42 #include "main/framebuffer.h"
43 #include "main/fbobject.h"
44 #include "main/glformats.h"
45
46 /* Constant single cliprect for framebuffer object or DRI2 drawing */
47 static void
48 upload_drawing_rect(struct brw_context *brw)
49 {
50 struct gl_context *ctx = &brw->ctx;
51 const struct gl_framebuffer *fb = ctx->DrawBuffer;
52 const unsigned int fb_width = _mesa_geometric_width(fb);
53 const unsigned int fb_height = _mesa_geometric_height(fb);
54
55 BEGIN_BATCH(4);
56 OUT_BATCH(_3DSTATE_DRAWING_RECTANGLE << 16 | (4 - 2));
57 OUT_BATCH(0); /* xmin, ymin */
58 OUT_BATCH(((fb_width - 1) & 0xffff) | ((fb_height - 1) << 16));
59 OUT_BATCH(0);
60 ADVANCE_BATCH();
61 }
62
63 const struct brw_tracked_state brw_drawing_rect = {
64 .dirty = {
65 .mesa = _NEW_BUFFERS,
66 .brw = BRW_NEW_BLORP |
67 BRW_NEW_CONTEXT,
68 },
69 .emit = upload_drawing_rect
70 };
71
72 /**
73 * Upload pointers to the per-stage state.
74 *
75 * The state pointers in this packet are all relative to the general state
76 * base address set by CMD_STATE_BASE_ADDRESS, which is 0.
77 */
78 static void
79 upload_pipelined_state_pointers(struct brw_context *brw)
80 {
81 if (brw->gen == 5) {
82 /* Need to flush before changing clip max threads for errata. */
83 BEGIN_BATCH(1);
84 OUT_BATCH(MI_FLUSH);
85 ADVANCE_BATCH();
86 }
87
88 BEGIN_BATCH(7);
89 OUT_BATCH(_3DSTATE_PIPELINED_POINTERS << 16 | (7 - 2));
90 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
91 brw->vs.base.state_offset);
92 if (brw->ff_gs.prog_active)
93 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
94 brw->ff_gs.state_offset | 1);
95 else
96 OUT_BATCH(0);
97 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
98 brw->clip.state_offset | 1);
99 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
100 brw->sf.state_offset);
101 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
102 brw->wm.base.state_offset);
103 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
104 brw->cc.state_offset);
105 ADVANCE_BATCH();
106
107 brw->ctx.NewDriverState |= BRW_NEW_PSP;
108 }
109
110 static void
111 upload_psp_urb_cbs(struct brw_context *brw)
112 {
113 upload_pipelined_state_pointers(brw);
114 brw_upload_urb_fence(brw);
115 brw_upload_cs_urb_state(brw);
116 }
117
118 const struct brw_tracked_state brw_psp_urb_cbs = {
119 .dirty = {
120 .mesa = 0,
121 .brw = BRW_NEW_BATCH |
122 BRW_NEW_BLORP |
123 BRW_NEW_FF_GS_PROG_DATA |
124 BRW_NEW_GEN4_UNIT_STATE |
125 BRW_NEW_STATE_BASE_ADDRESS |
126 BRW_NEW_URB_FENCE,
127 },
128 .emit = upload_psp_urb_cbs,
129 };
130
131 uint32_t
132 brw_depthbuffer_format(struct brw_context *brw)
133 {
134 struct gl_context *ctx = &brw->ctx;
135 struct gl_framebuffer *fb = ctx->DrawBuffer;
136 struct intel_renderbuffer *drb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
137 struct intel_renderbuffer *srb;
138
139 if (!drb &&
140 (srb = intel_get_renderbuffer(fb, BUFFER_STENCIL)) &&
141 !srb->mt->stencil_mt &&
142 (intel_rb_format(srb) == MESA_FORMAT_Z24_UNORM_S8_UINT ||
143 intel_rb_format(srb) == MESA_FORMAT_Z32_FLOAT_S8X24_UINT)) {
144 drb = srb;
145 }
146
147 if (!drb)
148 return BRW_DEPTHFORMAT_D32_FLOAT;
149
150 return brw_depth_format(brw, drb->mt->format);
151 }
152
153 /**
154 * Returns the mask of how many bits of x and y must be handled through the
155 * depthbuffer's draw offset x and y fields.
156 *
157 * The draw offset x/y field of the depthbuffer packet is unfortunately shared
158 * between the depth, hiz, and stencil buffers. Because it can be hard to get
159 * all 3 to agree on this value, we want to do as much drawing offset
160 * adjustment as possible by moving the base offset of the 3 buffers, which is
161 * restricted to tile boundaries.
162 *
163 * For each buffer, the remainder must be applied through the x/y draw offset.
164 * This returns the worst-case mask of the low bits that have to go into the
165 * packet. If the 3 buffers don't agree on the drawing offset ANDed with this
166 * mask, then we're in trouble.
167 */
168 static void
169 brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
170 uint32_t depth_level,
171 uint32_t depth_layer,
172 struct intel_mipmap_tree *stencil_mt,
173 uint32_t *out_tile_mask_x,
174 uint32_t *out_tile_mask_y)
175 {
176 uint32_t tile_mask_x = 0, tile_mask_y = 0;
177
178 if (depth_mt) {
179 intel_get_tile_masks(depth_mt->tiling, depth_mt->tr_mode,
180 depth_mt->cpp,
181 &tile_mask_x, &tile_mask_y);
182 assert(!intel_miptree_level_has_hiz(depth_mt, depth_level));
183 }
184
185 if (stencil_mt) {
186 if (stencil_mt->stencil_mt)
187 stencil_mt = stencil_mt->stencil_mt;
188
189 if (stencil_mt->format == MESA_FORMAT_S_UINT8) {
190 /* Separate stencil buffer uses 64x64 tiles. */
191 tile_mask_x |= 63;
192 tile_mask_y |= 63;
193 } else {
194 uint32_t stencil_tile_mask_x, stencil_tile_mask_y;
195 intel_get_tile_masks(stencil_mt->tiling,
196 stencil_mt->tr_mode,
197 stencil_mt->cpp,
198 &stencil_tile_mask_x,
199 &stencil_tile_mask_y);
200
201 tile_mask_x |= stencil_tile_mask_x;
202 tile_mask_y |= stencil_tile_mask_y;
203 }
204 }
205
206 *out_tile_mask_x = tile_mask_x;
207 *out_tile_mask_y = tile_mask_y;
208 }
209
210 static struct intel_mipmap_tree *
211 get_stencil_miptree(struct intel_renderbuffer *irb)
212 {
213 if (!irb)
214 return NULL;
215 if (irb->mt->stencil_mt)
216 return irb->mt->stencil_mt;
217 return irb->mt;
218 }
219
220 void
221 brw_workaround_depthstencil_alignment(struct brw_context *brw,
222 GLbitfield clear_mask)
223 {
224 struct gl_context *ctx = &brw->ctx;
225 struct gl_framebuffer *fb = ctx->DrawBuffer;
226 bool rebase_depth = false;
227 bool rebase_stencil = false;
228 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
229 struct intel_renderbuffer *stencil_irb = intel_get_renderbuffer(fb, BUFFER_STENCIL);
230 struct intel_mipmap_tree *depth_mt = NULL;
231 struct intel_mipmap_tree *stencil_mt = get_stencil_miptree(stencil_irb);
232 uint32_t tile_x = 0, tile_y = 0, stencil_tile_x = 0, stencil_tile_y = 0;
233 uint32_t stencil_draw_x = 0, stencil_draw_y = 0;
234 bool invalidate_depth = clear_mask & BUFFER_BIT_DEPTH;
235 bool invalidate_stencil = clear_mask & BUFFER_BIT_STENCIL;
236
237 if (depth_irb)
238 depth_mt = depth_irb->mt;
239
240 /* Initialize brw->depthstencil to 'nop' workaround state.
241 */
242 brw->depthstencil.tile_x = 0;
243 brw->depthstencil.tile_y = 0;
244 brw->depthstencil.depth_offset = 0;
245 brw->depthstencil.stencil_offset = 0;
246 brw->depthstencil.hiz_offset = 0;
247 brw->depthstencil.depth_mt = NULL;
248 brw->depthstencil.stencil_mt = NULL;
249 if (depth_irb)
250 brw->depthstencil.depth_mt = depth_mt;
251 if (stencil_irb)
252 brw->depthstencil.stencil_mt = get_stencil_miptree(stencil_irb);
253
254 /* Gen6+ doesn't require the workarounds, since we always program the
255 * surface state at the start of the whole surface.
256 */
257 if (brw->gen >= 6)
258 return;
259
260 /* Check if depth buffer is in depth/stencil format. If so, then it's only
261 * safe to invalidate it if we're also clearing stencil, and both depth_irb
262 * and stencil_irb point to the same miptree.
263 *
264 * Note: it's not sufficient to check for the case where
265 * _mesa_get_format_base_format(depth_mt->format) == GL_DEPTH_STENCIL,
266 * because this fails to catch depth/stencil buffers on hardware that uses
267 * separate stencil. To catch that case, we check whether
268 * depth_mt->stencil_mt is non-NULL.
269 */
270 if (depth_irb && invalidate_depth &&
271 (_mesa_get_format_base_format(depth_mt->format) == GL_DEPTH_STENCIL ||
272 depth_mt->stencil_mt)) {
273 invalidate_depth = invalidate_stencil && depth_irb && stencil_irb
274 && depth_irb->mt == stencil_irb->mt;
275 }
276
277 uint32_t tile_mask_x, tile_mask_y;
278 brw_get_depthstencil_tile_masks(depth_mt,
279 depth_mt ? depth_irb->mt_level : 0,
280 depth_mt ? depth_irb->mt_layer : 0,
281 stencil_mt,
282 &tile_mask_x, &tile_mask_y);
283
284 if (depth_irb) {
285 tile_x = depth_irb->draw_x & tile_mask_x;
286 tile_y = depth_irb->draw_y & tile_mask_y;
287
288 /* According to the Sandy Bridge PRM, volume 2 part 1, pp326-327
289 * (3DSTATE_DEPTH_BUFFER dw5), in the documentation for "Depth
290 * Coordinate Offset X/Y":
291 *
292 * "The 3 LSBs of both offsets must be zero to ensure correct
293 * alignment"
294 */
295 if (tile_x & 7 || tile_y & 7)
296 rebase_depth = true;
297
298 /* We didn't even have intra-tile offsets before g45. */
299 if (!brw->has_surface_tile_offset) {
300 if (tile_x || tile_y)
301 rebase_depth = true;
302 }
303
304 if (rebase_depth) {
305 perf_debug("HW workaround: blitting depth level %d to a temporary "
306 "to fix alignment (depth tile offset %d,%d)\n",
307 depth_irb->mt_level, tile_x, tile_y);
308 intel_renderbuffer_move_to_temp(brw, depth_irb, invalidate_depth);
309 /* In the case of stencil_irb being the same packed depth/stencil
310 * texture but not the same rb, make it point at our rebased mt, too.
311 */
312 if (stencil_irb &&
313 stencil_irb != depth_irb &&
314 stencil_irb->mt == depth_mt) {
315 intel_miptree_reference(&stencil_irb->mt, depth_irb->mt);
316 intel_renderbuffer_set_draw_offset(stencil_irb);
317 }
318
319 stencil_mt = get_stencil_miptree(stencil_irb);
320
321 tile_x = depth_irb->draw_x & tile_mask_x;
322 tile_y = depth_irb->draw_y & tile_mask_y;
323 }
324
325 if (stencil_irb) {
326 stencil_mt = get_stencil_miptree(stencil_irb);
327 intel_miptree_get_image_offset(stencil_mt,
328 stencil_irb->mt_level,
329 stencil_irb->mt_layer,
330 &stencil_draw_x, &stencil_draw_y);
331 int stencil_tile_x = stencil_draw_x & tile_mask_x;
332 int stencil_tile_y = stencil_draw_y & tile_mask_y;
333
334 /* If stencil doesn't match depth, then we'll need to rebase stencil
335 * as well. (if we hadn't decided to rebase stencil before, the
336 * post-stencil depth test will also rebase depth to try to match it
337 * up).
338 */
339 if (tile_x != stencil_tile_x ||
340 tile_y != stencil_tile_y) {
341 rebase_stencil = true;
342 }
343 }
344 }
345
346 /* If we have (just) stencil, check it for ignored low bits as well */
347 if (stencil_irb) {
348 intel_miptree_get_image_offset(stencil_mt,
349 stencil_irb->mt_level,
350 stencil_irb->mt_layer,
351 &stencil_draw_x, &stencil_draw_y);
352 stencil_tile_x = stencil_draw_x & tile_mask_x;
353 stencil_tile_y = stencil_draw_y & tile_mask_y;
354
355 if (stencil_tile_x & 7 || stencil_tile_y & 7)
356 rebase_stencil = true;
357
358 if (!brw->has_surface_tile_offset) {
359 if (stencil_tile_x || stencil_tile_y)
360 rebase_stencil = true;
361 }
362 }
363
364 if (rebase_stencil) {
365 perf_debug("HW workaround: blitting stencil level %d to a temporary "
366 "to fix alignment (stencil tile offset %d,%d)\n",
367 stencil_irb->mt_level, stencil_tile_x, stencil_tile_y);
368
369 intel_renderbuffer_move_to_temp(brw, stencil_irb, invalidate_stencil);
370 stencil_mt = get_stencil_miptree(stencil_irb);
371
372 intel_miptree_get_image_offset(stencil_mt,
373 stencil_irb->mt_level,
374 stencil_irb->mt_layer,
375 &stencil_draw_x, &stencil_draw_y);
376 stencil_tile_x = stencil_draw_x & tile_mask_x;
377 stencil_tile_y = stencil_draw_y & tile_mask_y;
378
379 if (depth_irb && depth_irb->mt == stencil_irb->mt) {
380 intel_miptree_reference(&depth_irb->mt, stencil_irb->mt);
381 intel_renderbuffer_set_draw_offset(depth_irb);
382 } else if (depth_irb && !rebase_depth) {
383 if (tile_x != stencil_tile_x ||
384 tile_y != stencil_tile_y) {
385 perf_debug("HW workaround: blitting depth level %d to a temporary "
386 "to match stencil level %d alignment (depth tile offset "
387 "%d,%d, stencil offset %d,%d)\n",
388 depth_irb->mt_level,
389 stencil_irb->mt_level,
390 tile_x, tile_y,
391 stencil_tile_x, stencil_tile_y);
392
393 intel_renderbuffer_move_to_temp(brw, depth_irb, invalidate_depth);
394
395 tile_x = depth_irb->draw_x & tile_mask_x;
396 tile_y = depth_irb->draw_y & tile_mask_y;
397
398 if (stencil_irb && stencil_irb->mt == depth_mt) {
399 intel_miptree_reference(&stencil_irb->mt, depth_irb->mt);
400 intel_renderbuffer_set_draw_offset(stencil_irb);
401 }
402
403 WARN_ONCE(stencil_tile_x != tile_x ||
404 stencil_tile_y != tile_y,
405 "Rebased stencil tile offset (%d,%d) doesn't match depth "
406 "tile offset (%d,%d).\n",
407 stencil_tile_x, stencil_tile_y,
408 tile_x, tile_y);
409 }
410 }
411 }
412
413 if (!depth_irb) {
414 tile_x = stencil_tile_x;
415 tile_y = stencil_tile_y;
416 }
417
418 /* While we just tried to get everything aligned, we may have failed to do
419 * so in the case of rendering to array or 3D textures, where nonzero faces
420 * will still have an offset post-rebase. At least give an informative
421 * warning.
422 */
423 WARN_ONCE((tile_x & 7) || (tile_y & 7),
424 "Depth/stencil buffer needs alignment to 8-pixel boundaries.\n"
425 "Truncating offset, bad rendering may occur.\n");
426 tile_x &= ~7;
427 tile_y &= ~7;
428
429 /* Now, after rebasing, save off the new dephtstencil state so the hardware
430 * packets can just dereference that without re-calculating tile offsets.
431 */
432 brw->depthstencil.tile_x = tile_x;
433 brw->depthstencil.tile_y = tile_y;
434 if (depth_irb) {
435 depth_mt = depth_irb->mt;
436 brw->depthstencil.depth_mt = depth_mt;
437 brw->depthstencil.depth_offset =
438 intel_miptree_get_aligned_offset(depth_mt,
439 depth_irb->draw_x & ~tile_mask_x,
440 depth_irb->draw_y & ~tile_mask_y);
441 if (intel_renderbuffer_has_hiz(depth_irb)) {
442 brw->depthstencil.hiz_offset =
443 intel_miptree_get_aligned_offset(depth_mt,
444 depth_irb->draw_x & ~tile_mask_x,
445 (depth_irb->draw_y & ~tile_mask_y) / 2);
446 }
447 }
448 if (stencil_irb) {
449 stencil_mt = get_stencil_miptree(stencil_irb);
450
451 brw->depthstencil.stencil_mt = stencil_mt;
452 if (stencil_mt->format == MESA_FORMAT_S_UINT8) {
453 /* Note: we can't compute the stencil offset using
454 * intel_region_get_aligned_offset(), because stencil_region claims
455 * that the region is untiled even though it's W tiled.
456 */
457 brw->depthstencil.stencil_offset =
458 (stencil_draw_y & ~tile_mask_y) * stencil_mt->pitch +
459 (stencil_draw_x & ~tile_mask_x) * 64;
460 }
461 }
462 }
463
464 void
465 brw_emit_depthbuffer(struct brw_context *brw)
466 {
467 struct gl_context *ctx = &brw->ctx;
468 struct gl_framebuffer *fb = ctx->DrawBuffer;
469 /* _NEW_BUFFERS */
470 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
471 struct intel_renderbuffer *stencil_irb = intel_get_renderbuffer(fb, BUFFER_STENCIL);
472 struct intel_mipmap_tree *depth_mt = brw->depthstencil.depth_mt;
473 struct intel_mipmap_tree *stencil_mt = brw->depthstencil.stencil_mt;
474 uint32_t tile_x = brw->depthstencil.tile_x;
475 uint32_t tile_y = brw->depthstencil.tile_y;
476 bool hiz = depth_irb && intel_renderbuffer_has_hiz(depth_irb);
477 bool separate_stencil = false;
478 uint32_t depth_surface_type = BRW_SURFACE_NULL;
479 uint32_t depthbuffer_format = BRW_DEPTHFORMAT_D32_FLOAT;
480 uint32_t depth_offset = 0;
481 uint32_t width = 1, height = 1;
482
483 if (stencil_mt) {
484 separate_stencil = stencil_mt->format == MESA_FORMAT_S_UINT8;
485
486 /* Gen7 supports only separate stencil */
487 assert(separate_stencil || brw->gen < 7);
488 }
489
490 /* If there's a packed depth/stencil bound to stencil only, we need to
491 * emit the packed depth/stencil buffer packet.
492 */
493 if (!depth_irb && stencil_irb && !separate_stencil) {
494 depth_irb = stencil_irb;
495 depth_mt = stencil_mt;
496 }
497
498 if (depth_irb && depth_mt) {
499 /* When 3DSTATE_DEPTH_BUFFER.Separate_Stencil_Enable is set, then
500 * 3DSTATE_DEPTH_BUFFER.Surface_Format is not permitted to be a packed
501 * depthstencil format.
502 *
503 * Gens prior to 7 require that HiZ_Enable and Separate_Stencil_Enable be
504 * set to the same value. Gens after 7 implicitly always set
505 * Separate_Stencil_Enable; software cannot disable it.
506 */
507 if ((brw->gen < 7 && hiz) || brw->gen >= 7) {
508 assert(!_mesa_is_format_packed_depth_stencil(depth_mt->format));
509 }
510
511 /* Prior to Gen7, if using separate stencil, hiz must be enabled. */
512 assert(brw->gen >= 7 || !separate_stencil || hiz);
513
514 assert(brw->gen < 6 || depth_mt->tiling == I915_TILING_Y);
515 assert(!hiz || depth_mt->tiling == I915_TILING_Y);
516
517 depthbuffer_format = brw_depthbuffer_format(brw);
518 depth_surface_type = BRW_SURFACE_2D;
519 depth_offset = brw->depthstencil.depth_offset;
520 width = depth_irb->Base.Base.Width;
521 height = depth_irb->Base.Base.Height;
522 } else if (separate_stencil) {
523 /*
524 * There exists a separate stencil buffer but no depth buffer.
525 *
526 * The stencil buffer inherits most of its fields from
527 * 3DSTATE_DEPTH_BUFFER: namely the tile walk, surface type, width, and
528 * height.
529 *
530 * The tiled bit must be set. From the Sandybridge PRM, Volume 2, Part 1,
531 * Section 7.5.5.1.1 3DSTATE_DEPTH_BUFFER, Bit 1.27 Tiled Surface:
532 * [DevGT+]: This field must be set to TRUE.
533 */
534 assert(brw->has_separate_stencil);
535
536 depth_surface_type = BRW_SURFACE_2D;
537 width = stencil_irb->Base.Base.Width;
538 height = stencil_irb->Base.Base.Height;
539 }
540
541 if (depth_mt)
542 brw_render_cache_set_check_flush(brw, depth_mt->bo);
543 if (stencil_mt)
544 brw_render_cache_set_check_flush(brw, stencil_mt->bo);
545
546 brw->vtbl.emit_depth_stencil_hiz(brw, depth_mt, depth_offset,
547 depthbuffer_format, depth_surface_type,
548 stencil_mt, hiz, separate_stencil,
549 width, height, tile_x, tile_y);
550 }
551
552 void
553 brw_emit_depth_stencil_hiz(struct brw_context *brw,
554 struct intel_mipmap_tree *depth_mt,
555 uint32_t depth_offset, uint32_t depthbuffer_format,
556 uint32_t depth_surface_type,
557 struct intel_mipmap_tree *stencil_mt,
558 bool hiz, bool separate_stencil,
559 uint32_t width, uint32_t height,
560 uint32_t tile_x, uint32_t tile_y)
561 {
562 /* Enable the hiz bit if we're doing separate stencil, because it and the
563 * separate stencil bit must have the same value. From Section 2.11.5.6.1.1
564 * 3DSTATE_DEPTH_BUFFER, Bit 1.21 "Separate Stencil Enable":
565 * [DevIL]: If this field is enabled, Hierarchical Depth Buffer
566 * Enable must also be enabled.
567 *
568 * [DevGT]: This field must be set to the same value (enabled or
569 * disabled) as Hierarchical Depth Buffer Enable
570 */
571 bool enable_hiz_ss = hiz || separate_stencil;
572
573
574 /* 3DSTATE_DEPTH_BUFFER, 3DSTATE_STENCIL_BUFFER are both
575 * non-pipelined state that will need the PIPE_CONTROL workaround.
576 */
577 if (brw->gen == 6) {
578 brw_emit_depth_stall_flushes(brw);
579 }
580
581 unsigned int len;
582 if (brw->gen >= 6)
583 len = 7;
584 else if (brw->is_g4x || brw->gen == 5)
585 len = 6;
586 else
587 len = 5;
588
589 BEGIN_BATCH(len);
590 OUT_BATCH(_3DSTATE_DEPTH_BUFFER << 16 | (len - 2));
591 OUT_BATCH((depth_mt ? depth_mt->pitch - 1 : 0) |
592 (depthbuffer_format << 18) |
593 ((enable_hiz_ss ? 1 : 0) << 21) | /* separate stencil enable */
594 ((enable_hiz_ss ? 1 : 0) << 22) | /* hiz enable */
595 (BRW_TILEWALK_YMAJOR << 26) |
596 ((depth_mt ? depth_mt->tiling != I915_TILING_NONE : 1)
597 << 27) |
598 (depth_surface_type << 29));
599
600 if (depth_mt) {
601 OUT_RELOC(depth_mt->bo,
602 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
603 depth_offset);
604 } else {
605 OUT_BATCH(0);
606 }
607
608 OUT_BATCH(((width + tile_x - 1) << 6) |
609 ((height + tile_y - 1) << 19));
610 OUT_BATCH(0);
611
612 if (brw->is_g4x || brw->gen >= 5)
613 OUT_BATCH(tile_x | (tile_y << 16));
614 else
615 assert(tile_x == 0 && tile_y == 0);
616
617 if (brw->gen >= 6)
618 OUT_BATCH(0);
619
620 ADVANCE_BATCH();
621
622 if (hiz || separate_stencil) {
623 /*
624 * In the 3DSTATE_DEPTH_BUFFER batch emitted above, the 'separate
625 * stencil enable' and 'hiz enable' bits were set. Therefore we must
626 * emit 3DSTATE_HIER_DEPTH_BUFFER and 3DSTATE_STENCIL_BUFFER. Even if
627 * there is no stencil buffer, 3DSTATE_STENCIL_BUFFER must be emitted;
628 * failure to do so causes hangs on gen5 and a stall on gen6.
629 */
630
631 /* Emit hiz buffer. */
632 if (hiz) {
633 assert(depth_mt);
634 BEGIN_BATCH(3);
635 OUT_BATCH((_3DSTATE_HIER_DEPTH_BUFFER << 16) | (3 - 2));
636 OUT_BATCH(depth_mt->hiz_buf->aux_base.pitch - 1);
637 OUT_RELOC(depth_mt->hiz_buf->aux_base.bo,
638 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
639 brw->depthstencil.hiz_offset);
640 ADVANCE_BATCH();
641 } else {
642 BEGIN_BATCH(3);
643 OUT_BATCH((_3DSTATE_HIER_DEPTH_BUFFER << 16) | (3 - 2));
644 OUT_BATCH(0);
645 OUT_BATCH(0);
646 ADVANCE_BATCH();
647 }
648
649 /* Emit stencil buffer. */
650 if (separate_stencil) {
651 BEGIN_BATCH(3);
652 OUT_BATCH((_3DSTATE_STENCIL_BUFFER << 16) | (3 - 2));
653 /* The stencil buffer has quirky pitch requirements. From Vol 2a,
654 * 11.5.6.2.1 3DSTATE_STENCIL_BUFFER, field "Surface Pitch":
655 * The pitch must be set to 2x the value computed based on width, as
656 * the stencil buffer is stored with two rows interleaved.
657 */
658 OUT_BATCH(2 * stencil_mt->pitch - 1);
659 OUT_RELOC(stencil_mt->bo,
660 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
661 brw->depthstencil.stencil_offset);
662 ADVANCE_BATCH();
663 } else {
664 BEGIN_BATCH(3);
665 OUT_BATCH((_3DSTATE_STENCIL_BUFFER << 16) | (3 - 2));
666 OUT_BATCH(0);
667 OUT_BATCH(0);
668 ADVANCE_BATCH();
669 }
670 }
671
672 /*
673 * On Gen >= 6, emit clear params for safety. If using hiz, then clear
674 * params must be emitted.
675 *
676 * From Section 2.11.5.6.4.1 3DSTATE_CLEAR_PARAMS:
677 * 3DSTATE_CLEAR_PARAMS packet must follow the DEPTH_BUFFER_STATE packet
678 * when HiZ is enabled and the DEPTH_BUFFER_STATE changes.
679 */
680 if (brw->gen >= 6 || hiz) {
681 BEGIN_BATCH(2);
682 OUT_BATCH(_3DSTATE_CLEAR_PARAMS << 16 |
683 GEN5_DEPTH_CLEAR_VALID |
684 (2 - 2));
685 OUT_BATCH(depth_mt ? depth_mt->depth_clear_value : 0);
686 ADVANCE_BATCH();
687 }
688 }
689
690 const struct brw_tracked_state brw_depthbuffer = {
691 .dirty = {
692 .mesa = _NEW_BUFFERS,
693 .brw = BRW_NEW_BATCH |
694 BRW_NEW_BLORP,
695 },
696 .emit = brw_emit_depthbuffer,
697 };
698
699 /**
700 * Polygon stipple packet
701 */
702 static void
703 upload_polygon_stipple(struct brw_context *brw)
704 {
705 struct gl_context *ctx = &brw->ctx;
706 GLuint i;
707
708 /* _NEW_POLYGON */
709 if (!ctx->Polygon.StippleFlag)
710 return;
711
712 BEGIN_BATCH(33);
713 OUT_BATCH(_3DSTATE_POLY_STIPPLE_PATTERN << 16 | (33 - 2));
714
715 /* Polygon stipple is provided in OpenGL order, i.e. bottom
716 * row first. If we're rendering to a window (i.e. the
717 * default frame buffer object, 0), then we need to invert
718 * it to match our pixel layout. But if we're rendering
719 * to a FBO (i.e. any named frame buffer object), we *don't*
720 * need to invert - we already match the layout.
721 */
722 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
723 for (i = 0; i < 32; i++)
724 OUT_BATCH(ctx->PolygonStipple[31 - i]); /* invert */
725 } else {
726 for (i = 0; i < 32; i++)
727 OUT_BATCH(ctx->PolygonStipple[i]);
728 }
729 ADVANCE_BATCH();
730 }
731
732 const struct brw_tracked_state brw_polygon_stipple = {
733 .dirty = {
734 .mesa = _NEW_POLYGON |
735 _NEW_POLYGONSTIPPLE,
736 .brw = BRW_NEW_CONTEXT,
737 },
738 .emit = upload_polygon_stipple
739 };
740
741 /**
742 * Polygon stipple offset packet
743 */
744 static void
745 upload_polygon_stipple_offset(struct brw_context *brw)
746 {
747 struct gl_context *ctx = &brw->ctx;
748
749 /* _NEW_POLYGON */
750 if (!ctx->Polygon.StippleFlag)
751 return;
752
753 BEGIN_BATCH(2);
754 OUT_BATCH(_3DSTATE_POLY_STIPPLE_OFFSET << 16 | (2-2));
755
756 /* _NEW_BUFFERS
757 *
758 * If we're drawing to a system window we have to invert the Y axis
759 * in order to match the OpenGL pixel coordinate system, and our
760 * offset must be matched to the window position. If we're drawing
761 * to a user-created FBO then our native pixel coordinate system
762 * works just fine, and there's no window system to worry about.
763 */
764 if (_mesa_is_winsys_fbo(ctx->DrawBuffer))
765 OUT_BATCH((32 - (_mesa_geometric_height(ctx->DrawBuffer) & 31)) & 31);
766 else
767 OUT_BATCH(0);
768 ADVANCE_BATCH();
769 }
770
771 const struct brw_tracked_state brw_polygon_stipple_offset = {
772 .dirty = {
773 .mesa = _NEW_BUFFERS |
774 _NEW_POLYGON,
775 .brw = BRW_NEW_CONTEXT,
776 },
777 .emit = upload_polygon_stipple_offset
778 };
779
780 /**
781 * Line stipple packet
782 */
783 static void
784 upload_line_stipple(struct brw_context *brw)
785 {
786 struct gl_context *ctx = &brw->ctx;
787 GLfloat tmp;
788 GLint tmpi;
789
790 if (!ctx->Line.StippleFlag)
791 return;
792
793 BEGIN_BATCH(3);
794 OUT_BATCH(_3DSTATE_LINE_STIPPLE_PATTERN << 16 | (3 - 2));
795 OUT_BATCH(ctx->Line.StipplePattern);
796
797 if (brw->gen >= 7) {
798 /* in U1.16 */
799 tmp = 1.0f / ctx->Line.StippleFactor;
800 tmpi = tmp * (1<<16);
801 OUT_BATCH(tmpi << 15 | ctx->Line.StippleFactor);
802 } else {
803 /* in U1.13 */
804 tmp = 1.0f / ctx->Line.StippleFactor;
805 tmpi = tmp * (1<<13);
806 OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor);
807 }
808
809 ADVANCE_BATCH();
810 }
811
812 const struct brw_tracked_state brw_line_stipple = {
813 .dirty = {
814 .mesa = _NEW_LINE,
815 .brw = BRW_NEW_CONTEXT,
816 },
817 .emit = upload_line_stipple
818 };
819
820 void
821 brw_emit_select_pipeline(struct brw_context *brw, enum brw_pipeline pipeline)
822 {
823 const bool is_965 = brw->gen == 4 && !brw->is_g4x;
824 const uint32_t _3DSTATE_PIPELINE_SELECT =
825 is_965 ? CMD_PIPELINE_SELECT_965 : CMD_PIPELINE_SELECT_GM45;
826
827 if (brw->gen >= 8 && brw->gen < 10) {
828 /* From the Broadwell PRM, Volume 2a: Instructions, PIPELINE_SELECT:
829 *
830 * Software must clear the COLOR_CALC_STATE Valid field in
831 * 3DSTATE_CC_STATE_POINTERS command prior to send a PIPELINE_SELECT
832 * with Pipeline Select set to GPGPU.
833 *
834 * The internal hardware docs recommend the same workaround for Gen9
835 * hardware too.
836 */
837 if (pipeline == BRW_COMPUTE_PIPELINE) {
838 BEGIN_BATCH(2);
839 OUT_BATCH(_3DSTATE_CC_STATE_POINTERS << 16 | (2 - 2));
840 OUT_BATCH(0);
841 ADVANCE_BATCH();
842
843 brw->ctx.NewDriverState |= BRW_NEW_CC_STATE;
844 }
845
846 } else if (brw->gen >= 6) {
847 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
848 * PIPELINE_SELECT [DevBWR+]":
849 *
850 * Project: DEVSNB+
851 *
852 * Software must ensure all the write caches are flushed through a
853 * stalling PIPE_CONTROL command followed by another PIPE_CONTROL
854 * command to invalidate read only caches prior to programming
855 * MI_PIPELINE_SELECT command to change the Pipeline Select Mode.
856 */
857 const unsigned dc_flush =
858 brw->gen >= 7 ? PIPE_CONTROL_DATA_CACHE_FLUSH : 0;
859
860 brw_emit_pipe_control_flush(brw,
861 PIPE_CONTROL_RENDER_TARGET_FLUSH |
862 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
863 dc_flush |
864 PIPE_CONTROL_NO_WRITE |
865 PIPE_CONTROL_CS_STALL);
866
867 brw_emit_pipe_control_flush(brw,
868 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
869 PIPE_CONTROL_CONST_CACHE_INVALIDATE |
870 PIPE_CONTROL_STATE_CACHE_INVALIDATE |
871 PIPE_CONTROL_INSTRUCTION_INVALIDATE |
872 PIPE_CONTROL_NO_WRITE);
873
874 } else {
875 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
876 * PIPELINE_SELECT [DevBWR+]":
877 *
878 * Project: PRE-DEVSNB
879 *
880 * Software must ensure the current pipeline is flushed via an
881 * MI_FLUSH or PIPE_CONTROL prior to the execution of PIPELINE_SELECT.
882 */
883 BEGIN_BATCH(1);
884 OUT_BATCH(MI_FLUSH);
885 ADVANCE_BATCH();
886 }
887
888 /* Select the pipeline */
889 BEGIN_BATCH(1);
890 OUT_BATCH(_3DSTATE_PIPELINE_SELECT << 16 |
891 (brw->gen >= 9 ? (3 << 8) : 0) |
892 (pipeline == BRW_COMPUTE_PIPELINE ? 2 : 0));
893 ADVANCE_BATCH();
894
895 if (brw->gen == 7 && !brw->is_haswell &&
896 pipeline == BRW_RENDER_PIPELINE) {
897 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
898 * PIPELINE_SELECT [DevBWR+]":
899 *
900 * Project: DEVIVB, DEVHSW:GT3:A0
901 *
902 * Software must send a pipe_control with a CS stall and a post sync
903 * operation and then a dummy DRAW after every MI_SET_CONTEXT and
904 * after any PIPELINE_SELECT that is enabling 3D mode.
905 */
906 gen7_emit_cs_stall_flush(brw);
907
908 BEGIN_BATCH(7);
909 OUT_BATCH(CMD_3D_PRIM << 16 | (7 - 2));
910 OUT_BATCH(_3DPRIM_POINTLIST);
911 OUT_BATCH(0);
912 OUT_BATCH(0);
913 OUT_BATCH(0);
914 OUT_BATCH(0);
915 OUT_BATCH(0);
916 ADVANCE_BATCH();
917 }
918 }
919
920 /**
921 * Misc invariant state packets
922 */
923 void
924 brw_upload_invariant_state(struct brw_context *brw)
925 {
926 const bool is_965 = brw->gen == 4 && !brw->is_g4x;
927
928 brw_emit_select_pipeline(brw, BRW_RENDER_PIPELINE);
929 brw->last_pipeline = BRW_RENDER_PIPELINE;
930
931 if (brw->gen >= 8) {
932 BEGIN_BATCH(3);
933 OUT_BATCH(CMD_STATE_SIP << 16 | (3 - 2));
934 OUT_BATCH(0);
935 OUT_BATCH(0);
936 ADVANCE_BATCH();
937 } else {
938 BEGIN_BATCH(2);
939 OUT_BATCH(CMD_STATE_SIP << 16 | (2 - 2));
940 OUT_BATCH(0);
941 ADVANCE_BATCH();
942 }
943
944 /* Original Gen4 doesn't have 3DSTATE_AA_LINE_PARAMETERS. */
945 if (!is_965) {
946 BEGIN_BATCH(3);
947 OUT_BATCH(_3DSTATE_AA_LINE_PARAMETERS << 16 | (3 - 2));
948 /* use legacy aa line coverage computation */
949 OUT_BATCH(0);
950 OUT_BATCH(0);
951 ADVANCE_BATCH();
952 }
953
954 const uint32_t _3DSTATE_VF_STATISTICS =
955 is_965 ? GEN4_3DSTATE_VF_STATISTICS : GM45_3DSTATE_VF_STATISTICS;
956 BEGIN_BATCH(1);
957 OUT_BATCH(_3DSTATE_VF_STATISTICS << 16 | 1);
958 ADVANCE_BATCH();
959 }
960
961 const struct brw_tracked_state brw_invariant_state = {
962 .dirty = {
963 .mesa = 0,
964 .brw = BRW_NEW_BLORP |
965 BRW_NEW_CONTEXT,
966 },
967 .emit = brw_upload_invariant_state
968 };
969
970 /**
971 * Define the base addresses which some state is referenced from.
972 *
973 * This allows us to avoid having to emit relocations for the objects,
974 * and is actually required for binding table pointers on gen6.
975 *
976 * Surface state base address covers binding table pointers and
977 * surface state objects, but not the surfaces that the surface state
978 * objects point to.
979 */
980 void
981 brw_upload_state_base_address(struct brw_context *brw)
982 {
983 if (brw->batch.state_base_address_emitted)
984 return;
985
986 /* FINISHME: According to section 3.6.1 "STATE_BASE_ADDRESS" of
987 * vol1a of the G45 PRM, MI_FLUSH with the ISC invalidate should be
988 * programmed prior to STATE_BASE_ADDRESS.
989 *
990 * However, given that the instruction SBA (general state base
991 * address) on this chipset is always set to 0 across X and GL,
992 * maybe this isn't required for us in particular.
993 */
994
995 if (brw->gen >= 8) {
996 uint32_t mocs_wb = brw->gen >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
997 int pkt_len = brw->gen >= 9 ? 19 : 16;
998
999 BEGIN_BATCH(pkt_len);
1000 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (pkt_len - 2));
1001 /* General state base address: stateless DP read/write requests */
1002 OUT_BATCH(mocs_wb << 4 | 1);
1003 OUT_BATCH(0);
1004 OUT_BATCH(mocs_wb << 16);
1005 /* Surface state base address: */
1006 OUT_RELOC64(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
1007 mocs_wb << 4 | 1);
1008 /* Dynamic state base address: */
1009 OUT_RELOC64(brw->batch.bo,
1010 I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION, 0,
1011 mocs_wb << 4 | 1);
1012 /* Indirect object base address: MEDIA_OBJECT data */
1013 OUT_BATCH(mocs_wb << 4 | 1);
1014 OUT_BATCH(0);
1015 /* Instruction base address: shader kernels (incl. SIP) */
1016 OUT_RELOC64(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
1017 mocs_wb << 4 | 1);
1018
1019 /* General state buffer size */
1020 OUT_BATCH(0xfffff001);
1021 /* Dynamic state buffer size */
1022 OUT_BATCH(ALIGN(brw->batch.bo->size, 4096) | 1);
1023 /* Indirect object upper bound */
1024 OUT_BATCH(0xfffff001);
1025 /* Instruction access upper bound */
1026 OUT_BATCH(ALIGN(brw->cache.bo->size, 4096) | 1);
1027 if (brw->gen >= 9) {
1028 OUT_BATCH(1);
1029 OUT_BATCH(0);
1030 OUT_BATCH(0);
1031 }
1032 ADVANCE_BATCH();
1033 } else if (brw->gen >= 6) {
1034 uint8_t mocs = brw->gen == 7 ? GEN7_MOCS_L3 : 0;
1035
1036 BEGIN_BATCH(10);
1037 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (10 - 2));
1038 OUT_BATCH(mocs << 8 | /* General State Memory Object Control State */
1039 mocs << 4 | /* Stateless Data Port Access Memory Object Control State */
1040 1); /* General State Base Address Modify Enable */
1041 /* Surface state base address:
1042 * BINDING_TABLE_STATE
1043 * SURFACE_STATE
1044 */
1045 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1);
1046 /* Dynamic state base address:
1047 * SAMPLER_STATE
1048 * SAMPLER_BORDER_COLOR_STATE
1049 * CLIP, SF, WM/CC viewport state
1050 * COLOR_CALC_STATE
1051 * DEPTH_STENCIL_STATE
1052 * BLEND_STATE
1053 * Push constants (when INSTPM: CONSTANT_BUFFER Address Offset
1054 * Disable is clear, which we rely on)
1055 */
1056 OUT_RELOC(brw->batch.bo, (I915_GEM_DOMAIN_RENDER |
1057 I915_GEM_DOMAIN_INSTRUCTION), 0, 1);
1058
1059 OUT_BATCH(1); /* Indirect object base address: MEDIA_OBJECT data */
1060 OUT_RELOC(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
1061 1); /* Instruction base address: shader kernels (incl. SIP) */
1062
1063 OUT_BATCH(1); /* General state upper bound */
1064 /* Dynamic state upper bound. Although the documentation says that
1065 * programming it to zero will cause it to be ignored, that is a lie.
1066 * If this isn't programmed to a real bound, the sampler border color
1067 * pointer is rejected, causing border color to mysteriously fail.
1068 */
1069 OUT_BATCH(0xfffff001);
1070 OUT_BATCH(1); /* Indirect object upper bound */
1071 OUT_BATCH(1); /* Instruction access upper bound */
1072 ADVANCE_BATCH();
1073 } else if (brw->gen == 5) {
1074 BEGIN_BATCH(8);
1075 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (8 - 2));
1076 OUT_BATCH(1); /* General state base address */
1077 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
1078 1); /* Surface state base address */
1079 OUT_BATCH(1); /* Indirect object base address */
1080 OUT_RELOC(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
1081 1); /* Instruction base address */
1082 OUT_BATCH(0xfffff001); /* General state upper bound */
1083 OUT_BATCH(1); /* Indirect object upper bound */
1084 OUT_BATCH(1); /* Instruction access upper bound */
1085 ADVANCE_BATCH();
1086 } else {
1087 BEGIN_BATCH(6);
1088 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (6 - 2));
1089 OUT_BATCH(1); /* General state base address */
1090 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
1091 1); /* Surface state base address */
1092 OUT_BATCH(1); /* Indirect object base address */
1093 OUT_BATCH(1); /* General state upper bound */
1094 OUT_BATCH(1); /* Indirect object upper bound */
1095 ADVANCE_BATCH();
1096 }
1097
1098 /* According to section 3.6.1 of VOL1 of the 965 PRM,
1099 * STATE_BASE_ADDRESS updates require a reissue of:
1100 *
1101 * 3DSTATE_PIPELINE_POINTERS
1102 * 3DSTATE_BINDING_TABLE_POINTERS
1103 * MEDIA_STATE_POINTERS
1104 *
1105 * and this continues through Ironlake. The Sandy Bridge PRM, vol
1106 * 1 part 1 says that the folowing packets must be reissued:
1107 *
1108 * 3DSTATE_CC_POINTERS
1109 * 3DSTATE_BINDING_TABLE_POINTERS
1110 * 3DSTATE_SAMPLER_STATE_POINTERS
1111 * 3DSTATE_VIEWPORT_STATE_POINTERS
1112 * MEDIA_STATE_POINTERS
1113 *
1114 * Those are always reissued following SBA updates anyway (new
1115 * batch time), except in the case of the program cache BO
1116 * changing. Having a separate state flag makes the sequence more
1117 * obvious.
1118 */
1119
1120 brw->ctx.NewDriverState |= BRW_NEW_STATE_BASE_ADDRESS;
1121 brw->batch.state_base_address_emitted = true;
1122 }