iris: Implement INTEL_DEBUG=pc for pipe control logging.
[mesa.git] / src / gallium / drivers / iris / iris_clear.c
1 /*
2 * Copyright © 2017 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23 #include <stdio.h>
24 #include <errno.h>
25 #include "pipe/p_defines.h"
26 #include "pipe/p_state.h"
27 #include "pipe/p_context.h"
28 #include "pipe/p_screen.h"
29 #include "util/u_inlines.h"
30 #include "util/u_format.h"
31 #include "util/u_upload_mgr.h"
32 #include "util/ralloc.h"
33 #include "iris_context.h"
34 #include "iris_resource.h"
35 #include "iris_screen.h"
36 #include "intel/compiler/brw_compiler.h"
37 #include "util/format_srgb.h"
38
39 static bool
40 iris_is_color_fast_clear_compatible(struct iris_context *ice,
41 enum isl_format format,
42 const union isl_color_value color)
43 {
44 struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
45 const struct gen_device_info *devinfo = &batch->screen->devinfo;
46
47 if (isl_format_has_int_channel(format)) {
48 perf_debug(&ice->dbg, "Integer fast clear not enabled for %s",
49 isl_format_get_name(format));
50 return false;
51 }
52
53 for (int i = 0; i < 4; i++) {
54 if (!isl_format_has_color_component(format, i)) {
55 continue;
56 }
57
58 if (devinfo->gen < 9 &&
59 color.f32[i] != 0.0f && color.f32[i] != 1.0f) {
60 return false;
61 }
62 }
63
64 return true;
65 }
66
67 static bool
68 can_fast_clear_color(struct iris_context *ice,
69 struct pipe_resource *p_res,
70 unsigned level,
71 const struct pipe_box *box,
72 enum isl_format format,
73 enum isl_format render_format,
74 union isl_color_value color)
75 {
76 struct iris_resource *res = (void *) p_res;
77
78 if (res->aux.usage == ISL_AUX_USAGE_NONE)
79 return false;
80
81 /* Surface state can only record one fast clear color value. Therefore
82 * unless different levels/layers agree on the color it can be used to
83 * represent only single level/layer. Here it will be reserved for the
84 * first slice (level 0, layer 0).
85 */
86 if (level > 0 || box->z > 0 || box->depth > 1)
87 return false;
88
89 /* Check for partial clear */
90 if (box->x > 0 || box->y > 0 ||
91 box->width < p_res->width0 ||
92 box->height < p_res->height0) {
93 return false;
94 }
95
96 /* We store clear colors as floats or uints as needed. If there are
97 * texture views in play, the formats will not properly be respected
98 * during resolves because the resolve operations only know about the
99 * resource and not the renderbuffer.
100 */
101 if (isl_format_srgb_to_linear(render_format) !=
102 isl_format_srgb_to_linear(format)) {
103 return false;
104 }
105
106 /* XXX: if (irb->mt->supports_fast_clear)
107 * see intel_miptree_create_for_dri_image()
108 */
109
110 if (!iris_is_color_fast_clear_compatible(ice, format, color))
111 return false;
112
113 return true;
114 }
115
116 static union isl_color_value
117 convert_fast_clear_color(struct iris_context *ice,
118 struct iris_resource *res,
119 enum isl_format render_format,
120 const union isl_color_value color)
121 {
122 union isl_color_value override_color = color;
123 struct pipe_resource *p_res = (void *) res;
124
125 const enum pipe_format format = p_res->format;
126 const struct util_format_description *desc =
127 util_format_description(format);
128 unsigned colormask = util_format_colormask(desc);
129
130 if (util_format_is_intensity(format) ||
131 util_format_is_luminance(format) ||
132 util_format_is_luminance_alpha(format)) {
133 override_color.u32[1] = override_color.u32[0];
134 override_color.u32[2] = override_color.u32[0];
135 if (util_format_is_intensity(format))
136 override_color.u32[3] = override_color.u32[0];
137 } else {
138 for (int chan = 0; chan < 3; chan++) {
139 if (!(colormask & (1 << chan)))
140 override_color.u32[chan] = 0;
141 }
142 }
143
144 if (util_format_is_unorm(format)) {
145 for (int i = 0; i < 4; i++)
146 override_color.f32[i] = CLAMP(override_color.f32[i], 0.0f, 1.0f);
147 } else if (util_format_is_snorm(format)) {
148 for (int i = 0; i < 4; i++)
149 override_color.f32[i] = CLAMP(override_color.f32[i], -1.0f, 1.0f);
150 } else if (util_format_is_pure_uint(format)) {
151 for (int i = 0; i < 4; i++) {
152 unsigned bits = util_format_get_component_bits(
153 format, UTIL_FORMAT_COLORSPACE_RGB, i);
154 if (bits < 32) {
155 uint32_t max = (1u << bits) - 1;
156 override_color.u32[i] = MIN2(override_color.u32[i], max);
157 }
158 }
159 } else if (util_format_is_pure_sint(format)) {
160 for (int i = 0; i < 4; i++) {
161 unsigned bits = util_format_get_component_bits(
162 format, UTIL_FORMAT_COLORSPACE_RGB, i);
163 if (bits < 32) {
164 int32_t max = (1 << (bits - 1)) - 1;
165 int32_t min = -(1 << (bits - 1));
166 override_color.i32[i] = CLAMP(override_color.i32[i], min, max);
167 }
168 }
169 } else if (format == PIPE_FORMAT_R11G11B10_FLOAT ||
170 format == PIPE_FORMAT_R9G9B9E5_FLOAT) {
171 /* these packed float formats only store unsigned values */
172 for (int i = 0; i < 4; i++)
173 override_color.f32[i] = MAX2(override_color.f32[i], 0.0f);
174 }
175
176 if (!(colormask & 1 << 3)) {
177 if (util_format_is_pure_integer(format))
178 override_color.u32[3] = 1;
179 else
180 override_color.f32[3] = 1.0f;
181 }
182
183 /* Handle linear to SRGB conversion */
184 if (isl_format_is_srgb(render_format)) {
185 for (int i = 0; i < 3; i++) {
186 override_color.f32[i] =
187 util_format_linear_to_srgb_float(override_color.f32[i]);
188 }
189 }
190
191 return override_color;
192 }
193
194 static void
195 fast_clear_color(struct iris_context *ice,
196 struct iris_resource *res,
197 unsigned level,
198 const struct pipe_box *box,
199 enum isl_format format,
200 union isl_color_value color,
201 enum blorp_batch_flags blorp_flags)
202 {
203 struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
204 struct pipe_resource *p_res = (void *) res;
205 const enum isl_aux_state aux_state =
206 iris_resource_get_aux_state(res, level, box->z);
207
208 color = convert_fast_clear_color(ice, res, format, color);
209
210 bool color_changed = !!memcmp(&res->aux.clear_color, &color,
211 sizeof(color));
212
213 if (color_changed) {
214 /* We decided that we are going to fast clear, and the color is
215 * changing. But if we have a predicate bit set, the predication
216 * affects whether we should clear or not, and if we shouldn't, we
217 * also shouldn't update the clear color.
218 *
219 * However, we can't simply predicate-update the clear color (the
220 * commands don't support that). And we would lose track of the
221 * color, preventing us from doing some optimizations later.
222 *
223 * Since changing the clear color when the predication bit is enabled
224 * is not something that should happen often, we stall on the CPU here
225 * to resolve the predication, and then proceed.
226 */
227 iris_resolve_conditional_render(ice);
228 if (ice->state.predicate == IRIS_PREDICATE_STATE_DONT_RENDER)
229 return;
230 }
231
232 iris_resource_set_clear_color(ice, res, color);
233
234 /* If the buffer is already in ISL_AUX_STATE_CLEAR, and the color hasn't
235 * changed, the clear is redundant and can be skipped.
236 */
237 if (!color_changed && aux_state == ISL_AUX_STATE_CLEAR)
238 return;
239
240 /* Ivybrigde PRM Vol 2, Part 1, "11.7 MCS Buffer for Render Target(s)":
241 *
242 * "Any transition from any value in {Clear, Render, Resolve} to a
243 * different value in {Clear, Render, Resolve} requires end of pipe
244 * synchronization."
245 *
246 * In other words, fast clear ops are not properly synchronized with
247 * other drawing. We need to use a PIPE_CONTROL to ensure that the
248 * contents of the previous draw hit the render target before we resolve
249 * and again afterwards to ensure that the resolve is complete before we
250 * do any more regular drawing.
251 */
252 iris_emit_end_of_pipe_sync(batch,
253 "fast clear: pre-flush",
254 PIPE_CONTROL_RENDER_TARGET_FLUSH);
255
256 /* If we reach this point, we need to fast clear to change the state to
257 * ISL_AUX_STATE_CLEAR, or to update the fast clear color (or both).
258 */
259 blorp_flags |= color_changed ? 0 : BLORP_BATCH_NO_UPDATE_CLEAR_COLOR;
260
261 struct blorp_batch blorp_batch;
262 blorp_batch_init(&ice->blorp, &blorp_batch, batch, blorp_flags);
263
264 struct blorp_surf surf;
265 iris_blorp_surf_for_resource(&ice->vtbl, &surf, p_res, res->aux.usage,
266 level, true);
267
268 /* In newer gens (> 9), the hardware will do a linear -> sRGB conversion of
269 * the clear color during the fast clear, if the surface format is of sRGB
270 * type. We use the linear version of the surface format here to prevent
271 * that from happening, since we already do our own linear -> sRGB
272 * conversion in convert_fast_clear_color().
273 */
274 blorp_fast_clear(&blorp_batch, &surf, isl_format_srgb_to_linear(format),
275 level, box->z, box->depth,
276 box->x, box->y, box->x + box->width,
277 box->y + box->height);
278 blorp_batch_finish(&blorp_batch);
279 iris_emit_end_of_pipe_sync(batch,
280 "fast clear: post flush",
281 PIPE_CONTROL_RENDER_TARGET_FLUSH);
282
283 iris_resource_set_aux_state(ice, res, level, box->z,
284 box->depth, ISL_AUX_STATE_CLEAR);
285 ice->state.dirty |= IRIS_ALL_DIRTY_BINDINGS;
286 return;
287 }
288
289 static void
290 clear_color(struct iris_context *ice,
291 struct pipe_resource *p_res,
292 unsigned level,
293 const struct pipe_box *box,
294 bool render_condition_enabled,
295 enum isl_format format,
296 struct isl_swizzle swizzle,
297 union isl_color_value color)
298 {
299 struct iris_resource *res = (void *) p_res;
300
301 struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
302 const struct gen_device_info *devinfo = &batch->screen->devinfo;
303 enum blorp_batch_flags blorp_flags = 0;
304
305 if (render_condition_enabled) {
306 if (ice->state.predicate == IRIS_PREDICATE_STATE_DONT_RENDER)
307 return;
308
309 if (ice->state.predicate == IRIS_PREDICATE_STATE_USE_BIT)
310 blorp_flags |= BLORP_BATCH_PREDICATE_ENABLE;
311 }
312
313 if (p_res->target == PIPE_BUFFER)
314 util_range_add(&res->valid_buffer_range, box->x, box->x + box->width);
315
316 iris_batch_maybe_flush(batch, 1500);
317
318 bool can_fast_clear = can_fast_clear_color(ice, p_res, level, box,
319 res->surf.format, format, color);
320 if (can_fast_clear) {
321 fast_clear_color(ice, res, level, box, format, color,
322 blorp_flags);
323 return;
324 }
325
326 bool color_write_disable[4] = { false, false, false, false };
327 enum isl_aux_usage aux_usage =
328 iris_resource_render_aux_usage(ice, res, format,
329 false, false);
330
331 iris_resource_prepare_render(ice, batch, res, level,
332 box->z, box->depth, aux_usage);
333
334 struct blorp_surf surf;
335 iris_blorp_surf_for_resource(&ice->vtbl, &surf, p_res, aux_usage, level,
336 true);
337
338 struct blorp_batch blorp_batch;
339 blorp_batch_init(&ice->blorp, &blorp_batch, batch, blorp_flags);
340
341 if (!isl_format_supports_rendering(devinfo, format) &&
342 isl_format_is_rgbx(format))
343 format = isl_format_rgbx_to_rgba(format);
344
345 blorp_clear(&blorp_batch, &surf, format, swizzle,
346 level, box->z, box->depth, box->x, box->y,
347 box->x + box->width, box->y + box->height,
348 color, color_write_disable);
349
350 blorp_batch_finish(&blorp_batch);
351 iris_flush_and_dirty_for_history(ice, batch, res,
352 "cache history: post color clear");
353
354 iris_resource_finish_render(ice, res, level,
355 box->z, box->depth, aux_usage);
356 }
357
358 static bool
359 can_fast_clear_depth(struct iris_context *ice,
360 struct iris_resource *res,
361 unsigned level,
362 const struct pipe_box *box,
363 float depth)
364 {
365 struct pipe_resource *p_res = (void *) res;
366
367 /* Check for partial clears */
368 if (box->x > 0 || box->y > 0 ||
369 box->width < u_minify(p_res->width0, level) ||
370 box->height < u_minify(p_res->height0, level)) {
371 return false;
372 }
373
374 if (!(res->aux.has_hiz & (1 << level)))
375 return false;
376
377 return true;
378 }
379
380 static void
381 fast_clear_depth(struct iris_context *ice,
382 struct iris_resource *res,
383 unsigned level,
384 const struct pipe_box *box,
385 float depth)
386 {
387 struct pipe_resource *p_res = (void *) res;
388 struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
389
390 /* Quantize the clear value to what can be stored in the actual depth
391 * buffer. This makes the following check more accurate because it now
392 * checks if the actual depth bits will match. It also prevents us from
393 * getting a too-accurate depth value during depth testing or when sampling
394 * with HiZ enabled.
395 */
396 const unsigned nbits = p_res->format == PIPE_FORMAT_Z16_UNORM ? 16 : 24;
397 const uint32_t depth_max = (1 << nbits) - 1;
398 depth = p_res->format == PIPE_FORMAT_Z32_FLOAT ? depth :
399 (unsigned)(depth * depth_max) / (float)depth_max;
400
401 bool update_clear_depth = false;
402
403 /* If we're clearing to a new clear value, then we need to resolve any clear
404 * flags out of the HiZ buffer into the real depth buffer.
405 */
406 if (res->aux.clear_color.f32[0] != depth) {
407 /* We decided that we are going to fast clear, and the color is
408 * changing. But if we have a predicate bit set, the predication
409 * affects whether we should clear or not, and if we shouldn't, we
410 * also shouldn't update the clear color.
411 *
412 * However, we can't simply predicate-update the clear color (the
413 * commands don't support that). And we would lose track of the
414 * color, preventing us from doing some optimizations later.
415 *
416 * For depth clears, things are even more complicated, because here we
417 * resolve the other levels/layers if they have a different color than
418 * the current one. That resolve can be predicated, but we also set those
419 * layers as ISL_AUX_STATE_RESOLVED, and this can't be predicated.
420 * Keeping track of the aux state when predication is involved is just
421 * even more complex, so the easiest thing to do when the fast clear
422 * depth is changing is to stall on the CPU and resolve the predication.
423 */
424 iris_resolve_conditional_render(ice);
425 if (ice->state.predicate == IRIS_PREDICATE_STATE_DONT_RENDER)
426 return;
427
428 for (unsigned res_level = 0; res_level < res->surf.levels; res_level++) {
429 if (!(res->aux.has_hiz & (1 << res_level)))
430 continue;
431
432 const unsigned level_layers =
433 iris_get_num_logical_layers(res, res_level);
434 for (unsigned layer = 0; layer < level_layers; layer++) {
435 if (res_level == level &&
436 layer >= box->z &&
437 layer < box->z + box->depth) {
438 /* We're going to clear this layer anyway. Leave it alone. */
439 continue;
440 }
441
442 enum isl_aux_state aux_state =
443 iris_resource_get_aux_state(res, res_level, layer);
444
445 if (aux_state != ISL_AUX_STATE_CLEAR &&
446 aux_state != ISL_AUX_STATE_COMPRESSED_CLEAR) {
447 /* This slice doesn't have any fast-cleared bits. */
448 continue;
449 }
450
451 /* If we got here, then the level may have fast-clear bits that
452 * use the old clear value. We need to do a depth resolve to get
453 * rid of their use of the clear value before we can change it.
454 * Fortunately, few applications ever change their depth clear
455 * value so this shouldn't happen often.
456 */
457 iris_hiz_exec(ice, batch, res, res_level, layer, 1,
458 ISL_AUX_OP_FULL_RESOLVE, false);
459 iris_resource_set_aux_state(ice, res, res_level, layer, 1,
460 ISL_AUX_STATE_RESOLVED);
461 }
462 }
463 const union isl_color_value clear_value = { .f32 = {depth, } };
464 iris_resource_set_clear_color(ice, res, clear_value);
465 update_clear_depth = true;
466 }
467
468 for (unsigned l = 0; l < box->depth; l++) {
469 enum isl_aux_state aux_state =
470 iris_resource_get_aux_state(res, level, box->z + l);
471 if (aux_state != ISL_AUX_STATE_CLEAR) {
472 iris_hiz_exec(ice, batch, res, level,
473 box->z + l, 1, ISL_AUX_OP_FAST_CLEAR,
474 update_clear_depth);
475 }
476 }
477
478 iris_resource_set_aux_state(ice, res, level, box->z, box->depth,
479 ISL_AUX_STATE_CLEAR);
480 ice->state.dirty |= IRIS_DIRTY_DEPTH_BUFFER;
481 }
482
483 static void
484 clear_depth_stencil(struct iris_context *ice,
485 struct pipe_resource *p_res,
486 unsigned level,
487 const struct pipe_box *box,
488 bool render_condition_enabled,
489 bool clear_depth,
490 bool clear_stencil,
491 float depth,
492 uint8_t stencil)
493 {
494 struct iris_resource *res = (void *) p_res;
495
496 struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
497 enum blorp_batch_flags blorp_flags = 0;
498
499 if (render_condition_enabled) {
500 if (ice->state.predicate == IRIS_PREDICATE_STATE_DONT_RENDER)
501 return;
502
503 if (ice->state.predicate == IRIS_PREDICATE_STATE_USE_BIT)
504 blorp_flags |= BLORP_BATCH_PREDICATE_ENABLE;
505 }
506
507 iris_batch_maybe_flush(batch, 1500);
508
509 struct iris_resource *z_res;
510 struct iris_resource *stencil_res;
511 struct blorp_surf z_surf;
512 struct blorp_surf stencil_surf;
513
514 iris_get_depth_stencil_resources(p_res, &z_res, &stencil_res);
515 if (z_res && clear_depth &&
516 can_fast_clear_depth(ice, z_res, level, box, depth)) {
517 fast_clear_depth(ice, z_res, level, box, depth);
518 iris_flush_and_dirty_for_history(ice, batch, res,
519 "cache history: post fast Z clear");
520 clear_depth = false;
521 z_res = false;
522 }
523
524 /* At this point, we might have fast cleared the depth buffer. So if there's
525 * no stencil clear pending, return early.
526 */
527 if (!(clear_depth || clear_stencil)) {
528 return;
529 }
530
531 if (z_res) {
532 iris_resource_prepare_depth(ice, batch, z_res, level, box->z, box->depth);
533 iris_blorp_surf_for_resource(&ice->vtbl, &z_surf, &z_res->base,
534 z_res->aux.usage, level, true);
535 }
536
537 struct blorp_batch blorp_batch;
538 blorp_batch_init(&ice->blorp, &blorp_batch, batch, blorp_flags);
539
540 if (stencil_res) {
541 iris_blorp_surf_for_resource(&ice->vtbl, &stencil_surf,
542 &stencil_res->base, stencil_res->aux.usage,
543 level, true);
544 }
545
546 blorp_clear_depth_stencil(&blorp_batch, &z_surf, &stencil_surf,
547 level, box->z, box->depth,
548 box->x, box->y,
549 box->x + box->width,
550 box->y + box->height,
551 clear_depth && z_res, depth,
552 clear_stencil && stencil_res ? 0xff : 0, stencil);
553
554 blorp_batch_finish(&blorp_batch);
555 iris_flush_and_dirty_for_history(ice, batch, res,
556 "cache history: post slow ZS clear");
557
558 if (z_res) {
559 iris_resource_finish_depth(ice, z_res, level,
560 box->z, box->depth, true);
561 }
562 }
563
564 /**
565 * The pipe->clear() driver hook.
566 *
567 * This clears buffers attached to the current draw framebuffer.
568 */
569 static void
570 iris_clear(struct pipe_context *ctx,
571 unsigned buffers,
572 const union pipe_color_union *p_color,
573 double depth,
574 unsigned stencil)
575 {
576 struct iris_context *ice = (void *) ctx;
577 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
578
579 assert(buffers != 0);
580
581 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
582 struct pipe_surface *psurf = cso_fb->zsbuf;
583 struct pipe_box box = {
584 .width = cso_fb->width,
585 .height = cso_fb->height,
586 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1,
587 .z = psurf->u.tex.first_layer,
588 };
589
590 clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box, true,
591 buffers & PIPE_CLEAR_DEPTH,
592 buffers & PIPE_CLEAR_STENCIL,
593 depth, stencil);
594 }
595
596 if (buffers & PIPE_CLEAR_COLOR) {
597 /* pipe_color_union and isl_color_value are interchangeable */
598 union isl_color_value *color = (void *) p_color;
599
600 for (unsigned i = 0; i < cso_fb->nr_cbufs; i++) {
601 if (buffers & (PIPE_CLEAR_COLOR0 << i)) {
602 struct pipe_surface *psurf = cso_fb->cbufs[i];
603 struct iris_surface *isurf = (void *) psurf;
604 struct pipe_box box = {
605 .width = cso_fb->width,
606 .height = cso_fb->height,
607 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1,
608 .z = psurf->u.tex.first_layer,
609 };
610
611 clear_color(ice, psurf->texture, psurf->u.tex.level, &box,
612 true, isurf->view.format, isurf->view.swizzle,
613 *color);
614 }
615 }
616 }
617 }
618
619 /**
620 * The pipe->clear_texture() driver hook.
621 *
622 * This clears the given texture resource.
623 */
624 static void
625 iris_clear_texture(struct pipe_context *ctx,
626 struct pipe_resource *p_res,
627 unsigned level,
628 const struct pipe_box *box,
629 const void *data)
630 {
631 struct iris_context *ice = (void *) ctx;
632 struct iris_screen *screen = (void *) ctx->screen;
633 const struct gen_device_info *devinfo = &screen->devinfo;
634
635 if (util_format_is_depth_or_stencil(p_res->format)) {
636 const struct util_format_description *fmt_desc =
637 util_format_description(p_res->format);
638
639 float depth = 0.0;
640 uint8_t stencil = 0;
641
642 if (fmt_desc->unpack_z_float)
643 fmt_desc->unpack_z_float(&depth, 0, data, 0, 1, 1);
644
645 if (fmt_desc->unpack_s_8uint)
646 fmt_desc->unpack_s_8uint(&stencil, 0, data, 0, 1, 1);
647
648 clear_depth_stencil(ice, p_res, level, box, true, true, true,
649 depth, stencil);
650 } else {
651 union isl_color_value color;
652 struct iris_resource *res = (void *) p_res;
653 enum isl_format format = res->surf.format;
654
655 if (!isl_format_supports_rendering(devinfo, format)) {
656 const struct isl_format_layout *fmtl = isl_format_get_layout(format);
657 // XXX: actually just get_copy_format_for_bpb from BLORP
658 // XXX: don't cut and paste this
659 switch (fmtl->bpb) {
660 case 8: format = ISL_FORMAT_R8_UINT; break;
661 case 16: format = ISL_FORMAT_R8G8_UINT; break;
662 case 24: format = ISL_FORMAT_R8G8B8_UINT; break;
663 case 32: format = ISL_FORMAT_R8G8B8A8_UINT; break;
664 case 48: format = ISL_FORMAT_R16G16B16_UINT; break;
665 case 64: format = ISL_FORMAT_R16G16B16A16_UINT; break;
666 case 96: format = ISL_FORMAT_R32G32B32_UINT; break;
667 case 128: format = ISL_FORMAT_R32G32B32A32_UINT; break;
668 default:
669 unreachable("Unknown format bpb");
670 }
671
672 /* No aux surfaces for non-renderable surfaces */
673 assert(res->aux.usage == ISL_AUX_USAGE_NONE);
674 }
675
676 isl_color_value_unpack(&color, format, data);
677
678 clear_color(ice, p_res, level, box, true, format,
679 ISL_SWIZZLE_IDENTITY, color);
680 }
681 }
682
683 /**
684 * The pipe->clear_render_target() driver hook.
685 *
686 * This clears the given render target surface.
687 */
688 static void
689 iris_clear_render_target(struct pipe_context *ctx,
690 struct pipe_surface *psurf,
691 const union pipe_color_union *p_color,
692 unsigned dst_x, unsigned dst_y,
693 unsigned width, unsigned height,
694 bool render_condition_enabled)
695 {
696 struct iris_context *ice = (void *) ctx;
697 struct iris_surface *isurf = (void *) psurf;
698 struct pipe_box box = {
699 .x = dst_x,
700 .y = dst_y,
701 .z = psurf->u.tex.first_layer,
702 .width = width,
703 .height = height,
704 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1
705 };
706
707 /* pipe_color_union and isl_color_value are interchangeable */
708 union isl_color_value *color = (void *) p_color;
709
710 clear_color(ice, psurf->texture, psurf->u.tex.level, &box,
711 render_condition_enabled,
712 isurf->view.format, isurf->view.swizzle, *color);
713 }
714
715 /**
716 * The pipe->clear_depth_stencil() driver hook.
717 *
718 * This clears the given depth/stencil surface.
719 */
720 static void
721 iris_clear_depth_stencil(struct pipe_context *ctx,
722 struct pipe_surface *psurf,
723 unsigned flags,
724 double depth,
725 unsigned stencil,
726 unsigned dst_x, unsigned dst_y,
727 unsigned width, unsigned height,
728 bool render_condition_enabled)
729 {
730 struct iris_context *ice = (void *) ctx;
731 struct pipe_box box = {
732 .x = dst_x,
733 .y = dst_y,
734 .z = psurf->u.tex.first_layer,
735 .width = width,
736 .height = height,
737 .depth = psurf->u.tex.last_layer - psurf->u.tex.first_layer + 1
738 };
739
740 assert(util_format_is_depth_or_stencil(psurf->texture->format));
741
742 clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box,
743 render_condition_enabled,
744 flags & PIPE_CLEAR_DEPTH, flags & PIPE_CLEAR_STENCIL,
745 depth, stencil);
746 }
747
748 void
749 iris_init_clear_functions(struct pipe_context *ctx)
750 {
751 ctx->clear = iris_clear;
752 ctx->clear_texture = iris_clear_texture;
753 ctx->clear_render_target = iris_clear_render_target;
754 ctx->clear_depth_stencil = iris_clear_depth_stencil;
755 }