ac/gpu_info: add htile_cmask_support_1d_tiling
[mesa.git] / src / gallium / drivers / radeonsi / si_texture.c
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 * Copyright 2018 Advanced Micro Devices, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * on the rights to use, copy, modify, merge, publish, distribute, sub
10 * license, and/or sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 #include "radeonsi/si_pipe.h"
27 #include "radeonsi/si_query.h"
28 #include "util/u_format.h"
29 #include "util/u_log.h"
30 #include "util/u_memory.h"
31 #include "util/u_pack_color.h"
32 #include "util/u_resource.h"
33 #include "util/u_surface.h"
34 #include "util/u_transfer.h"
35 #include "util/os_time.h"
36 #include <errno.h>
37 #include <inttypes.h>
38 #include "state_tracker/drm_driver.h"
39 #include "amd/common/sid.h"
40
41 static enum radeon_surf_mode
42 si_choose_tiling(struct si_screen *sscreen,
43 const struct pipe_resource *templ, bool tc_compatible_htile);
44
45
46 bool si_prepare_for_dma_blit(struct si_context *sctx,
47 struct r600_texture *rdst,
48 unsigned dst_level, unsigned dstx,
49 unsigned dsty, unsigned dstz,
50 struct r600_texture *rsrc,
51 unsigned src_level,
52 const struct pipe_box *src_box)
53 {
54 if (!sctx->dma_cs)
55 return false;
56
57 if (rdst->surface.bpe != rsrc->surface.bpe)
58 return false;
59
60 /* MSAA: Blits don't exist in the real world. */
61 if (rsrc->buffer.b.b.nr_samples > 1 ||
62 rdst->buffer.b.b.nr_samples > 1)
63 return false;
64
65 /* Depth-stencil surfaces:
66 * When dst is linear, the DB->CB copy preserves HTILE.
67 * When dst is tiled, the 3D path must be used to update HTILE.
68 */
69 if (rsrc->is_depth || rdst->is_depth)
70 return false;
71
72 /* DCC as:
73 * src: Use the 3D path. DCC decompression is expensive.
74 * dst: Use the 3D path to compress the pixels with DCC.
75 */
76 if (vi_dcc_enabled(rsrc, src_level) ||
77 vi_dcc_enabled(rdst, dst_level))
78 return false;
79
80 /* CMASK as:
81 * src: Both texture and SDMA paths need decompression. Use SDMA.
82 * dst: If overwriting the whole texture, discard CMASK and use
83 * SDMA. Otherwise, use the 3D path.
84 */
85 if (rdst->cmask.size && rdst->dirty_level_mask & (1 << dst_level)) {
86 /* The CMASK clear is only enabled for the first level. */
87 assert(dst_level == 0);
88 if (!util_texrange_covers_whole_level(&rdst->buffer.b.b, dst_level,
89 dstx, dsty, dstz, src_box->width,
90 src_box->height, src_box->depth))
91 return false;
92
93 si_texture_discard_cmask(sctx->screen, rdst);
94 }
95
96 /* All requirements are met. Prepare textures for SDMA. */
97 if (rsrc->cmask.size && rsrc->dirty_level_mask & (1 << src_level))
98 sctx->b.flush_resource(&sctx->b, &rsrc->buffer.b.b);
99
100 assert(!(rsrc->dirty_level_mask & (1 << src_level)));
101 assert(!(rdst->dirty_level_mask & (1 << dst_level)));
102
103 return true;
104 }
105
106 /* Same as resource_copy_region, except that both upsampling and downsampling are allowed. */
107 static void si_copy_region_with_blit(struct pipe_context *pipe,
108 struct pipe_resource *dst,
109 unsigned dst_level,
110 unsigned dstx, unsigned dsty, unsigned dstz,
111 struct pipe_resource *src,
112 unsigned src_level,
113 const struct pipe_box *src_box)
114 {
115 struct pipe_blit_info blit;
116
117 memset(&blit, 0, sizeof(blit));
118 blit.src.resource = src;
119 blit.src.format = src->format;
120 blit.src.level = src_level;
121 blit.src.box = *src_box;
122 blit.dst.resource = dst;
123 blit.dst.format = dst->format;
124 blit.dst.level = dst_level;
125 blit.dst.box.x = dstx;
126 blit.dst.box.y = dsty;
127 blit.dst.box.z = dstz;
128 blit.dst.box.width = src_box->width;
129 blit.dst.box.height = src_box->height;
130 blit.dst.box.depth = src_box->depth;
131 blit.mask = util_format_get_mask(src->format) &
132 util_format_get_mask(dst->format);
133 blit.filter = PIPE_TEX_FILTER_NEAREST;
134
135 if (blit.mask) {
136 pipe->blit(pipe, &blit);
137 }
138 }
139
140 /* Copy from a full GPU texture to a transfer's staging one. */
141 static void si_copy_to_staging_texture(struct pipe_context *ctx, struct r600_transfer *rtransfer)
142 {
143 struct si_context *sctx = (struct si_context*)ctx;
144 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer;
145 struct pipe_resource *dst = &rtransfer->staging->b.b;
146 struct pipe_resource *src = transfer->resource;
147
148 if (src->nr_samples > 1) {
149 si_copy_region_with_blit(ctx, dst, 0, 0, 0, 0,
150 src, transfer->level, &transfer->box);
151 return;
152 }
153
154 sctx->dma_copy(ctx, dst, 0, 0, 0, 0, src, transfer->level,
155 &transfer->box);
156 }
157
158 /* Copy from a transfer's staging texture to a full GPU one. */
159 static void si_copy_from_staging_texture(struct pipe_context *ctx, struct r600_transfer *rtransfer)
160 {
161 struct si_context *sctx = (struct si_context*)ctx;
162 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer;
163 struct pipe_resource *dst = transfer->resource;
164 struct pipe_resource *src = &rtransfer->staging->b.b;
165 struct pipe_box sbox;
166
167 u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox);
168
169 if (dst->nr_samples > 1) {
170 si_copy_region_with_blit(ctx, dst, transfer->level,
171 transfer->box.x, transfer->box.y, transfer->box.z,
172 src, 0, &sbox);
173 return;
174 }
175
176 sctx->dma_copy(ctx, dst, transfer->level,
177 transfer->box.x, transfer->box.y, transfer->box.z,
178 src, 0, &sbox);
179 }
180
181 static unsigned si_texture_get_offset(struct si_screen *sscreen,
182 struct r600_texture *rtex, unsigned level,
183 const struct pipe_box *box,
184 unsigned *stride,
185 unsigned *layer_stride)
186 {
187 if (sscreen->info.chip_class >= GFX9) {
188 *stride = rtex->surface.u.gfx9.surf_pitch * rtex->surface.bpe;
189 *layer_stride = rtex->surface.u.gfx9.surf_slice_size;
190
191 if (!box)
192 return 0;
193
194 /* Each texture is an array of slices. Each slice is an array
195 * of mipmap levels. */
196 return box->z * rtex->surface.u.gfx9.surf_slice_size +
197 rtex->surface.u.gfx9.offset[level] +
198 (box->y / rtex->surface.blk_h *
199 rtex->surface.u.gfx9.surf_pitch +
200 box->x / rtex->surface.blk_w) * rtex->surface.bpe;
201 } else {
202 *stride = rtex->surface.u.legacy.level[level].nblk_x *
203 rtex->surface.bpe;
204 assert((uint64_t)rtex->surface.u.legacy.level[level].slice_size_dw * 4 <= UINT_MAX);
205 *layer_stride = (uint64_t)rtex->surface.u.legacy.level[level].slice_size_dw * 4;
206
207 if (!box)
208 return rtex->surface.u.legacy.level[level].offset;
209
210 /* Each texture is an array of mipmap levels. Each level is
211 * an array of slices. */
212 return rtex->surface.u.legacy.level[level].offset +
213 box->z * (uint64_t)rtex->surface.u.legacy.level[level].slice_size_dw * 4 +
214 (box->y / rtex->surface.blk_h *
215 rtex->surface.u.legacy.level[level].nblk_x +
216 box->x / rtex->surface.blk_w) * rtex->surface.bpe;
217 }
218 }
219
220 static int si_init_surface(struct si_screen *sscreen,
221 struct radeon_surf *surface,
222 const struct pipe_resource *ptex,
223 unsigned num_color_samples,
224 enum radeon_surf_mode array_mode,
225 unsigned pitch_in_bytes_override,
226 unsigned offset,
227 bool is_imported,
228 bool is_scanout,
229 bool is_flushed_depth,
230 bool tc_compatible_htile)
231 {
232 const struct util_format_description *desc =
233 util_format_description(ptex->format);
234 bool is_depth, is_stencil;
235 int r;
236 unsigned i, bpe, flags = 0;
237
238 is_depth = util_format_has_depth(desc);
239 is_stencil = util_format_has_stencil(desc);
240
241 if (!is_flushed_depth &&
242 ptex->format == PIPE_FORMAT_Z32_FLOAT_S8X24_UINT) {
243 bpe = 4; /* stencil is allocated separately on evergreen */
244 } else {
245 bpe = util_format_get_blocksize(ptex->format);
246 assert(util_is_power_of_two_or_zero(bpe));
247 }
248
249 if (!is_flushed_depth && is_depth) {
250 flags |= RADEON_SURF_ZBUFFER;
251
252 if (tc_compatible_htile &&
253 (sscreen->info.chip_class >= GFX9 ||
254 array_mode == RADEON_SURF_MODE_2D)) {
255 /* TC-compatible HTILE only supports Z32_FLOAT.
256 * GFX9 also supports Z16_UNORM.
257 * On VI, promote Z16 to Z32. DB->CB copies will convert
258 * the format for transfers.
259 */
260 if (sscreen->info.chip_class == VI)
261 bpe = 4;
262
263 flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;
264 }
265
266 if (is_stencil)
267 flags |= RADEON_SURF_SBUFFER;
268 }
269
270 if (sscreen->info.chip_class >= VI &&
271 (ptex->flags & SI_RESOURCE_FLAG_DISABLE_DCC ||
272 ptex->format == PIPE_FORMAT_R9G9B9E5_FLOAT ||
273 (ptex->nr_samples >= 2 && !sscreen->dcc_msaa_allowed)))
274 flags |= RADEON_SURF_DISABLE_DCC;
275
276 /* VI: DCC clear for 4x and 8x MSAA array textures unimplemented. */
277 if (sscreen->info.chip_class == VI &&
278 num_color_samples >= 4 &&
279 ptex->array_size > 1)
280 flags |= RADEON_SURF_DISABLE_DCC;
281
282 /* GFX9: DCC clear for 4x and 8x MSAA textures unimplemented. */
283 if (sscreen->info.chip_class >= GFX9 &&
284 num_color_samples >= 4)
285 flags |= RADEON_SURF_DISABLE_DCC;
286
287 if (ptex->bind & PIPE_BIND_SCANOUT || is_scanout) {
288 /* This should catch bugs in gallium users setting incorrect flags. */
289 assert(ptex->nr_samples <= 1 &&
290 ptex->array_size == 1 &&
291 ptex->depth0 == 1 &&
292 ptex->last_level == 0 &&
293 !(flags & RADEON_SURF_Z_OR_SBUFFER));
294
295 flags |= RADEON_SURF_SCANOUT;
296 }
297
298 if (ptex->bind & PIPE_BIND_SHARED)
299 flags |= RADEON_SURF_SHAREABLE;
300 if (is_imported)
301 flags |= RADEON_SURF_IMPORTED | RADEON_SURF_SHAREABLE;
302 if (!(ptex->flags & SI_RESOURCE_FLAG_FORCE_TILING))
303 flags |= RADEON_SURF_OPTIMIZE_FOR_SPACE;
304
305 r = sscreen->ws->surface_init(sscreen->ws, ptex, num_color_samples,
306 flags, bpe, array_mode, surface);
307 if (r) {
308 return r;
309 }
310
311 unsigned pitch = pitch_in_bytes_override / bpe;
312
313 if (sscreen->info.chip_class >= GFX9) {
314 if (pitch) {
315 surface->u.gfx9.surf_pitch = pitch;
316 surface->u.gfx9.surf_slice_size =
317 (uint64_t)pitch * surface->u.gfx9.surf_height * bpe;
318 }
319 surface->u.gfx9.surf_offset = offset;
320 } else {
321 if (pitch) {
322 surface->u.legacy.level[0].nblk_x = pitch;
323 surface->u.legacy.level[0].slice_size_dw =
324 ((uint64_t)pitch * surface->u.legacy.level[0].nblk_y * bpe) / 4;
325 }
326 if (offset) {
327 for (i = 0; i < ARRAY_SIZE(surface->u.legacy.level); ++i)
328 surface->u.legacy.level[i].offset += offset;
329 }
330 }
331 return 0;
332 }
333
334 static void si_texture_init_metadata(struct si_screen *sscreen,
335 struct r600_texture *rtex,
336 struct radeon_bo_metadata *metadata)
337 {
338 struct radeon_surf *surface = &rtex->surface;
339
340 memset(metadata, 0, sizeof(*metadata));
341
342 if (sscreen->info.chip_class >= GFX9) {
343 metadata->u.gfx9.swizzle_mode = surface->u.gfx9.surf.swizzle_mode;
344 } else {
345 metadata->u.legacy.microtile = surface->u.legacy.level[0].mode >= RADEON_SURF_MODE_1D ?
346 RADEON_LAYOUT_TILED : RADEON_LAYOUT_LINEAR;
347 metadata->u.legacy.macrotile = surface->u.legacy.level[0].mode >= RADEON_SURF_MODE_2D ?
348 RADEON_LAYOUT_TILED : RADEON_LAYOUT_LINEAR;
349 metadata->u.legacy.pipe_config = surface->u.legacy.pipe_config;
350 metadata->u.legacy.bankw = surface->u.legacy.bankw;
351 metadata->u.legacy.bankh = surface->u.legacy.bankh;
352 metadata->u.legacy.tile_split = surface->u.legacy.tile_split;
353 metadata->u.legacy.mtilea = surface->u.legacy.mtilea;
354 metadata->u.legacy.num_banks = surface->u.legacy.num_banks;
355 metadata->u.legacy.stride = surface->u.legacy.level[0].nblk_x * surface->bpe;
356 metadata->u.legacy.scanout = (surface->flags & RADEON_SURF_SCANOUT) != 0;
357 }
358 }
359
360 static void si_surface_import_metadata(struct si_screen *sscreen,
361 struct radeon_surf *surf,
362 struct radeon_bo_metadata *metadata,
363 enum radeon_surf_mode *array_mode,
364 bool *is_scanout)
365 {
366 if (sscreen->info.chip_class >= GFX9) {
367 if (metadata->u.gfx9.swizzle_mode > 0)
368 *array_mode = RADEON_SURF_MODE_2D;
369 else
370 *array_mode = RADEON_SURF_MODE_LINEAR_ALIGNED;
371
372 *is_scanout = metadata->u.gfx9.swizzle_mode == 0 ||
373 metadata->u.gfx9.swizzle_mode % 4 == 2;
374
375 surf->u.gfx9.surf.swizzle_mode = metadata->u.gfx9.swizzle_mode;
376 } else {
377 surf->u.legacy.pipe_config = metadata->u.legacy.pipe_config;
378 surf->u.legacy.bankw = metadata->u.legacy.bankw;
379 surf->u.legacy.bankh = metadata->u.legacy.bankh;
380 surf->u.legacy.tile_split = metadata->u.legacy.tile_split;
381 surf->u.legacy.mtilea = metadata->u.legacy.mtilea;
382 surf->u.legacy.num_banks = metadata->u.legacy.num_banks;
383
384 if (metadata->u.legacy.macrotile == RADEON_LAYOUT_TILED)
385 *array_mode = RADEON_SURF_MODE_2D;
386 else if (metadata->u.legacy.microtile == RADEON_LAYOUT_TILED)
387 *array_mode = RADEON_SURF_MODE_1D;
388 else
389 *array_mode = RADEON_SURF_MODE_LINEAR_ALIGNED;
390
391 *is_scanout = metadata->u.legacy.scanout;
392 }
393 }
394
395 void si_eliminate_fast_color_clear(struct si_context *sctx,
396 struct r600_texture *rtex)
397 {
398 struct si_screen *sscreen = sctx->screen;
399 struct pipe_context *ctx = &sctx->b;
400
401 if (ctx == sscreen->aux_context)
402 mtx_lock(&sscreen->aux_context_lock);
403
404 unsigned n = sctx->num_decompress_calls;
405 ctx->flush_resource(ctx, &rtex->buffer.b.b);
406
407 /* Flush only if any fast clear elimination took place. */
408 if (n != sctx->num_decompress_calls)
409 ctx->flush(ctx, NULL, 0);
410
411 if (ctx == sscreen->aux_context)
412 mtx_unlock(&sscreen->aux_context_lock);
413 }
414
415 void si_texture_discard_cmask(struct si_screen *sscreen,
416 struct r600_texture *rtex)
417 {
418 if (!rtex->cmask.size)
419 return;
420
421 assert(rtex->buffer.b.b.nr_samples <= 1);
422
423 /* Disable CMASK. */
424 memset(&rtex->cmask, 0, sizeof(rtex->cmask));
425 rtex->cmask.base_address_reg = rtex->buffer.gpu_address >> 8;
426 rtex->dirty_level_mask = 0;
427
428 rtex->cb_color_info &= ~S_028C70_FAST_CLEAR(1);
429
430 if (rtex->cmask_buffer != &rtex->buffer)
431 r600_resource_reference(&rtex->cmask_buffer, NULL);
432
433 /* Notify all contexts about the change. */
434 p_atomic_inc(&sscreen->dirty_tex_counter);
435 p_atomic_inc(&sscreen->compressed_colortex_counter);
436 }
437
438 static bool si_can_disable_dcc(struct r600_texture *rtex)
439 {
440 /* We can't disable DCC if it can be written by another process. */
441 return rtex->dcc_offset &&
442 (!rtex->buffer.b.is_shared ||
443 !(rtex->buffer.external_usage & PIPE_HANDLE_USAGE_WRITE));
444 }
445
446 static bool si_texture_discard_dcc(struct si_screen *sscreen,
447 struct r600_texture *rtex)
448 {
449 if (!si_can_disable_dcc(rtex))
450 return false;
451
452 assert(rtex->dcc_separate_buffer == NULL);
453
454 /* Disable DCC. */
455 rtex->dcc_offset = 0;
456
457 /* Notify all contexts about the change. */
458 p_atomic_inc(&sscreen->dirty_tex_counter);
459 return true;
460 }
461
462 /**
463 * Disable DCC for the texture. (first decompress, then discard metadata).
464 *
465 * There is unresolved multi-context synchronization issue between
466 * screen::aux_context and the current context. If applications do this with
467 * multiple contexts, it's already undefined behavior for them and we don't
468 * have to worry about that. The scenario is:
469 *
470 * If context 1 disables DCC and context 2 has queued commands that write
471 * to the texture via CB with DCC enabled, and the order of operations is
472 * as follows:
473 * context 2 queues draw calls rendering to the texture, but doesn't flush
474 * context 1 disables DCC and flushes
475 * context 1 & 2 reset descriptors and FB state
476 * context 2 flushes (new compressed tiles written by the draw calls)
477 * context 1 & 2 read garbage, because DCC is disabled, yet there are
478 * compressed tiled
479 *
480 * \param sctx the current context if you have one, or rscreen->aux_context
481 * if you don't.
482 */
483 bool si_texture_disable_dcc(struct si_context *sctx,
484 struct r600_texture *rtex)
485 {
486 struct si_screen *sscreen = sctx->screen;
487
488 if (!si_can_disable_dcc(rtex))
489 return false;
490
491 if (&sctx->b == sscreen->aux_context)
492 mtx_lock(&sscreen->aux_context_lock);
493
494 /* Decompress DCC. */
495 si_decompress_dcc(sctx, rtex);
496 sctx->b.flush(&sctx->b, NULL, 0);
497
498 if (&sctx->b == sscreen->aux_context)
499 mtx_unlock(&sscreen->aux_context_lock);
500
501 return si_texture_discard_dcc(sscreen, rtex);
502 }
503
504 static void si_reallocate_texture_inplace(struct si_context *sctx,
505 struct r600_texture *rtex,
506 unsigned new_bind_flag,
507 bool invalidate_storage)
508 {
509 struct pipe_screen *screen = sctx->b.screen;
510 struct r600_texture *new_tex;
511 struct pipe_resource templ = rtex->buffer.b.b;
512 unsigned i;
513
514 templ.bind |= new_bind_flag;
515
516 if (rtex->buffer.b.is_shared)
517 return;
518
519 if (new_bind_flag == PIPE_BIND_LINEAR) {
520 if (rtex->surface.is_linear)
521 return;
522
523 /* This fails with MSAA, depth, and compressed textures. */
524 if (si_choose_tiling(sctx->screen, &templ, false) !=
525 RADEON_SURF_MODE_LINEAR_ALIGNED)
526 return;
527 }
528
529 new_tex = (struct r600_texture*)screen->resource_create(screen, &templ);
530 if (!new_tex)
531 return;
532
533 /* Copy the pixels to the new texture. */
534 if (!invalidate_storage) {
535 for (i = 0; i <= templ.last_level; i++) {
536 struct pipe_box box;
537
538 u_box_3d(0, 0, 0,
539 u_minify(templ.width0, i), u_minify(templ.height0, i),
540 util_num_layers(&templ, i), &box);
541
542 sctx->dma_copy(&sctx->b, &new_tex->buffer.b.b, i, 0, 0, 0,
543 &rtex->buffer.b.b, i, &box);
544 }
545 }
546
547 if (new_bind_flag == PIPE_BIND_LINEAR) {
548 si_texture_discard_cmask(sctx->screen, rtex);
549 si_texture_discard_dcc(sctx->screen, rtex);
550 }
551
552 /* Replace the structure fields of rtex. */
553 rtex->buffer.b.b.bind = templ.bind;
554 pb_reference(&rtex->buffer.buf, new_tex->buffer.buf);
555 rtex->buffer.gpu_address = new_tex->buffer.gpu_address;
556 rtex->buffer.vram_usage = new_tex->buffer.vram_usage;
557 rtex->buffer.gart_usage = new_tex->buffer.gart_usage;
558 rtex->buffer.bo_size = new_tex->buffer.bo_size;
559 rtex->buffer.bo_alignment = new_tex->buffer.bo_alignment;
560 rtex->buffer.domains = new_tex->buffer.domains;
561 rtex->buffer.flags = new_tex->buffer.flags;
562 rtex->size = new_tex->size;
563 rtex->db_render_format = new_tex->db_render_format;
564 rtex->db_compatible = new_tex->db_compatible;
565 rtex->can_sample_z = new_tex->can_sample_z;
566 rtex->can_sample_s = new_tex->can_sample_s;
567 rtex->surface = new_tex->surface;
568 rtex->fmask_offset = new_tex->fmask_offset;
569 rtex->cmask = new_tex->cmask;
570 rtex->cb_color_info = new_tex->cb_color_info;
571 rtex->last_msaa_resolve_target_micro_mode = new_tex->last_msaa_resolve_target_micro_mode;
572 rtex->htile_offset = new_tex->htile_offset;
573 rtex->tc_compatible_htile = new_tex->tc_compatible_htile;
574 rtex->depth_cleared = new_tex->depth_cleared;
575 rtex->stencil_cleared = new_tex->stencil_cleared;
576 rtex->dcc_gather_statistics = new_tex->dcc_gather_statistics;
577 rtex->framebuffers_bound = new_tex->framebuffers_bound;
578
579 if (new_bind_flag == PIPE_BIND_LINEAR) {
580 assert(!rtex->htile_offset);
581 assert(!rtex->cmask.size);
582 assert(!rtex->surface.fmask_size);
583 assert(!rtex->dcc_offset);
584 assert(!rtex->is_depth);
585 }
586
587 r600_texture_reference(&new_tex, NULL);
588
589 p_atomic_inc(&sctx->screen->dirty_tex_counter);
590 }
591
592 static uint32_t si_get_bo_metadata_word1(struct si_screen *sscreen)
593 {
594 return (ATI_VENDOR_ID << 16) | sscreen->info.pci_id;
595 }
596
597 static void si_query_opaque_metadata(struct si_screen *sscreen,
598 struct r600_texture *rtex,
599 struct radeon_bo_metadata *md)
600 {
601 struct pipe_resource *res = &rtex->buffer.b.b;
602 static const unsigned char swizzle[] = {
603 PIPE_SWIZZLE_X,
604 PIPE_SWIZZLE_Y,
605 PIPE_SWIZZLE_Z,
606 PIPE_SWIZZLE_W
607 };
608 uint32_t desc[8], i;
609 bool is_array = util_texture_is_array(res->target);
610
611 /* DRM 2.x.x doesn't support this. */
612 if (sscreen->info.drm_major != 3)
613 return;
614
615 assert(rtex->dcc_separate_buffer == NULL);
616 assert(rtex->surface.fmask_size == 0);
617
618 /* Metadata image format format version 1:
619 * [0] = 1 (metadata format identifier)
620 * [1] = (VENDOR_ID << 16) | PCI_ID
621 * [2:9] = image descriptor for the whole resource
622 * [2] is always 0, because the base address is cleared
623 * [9] is the DCC offset bits [39:8] from the beginning of
624 * the buffer
625 * [10:10+LAST_LEVEL] = mipmap level offset bits [39:8] for each level
626 */
627
628 md->metadata[0] = 1; /* metadata image format version 1 */
629
630 /* TILE_MODE_INDEX is ambiguous without a PCI ID. */
631 md->metadata[1] = si_get_bo_metadata_word1(sscreen);
632
633 si_make_texture_descriptor(sscreen, rtex, true,
634 res->target, res->format,
635 swizzle, 0, res->last_level, 0,
636 is_array ? res->array_size - 1 : 0,
637 res->width0, res->height0, res->depth0,
638 desc, NULL);
639
640 si_set_mutable_tex_desc_fields(sscreen, rtex, &rtex->surface.u.legacy.level[0],
641 0, 0, rtex->surface.blk_w, false, desc);
642
643 /* Clear the base address and set the relative DCC offset. */
644 desc[0] = 0;
645 desc[1] &= C_008F14_BASE_ADDRESS_HI;
646 desc[7] = rtex->dcc_offset >> 8;
647
648 /* Dwords [2:9] contain the image descriptor. */
649 memcpy(&md->metadata[2], desc, sizeof(desc));
650 md->size_metadata = 10 * 4;
651
652 /* Dwords [10:..] contain the mipmap level offsets. */
653 if (sscreen->info.chip_class <= VI) {
654 for (i = 0; i <= res->last_level; i++)
655 md->metadata[10+i] = rtex->surface.u.legacy.level[i].offset >> 8;
656
657 md->size_metadata += (1 + res->last_level) * 4;
658 }
659 }
660
661 static void si_apply_opaque_metadata(struct si_screen *sscreen,
662 struct r600_texture *rtex,
663 struct radeon_bo_metadata *md)
664 {
665 uint32_t *desc = &md->metadata[2];
666
667 if (sscreen->info.chip_class < VI)
668 return;
669
670 /* Return if DCC is enabled. The texture should be set up with it
671 * already.
672 */
673 if (md->size_metadata >= 10 * 4 && /* at least 2(header) + 8(desc) dwords */
674 md->metadata[0] != 0 &&
675 md->metadata[1] == si_get_bo_metadata_word1(sscreen) &&
676 G_008F28_COMPRESSION_EN(desc[6])) {
677 rtex->dcc_offset = (uint64_t)desc[7] << 8;
678 return;
679 }
680
681 /* Disable DCC. These are always set by texture_from_handle and must
682 * be cleared here.
683 */
684 rtex->dcc_offset = 0;
685 }
686
687 static boolean si_texture_get_handle(struct pipe_screen* screen,
688 struct pipe_context *ctx,
689 struct pipe_resource *resource,
690 struct winsys_handle *whandle,
691 unsigned usage)
692 {
693 struct si_screen *sscreen = (struct si_screen*)screen;
694 struct si_context *sctx;
695 struct r600_resource *res = r600_resource(resource);
696 struct r600_texture *rtex = (struct r600_texture*)resource;
697 struct radeon_bo_metadata metadata;
698 bool update_metadata = false;
699 unsigned stride, offset, slice_size;
700 bool flush = false;
701
702 ctx = threaded_context_unwrap_sync(ctx);
703 sctx = (struct si_context*)(ctx ? ctx : sscreen->aux_context);
704
705 if (resource->target != PIPE_BUFFER) {
706 /* This is not supported now, but it might be required for OpenCL
707 * interop in the future.
708 */
709 if (resource->nr_samples > 1 || rtex->is_depth)
710 return false;
711
712 /* Move a suballocated texture into a non-suballocated allocation. */
713 if (sscreen->ws->buffer_is_suballocated(res->buf) ||
714 rtex->surface.tile_swizzle ||
715 (rtex->buffer.flags & RADEON_FLAG_NO_INTERPROCESS_SHARING &&
716 sscreen->info.has_local_buffers &&
717 whandle->type != DRM_API_HANDLE_TYPE_KMS)) {
718 assert(!res->b.is_shared);
719 si_reallocate_texture_inplace(sctx, rtex,
720 PIPE_BIND_SHARED, false);
721 flush = true;
722 assert(res->b.b.bind & PIPE_BIND_SHARED);
723 assert(res->flags & RADEON_FLAG_NO_SUBALLOC);
724 assert(!(res->flags & RADEON_FLAG_NO_INTERPROCESS_SHARING));
725 assert(rtex->surface.tile_swizzle == 0);
726 }
727
728 /* Since shader image stores don't support DCC on VI,
729 * disable it for external clients that want write
730 * access.
731 */
732 if (usage & PIPE_HANDLE_USAGE_WRITE && rtex->dcc_offset) {
733 if (si_texture_disable_dcc(sctx, rtex)) {
734 update_metadata = true;
735 /* si_texture_disable_dcc flushes the context */
736 flush = false;
737 }
738 }
739
740 if (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) &&
741 (rtex->cmask.size || rtex->dcc_offset)) {
742 /* Eliminate fast clear (both CMASK and DCC) */
743 si_eliminate_fast_color_clear(sctx, rtex);
744 /* eliminate_fast_color_clear flushes the context */
745 flush = false;
746
747 /* Disable CMASK if flush_resource isn't going
748 * to be called.
749 */
750 if (rtex->cmask.size)
751 si_texture_discard_cmask(sscreen, rtex);
752 }
753
754 /* Set metadata. */
755 if (!res->b.is_shared || update_metadata) {
756 si_texture_init_metadata(sscreen, rtex, &metadata);
757 si_query_opaque_metadata(sscreen, rtex, &metadata);
758
759 sscreen->ws->buffer_set_metadata(res->buf, &metadata);
760 }
761
762 if (sscreen->info.chip_class >= GFX9) {
763 offset = rtex->surface.u.gfx9.surf_offset;
764 stride = rtex->surface.u.gfx9.surf_pitch *
765 rtex->surface.bpe;
766 slice_size = rtex->surface.u.gfx9.surf_slice_size;
767 } else {
768 offset = rtex->surface.u.legacy.level[0].offset;
769 stride = rtex->surface.u.legacy.level[0].nblk_x *
770 rtex->surface.bpe;
771 slice_size = (uint64_t)rtex->surface.u.legacy.level[0].slice_size_dw * 4;
772 }
773 } else {
774 /* Buffer exports are for the OpenCL interop. */
775 /* Move a suballocated buffer into a non-suballocated allocation. */
776 if (sscreen->ws->buffer_is_suballocated(res->buf) ||
777 /* A DMABUF export always fails if the BO is local. */
778 (rtex->buffer.flags & RADEON_FLAG_NO_INTERPROCESS_SHARING &&
779 sscreen->info.has_local_buffers)) {
780 assert(!res->b.is_shared);
781
782 /* Allocate a new buffer with PIPE_BIND_SHARED. */
783 struct pipe_resource templ = res->b.b;
784 templ.bind |= PIPE_BIND_SHARED;
785
786 struct pipe_resource *newb =
787 screen->resource_create(screen, &templ);
788 if (!newb)
789 return false;
790
791 /* Copy the old buffer contents to the new one. */
792 struct pipe_box box;
793 u_box_1d(0, newb->width0, &box);
794 sctx->b.resource_copy_region(&sctx->b, newb, 0, 0, 0, 0,
795 &res->b.b, 0, &box);
796 flush = true;
797 /* Move the new buffer storage to the old pipe_resource. */
798 si_replace_buffer_storage(&sctx->b, &res->b.b, newb);
799 pipe_resource_reference(&newb, NULL);
800
801 assert(res->b.b.bind & PIPE_BIND_SHARED);
802 assert(res->flags & RADEON_FLAG_NO_SUBALLOC);
803 }
804
805 /* Buffers */
806 offset = 0;
807 stride = 0;
808 slice_size = 0;
809 }
810
811 if (flush)
812 sctx->b.flush(&sctx->b, NULL, 0);
813
814 if (res->b.is_shared) {
815 /* USAGE_EXPLICIT_FLUSH must be cleared if at least one user
816 * doesn't set it.
817 */
818 res->external_usage |= usage & ~PIPE_HANDLE_USAGE_EXPLICIT_FLUSH;
819 if (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH))
820 res->external_usage &= ~PIPE_HANDLE_USAGE_EXPLICIT_FLUSH;
821 } else {
822 res->b.is_shared = true;
823 res->external_usage = usage;
824 }
825
826 return sscreen->ws->buffer_get_handle(res->buf, stride, offset,
827 slice_size, whandle);
828 }
829
830 static void si_texture_destroy(struct pipe_screen *screen,
831 struct pipe_resource *ptex)
832 {
833 struct r600_texture *rtex = (struct r600_texture*)ptex;
834 struct r600_resource *resource = &rtex->buffer;
835
836 r600_texture_reference(&rtex->flushed_depth_texture, NULL);
837
838 if (rtex->cmask_buffer != &rtex->buffer) {
839 r600_resource_reference(&rtex->cmask_buffer, NULL);
840 }
841 pb_reference(&resource->buf, NULL);
842 r600_resource_reference(&rtex->dcc_separate_buffer, NULL);
843 r600_resource_reference(&rtex->last_dcc_separate_buffer, NULL);
844 FREE(rtex);
845 }
846
847 static const struct u_resource_vtbl si_texture_vtbl;
848
849 void si_texture_get_cmask_info(struct si_screen *sscreen,
850 struct r600_texture *rtex,
851 struct r600_cmask_info *out)
852 {
853 unsigned pipe_interleave_bytes = sscreen->info.pipe_interleave_bytes;
854 unsigned num_pipes = sscreen->info.num_tile_pipes;
855 unsigned cl_width, cl_height;
856
857 if (sscreen->info.chip_class >= GFX9) {
858 out->alignment = rtex->surface.u.gfx9.cmask_alignment;
859 out->size = rtex->surface.u.gfx9.cmask_size;
860 return;
861 }
862
863 switch (num_pipes) {
864 case 2:
865 cl_width = 32;
866 cl_height = 16;
867 break;
868 case 4:
869 cl_width = 32;
870 cl_height = 32;
871 break;
872 case 8:
873 cl_width = 64;
874 cl_height = 32;
875 break;
876 case 16: /* Hawaii */
877 cl_width = 64;
878 cl_height = 64;
879 break;
880 default:
881 assert(0);
882 return;
883 }
884
885 unsigned base_align = num_pipes * pipe_interleave_bytes;
886
887 unsigned width = align(rtex->buffer.b.b.width0, cl_width*8);
888 unsigned height = align(rtex->buffer.b.b.height0, cl_height*8);
889 unsigned slice_elements = (width * height) / (8*8);
890
891 /* Each element of CMASK is a nibble. */
892 unsigned slice_bytes = slice_elements / 2;
893
894 out->slice_tile_max = (width * height) / (128*128);
895 if (out->slice_tile_max)
896 out->slice_tile_max -= 1;
897
898 out->alignment = MAX2(256, base_align);
899 out->size = util_num_layers(&rtex->buffer.b.b, 0) *
900 align(slice_bytes, base_align);
901 }
902
903 static void si_texture_allocate_cmask(struct si_screen *sscreen,
904 struct r600_texture *rtex)
905 {
906 si_texture_get_cmask_info(sscreen, rtex, &rtex->cmask);
907
908 rtex->cmask.offset = align64(rtex->size, rtex->cmask.alignment);
909 rtex->size = rtex->cmask.offset + rtex->cmask.size;
910
911 rtex->cb_color_info |= S_028C70_FAST_CLEAR(1);
912 }
913
914 static void si_texture_get_htile_size(struct si_screen *sscreen,
915 struct r600_texture *rtex)
916 {
917 unsigned cl_width, cl_height, width, height;
918 unsigned slice_elements, slice_bytes, pipe_interleave_bytes, base_align;
919 unsigned num_pipes = sscreen->info.num_tile_pipes;
920
921 assert(sscreen->info.chip_class <= VI);
922
923 rtex->surface.htile_size = 0;
924
925 if (rtex->surface.u.legacy.level[0].mode == RADEON_SURF_MODE_1D &&
926 !sscreen->info.htile_cmask_support_1d_tiling)
927 return;
928
929 /* Overalign HTILE on P2 configs to work around GPU hangs in
930 * piglit/depthstencil-render-miplevels 585.
931 *
932 * This has been confirmed to help Kabini & Stoney, where the hangs
933 * are always reproducible. I think I have seen the test hang
934 * on Carrizo too, though it was very rare there.
935 */
936 if (sscreen->info.chip_class >= CIK && num_pipes < 4)
937 num_pipes = 4;
938
939 switch (num_pipes) {
940 case 1:
941 cl_width = 32;
942 cl_height = 16;
943 break;
944 case 2:
945 cl_width = 32;
946 cl_height = 32;
947 break;
948 case 4:
949 cl_width = 64;
950 cl_height = 32;
951 break;
952 case 8:
953 cl_width = 64;
954 cl_height = 64;
955 break;
956 case 16:
957 cl_width = 128;
958 cl_height = 64;
959 break;
960 default:
961 assert(0);
962 return;
963 }
964
965 width = align(rtex->buffer.b.b.width0, cl_width * 8);
966 height = align(rtex->buffer.b.b.height0, cl_height * 8);
967
968 slice_elements = (width * height) / (8 * 8);
969 slice_bytes = slice_elements * 4;
970
971 pipe_interleave_bytes = sscreen->info.pipe_interleave_bytes;
972 base_align = num_pipes * pipe_interleave_bytes;
973
974 rtex->surface.htile_alignment = base_align;
975 rtex->surface.htile_size =
976 util_num_layers(&rtex->buffer.b.b, 0) *
977 align(slice_bytes, base_align);
978 }
979
980 static void si_texture_allocate_htile(struct si_screen *sscreen,
981 struct r600_texture *rtex)
982 {
983 if (sscreen->info.chip_class <= VI && !rtex->tc_compatible_htile)
984 si_texture_get_htile_size(sscreen, rtex);
985
986 if (!rtex->surface.htile_size)
987 return;
988
989 rtex->htile_offset = align(rtex->size, rtex->surface.htile_alignment);
990 rtex->size = rtex->htile_offset + rtex->surface.htile_size;
991 }
992
993 void si_print_texture_info(struct si_screen *sscreen,
994 struct r600_texture *rtex, struct u_log_context *log)
995 {
996 int i;
997
998 /* Common parameters. */
999 u_log_printf(log, " Info: npix_x=%u, npix_y=%u, npix_z=%u, blk_w=%u, "
1000 "blk_h=%u, array_size=%u, last_level=%u, "
1001 "bpe=%u, nsamples=%u, flags=0x%x, %s\n",
1002 rtex->buffer.b.b.width0, rtex->buffer.b.b.height0,
1003 rtex->buffer.b.b.depth0, rtex->surface.blk_w,
1004 rtex->surface.blk_h,
1005 rtex->buffer.b.b.array_size, rtex->buffer.b.b.last_level,
1006 rtex->surface.bpe, rtex->buffer.b.b.nr_samples,
1007 rtex->surface.flags, util_format_short_name(rtex->buffer.b.b.format));
1008
1009 if (sscreen->info.chip_class >= GFX9) {
1010 u_log_printf(log, " Surf: size=%"PRIu64", slice_size=%"PRIu64", "
1011 "alignment=%u, swmode=%u, epitch=%u, pitch=%u\n",
1012 rtex->surface.surf_size,
1013 rtex->surface.u.gfx9.surf_slice_size,
1014 rtex->surface.surf_alignment,
1015 rtex->surface.u.gfx9.surf.swizzle_mode,
1016 rtex->surface.u.gfx9.surf.epitch,
1017 rtex->surface.u.gfx9.surf_pitch);
1018
1019 if (rtex->surface.fmask_size) {
1020 u_log_printf(log, " FMASK: offset=%"PRIu64", size=%"PRIu64", "
1021 "alignment=%u, swmode=%u, epitch=%u\n",
1022 rtex->fmask_offset,
1023 rtex->surface.fmask_size,
1024 rtex->surface.fmask_alignment,
1025 rtex->surface.u.gfx9.fmask.swizzle_mode,
1026 rtex->surface.u.gfx9.fmask.epitch);
1027 }
1028
1029 if (rtex->cmask.size) {
1030 u_log_printf(log, " CMask: offset=%"PRIu64", size=%"PRIu64", "
1031 "alignment=%u, rb_aligned=%u, pipe_aligned=%u\n",
1032 rtex->cmask.offset,
1033 rtex->surface.u.gfx9.cmask_size,
1034 rtex->surface.u.gfx9.cmask_alignment,
1035 rtex->surface.u.gfx9.cmask.rb_aligned,
1036 rtex->surface.u.gfx9.cmask.pipe_aligned);
1037 }
1038
1039 if (rtex->htile_offset) {
1040 u_log_printf(log, " HTile: offset=%"PRIu64", size=%u, alignment=%u, "
1041 "rb_aligned=%u, pipe_aligned=%u\n",
1042 rtex->htile_offset,
1043 rtex->surface.htile_size,
1044 rtex->surface.htile_alignment,
1045 rtex->surface.u.gfx9.htile.rb_aligned,
1046 rtex->surface.u.gfx9.htile.pipe_aligned);
1047 }
1048
1049 if (rtex->dcc_offset) {
1050 u_log_printf(log, " DCC: offset=%"PRIu64", size=%u, "
1051 "alignment=%u, pitch_max=%u, num_dcc_levels=%u\n",
1052 rtex->dcc_offset, rtex->surface.dcc_size,
1053 rtex->surface.dcc_alignment,
1054 rtex->surface.u.gfx9.dcc_pitch_max,
1055 rtex->surface.num_dcc_levels);
1056 }
1057
1058 if (rtex->surface.u.gfx9.stencil_offset) {
1059 u_log_printf(log, " Stencil: offset=%"PRIu64", swmode=%u, epitch=%u\n",
1060 rtex->surface.u.gfx9.stencil_offset,
1061 rtex->surface.u.gfx9.stencil.swizzle_mode,
1062 rtex->surface.u.gfx9.stencil.epitch);
1063 }
1064 return;
1065 }
1066
1067 u_log_printf(log, " Layout: size=%"PRIu64", alignment=%u, bankw=%u, "
1068 "bankh=%u, nbanks=%u, mtilea=%u, tilesplit=%u, pipeconfig=%u, scanout=%u\n",
1069 rtex->surface.surf_size, rtex->surface.surf_alignment, rtex->surface.u.legacy.bankw,
1070 rtex->surface.u.legacy.bankh, rtex->surface.u.legacy.num_banks, rtex->surface.u.legacy.mtilea,
1071 rtex->surface.u.legacy.tile_split, rtex->surface.u.legacy.pipe_config,
1072 (rtex->surface.flags & RADEON_SURF_SCANOUT) != 0);
1073
1074 if (rtex->surface.fmask_size)
1075 u_log_printf(log, " FMask: offset=%"PRIu64", size=%"PRIu64", alignment=%u, pitch_in_pixels=%u, "
1076 "bankh=%u, slice_tile_max=%u, tile_mode_index=%u\n",
1077 rtex->fmask_offset, rtex->surface.fmask_size, rtex->surface.fmask_alignment,
1078 rtex->surface.u.legacy.fmask.pitch_in_pixels,
1079 rtex->surface.u.legacy.fmask.bankh,
1080 rtex->surface.u.legacy.fmask.slice_tile_max,
1081 rtex->surface.u.legacy.fmask.tiling_index);
1082
1083 if (rtex->cmask.size)
1084 u_log_printf(log, " CMask: offset=%"PRIu64", size=%"PRIu64", alignment=%u, "
1085 "slice_tile_max=%u\n",
1086 rtex->cmask.offset, rtex->cmask.size, rtex->cmask.alignment,
1087 rtex->cmask.slice_tile_max);
1088
1089 if (rtex->htile_offset)
1090 u_log_printf(log, " HTile: offset=%"PRIu64", size=%u, "
1091 "alignment=%u, TC_compatible = %u\n",
1092 rtex->htile_offset, rtex->surface.htile_size,
1093 rtex->surface.htile_alignment,
1094 rtex->tc_compatible_htile);
1095
1096 if (rtex->dcc_offset) {
1097 u_log_printf(log, " DCC: offset=%"PRIu64", size=%u, alignment=%u\n",
1098 rtex->dcc_offset, rtex->surface.dcc_size,
1099 rtex->surface.dcc_alignment);
1100 for (i = 0; i <= rtex->buffer.b.b.last_level; i++)
1101 u_log_printf(log, " DCCLevel[%i]: enabled=%u, offset=%u, "
1102 "fast_clear_size=%u\n",
1103 i, i < rtex->surface.num_dcc_levels,
1104 rtex->surface.u.legacy.level[i].dcc_offset,
1105 rtex->surface.u.legacy.level[i].dcc_fast_clear_size);
1106 }
1107
1108 for (i = 0; i <= rtex->buffer.b.b.last_level; i++)
1109 u_log_printf(log, " Level[%i]: offset=%"PRIu64", slice_size=%"PRIu64", "
1110 "npix_x=%u, npix_y=%u, npix_z=%u, nblk_x=%u, nblk_y=%u, "
1111 "mode=%u, tiling_index = %u\n",
1112 i, rtex->surface.u.legacy.level[i].offset,
1113 (uint64_t)rtex->surface.u.legacy.level[i].slice_size_dw * 4,
1114 u_minify(rtex->buffer.b.b.width0, i),
1115 u_minify(rtex->buffer.b.b.height0, i),
1116 u_minify(rtex->buffer.b.b.depth0, i),
1117 rtex->surface.u.legacy.level[i].nblk_x,
1118 rtex->surface.u.legacy.level[i].nblk_y,
1119 rtex->surface.u.legacy.level[i].mode,
1120 rtex->surface.u.legacy.tiling_index[i]);
1121
1122 if (rtex->surface.has_stencil) {
1123 u_log_printf(log, " StencilLayout: tilesplit=%u\n",
1124 rtex->surface.u.legacy.stencil_tile_split);
1125 for (i = 0; i <= rtex->buffer.b.b.last_level; i++) {
1126 u_log_printf(log, " StencilLevel[%i]: offset=%"PRIu64", "
1127 "slice_size=%"PRIu64", npix_x=%u, "
1128 "npix_y=%u, npix_z=%u, nblk_x=%u, nblk_y=%u, "
1129 "mode=%u, tiling_index = %u\n",
1130 i, rtex->surface.u.legacy.stencil_level[i].offset,
1131 (uint64_t)rtex->surface.u.legacy.stencil_level[i].slice_size_dw * 4,
1132 u_minify(rtex->buffer.b.b.width0, i),
1133 u_minify(rtex->buffer.b.b.height0, i),
1134 u_minify(rtex->buffer.b.b.depth0, i),
1135 rtex->surface.u.legacy.stencil_level[i].nblk_x,
1136 rtex->surface.u.legacy.stencil_level[i].nblk_y,
1137 rtex->surface.u.legacy.stencil_level[i].mode,
1138 rtex->surface.u.legacy.stencil_tiling_index[i]);
1139 }
1140 }
1141 }
1142
1143 /* Common processing for r600_texture_create and r600_texture_from_handle */
1144 static struct r600_texture *
1145 si_texture_create_object(struct pipe_screen *screen,
1146 const struct pipe_resource *base,
1147 unsigned num_color_samples,
1148 struct pb_buffer *buf,
1149 struct radeon_surf *surface)
1150 {
1151 struct r600_texture *rtex;
1152 struct r600_resource *resource;
1153 struct si_screen *sscreen = (struct si_screen*)screen;
1154
1155 rtex = CALLOC_STRUCT(r600_texture);
1156 if (!rtex)
1157 return NULL;
1158
1159 resource = &rtex->buffer;
1160 resource->b.b = *base;
1161 resource->b.b.next = NULL;
1162 resource->b.vtbl = &si_texture_vtbl;
1163 pipe_reference_init(&resource->b.b.reference, 1);
1164 resource->b.b.screen = screen;
1165
1166 /* don't include stencil-only formats which we don't support for rendering */
1167 rtex->is_depth = util_format_has_depth(util_format_description(rtex->buffer.b.b.format));
1168
1169 rtex->surface = *surface;
1170 rtex->size = rtex->surface.surf_size;
1171 rtex->num_color_samples = num_color_samples;
1172
1173 rtex->tc_compatible_htile = rtex->surface.htile_size != 0 &&
1174 (rtex->surface.flags &
1175 RADEON_SURF_TC_COMPATIBLE_HTILE);
1176
1177 /* TC-compatible HTILE:
1178 * - VI only supports Z32_FLOAT.
1179 * - GFX9 only supports Z32_FLOAT and Z16_UNORM. */
1180 if (rtex->tc_compatible_htile) {
1181 if (sscreen->info.chip_class >= GFX9 &&
1182 base->format == PIPE_FORMAT_Z16_UNORM)
1183 rtex->db_render_format = base->format;
1184 else {
1185 rtex->db_render_format = PIPE_FORMAT_Z32_FLOAT;
1186 rtex->upgraded_depth = base->format != PIPE_FORMAT_Z32_FLOAT &&
1187 base->format != PIPE_FORMAT_Z32_FLOAT_S8X24_UINT;
1188 }
1189 } else {
1190 rtex->db_render_format = base->format;
1191 }
1192
1193 /* Applies to GCN. */
1194 rtex->last_msaa_resolve_target_micro_mode = rtex->surface.micro_tile_mode;
1195
1196 /* Disable separate DCC at the beginning. DRI2 doesn't reuse buffers
1197 * between frames, so the only thing that can enable separate DCC
1198 * with DRI2 is multiple slow clears within a frame.
1199 */
1200 rtex->ps_draw_ratio = 0;
1201
1202 if (rtex->is_depth) {
1203 if (sscreen->info.chip_class >= GFX9) {
1204 rtex->can_sample_z = true;
1205 rtex->can_sample_s = true;
1206 } else {
1207 rtex->can_sample_z = !rtex->surface.u.legacy.depth_adjusted;
1208 rtex->can_sample_s = !rtex->surface.u.legacy.stencil_adjusted;
1209 }
1210
1211 if (!(base->flags & (SI_RESOURCE_FLAG_TRANSFER |
1212 SI_RESOURCE_FLAG_FLUSHED_DEPTH))) {
1213 rtex->db_compatible = true;
1214
1215 if (!(sscreen->debug_flags & DBG(NO_HYPERZ)))
1216 si_texture_allocate_htile(sscreen, rtex);
1217 }
1218 } else {
1219 if (base->nr_samples > 1 &&
1220 !buf &&
1221 !(sscreen->debug_flags & DBG(NO_FMASK))) {
1222 /* Allocate FMASK. */
1223 rtex->fmask_offset = align64(rtex->size,
1224 rtex->surface.fmask_alignment);
1225 rtex->size = rtex->fmask_offset + rtex->surface.fmask_size;
1226
1227 si_texture_allocate_cmask(sscreen, rtex);
1228 rtex->cmask_buffer = &rtex->buffer;
1229
1230 if (!rtex->surface.fmask_size || !rtex->cmask.size) {
1231 FREE(rtex);
1232 return NULL;
1233 }
1234 }
1235
1236 /* Shared textures must always set up DCC here.
1237 * If it's not present, it will be disabled by
1238 * apply_opaque_metadata later.
1239 */
1240 if (rtex->surface.dcc_size &&
1241 (buf || !(sscreen->debug_flags & DBG(NO_DCC))) &&
1242 !(rtex->surface.flags & RADEON_SURF_SCANOUT)) {
1243 /* Reserve space for the DCC buffer. */
1244 rtex->dcc_offset = align64(rtex->size, rtex->surface.dcc_alignment);
1245 rtex->size = rtex->dcc_offset + rtex->surface.dcc_size;
1246 }
1247 }
1248
1249 /* Now create the backing buffer. */
1250 if (!buf) {
1251 si_init_resource_fields(sscreen, resource, rtex->size,
1252 rtex->surface.surf_alignment);
1253
1254 if (!si_alloc_resource(sscreen, resource)) {
1255 FREE(rtex);
1256 return NULL;
1257 }
1258 } else {
1259 resource->buf = buf;
1260 resource->gpu_address = sscreen->ws->buffer_get_virtual_address(resource->buf);
1261 resource->bo_size = buf->size;
1262 resource->bo_alignment = buf->alignment;
1263 resource->domains = sscreen->ws->buffer_get_initial_domain(resource->buf);
1264 if (resource->domains & RADEON_DOMAIN_VRAM)
1265 resource->vram_usage = buf->size;
1266 else if (resource->domains & RADEON_DOMAIN_GTT)
1267 resource->gart_usage = buf->size;
1268 }
1269
1270 if (rtex->cmask.size) {
1271 /* Initialize the cmask to 0xCC (= compressed state). */
1272 si_screen_clear_buffer(sscreen, &rtex->cmask_buffer->b.b,
1273 rtex->cmask.offset, rtex->cmask.size,
1274 0xCCCCCCCC);
1275 }
1276 if (rtex->htile_offset) {
1277 uint32_t clear_value = 0;
1278
1279 if (sscreen->info.chip_class >= GFX9 || rtex->tc_compatible_htile)
1280 clear_value = 0x0000030F;
1281
1282 si_screen_clear_buffer(sscreen, &rtex->buffer.b.b,
1283 rtex->htile_offset,
1284 rtex->surface.htile_size,
1285 clear_value);
1286 }
1287
1288 /* Initialize DCC only if the texture is not being imported. */
1289 if (!buf && rtex->dcc_offset) {
1290 si_screen_clear_buffer(sscreen, &rtex->buffer.b.b,
1291 rtex->dcc_offset,
1292 rtex->surface.dcc_size,
1293 0xFFFFFFFF);
1294 }
1295
1296 /* Initialize the CMASK base register value. */
1297 rtex->cmask.base_address_reg =
1298 (rtex->buffer.gpu_address + rtex->cmask.offset) >> 8;
1299
1300 if (sscreen->debug_flags & DBG(VM)) {
1301 fprintf(stderr, "VM start=0x%"PRIX64" end=0x%"PRIX64" | Texture %ix%ix%i, %i levels, %i samples, %s\n",
1302 rtex->buffer.gpu_address,
1303 rtex->buffer.gpu_address + rtex->buffer.buf->size,
1304 base->width0, base->height0, util_num_layers(base, 0), base->last_level+1,
1305 base->nr_samples ? base->nr_samples : 1, util_format_short_name(base->format));
1306 }
1307
1308 if (sscreen->debug_flags & DBG(TEX)) {
1309 puts("Texture:");
1310 struct u_log_context log;
1311 u_log_context_init(&log);
1312 si_print_texture_info(sscreen, rtex, &log);
1313 u_log_new_page_print(&log, stdout);
1314 fflush(stdout);
1315 u_log_context_destroy(&log);
1316 }
1317
1318 return rtex;
1319 }
1320
1321 static enum radeon_surf_mode
1322 si_choose_tiling(struct si_screen *sscreen,
1323 const struct pipe_resource *templ, bool tc_compatible_htile)
1324 {
1325 const struct util_format_description *desc = util_format_description(templ->format);
1326 bool force_tiling = templ->flags & SI_RESOURCE_FLAG_FORCE_TILING;
1327 bool is_depth_stencil = util_format_is_depth_or_stencil(templ->format) &&
1328 !(templ->flags & SI_RESOURCE_FLAG_FLUSHED_DEPTH);
1329
1330 /* MSAA resources must be 2D tiled. */
1331 if (templ->nr_samples > 1)
1332 return RADEON_SURF_MODE_2D;
1333
1334 /* Transfer resources should be linear. */
1335 if (templ->flags & SI_RESOURCE_FLAG_TRANSFER)
1336 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1337
1338 /* Avoid Z/S decompress blits by forcing TC-compatible HTILE on VI,
1339 * which requires 2D tiling.
1340 */
1341 if (sscreen->info.chip_class == VI && tc_compatible_htile)
1342 return RADEON_SURF_MODE_2D;
1343
1344 /* Handle common candidates for the linear mode.
1345 * Compressed textures and DB surfaces must always be tiled.
1346 */
1347 if (!force_tiling &&
1348 !is_depth_stencil &&
1349 !util_format_is_compressed(templ->format)) {
1350 if (sscreen->debug_flags & DBG(NO_TILING))
1351 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1352
1353 /* Tiling doesn't work with the 422 (SUBSAMPLED) formats. */
1354 if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED)
1355 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1356
1357 /* Cursors are linear on SI.
1358 * (XXX double-check, maybe also use RADEON_SURF_SCANOUT) */
1359 if (templ->bind & PIPE_BIND_CURSOR)
1360 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1361
1362 if (templ->bind & PIPE_BIND_LINEAR)
1363 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1364
1365 /* Textures with a very small height are recommended to be linear. */
1366 if (templ->target == PIPE_TEXTURE_1D ||
1367 templ->target == PIPE_TEXTURE_1D_ARRAY ||
1368 /* Only very thin and long 2D textures should benefit from
1369 * linear_aligned. */
1370 (templ->width0 > 8 && templ->height0 <= 2))
1371 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1372
1373 /* Textures likely to be mapped often. */
1374 if (templ->usage == PIPE_USAGE_STAGING ||
1375 templ->usage == PIPE_USAGE_STREAM)
1376 return RADEON_SURF_MODE_LINEAR_ALIGNED;
1377 }
1378
1379 /* Make small textures 1D tiled. */
1380 if (templ->width0 <= 16 || templ->height0 <= 16 ||
1381 (sscreen->debug_flags & DBG(NO_2D_TILING)))
1382 return RADEON_SURF_MODE_1D;
1383
1384 /* The allocator will switch to 1D if needed. */
1385 return RADEON_SURF_MODE_2D;
1386 }
1387
1388 static unsigned si_get_num_color_samples(struct si_screen *sscreen,
1389 const struct pipe_resource *templ,
1390 bool imported)
1391 {
1392 if (!imported && templ->nr_samples >= 2 &&
1393 sscreen->eqaa_force_color_samples)
1394 return sscreen->eqaa_force_color_samples;
1395
1396 return CLAMP(templ->nr_samples, 1, 8);
1397 }
1398
1399 struct pipe_resource *si_texture_create(struct pipe_screen *screen,
1400 const struct pipe_resource *templ)
1401 {
1402 struct si_screen *sscreen = (struct si_screen*)screen;
1403 bool is_zs = util_format_is_depth_or_stencil(templ->format);
1404
1405 if (templ->nr_samples >= 2) {
1406 /* This is hackish (overwriting the const pipe_resource template),
1407 * but should be harmless and state trackers can also see
1408 * the overriden number of samples in the created pipe_resource.
1409 */
1410 if (is_zs && sscreen->eqaa_force_z_samples) {
1411 ((struct pipe_resource*)templ)->nr_samples =
1412 sscreen->eqaa_force_z_samples;
1413 } else if (!is_zs && sscreen->eqaa_force_color_samples) {
1414 ((struct pipe_resource*)templ)->nr_samples =
1415 sscreen->eqaa_force_coverage_samples;
1416 }
1417 }
1418
1419 struct radeon_surf surface = {0};
1420 bool is_flushed_depth = templ->flags & SI_RESOURCE_FLAG_FLUSHED_DEPTH;
1421 bool tc_compatible_htile =
1422 sscreen->info.chip_class >= VI &&
1423 /* There are issues with TC-compatible HTILE on Tonga (and
1424 * Iceland is the same design), and documented bug workarounds
1425 * don't help. For example, this fails:
1426 * piglit/bin/tex-miplevel-selection 'texture()' 2DShadow -auto
1427 */
1428 sscreen->info.family != CHIP_TONGA &&
1429 sscreen->info.family != CHIP_ICELAND &&
1430 (templ->flags & PIPE_RESOURCE_FLAG_TEXTURING_MORE_LIKELY) &&
1431 !(sscreen->debug_flags & DBG(NO_HYPERZ)) &&
1432 !is_flushed_depth &&
1433 templ->nr_samples <= 1 && /* TC-compat HTILE is less efficient with MSAA */
1434 is_zs;
1435 unsigned num_color_samples = si_get_num_color_samples(sscreen, templ, false);
1436 int r;
1437
1438 r = si_init_surface(sscreen, &surface, templ, num_color_samples,
1439 si_choose_tiling(sscreen, templ, tc_compatible_htile),
1440 0, 0, false, false, is_flushed_depth,
1441 tc_compatible_htile);
1442 if (r) {
1443 return NULL;
1444 }
1445
1446 return (struct pipe_resource *)
1447 si_texture_create_object(screen, templ, num_color_samples,
1448 NULL, &surface);
1449 }
1450
1451 static struct pipe_resource *si_texture_from_handle(struct pipe_screen *screen,
1452 const struct pipe_resource *templ,
1453 struct winsys_handle *whandle,
1454 unsigned usage)
1455 {
1456 struct si_screen *sscreen = (struct si_screen*)screen;
1457 struct pb_buffer *buf = NULL;
1458 unsigned stride = 0, offset = 0;
1459 enum radeon_surf_mode array_mode;
1460 struct radeon_surf surface = {};
1461 int r;
1462 struct radeon_bo_metadata metadata = {};
1463 struct r600_texture *rtex;
1464 bool is_scanout;
1465
1466 /* Support only 2D textures without mipmaps */
1467 if ((templ->target != PIPE_TEXTURE_2D && templ->target != PIPE_TEXTURE_RECT) ||
1468 templ->depth0 != 1 || templ->last_level != 0)
1469 return NULL;
1470
1471 buf = sscreen->ws->buffer_from_handle(sscreen->ws, whandle, &stride, &offset);
1472 if (!buf)
1473 return NULL;
1474
1475 sscreen->ws->buffer_get_metadata(buf, &metadata);
1476 si_surface_import_metadata(sscreen, &surface, &metadata,
1477 &array_mode, &is_scanout);
1478
1479 unsigned num_color_samples = si_get_num_color_samples(sscreen, templ, true);
1480
1481 r = si_init_surface(sscreen, &surface, templ, num_color_samples,
1482 array_mode, stride, offset, true, is_scanout,
1483 false, false);
1484 if (r) {
1485 return NULL;
1486 }
1487
1488 rtex = si_texture_create_object(screen, templ, num_color_samples,
1489 buf, &surface);
1490 if (!rtex)
1491 return NULL;
1492
1493 rtex->buffer.b.is_shared = true;
1494 rtex->buffer.external_usage = usage;
1495
1496 si_apply_opaque_metadata(sscreen, rtex, &metadata);
1497
1498 assert(rtex->surface.tile_swizzle == 0);
1499 return &rtex->buffer.b.b;
1500 }
1501
1502 bool si_init_flushed_depth_texture(struct pipe_context *ctx,
1503 struct pipe_resource *texture,
1504 struct r600_texture **staging)
1505 {
1506 struct r600_texture *rtex = (struct r600_texture*)texture;
1507 struct pipe_resource resource;
1508 struct r600_texture **flushed_depth_texture = staging ?
1509 staging : &rtex->flushed_depth_texture;
1510 enum pipe_format pipe_format = texture->format;
1511
1512 if (!staging) {
1513 if (rtex->flushed_depth_texture)
1514 return true; /* it's ready */
1515
1516 if (!rtex->can_sample_z && rtex->can_sample_s) {
1517 switch (pipe_format) {
1518 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
1519 /* Save memory by not allocating the S plane. */
1520 pipe_format = PIPE_FORMAT_Z32_FLOAT;
1521 break;
1522 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
1523 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
1524 /* Save memory bandwidth by not copying the
1525 * stencil part during flush.
1526 *
1527 * This potentially increases memory bandwidth
1528 * if an application uses both Z and S texturing
1529 * simultaneously (a flushed Z24S8 texture
1530 * would be stored compactly), but how often
1531 * does that really happen?
1532 */
1533 pipe_format = PIPE_FORMAT_Z24X8_UNORM;
1534 break;
1535 default:;
1536 }
1537 } else if (!rtex->can_sample_s && rtex->can_sample_z) {
1538 assert(util_format_has_stencil(util_format_description(pipe_format)));
1539
1540 /* DB->CB copies to an 8bpp surface don't work. */
1541 pipe_format = PIPE_FORMAT_X24S8_UINT;
1542 }
1543 }
1544
1545 memset(&resource, 0, sizeof(resource));
1546 resource.target = texture->target;
1547 resource.format = pipe_format;
1548 resource.width0 = texture->width0;
1549 resource.height0 = texture->height0;
1550 resource.depth0 = texture->depth0;
1551 resource.array_size = texture->array_size;
1552 resource.last_level = texture->last_level;
1553 resource.nr_samples = texture->nr_samples;
1554 resource.usage = staging ? PIPE_USAGE_STAGING : PIPE_USAGE_DEFAULT;
1555 resource.bind = texture->bind & ~PIPE_BIND_DEPTH_STENCIL;
1556 resource.flags = texture->flags | SI_RESOURCE_FLAG_FLUSHED_DEPTH;
1557
1558 if (staging)
1559 resource.flags |= SI_RESOURCE_FLAG_TRANSFER;
1560
1561 *flushed_depth_texture = (struct r600_texture *)ctx->screen->resource_create(ctx->screen, &resource);
1562 if (*flushed_depth_texture == NULL) {
1563 PRINT_ERR("failed to create temporary texture to hold flushed depth\n");
1564 return false;
1565 }
1566 return true;
1567 }
1568
1569 /**
1570 * Initialize the pipe_resource descriptor to be of the same size as the box,
1571 * which is supposed to hold a subregion of the texture "orig" at the given
1572 * mipmap level.
1573 */
1574 static void si_init_temp_resource_from_box(struct pipe_resource *res,
1575 struct pipe_resource *orig,
1576 const struct pipe_box *box,
1577 unsigned level, unsigned flags)
1578 {
1579 memset(res, 0, sizeof(*res));
1580 res->format = orig->format;
1581 res->width0 = box->width;
1582 res->height0 = box->height;
1583 res->depth0 = 1;
1584 res->array_size = 1;
1585 res->usage = flags & SI_RESOURCE_FLAG_TRANSFER ? PIPE_USAGE_STAGING : PIPE_USAGE_DEFAULT;
1586 res->flags = flags;
1587
1588 /* We must set the correct texture target and dimensions for a 3D box. */
1589 if (box->depth > 1 && util_max_layer(orig, level) > 0) {
1590 res->target = PIPE_TEXTURE_2D_ARRAY;
1591 res->array_size = box->depth;
1592 } else {
1593 res->target = PIPE_TEXTURE_2D;
1594 }
1595 }
1596
1597 static bool si_can_invalidate_texture(struct si_screen *sscreen,
1598 struct r600_texture *rtex,
1599 unsigned transfer_usage,
1600 const struct pipe_box *box)
1601 {
1602 return !rtex->buffer.b.is_shared &&
1603 !(transfer_usage & PIPE_TRANSFER_READ) &&
1604 rtex->buffer.b.b.last_level == 0 &&
1605 util_texrange_covers_whole_level(&rtex->buffer.b.b, 0,
1606 box->x, box->y, box->z,
1607 box->width, box->height,
1608 box->depth);
1609 }
1610
1611 static void si_texture_invalidate_storage(struct si_context *sctx,
1612 struct r600_texture *rtex)
1613 {
1614 struct si_screen *sscreen = sctx->screen;
1615
1616 /* There is no point in discarding depth and tiled buffers. */
1617 assert(!rtex->is_depth);
1618 assert(rtex->surface.is_linear);
1619
1620 /* Reallocate the buffer in the same pipe_resource. */
1621 si_alloc_resource(sscreen, &rtex->buffer);
1622
1623 /* Initialize the CMASK base address (needed even without CMASK). */
1624 rtex->cmask.base_address_reg =
1625 (rtex->buffer.gpu_address + rtex->cmask.offset) >> 8;
1626
1627 p_atomic_inc(&sscreen->dirty_tex_counter);
1628
1629 sctx->num_alloc_tex_transfer_bytes += rtex->size;
1630 }
1631
1632 static void *si_texture_transfer_map(struct pipe_context *ctx,
1633 struct pipe_resource *texture,
1634 unsigned level,
1635 unsigned usage,
1636 const struct pipe_box *box,
1637 struct pipe_transfer **ptransfer)
1638 {
1639 struct si_context *sctx = (struct si_context*)ctx;
1640 struct r600_texture *rtex = (struct r600_texture*)texture;
1641 struct r600_transfer *trans;
1642 struct r600_resource *buf;
1643 unsigned offset = 0;
1644 char *map;
1645 bool use_staging_texture = false;
1646
1647 assert(!(texture->flags & SI_RESOURCE_FLAG_TRANSFER));
1648 assert(box->width && box->height && box->depth);
1649
1650 /* Depth textures use staging unconditionally. */
1651 if (!rtex->is_depth) {
1652 /* Degrade the tile mode if we get too many transfers on APUs.
1653 * On dGPUs, the staging texture is always faster.
1654 * Only count uploads that are at least 4x4 pixels large.
1655 */
1656 if (!sctx->screen->info.has_dedicated_vram &&
1657 level == 0 &&
1658 box->width >= 4 && box->height >= 4 &&
1659 p_atomic_inc_return(&rtex->num_level0_transfers) == 10) {
1660 bool can_invalidate =
1661 si_can_invalidate_texture(sctx->screen, rtex,
1662 usage, box);
1663
1664 si_reallocate_texture_inplace(sctx, rtex,
1665 PIPE_BIND_LINEAR,
1666 can_invalidate);
1667 }
1668
1669 /* Tiled textures need to be converted into a linear texture for CPU
1670 * access. The staging texture is always linear and is placed in GART.
1671 *
1672 * Reading from VRAM or GTT WC is slow, always use the staging
1673 * texture in this case.
1674 *
1675 * Use the staging texture for uploads if the underlying BO
1676 * is busy.
1677 */
1678 if (!rtex->surface.is_linear)
1679 use_staging_texture = true;
1680 else if (usage & PIPE_TRANSFER_READ)
1681 use_staging_texture =
1682 rtex->buffer.domains & RADEON_DOMAIN_VRAM ||
1683 rtex->buffer.flags & RADEON_FLAG_GTT_WC;
1684 /* Write & linear only: */
1685 else if (si_rings_is_buffer_referenced(sctx, rtex->buffer.buf,
1686 RADEON_USAGE_READWRITE) ||
1687 !sctx->ws->buffer_wait(rtex->buffer.buf, 0,
1688 RADEON_USAGE_READWRITE)) {
1689 /* It's busy. */
1690 if (si_can_invalidate_texture(sctx->screen, rtex,
1691 usage, box))
1692 si_texture_invalidate_storage(sctx, rtex);
1693 else
1694 use_staging_texture = true;
1695 }
1696 }
1697
1698 trans = CALLOC_STRUCT(r600_transfer);
1699 if (!trans)
1700 return NULL;
1701 pipe_resource_reference(&trans->b.b.resource, texture);
1702 trans->b.b.level = level;
1703 trans->b.b.usage = usage;
1704 trans->b.b.box = *box;
1705
1706 if (rtex->is_depth) {
1707 struct r600_texture *staging_depth;
1708
1709 if (rtex->buffer.b.b.nr_samples > 1) {
1710 /* MSAA depth buffers need to be converted to single sample buffers.
1711 *
1712 * Mapping MSAA depth buffers can occur if ReadPixels is called
1713 * with a multisample GLX visual.
1714 *
1715 * First downsample the depth buffer to a temporary texture,
1716 * then decompress the temporary one to staging.
1717 *
1718 * Only the region being mapped is transfered.
1719 */
1720 struct pipe_resource resource;
1721
1722 si_init_temp_resource_from_box(&resource, texture, box, level, 0);
1723
1724 if (!si_init_flushed_depth_texture(ctx, &resource, &staging_depth)) {
1725 PRINT_ERR("failed to create temporary texture to hold untiled copy\n");
1726 goto fail_trans;
1727 }
1728
1729 if (usage & PIPE_TRANSFER_READ) {
1730 struct pipe_resource *temp = ctx->screen->resource_create(ctx->screen, &resource);
1731 if (!temp) {
1732 PRINT_ERR("failed to create a temporary depth texture\n");
1733 goto fail_trans;
1734 }
1735
1736 si_copy_region_with_blit(ctx, temp, 0, 0, 0, 0, texture, level, box);
1737 si_blit_decompress_depth(ctx, (struct r600_texture*)temp, staging_depth,
1738 0, 0, 0, box->depth, 0, 0);
1739 pipe_resource_reference(&temp, NULL);
1740 }
1741
1742 /* Just get the strides. */
1743 si_texture_get_offset(sctx->screen, staging_depth, level, NULL,
1744 &trans->b.b.stride,
1745 &trans->b.b.layer_stride);
1746 } else {
1747 /* XXX: only readback the rectangle which is being mapped? */
1748 /* XXX: when discard is true, no need to read back from depth texture */
1749 if (!si_init_flushed_depth_texture(ctx, texture, &staging_depth)) {
1750 PRINT_ERR("failed to create temporary texture to hold untiled copy\n");
1751 goto fail_trans;
1752 }
1753
1754 si_blit_decompress_depth(ctx, rtex, staging_depth,
1755 level, level,
1756 box->z, box->z + box->depth - 1,
1757 0, 0);
1758
1759 offset = si_texture_get_offset(sctx->screen, staging_depth,
1760 level, box,
1761 &trans->b.b.stride,
1762 &trans->b.b.layer_stride);
1763 }
1764
1765 trans->staging = &staging_depth->buffer;
1766 buf = trans->staging;
1767 } else if (use_staging_texture) {
1768 struct pipe_resource resource;
1769 struct r600_texture *staging;
1770
1771 si_init_temp_resource_from_box(&resource, texture, box, level,
1772 SI_RESOURCE_FLAG_TRANSFER);
1773 resource.usage = (usage & PIPE_TRANSFER_READ) ?
1774 PIPE_USAGE_STAGING : PIPE_USAGE_STREAM;
1775
1776 /* Create the temporary texture. */
1777 staging = (struct r600_texture*)ctx->screen->resource_create(ctx->screen, &resource);
1778 if (!staging) {
1779 PRINT_ERR("failed to create temporary texture to hold untiled copy\n");
1780 goto fail_trans;
1781 }
1782 trans->staging = &staging->buffer;
1783
1784 /* Just get the strides. */
1785 si_texture_get_offset(sctx->screen, staging, 0, NULL,
1786 &trans->b.b.stride,
1787 &trans->b.b.layer_stride);
1788
1789 if (usage & PIPE_TRANSFER_READ)
1790 si_copy_to_staging_texture(ctx, trans);
1791 else
1792 usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
1793
1794 buf = trans->staging;
1795 } else {
1796 /* the resource is mapped directly */
1797 offset = si_texture_get_offset(sctx->screen, rtex, level, box,
1798 &trans->b.b.stride,
1799 &trans->b.b.layer_stride);
1800 buf = &rtex->buffer;
1801 }
1802
1803 if (!(map = si_buffer_map_sync_with_rings(sctx, buf, usage)))
1804 goto fail_trans;
1805
1806 *ptransfer = &trans->b.b;
1807 return map + offset;
1808
1809 fail_trans:
1810 r600_resource_reference(&trans->staging, NULL);
1811 pipe_resource_reference(&trans->b.b.resource, NULL);
1812 FREE(trans);
1813 return NULL;
1814 }
1815
1816 static void si_texture_transfer_unmap(struct pipe_context *ctx,
1817 struct pipe_transfer* transfer)
1818 {
1819 struct si_context *sctx = (struct si_context*)ctx;
1820 struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
1821 struct pipe_resource *texture = transfer->resource;
1822 struct r600_texture *rtex = (struct r600_texture*)texture;
1823
1824 if ((transfer->usage & PIPE_TRANSFER_WRITE) && rtransfer->staging) {
1825 if (rtex->is_depth && rtex->buffer.b.b.nr_samples <= 1) {
1826 ctx->resource_copy_region(ctx, texture, transfer->level,
1827 transfer->box.x, transfer->box.y, transfer->box.z,
1828 &rtransfer->staging->b.b, transfer->level,
1829 &transfer->box);
1830 } else {
1831 si_copy_from_staging_texture(ctx, rtransfer);
1832 }
1833 }
1834
1835 if (rtransfer->staging) {
1836 sctx->num_alloc_tex_transfer_bytes += rtransfer->staging->buf->size;
1837 r600_resource_reference(&rtransfer->staging, NULL);
1838 }
1839
1840 /* Heuristic for {upload, draw, upload, draw, ..}:
1841 *
1842 * Flush the gfx IB if we've allocated too much texture storage.
1843 *
1844 * The idea is that we don't want to build IBs that use too much
1845 * memory and put pressure on the kernel memory manager and we also
1846 * want to make temporary and invalidated buffers go idle ASAP to
1847 * decrease the total memory usage or make them reusable. The memory
1848 * usage will be slightly higher than given here because of the buffer
1849 * cache in the winsys.
1850 *
1851 * The result is that the kernel memory manager is never a bottleneck.
1852 */
1853 if (sctx->num_alloc_tex_transfer_bytes > sctx->screen->info.gart_size / 4) {
1854 si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
1855 sctx->num_alloc_tex_transfer_bytes = 0;
1856 }
1857
1858 pipe_resource_reference(&transfer->resource, NULL);
1859 FREE(transfer);
1860 }
1861
1862 static const struct u_resource_vtbl si_texture_vtbl =
1863 {
1864 NULL, /* get_handle */
1865 si_texture_destroy, /* resource_destroy */
1866 si_texture_transfer_map, /* transfer_map */
1867 u_default_transfer_flush_region, /* transfer_flush_region */
1868 si_texture_transfer_unmap, /* transfer_unmap */
1869 };
1870
1871 /* Return if it's allowed to reinterpret one format as another with DCC enabled.
1872 */
1873 bool vi_dcc_formats_compatible(enum pipe_format format1,
1874 enum pipe_format format2)
1875 {
1876 const struct util_format_description *desc1, *desc2;
1877
1878 /* No format change - exit early. */
1879 if (format1 == format2)
1880 return true;
1881
1882 format1 = si_simplify_cb_format(format1);
1883 format2 = si_simplify_cb_format(format2);
1884
1885 /* Check again after format adjustments. */
1886 if (format1 == format2)
1887 return true;
1888
1889 desc1 = util_format_description(format1);
1890 desc2 = util_format_description(format2);
1891
1892 if (desc1->layout != UTIL_FORMAT_LAYOUT_PLAIN ||
1893 desc2->layout != UTIL_FORMAT_LAYOUT_PLAIN)
1894 return false;
1895
1896 /* Float and non-float are totally incompatible. */
1897 if ((desc1->channel[0].type == UTIL_FORMAT_TYPE_FLOAT) !=
1898 (desc2->channel[0].type == UTIL_FORMAT_TYPE_FLOAT))
1899 return false;
1900
1901 /* Channel sizes must match across DCC formats.
1902 * Comparing just the first 2 channels should be enough.
1903 */
1904 if (desc1->channel[0].size != desc2->channel[0].size ||
1905 (desc1->nr_channels >= 2 &&
1906 desc1->channel[1].size != desc2->channel[1].size))
1907 return false;
1908
1909 /* Everything below is not needed if the driver never uses the DCC
1910 * clear code with the value of 1.
1911 */
1912
1913 /* If the clear values are all 1 or all 0, this constraint can be
1914 * ignored. */
1915 if (vi_alpha_is_on_msb(format1) != vi_alpha_is_on_msb(format2))
1916 return false;
1917
1918 /* Channel types must match if the clear value of 1 is used.
1919 * The type categories are only float, signed, unsigned.
1920 * NORM and INT are always compatible.
1921 */
1922 if (desc1->channel[0].type != desc2->channel[0].type ||
1923 (desc1->nr_channels >= 2 &&
1924 desc1->channel[1].type != desc2->channel[1].type))
1925 return false;
1926
1927 return true;
1928 }
1929
1930 bool vi_dcc_formats_are_incompatible(struct pipe_resource *tex,
1931 unsigned level,
1932 enum pipe_format view_format)
1933 {
1934 struct r600_texture *rtex = (struct r600_texture *)tex;
1935
1936 return vi_dcc_enabled(rtex, level) &&
1937 !vi_dcc_formats_compatible(tex->format, view_format);
1938 }
1939
1940 /* This can't be merged with the above function, because
1941 * vi_dcc_formats_compatible should be called only when DCC is enabled. */
1942 void vi_disable_dcc_if_incompatible_format(struct si_context *sctx,
1943 struct pipe_resource *tex,
1944 unsigned level,
1945 enum pipe_format view_format)
1946 {
1947 struct r600_texture *rtex = (struct r600_texture *)tex;
1948
1949 if (vi_dcc_formats_are_incompatible(tex, level, view_format))
1950 if (!si_texture_disable_dcc(sctx, (struct r600_texture*)tex))
1951 si_decompress_dcc(sctx, rtex);
1952 }
1953
1954 struct pipe_surface *si_create_surface_custom(struct pipe_context *pipe,
1955 struct pipe_resource *texture,
1956 const struct pipe_surface *templ,
1957 unsigned width0, unsigned height0,
1958 unsigned width, unsigned height)
1959 {
1960 struct r600_surface *surface = CALLOC_STRUCT(r600_surface);
1961
1962 if (!surface)
1963 return NULL;
1964
1965 assert(templ->u.tex.first_layer <= util_max_layer(texture, templ->u.tex.level));
1966 assert(templ->u.tex.last_layer <= util_max_layer(texture, templ->u.tex.level));
1967
1968 pipe_reference_init(&surface->base.reference, 1);
1969 pipe_resource_reference(&surface->base.texture, texture);
1970 surface->base.context = pipe;
1971 surface->base.format = templ->format;
1972 surface->base.width = width;
1973 surface->base.height = height;
1974 surface->base.u = templ->u;
1975
1976 surface->width0 = width0;
1977 surface->height0 = height0;
1978
1979 surface->dcc_incompatible =
1980 texture->target != PIPE_BUFFER &&
1981 vi_dcc_formats_are_incompatible(texture, templ->u.tex.level,
1982 templ->format);
1983 return &surface->base;
1984 }
1985
1986 static struct pipe_surface *si_create_surface(struct pipe_context *pipe,
1987 struct pipe_resource *tex,
1988 const struct pipe_surface *templ)
1989 {
1990 unsigned level = templ->u.tex.level;
1991 unsigned width = u_minify(tex->width0, level);
1992 unsigned height = u_minify(tex->height0, level);
1993 unsigned width0 = tex->width0;
1994 unsigned height0 = tex->height0;
1995
1996 if (tex->target != PIPE_BUFFER && templ->format != tex->format) {
1997 const struct util_format_description *tex_desc
1998 = util_format_description(tex->format);
1999 const struct util_format_description *templ_desc
2000 = util_format_description(templ->format);
2001
2002 assert(tex_desc->block.bits == templ_desc->block.bits);
2003
2004 /* Adjust size of surface if and only if the block width or
2005 * height is changed. */
2006 if (tex_desc->block.width != templ_desc->block.width ||
2007 tex_desc->block.height != templ_desc->block.height) {
2008 unsigned nblks_x = util_format_get_nblocksx(tex->format, width);
2009 unsigned nblks_y = util_format_get_nblocksy(tex->format, height);
2010
2011 width = nblks_x * templ_desc->block.width;
2012 height = nblks_y * templ_desc->block.height;
2013
2014 width0 = util_format_get_nblocksx(tex->format, width0);
2015 height0 = util_format_get_nblocksy(tex->format, height0);
2016 }
2017 }
2018
2019 return si_create_surface_custom(pipe, tex, templ,
2020 width0, height0,
2021 width, height);
2022 }
2023
2024 static void si_surface_destroy(struct pipe_context *pipe,
2025 struct pipe_surface *surface)
2026 {
2027 pipe_resource_reference(&surface->texture, NULL);
2028 FREE(surface);
2029 }
2030
2031 unsigned si_translate_colorswap(enum pipe_format format, bool do_endian_swap)
2032 {
2033 const struct util_format_description *desc = util_format_description(format);
2034
2035 #define HAS_SWIZZLE(chan,swz) (desc->swizzle[chan] == PIPE_SWIZZLE_##swz)
2036
2037 if (format == PIPE_FORMAT_R11G11B10_FLOAT) /* isn't plain */
2038 return V_028C70_SWAP_STD;
2039
2040 if (desc->layout != UTIL_FORMAT_LAYOUT_PLAIN)
2041 return ~0U;
2042
2043 switch (desc->nr_channels) {
2044 case 1:
2045 if (HAS_SWIZZLE(0,X))
2046 return V_028C70_SWAP_STD; /* X___ */
2047 else if (HAS_SWIZZLE(3,X))
2048 return V_028C70_SWAP_ALT_REV; /* ___X */
2049 break;
2050 case 2:
2051 if ((HAS_SWIZZLE(0,X) && HAS_SWIZZLE(1,Y)) ||
2052 (HAS_SWIZZLE(0,X) && HAS_SWIZZLE(1,NONE)) ||
2053 (HAS_SWIZZLE(0,NONE) && HAS_SWIZZLE(1,Y)))
2054 return V_028C70_SWAP_STD; /* XY__ */
2055 else if ((HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(1,X)) ||
2056 (HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(1,NONE)) ||
2057 (HAS_SWIZZLE(0,NONE) && HAS_SWIZZLE(1,X)))
2058 /* YX__ */
2059 return (do_endian_swap ? V_028C70_SWAP_STD : V_028C70_SWAP_STD_REV);
2060 else if (HAS_SWIZZLE(0,X) && HAS_SWIZZLE(3,Y))
2061 return V_028C70_SWAP_ALT; /* X__Y */
2062 else if (HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(3,X))
2063 return V_028C70_SWAP_ALT_REV; /* Y__X */
2064 break;
2065 case 3:
2066 if (HAS_SWIZZLE(0,X))
2067 return (do_endian_swap ? V_028C70_SWAP_STD_REV : V_028C70_SWAP_STD);
2068 else if (HAS_SWIZZLE(0,Z))
2069 return V_028C70_SWAP_STD_REV; /* ZYX */
2070 break;
2071 case 4:
2072 /* check the middle channels, the 1st and 4th channel can be NONE */
2073 if (HAS_SWIZZLE(1,Y) && HAS_SWIZZLE(2,Z)) {
2074 return V_028C70_SWAP_STD; /* XYZW */
2075 } else if (HAS_SWIZZLE(1,Z) && HAS_SWIZZLE(2,Y)) {
2076 return V_028C70_SWAP_STD_REV; /* WZYX */
2077 } else if (HAS_SWIZZLE(1,Y) && HAS_SWIZZLE(2,X)) {
2078 return V_028C70_SWAP_ALT; /* ZYXW */
2079 } else if (HAS_SWIZZLE(1,Z) && HAS_SWIZZLE(2,W)) {
2080 /* YZWX */
2081 if (desc->is_array)
2082 return V_028C70_SWAP_ALT_REV;
2083 else
2084 return (do_endian_swap ? V_028C70_SWAP_ALT : V_028C70_SWAP_ALT_REV);
2085 }
2086 break;
2087 }
2088 return ~0U;
2089 }
2090
2091 /* PIPELINE_STAT-BASED DCC ENABLEMENT FOR DISPLAYABLE SURFACES */
2092
2093 static void vi_dcc_clean_up_context_slot(struct si_context *sctx,
2094 int slot)
2095 {
2096 int i;
2097
2098 if (sctx->dcc_stats[slot].query_active)
2099 vi_separate_dcc_stop_query(sctx,
2100 sctx->dcc_stats[slot].tex);
2101
2102 for (i = 0; i < ARRAY_SIZE(sctx->dcc_stats[slot].ps_stats); i++)
2103 if (sctx->dcc_stats[slot].ps_stats[i]) {
2104 sctx->b.destroy_query(&sctx->b,
2105 sctx->dcc_stats[slot].ps_stats[i]);
2106 sctx->dcc_stats[slot].ps_stats[i] = NULL;
2107 }
2108
2109 r600_texture_reference(&sctx->dcc_stats[slot].tex, NULL);
2110 }
2111
2112 /**
2113 * Return the per-context slot where DCC statistics queries for the texture live.
2114 */
2115 static unsigned vi_get_context_dcc_stats_index(struct si_context *sctx,
2116 struct r600_texture *tex)
2117 {
2118 int i, empty_slot = -1;
2119
2120 /* Remove zombie textures (textures kept alive by this array only). */
2121 for (i = 0; i < ARRAY_SIZE(sctx->dcc_stats); i++)
2122 if (sctx->dcc_stats[i].tex &&
2123 sctx->dcc_stats[i].tex->buffer.b.b.reference.count == 1)
2124 vi_dcc_clean_up_context_slot(sctx, i);
2125
2126 /* Find the texture. */
2127 for (i = 0; i < ARRAY_SIZE(sctx->dcc_stats); i++) {
2128 /* Return if found. */
2129 if (sctx->dcc_stats[i].tex == tex) {
2130 sctx->dcc_stats[i].last_use_timestamp = os_time_get();
2131 return i;
2132 }
2133
2134 /* Record the first seen empty slot. */
2135 if (empty_slot == -1 && !sctx->dcc_stats[i].tex)
2136 empty_slot = i;
2137 }
2138
2139 /* Not found. Remove the oldest member to make space in the array. */
2140 if (empty_slot == -1) {
2141 int oldest_slot = 0;
2142
2143 /* Find the oldest slot. */
2144 for (i = 1; i < ARRAY_SIZE(sctx->dcc_stats); i++)
2145 if (sctx->dcc_stats[oldest_slot].last_use_timestamp >
2146 sctx->dcc_stats[i].last_use_timestamp)
2147 oldest_slot = i;
2148
2149 /* Clean up the oldest slot. */
2150 vi_dcc_clean_up_context_slot(sctx, oldest_slot);
2151 empty_slot = oldest_slot;
2152 }
2153
2154 /* Add the texture to the new slot. */
2155 r600_texture_reference(&sctx->dcc_stats[empty_slot].tex, tex);
2156 sctx->dcc_stats[empty_slot].last_use_timestamp = os_time_get();
2157 return empty_slot;
2158 }
2159
2160 static struct pipe_query *
2161 vi_create_resuming_pipestats_query(struct si_context *sctx)
2162 {
2163 struct si_query_hw *query = (struct si_query_hw*)
2164 sctx->b.create_query(&sctx->b, PIPE_QUERY_PIPELINE_STATISTICS, 0);
2165
2166 query->flags |= SI_QUERY_HW_FLAG_BEGIN_RESUMES;
2167 return (struct pipe_query*)query;
2168 }
2169
2170 /**
2171 * Called when binding a color buffer.
2172 */
2173 void vi_separate_dcc_start_query(struct si_context *sctx,
2174 struct r600_texture *tex)
2175 {
2176 unsigned i = vi_get_context_dcc_stats_index(sctx, tex);
2177
2178 assert(!sctx->dcc_stats[i].query_active);
2179
2180 if (!sctx->dcc_stats[i].ps_stats[0])
2181 sctx->dcc_stats[i].ps_stats[0] = vi_create_resuming_pipestats_query(sctx);
2182
2183 /* begin or resume the query */
2184 sctx->b.begin_query(&sctx->b, sctx->dcc_stats[i].ps_stats[0]);
2185 sctx->dcc_stats[i].query_active = true;
2186 }
2187
2188 /**
2189 * Called when unbinding a color buffer.
2190 */
2191 void vi_separate_dcc_stop_query(struct si_context *sctx,
2192 struct r600_texture *tex)
2193 {
2194 unsigned i = vi_get_context_dcc_stats_index(sctx, tex);
2195
2196 assert(sctx->dcc_stats[i].query_active);
2197 assert(sctx->dcc_stats[i].ps_stats[0]);
2198
2199 /* pause or end the query */
2200 sctx->b.end_query(&sctx->b, sctx->dcc_stats[i].ps_stats[0]);
2201 sctx->dcc_stats[i].query_active = false;
2202 }
2203
2204 static bool vi_should_enable_separate_dcc(struct r600_texture *tex)
2205 {
2206 /* The minimum number of fullscreen draws per frame that is required
2207 * to enable DCC. */
2208 return tex->ps_draw_ratio + tex->num_slow_clears >= 5;
2209 }
2210
2211 /* Called by fast clear. */
2212 void vi_separate_dcc_try_enable(struct si_context *sctx,
2213 struct r600_texture *tex)
2214 {
2215 /* The intent is to use this with shared displayable back buffers,
2216 * but it's not strictly limited only to them.
2217 */
2218 if (!tex->buffer.b.is_shared ||
2219 !(tex->buffer.external_usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) ||
2220 tex->buffer.b.b.target != PIPE_TEXTURE_2D ||
2221 tex->buffer.b.b.last_level > 0 ||
2222 !tex->surface.dcc_size)
2223 return;
2224
2225 if (tex->dcc_offset)
2226 return; /* already enabled */
2227
2228 /* Enable the DCC stat gathering. */
2229 if (!tex->dcc_gather_statistics) {
2230 tex->dcc_gather_statistics = true;
2231 vi_separate_dcc_start_query(sctx, tex);
2232 }
2233
2234 if (!vi_should_enable_separate_dcc(tex))
2235 return; /* stats show that DCC decompression is too expensive */
2236
2237 assert(tex->surface.num_dcc_levels);
2238 assert(!tex->dcc_separate_buffer);
2239
2240 si_texture_discard_cmask(sctx->screen, tex);
2241
2242 /* Get a DCC buffer. */
2243 if (tex->last_dcc_separate_buffer) {
2244 assert(tex->dcc_gather_statistics);
2245 assert(!tex->dcc_separate_buffer);
2246 tex->dcc_separate_buffer = tex->last_dcc_separate_buffer;
2247 tex->last_dcc_separate_buffer = NULL;
2248 } else {
2249 tex->dcc_separate_buffer =
2250 si_aligned_buffer_create(sctx->b.screen,
2251 SI_RESOURCE_FLAG_UNMAPPABLE,
2252 PIPE_USAGE_DEFAULT,
2253 tex->surface.dcc_size,
2254 tex->surface.dcc_alignment);
2255 if (!tex->dcc_separate_buffer)
2256 return;
2257 }
2258
2259 /* dcc_offset is the absolute GPUVM address. */
2260 tex->dcc_offset = tex->dcc_separate_buffer->gpu_address;
2261
2262 /* no need to flag anything since this is called by fast clear that
2263 * flags framebuffer state
2264 */
2265 }
2266
2267 /**
2268 * Called by pipe_context::flush_resource, the place where DCC decompression
2269 * takes place.
2270 */
2271 void vi_separate_dcc_process_and_reset_stats(struct pipe_context *ctx,
2272 struct r600_texture *tex)
2273 {
2274 struct si_context *sctx = (struct si_context*)ctx;
2275 struct pipe_query *tmp;
2276 unsigned i = vi_get_context_dcc_stats_index(sctx, tex);
2277 bool query_active = sctx->dcc_stats[i].query_active;
2278 bool disable = false;
2279
2280 if (sctx->dcc_stats[i].ps_stats[2]) {
2281 union pipe_query_result result;
2282
2283 /* Read the results. */
2284 ctx->get_query_result(ctx, sctx->dcc_stats[i].ps_stats[2],
2285 true, &result);
2286 si_query_hw_reset_buffers(sctx,
2287 (struct si_query_hw*)
2288 sctx->dcc_stats[i].ps_stats[2]);
2289
2290 /* Compute the approximate number of fullscreen draws. */
2291 tex->ps_draw_ratio =
2292 result.pipeline_statistics.ps_invocations /
2293 (tex->buffer.b.b.width0 * tex->buffer.b.b.height0);
2294 sctx->last_tex_ps_draw_ratio = tex->ps_draw_ratio;
2295
2296 disable = tex->dcc_separate_buffer &&
2297 !vi_should_enable_separate_dcc(tex);
2298 }
2299
2300 tex->num_slow_clears = 0;
2301
2302 /* stop the statistics query for ps_stats[0] */
2303 if (query_active)
2304 vi_separate_dcc_stop_query(sctx, tex);
2305
2306 /* Move the queries in the queue by one. */
2307 tmp = sctx->dcc_stats[i].ps_stats[2];
2308 sctx->dcc_stats[i].ps_stats[2] = sctx->dcc_stats[i].ps_stats[1];
2309 sctx->dcc_stats[i].ps_stats[1] = sctx->dcc_stats[i].ps_stats[0];
2310 sctx->dcc_stats[i].ps_stats[0] = tmp;
2311
2312 /* create and start a new query as ps_stats[0] */
2313 if (query_active)
2314 vi_separate_dcc_start_query(sctx, tex);
2315
2316 if (disable) {
2317 assert(!tex->last_dcc_separate_buffer);
2318 tex->last_dcc_separate_buffer = tex->dcc_separate_buffer;
2319 tex->dcc_separate_buffer = NULL;
2320 tex->dcc_offset = 0;
2321 /* no need to flag anything since this is called after
2322 * decompression that re-sets framebuffer state
2323 */
2324 }
2325 }
2326
2327 static struct pipe_memory_object *
2328 si_memobj_from_handle(struct pipe_screen *screen,
2329 struct winsys_handle *whandle,
2330 bool dedicated)
2331 {
2332 struct si_screen *sscreen = (struct si_screen*)screen;
2333 struct r600_memory_object *memobj = CALLOC_STRUCT(r600_memory_object);
2334 struct pb_buffer *buf = NULL;
2335 uint32_t stride, offset;
2336
2337 if (!memobj)
2338 return NULL;
2339
2340 buf = sscreen->ws->buffer_from_handle(sscreen->ws, whandle,
2341 &stride, &offset);
2342 if (!buf) {
2343 free(memobj);
2344 return NULL;
2345 }
2346
2347 memobj->b.dedicated = dedicated;
2348 memobj->buf = buf;
2349 memobj->stride = stride;
2350 memobj->offset = offset;
2351
2352 return (struct pipe_memory_object *)memobj;
2353
2354 }
2355
2356 static void
2357 si_memobj_destroy(struct pipe_screen *screen,
2358 struct pipe_memory_object *_memobj)
2359 {
2360 struct r600_memory_object *memobj = (struct r600_memory_object *)_memobj;
2361
2362 pb_reference(&memobj->buf, NULL);
2363 free(memobj);
2364 }
2365
2366 static struct pipe_resource *
2367 si_texture_from_memobj(struct pipe_screen *screen,
2368 const struct pipe_resource *templ,
2369 struct pipe_memory_object *_memobj,
2370 uint64_t offset)
2371 {
2372 int r;
2373 struct si_screen *sscreen = (struct si_screen*)screen;
2374 struct r600_memory_object *memobj = (struct r600_memory_object *)_memobj;
2375 struct r600_texture *rtex;
2376 struct radeon_surf surface = {};
2377 struct radeon_bo_metadata metadata = {};
2378 enum radeon_surf_mode array_mode;
2379 bool is_scanout;
2380 struct pb_buffer *buf = NULL;
2381
2382 if (memobj->b.dedicated) {
2383 sscreen->ws->buffer_get_metadata(memobj->buf, &metadata);
2384 si_surface_import_metadata(sscreen, &surface, &metadata,
2385 &array_mode, &is_scanout);
2386 } else {
2387 /**
2388 * The bo metadata is unset for un-dedicated images. So we fall
2389 * back to linear. See answer to question 5 of the
2390 * VK_KHX_external_memory spec for some details.
2391 *
2392 * It is possible that this case isn't going to work if the
2393 * surface pitch isn't correctly aligned by default.
2394 *
2395 * In order to support it correctly we require multi-image
2396 * metadata to be syncrhonized between radv and radeonsi. The
2397 * semantics of associating multiple image metadata to a memory
2398 * object on the vulkan export side are not concretely defined
2399 * either.
2400 *
2401 * All the use cases we are aware of at the moment for memory
2402 * objects use dedicated allocations. So lets keep the initial
2403 * implementation simple.
2404 *
2405 * A possible alternative is to attempt to reconstruct the
2406 * tiling information when the TexParameter TEXTURE_TILING_EXT
2407 * is set.
2408 */
2409 array_mode = RADEON_SURF_MODE_LINEAR_ALIGNED;
2410 is_scanout = false;
2411 }
2412
2413 unsigned num_color_samples = si_get_num_color_samples(sscreen, templ, true);
2414
2415 r = si_init_surface(sscreen, &surface, templ, num_color_samples,
2416 array_mode, memobj->stride, offset, true,
2417 is_scanout, false, false);
2418 if (r)
2419 return NULL;
2420
2421 rtex = si_texture_create_object(screen, templ, num_color_samples,
2422 memobj->buf, &surface);
2423 if (!rtex)
2424 return NULL;
2425
2426 /* r600_texture_create_object doesn't increment refcount of
2427 * memobj->buf, so increment it here.
2428 */
2429 pb_reference(&buf, memobj->buf);
2430
2431 rtex->buffer.b.is_shared = true;
2432 rtex->buffer.external_usage = PIPE_HANDLE_USAGE_READ_WRITE;
2433
2434 si_apply_opaque_metadata(sscreen, rtex, &metadata);
2435
2436 return &rtex->buffer.b.b;
2437 }
2438
2439 static bool si_check_resource_capability(struct pipe_screen *screen,
2440 struct pipe_resource *resource,
2441 unsigned bind)
2442 {
2443 struct r600_texture *tex = (struct r600_texture*)resource;
2444
2445 /* Buffers only support the linear flag. */
2446 if (resource->target == PIPE_BUFFER)
2447 return (bind & ~PIPE_BIND_LINEAR) == 0;
2448
2449 if (bind & PIPE_BIND_LINEAR && !tex->surface.is_linear)
2450 return false;
2451
2452 if (bind & PIPE_BIND_SCANOUT && !tex->surface.is_displayable)
2453 return false;
2454
2455 /* TODO: PIPE_BIND_CURSOR - do we care? */
2456 return true;
2457 }
2458
2459 void si_init_screen_texture_functions(struct si_screen *sscreen)
2460 {
2461 sscreen->b.resource_from_handle = si_texture_from_handle;
2462 sscreen->b.resource_get_handle = si_texture_get_handle;
2463 sscreen->b.resource_from_memobj = si_texture_from_memobj;
2464 sscreen->b.memobj_create_from_handle = si_memobj_from_handle;
2465 sscreen->b.memobj_destroy = si_memobj_destroy;
2466 sscreen->b.check_resource_capability = si_check_resource_capability;
2467 }
2468
2469 void si_init_context_texture_functions(struct si_context *sctx)
2470 {
2471 sctx->b.create_surface = si_create_surface;
2472 sctx->b.surface_destroy = si_surface_destroy;
2473 }