i965: Drop BRW_NEW_BLORP from stipple and line parameter packets.
[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 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, false,
181 &tile_mask_x, &tile_mask_y);
182
183 if (intel_miptree_level_has_hiz(depth_mt, depth_level)) {
184 uint32_t hiz_tile_mask_x, hiz_tile_mask_y;
185 intel_get_tile_masks(depth_mt->hiz_buf->mt->tiling,
186 depth_mt->hiz_buf->mt->tr_mode,
187 depth_mt->hiz_buf->mt->cpp,
188 false, &hiz_tile_mask_x,
189 &hiz_tile_mask_y);
190
191 /* Each HiZ row represents 2 rows of pixels */
192 hiz_tile_mask_y = hiz_tile_mask_y << 1 | 1;
193
194 tile_mask_x |= hiz_tile_mask_x;
195 tile_mask_y |= hiz_tile_mask_y;
196 }
197 }
198
199 if (stencil_mt) {
200 if (stencil_mt->stencil_mt)
201 stencil_mt = stencil_mt->stencil_mt;
202
203 if (stencil_mt->format == MESA_FORMAT_S_UINT8) {
204 /* Separate stencil buffer uses 64x64 tiles. */
205 tile_mask_x |= 63;
206 tile_mask_y |= 63;
207 } else {
208 uint32_t stencil_tile_mask_x, stencil_tile_mask_y;
209 intel_get_tile_masks(stencil_mt->tiling,
210 stencil_mt->tr_mode,
211 stencil_mt->cpp,
212 false, &stencil_tile_mask_x,
213 &stencil_tile_mask_y);
214
215 tile_mask_x |= stencil_tile_mask_x;
216 tile_mask_y |= stencil_tile_mask_y;
217 }
218 }
219
220 *out_tile_mask_x = tile_mask_x;
221 *out_tile_mask_y = tile_mask_y;
222 }
223
224 static struct intel_mipmap_tree *
225 get_stencil_miptree(struct intel_renderbuffer *irb)
226 {
227 if (!irb)
228 return NULL;
229 if (irb->mt->stencil_mt)
230 return irb->mt->stencil_mt;
231 return irb->mt;
232 }
233
234 void
235 brw_workaround_depthstencil_alignment(struct brw_context *brw,
236 GLbitfield clear_mask)
237 {
238 struct gl_context *ctx = &brw->ctx;
239 struct gl_framebuffer *fb = ctx->DrawBuffer;
240 bool rebase_depth = false;
241 bool rebase_stencil = false;
242 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
243 struct intel_renderbuffer *stencil_irb = intel_get_renderbuffer(fb, BUFFER_STENCIL);
244 struct intel_mipmap_tree *depth_mt = NULL;
245 struct intel_mipmap_tree *stencil_mt = get_stencil_miptree(stencil_irb);
246 uint32_t tile_x = 0, tile_y = 0, stencil_tile_x = 0, stencil_tile_y = 0;
247 uint32_t stencil_draw_x = 0, stencil_draw_y = 0;
248 bool invalidate_depth = clear_mask & BUFFER_BIT_DEPTH;
249 bool invalidate_stencil = clear_mask & BUFFER_BIT_STENCIL;
250
251 if (depth_irb)
252 depth_mt = depth_irb->mt;
253
254 /* Initialize brw->depthstencil to 'nop' workaround state.
255 */
256 brw->depthstencil.tile_x = 0;
257 brw->depthstencil.tile_y = 0;
258 brw->depthstencil.depth_offset = 0;
259 brw->depthstencil.stencil_offset = 0;
260 brw->depthstencil.hiz_offset = 0;
261 brw->depthstencil.depth_mt = NULL;
262 brw->depthstencil.stencil_mt = NULL;
263 if (depth_irb)
264 brw->depthstencil.depth_mt = depth_mt;
265 if (stencil_irb)
266 brw->depthstencil.stencil_mt = get_stencil_miptree(stencil_irb);
267
268 /* Gen6+ doesn't require the workarounds, since we always program the
269 * surface state at the start of the whole surface.
270 */
271 if (brw->gen >= 6)
272 return;
273
274 /* Check if depth buffer is in depth/stencil format. If so, then it's only
275 * safe to invalidate it if we're also clearing stencil, and both depth_irb
276 * and stencil_irb point to the same miptree.
277 *
278 * Note: it's not sufficient to check for the case where
279 * _mesa_get_format_base_format(depth_mt->format) == GL_DEPTH_STENCIL,
280 * because this fails to catch depth/stencil buffers on hardware that uses
281 * separate stencil. To catch that case, we check whether
282 * depth_mt->stencil_mt is non-NULL.
283 */
284 if (depth_irb && invalidate_depth &&
285 (_mesa_get_format_base_format(depth_mt->format) == GL_DEPTH_STENCIL ||
286 depth_mt->stencil_mt)) {
287 invalidate_depth = invalidate_stencil && depth_irb && stencil_irb
288 && depth_irb->mt == stencil_irb->mt;
289 }
290
291 uint32_t tile_mask_x, tile_mask_y;
292 brw_get_depthstencil_tile_masks(depth_mt,
293 depth_mt ? depth_irb->mt_level : 0,
294 depth_mt ? depth_irb->mt_layer : 0,
295 stencil_mt,
296 &tile_mask_x, &tile_mask_y);
297
298 if (depth_irb) {
299 tile_x = depth_irb->draw_x & tile_mask_x;
300 tile_y = depth_irb->draw_y & tile_mask_y;
301
302 /* According to the Sandy Bridge PRM, volume 2 part 1, pp326-327
303 * (3DSTATE_DEPTH_BUFFER dw5), in the documentation for "Depth
304 * Coordinate Offset X/Y":
305 *
306 * "The 3 LSBs of both offsets must be zero to ensure correct
307 * alignment"
308 */
309 if (tile_x & 7 || tile_y & 7)
310 rebase_depth = true;
311
312 /* We didn't even have intra-tile offsets before g45. */
313 if (!brw->has_surface_tile_offset) {
314 if (tile_x || tile_y)
315 rebase_depth = true;
316 }
317
318 if (rebase_depth) {
319 perf_debug("HW workaround: blitting depth level %d to a temporary "
320 "to fix alignment (depth tile offset %d,%d)\n",
321 depth_irb->mt_level, tile_x, tile_y);
322 intel_renderbuffer_move_to_temp(brw, depth_irb, invalidate_depth);
323 /* In the case of stencil_irb being the same packed depth/stencil
324 * texture but not the same rb, make it point at our rebased mt, too.
325 */
326 if (stencil_irb &&
327 stencil_irb != depth_irb &&
328 stencil_irb->mt == depth_mt) {
329 intel_miptree_reference(&stencil_irb->mt, depth_irb->mt);
330 intel_renderbuffer_set_draw_offset(stencil_irb);
331 }
332
333 stencil_mt = get_stencil_miptree(stencil_irb);
334
335 tile_x = depth_irb->draw_x & tile_mask_x;
336 tile_y = depth_irb->draw_y & tile_mask_y;
337 }
338
339 if (stencil_irb) {
340 stencil_mt = get_stencil_miptree(stencil_irb);
341 intel_miptree_get_image_offset(stencil_mt,
342 stencil_irb->mt_level,
343 stencil_irb->mt_layer,
344 &stencil_draw_x, &stencil_draw_y);
345 int stencil_tile_x = stencil_draw_x & tile_mask_x;
346 int stencil_tile_y = stencil_draw_y & tile_mask_y;
347
348 /* If stencil doesn't match depth, then we'll need to rebase stencil
349 * as well. (if we hadn't decided to rebase stencil before, the
350 * post-stencil depth test will also rebase depth to try to match it
351 * up).
352 */
353 if (tile_x != stencil_tile_x ||
354 tile_y != stencil_tile_y) {
355 rebase_stencil = true;
356 }
357 }
358 }
359
360 /* If we have (just) stencil, check it for ignored low bits as well */
361 if (stencil_irb) {
362 intel_miptree_get_image_offset(stencil_mt,
363 stencil_irb->mt_level,
364 stencil_irb->mt_layer,
365 &stencil_draw_x, &stencil_draw_y);
366 stencil_tile_x = stencil_draw_x & tile_mask_x;
367 stencil_tile_y = stencil_draw_y & tile_mask_y;
368
369 if (stencil_tile_x & 7 || stencil_tile_y & 7)
370 rebase_stencil = true;
371
372 if (!brw->has_surface_tile_offset) {
373 if (stencil_tile_x || stencil_tile_y)
374 rebase_stencil = true;
375 }
376 }
377
378 if (rebase_stencil) {
379 perf_debug("HW workaround: blitting stencil level %d to a temporary "
380 "to fix alignment (stencil tile offset %d,%d)\n",
381 stencil_irb->mt_level, stencil_tile_x, stencil_tile_y);
382
383 intel_renderbuffer_move_to_temp(brw, stencil_irb, invalidate_stencil);
384 stencil_mt = get_stencil_miptree(stencil_irb);
385
386 intel_miptree_get_image_offset(stencil_mt,
387 stencil_irb->mt_level,
388 stencil_irb->mt_layer,
389 &stencil_draw_x, &stencil_draw_y);
390 stencil_tile_x = stencil_draw_x & tile_mask_x;
391 stencil_tile_y = stencil_draw_y & tile_mask_y;
392
393 if (depth_irb && depth_irb->mt == stencil_irb->mt) {
394 intel_miptree_reference(&depth_irb->mt, stencil_irb->mt);
395 intel_renderbuffer_set_draw_offset(depth_irb);
396 } else if (depth_irb && !rebase_depth) {
397 if (tile_x != stencil_tile_x ||
398 tile_y != stencil_tile_y) {
399 perf_debug("HW workaround: blitting depth level %d to a temporary "
400 "to match stencil level %d alignment (depth tile offset "
401 "%d,%d, stencil offset %d,%d)\n",
402 depth_irb->mt_level,
403 stencil_irb->mt_level,
404 tile_x, tile_y,
405 stencil_tile_x, stencil_tile_y);
406
407 intel_renderbuffer_move_to_temp(brw, depth_irb, invalidate_depth);
408
409 tile_x = depth_irb->draw_x & tile_mask_x;
410 tile_y = depth_irb->draw_y & tile_mask_y;
411
412 if (stencil_irb && stencil_irb->mt == depth_mt) {
413 intel_miptree_reference(&stencil_irb->mt, depth_irb->mt);
414 intel_renderbuffer_set_draw_offset(stencil_irb);
415 }
416
417 WARN_ONCE(stencil_tile_x != tile_x ||
418 stencil_tile_y != tile_y,
419 "Rebased stencil tile offset (%d,%d) doesn't match depth "
420 "tile offset (%d,%d).\n",
421 stencil_tile_x, stencil_tile_y,
422 tile_x, tile_y);
423 }
424 }
425 }
426
427 if (!depth_irb) {
428 tile_x = stencil_tile_x;
429 tile_y = stencil_tile_y;
430 }
431
432 /* While we just tried to get everything aligned, we may have failed to do
433 * so in the case of rendering to array or 3D textures, where nonzero faces
434 * will still have an offset post-rebase. At least give an informative
435 * warning.
436 */
437 WARN_ONCE((tile_x & 7) || (tile_y & 7),
438 "Depth/stencil buffer needs alignment to 8-pixel boundaries.\n"
439 "Truncating offset, bad rendering may occur.\n");
440 tile_x &= ~7;
441 tile_y &= ~7;
442
443 /* Now, after rebasing, save off the new dephtstencil state so the hardware
444 * packets can just dereference that without re-calculating tile offsets.
445 */
446 brw->depthstencil.tile_x = tile_x;
447 brw->depthstencil.tile_y = tile_y;
448 if (depth_irb) {
449 depth_mt = depth_irb->mt;
450 brw->depthstencil.depth_mt = depth_mt;
451 brw->depthstencil.depth_offset =
452 intel_miptree_get_aligned_offset(depth_mt,
453 depth_irb->draw_x & ~tile_mask_x,
454 depth_irb->draw_y & ~tile_mask_y,
455 false);
456 if (intel_renderbuffer_has_hiz(depth_irb)) {
457 brw->depthstencil.hiz_offset =
458 intel_miptree_get_aligned_offset(depth_mt,
459 depth_irb->draw_x & ~tile_mask_x,
460 (depth_irb->draw_y & ~tile_mask_y) / 2,
461 false);
462 }
463 }
464 if (stencil_irb) {
465 stencil_mt = get_stencil_miptree(stencil_irb);
466
467 brw->depthstencil.stencil_mt = stencil_mt;
468 if (stencil_mt->format == MESA_FORMAT_S_UINT8) {
469 /* Note: we can't compute the stencil offset using
470 * intel_region_get_aligned_offset(), because stencil_region claims
471 * that the region is untiled even though it's W tiled.
472 */
473 brw->depthstencil.stencil_offset =
474 (stencil_draw_y & ~tile_mask_y) * stencil_mt->pitch +
475 (stencil_draw_x & ~tile_mask_x) * 64;
476 }
477 }
478 }
479
480 void
481 brw_emit_depthbuffer(struct brw_context *brw)
482 {
483 struct gl_context *ctx = &brw->ctx;
484 struct gl_framebuffer *fb = ctx->DrawBuffer;
485 /* _NEW_BUFFERS */
486 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
487 struct intel_renderbuffer *stencil_irb = intel_get_renderbuffer(fb, BUFFER_STENCIL);
488 struct intel_mipmap_tree *depth_mt = brw->depthstencil.depth_mt;
489 struct intel_mipmap_tree *stencil_mt = brw->depthstencil.stencil_mt;
490 uint32_t tile_x = brw->depthstencil.tile_x;
491 uint32_t tile_y = brw->depthstencil.tile_y;
492 bool hiz = depth_irb && intel_renderbuffer_has_hiz(depth_irb);
493 bool separate_stencil = false;
494 uint32_t depth_surface_type = BRW_SURFACE_NULL;
495 uint32_t depthbuffer_format = BRW_DEPTHFORMAT_D32_FLOAT;
496 uint32_t depth_offset = 0;
497 uint32_t width = 1, height = 1;
498
499 if (stencil_mt) {
500 separate_stencil = stencil_mt->format == MESA_FORMAT_S_UINT8;
501
502 /* Gen7 supports only separate stencil */
503 assert(separate_stencil || brw->gen < 7);
504 }
505
506 /* If there's a packed depth/stencil bound to stencil only, we need to
507 * emit the packed depth/stencil buffer packet.
508 */
509 if (!depth_irb && stencil_irb && !separate_stencil) {
510 depth_irb = stencil_irb;
511 depth_mt = stencil_mt;
512 }
513
514 if (depth_irb && depth_mt) {
515 /* When 3DSTATE_DEPTH_BUFFER.Separate_Stencil_Enable is set, then
516 * 3DSTATE_DEPTH_BUFFER.Surface_Format is not permitted to be a packed
517 * depthstencil format.
518 *
519 * Gens prior to 7 require that HiZ_Enable and Separate_Stencil_Enable be
520 * set to the same value. Gens after 7 implicitly always set
521 * Separate_Stencil_Enable; software cannot disable it.
522 */
523 if ((brw->gen < 7 && hiz) || brw->gen >= 7) {
524 assert(!_mesa_is_format_packed_depth_stencil(depth_mt->format));
525 }
526
527 /* Prior to Gen7, if using separate stencil, hiz must be enabled. */
528 assert(brw->gen >= 7 || !separate_stencil || hiz);
529
530 assert(brw->gen < 6 || depth_mt->tiling == I915_TILING_Y);
531 assert(!hiz || depth_mt->tiling == I915_TILING_Y);
532
533 depthbuffer_format = brw_depthbuffer_format(brw);
534 depth_surface_type = BRW_SURFACE_2D;
535 depth_offset = brw->depthstencil.depth_offset;
536 width = depth_irb->Base.Base.Width;
537 height = depth_irb->Base.Base.Height;
538 } else if (separate_stencil) {
539 /*
540 * There exists a separate stencil buffer but no depth buffer.
541 *
542 * The stencil buffer inherits most of its fields from
543 * 3DSTATE_DEPTH_BUFFER: namely the tile walk, surface type, width, and
544 * height.
545 *
546 * The tiled bit must be set. From the Sandybridge PRM, Volume 2, Part 1,
547 * Section 7.5.5.1.1 3DSTATE_DEPTH_BUFFER, Bit 1.27 Tiled Surface:
548 * [DevGT+]: This field must be set to TRUE.
549 */
550 assert(brw->has_separate_stencil);
551
552 depth_surface_type = BRW_SURFACE_2D;
553 width = stencil_irb->Base.Base.Width;
554 height = stencil_irb->Base.Base.Height;
555 }
556
557 if (depth_mt)
558 brw_render_cache_set_check_flush(brw, depth_mt->bo);
559 if (stencil_mt)
560 brw_render_cache_set_check_flush(brw, stencil_mt->bo);
561
562 brw->vtbl.emit_depth_stencil_hiz(brw, depth_mt, depth_offset,
563 depthbuffer_format, depth_surface_type,
564 stencil_mt, hiz, separate_stencil,
565 width, height, tile_x, tile_y);
566 }
567
568 void
569 brw_emit_depth_stencil_hiz(struct brw_context *brw,
570 struct intel_mipmap_tree *depth_mt,
571 uint32_t depth_offset, uint32_t depthbuffer_format,
572 uint32_t depth_surface_type,
573 struct intel_mipmap_tree *stencil_mt,
574 bool hiz, bool separate_stencil,
575 uint32_t width, uint32_t height,
576 uint32_t tile_x, uint32_t tile_y)
577 {
578 /* Enable the hiz bit if we're doing separate stencil, because it and the
579 * separate stencil bit must have the same value. From Section 2.11.5.6.1.1
580 * 3DSTATE_DEPTH_BUFFER, Bit 1.21 "Separate Stencil Enable":
581 * [DevIL]: If this field is enabled, Hierarchical Depth Buffer
582 * Enable must also be enabled.
583 *
584 * [DevGT]: This field must be set to the same value (enabled or
585 * disabled) as Hierarchical Depth Buffer Enable
586 */
587 bool enable_hiz_ss = hiz || separate_stencil;
588
589
590 /* 3DSTATE_DEPTH_BUFFER, 3DSTATE_STENCIL_BUFFER are both
591 * non-pipelined state that will need the PIPE_CONTROL workaround.
592 */
593 if (brw->gen == 6) {
594 brw_emit_depth_stall_flushes(brw);
595 }
596
597 unsigned int len;
598 if (brw->gen >= 6)
599 len = 7;
600 else if (brw->is_g4x || brw->gen == 5)
601 len = 6;
602 else
603 len = 5;
604
605 BEGIN_BATCH(len);
606 OUT_BATCH(_3DSTATE_DEPTH_BUFFER << 16 | (len - 2));
607 OUT_BATCH((depth_mt ? depth_mt->pitch - 1 : 0) |
608 (depthbuffer_format << 18) |
609 ((enable_hiz_ss ? 1 : 0) << 21) | /* separate stencil enable */
610 ((enable_hiz_ss ? 1 : 0) << 22) | /* hiz enable */
611 (BRW_TILEWALK_YMAJOR << 26) |
612 ((depth_mt ? depth_mt->tiling != I915_TILING_NONE : 1)
613 << 27) |
614 (depth_surface_type << 29));
615
616 if (depth_mt) {
617 OUT_RELOC(depth_mt->bo,
618 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
619 depth_offset);
620 } else {
621 OUT_BATCH(0);
622 }
623
624 OUT_BATCH(((width + tile_x - 1) << 6) |
625 ((height + tile_y - 1) << 19));
626 OUT_BATCH(0);
627
628 if (brw->is_g4x || brw->gen >= 5)
629 OUT_BATCH(tile_x | (tile_y << 16));
630 else
631 assert(tile_x == 0 && tile_y == 0);
632
633 if (brw->gen >= 6)
634 OUT_BATCH(0);
635
636 ADVANCE_BATCH();
637
638 if (hiz || separate_stencil) {
639 /*
640 * In the 3DSTATE_DEPTH_BUFFER batch emitted above, the 'separate
641 * stencil enable' and 'hiz enable' bits were set. Therefore we must
642 * emit 3DSTATE_HIER_DEPTH_BUFFER and 3DSTATE_STENCIL_BUFFER. Even if
643 * there is no stencil buffer, 3DSTATE_STENCIL_BUFFER must be emitted;
644 * failure to do so causes hangs on gen5 and a stall on gen6.
645 */
646
647 /* Emit hiz buffer. */
648 if (hiz) {
649 struct intel_mipmap_tree *hiz_mt = depth_mt->hiz_buf->mt;
650 BEGIN_BATCH(3);
651 OUT_BATCH((_3DSTATE_HIER_DEPTH_BUFFER << 16) | (3 - 2));
652 OUT_BATCH(hiz_mt->pitch - 1);
653 OUT_RELOC(hiz_mt->bo,
654 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
655 brw->depthstencil.hiz_offset);
656 ADVANCE_BATCH();
657 } else {
658 BEGIN_BATCH(3);
659 OUT_BATCH((_3DSTATE_HIER_DEPTH_BUFFER << 16) | (3 - 2));
660 OUT_BATCH(0);
661 OUT_BATCH(0);
662 ADVANCE_BATCH();
663 }
664
665 /* Emit stencil buffer. */
666 if (separate_stencil) {
667 BEGIN_BATCH(3);
668 OUT_BATCH((_3DSTATE_STENCIL_BUFFER << 16) | (3 - 2));
669 /* The stencil buffer has quirky pitch requirements. From Vol 2a,
670 * 11.5.6.2.1 3DSTATE_STENCIL_BUFFER, field "Surface Pitch":
671 * The pitch must be set to 2x the value computed based on width, as
672 * the stencil buffer is stored with two rows interleaved.
673 */
674 OUT_BATCH(2 * stencil_mt->pitch - 1);
675 OUT_RELOC(stencil_mt->bo,
676 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
677 brw->depthstencil.stencil_offset);
678 ADVANCE_BATCH();
679 } else {
680 BEGIN_BATCH(3);
681 OUT_BATCH((_3DSTATE_STENCIL_BUFFER << 16) | (3 - 2));
682 OUT_BATCH(0);
683 OUT_BATCH(0);
684 ADVANCE_BATCH();
685 }
686 }
687
688 /*
689 * On Gen >= 6, emit clear params for safety. If using hiz, then clear
690 * params must be emitted.
691 *
692 * From Section 2.11.5.6.4.1 3DSTATE_CLEAR_PARAMS:
693 * 3DSTATE_CLEAR_PARAMS packet must follow the DEPTH_BUFFER_STATE packet
694 * when HiZ is enabled and the DEPTH_BUFFER_STATE changes.
695 */
696 if (brw->gen >= 6 || hiz) {
697 BEGIN_BATCH(2);
698 OUT_BATCH(_3DSTATE_CLEAR_PARAMS << 16 |
699 GEN5_DEPTH_CLEAR_VALID |
700 (2 - 2));
701 OUT_BATCH(depth_mt ? depth_mt->depth_clear_value : 0);
702 ADVANCE_BATCH();
703 }
704 }
705
706 const struct brw_tracked_state brw_depthbuffer = {
707 .dirty = {
708 .mesa = _NEW_BUFFERS,
709 .brw = BRW_NEW_BATCH |
710 BRW_NEW_BLORP,
711 },
712 .emit = brw_emit_depthbuffer,
713 };
714
715 /**
716 * Polygon stipple packet
717 */
718 static void
719 upload_polygon_stipple(struct brw_context *brw)
720 {
721 struct gl_context *ctx = &brw->ctx;
722 GLuint i;
723
724 /* _NEW_POLYGON */
725 if (!ctx->Polygon.StippleFlag)
726 return;
727
728 BEGIN_BATCH(33);
729 OUT_BATCH(_3DSTATE_POLY_STIPPLE_PATTERN << 16 | (33 - 2));
730
731 /* Polygon stipple is provided in OpenGL order, i.e. bottom
732 * row first. If we're rendering to a window (i.e. the
733 * default frame buffer object, 0), then we need to invert
734 * it to match our pixel layout. But if we're rendering
735 * to a FBO (i.e. any named frame buffer object), we *don't*
736 * need to invert - we already match the layout.
737 */
738 if (_mesa_is_winsys_fbo(ctx->DrawBuffer)) {
739 for (i = 0; i < 32; i++)
740 OUT_BATCH(ctx->PolygonStipple[31 - i]); /* invert */
741 } else {
742 for (i = 0; i < 32; i++)
743 OUT_BATCH(ctx->PolygonStipple[i]);
744 }
745 ADVANCE_BATCH();
746 }
747
748 const struct brw_tracked_state brw_polygon_stipple = {
749 .dirty = {
750 .mesa = _NEW_POLYGON |
751 _NEW_POLYGONSTIPPLE,
752 .brw = BRW_NEW_CONTEXT,
753 },
754 .emit = upload_polygon_stipple
755 };
756
757 /**
758 * Polygon stipple offset packet
759 */
760 static void
761 upload_polygon_stipple_offset(struct brw_context *brw)
762 {
763 struct gl_context *ctx = &brw->ctx;
764
765 /* _NEW_POLYGON */
766 if (!ctx->Polygon.StippleFlag)
767 return;
768
769 BEGIN_BATCH(2);
770 OUT_BATCH(_3DSTATE_POLY_STIPPLE_OFFSET << 16 | (2-2));
771
772 /* _NEW_BUFFERS
773 *
774 * If we're drawing to a system window we have to invert the Y axis
775 * in order to match the OpenGL pixel coordinate system, and our
776 * offset must be matched to the window position. If we're drawing
777 * to a user-created FBO then our native pixel coordinate system
778 * works just fine, and there's no window system to worry about.
779 */
780 if (_mesa_is_winsys_fbo(ctx->DrawBuffer))
781 OUT_BATCH((32 - (_mesa_geometric_height(ctx->DrawBuffer) & 31)) & 31);
782 else
783 OUT_BATCH(0);
784 ADVANCE_BATCH();
785 }
786
787 const struct brw_tracked_state brw_polygon_stipple_offset = {
788 .dirty = {
789 .mesa = _NEW_BUFFERS |
790 _NEW_POLYGON,
791 .brw = BRW_NEW_CONTEXT,
792 },
793 .emit = upload_polygon_stipple_offset
794 };
795
796 /**
797 * AA Line parameters
798 */
799 static void
800 upload_aa_line_parameters(struct brw_context *brw)
801 {
802 struct gl_context *ctx = &brw->ctx;
803
804 if (!ctx->Line.SmoothFlag)
805 return;
806
807 /* Original Gen4 doesn't have 3DSTATE_AA_LINE_PARAMETERS. */
808 if (brw->gen == 4 && !brw->is_g4x)
809 return;
810
811 BEGIN_BATCH(3);
812 OUT_BATCH(_3DSTATE_AA_LINE_PARAMETERS << 16 | (3 - 2));
813 /* use legacy aa line coverage computation */
814 OUT_BATCH(0);
815 OUT_BATCH(0);
816 ADVANCE_BATCH();
817 }
818
819 const struct brw_tracked_state brw_aa_line_parameters = {
820 .dirty = {
821 .mesa = _NEW_LINE,
822 .brw = BRW_NEW_CONTEXT,
823 },
824 .emit = upload_aa_line_parameters
825 };
826
827 /**
828 * Line stipple packet
829 */
830 static void
831 upload_line_stipple(struct brw_context *brw)
832 {
833 struct gl_context *ctx = &brw->ctx;
834 GLfloat tmp;
835 GLint tmpi;
836
837 if (!ctx->Line.StippleFlag)
838 return;
839
840 BEGIN_BATCH(3);
841 OUT_BATCH(_3DSTATE_LINE_STIPPLE_PATTERN << 16 | (3 - 2));
842 OUT_BATCH(ctx->Line.StipplePattern);
843
844 if (brw->gen >= 7) {
845 /* in U1.16 */
846 tmp = 1.0f / ctx->Line.StippleFactor;
847 tmpi = tmp * (1<<16);
848 OUT_BATCH(tmpi << 15 | ctx->Line.StippleFactor);
849 } else {
850 /* in U1.13 */
851 tmp = 1.0f / ctx->Line.StippleFactor;
852 tmpi = tmp * (1<<13);
853 OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor);
854 }
855
856 ADVANCE_BATCH();
857 }
858
859 const struct brw_tracked_state brw_line_stipple = {
860 .dirty = {
861 .mesa = _NEW_LINE,
862 .brw = BRW_NEW_CONTEXT,
863 },
864 .emit = upload_line_stipple
865 };
866
867 void
868 brw_emit_select_pipeline(struct brw_context *brw, enum brw_pipeline pipeline)
869 {
870 const bool is_965 = brw->gen == 4 && !brw->is_g4x;
871 const uint32_t _3DSTATE_PIPELINE_SELECT =
872 is_965 ? CMD_PIPELINE_SELECT_965 : CMD_PIPELINE_SELECT_GM45;
873
874 if (brw->use_resource_streamer && pipeline != BRW_RENDER_PIPELINE) {
875 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
876 * PIPELINE_SELECT [DevBWR+]":
877 *
878 * Project: HSW, BDW, CHV, SKL, BXT
879 *
880 * Hardware Binding Tables are only supported for 3D
881 * workloads. Resource streamer must be enabled only for 3D
882 * workloads. Resource streamer must be disabled for Media and GPGPU
883 * workloads.
884 */
885 BEGIN_BATCH(1);
886 OUT_BATCH(MI_RS_CONTROL | 0);
887 ADVANCE_BATCH();
888
889 gen7_disable_hw_binding_tables(brw);
890
891 /* XXX - Disable gather constant pool too when we start using it. */
892 }
893
894 if (brw->gen >= 8 && brw->gen < 10) {
895 /* From the Broadwell PRM, Volume 2a: Instructions, PIPELINE_SELECT:
896 *
897 * Software must clear the COLOR_CALC_STATE Valid field in
898 * 3DSTATE_CC_STATE_POINTERS command prior to send a PIPELINE_SELECT
899 * with Pipeline Select set to GPGPU.
900 *
901 * The internal hardware docs recommend the same workaround for Gen9
902 * hardware too.
903 */
904 if (pipeline == BRW_COMPUTE_PIPELINE) {
905 BEGIN_BATCH(2);
906 OUT_BATCH(_3DSTATE_CC_STATE_POINTERS << 16 | (2 - 2));
907 OUT_BATCH(0);
908 ADVANCE_BATCH();
909
910 brw->ctx.NewDriverState |= BRW_NEW_CC_STATE;
911 }
912
913 } else if (brw->gen >= 6) {
914 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
915 * PIPELINE_SELECT [DevBWR+]":
916 *
917 * Project: DEVSNB+
918 *
919 * Software must ensure all the write caches are flushed through a
920 * stalling PIPE_CONTROL command followed by another PIPE_CONTROL
921 * command to invalidate read only caches prior to programming
922 * MI_PIPELINE_SELECT command to change the Pipeline Select Mode.
923 */
924 const unsigned dc_flush =
925 brw->gen >= 7 ? PIPE_CONTROL_DATA_CACHE_FLUSH : 0;
926
927 if (brw->gen == 6) {
928 /* Hardware workaround: SNB B-Spec says:
929 *
930 * Before a PIPE_CONTROL with Write Cache Flush Enable = 1, a
931 * PIPE_CONTROL with any non-zero post-sync-op is required.
932 */
933 brw_emit_post_sync_nonzero_flush(brw);
934 }
935
936 brw_emit_pipe_control_flush(brw,
937 PIPE_CONTROL_RENDER_TARGET_FLUSH |
938 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
939 dc_flush |
940 PIPE_CONTROL_NO_WRITE |
941 PIPE_CONTROL_CS_STALL);
942
943 brw_emit_pipe_control_flush(brw,
944 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
945 PIPE_CONTROL_CONST_CACHE_INVALIDATE |
946 PIPE_CONTROL_STATE_CACHE_INVALIDATE |
947 PIPE_CONTROL_INSTRUCTION_INVALIDATE |
948 PIPE_CONTROL_NO_WRITE);
949
950 } else {
951 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
952 * PIPELINE_SELECT [DevBWR+]":
953 *
954 * Project: PRE-DEVSNB
955 *
956 * Software must ensure the current pipeline is flushed via an
957 * MI_FLUSH or PIPE_CONTROL prior to the execution of PIPELINE_SELECT.
958 */
959 BEGIN_BATCH(1);
960 OUT_BATCH(MI_FLUSH);
961 ADVANCE_BATCH();
962 }
963
964 /* Select the pipeline */
965 BEGIN_BATCH(1);
966 OUT_BATCH(_3DSTATE_PIPELINE_SELECT << 16 |
967 (brw->gen >= 9 ? (3 << 8) : 0) |
968 (pipeline == BRW_COMPUTE_PIPELINE ? 2 : 0));
969 ADVANCE_BATCH();
970
971 if (brw->gen == 7 && !brw->is_haswell &&
972 pipeline == BRW_RENDER_PIPELINE) {
973 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
974 * PIPELINE_SELECT [DevBWR+]":
975 *
976 * Project: DEVIVB, DEVHSW:GT3:A0
977 *
978 * Software must send a pipe_control with a CS stall and a post sync
979 * operation and then a dummy DRAW after every MI_SET_CONTEXT and
980 * after any PIPELINE_SELECT that is enabling 3D mode.
981 */
982 gen7_emit_cs_stall_flush(brw);
983
984 BEGIN_BATCH(7);
985 OUT_BATCH(CMD_3D_PRIM << 16 | (7 - 2));
986 OUT_BATCH(_3DPRIM_POINTLIST);
987 OUT_BATCH(0);
988 OUT_BATCH(0);
989 OUT_BATCH(0);
990 OUT_BATCH(0);
991 OUT_BATCH(0);
992 ADVANCE_BATCH();
993 }
994
995 if (brw->use_resource_streamer && pipeline == BRW_RENDER_PIPELINE) {
996 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
997 * PIPELINE_SELECT [DevBWR+]":
998 *
999 * Project: HSW, BDW, CHV, SKL, BXT
1000 *
1001 * Hardware Binding Tables are only supported for 3D
1002 * workloads. Resource streamer must be enabled only for 3D
1003 * workloads. Resource streamer must be disabled for Media and GPGPU
1004 * workloads.
1005 */
1006 BEGIN_BATCH(1);
1007 OUT_BATCH(MI_RS_CONTROL | 1);
1008 ADVANCE_BATCH();
1009
1010 gen7_enable_hw_binding_tables(brw);
1011
1012 /* XXX - Re-enable gather constant pool here. */
1013 }
1014 }
1015
1016 /**
1017 * Misc invariant state packets
1018 */
1019 void
1020 brw_upload_invariant_state(struct brw_context *brw)
1021 {
1022 const bool is_965 = brw->gen == 4 && !brw->is_g4x;
1023
1024 brw_emit_select_pipeline(brw, BRW_RENDER_PIPELINE);
1025 brw->last_pipeline = BRW_RENDER_PIPELINE;
1026
1027 if (brw->gen >= 8) {
1028 BEGIN_BATCH(3);
1029 OUT_BATCH(CMD_STATE_SIP << 16 | (3 - 2));
1030 OUT_BATCH(0);
1031 OUT_BATCH(0);
1032 ADVANCE_BATCH();
1033 } else {
1034 BEGIN_BATCH(2);
1035 OUT_BATCH(CMD_STATE_SIP << 16 | (2 - 2));
1036 OUT_BATCH(0);
1037 ADVANCE_BATCH();
1038 }
1039
1040 const uint32_t _3DSTATE_VF_STATISTICS =
1041 is_965 ? GEN4_3DSTATE_VF_STATISTICS : GM45_3DSTATE_VF_STATISTICS;
1042 BEGIN_BATCH(1);
1043 OUT_BATCH(_3DSTATE_VF_STATISTICS << 16 | 1);
1044 ADVANCE_BATCH();
1045 }
1046
1047 const struct brw_tracked_state brw_invariant_state = {
1048 .dirty = {
1049 .mesa = 0,
1050 .brw = BRW_NEW_BLORP |
1051 BRW_NEW_CONTEXT,
1052 },
1053 .emit = brw_upload_invariant_state
1054 };
1055
1056 /**
1057 * Define the base addresses which some state is referenced from.
1058 *
1059 * This allows us to avoid having to emit relocations for the objects,
1060 * and is actually required for binding table pointers on gen6.
1061 *
1062 * Surface state base address covers binding table pointers and
1063 * surface state objects, but not the surfaces that the surface state
1064 * objects point to.
1065 */
1066 static void
1067 upload_state_base_address(struct brw_context *brw)
1068 {
1069 /* FINISHME: According to section 3.6.1 "STATE_BASE_ADDRESS" of
1070 * vol1a of the G45 PRM, MI_FLUSH with the ISC invalidate should be
1071 * programmed prior to STATE_BASE_ADDRESS.
1072 *
1073 * However, given that the instruction SBA (general state base
1074 * address) on this chipset is always set to 0 across X and GL,
1075 * maybe this isn't required for us in particular.
1076 */
1077
1078 if (brw->gen >= 6) {
1079 uint8_t mocs = brw->gen == 7 ? GEN7_MOCS_L3 : 0;
1080
1081 BEGIN_BATCH(10);
1082 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (10 - 2));
1083 OUT_BATCH(mocs << 8 | /* General State Memory Object Control State */
1084 mocs << 4 | /* Stateless Data Port Access Memory Object Control State */
1085 1); /* General State Base Address Modify Enable */
1086 /* Surface state base address:
1087 * BINDING_TABLE_STATE
1088 * SURFACE_STATE
1089 */
1090 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1);
1091 /* Dynamic state base address:
1092 * SAMPLER_STATE
1093 * SAMPLER_BORDER_COLOR_STATE
1094 * CLIP, SF, WM/CC viewport state
1095 * COLOR_CALC_STATE
1096 * DEPTH_STENCIL_STATE
1097 * BLEND_STATE
1098 * Push constants (when INSTPM: CONSTANT_BUFFER Address Offset
1099 * Disable is clear, which we rely on)
1100 */
1101 OUT_RELOC(brw->batch.bo, (I915_GEM_DOMAIN_RENDER |
1102 I915_GEM_DOMAIN_INSTRUCTION), 0, 1);
1103
1104 OUT_BATCH(1); /* Indirect object base address: MEDIA_OBJECT data */
1105 OUT_RELOC(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
1106 1); /* Instruction base address: shader kernels (incl. SIP) */
1107
1108 OUT_BATCH(1); /* General state upper bound */
1109 /* Dynamic state upper bound. Although the documentation says that
1110 * programming it to zero will cause it to be ignored, that is a lie.
1111 * If this isn't programmed to a real bound, the sampler border color
1112 * pointer is rejected, causing border color to mysteriously fail.
1113 */
1114 OUT_BATCH(0xfffff001);
1115 OUT_BATCH(1); /* Indirect object upper bound */
1116 OUT_BATCH(1); /* Instruction access upper bound */
1117 ADVANCE_BATCH();
1118 } else if (brw->gen == 5) {
1119 BEGIN_BATCH(8);
1120 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (8 - 2));
1121 OUT_BATCH(1); /* General state base address */
1122 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
1123 1); /* Surface state base address */
1124 OUT_BATCH(1); /* Indirect object base address */
1125 OUT_RELOC(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
1126 1); /* Instruction base address */
1127 OUT_BATCH(0xfffff001); /* General state upper bound */
1128 OUT_BATCH(1); /* Indirect object upper bound */
1129 OUT_BATCH(1); /* Instruction access upper bound */
1130 ADVANCE_BATCH();
1131 } else {
1132 BEGIN_BATCH(6);
1133 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (6 - 2));
1134 OUT_BATCH(1); /* General state base address */
1135 OUT_RELOC(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
1136 1); /* Surface state base address */
1137 OUT_BATCH(1); /* Indirect object base address */
1138 OUT_BATCH(1); /* General state upper bound */
1139 OUT_BATCH(1); /* Indirect object upper bound */
1140 ADVANCE_BATCH();
1141 }
1142
1143 /* According to section 3.6.1 of VOL1 of the 965 PRM,
1144 * STATE_BASE_ADDRESS updates require a reissue of:
1145 *
1146 * 3DSTATE_PIPELINE_POINTERS
1147 * 3DSTATE_BINDING_TABLE_POINTERS
1148 * MEDIA_STATE_POINTERS
1149 *
1150 * and this continues through Ironlake. The Sandy Bridge PRM, vol
1151 * 1 part 1 says that the folowing packets must be reissued:
1152 *
1153 * 3DSTATE_CC_POINTERS
1154 * 3DSTATE_BINDING_TABLE_POINTERS
1155 * 3DSTATE_SAMPLER_STATE_POINTERS
1156 * 3DSTATE_VIEWPORT_STATE_POINTERS
1157 * MEDIA_STATE_POINTERS
1158 *
1159 * Those are always reissued following SBA updates anyway (new
1160 * batch time), except in the case of the program cache BO
1161 * changing. Having a separate state flag makes the sequence more
1162 * obvious.
1163 */
1164
1165 brw->ctx.NewDriverState |= BRW_NEW_STATE_BASE_ADDRESS;
1166 }
1167
1168 const struct brw_tracked_state brw_state_base_address = {
1169 .dirty = {
1170 .mesa = 0,
1171 .brw = BRW_NEW_BATCH |
1172 BRW_NEW_PROGRAM_CACHE,
1173 },
1174 .emit = upload_state_base_address
1175 };