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