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