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