radeonsi/gfx10: implement si_set_mutable_tex_desc_fields
[mesa.git] / src / gallium / drivers / radeonsi / si_descriptors.c
1 /*
2 * Copyright 2013 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /* Resource binding slots and sampler states (each described with 8 or
26 * 4 dwords) are stored in lists in memory which is accessed by shaders
27 * using scalar load instructions.
28 *
29 * This file is responsible for managing such lists. It keeps a copy of all
30 * descriptors in CPU memory and re-uploads a whole list if some slots have
31 * been changed.
32 *
33 * This code is also reponsible for updating shader pointers to those lists.
34 *
35 * Note that CP DMA can't be used for updating the lists, because a GPU hang
36 * could leave the list in a mid-IB state and the next IB would get wrong
37 * descriptors and the whole context would be unusable at that point.
38 * (Note: The register shadowing can't be used due to the same reason)
39 *
40 * Also, uploading descriptors to newly allocated memory doesn't require
41 * a KCACHE flush.
42 *
43 *
44 * Possible scenarios for one 16 dword image+sampler slot:
45 *
46 * | Image | w/ FMASK | Buffer | NULL
47 * [ 0: 3] Image[0:3] | Image[0:3] | Null[0:3] | Null[0:3]
48 * [ 4: 7] Image[4:7] | Image[4:7] | Buffer[0:3] | 0
49 * [ 8:11] Null[0:3] | Fmask[0:3] | Null[0:3] | Null[0:3]
50 * [12:15] Sampler[0:3] | Fmask[4:7] | Sampler[0:3] | Sampler[0:3]
51 *
52 * FMASK implies MSAA, therefore no sampler state.
53 * Sampler states are never unbound except when FMASK is bound.
54 */
55
56 #include "si_pipe.h"
57 #include "sid.h"
58
59 #include "util/hash_table.h"
60 #include "util/u_idalloc.h"
61 #include "util/u_format.h"
62 #include "util/u_memory.h"
63 #include "util/u_upload_mgr.h"
64
65
66 /* NULL image and buffer descriptor for textures (alpha = 1) and images
67 * (alpha = 0).
68 *
69 * For images, all fields must be zero except for the swizzle, which
70 * supports arbitrary combinations of 0s and 1s. The texture type must be
71 * any valid type (e.g. 1D). If the texture type isn't set, the hw hangs.
72 *
73 * For buffers, all fields must be zero. If they are not, the hw hangs.
74 *
75 * This is the only reason why the buffer descriptor must be in words [4:7].
76 */
77 static uint32_t null_texture_descriptor[8] = {
78 0,
79 0,
80 0,
81 S_008F1C_DST_SEL_W(V_008F1C_SQ_SEL_1) |
82 S_008F1C_TYPE(V_008F1C_SQ_RSRC_IMG_1D)
83 /* the rest must contain zeros, which is also used by the buffer
84 * descriptor */
85 };
86
87 static uint32_t null_image_descriptor[8] = {
88 0,
89 0,
90 0,
91 S_008F1C_TYPE(V_008F1C_SQ_RSRC_IMG_1D)
92 /* the rest must contain zeros, which is also used by the buffer
93 * descriptor */
94 };
95
96 static uint64_t si_desc_extract_buffer_address(const uint32_t *desc)
97 {
98 uint64_t va = desc[0] |
99 ((uint64_t)G_008F04_BASE_ADDRESS_HI(desc[1]) << 32);
100
101 /* Sign-extend the 48-bit address. */
102 va <<= 16;
103 va = (int64_t)va >> 16;
104 return va;
105 }
106
107 static void si_init_descriptor_list(uint32_t *desc_list,
108 unsigned element_dw_size,
109 unsigned num_elements,
110 const uint32_t *null_descriptor)
111 {
112 int i;
113
114 /* Initialize the array to NULL descriptors if the element size is 8. */
115 if (null_descriptor) {
116 assert(element_dw_size % 8 == 0);
117 for (i = 0; i < num_elements * element_dw_size / 8; i++)
118 memcpy(desc_list + i * 8, null_descriptor, 8 * 4);
119 }
120 }
121
122 static void si_init_descriptors(struct si_descriptors *desc,
123 short shader_userdata_rel_index,
124 unsigned element_dw_size,
125 unsigned num_elements)
126 {
127 desc->list = CALLOC(num_elements, element_dw_size * 4);
128 desc->element_dw_size = element_dw_size;
129 desc->num_elements = num_elements;
130 desc->shader_userdata_offset = shader_userdata_rel_index * 4;
131 desc->slot_index_to_bind_directly = -1;
132 }
133
134 static void si_release_descriptors(struct si_descriptors *desc)
135 {
136 si_resource_reference(&desc->buffer, NULL);
137 FREE(desc->list);
138 }
139
140 static bool si_upload_descriptors(struct si_context *sctx,
141 struct si_descriptors *desc)
142 {
143 unsigned slot_size = desc->element_dw_size * 4;
144 unsigned first_slot_offset = desc->first_active_slot * slot_size;
145 unsigned upload_size = desc->num_active_slots * slot_size;
146
147 /* Skip the upload if no shader is using the descriptors. dirty_mask
148 * will stay dirty and the descriptors will be uploaded when there is
149 * a shader using them.
150 */
151 if (!upload_size)
152 return true;
153
154 /* If there is just one active descriptor, bind it directly. */
155 if ((int)desc->first_active_slot == desc->slot_index_to_bind_directly &&
156 desc->num_active_slots == 1) {
157 uint32_t *descriptor = &desc->list[desc->slot_index_to_bind_directly *
158 desc->element_dw_size];
159
160 /* The buffer is already in the buffer list. */
161 si_resource_reference(&desc->buffer, NULL);
162 desc->gpu_list = NULL;
163 desc->gpu_address = si_desc_extract_buffer_address(descriptor);
164 si_mark_atom_dirty(sctx, &sctx->atoms.s.shader_pointers);
165 return true;
166 }
167
168 uint32_t *ptr;
169 unsigned buffer_offset;
170 u_upload_alloc(sctx->b.const_uploader, first_slot_offset, upload_size,
171 si_optimal_tcc_alignment(sctx, upload_size),
172 &buffer_offset, (struct pipe_resource**)&desc->buffer,
173 (void**)&ptr);
174 if (!desc->buffer) {
175 desc->gpu_address = 0;
176 return false; /* skip the draw call */
177 }
178
179 util_memcpy_cpu_to_le32(ptr, (char*)desc->list + first_slot_offset,
180 upload_size);
181 desc->gpu_list = ptr - first_slot_offset / 4;
182
183 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, desc->buffer,
184 RADEON_USAGE_READ, RADEON_PRIO_DESCRIPTORS);
185
186 /* The shader pointer should point to slot 0. */
187 buffer_offset -= first_slot_offset;
188 desc->gpu_address = desc->buffer->gpu_address + buffer_offset;
189
190 assert(desc->buffer->flags & RADEON_FLAG_32BIT);
191 assert((desc->buffer->gpu_address >> 32) == sctx->screen->info.address32_hi);
192 assert((desc->gpu_address >> 32) == sctx->screen->info.address32_hi);
193
194 si_mark_atom_dirty(sctx, &sctx->atoms.s.shader_pointers);
195 return true;
196 }
197
198 static void
199 si_descriptors_begin_new_cs(struct si_context *sctx, struct si_descriptors *desc)
200 {
201 if (!desc->buffer)
202 return;
203
204 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, desc->buffer,
205 RADEON_USAGE_READ, RADEON_PRIO_DESCRIPTORS);
206 }
207
208 /* SAMPLER VIEWS */
209
210 static inline enum radeon_bo_priority
211 si_get_sampler_view_priority(struct si_resource *res)
212 {
213 if (res->b.b.target == PIPE_BUFFER)
214 return RADEON_PRIO_SAMPLER_BUFFER;
215
216 if (res->b.b.nr_samples > 1)
217 return RADEON_PRIO_SAMPLER_TEXTURE_MSAA;
218
219 return RADEON_PRIO_SAMPLER_TEXTURE;
220 }
221
222 static struct si_descriptors *
223 si_sampler_and_image_descriptors(struct si_context *sctx, unsigned shader)
224 {
225 return &sctx->descriptors[si_sampler_and_image_descriptors_idx(shader)];
226 }
227
228 static void si_release_sampler_views(struct si_samplers *samplers)
229 {
230 int i;
231
232 for (i = 0; i < ARRAY_SIZE(samplers->views); i++) {
233 pipe_sampler_view_reference(&samplers->views[i], NULL);
234 }
235 }
236
237 static void si_sampler_view_add_buffer(struct si_context *sctx,
238 struct pipe_resource *resource,
239 enum radeon_bo_usage usage,
240 bool is_stencil_sampler,
241 bool check_mem)
242 {
243 struct si_texture *tex = (struct si_texture*)resource;
244 enum radeon_bo_priority priority;
245
246 if (!resource)
247 return;
248
249 /* Use the flushed depth texture if direct sampling is unsupported. */
250 if (resource->target != PIPE_BUFFER &&
251 tex->is_depth && !si_can_sample_zs(tex, is_stencil_sampler))
252 tex = tex->flushed_depth_texture;
253
254 priority = si_get_sampler_view_priority(&tex->buffer);
255 radeon_add_to_gfx_buffer_list_check_mem(sctx, &tex->buffer, usage, priority,
256 check_mem);
257
258 if (resource->target == PIPE_BUFFER)
259 return;
260
261 /* Add separate DCC. */
262 if (tex->dcc_separate_buffer) {
263 radeon_add_to_gfx_buffer_list_check_mem(sctx, tex->dcc_separate_buffer,
264 usage, RADEON_PRIO_SEPARATE_META, check_mem);
265 }
266 }
267
268 static void si_sampler_views_begin_new_cs(struct si_context *sctx,
269 struct si_samplers *samplers)
270 {
271 unsigned mask = samplers->enabled_mask;
272
273 /* Add buffers to the CS. */
274 while (mask) {
275 int i = u_bit_scan(&mask);
276 struct si_sampler_view *sview = (struct si_sampler_view *)samplers->views[i];
277
278 si_sampler_view_add_buffer(sctx, sview->base.texture,
279 RADEON_USAGE_READ,
280 sview->is_stencil_sampler, false);
281 }
282 }
283
284 /* Set buffer descriptor fields that can be changed by reallocations. */
285 static void si_set_buf_desc_address(struct si_resource *buf,
286 uint64_t offset, uint32_t *state)
287 {
288 uint64_t va = buf->gpu_address + offset;
289
290 state[0] = va;
291 state[1] &= C_008F04_BASE_ADDRESS_HI;
292 state[1] |= S_008F04_BASE_ADDRESS_HI(va >> 32);
293 }
294
295 /* Set texture descriptor fields that can be changed by reallocations.
296 *
297 * \param tex texture
298 * \param base_level_info information of the level of BASE_ADDRESS
299 * \param base_level the level of BASE_ADDRESS
300 * \param first_level pipe_sampler_view.u.tex.first_level
301 * \param block_width util_format_get_blockwidth()
302 * \param is_stencil select between separate Z & Stencil
303 * \param state descriptor to update
304 */
305 void si_set_mutable_tex_desc_fields(struct si_screen *sscreen,
306 struct si_texture *tex,
307 const struct legacy_surf_level *base_level_info,
308 unsigned base_level, unsigned first_level,
309 unsigned block_width, bool is_stencil,
310 uint32_t *state)
311 {
312 uint64_t va, meta_va = 0;
313
314 if (tex->is_depth && !si_can_sample_zs(tex, is_stencil)) {
315 tex = tex->flushed_depth_texture;
316 is_stencil = false;
317 }
318
319 va = tex->buffer.gpu_address;
320
321 if (sscreen->info.chip_class >= GFX9) {
322 /* Only stencil_offset needs to be added here. */
323 if (is_stencil)
324 va += tex->surface.u.gfx9.stencil_offset;
325 else
326 va += tex->surface.u.gfx9.surf_offset;
327 } else {
328 va += base_level_info->offset;
329 }
330
331 state[0] = va >> 8;
332 state[1] &= C_008F14_BASE_ADDRESS_HI;
333 state[1] |= S_008F14_BASE_ADDRESS_HI(va >> 40);
334
335 /* Only macrotiled modes can set tile swizzle.
336 * GFX9 doesn't use (legacy) base_level_info.
337 */
338 if (sscreen->info.chip_class >= GFX9 ||
339 base_level_info->mode == RADEON_SURF_MODE_2D)
340 state[0] |= tex->surface.tile_swizzle;
341
342 if (sscreen->info.chip_class >= GFX8) {
343 state[6] &= C_008F28_COMPRESSION_EN;
344
345 if (vi_dcc_enabled(tex, first_level)) {
346 meta_va = (!tex->dcc_separate_buffer ? tex->buffer.gpu_address : 0) +
347 tex->dcc_offset;
348
349 if (sscreen->info.chip_class == GFX8) {
350 meta_va += base_level_info->dcc_offset;
351 assert(base_level_info->mode == RADEON_SURF_MODE_2D);
352 }
353
354 meta_va |= (uint32_t)tex->surface.tile_swizzle << 8;
355 } else if (vi_tc_compat_htile_enabled(tex, first_level)) {
356 meta_va = tex->buffer.gpu_address + tex->htile_offset;
357 }
358
359 if (meta_va)
360 state[6] |= S_008F28_COMPRESSION_EN(1);
361 }
362
363 if (sscreen->info.chip_class >= GFX8 && sscreen->info.chip_class <= GFX9)
364 state[7] = meta_va >> 8;
365
366 if (sscreen->info.chip_class >= GFX10) {
367 state[3] &= C_00A00C_SW_MODE;
368
369 if (is_stencil) {
370 state[3] |= S_00A00C_SW_MODE(tex->surface.u.gfx9.stencil.swizzle_mode);
371 } else {
372 state[3] |= S_00A00C_SW_MODE(tex->surface.u.gfx9.surf.swizzle_mode);
373 }
374
375 state[6] &= C_00A018_META_DATA_ADDRESS_LO &
376 C_00A018_META_PIPE_ALIGNED;
377
378 if (meta_va) {
379 struct gfx9_surf_meta_flags meta;
380
381 if (tex->dcc_offset)
382 meta = tex->surface.u.gfx9.dcc;
383 else
384 meta = tex->surface.u.gfx9.htile;
385
386 state[6] |= S_00A018_META_PIPE_ALIGNED(meta.pipe_aligned) |
387 S_00A018_META_DATA_ADDRESS_LO(meta_va >> 8);
388 }
389
390 state[7] = meta_va >> 16;
391 } else if (sscreen->info.chip_class >= GFX9) {
392 state[3] &= C_008F1C_SW_MODE;
393 state[4] &= C_008F20_PITCH;
394
395 if (is_stencil) {
396 state[3] |= S_008F1C_SW_MODE(tex->surface.u.gfx9.stencil.swizzle_mode);
397 state[4] |= S_008F20_PITCH(tex->surface.u.gfx9.stencil.epitch);
398 } else {
399 state[3] |= S_008F1C_SW_MODE(tex->surface.u.gfx9.surf.swizzle_mode);
400 state[4] |= S_008F20_PITCH(tex->surface.u.gfx9.surf.epitch);
401 }
402
403 state[5] &= C_008F24_META_DATA_ADDRESS &
404 C_008F24_META_PIPE_ALIGNED &
405 C_008F24_META_RB_ALIGNED;
406 if (meta_va) {
407 struct gfx9_surf_meta_flags meta;
408
409 if (tex->dcc_offset)
410 meta = tex->surface.u.gfx9.dcc;
411 else
412 meta = tex->surface.u.gfx9.htile;
413
414 state[5] |= S_008F24_META_DATA_ADDRESS(meta_va >> 40) |
415 S_008F24_META_PIPE_ALIGNED(meta.pipe_aligned) |
416 S_008F24_META_RB_ALIGNED(meta.rb_aligned);
417 }
418 } else {
419 /* GFX6-GFX8 */
420 unsigned pitch = base_level_info->nblk_x * block_width;
421 unsigned index = si_tile_mode_index(tex, base_level, is_stencil);
422
423 state[3] &= C_008F1C_TILING_INDEX;
424 state[3] |= S_008F1C_TILING_INDEX(index);
425 state[4] &= C_008F20_PITCH;
426 state[4] |= S_008F20_PITCH(pitch - 1);
427 }
428 }
429
430 static void si_set_sampler_state_desc(struct si_sampler_state *sstate,
431 struct si_sampler_view *sview,
432 struct si_texture *tex,
433 uint32_t *desc)
434 {
435 if (sview && sview->is_integer)
436 memcpy(desc, sstate->integer_val, 4*4);
437 else if (tex && tex->upgraded_depth &&
438 (!sview || !sview->is_stencil_sampler))
439 memcpy(desc, sstate->upgraded_depth_val, 4*4);
440 else
441 memcpy(desc, sstate->val, 4*4);
442 }
443
444 static void si_set_sampler_view_desc(struct si_context *sctx,
445 struct si_sampler_view *sview,
446 struct si_sampler_state *sstate,
447 uint32_t *desc)
448 {
449 struct pipe_sampler_view *view = &sview->base;
450 struct si_texture *tex = (struct si_texture *)view->texture;
451 bool is_buffer = tex->buffer.b.b.target == PIPE_BUFFER;
452
453 if (unlikely(!is_buffer && sview->dcc_incompatible)) {
454 if (vi_dcc_enabled(tex, view->u.tex.first_level))
455 if (!si_texture_disable_dcc(sctx, tex))
456 si_decompress_dcc(sctx, tex);
457
458 sview->dcc_incompatible = false;
459 }
460
461 assert(tex); /* views with texture == NULL aren't supported */
462 memcpy(desc, sview->state, 8*4);
463
464 if (is_buffer) {
465 si_set_buf_desc_address(&tex->buffer,
466 sview->base.u.buf.offset,
467 desc + 4);
468 } else {
469 bool is_separate_stencil = tex->db_compatible &&
470 sview->is_stencil_sampler;
471
472 si_set_mutable_tex_desc_fields(sctx->screen, tex,
473 sview->base_level_info,
474 sview->base_level,
475 sview->base.u.tex.first_level,
476 sview->block_width,
477 is_separate_stencil,
478 desc);
479 }
480
481 if (!is_buffer && tex->surface.fmask_size) {
482 memcpy(desc + 8, sview->fmask_state, 8*4);
483 } else {
484 /* Disable FMASK and bind sampler state in [12:15]. */
485 memcpy(desc + 8, null_texture_descriptor, 4*4);
486
487 if (sstate)
488 si_set_sampler_state_desc(sstate, sview,
489 is_buffer ? NULL : tex,
490 desc + 12);
491 }
492 }
493
494 static bool color_needs_decompression(struct si_texture *tex)
495 {
496 return tex->surface.fmask_size ||
497 (tex->dirty_level_mask &&
498 (tex->cmask_buffer || tex->dcc_offset));
499 }
500
501 static bool depth_needs_decompression(struct si_texture *tex)
502 {
503 /* If the depth/stencil texture is TC-compatible, no decompression
504 * will be done. The decompression function will only flush DB caches
505 * to make it coherent with shaders. That's necessary because the driver
506 * doesn't flush DB caches in any other case.
507 */
508 return tex->db_compatible;
509 }
510
511 static void si_set_sampler_view(struct si_context *sctx,
512 unsigned shader,
513 unsigned slot, struct pipe_sampler_view *view,
514 bool disallow_early_out)
515 {
516 struct si_samplers *samplers = &sctx->samplers[shader];
517 struct si_sampler_view *sview = (struct si_sampler_view*)view;
518 struct si_descriptors *descs = si_sampler_and_image_descriptors(sctx, shader);
519 unsigned desc_slot = si_get_sampler_slot(slot);
520 uint32_t *desc = descs->list + desc_slot * 16;
521
522 if (samplers->views[slot] == view && !disallow_early_out)
523 return;
524
525 if (view) {
526 struct si_texture *tex = (struct si_texture *)view->texture;
527
528 si_set_sampler_view_desc(sctx, sview,
529 samplers->sampler_states[slot], desc);
530
531 if (tex->buffer.b.b.target == PIPE_BUFFER) {
532 tex->buffer.bind_history |= PIPE_BIND_SAMPLER_VIEW;
533 samplers->needs_depth_decompress_mask &= ~(1u << slot);
534 samplers->needs_color_decompress_mask &= ~(1u << slot);
535 } else {
536 if (depth_needs_decompression(tex)) {
537 samplers->needs_depth_decompress_mask |= 1u << slot;
538 } else {
539 samplers->needs_depth_decompress_mask &= ~(1u << slot);
540 }
541 if (color_needs_decompression(tex)) {
542 samplers->needs_color_decompress_mask |= 1u << slot;
543 } else {
544 samplers->needs_color_decompress_mask &= ~(1u << slot);
545 }
546
547 if (tex->dcc_offset &&
548 p_atomic_read(&tex->framebuffers_bound))
549 sctx->need_check_render_feedback = true;
550 }
551
552 pipe_sampler_view_reference(&samplers->views[slot], view);
553 samplers->enabled_mask |= 1u << slot;
554
555 /* Since this can flush, it must be done after enabled_mask is
556 * updated. */
557 si_sampler_view_add_buffer(sctx, view->texture,
558 RADEON_USAGE_READ,
559 sview->is_stencil_sampler, true);
560 } else {
561 pipe_sampler_view_reference(&samplers->views[slot], NULL);
562 memcpy(desc, null_texture_descriptor, 8*4);
563 /* Only clear the lower dwords of FMASK. */
564 memcpy(desc + 8, null_texture_descriptor, 4*4);
565 /* Re-set the sampler state if we are transitioning from FMASK. */
566 if (samplers->sampler_states[slot])
567 si_set_sampler_state_desc(samplers->sampler_states[slot], NULL, NULL,
568 desc + 12);
569
570 samplers->enabled_mask &= ~(1u << slot);
571 samplers->needs_depth_decompress_mask &= ~(1u << slot);
572 samplers->needs_color_decompress_mask &= ~(1u << slot);
573 }
574
575 sctx->descriptors_dirty |= 1u << si_sampler_and_image_descriptors_idx(shader);
576 }
577
578 static void si_update_shader_needs_decompress_mask(struct si_context *sctx,
579 unsigned shader)
580 {
581 struct si_samplers *samplers = &sctx->samplers[shader];
582 unsigned shader_bit = 1 << shader;
583
584 if (samplers->needs_depth_decompress_mask ||
585 samplers->needs_color_decompress_mask ||
586 sctx->images[shader].needs_color_decompress_mask)
587 sctx->shader_needs_decompress_mask |= shader_bit;
588 else
589 sctx->shader_needs_decompress_mask &= ~shader_bit;
590 }
591
592 static void si_set_sampler_views(struct pipe_context *ctx,
593 enum pipe_shader_type shader, unsigned start,
594 unsigned count,
595 struct pipe_sampler_view **views)
596 {
597 struct si_context *sctx = (struct si_context *)ctx;
598 int i;
599
600 if (!count || shader >= SI_NUM_SHADERS)
601 return;
602
603 if (views) {
604 for (i = 0; i < count; i++)
605 si_set_sampler_view(sctx, shader, start + i, views[i], false);
606 } else {
607 for (i = 0; i < count; i++)
608 si_set_sampler_view(sctx, shader, start + i, NULL, false);
609 }
610
611 si_update_shader_needs_decompress_mask(sctx, shader);
612 }
613
614 static void
615 si_samplers_update_needs_color_decompress_mask(struct si_samplers *samplers)
616 {
617 unsigned mask = samplers->enabled_mask;
618
619 while (mask) {
620 int i = u_bit_scan(&mask);
621 struct pipe_resource *res = samplers->views[i]->texture;
622
623 if (res && res->target != PIPE_BUFFER) {
624 struct si_texture *tex = (struct si_texture *)res;
625
626 if (color_needs_decompression(tex)) {
627 samplers->needs_color_decompress_mask |= 1u << i;
628 } else {
629 samplers->needs_color_decompress_mask &= ~(1u << i);
630 }
631 }
632 }
633 }
634
635 /* IMAGE VIEWS */
636
637 static void
638 si_release_image_views(struct si_images *images)
639 {
640 unsigned i;
641
642 for (i = 0; i < SI_NUM_IMAGES; ++i) {
643 struct pipe_image_view *view = &images->views[i];
644
645 pipe_resource_reference(&view->resource, NULL);
646 }
647 }
648
649 static void
650 si_image_views_begin_new_cs(struct si_context *sctx, struct si_images *images)
651 {
652 uint mask = images->enabled_mask;
653
654 /* Add buffers to the CS. */
655 while (mask) {
656 int i = u_bit_scan(&mask);
657 struct pipe_image_view *view = &images->views[i];
658
659 assert(view->resource);
660
661 si_sampler_view_add_buffer(sctx, view->resource,
662 RADEON_USAGE_READWRITE, false, false);
663 }
664 }
665
666 static void
667 si_disable_shader_image(struct si_context *ctx, unsigned shader, unsigned slot)
668 {
669 struct si_images *images = &ctx->images[shader];
670
671 if (images->enabled_mask & (1u << slot)) {
672 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader);
673 unsigned desc_slot = si_get_image_slot(slot);
674
675 pipe_resource_reference(&images->views[slot].resource, NULL);
676 images->needs_color_decompress_mask &= ~(1 << slot);
677
678 memcpy(descs->list + desc_slot*8, null_image_descriptor, 8*4);
679 images->enabled_mask &= ~(1u << slot);
680 ctx->descriptors_dirty |= 1u << si_sampler_and_image_descriptors_idx(shader);
681 }
682 }
683
684 static void
685 si_mark_image_range_valid(const struct pipe_image_view *view)
686 {
687 struct si_resource *res = si_resource(view->resource);
688
689 if (res->b.b.target != PIPE_BUFFER)
690 return;
691
692 util_range_add(&res->valid_buffer_range,
693 view->u.buf.offset,
694 view->u.buf.offset + view->u.buf.size);
695 }
696
697 static void si_set_shader_image_desc(struct si_context *ctx,
698 const struct pipe_image_view *view,
699 bool skip_decompress,
700 uint32_t *desc, uint32_t *fmask_desc)
701 {
702 struct si_screen *screen = ctx->screen;
703 struct si_resource *res;
704
705 res = si_resource(view->resource);
706
707 if (res->b.b.target == PIPE_BUFFER ||
708 view->shader_access & SI_IMAGE_ACCESS_AS_BUFFER) {
709 if (view->access & PIPE_IMAGE_ACCESS_WRITE)
710 si_mark_image_range_valid(view);
711
712 si_make_buffer_descriptor(screen, res,
713 view->format,
714 view->u.buf.offset,
715 view->u.buf.size, desc);
716 si_set_buf_desc_address(res, view->u.buf.offset, desc + 4);
717 } else {
718 static const unsigned char swizzle[4] = { 0, 1, 2, 3 };
719 struct si_texture *tex = (struct si_texture *)res;
720 unsigned level = view->u.tex.level;
721 unsigned width, height, depth, hw_level;
722 bool uses_dcc = vi_dcc_enabled(tex, level);
723 unsigned access = view->access;
724
725 /* Clear the write flag when writes can't occur.
726 * Note that DCC_DECOMPRESS for MSAA doesn't work in some cases,
727 * so we don't wanna trigger it.
728 */
729 if (tex->is_depth ||
730 (!fmask_desc && tex->surface.fmask_size != 0)) {
731 assert(!"Z/S and MSAA image stores are not supported");
732 access &= ~PIPE_IMAGE_ACCESS_WRITE;
733 }
734
735 assert(!tex->is_depth);
736 assert(fmask_desc || tex->surface.fmask_size == 0);
737
738 if (uses_dcc && !skip_decompress &&
739 (view->access & PIPE_IMAGE_ACCESS_WRITE ||
740 !vi_dcc_formats_compatible(res->b.b.format, view->format))) {
741 /* If DCC can't be disabled, at least decompress it.
742 * The decompression is relatively cheap if the surface
743 * has been decompressed already.
744 */
745 if (!si_texture_disable_dcc(ctx, tex))
746 si_decompress_dcc(ctx, tex);
747 }
748
749 if (ctx->chip_class >= GFX9) {
750 /* Always set the base address. The swizzle modes don't
751 * allow setting mipmap level offsets as the base.
752 */
753 width = res->b.b.width0;
754 height = res->b.b.height0;
755 depth = res->b.b.depth0;
756 hw_level = level;
757 } else {
758 /* Always force the base level to the selected level.
759 *
760 * This is required for 3D textures, where otherwise
761 * selecting a single slice for non-layered bindings
762 * fails. It doesn't hurt the other targets.
763 */
764 width = u_minify(res->b.b.width0, level);
765 height = u_minify(res->b.b.height0, level);
766 depth = u_minify(res->b.b.depth0, level);
767 hw_level = 0;
768 }
769
770 screen->make_texture_descriptor(screen, tex,
771 false, res->b.b.target,
772 view->format, swizzle,
773 hw_level, hw_level,
774 view->u.tex.first_layer,
775 view->u.tex.last_layer,
776 width, height, depth,
777 desc, fmask_desc);
778 si_set_mutable_tex_desc_fields(screen, tex,
779 &tex->surface.u.legacy.level[level],
780 level, level,
781 util_format_get_blockwidth(view->format),
782 false, desc);
783 }
784 }
785
786 static void si_set_shader_image(struct si_context *ctx,
787 unsigned shader,
788 unsigned slot, const struct pipe_image_view *view,
789 bool skip_decompress)
790 {
791 struct si_images *images = &ctx->images[shader];
792 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader);
793 struct si_resource *res;
794 unsigned desc_slot = si_get_image_slot(slot);
795 uint32_t *desc = descs->list + desc_slot * 8;
796
797 if (!view || !view->resource) {
798 si_disable_shader_image(ctx, shader, slot);
799 return;
800 }
801
802 res = si_resource(view->resource);
803
804 if (&images->views[slot] != view)
805 util_copy_image_view(&images->views[slot], view);
806
807 si_set_shader_image_desc(ctx, view, skip_decompress, desc, NULL);
808
809 if (res->b.b.target == PIPE_BUFFER ||
810 view->shader_access & SI_IMAGE_ACCESS_AS_BUFFER) {
811 images->needs_color_decompress_mask &= ~(1 << slot);
812 res->bind_history |= PIPE_BIND_SHADER_IMAGE;
813 } else {
814 struct si_texture *tex = (struct si_texture *)res;
815 unsigned level = view->u.tex.level;
816
817 if (color_needs_decompression(tex)) {
818 images->needs_color_decompress_mask |= 1 << slot;
819 } else {
820 images->needs_color_decompress_mask &= ~(1 << slot);
821 }
822
823 if (vi_dcc_enabled(tex, level) &&
824 p_atomic_read(&tex->framebuffers_bound))
825 ctx->need_check_render_feedback = true;
826 }
827
828 images->enabled_mask |= 1u << slot;
829 ctx->descriptors_dirty |= 1u << si_sampler_and_image_descriptors_idx(shader);
830
831 /* Since this can flush, it must be done after enabled_mask is updated. */
832 si_sampler_view_add_buffer(ctx, &res->b.b,
833 (view->access & PIPE_IMAGE_ACCESS_WRITE) ?
834 RADEON_USAGE_READWRITE : RADEON_USAGE_READ,
835 false, true);
836 }
837
838 static void
839 si_set_shader_images(struct pipe_context *pipe,
840 enum pipe_shader_type shader,
841 unsigned start_slot, unsigned count,
842 const struct pipe_image_view *views)
843 {
844 struct si_context *ctx = (struct si_context *)pipe;
845 unsigned i, slot;
846
847 assert(shader < SI_NUM_SHADERS);
848
849 if (!count)
850 return;
851
852 assert(start_slot + count <= SI_NUM_IMAGES);
853
854 if (views) {
855 for (i = 0, slot = start_slot; i < count; ++i, ++slot)
856 si_set_shader_image(ctx, shader, slot, &views[i], false);
857 } else {
858 for (i = 0, slot = start_slot; i < count; ++i, ++slot)
859 si_set_shader_image(ctx, shader, slot, NULL, false);
860 }
861
862 si_update_shader_needs_decompress_mask(ctx, shader);
863 }
864
865 static void
866 si_images_update_needs_color_decompress_mask(struct si_images *images)
867 {
868 unsigned mask = images->enabled_mask;
869
870 while (mask) {
871 int i = u_bit_scan(&mask);
872 struct pipe_resource *res = images->views[i].resource;
873
874 if (res && res->target != PIPE_BUFFER) {
875 struct si_texture *tex = (struct si_texture *)res;
876
877 if (color_needs_decompression(tex)) {
878 images->needs_color_decompress_mask |= 1 << i;
879 } else {
880 images->needs_color_decompress_mask &= ~(1 << i);
881 }
882 }
883 }
884 }
885
886 void si_update_ps_colorbuf0_slot(struct si_context *sctx)
887 {
888 struct si_buffer_resources *buffers = &sctx->rw_buffers;
889 struct si_descriptors *descs = &sctx->descriptors[SI_DESCS_RW_BUFFERS];
890 unsigned slot = SI_PS_IMAGE_COLORBUF0;
891 struct pipe_surface *surf = NULL;
892
893 /* si_texture_disable_dcc can get us here again. */
894 if (sctx->blitter->running)
895 return;
896
897 /* See whether FBFETCH is used and color buffer 0 is set. */
898 if (sctx->ps_shader.cso &&
899 sctx->ps_shader.cso->info.opcode_count[TGSI_OPCODE_FBFETCH] &&
900 sctx->framebuffer.state.nr_cbufs &&
901 sctx->framebuffer.state.cbufs[0])
902 surf = sctx->framebuffer.state.cbufs[0];
903
904 /* Return if FBFETCH transitions from disabled to disabled. */
905 if (!buffers->buffers[slot] && !surf)
906 return;
907
908 sctx->ps_uses_fbfetch = surf != NULL;
909 si_update_ps_iter_samples(sctx);
910
911 if (surf) {
912 struct si_texture *tex = (struct si_texture*)surf->texture;
913 struct pipe_image_view view;
914
915 assert(tex);
916 assert(!tex->is_depth);
917
918 /* Disable DCC, because the texture is used as both a sampler
919 * and color buffer.
920 */
921 si_texture_disable_dcc(sctx, tex);
922
923 if (tex->buffer.b.b.nr_samples <= 1 && tex->cmask_buffer) {
924 /* Disable CMASK. */
925 assert(tex->cmask_buffer != &tex->buffer);
926 si_eliminate_fast_color_clear(sctx, tex);
927 si_texture_discard_cmask(sctx->screen, tex);
928 }
929
930 view.resource = surf->texture;
931 view.format = surf->format;
932 view.access = PIPE_IMAGE_ACCESS_READ;
933 view.u.tex.first_layer = surf->u.tex.first_layer;
934 view.u.tex.last_layer = surf->u.tex.last_layer;
935 view.u.tex.level = surf->u.tex.level;
936
937 /* Set the descriptor. */
938 uint32_t *desc = descs->list + slot*4;
939 memset(desc, 0, 16 * 4);
940 si_set_shader_image_desc(sctx, &view, true, desc, desc + 8);
941
942 pipe_resource_reference(&buffers->buffers[slot], &tex->buffer.b.b);
943 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
944 &tex->buffer, RADEON_USAGE_READ,
945 RADEON_PRIO_SHADER_RW_IMAGE);
946 buffers->enabled_mask |= 1u << slot;
947 } else {
948 /* Clear the descriptor. */
949 memset(descs->list + slot*4, 0, 8*4);
950 pipe_resource_reference(&buffers->buffers[slot], NULL);
951 buffers->enabled_mask &= ~(1u << slot);
952 }
953
954 sctx->descriptors_dirty |= 1u << SI_DESCS_RW_BUFFERS;
955 }
956
957 /* SAMPLER STATES */
958
959 static void si_bind_sampler_states(struct pipe_context *ctx,
960 enum pipe_shader_type shader,
961 unsigned start, unsigned count, void **states)
962 {
963 struct si_context *sctx = (struct si_context *)ctx;
964 struct si_samplers *samplers = &sctx->samplers[shader];
965 struct si_descriptors *desc = si_sampler_and_image_descriptors(sctx, shader);
966 struct si_sampler_state **sstates = (struct si_sampler_state**)states;
967 int i;
968
969 if (!count || shader >= SI_NUM_SHADERS || !sstates)
970 return;
971
972 for (i = 0; i < count; i++) {
973 unsigned slot = start + i;
974 unsigned desc_slot = si_get_sampler_slot(slot);
975
976 if (!sstates[i] ||
977 sstates[i] == samplers->sampler_states[slot])
978 continue;
979
980 #ifndef NDEBUG
981 assert(sstates[i]->magic == SI_SAMPLER_STATE_MAGIC);
982 #endif
983 samplers->sampler_states[slot] = sstates[i];
984
985 /* If FMASK is bound, don't overwrite it.
986 * The sampler state will be set after FMASK is unbound.
987 */
988 struct si_sampler_view *sview =
989 (struct si_sampler_view *)samplers->views[slot];
990
991 struct si_texture *tex = NULL;
992
993 if (sview && sview->base.texture &&
994 sview->base.texture->target != PIPE_BUFFER)
995 tex = (struct si_texture *)sview->base.texture;
996
997 if (tex && tex->surface.fmask_size)
998 continue;
999
1000 si_set_sampler_state_desc(sstates[i], sview, tex,
1001 desc->list + desc_slot * 16 + 12);
1002
1003 sctx->descriptors_dirty |= 1u << si_sampler_and_image_descriptors_idx(shader);
1004 }
1005 }
1006
1007 /* BUFFER RESOURCES */
1008
1009 static void si_init_buffer_resources(struct si_buffer_resources *buffers,
1010 struct si_descriptors *descs,
1011 unsigned num_buffers,
1012 short shader_userdata_rel_index,
1013 enum radeon_bo_priority priority,
1014 enum radeon_bo_priority priority_constbuf)
1015 {
1016 buffers->priority = priority;
1017 buffers->priority_constbuf = priority_constbuf;
1018 buffers->buffers = CALLOC(num_buffers, sizeof(struct pipe_resource*));
1019 buffers->offsets = CALLOC(num_buffers, sizeof(buffers->offsets[0]));
1020
1021 si_init_descriptors(descs, shader_userdata_rel_index, 4, num_buffers);
1022 }
1023
1024 static void si_release_buffer_resources(struct si_buffer_resources *buffers,
1025 struct si_descriptors *descs)
1026 {
1027 int i;
1028
1029 for (i = 0; i < descs->num_elements; i++) {
1030 pipe_resource_reference(&buffers->buffers[i], NULL);
1031 }
1032
1033 FREE(buffers->buffers);
1034 FREE(buffers->offsets);
1035 }
1036
1037 static void si_buffer_resources_begin_new_cs(struct si_context *sctx,
1038 struct si_buffer_resources *buffers)
1039 {
1040 unsigned mask = buffers->enabled_mask;
1041
1042 /* Add buffers to the CS. */
1043 while (mask) {
1044 int i = u_bit_scan(&mask);
1045
1046 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1047 si_resource(buffers->buffers[i]),
1048 buffers->writable_mask & (1u << i) ? RADEON_USAGE_READWRITE :
1049 RADEON_USAGE_READ,
1050 i < SI_NUM_SHADER_BUFFERS ? buffers->priority :
1051 buffers->priority_constbuf);
1052 }
1053 }
1054
1055 static void si_get_buffer_from_descriptors(struct si_buffer_resources *buffers,
1056 struct si_descriptors *descs,
1057 unsigned idx, struct pipe_resource **buf,
1058 unsigned *offset, unsigned *size)
1059 {
1060 pipe_resource_reference(buf, buffers->buffers[idx]);
1061 if (*buf) {
1062 struct si_resource *res = si_resource(*buf);
1063 const uint32_t *desc = descs->list + idx * 4;
1064 uint64_t va;
1065
1066 *size = desc[2];
1067
1068 assert(G_008F04_STRIDE(desc[1]) == 0);
1069 va = si_desc_extract_buffer_address(desc);
1070
1071 assert(va >= res->gpu_address && va + *size <= res->gpu_address + res->bo_size);
1072 *offset = va - res->gpu_address;
1073 }
1074 }
1075
1076 /* VERTEX BUFFERS */
1077
1078 static void si_vertex_buffers_begin_new_cs(struct si_context *sctx)
1079 {
1080 int count = sctx->vertex_elements ? sctx->vertex_elements->count : 0;
1081 int i;
1082
1083 for (i = 0; i < count; i++) {
1084 int vb = sctx->vertex_elements->vertex_buffer_index[i];
1085
1086 if (vb >= ARRAY_SIZE(sctx->vertex_buffer))
1087 continue;
1088 if (!sctx->vertex_buffer[vb].buffer.resource)
1089 continue;
1090
1091 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1092 si_resource(sctx->vertex_buffer[vb].buffer.resource),
1093 RADEON_USAGE_READ, RADEON_PRIO_VERTEX_BUFFER);
1094 }
1095
1096 if (!sctx->vb_descriptors_buffer)
1097 return;
1098 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1099 sctx->vb_descriptors_buffer, RADEON_USAGE_READ,
1100 RADEON_PRIO_DESCRIPTORS);
1101 }
1102
1103 bool si_upload_vertex_buffer_descriptors(struct si_context *sctx)
1104 {
1105 struct si_vertex_elements *velems = sctx->vertex_elements;
1106 unsigned i, count;
1107 unsigned desc_list_byte_size;
1108 unsigned first_vb_use_mask;
1109 uint32_t *ptr;
1110
1111 if (!sctx->vertex_buffers_dirty || !velems)
1112 return true;
1113
1114 count = velems->count;
1115
1116 if (!count)
1117 return true;
1118
1119 desc_list_byte_size = velems->desc_list_byte_size;
1120 first_vb_use_mask = velems->first_vb_use_mask;
1121
1122 /* Vertex buffer descriptors are the only ones which are uploaded
1123 * directly through a staging buffer and don't go through
1124 * the fine-grained upload path.
1125 */
1126 u_upload_alloc(sctx->b.const_uploader, 0,
1127 desc_list_byte_size,
1128 si_optimal_tcc_alignment(sctx, desc_list_byte_size),
1129 &sctx->vb_descriptors_offset,
1130 (struct pipe_resource**)&sctx->vb_descriptors_buffer,
1131 (void**)&ptr);
1132 if (!sctx->vb_descriptors_buffer) {
1133 sctx->vb_descriptors_offset = 0;
1134 sctx->vb_descriptors_gpu_list = NULL;
1135 return false;
1136 }
1137
1138 sctx->vb_descriptors_gpu_list = ptr;
1139 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1140 sctx->vb_descriptors_buffer, RADEON_USAGE_READ,
1141 RADEON_PRIO_DESCRIPTORS);
1142
1143 assert(count <= SI_MAX_ATTRIBS);
1144
1145 for (i = 0; i < count; i++) {
1146 struct pipe_vertex_buffer *vb;
1147 struct si_resource *buf;
1148 unsigned vbo_index = velems->vertex_buffer_index[i];
1149 uint32_t *desc = &ptr[i*4];
1150
1151 vb = &sctx->vertex_buffer[vbo_index];
1152 buf = si_resource(vb->buffer.resource);
1153 if (!buf) {
1154 memset(desc, 0, 16);
1155 continue;
1156 }
1157
1158 int64_t offset = (int64_t)((int)vb->buffer_offset) +
1159 velems->src_offset[i];
1160 uint64_t va = buf->gpu_address + offset;
1161
1162 int64_t num_records = (int64_t)buf->b.b.width0 - offset;
1163 if (sctx->chip_class != GFX8 && vb->stride) {
1164 /* Round up by rounding down and adding 1 */
1165 num_records = (num_records - velems->format_size[i]) /
1166 vb->stride + 1;
1167 }
1168 assert(num_records >= 0 && num_records <= UINT_MAX);
1169
1170 desc[0] = va;
1171 desc[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) |
1172 S_008F04_STRIDE(vb->stride);
1173 desc[2] = num_records;
1174 desc[3] = velems->rsrc_word3[i];
1175
1176 if (first_vb_use_mask & (1 << i)) {
1177 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1178 si_resource(vb->buffer.resource),
1179 RADEON_USAGE_READ, RADEON_PRIO_VERTEX_BUFFER);
1180 }
1181 }
1182
1183 /* Don't flush the const cache. It would have a very negative effect
1184 * on performance (confirmed by testing). New descriptors are always
1185 * uploaded to a fresh new buffer, so I don't think flushing the const
1186 * cache is needed. */
1187 si_mark_atom_dirty(sctx, &sctx->atoms.s.shader_pointers);
1188 sctx->vertex_buffers_dirty = false;
1189 sctx->vertex_buffer_pointer_dirty = true;
1190 sctx->prefetch_L2_mask |= SI_PREFETCH_VBO_DESCRIPTORS;
1191 return true;
1192 }
1193
1194
1195 /* CONSTANT BUFFERS */
1196
1197 static struct si_descriptors *
1198 si_const_and_shader_buffer_descriptors(struct si_context *sctx, unsigned shader)
1199 {
1200 return &sctx->descriptors[si_const_and_shader_buffer_descriptors_idx(shader)];
1201 }
1202
1203 void si_upload_const_buffer(struct si_context *sctx, struct si_resource **buf,
1204 const uint8_t *ptr, unsigned size, uint32_t *const_offset)
1205 {
1206 void *tmp;
1207
1208 u_upload_alloc(sctx->b.const_uploader, 0, size,
1209 si_optimal_tcc_alignment(sctx, size),
1210 const_offset,
1211 (struct pipe_resource**)buf, &tmp);
1212 if (*buf)
1213 util_memcpy_cpu_to_le32(tmp, ptr, size);
1214 }
1215
1216 static void si_set_constant_buffer(struct si_context *sctx,
1217 struct si_buffer_resources *buffers,
1218 unsigned descriptors_idx,
1219 uint slot, const struct pipe_constant_buffer *input)
1220 {
1221 struct si_descriptors *descs = &sctx->descriptors[descriptors_idx];
1222 assert(slot < descs->num_elements);
1223 pipe_resource_reference(&buffers->buffers[slot], NULL);
1224
1225 /* GFX7 cannot unbind a constant buffer (S_BUFFER_LOAD is buggy
1226 * with a NULL buffer). We need to use a dummy buffer instead. */
1227 if (sctx->chip_class == GFX7 &&
1228 (!input || (!input->buffer && !input->user_buffer)))
1229 input = &sctx->null_const_buf;
1230
1231 if (input && (input->buffer || input->user_buffer)) {
1232 struct pipe_resource *buffer = NULL;
1233 uint64_t va;
1234 unsigned buffer_offset;
1235
1236 /* Upload the user buffer if needed. */
1237 if (input->user_buffer) {
1238 si_upload_const_buffer(sctx,
1239 (struct si_resource**)&buffer, input->user_buffer,
1240 input->buffer_size, &buffer_offset);
1241 if (!buffer) {
1242 /* Just unbind on failure. */
1243 si_set_constant_buffer(sctx, buffers, descriptors_idx, slot, NULL);
1244 return;
1245 }
1246 } else {
1247 pipe_resource_reference(&buffer, input->buffer);
1248 buffer_offset = input->buffer_offset;
1249 }
1250
1251 va = si_resource(buffer)->gpu_address + buffer_offset;
1252
1253 /* Set the descriptor. */
1254 uint32_t *desc = descs->list + slot*4;
1255 desc[0] = va;
1256 desc[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) |
1257 S_008F04_STRIDE(0);
1258 desc[2] = input->buffer_size;
1259 desc[3] = S_008F0C_DST_SEL_X(V_008F0C_SQ_SEL_X) |
1260 S_008F0C_DST_SEL_Y(V_008F0C_SQ_SEL_Y) |
1261 S_008F0C_DST_SEL_Z(V_008F0C_SQ_SEL_Z) |
1262 S_008F0C_DST_SEL_W(V_008F0C_SQ_SEL_W) |
1263 S_008F0C_NUM_FORMAT(V_008F0C_BUF_NUM_FORMAT_FLOAT) |
1264 S_008F0C_DATA_FORMAT(V_008F0C_BUF_DATA_FORMAT_32);
1265
1266 buffers->buffers[slot] = buffer;
1267 buffers->offsets[slot] = buffer_offset;
1268 radeon_add_to_gfx_buffer_list_check_mem(sctx,
1269 si_resource(buffer),
1270 RADEON_USAGE_READ,
1271 buffers->priority_constbuf, true);
1272 buffers->enabled_mask |= 1u << slot;
1273 } else {
1274 /* Clear the descriptor. */
1275 memset(descs->list + slot*4, 0, sizeof(uint32_t) * 4);
1276 buffers->enabled_mask &= ~(1u << slot);
1277 }
1278
1279 sctx->descriptors_dirty |= 1u << descriptors_idx;
1280 }
1281
1282 static void si_pipe_set_constant_buffer(struct pipe_context *ctx,
1283 enum pipe_shader_type shader, uint slot,
1284 const struct pipe_constant_buffer *input)
1285 {
1286 struct si_context *sctx = (struct si_context *)ctx;
1287
1288 if (shader >= SI_NUM_SHADERS)
1289 return;
1290
1291 if (slot == 0 && input && input->buffer &&
1292 !(si_resource(input->buffer)->flags & RADEON_FLAG_32BIT)) {
1293 assert(!"constant buffer 0 must have a 32-bit VM address, use const_uploader");
1294 return;
1295 }
1296
1297 if (input && input->buffer)
1298 si_resource(input->buffer)->bind_history |= PIPE_BIND_CONSTANT_BUFFER;
1299
1300 slot = si_get_constbuf_slot(slot);
1301 si_set_constant_buffer(sctx, &sctx->const_and_shader_buffers[shader],
1302 si_const_and_shader_buffer_descriptors_idx(shader),
1303 slot, input);
1304 }
1305
1306 void si_get_pipe_constant_buffer(struct si_context *sctx, uint shader,
1307 uint slot, struct pipe_constant_buffer *cbuf)
1308 {
1309 cbuf->user_buffer = NULL;
1310 si_get_buffer_from_descriptors(
1311 &sctx->const_and_shader_buffers[shader],
1312 si_const_and_shader_buffer_descriptors(sctx, shader),
1313 si_get_constbuf_slot(slot),
1314 &cbuf->buffer, &cbuf->buffer_offset, &cbuf->buffer_size);
1315 }
1316
1317 /* SHADER BUFFERS */
1318
1319 static void si_set_shader_buffer(struct si_context *sctx,
1320 struct si_buffer_resources *buffers,
1321 unsigned descriptors_idx,
1322 uint slot, const struct pipe_shader_buffer *sbuffer,
1323 bool writable, enum radeon_bo_priority priority)
1324 {
1325 struct si_descriptors *descs = &sctx->descriptors[descriptors_idx];
1326 uint32_t *desc = descs->list + slot * 4;
1327
1328 if (!sbuffer || !sbuffer->buffer) {
1329 pipe_resource_reference(&buffers->buffers[slot], NULL);
1330 memset(desc, 0, sizeof(uint32_t) * 4);
1331 buffers->enabled_mask &= ~(1u << slot);
1332 buffers->writable_mask &= ~(1u << slot);
1333 sctx->descriptors_dirty |= 1u << descriptors_idx;
1334 return;
1335 }
1336
1337 struct si_resource *buf = si_resource(sbuffer->buffer);
1338 uint64_t va = buf->gpu_address + sbuffer->buffer_offset;
1339
1340 desc[0] = va;
1341 desc[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) |
1342 S_008F04_STRIDE(0);
1343 desc[2] = sbuffer->buffer_size;
1344 desc[3] = S_008F0C_DST_SEL_X(V_008F0C_SQ_SEL_X) |
1345 S_008F0C_DST_SEL_Y(V_008F0C_SQ_SEL_Y) |
1346 S_008F0C_DST_SEL_Z(V_008F0C_SQ_SEL_Z) |
1347 S_008F0C_DST_SEL_W(V_008F0C_SQ_SEL_W) |
1348 S_008F0C_NUM_FORMAT(V_008F0C_BUF_NUM_FORMAT_FLOAT) |
1349 S_008F0C_DATA_FORMAT(V_008F0C_BUF_DATA_FORMAT_32);
1350
1351 pipe_resource_reference(&buffers->buffers[slot], &buf->b.b);
1352 buffers->offsets[slot] = sbuffer->buffer_offset;
1353 radeon_add_to_gfx_buffer_list_check_mem(sctx, buf,
1354 writable ? RADEON_USAGE_READWRITE :
1355 RADEON_USAGE_READ,
1356 priority, true);
1357 if (writable)
1358 buffers->writable_mask |= 1u << slot;
1359 else
1360 buffers->writable_mask &= ~(1u << slot);
1361
1362 buffers->enabled_mask |= 1u << slot;
1363 sctx->descriptors_dirty |= 1u << descriptors_idx;
1364
1365 util_range_add(&buf->valid_buffer_range, sbuffer->buffer_offset,
1366 sbuffer->buffer_offset + sbuffer->buffer_size);
1367 }
1368
1369 static void si_set_shader_buffers(struct pipe_context *ctx,
1370 enum pipe_shader_type shader,
1371 unsigned start_slot, unsigned count,
1372 const struct pipe_shader_buffer *sbuffers,
1373 unsigned writable_bitmask)
1374 {
1375 struct si_context *sctx = (struct si_context *)ctx;
1376 struct si_buffer_resources *buffers = &sctx->const_and_shader_buffers[shader];
1377 unsigned descriptors_idx = si_const_and_shader_buffer_descriptors_idx(shader);
1378 unsigned i;
1379
1380 assert(start_slot + count <= SI_NUM_SHADER_BUFFERS);
1381
1382 for (i = 0; i < count; ++i) {
1383 const struct pipe_shader_buffer *sbuffer = sbuffers ? &sbuffers[i] : NULL;
1384 unsigned slot = si_get_shaderbuf_slot(start_slot + i);
1385
1386 if (sbuffer && sbuffer->buffer)
1387 si_resource(sbuffer->buffer)->bind_history |= PIPE_BIND_SHADER_BUFFER;
1388
1389 si_set_shader_buffer(sctx, buffers, descriptors_idx, slot, sbuffer,
1390 !!(writable_bitmask & (1u << i)),
1391 buffers->priority);
1392 }
1393 }
1394
1395 void si_get_shader_buffers(struct si_context *sctx,
1396 enum pipe_shader_type shader,
1397 uint start_slot, uint count,
1398 struct pipe_shader_buffer *sbuf)
1399 {
1400 struct si_buffer_resources *buffers = &sctx->const_and_shader_buffers[shader];
1401 struct si_descriptors *descs = si_const_and_shader_buffer_descriptors(sctx, shader);
1402
1403 for (unsigned i = 0; i < count; ++i) {
1404 si_get_buffer_from_descriptors(
1405 buffers, descs,
1406 si_get_shaderbuf_slot(start_slot + i),
1407 &sbuf[i].buffer, &sbuf[i].buffer_offset,
1408 &sbuf[i].buffer_size);
1409 }
1410 }
1411
1412 /* RING BUFFERS */
1413
1414 void si_set_rw_buffer(struct si_context *sctx,
1415 uint slot, const struct pipe_constant_buffer *input)
1416 {
1417 si_set_constant_buffer(sctx, &sctx->rw_buffers, SI_DESCS_RW_BUFFERS,
1418 slot, input);
1419 }
1420
1421 void si_set_rw_shader_buffer(struct si_context *sctx, uint slot,
1422 const struct pipe_shader_buffer *sbuffer)
1423 {
1424 si_set_shader_buffer(sctx, &sctx->rw_buffers, SI_DESCS_RW_BUFFERS,
1425 slot, sbuffer, true, RADEON_PRIO_SHADER_RW_BUFFER);
1426 }
1427
1428 void si_set_ring_buffer(struct si_context *sctx, uint slot,
1429 struct pipe_resource *buffer,
1430 unsigned stride, unsigned num_records,
1431 bool add_tid, bool swizzle,
1432 unsigned element_size, unsigned index_stride, uint64_t offset)
1433 {
1434 struct si_buffer_resources *buffers = &sctx->rw_buffers;
1435 struct si_descriptors *descs = &sctx->descriptors[SI_DESCS_RW_BUFFERS];
1436
1437 /* The stride field in the resource descriptor has 14 bits */
1438 assert(stride < (1 << 14));
1439
1440 assert(slot < descs->num_elements);
1441 pipe_resource_reference(&buffers->buffers[slot], NULL);
1442
1443 if (buffer) {
1444 uint64_t va;
1445
1446 va = si_resource(buffer)->gpu_address + offset;
1447
1448 switch (element_size) {
1449 default:
1450 assert(!"Unsupported ring buffer element size");
1451 case 0:
1452 case 2:
1453 element_size = 0;
1454 break;
1455 case 4:
1456 element_size = 1;
1457 break;
1458 case 8:
1459 element_size = 2;
1460 break;
1461 case 16:
1462 element_size = 3;
1463 break;
1464 }
1465
1466 switch (index_stride) {
1467 default:
1468 assert(!"Unsupported ring buffer index stride");
1469 case 0:
1470 case 8:
1471 index_stride = 0;
1472 break;
1473 case 16:
1474 index_stride = 1;
1475 break;
1476 case 32:
1477 index_stride = 2;
1478 break;
1479 case 64:
1480 index_stride = 3;
1481 break;
1482 }
1483
1484 if (sctx->chip_class >= GFX8 && stride)
1485 num_records *= stride;
1486
1487 /* Set the descriptor. */
1488 uint32_t *desc = descs->list + slot*4;
1489 desc[0] = va;
1490 desc[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) |
1491 S_008F04_STRIDE(stride) |
1492 S_008F04_SWIZZLE_ENABLE(swizzle);
1493 desc[2] = num_records;
1494 desc[3] = S_008F0C_DST_SEL_X(V_008F0C_SQ_SEL_X) |
1495 S_008F0C_DST_SEL_Y(V_008F0C_SQ_SEL_Y) |
1496 S_008F0C_DST_SEL_Z(V_008F0C_SQ_SEL_Z) |
1497 S_008F0C_DST_SEL_W(V_008F0C_SQ_SEL_W) |
1498 S_008F0C_NUM_FORMAT(V_008F0C_BUF_NUM_FORMAT_FLOAT) |
1499 S_008F0C_DATA_FORMAT(V_008F0C_BUF_DATA_FORMAT_32) |
1500 S_008F0C_INDEX_STRIDE(index_stride) |
1501 S_008F0C_ADD_TID_ENABLE(add_tid);
1502
1503 if (sctx->chip_class >= GFX9)
1504 assert(!swizzle || element_size == 1); /* always 4 bytes on GFX9 */
1505 else
1506 desc[3] |= S_008F0C_ELEMENT_SIZE(element_size);
1507
1508 pipe_resource_reference(&buffers->buffers[slot], buffer);
1509 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
1510 si_resource(buffer),
1511 RADEON_USAGE_READWRITE, buffers->priority);
1512 buffers->enabled_mask |= 1u << slot;
1513 } else {
1514 /* Clear the descriptor. */
1515 memset(descs->list + slot*4, 0, sizeof(uint32_t) * 4);
1516 buffers->enabled_mask &= ~(1u << slot);
1517 }
1518
1519 sctx->descriptors_dirty |= 1u << SI_DESCS_RW_BUFFERS;
1520 }
1521
1522 /* INTERNAL CONST BUFFERS */
1523
1524 static void si_set_polygon_stipple(struct pipe_context *ctx,
1525 const struct pipe_poly_stipple *state)
1526 {
1527 struct si_context *sctx = (struct si_context *)ctx;
1528 struct pipe_constant_buffer cb = {};
1529 unsigned stipple[32];
1530 int i;
1531
1532 for (i = 0; i < 32; i++)
1533 stipple[i] = util_bitreverse(state->stipple[i]);
1534
1535 cb.user_buffer = stipple;
1536 cb.buffer_size = sizeof(stipple);
1537
1538 si_set_rw_buffer(sctx, SI_PS_CONST_POLY_STIPPLE, &cb);
1539 }
1540
1541 /* TEXTURE METADATA ENABLE/DISABLE */
1542
1543 static void
1544 si_resident_handles_update_needs_color_decompress(struct si_context *sctx)
1545 {
1546 util_dynarray_clear(&sctx->resident_tex_needs_color_decompress);
1547 util_dynarray_clear(&sctx->resident_img_needs_color_decompress);
1548
1549 util_dynarray_foreach(&sctx->resident_tex_handles,
1550 struct si_texture_handle *, tex_handle) {
1551 struct pipe_resource *res = (*tex_handle)->view->texture;
1552 struct si_texture *tex;
1553
1554 if (!res || res->target == PIPE_BUFFER)
1555 continue;
1556
1557 tex = (struct si_texture *)res;
1558 if (!color_needs_decompression(tex))
1559 continue;
1560
1561 util_dynarray_append(&sctx->resident_tex_needs_color_decompress,
1562 struct si_texture_handle *, *tex_handle);
1563 }
1564
1565 util_dynarray_foreach(&sctx->resident_img_handles,
1566 struct si_image_handle *, img_handle) {
1567 struct pipe_image_view *view = &(*img_handle)->view;
1568 struct pipe_resource *res = view->resource;
1569 struct si_texture *tex;
1570
1571 if (!res || res->target == PIPE_BUFFER)
1572 continue;
1573
1574 tex = (struct si_texture *)res;
1575 if (!color_needs_decompression(tex))
1576 continue;
1577
1578 util_dynarray_append(&sctx->resident_img_needs_color_decompress,
1579 struct si_image_handle *, *img_handle);
1580 }
1581 }
1582
1583 /* CMASK can be enabled (for fast clear) and disabled (for texture export)
1584 * while the texture is bound, possibly by a different context. In that case,
1585 * call this function to update needs_*_decompress_masks.
1586 */
1587 void si_update_needs_color_decompress_masks(struct si_context *sctx)
1588 {
1589 for (int i = 0; i < SI_NUM_SHADERS; ++i) {
1590 si_samplers_update_needs_color_decompress_mask(&sctx->samplers[i]);
1591 si_images_update_needs_color_decompress_mask(&sctx->images[i]);
1592 si_update_shader_needs_decompress_mask(sctx, i);
1593 }
1594
1595 si_resident_handles_update_needs_color_decompress(sctx);
1596 }
1597
1598 /* BUFFER DISCARD/INVALIDATION */
1599
1600 /* Reset descriptors of buffer resources after \p buf has been invalidated.
1601 * If buf == NULL, reset all descriptors.
1602 */
1603 static void si_reset_buffer_resources(struct si_context *sctx,
1604 struct si_buffer_resources *buffers,
1605 unsigned descriptors_idx,
1606 unsigned slot_mask,
1607 struct pipe_resource *buf,
1608 enum radeon_bo_priority priority)
1609 {
1610 struct si_descriptors *descs = &sctx->descriptors[descriptors_idx];
1611 unsigned mask = buffers->enabled_mask & slot_mask;
1612
1613 while (mask) {
1614 unsigned i = u_bit_scan(&mask);
1615 struct pipe_resource *buffer = buffers->buffers[i];
1616
1617 if (buffer && (!buf || buffer == buf)) {
1618 si_set_buf_desc_address(si_resource(buffer), buffers->offsets[i],
1619 descs->list + i*4);
1620 sctx->descriptors_dirty |= 1u << descriptors_idx;
1621
1622 radeon_add_to_gfx_buffer_list_check_mem(sctx,
1623 si_resource(buffer),
1624 buffers->writable_mask & (1u << i) ?
1625 RADEON_USAGE_READWRITE :
1626 RADEON_USAGE_READ,
1627 priority, true);
1628 }
1629 }
1630 }
1631
1632 /* Update all buffer bindings where the buffer is bound, including
1633 * all resource descriptors. This is invalidate_buffer without
1634 * the invalidation.
1635 *
1636 * If buf == NULL, update all buffer bindings.
1637 */
1638 void si_rebind_buffer(struct si_context *sctx, struct pipe_resource *buf)
1639 {
1640 struct si_resource *buffer = si_resource(buf);
1641 unsigned i, shader;
1642 unsigned num_elems = sctx->vertex_elements ?
1643 sctx->vertex_elements->count : 0;
1644
1645 /* We changed the buffer, now we need to bind it where the old one
1646 * was bound. This consists of 2 things:
1647 * 1) Updating the resource descriptor and dirtying it.
1648 * 2) Adding a relocation to the CS, so that it's usable.
1649 */
1650
1651 /* Vertex buffers. */
1652 if (!buffer) {
1653 if (num_elems)
1654 sctx->vertex_buffers_dirty = true;
1655 } else if (buffer->bind_history & PIPE_BIND_VERTEX_BUFFER) {
1656 for (i = 0; i < num_elems; i++) {
1657 int vb = sctx->vertex_elements->vertex_buffer_index[i];
1658
1659 if (vb >= ARRAY_SIZE(sctx->vertex_buffer))
1660 continue;
1661 if (!sctx->vertex_buffer[vb].buffer.resource)
1662 continue;
1663
1664 if (sctx->vertex_buffer[vb].buffer.resource == buf) {
1665 sctx->vertex_buffers_dirty = true;
1666 break;
1667 }
1668 }
1669 }
1670
1671 /* Streamout buffers. (other internal buffers can't be invalidated) */
1672 if (!buffer || buffer->bind_history & PIPE_BIND_STREAM_OUTPUT) {
1673 for (i = SI_VS_STREAMOUT_BUF0; i <= SI_VS_STREAMOUT_BUF3; i++) {
1674 struct si_buffer_resources *buffers = &sctx->rw_buffers;
1675 struct si_descriptors *descs =
1676 &sctx->descriptors[SI_DESCS_RW_BUFFERS];
1677 struct pipe_resource *buffer = buffers->buffers[i];
1678
1679 if (!buffer || (buf && buffer != buf))
1680 continue;
1681
1682 si_set_buf_desc_address(si_resource(buffer), buffers->offsets[i],
1683 descs->list + i*4);
1684 sctx->descriptors_dirty |= 1u << SI_DESCS_RW_BUFFERS;
1685
1686 radeon_add_to_gfx_buffer_list_check_mem(sctx,
1687 si_resource(buffer),
1688 RADEON_USAGE_WRITE,
1689 RADEON_PRIO_SHADER_RW_BUFFER,
1690 true);
1691
1692 /* Update the streamout state. */
1693 if (sctx->streamout.begin_emitted)
1694 si_emit_streamout_end(sctx);
1695 sctx->streamout.append_bitmask =
1696 sctx->streamout.enabled_mask;
1697 si_streamout_buffers_dirty(sctx);
1698 }
1699 }
1700
1701 /* Constant and shader buffers. */
1702 if (!buffer || buffer->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
1703 for (shader = 0; shader < SI_NUM_SHADERS; shader++)
1704 si_reset_buffer_resources(sctx, &sctx->const_and_shader_buffers[shader],
1705 si_const_and_shader_buffer_descriptors_idx(shader),
1706 u_bit_consecutive(SI_NUM_SHADER_BUFFERS, SI_NUM_CONST_BUFFERS),
1707 buf,
1708 sctx->const_and_shader_buffers[shader].priority_constbuf);
1709 }
1710
1711 if (!buffer || buffer->bind_history & PIPE_BIND_SHADER_BUFFER) {
1712 for (shader = 0; shader < SI_NUM_SHADERS; shader++)
1713 si_reset_buffer_resources(sctx, &sctx->const_and_shader_buffers[shader],
1714 si_const_and_shader_buffer_descriptors_idx(shader),
1715 u_bit_consecutive(0, SI_NUM_SHADER_BUFFERS),
1716 buf,
1717 sctx->const_and_shader_buffers[shader].priority);
1718 }
1719
1720 if (!buffer || buffer->bind_history & PIPE_BIND_SAMPLER_VIEW) {
1721 /* Texture buffers - update bindings. */
1722 for (shader = 0; shader < SI_NUM_SHADERS; shader++) {
1723 struct si_samplers *samplers = &sctx->samplers[shader];
1724 struct si_descriptors *descs =
1725 si_sampler_and_image_descriptors(sctx, shader);
1726 unsigned mask = samplers->enabled_mask;
1727
1728 while (mask) {
1729 unsigned i = u_bit_scan(&mask);
1730 struct pipe_resource *buffer = samplers->views[i]->texture;
1731
1732 if (buffer && buffer->target == PIPE_BUFFER &&
1733 (!buf || buffer == buf)) {
1734 unsigned desc_slot = si_get_sampler_slot(i);
1735
1736 si_set_buf_desc_address(si_resource(buffer),
1737 samplers->views[i]->u.buf.offset,
1738 descs->list + desc_slot * 16 + 4);
1739 sctx->descriptors_dirty |=
1740 1u << si_sampler_and_image_descriptors_idx(shader);
1741
1742 radeon_add_to_gfx_buffer_list_check_mem(
1743 sctx, si_resource(buffer),
1744 RADEON_USAGE_READ,
1745 RADEON_PRIO_SAMPLER_BUFFER, true);
1746 }
1747 }
1748 }
1749 }
1750
1751 /* Shader images */
1752 if (!buffer || buffer->bind_history & PIPE_BIND_SHADER_IMAGE) {
1753 for (shader = 0; shader < SI_NUM_SHADERS; ++shader) {
1754 struct si_images *images = &sctx->images[shader];
1755 struct si_descriptors *descs =
1756 si_sampler_and_image_descriptors(sctx, shader);
1757 unsigned mask = images->enabled_mask;
1758
1759 while (mask) {
1760 unsigned i = u_bit_scan(&mask);
1761 struct pipe_resource *buffer = images->views[i].resource;
1762
1763 if (buffer && buffer->target == PIPE_BUFFER &&
1764 (!buf || buffer == buf)) {
1765 unsigned desc_slot = si_get_image_slot(i);
1766
1767 if (images->views[i].access & PIPE_IMAGE_ACCESS_WRITE)
1768 si_mark_image_range_valid(&images->views[i]);
1769
1770 si_set_buf_desc_address(si_resource(buffer),
1771 images->views[i].u.buf.offset,
1772 descs->list + desc_slot * 8 + 4);
1773 sctx->descriptors_dirty |=
1774 1u << si_sampler_and_image_descriptors_idx(shader);
1775
1776 radeon_add_to_gfx_buffer_list_check_mem(
1777 sctx, si_resource(buffer),
1778 RADEON_USAGE_READWRITE,
1779 RADEON_PRIO_SAMPLER_BUFFER, true);
1780 }
1781 }
1782 }
1783 }
1784
1785 /* Bindless texture handles */
1786 if (!buffer || buffer->texture_handle_allocated) {
1787 struct si_descriptors *descs = &sctx->bindless_descriptors;
1788
1789 util_dynarray_foreach(&sctx->resident_tex_handles,
1790 struct si_texture_handle *, tex_handle) {
1791 struct pipe_sampler_view *view = (*tex_handle)->view;
1792 unsigned desc_slot = (*tex_handle)->desc_slot;
1793 struct pipe_resource *buffer = view->texture;
1794
1795 if (buffer && buffer->target == PIPE_BUFFER &&
1796 (!buf || buffer == buf)) {
1797 si_set_buf_desc_address(si_resource(buffer),
1798 view->u.buf.offset,
1799 descs->list +
1800 desc_slot * 16 + 4);
1801
1802 (*tex_handle)->desc_dirty = true;
1803 sctx->bindless_descriptors_dirty = true;
1804
1805 radeon_add_to_gfx_buffer_list_check_mem(
1806 sctx, si_resource(buffer),
1807 RADEON_USAGE_READ,
1808 RADEON_PRIO_SAMPLER_BUFFER, true);
1809 }
1810 }
1811 }
1812
1813 /* Bindless image handles */
1814 if (!buffer || buffer->image_handle_allocated) {
1815 struct si_descriptors *descs = &sctx->bindless_descriptors;
1816
1817 util_dynarray_foreach(&sctx->resident_img_handles,
1818 struct si_image_handle *, img_handle) {
1819 struct pipe_image_view *view = &(*img_handle)->view;
1820 unsigned desc_slot = (*img_handle)->desc_slot;
1821 struct pipe_resource *buffer = view->resource;
1822
1823 if (buffer && buffer->target == PIPE_BUFFER &&
1824 (!buf || buffer == buf)) {
1825 if (view->access & PIPE_IMAGE_ACCESS_WRITE)
1826 si_mark_image_range_valid(view);
1827
1828 si_set_buf_desc_address(si_resource(buffer),
1829 view->u.buf.offset,
1830 descs->list +
1831 desc_slot * 16 + 4);
1832
1833 (*img_handle)->desc_dirty = true;
1834 sctx->bindless_descriptors_dirty = true;
1835
1836 radeon_add_to_gfx_buffer_list_check_mem(
1837 sctx, si_resource(buffer),
1838 RADEON_USAGE_READWRITE,
1839 RADEON_PRIO_SAMPLER_BUFFER, true);
1840 }
1841 }
1842 }
1843
1844 if (buffer) {
1845 /* Do the same for other contexts. They will invoke this function
1846 * with buffer == NULL.
1847 */
1848 unsigned new_counter = p_atomic_inc_return(&sctx->screen->dirty_buf_counter);
1849
1850 /* Skip the update for the current context, because we have already updated
1851 * the buffer bindings.
1852 */
1853 if (new_counter == sctx->last_dirty_buf_counter + 1)
1854 sctx->last_dirty_buf_counter = new_counter;
1855 }
1856 }
1857
1858 static void si_upload_bindless_descriptor(struct si_context *sctx,
1859 unsigned desc_slot,
1860 unsigned num_dwords)
1861 {
1862 struct si_descriptors *desc = &sctx->bindless_descriptors;
1863 unsigned desc_slot_offset = desc_slot * 16;
1864 uint32_t *data;
1865 uint64_t va;
1866
1867 data = desc->list + desc_slot_offset;
1868 va = desc->gpu_address + desc_slot_offset * 4;
1869
1870 si_cp_write_data(sctx, desc->buffer, va - desc->buffer->gpu_address,
1871 num_dwords * 4, V_370_TC_L2, V_370_ME, data);
1872 }
1873
1874 static void si_upload_bindless_descriptors(struct si_context *sctx)
1875 {
1876 if (!sctx->bindless_descriptors_dirty)
1877 return;
1878
1879 /* Wait for graphics/compute to be idle before updating the resident
1880 * descriptors directly in memory, in case the GPU is using them.
1881 */
1882 sctx->flags |= SI_CONTEXT_PS_PARTIAL_FLUSH |
1883 SI_CONTEXT_CS_PARTIAL_FLUSH;
1884 si_emit_cache_flush(sctx);
1885
1886 util_dynarray_foreach(&sctx->resident_tex_handles,
1887 struct si_texture_handle *, tex_handle) {
1888 unsigned desc_slot = (*tex_handle)->desc_slot;
1889
1890 if (!(*tex_handle)->desc_dirty)
1891 continue;
1892
1893 si_upload_bindless_descriptor(sctx, desc_slot, 16);
1894 (*tex_handle)->desc_dirty = false;
1895 }
1896
1897 util_dynarray_foreach(&sctx->resident_img_handles,
1898 struct si_image_handle *, img_handle) {
1899 unsigned desc_slot = (*img_handle)->desc_slot;
1900
1901 if (!(*img_handle)->desc_dirty)
1902 continue;
1903
1904 si_upload_bindless_descriptor(sctx, desc_slot, 8);
1905 (*img_handle)->desc_dirty = false;
1906 }
1907
1908 /* Invalidate L1 because it doesn't know that L2 changed. */
1909 sctx->flags |= SI_CONTEXT_INV_SCACHE;
1910 si_emit_cache_flush(sctx);
1911
1912 sctx->bindless_descriptors_dirty = false;
1913 }
1914
1915 /* Update mutable image descriptor fields of all resident textures. */
1916 static void si_update_bindless_texture_descriptor(struct si_context *sctx,
1917 struct si_texture_handle *tex_handle)
1918 {
1919 struct si_sampler_view *sview = (struct si_sampler_view *)tex_handle->view;
1920 struct si_descriptors *desc = &sctx->bindless_descriptors;
1921 unsigned desc_slot_offset = tex_handle->desc_slot * 16;
1922 uint32_t desc_list[16];
1923
1924 if (sview->base.texture->target == PIPE_BUFFER)
1925 return;
1926
1927 memcpy(desc_list, desc->list + desc_slot_offset, sizeof(desc_list));
1928 si_set_sampler_view_desc(sctx, sview, &tex_handle->sstate,
1929 desc->list + desc_slot_offset);
1930
1931 if (memcmp(desc_list, desc->list + desc_slot_offset,
1932 sizeof(desc_list))) {
1933 tex_handle->desc_dirty = true;
1934 sctx->bindless_descriptors_dirty = true;
1935 }
1936 }
1937
1938 static void si_update_bindless_image_descriptor(struct si_context *sctx,
1939 struct si_image_handle *img_handle)
1940 {
1941 struct si_descriptors *desc = &sctx->bindless_descriptors;
1942 unsigned desc_slot_offset = img_handle->desc_slot * 16;
1943 struct pipe_image_view *view = &img_handle->view;
1944 uint32_t desc_list[8];
1945
1946 if (view->resource->target == PIPE_BUFFER)
1947 return;
1948
1949 memcpy(desc_list, desc->list + desc_slot_offset,
1950 sizeof(desc_list));
1951 si_set_shader_image_desc(sctx, view, true,
1952 desc->list + desc_slot_offset, NULL);
1953
1954 if (memcmp(desc_list, desc->list + desc_slot_offset,
1955 sizeof(desc_list))) {
1956 img_handle->desc_dirty = true;
1957 sctx->bindless_descriptors_dirty = true;
1958 }
1959 }
1960
1961 static void si_update_all_resident_texture_descriptors(struct si_context *sctx)
1962 {
1963 util_dynarray_foreach(&sctx->resident_tex_handles,
1964 struct si_texture_handle *, tex_handle) {
1965 si_update_bindless_texture_descriptor(sctx, *tex_handle);
1966 }
1967
1968 util_dynarray_foreach(&sctx->resident_img_handles,
1969 struct si_image_handle *, img_handle) {
1970 si_update_bindless_image_descriptor(sctx, *img_handle);
1971 }
1972
1973 si_upload_bindless_descriptors(sctx);
1974 }
1975
1976 /* Update mutable image descriptor fields of all bound textures. */
1977 void si_update_all_texture_descriptors(struct si_context *sctx)
1978 {
1979 unsigned shader;
1980
1981 for (shader = 0; shader < SI_NUM_SHADERS; shader++) {
1982 struct si_samplers *samplers = &sctx->samplers[shader];
1983 struct si_images *images = &sctx->images[shader];
1984 unsigned mask;
1985
1986 /* Images. */
1987 mask = images->enabled_mask;
1988 while (mask) {
1989 unsigned i = u_bit_scan(&mask);
1990 struct pipe_image_view *view = &images->views[i];
1991
1992 if (!view->resource ||
1993 view->resource->target == PIPE_BUFFER)
1994 continue;
1995
1996 si_set_shader_image(sctx, shader, i, view, true);
1997 }
1998
1999 /* Sampler views. */
2000 mask = samplers->enabled_mask;
2001 while (mask) {
2002 unsigned i = u_bit_scan(&mask);
2003 struct pipe_sampler_view *view = samplers->views[i];
2004
2005 if (!view ||
2006 !view->texture ||
2007 view->texture->target == PIPE_BUFFER)
2008 continue;
2009
2010 si_set_sampler_view(sctx, shader, i,
2011 samplers->views[i], true);
2012 }
2013
2014 si_update_shader_needs_decompress_mask(sctx, shader);
2015 }
2016
2017 si_update_all_resident_texture_descriptors(sctx);
2018 si_update_ps_colorbuf0_slot(sctx);
2019 }
2020
2021 /* SHADER USER DATA */
2022
2023 static void si_mark_shader_pointers_dirty(struct si_context *sctx,
2024 unsigned shader)
2025 {
2026 sctx->shader_pointers_dirty |=
2027 u_bit_consecutive(SI_DESCS_FIRST_SHADER + shader * SI_NUM_SHADER_DESCS,
2028 SI_NUM_SHADER_DESCS);
2029
2030 if (shader == PIPE_SHADER_VERTEX)
2031 sctx->vertex_buffer_pointer_dirty = sctx->vb_descriptors_buffer != NULL;
2032
2033 si_mark_atom_dirty(sctx, &sctx->atoms.s.shader_pointers);
2034 }
2035
2036 static void si_shader_pointers_begin_new_cs(struct si_context *sctx)
2037 {
2038 sctx->shader_pointers_dirty = u_bit_consecutive(0, SI_NUM_DESCS);
2039 sctx->vertex_buffer_pointer_dirty = sctx->vb_descriptors_buffer != NULL;
2040 si_mark_atom_dirty(sctx, &sctx->atoms.s.shader_pointers);
2041 sctx->graphics_bindless_pointer_dirty = sctx->bindless_descriptors.buffer != NULL;
2042 sctx->compute_bindless_pointer_dirty = sctx->bindless_descriptors.buffer != NULL;
2043 }
2044
2045 /* Set a base register address for user data constants in the given shader.
2046 * This assigns a mapping from PIPE_SHADER_* to SPI_SHADER_USER_DATA_*.
2047 */
2048 static void si_set_user_data_base(struct si_context *sctx,
2049 unsigned shader, uint32_t new_base)
2050 {
2051 uint32_t *base = &sctx->shader_pointers.sh_base[shader];
2052
2053 if (*base != new_base) {
2054 *base = new_base;
2055
2056 if (new_base)
2057 si_mark_shader_pointers_dirty(sctx, shader);
2058
2059 /* Any change in enabled shader stages requires re-emitting
2060 * the VS state SGPR, because it contains the clamp_vertex_color
2061 * state, which can be done in VS, TES, and GS.
2062 */
2063 sctx->last_vs_state = ~0;
2064 }
2065 }
2066
2067 /* This must be called when these shaders are changed from non-NULL to NULL
2068 * and vice versa:
2069 * - geometry shader
2070 * - tessellation control shader
2071 * - tessellation evaluation shader
2072 */
2073 void si_shader_change_notify(struct si_context *sctx)
2074 {
2075 /* VS can be bound as VS, ES, or LS. */
2076 if (sctx->tes_shader.cso) {
2077 if (sctx->chip_class >= GFX9) {
2078 si_set_user_data_base(sctx, PIPE_SHADER_VERTEX,
2079 R_00B430_SPI_SHADER_USER_DATA_LS_0);
2080 } else {
2081 si_set_user_data_base(sctx, PIPE_SHADER_VERTEX,
2082 R_00B530_SPI_SHADER_USER_DATA_LS_0);
2083 }
2084 } else if (sctx->gs_shader.cso) {
2085 si_set_user_data_base(sctx, PIPE_SHADER_VERTEX,
2086 R_00B330_SPI_SHADER_USER_DATA_ES_0);
2087 } else {
2088 si_set_user_data_base(sctx, PIPE_SHADER_VERTEX,
2089 R_00B130_SPI_SHADER_USER_DATA_VS_0);
2090 }
2091
2092 /* TES can be bound as ES, VS, or not bound. */
2093 if (sctx->tes_shader.cso) {
2094 if (sctx->gs_shader.cso)
2095 si_set_user_data_base(sctx, PIPE_SHADER_TESS_EVAL,
2096 R_00B330_SPI_SHADER_USER_DATA_ES_0);
2097 else
2098 si_set_user_data_base(sctx, PIPE_SHADER_TESS_EVAL,
2099 R_00B130_SPI_SHADER_USER_DATA_VS_0);
2100 } else {
2101 si_set_user_data_base(sctx, PIPE_SHADER_TESS_EVAL, 0);
2102 }
2103 }
2104
2105 static void si_emit_shader_pointer_head(struct radeon_cmdbuf *cs,
2106 unsigned sh_offset,
2107 unsigned pointer_count)
2108 {
2109 radeon_emit(cs, PKT3(PKT3_SET_SH_REG, pointer_count, 0));
2110 radeon_emit(cs, (sh_offset - SI_SH_REG_OFFSET) >> 2);
2111 }
2112
2113 static void si_emit_shader_pointer_body(struct si_screen *sscreen,
2114 struct radeon_cmdbuf *cs,
2115 uint64_t va)
2116 {
2117 radeon_emit(cs, va);
2118
2119 assert(va == 0 || (va >> 32) == sscreen->info.address32_hi);
2120 }
2121
2122 static void si_emit_shader_pointer(struct si_context *sctx,
2123 struct si_descriptors *desc,
2124 unsigned sh_base)
2125 {
2126 struct radeon_cmdbuf *cs = sctx->gfx_cs;
2127 unsigned sh_offset = sh_base + desc->shader_userdata_offset;
2128
2129 si_emit_shader_pointer_head(cs, sh_offset, 1);
2130 si_emit_shader_pointer_body(sctx->screen, cs, desc->gpu_address);
2131 }
2132
2133 static void si_emit_consecutive_shader_pointers(struct si_context *sctx,
2134 unsigned pointer_mask,
2135 unsigned sh_base)
2136 {
2137 if (!sh_base)
2138 return;
2139
2140 struct radeon_cmdbuf *cs = sctx->gfx_cs;
2141 unsigned mask = sctx->shader_pointers_dirty & pointer_mask;
2142
2143 while (mask) {
2144 int start, count;
2145 u_bit_scan_consecutive_range(&mask, &start, &count);
2146
2147 struct si_descriptors *descs = &sctx->descriptors[start];
2148 unsigned sh_offset = sh_base + descs->shader_userdata_offset;
2149
2150 si_emit_shader_pointer_head(cs, sh_offset, count);
2151 for (int i = 0; i < count; i++)
2152 si_emit_shader_pointer_body(sctx->screen, cs,
2153 descs[i].gpu_address);
2154 }
2155 }
2156
2157 static void si_emit_global_shader_pointers(struct si_context *sctx,
2158 struct si_descriptors *descs)
2159 {
2160 if (sctx->chip_class == GFX9) {
2161 /* Broadcast it to all shader stages. */
2162 si_emit_shader_pointer(sctx, descs,
2163 R_00B530_SPI_SHADER_USER_DATA_COMMON_0);
2164 return;
2165 }
2166
2167 si_emit_shader_pointer(sctx, descs,
2168 R_00B030_SPI_SHADER_USER_DATA_PS_0);
2169 si_emit_shader_pointer(sctx, descs,
2170 R_00B130_SPI_SHADER_USER_DATA_VS_0);
2171 si_emit_shader_pointer(sctx, descs,
2172 R_00B330_SPI_SHADER_USER_DATA_ES_0);
2173 si_emit_shader_pointer(sctx, descs,
2174 R_00B230_SPI_SHADER_USER_DATA_GS_0);
2175 si_emit_shader_pointer(sctx, descs,
2176 R_00B430_SPI_SHADER_USER_DATA_HS_0);
2177 si_emit_shader_pointer(sctx, descs,
2178 R_00B530_SPI_SHADER_USER_DATA_LS_0);
2179 }
2180
2181 void si_emit_graphics_shader_pointers(struct si_context *sctx)
2182 {
2183 uint32_t *sh_base = sctx->shader_pointers.sh_base;
2184
2185 if (sctx->shader_pointers_dirty & (1 << SI_DESCS_RW_BUFFERS)) {
2186 si_emit_global_shader_pointers(sctx,
2187 &sctx->descriptors[SI_DESCS_RW_BUFFERS]);
2188 }
2189
2190 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(VERTEX),
2191 sh_base[PIPE_SHADER_VERTEX]);
2192 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(TESS_EVAL),
2193 sh_base[PIPE_SHADER_TESS_EVAL]);
2194 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(FRAGMENT),
2195 sh_base[PIPE_SHADER_FRAGMENT]);
2196 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(TESS_CTRL),
2197 sh_base[PIPE_SHADER_TESS_CTRL]);
2198 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(GEOMETRY),
2199 sh_base[PIPE_SHADER_GEOMETRY]);
2200
2201 sctx->shader_pointers_dirty &=
2202 ~u_bit_consecutive(SI_DESCS_RW_BUFFERS, SI_DESCS_FIRST_COMPUTE);
2203
2204 if (sctx->vertex_buffer_pointer_dirty) {
2205 struct radeon_cmdbuf *cs = sctx->gfx_cs;
2206
2207 /* Find the location of the VB descriptor pointer. */
2208 /* TODO: In the future, the pointer will be packed in unused
2209 * bits of the first 2 VB descriptors. */
2210 unsigned sh_dw_offset = SI_VS_NUM_USER_SGPR;
2211 if (sctx->chip_class >= GFX9) {
2212 if (sctx->tes_shader.cso)
2213 sh_dw_offset = GFX9_TCS_NUM_USER_SGPR;
2214 else if (sctx->gs_shader.cso)
2215 sh_dw_offset = GFX9_VSGS_NUM_USER_SGPR;
2216 }
2217
2218 unsigned sh_offset = sh_base[PIPE_SHADER_VERTEX] + sh_dw_offset * 4;
2219 si_emit_shader_pointer_head(cs, sh_offset, 1);
2220 si_emit_shader_pointer_body(sctx->screen, cs,
2221 sctx->vb_descriptors_buffer->gpu_address +
2222 sctx->vb_descriptors_offset);
2223 sctx->vertex_buffer_pointer_dirty = false;
2224 }
2225
2226 if (sctx->graphics_bindless_pointer_dirty) {
2227 si_emit_global_shader_pointers(sctx,
2228 &sctx->bindless_descriptors);
2229 sctx->graphics_bindless_pointer_dirty = false;
2230 }
2231 }
2232
2233 void si_emit_compute_shader_pointers(struct si_context *sctx)
2234 {
2235 unsigned base = R_00B900_COMPUTE_USER_DATA_0;
2236
2237 si_emit_consecutive_shader_pointers(sctx, SI_DESCS_SHADER_MASK(COMPUTE),
2238 R_00B900_COMPUTE_USER_DATA_0);
2239 sctx->shader_pointers_dirty &= ~SI_DESCS_SHADER_MASK(COMPUTE);
2240
2241 if (sctx->compute_bindless_pointer_dirty) {
2242 si_emit_shader_pointer(sctx, &sctx->bindless_descriptors, base);
2243 sctx->compute_bindless_pointer_dirty = false;
2244 }
2245 }
2246
2247 /* BINDLESS */
2248
2249 static void si_init_bindless_descriptors(struct si_context *sctx,
2250 struct si_descriptors *desc,
2251 short shader_userdata_rel_index,
2252 unsigned num_elements)
2253 {
2254 MAYBE_UNUSED unsigned desc_slot;
2255
2256 si_init_descriptors(desc, shader_userdata_rel_index, 16, num_elements);
2257 sctx->bindless_descriptors.num_active_slots = num_elements;
2258
2259 /* The first bindless descriptor is stored at slot 1, because 0 is not
2260 * considered to be a valid handle.
2261 */
2262 sctx->num_bindless_descriptors = 1;
2263
2264 /* Track which bindless slots are used (or not). */
2265 util_idalloc_init(&sctx->bindless_used_slots);
2266 util_idalloc_resize(&sctx->bindless_used_slots, num_elements);
2267
2268 /* Reserve slot 0 because it's an invalid handle for bindless. */
2269 desc_slot = util_idalloc_alloc(&sctx->bindless_used_slots);
2270 assert(desc_slot == 0);
2271 }
2272
2273 static void si_release_bindless_descriptors(struct si_context *sctx)
2274 {
2275 si_release_descriptors(&sctx->bindless_descriptors);
2276 util_idalloc_fini(&sctx->bindless_used_slots);
2277 }
2278
2279 static unsigned si_get_first_free_bindless_slot(struct si_context *sctx)
2280 {
2281 struct si_descriptors *desc = &sctx->bindless_descriptors;
2282 unsigned desc_slot;
2283
2284 desc_slot = util_idalloc_alloc(&sctx->bindless_used_slots);
2285 if (desc_slot >= desc->num_elements) {
2286 /* The array of bindless descriptors is full, resize it. */
2287 unsigned slot_size = desc->element_dw_size * 4;
2288 unsigned new_num_elements = desc->num_elements * 2;
2289
2290 desc->list = REALLOC(desc->list, desc->num_elements * slot_size,
2291 new_num_elements * slot_size);
2292 desc->num_elements = new_num_elements;
2293 desc->num_active_slots = new_num_elements;
2294 }
2295
2296 assert(desc_slot);
2297 return desc_slot;
2298 }
2299
2300 static unsigned
2301 si_create_bindless_descriptor(struct si_context *sctx, uint32_t *desc_list,
2302 unsigned size)
2303 {
2304 struct si_descriptors *desc = &sctx->bindless_descriptors;
2305 unsigned desc_slot, desc_slot_offset;
2306
2307 /* Find a free slot. */
2308 desc_slot = si_get_first_free_bindless_slot(sctx);
2309
2310 /* For simplicity, sampler and image bindless descriptors use fixed
2311 * 16-dword slots for now. Image descriptors only need 8-dword but this
2312 * doesn't really matter because no real apps use image handles.
2313 */
2314 desc_slot_offset = desc_slot * 16;
2315
2316 /* Copy the descriptor into the array. */
2317 memcpy(desc->list + desc_slot_offset, desc_list, size);
2318
2319 /* Re-upload the whole array of bindless descriptors into a new buffer.
2320 */
2321 if (!si_upload_descriptors(sctx, desc))
2322 return 0;
2323
2324 /* Make sure to re-emit the shader pointers for all stages. */
2325 sctx->graphics_bindless_pointer_dirty = true;
2326 sctx->compute_bindless_pointer_dirty = true;
2327
2328 return desc_slot;
2329 }
2330
2331 static void si_update_bindless_buffer_descriptor(struct si_context *sctx,
2332 unsigned desc_slot,
2333 struct pipe_resource *resource,
2334 uint64_t offset,
2335 bool *desc_dirty)
2336 {
2337 struct si_descriptors *desc = &sctx->bindless_descriptors;
2338 struct si_resource *buf = si_resource(resource);
2339 unsigned desc_slot_offset = desc_slot * 16;
2340 uint32_t *desc_list = desc->list + desc_slot_offset + 4;
2341 uint64_t old_desc_va;
2342
2343 assert(resource->target == PIPE_BUFFER);
2344
2345 /* Retrieve the old buffer addr from the descriptor. */
2346 old_desc_va = si_desc_extract_buffer_address(desc_list);
2347
2348 if (old_desc_va != buf->gpu_address + offset) {
2349 /* The buffer has been invalidated when the handle wasn't
2350 * resident, update the descriptor and the dirty flag.
2351 */
2352 si_set_buf_desc_address(buf, offset, &desc_list[0]);
2353
2354 *desc_dirty = true;
2355 }
2356 }
2357
2358 static uint64_t si_create_texture_handle(struct pipe_context *ctx,
2359 struct pipe_sampler_view *view,
2360 const struct pipe_sampler_state *state)
2361 {
2362 struct si_sampler_view *sview = (struct si_sampler_view *)view;
2363 struct si_context *sctx = (struct si_context *)ctx;
2364 struct si_texture_handle *tex_handle;
2365 struct si_sampler_state *sstate;
2366 uint32_t desc_list[16];
2367 uint64_t handle;
2368
2369 tex_handle = CALLOC_STRUCT(si_texture_handle);
2370 if (!tex_handle)
2371 return 0;
2372
2373 memset(desc_list, 0, sizeof(desc_list));
2374 si_init_descriptor_list(&desc_list[0], 16, 1, null_texture_descriptor);
2375
2376 sstate = ctx->create_sampler_state(ctx, state);
2377 if (!sstate) {
2378 FREE(tex_handle);
2379 return 0;
2380 }
2381
2382 si_set_sampler_view_desc(sctx, sview, sstate, &desc_list[0]);
2383 memcpy(&tex_handle->sstate, sstate, sizeof(*sstate));
2384 ctx->delete_sampler_state(ctx, sstate);
2385
2386 tex_handle->desc_slot = si_create_bindless_descriptor(sctx, desc_list,
2387 sizeof(desc_list));
2388 if (!tex_handle->desc_slot) {
2389 FREE(tex_handle);
2390 return 0;
2391 }
2392
2393 handle = tex_handle->desc_slot;
2394
2395 if (!_mesa_hash_table_insert(sctx->tex_handles,
2396 (void *)(uintptr_t)handle,
2397 tex_handle)) {
2398 FREE(tex_handle);
2399 return 0;
2400 }
2401
2402 pipe_sampler_view_reference(&tex_handle->view, view);
2403
2404 si_resource(sview->base.texture)->texture_handle_allocated = true;
2405
2406 return handle;
2407 }
2408
2409 static void si_delete_texture_handle(struct pipe_context *ctx, uint64_t handle)
2410 {
2411 struct si_context *sctx = (struct si_context *)ctx;
2412 struct si_texture_handle *tex_handle;
2413 struct hash_entry *entry;
2414
2415 entry = _mesa_hash_table_search(sctx->tex_handles,
2416 (void *)(uintptr_t)handle);
2417 if (!entry)
2418 return;
2419
2420 tex_handle = (struct si_texture_handle *)entry->data;
2421
2422 /* Allow this descriptor slot to be re-used. */
2423 util_idalloc_free(&sctx->bindless_used_slots, tex_handle->desc_slot);
2424
2425 pipe_sampler_view_reference(&tex_handle->view, NULL);
2426 _mesa_hash_table_remove(sctx->tex_handles, entry);
2427 FREE(tex_handle);
2428 }
2429
2430 static void si_make_texture_handle_resident(struct pipe_context *ctx,
2431 uint64_t handle, bool resident)
2432 {
2433 struct si_context *sctx = (struct si_context *)ctx;
2434 struct si_texture_handle *tex_handle;
2435 struct si_sampler_view *sview;
2436 struct hash_entry *entry;
2437
2438 entry = _mesa_hash_table_search(sctx->tex_handles,
2439 (void *)(uintptr_t)handle);
2440 if (!entry)
2441 return;
2442
2443 tex_handle = (struct si_texture_handle *)entry->data;
2444 sview = (struct si_sampler_view *)tex_handle->view;
2445
2446 if (resident) {
2447 if (sview->base.texture->target != PIPE_BUFFER) {
2448 struct si_texture *tex =
2449 (struct si_texture *)sview->base.texture;
2450
2451 if (depth_needs_decompression(tex)) {
2452 util_dynarray_append(
2453 &sctx->resident_tex_needs_depth_decompress,
2454 struct si_texture_handle *,
2455 tex_handle);
2456 }
2457
2458 if (color_needs_decompression(tex)) {
2459 util_dynarray_append(
2460 &sctx->resident_tex_needs_color_decompress,
2461 struct si_texture_handle *,
2462 tex_handle);
2463 }
2464
2465 if (tex->dcc_offset &&
2466 p_atomic_read(&tex->framebuffers_bound))
2467 sctx->need_check_render_feedback = true;
2468
2469 si_update_bindless_texture_descriptor(sctx, tex_handle);
2470 } else {
2471 si_update_bindless_buffer_descriptor(sctx,
2472 tex_handle->desc_slot,
2473 sview->base.texture,
2474 sview->base.u.buf.offset,
2475 &tex_handle->desc_dirty);
2476 }
2477
2478 /* Re-upload the descriptor if it has been updated while it
2479 * wasn't resident.
2480 */
2481 if (tex_handle->desc_dirty)
2482 sctx->bindless_descriptors_dirty = true;
2483
2484 /* Add the texture handle to the per-context list. */
2485 util_dynarray_append(&sctx->resident_tex_handles,
2486 struct si_texture_handle *, tex_handle);
2487
2488 /* Add the buffers to the current CS in case si_begin_new_cs()
2489 * is not going to be called.
2490 */
2491 si_sampler_view_add_buffer(sctx, sview->base.texture,
2492 RADEON_USAGE_READ,
2493 sview->is_stencil_sampler, false);
2494 } else {
2495 /* Remove the texture handle from the per-context list. */
2496 util_dynarray_delete_unordered(&sctx->resident_tex_handles,
2497 struct si_texture_handle *,
2498 tex_handle);
2499
2500 if (sview->base.texture->target != PIPE_BUFFER) {
2501 util_dynarray_delete_unordered(
2502 &sctx->resident_tex_needs_depth_decompress,
2503 struct si_texture_handle *, tex_handle);
2504
2505 util_dynarray_delete_unordered(
2506 &sctx->resident_tex_needs_color_decompress,
2507 struct si_texture_handle *, tex_handle);
2508 }
2509 }
2510 }
2511
2512 static uint64_t si_create_image_handle(struct pipe_context *ctx,
2513 const struct pipe_image_view *view)
2514 {
2515 struct si_context *sctx = (struct si_context *)ctx;
2516 struct si_image_handle *img_handle;
2517 uint32_t desc_list[8];
2518 uint64_t handle;
2519
2520 if (!view || !view->resource)
2521 return 0;
2522
2523 img_handle = CALLOC_STRUCT(si_image_handle);
2524 if (!img_handle)
2525 return 0;
2526
2527 memset(desc_list, 0, sizeof(desc_list));
2528 si_init_descriptor_list(&desc_list[0], 8, 1, null_image_descriptor);
2529
2530 si_set_shader_image_desc(sctx, view, false, &desc_list[0], NULL);
2531
2532 img_handle->desc_slot = si_create_bindless_descriptor(sctx, desc_list,
2533 sizeof(desc_list));
2534 if (!img_handle->desc_slot) {
2535 FREE(img_handle);
2536 return 0;
2537 }
2538
2539 handle = img_handle->desc_slot;
2540
2541 if (!_mesa_hash_table_insert(sctx->img_handles,
2542 (void *)(uintptr_t)handle,
2543 img_handle)) {
2544 FREE(img_handle);
2545 return 0;
2546 }
2547
2548 util_copy_image_view(&img_handle->view, view);
2549
2550 si_resource(view->resource)->image_handle_allocated = true;
2551
2552 return handle;
2553 }
2554
2555 static void si_delete_image_handle(struct pipe_context *ctx, uint64_t handle)
2556 {
2557 struct si_context *sctx = (struct si_context *)ctx;
2558 struct si_image_handle *img_handle;
2559 struct hash_entry *entry;
2560
2561 entry = _mesa_hash_table_search(sctx->img_handles,
2562 (void *)(uintptr_t)handle);
2563 if (!entry)
2564 return;
2565
2566 img_handle = (struct si_image_handle *)entry->data;
2567
2568 util_copy_image_view(&img_handle->view, NULL);
2569 _mesa_hash_table_remove(sctx->img_handles, entry);
2570 FREE(img_handle);
2571 }
2572
2573 static void si_make_image_handle_resident(struct pipe_context *ctx,
2574 uint64_t handle, unsigned access,
2575 bool resident)
2576 {
2577 struct si_context *sctx = (struct si_context *)ctx;
2578 struct si_image_handle *img_handle;
2579 struct pipe_image_view *view;
2580 struct si_resource *res;
2581 struct hash_entry *entry;
2582
2583 entry = _mesa_hash_table_search(sctx->img_handles,
2584 (void *)(uintptr_t)handle);
2585 if (!entry)
2586 return;
2587
2588 img_handle = (struct si_image_handle *)entry->data;
2589 view = &img_handle->view;
2590 res = si_resource(view->resource);
2591
2592 if (resident) {
2593 if (res->b.b.target != PIPE_BUFFER) {
2594 struct si_texture *tex = (struct si_texture *)res;
2595 unsigned level = view->u.tex.level;
2596
2597 if (color_needs_decompression(tex)) {
2598 util_dynarray_append(
2599 &sctx->resident_img_needs_color_decompress,
2600 struct si_image_handle *,
2601 img_handle);
2602 }
2603
2604 if (vi_dcc_enabled(tex, level) &&
2605 p_atomic_read(&tex->framebuffers_bound))
2606 sctx->need_check_render_feedback = true;
2607
2608 si_update_bindless_image_descriptor(sctx, img_handle);
2609 } else {
2610 si_update_bindless_buffer_descriptor(sctx,
2611 img_handle->desc_slot,
2612 view->resource,
2613 view->u.buf.offset,
2614 &img_handle->desc_dirty);
2615 }
2616
2617 /* Re-upload the descriptor if it has been updated while it
2618 * wasn't resident.
2619 */
2620 if (img_handle->desc_dirty)
2621 sctx->bindless_descriptors_dirty = true;
2622
2623 /* Add the image handle to the per-context list. */
2624 util_dynarray_append(&sctx->resident_img_handles,
2625 struct si_image_handle *, img_handle);
2626
2627 /* Add the buffers to the current CS in case si_begin_new_cs()
2628 * is not going to be called.
2629 */
2630 si_sampler_view_add_buffer(sctx, view->resource,
2631 (access & PIPE_IMAGE_ACCESS_WRITE) ?
2632 RADEON_USAGE_READWRITE :
2633 RADEON_USAGE_READ, false, false);
2634 } else {
2635 /* Remove the image handle from the per-context list. */
2636 util_dynarray_delete_unordered(&sctx->resident_img_handles,
2637 struct si_image_handle *,
2638 img_handle);
2639
2640 if (res->b.b.target != PIPE_BUFFER) {
2641 util_dynarray_delete_unordered(
2642 &sctx->resident_img_needs_color_decompress,
2643 struct si_image_handle *,
2644 img_handle);
2645 }
2646 }
2647 }
2648
2649 static void si_resident_buffers_add_all_to_bo_list(struct si_context *sctx)
2650 {
2651 unsigned num_resident_tex_handles, num_resident_img_handles;
2652
2653 num_resident_tex_handles = sctx->resident_tex_handles.size /
2654 sizeof(struct si_texture_handle *);
2655 num_resident_img_handles = sctx->resident_img_handles.size /
2656 sizeof(struct si_image_handle *);
2657
2658 /* Add all resident texture handles. */
2659 util_dynarray_foreach(&sctx->resident_tex_handles,
2660 struct si_texture_handle *, tex_handle) {
2661 struct si_sampler_view *sview =
2662 (struct si_sampler_view *)(*tex_handle)->view;
2663
2664 si_sampler_view_add_buffer(sctx, sview->base.texture,
2665 RADEON_USAGE_READ,
2666 sview->is_stencil_sampler, false);
2667 }
2668
2669 /* Add all resident image handles. */
2670 util_dynarray_foreach(&sctx->resident_img_handles,
2671 struct si_image_handle *, img_handle) {
2672 struct pipe_image_view *view = &(*img_handle)->view;
2673
2674 si_sampler_view_add_buffer(sctx, view->resource,
2675 RADEON_USAGE_READWRITE,
2676 false, false);
2677 }
2678
2679 sctx->num_resident_handles += num_resident_tex_handles +
2680 num_resident_img_handles;
2681 assert(sctx->bo_list_add_all_resident_resources);
2682 sctx->bo_list_add_all_resident_resources = false;
2683 }
2684
2685 /* INIT/DEINIT/UPLOAD */
2686
2687 void si_init_all_descriptors(struct si_context *sctx)
2688 {
2689 int i;
2690 unsigned first_shader =
2691 sctx->has_graphics ? 0 : PIPE_SHADER_COMPUTE;
2692
2693 for (i = first_shader; i < SI_NUM_SHADERS; i++) {
2694 bool is_2nd = sctx->chip_class >= GFX9 &&
2695 (i == PIPE_SHADER_TESS_CTRL ||
2696 i == PIPE_SHADER_GEOMETRY);
2697 unsigned num_sampler_slots = SI_NUM_IMAGES / 2 + SI_NUM_SAMPLERS;
2698 unsigned num_buffer_slots = SI_NUM_SHADER_BUFFERS + SI_NUM_CONST_BUFFERS;
2699 int rel_dw_offset;
2700 struct si_descriptors *desc;
2701
2702 if (is_2nd) {
2703 if (i == PIPE_SHADER_TESS_CTRL) {
2704 rel_dw_offset = (R_00B408_SPI_SHADER_USER_DATA_ADDR_LO_HS -
2705 R_00B430_SPI_SHADER_USER_DATA_LS_0) / 4;
2706 } else { /* PIPE_SHADER_GEOMETRY */
2707 rel_dw_offset = (R_00B208_SPI_SHADER_USER_DATA_ADDR_LO_GS -
2708 R_00B330_SPI_SHADER_USER_DATA_ES_0) / 4;
2709 }
2710 } else {
2711 rel_dw_offset = SI_SGPR_CONST_AND_SHADER_BUFFERS;
2712 }
2713 desc = si_const_and_shader_buffer_descriptors(sctx, i);
2714 si_init_buffer_resources(&sctx->const_and_shader_buffers[i], desc,
2715 num_buffer_slots, rel_dw_offset,
2716 RADEON_PRIO_SHADER_RW_BUFFER,
2717 RADEON_PRIO_CONST_BUFFER);
2718 desc->slot_index_to_bind_directly = si_get_constbuf_slot(0);
2719
2720 if (is_2nd) {
2721 if (i == PIPE_SHADER_TESS_CTRL) {
2722 rel_dw_offset = (R_00B40C_SPI_SHADER_USER_DATA_ADDR_HI_HS -
2723 R_00B430_SPI_SHADER_USER_DATA_LS_0) / 4;
2724 } else { /* PIPE_SHADER_GEOMETRY */
2725 rel_dw_offset = (R_00B20C_SPI_SHADER_USER_DATA_ADDR_HI_GS -
2726 R_00B330_SPI_SHADER_USER_DATA_ES_0) / 4;
2727 }
2728 } else {
2729 rel_dw_offset = SI_SGPR_SAMPLERS_AND_IMAGES;
2730 }
2731
2732 desc = si_sampler_and_image_descriptors(sctx, i);
2733 si_init_descriptors(desc, rel_dw_offset, 16, num_sampler_slots);
2734
2735 int j;
2736 for (j = 0; j < SI_NUM_IMAGES; j++)
2737 memcpy(desc->list + j * 8, null_image_descriptor, 8 * 4);
2738 for (; j < SI_NUM_IMAGES + SI_NUM_SAMPLERS * 2; j++)
2739 memcpy(desc->list + j * 8, null_texture_descriptor, 8 * 4);
2740 }
2741
2742 si_init_buffer_resources(&sctx->rw_buffers,
2743 &sctx->descriptors[SI_DESCS_RW_BUFFERS],
2744 SI_NUM_RW_BUFFERS, SI_SGPR_RW_BUFFERS,
2745 /* The second priority is used by
2746 * const buffers in RW buffer slots. */
2747 RADEON_PRIO_SHADER_RINGS, RADEON_PRIO_CONST_BUFFER);
2748 sctx->descriptors[SI_DESCS_RW_BUFFERS].num_active_slots = SI_NUM_RW_BUFFERS;
2749
2750 /* Initialize an array of 1024 bindless descriptors, when the limit is
2751 * reached, just make it larger and re-upload the whole array.
2752 */
2753 si_init_bindless_descriptors(sctx, &sctx->bindless_descriptors,
2754 SI_SGPR_BINDLESS_SAMPLERS_AND_IMAGES,
2755 1024);
2756
2757 sctx->descriptors_dirty = u_bit_consecutive(0, SI_NUM_DESCS);
2758
2759 /* Set pipe_context functions. */
2760 sctx->b.bind_sampler_states = si_bind_sampler_states;
2761 sctx->b.set_shader_images = si_set_shader_images;
2762 sctx->b.set_constant_buffer = si_pipe_set_constant_buffer;
2763 sctx->b.set_shader_buffers = si_set_shader_buffers;
2764 sctx->b.set_sampler_views = si_set_sampler_views;
2765 sctx->b.create_texture_handle = si_create_texture_handle;
2766 sctx->b.delete_texture_handle = si_delete_texture_handle;
2767 sctx->b.make_texture_handle_resident = si_make_texture_handle_resident;
2768 sctx->b.create_image_handle = si_create_image_handle;
2769 sctx->b.delete_image_handle = si_delete_image_handle;
2770 sctx->b.make_image_handle_resident = si_make_image_handle_resident;
2771
2772 if (!sctx->has_graphics)
2773 return;
2774
2775 sctx->b.set_polygon_stipple = si_set_polygon_stipple;
2776
2777 /* Shader user data. */
2778 sctx->atoms.s.shader_pointers.emit = si_emit_graphics_shader_pointers;
2779
2780 /* Set default and immutable mappings. */
2781 si_set_user_data_base(sctx, PIPE_SHADER_VERTEX, R_00B130_SPI_SHADER_USER_DATA_VS_0);
2782
2783 if (sctx->chip_class >= GFX9) {
2784 si_set_user_data_base(sctx, PIPE_SHADER_TESS_CTRL,
2785 R_00B430_SPI_SHADER_USER_DATA_LS_0);
2786 si_set_user_data_base(sctx, PIPE_SHADER_GEOMETRY,
2787 R_00B330_SPI_SHADER_USER_DATA_ES_0);
2788 } else {
2789 si_set_user_data_base(sctx, PIPE_SHADER_TESS_CTRL,
2790 R_00B430_SPI_SHADER_USER_DATA_HS_0);
2791 si_set_user_data_base(sctx, PIPE_SHADER_GEOMETRY,
2792 R_00B230_SPI_SHADER_USER_DATA_GS_0);
2793 }
2794 si_set_user_data_base(sctx, PIPE_SHADER_FRAGMENT, R_00B030_SPI_SHADER_USER_DATA_PS_0);
2795 }
2796
2797 static bool si_upload_shader_descriptors(struct si_context *sctx, unsigned mask)
2798 {
2799 unsigned dirty = sctx->descriptors_dirty & mask;
2800
2801 /* Assume nothing will go wrong: */
2802 sctx->shader_pointers_dirty |= dirty;
2803
2804 while (dirty) {
2805 unsigned i = u_bit_scan(&dirty);
2806
2807 if (!si_upload_descriptors(sctx, &sctx->descriptors[i]))
2808 return false;
2809 }
2810
2811 sctx->descriptors_dirty &= ~mask;
2812
2813 si_upload_bindless_descriptors(sctx);
2814
2815 return true;
2816 }
2817
2818 bool si_upload_graphics_shader_descriptors(struct si_context *sctx)
2819 {
2820 const unsigned mask = u_bit_consecutive(0, SI_DESCS_FIRST_COMPUTE);
2821 return si_upload_shader_descriptors(sctx, mask);
2822 }
2823
2824 bool si_upload_compute_shader_descriptors(struct si_context *sctx)
2825 {
2826 /* Does not update rw_buffers as that is not needed for compute shaders
2827 * and the input buffer is using the same SGPR's anyway.
2828 */
2829 const unsigned mask = u_bit_consecutive(SI_DESCS_FIRST_COMPUTE,
2830 SI_NUM_DESCS - SI_DESCS_FIRST_COMPUTE);
2831 return si_upload_shader_descriptors(sctx, mask);
2832 }
2833
2834 void si_release_all_descriptors(struct si_context *sctx)
2835 {
2836 int i;
2837
2838 for (i = 0; i < SI_NUM_SHADERS; i++) {
2839 si_release_buffer_resources(&sctx->const_and_shader_buffers[i],
2840 si_const_and_shader_buffer_descriptors(sctx, i));
2841 si_release_sampler_views(&sctx->samplers[i]);
2842 si_release_image_views(&sctx->images[i]);
2843 }
2844 si_release_buffer_resources(&sctx->rw_buffers,
2845 &sctx->descriptors[SI_DESCS_RW_BUFFERS]);
2846 for (i = 0; i < SI_NUM_VERTEX_BUFFERS; i++)
2847 pipe_vertex_buffer_unreference(&sctx->vertex_buffer[i]);
2848
2849 for (i = 0; i < SI_NUM_DESCS; ++i)
2850 si_release_descriptors(&sctx->descriptors[i]);
2851
2852 si_resource_reference(&sctx->vb_descriptors_buffer, NULL);
2853 sctx->vb_descriptors_gpu_list = NULL; /* points into a mapped buffer */
2854
2855 si_release_bindless_descriptors(sctx);
2856 }
2857
2858 void si_gfx_resources_add_all_to_bo_list(struct si_context *sctx)
2859 {
2860 for (unsigned i = 0; i < SI_NUM_GRAPHICS_SHADERS; i++) {
2861 si_buffer_resources_begin_new_cs(sctx, &sctx->const_and_shader_buffers[i]);
2862 si_sampler_views_begin_new_cs(sctx, &sctx->samplers[i]);
2863 si_image_views_begin_new_cs(sctx, &sctx->images[i]);
2864 }
2865 si_buffer_resources_begin_new_cs(sctx, &sctx->rw_buffers);
2866 si_vertex_buffers_begin_new_cs(sctx);
2867
2868 if (sctx->bo_list_add_all_resident_resources)
2869 si_resident_buffers_add_all_to_bo_list(sctx);
2870
2871 assert(sctx->bo_list_add_all_gfx_resources);
2872 sctx->bo_list_add_all_gfx_resources = false;
2873 }
2874
2875 void si_compute_resources_add_all_to_bo_list(struct si_context *sctx)
2876 {
2877 unsigned sh = PIPE_SHADER_COMPUTE;
2878
2879 si_buffer_resources_begin_new_cs(sctx, &sctx->const_and_shader_buffers[sh]);
2880 si_sampler_views_begin_new_cs(sctx, &sctx->samplers[sh]);
2881 si_image_views_begin_new_cs(sctx, &sctx->images[sh]);
2882 si_buffer_resources_begin_new_cs(sctx, &sctx->rw_buffers);
2883
2884 if (sctx->bo_list_add_all_resident_resources)
2885 si_resident_buffers_add_all_to_bo_list(sctx);
2886
2887 assert(sctx->bo_list_add_all_compute_resources);
2888 sctx->bo_list_add_all_compute_resources = false;
2889 }
2890
2891 void si_all_descriptors_begin_new_cs(struct si_context *sctx)
2892 {
2893 for (unsigned i = 0; i < SI_NUM_DESCS; ++i)
2894 si_descriptors_begin_new_cs(sctx, &sctx->descriptors[i]);
2895 si_descriptors_begin_new_cs(sctx, &sctx->bindless_descriptors);
2896
2897 si_shader_pointers_begin_new_cs(sctx);
2898
2899 sctx->bo_list_add_all_resident_resources = true;
2900 sctx->bo_list_add_all_gfx_resources = true;
2901 sctx->bo_list_add_all_compute_resources = true;
2902 }
2903
2904 void si_set_active_descriptors(struct si_context *sctx, unsigned desc_idx,
2905 uint64_t new_active_mask)
2906 {
2907 struct si_descriptors *desc = &sctx->descriptors[desc_idx];
2908
2909 /* Ignore no-op updates and updates that disable all slots. */
2910 if (!new_active_mask ||
2911 new_active_mask == u_bit_consecutive64(desc->first_active_slot,
2912 desc->num_active_slots))
2913 return;
2914
2915 int first, count;
2916 u_bit_scan_consecutive_range64(&new_active_mask, &first, &count);
2917 assert(new_active_mask == 0);
2918
2919 /* Upload/dump descriptors if slots are being enabled. */
2920 if (first < desc->first_active_slot ||
2921 first + count > desc->first_active_slot + desc->num_active_slots)
2922 sctx->descriptors_dirty |= 1u << desc_idx;
2923
2924 desc->first_active_slot = first;
2925 desc->num_active_slots = count;
2926 }
2927
2928 void si_set_active_descriptors_for_shader(struct si_context *sctx,
2929 struct si_shader_selector *sel)
2930 {
2931 if (!sel)
2932 return;
2933
2934 si_set_active_descriptors(sctx,
2935 si_const_and_shader_buffer_descriptors_idx(sel->type),
2936 sel->active_const_and_shader_buffers);
2937 si_set_active_descriptors(sctx,
2938 si_sampler_and_image_descriptors_idx(sel->type),
2939 sel->active_samplers_and_images);
2940 }