bf926288aa025504da436c1581ec2dd1e5defa26
[mesa.git] / src / amd / vulkan / radv_descriptor_set.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "util/mesa-sha1.h"
31 #include "radv_private.h"
32 #include "sid.h"
33 #include "vk_format.h"
34 #include "vk_util.h"
35
36
37 static bool has_equal_immutable_samplers(const VkSampler *samplers, uint32_t count)
38 {
39 if (!samplers)
40 return false;
41 for(uint32_t i = 1; i < count; ++i) {
42 if (memcmp(radv_sampler_from_handle(samplers[0])->state,
43 radv_sampler_from_handle(samplers[i])->state, 16)) {
44 return false;
45 }
46 }
47 return true;
48 }
49
50 static int binding_compare(const void* av, const void *bv)
51 {
52 const VkDescriptorSetLayoutBinding *a = (const VkDescriptorSetLayoutBinding*)av;
53 const VkDescriptorSetLayoutBinding *b = (const VkDescriptorSetLayoutBinding*)bv;
54
55 return (a->binding < b->binding) ? -1 : (a->binding > b->binding) ? 1 : 0;
56 }
57
58 static VkDescriptorSetLayoutBinding *
59 create_sorted_bindings(const VkDescriptorSetLayoutBinding *bindings, unsigned count) {
60 VkDescriptorSetLayoutBinding *sorted_bindings = malloc(count * sizeof(VkDescriptorSetLayoutBinding));
61 if (!sorted_bindings)
62 return NULL;
63
64 memcpy(sorted_bindings, bindings, count * sizeof(VkDescriptorSetLayoutBinding));
65
66 qsort(sorted_bindings, count, sizeof(VkDescriptorSetLayoutBinding), binding_compare);
67
68 return sorted_bindings;
69 }
70
71 VkResult radv_CreateDescriptorSetLayout(
72 VkDevice _device,
73 const VkDescriptorSetLayoutCreateInfo* pCreateInfo,
74 const VkAllocationCallbacks* pAllocator,
75 VkDescriptorSetLayout* pSetLayout)
76 {
77 RADV_FROM_HANDLE(radv_device, device, _device);
78 struct radv_descriptor_set_layout *set_layout;
79
80 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO);
81 const VkDescriptorSetLayoutBindingFlagsCreateInfoEXT *variable_flags =
82 vk_find_struct_const(pCreateInfo->pNext, DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT);
83
84 uint32_t max_binding = 0;
85 uint32_t immutable_sampler_count = 0;
86 uint32_t ycbcr_sampler_count = 0;
87 for (uint32_t j = 0; j < pCreateInfo->bindingCount; j++) {
88 max_binding = MAX2(max_binding, pCreateInfo->pBindings[j].binding);
89 if ((pCreateInfo->pBindings[j].descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER ||
90 pCreateInfo->pBindings[j].descriptorType == VK_DESCRIPTOR_TYPE_SAMPLER) &&
91 pCreateInfo->pBindings[j].pImmutableSamplers) {
92 immutable_sampler_count += pCreateInfo->pBindings[j].descriptorCount;
93
94 bool has_ycbcr_sampler = false;
95 for (unsigned i = 0; i < pCreateInfo->pBindings[j].descriptorCount; ++i) {
96 if (radv_sampler_from_handle(pCreateInfo->pBindings[j].pImmutableSamplers[i])->ycbcr_sampler)
97 has_ycbcr_sampler = true;
98 }
99
100 if (has_ycbcr_sampler)
101 ycbcr_sampler_count += pCreateInfo->pBindings[j].descriptorCount;
102 }
103 }
104
105 uint32_t samplers_offset = sizeof(struct radv_descriptor_set_layout) +
106 (max_binding + 1) * sizeof(set_layout->binding[0]);
107 size_t size = samplers_offset + immutable_sampler_count * 4 * sizeof(uint32_t);
108 if (ycbcr_sampler_count > 0) {
109 size += ycbcr_sampler_count * sizeof(struct radv_sampler_ycbcr_conversion) + (max_binding + 1) * sizeof(uint32_t);
110 }
111
112 set_layout = vk_zalloc2(&device->alloc, pAllocator, size, 8,
113 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
114 if (!set_layout)
115 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
116
117 set_layout->flags = pCreateInfo->flags;
118 set_layout->layout_size = size;
119
120 /* We just allocate all the samplers at the end of the struct */
121 uint32_t *samplers = (uint32_t*)&set_layout->binding[max_binding + 1];
122 struct radv_sampler_ycbcr_conversion *ycbcr_samplers = NULL;
123 uint32_t *ycbcr_sampler_offsets = NULL;
124
125 if (ycbcr_sampler_count > 0) {
126 ycbcr_sampler_offsets = samplers + 4 * immutable_sampler_count;
127 set_layout->ycbcr_sampler_offsets_offset = (char*)ycbcr_sampler_offsets - (char*)set_layout;
128 ycbcr_samplers = (struct radv_sampler_ycbcr_conversion *)(ycbcr_sampler_offsets + max_binding + 1);
129 } else
130 set_layout->ycbcr_sampler_offsets_offset = 0;
131
132 VkDescriptorSetLayoutBinding *bindings = create_sorted_bindings(pCreateInfo->pBindings,
133 pCreateInfo->bindingCount);
134 if (!bindings) {
135 vk_free2(&device->alloc, pAllocator, set_layout);
136 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
137 }
138
139 set_layout->binding_count = max_binding + 1;
140 set_layout->shader_stages = 0;
141 set_layout->dynamic_shader_stages = 0;
142 set_layout->has_immutable_samplers = false;
143 set_layout->size = 0;
144
145 memset(set_layout->binding, 0, size - sizeof(struct radv_descriptor_set_layout));
146
147 uint32_t buffer_count = 0;
148 uint32_t dynamic_offset_count = 0;
149
150 for (uint32_t j = 0; j < pCreateInfo->bindingCount; j++) {
151 const VkDescriptorSetLayoutBinding *binding = bindings + j;
152 uint32_t b = binding->binding;
153 uint32_t alignment;
154 unsigned binding_buffer_count = 0;
155 uint32_t descriptor_count = binding->descriptorCount;
156 bool has_ycbcr_sampler = false;
157
158 /* main image + fmask */
159 uint32_t max_sampled_image_descriptors = 2;
160
161 if (binding->descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER &&
162 binding->pImmutableSamplers) {
163 for (unsigned i = 0; i < binding->descriptorCount; ++i) {
164 struct radv_sampler_ycbcr_conversion *conversion =
165 radv_sampler_from_handle(binding->pImmutableSamplers[i])->ycbcr_sampler;
166
167 if (conversion) {
168 has_ycbcr_sampler = true;
169 max_sampled_image_descriptors = MAX2(max_sampled_image_descriptors,
170 vk_format_get_plane_count(conversion->format));
171 }
172 }
173 }
174
175 switch (binding->descriptorType) {
176 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
177 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
178 assert(!(pCreateInfo->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
179 set_layout->binding[b].dynamic_offset_count = 1;
180 set_layout->dynamic_shader_stages |= binding->stageFlags;
181 set_layout->binding[b].size = 0;
182 binding_buffer_count = 1;
183 alignment = 1;
184 break;
185 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
186 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
187 case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
188 case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
189 set_layout->binding[b].size = 16;
190 binding_buffer_count = 1;
191 alignment = 16;
192 break;
193 case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
194 case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
195 case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
196 /* main descriptor + fmask descriptor */
197 set_layout->binding[b].size = 64;
198 binding_buffer_count = 1;
199 alignment = 32;
200 break;
201 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
202 /* main descriptor + fmask descriptor + sampler */
203 set_layout->binding[b].size = 96;
204 binding_buffer_count = 1;
205 alignment = 32;
206 break;
207 case VK_DESCRIPTOR_TYPE_SAMPLER:
208 set_layout->binding[b].size = 16;
209 alignment = 16;
210 break;
211 case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT:
212 alignment = 16;
213 set_layout->binding[b].size = descriptor_count;
214 descriptor_count = 1;
215 break;
216 default:
217 unreachable("unknown descriptor type\n");
218 break;
219 }
220
221 set_layout->size = align(set_layout->size, alignment);
222 set_layout->binding[b].type = binding->descriptorType;
223 set_layout->binding[b].array_size = descriptor_count;
224 set_layout->binding[b].offset = set_layout->size;
225 set_layout->binding[b].buffer_offset = buffer_count;
226 set_layout->binding[b].dynamic_offset_offset = dynamic_offset_count;
227
228 if (variable_flags && binding->binding < variable_flags->bindingCount &&
229 (variable_flags->pBindingFlags[binding->binding] & VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT)) {
230 assert(!binding->pImmutableSamplers); /* Terribly ill defined how many samplers are valid */
231 assert(binding->binding == max_binding);
232
233 set_layout->has_variable_descriptors = true;
234 }
235
236 if ((binding->descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER ||
237 binding->descriptorType == VK_DESCRIPTOR_TYPE_SAMPLER) &&
238 binding->pImmutableSamplers) {
239 set_layout->binding[b].immutable_samplers_offset = samplers_offset;
240 set_layout->binding[b].immutable_samplers_equal =
241 has_equal_immutable_samplers(binding->pImmutableSamplers, binding->descriptorCount);
242 set_layout->has_immutable_samplers = true;
243
244
245 for (uint32_t i = 0; i < binding->descriptorCount; i++)
246 memcpy(samplers + 4 * i, &radv_sampler_from_handle(binding->pImmutableSamplers[i])->state, 16);
247
248 /* Don't reserve space for the samplers if they're not accessed. */
249 if (set_layout->binding[b].immutable_samplers_equal) {
250 if (binding->descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER &&
251 max_sampled_image_descriptors <= 2)
252 set_layout->binding[b].size -= 32;
253 else if (binding->descriptorType == VK_DESCRIPTOR_TYPE_SAMPLER)
254 set_layout->binding[b].size -= 16;
255 }
256 samplers += 4 * binding->descriptorCount;
257 samplers_offset += 4 * sizeof(uint32_t) * binding->descriptorCount;
258
259 if (has_ycbcr_sampler) {
260 ycbcr_sampler_offsets[b] = (const char*)ycbcr_samplers - (const char*)set_layout;
261 for (uint32_t i = 0; i < binding->descriptorCount; i++) {
262 if (radv_sampler_from_handle(binding->pImmutableSamplers[i])->ycbcr_sampler)
263 ycbcr_samplers[i] = *radv_sampler_from_handle(binding->pImmutableSamplers[i])->ycbcr_sampler;
264 else
265 ycbcr_samplers[i].format = VK_FORMAT_UNDEFINED;
266 }
267 ycbcr_samplers += binding->descriptorCount;
268 }
269 }
270
271 set_layout->size += descriptor_count * set_layout->binding[b].size;
272 buffer_count += descriptor_count * binding_buffer_count;
273 dynamic_offset_count += descriptor_count *
274 set_layout->binding[b].dynamic_offset_count;
275 set_layout->shader_stages |= binding->stageFlags;
276 }
277
278 free(bindings);
279
280 set_layout->buffer_count = buffer_count;
281 set_layout->dynamic_offset_count = dynamic_offset_count;
282
283 *pSetLayout = radv_descriptor_set_layout_to_handle(set_layout);
284
285 return VK_SUCCESS;
286 }
287
288 void radv_DestroyDescriptorSetLayout(
289 VkDevice _device,
290 VkDescriptorSetLayout _set_layout,
291 const VkAllocationCallbacks* pAllocator)
292 {
293 RADV_FROM_HANDLE(radv_device, device, _device);
294 RADV_FROM_HANDLE(radv_descriptor_set_layout, set_layout, _set_layout);
295
296 if (!set_layout)
297 return;
298
299 vk_free2(&device->alloc, pAllocator, set_layout);
300 }
301
302 void radv_GetDescriptorSetLayoutSupport(VkDevice device,
303 const VkDescriptorSetLayoutCreateInfo* pCreateInfo,
304 VkDescriptorSetLayoutSupport* pSupport)
305 {
306 VkDescriptorSetLayoutBinding *bindings = create_sorted_bindings(pCreateInfo->pBindings,
307 pCreateInfo->bindingCount);
308 if (!bindings) {
309 pSupport->supported = false;
310 return;
311 }
312
313 const VkDescriptorSetLayoutBindingFlagsCreateInfoEXT *variable_flags =
314 vk_find_struct_const(pCreateInfo->pNext, DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT);
315 VkDescriptorSetVariableDescriptorCountLayoutSupportEXT *variable_count =
316 vk_find_struct((void*)pCreateInfo->pNext, DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT_EXT);
317 if (variable_count) {
318 variable_count->maxVariableDescriptorCount = 0;
319 }
320
321 bool supported = true;
322 uint64_t size = 0;
323 for (uint32_t i = 0; i < pCreateInfo->bindingCount; i++) {
324 const VkDescriptorSetLayoutBinding *binding = bindings + i;
325
326 uint64_t descriptor_size = 0;
327 uint64_t descriptor_alignment = 1;
328 uint32_t descriptor_count = binding->descriptorCount;
329 switch (binding->descriptorType) {
330 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
331 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
332 break;
333 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
334 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
335 case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
336 case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
337 descriptor_size = 16;
338 descriptor_alignment = 16;
339 break;
340 case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
341 case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
342 case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
343 descriptor_size = 64;
344 descriptor_alignment = 32;
345 break;
346 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
347 if (!has_equal_immutable_samplers(binding->pImmutableSamplers, descriptor_count)) {
348 descriptor_size = 64;
349 } else {
350 descriptor_size = 96;
351 }
352 descriptor_alignment = 32;
353 break;
354 case VK_DESCRIPTOR_TYPE_SAMPLER:
355 if (!has_equal_immutable_samplers(binding->pImmutableSamplers, descriptor_count)) {
356 descriptor_size = 16;
357 descriptor_alignment = 16;
358 }
359 break;
360 case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT:
361 descriptor_alignment = 16;
362 descriptor_size = descriptor_count;
363 descriptor_count = 1;
364 break;
365 default:
366 unreachable("unknown descriptor type\n");
367 break;
368 }
369
370 if (size && !align_u64(size, descriptor_alignment)) {
371 supported = false;
372 }
373 size = align_u64(size, descriptor_alignment);
374
375 uint64_t max_count = INT32_MAX;
376 if (binding->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT)
377 max_count = INT32_MAX - size;
378 else if (descriptor_size)
379 max_count = (INT32_MAX - size) / descriptor_size;
380
381 if (max_count < descriptor_count) {
382 supported = false;
383 }
384 if (variable_flags && binding->binding <variable_flags->bindingCount && variable_count &&
385 (variable_flags->pBindingFlags[binding->binding] & VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT)) {
386 variable_count->maxVariableDescriptorCount = MIN2(UINT32_MAX, max_count);
387 }
388 size += descriptor_count * descriptor_size;
389 }
390
391 free(bindings);
392
393 pSupport->supported = supported;
394 }
395
396 /*
397 * Pipeline layouts. These have nothing to do with the pipeline. They are
398 * just multiple descriptor set layouts pasted together.
399 */
400
401 VkResult radv_CreatePipelineLayout(
402 VkDevice _device,
403 const VkPipelineLayoutCreateInfo* pCreateInfo,
404 const VkAllocationCallbacks* pAllocator,
405 VkPipelineLayout* pPipelineLayout)
406 {
407 RADV_FROM_HANDLE(radv_device, device, _device);
408 struct radv_pipeline_layout *layout;
409 struct mesa_sha1 ctx;
410
411 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO);
412
413 layout = vk_alloc2(&device->alloc, pAllocator, sizeof(*layout), 8,
414 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
415 if (layout == NULL)
416 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
417
418 layout->num_sets = pCreateInfo->setLayoutCount;
419
420 unsigned dynamic_offset_count = 0;
421 uint16_t dynamic_shader_stages = 0;
422
423
424 _mesa_sha1_init(&ctx);
425 for (uint32_t set = 0; set < pCreateInfo->setLayoutCount; set++) {
426 RADV_FROM_HANDLE(radv_descriptor_set_layout, set_layout,
427 pCreateInfo->pSetLayouts[set]);
428 layout->set[set].layout = set_layout;
429
430 layout->set[set].dynamic_offset_start = dynamic_offset_count;
431 for (uint32_t b = 0; b < set_layout->binding_count; b++) {
432 dynamic_offset_count += set_layout->binding[b].array_size * set_layout->binding[b].dynamic_offset_count;
433 dynamic_shader_stages |= set_layout->dynamic_shader_stages;
434 }
435 _mesa_sha1_update(&ctx, set_layout, set_layout->layout_size);
436 }
437
438 layout->dynamic_offset_count = dynamic_offset_count;
439 layout->dynamic_shader_stages = dynamic_shader_stages;
440 layout->push_constant_size = 0;
441
442 for (unsigned i = 0; i < pCreateInfo->pushConstantRangeCount; ++i) {
443 const VkPushConstantRange *range = pCreateInfo->pPushConstantRanges + i;
444 layout->push_constant_size = MAX2(layout->push_constant_size,
445 range->offset + range->size);
446 }
447
448 layout->push_constant_size = align(layout->push_constant_size, 16);
449 _mesa_sha1_update(&ctx, &layout->push_constant_size,
450 sizeof(layout->push_constant_size));
451 _mesa_sha1_final(&ctx, layout->sha1);
452 *pPipelineLayout = radv_pipeline_layout_to_handle(layout);
453
454 return VK_SUCCESS;
455 }
456
457 void radv_DestroyPipelineLayout(
458 VkDevice _device,
459 VkPipelineLayout _pipelineLayout,
460 const VkAllocationCallbacks* pAllocator)
461 {
462 RADV_FROM_HANDLE(radv_device, device, _device);
463 RADV_FROM_HANDLE(radv_pipeline_layout, pipeline_layout, _pipelineLayout);
464
465 if (!pipeline_layout)
466 return;
467 vk_free2(&device->alloc, pAllocator, pipeline_layout);
468 }
469
470 #define EMPTY 1
471
472 static VkResult
473 radv_descriptor_set_create(struct radv_device *device,
474 struct radv_descriptor_pool *pool,
475 const struct radv_descriptor_set_layout *layout,
476 const uint32_t *variable_count,
477 struct radv_descriptor_set **out_set)
478 {
479 struct radv_descriptor_set *set;
480 unsigned range_offset = sizeof(struct radv_descriptor_set) +
481 sizeof(struct radeon_winsys_bo *) * layout->buffer_count;
482 unsigned mem_size = range_offset +
483 sizeof(struct radv_descriptor_range) * layout->dynamic_offset_count;
484
485 if (pool->host_memory_base) {
486 if (pool->host_memory_end - pool->host_memory_ptr < mem_size)
487 return vk_error(device->instance, VK_ERROR_OUT_OF_POOL_MEMORY);
488
489 set = (struct radv_descriptor_set*)pool->host_memory_ptr;
490 pool->host_memory_ptr += mem_size;
491 } else {
492 set = vk_alloc2(&device->alloc, NULL, mem_size, 8,
493 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
494
495 if (!set)
496 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
497 }
498
499 memset(set, 0, mem_size);
500
501 if (layout->dynamic_offset_count) {
502 set->dynamic_descriptors = (struct radv_descriptor_range*)((uint8_t*)set + range_offset);
503 }
504
505 set->layout = layout;
506 uint32_t layout_size = layout->size;
507 if (variable_count) {
508 assert(layout->has_variable_descriptors);
509 uint32_t stride = layout->binding[layout->binding_count - 1].size;
510 if (layout->binding[layout->binding_count - 1].type == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT)
511 stride = 1;
512
513 layout_size = layout->binding[layout->binding_count - 1].offset +
514 *variable_count * stride;
515 }
516 layout_size = align_u32(layout_size, 32);
517 if (layout_size) {
518 set->size = layout_size;
519
520 if (!pool->host_memory_base && pool->entry_count == pool->max_entry_count) {
521 vk_free2(&device->alloc, NULL, set);
522 return vk_error(device->instance, VK_ERROR_OUT_OF_POOL_MEMORY);
523 }
524
525 /* try to allocate linearly first, so that we don't spend
526 * time looking for gaps if the app only allocates &
527 * resets via the pool. */
528 if (pool->current_offset + layout_size <= pool->size) {
529 set->bo = pool->bo;
530 set->mapped_ptr = (uint32_t*)(pool->mapped_ptr + pool->current_offset);
531 set->va = radv_buffer_get_va(set->bo) + pool->current_offset;
532 if (!pool->host_memory_base) {
533 pool->entries[pool->entry_count].offset = pool->current_offset;
534 pool->entries[pool->entry_count].size = layout_size;
535 pool->entries[pool->entry_count].set = set;
536 pool->entry_count++;
537 }
538 pool->current_offset += layout_size;
539 } else if (!pool->host_memory_base) {
540 uint64_t offset = 0;
541 int index;
542
543 for (index = 0; index < pool->entry_count; ++index) {
544 if (pool->entries[index].offset - offset >= layout_size)
545 break;
546 offset = pool->entries[index].offset + pool->entries[index].size;
547 }
548
549 if (pool->size - offset < layout_size) {
550 vk_free2(&device->alloc, NULL, set);
551 return vk_error(device->instance, VK_ERROR_OUT_OF_POOL_MEMORY);
552 }
553 set->bo = pool->bo;
554 set->mapped_ptr = (uint32_t*)(pool->mapped_ptr + offset);
555 set->va = radv_buffer_get_va(set->bo) + offset;
556 memmove(&pool->entries[index + 1], &pool->entries[index],
557 sizeof(pool->entries[0]) * (pool->entry_count - index));
558 pool->entries[index].offset = offset;
559 pool->entries[index].size = layout_size;
560 pool->entries[index].set = set;
561 pool->entry_count++;
562 } else
563 return vk_error(device->instance, VK_ERROR_OUT_OF_POOL_MEMORY);
564 }
565
566 if (layout->has_immutable_samplers) {
567 for (unsigned i = 0; i < layout->binding_count; ++i) {
568 if (!layout->binding[i].immutable_samplers_offset ||
569 layout->binding[i].immutable_samplers_equal)
570 continue;
571
572 unsigned offset = layout->binding[i].offset / 4;
573 if (layout->binding[i].type == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER)
574 offset += radv_combined_image_descriptor_sampler_offset(layout->binding + i) / 4;
575
576 const uint32_t *samplers = (const uint32_t*)((const char*)layout + layout->binding[i].immutable_samplers_offset);
577 for (unsigned j = 0; j < layout->binding[i].array_size; ++j) {
578 memcpy(set->mapped_ptr + offset, samplers + 4 * j, 16);
579 offset += layout->binding[i].size / 4;
580 }
581
582 }
583 }
584 *out_set = set;
585 return VK_SUCCESS;
586 }
587
588 static void
589 radv_descriptor_set_destroy(struct radv_device *device,
590 struct radv_descriptor_pool *pool,
591 struct radv_descriptor_set *set,
592 bool free_bo)
593 {
594 assert(!pool->host_memory_base);
595
596 if (free_bo && set->size && !pool->host_memory_base) {
597 uint32_t offset = (uint8_t*)set->mapped_ptr - pool->mapped_ptr;
598 for (int i = 0; i < pool->entry_count; ++i) {
599 if (pool->entries[i].offset == offset) {
600 memmove(&pool->entries[i], &pool->entries[i+1],
601 sizeof(pool->entries[i]) * (pool->entry_count - i - 1));
602 --pool->entry_count;
603 break;
604 }
605 }
606 }
607 vk_free2(&device->alloc, NULL, set);
608 }
609
610 VkResult radv_CreateDescriptorPool(
611 VkDevice _device,
612 const VkDescriptorPoolCreateInfo* pCreateInfo,
613 const VkAllocationCallbacks* pAllocator,
614 VkDescriptorPool* pDescriptorPool)
615 {
616 RADV_FROM_HANDLE(radv_device, device, _device);
617 struct radv_descriptor_pool *pool;
618 uint64_t size = sizeof(struct radv_descriptor_pool);
619 uint64_t bo_size = 0, bo_count = 0, range_count = 0;
620
621 vk_foreach_struct(ext, pCreateInfo->pNext) {
622 switch (ext->sType) {
623 case VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO_EXT: {
624 const struct VkDescriptorPoolInlineUniformBlockCreateInfoEXT *info =
625 (const struct VkDescriptorPoolInlineUniformBlockCreateInfoEXT*)ext;
626 /* the sizes are 4 aligned, and we need to align to at
627 * most 32, which needs at most 28 bytes extra per
628 * binding. */
629 bo_size += 28llu * info->maxInlineUniformBlockBindings;
630 break;
631 }
632 default:
633 break;
634 }
635 }
636
637 for (unsigned i = 0; i < pCreateInfo->poolSizeCount; ++i) {
638 if (pCreateInfo->pPoolSizes[i].type != VK_DESCRIPTOR_TYPE_SAMPLER)
639 bo_count += pCreateInfo->pPoolSizes[i].descriptorCount;
640
641 switch(pCreateInfo->pPoolSizes[i].type) {
642 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
643 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
644 range_count += pCreateInfo->pPoolSizes[i].descriptorCount;
645 break;
646 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
647 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
648 case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
649 case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
650 case VK_DESCRIPTOR_TYPE_SAMPLER:
651 /* 32 as we may need to align for images */
652 bo_size += 32 * pCreateInfo->pPoolSizes[i].descriptorCount;
653 break;
654 case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
655 case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
656 case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
657 bo_size += 64 * pCreateInfo->pPoolSizes[i].descriptorCount;
658 break;
659 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
660 bo_size += 96 * pCreateInfo->pPoolSizes[i].descriptorCount;
661 break;
662 case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT:
663 bo_size += pCreateInfo->pPoolSizes[i].descriptorCount;
664 break;
665 default:
666 unreachable("unknown descriptor type\n");
667 break;
668 }
669 }
670
671 if (!(pCreateInfo->flags & VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT)) {
672 uint64_t host_size = pCreateInfo->maxSets * sizeof(struct radv_descriptor_set);
673 host_size += sizeof(struct radeon_winsys_bo*) * bo_count;
674 host_size += sizeof(struct radv_descriptor_range) * range_count;
675 size += host_size;
676 } else {
677 size += sizeof(struct radv_descriptor_pool_entry) * pCreateInfo->maxSets;
678 }
679
680 pool = vk_alloc2(&device->alloc, pAllocator, size, 8,
681 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
682 if (!pool)
683 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
684
685 memset(pool, 0, sizeof(*pool));
686
687 if (!(pCreateInfo->flags & VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT)) {
688 pool->host_memory_base = (uint8_t*)pool + sizeof(struct radv_descriptor_pool);
689 pool->host_memory_ptr = pool->host_memory_base;
690 pool->host_memory_end = (uint8_t*)pool + size;
691 }
692
693 if (bo_size) {
694 pool->bo = device->ws->buffer_create(device->ws, bo_size, 32,
695 RADEON_DOMAIN_VRAM,
696 RADEON_FLAG_NO_INTERPROCESS_SHARING |
697 RADEON_FLAG_READ_ONLY |
698 RADEON_FLAG_32BIT,
699 RADV_BO_PRIORITY_DESCRIPTOR);
700 pool->mapped_ptr = (uint8_t*)device->ws->buffer_map(pool->bo);
701 }
702 pool->size = bo_size;
703 pool->max_entry_count = pCreateInfo->maxSets;
704
705 *pDescriptorPool = radv_descriptor_pool_to_handle(pool);
706 return VK_SUCCESS;
707 }
708
709 void radv_DestroyDescriptorPool(
710 VkDevice _device,
711 VkDescriptorPool _pool,
712 const VkAllocationCallbacks* pAllocator)
713 {
714 RADV_FROM_HANDLE(radv_device, device, _device);
715 RADV_FROM_HANDLE(radv_descriptor_pool, pool, _pool);
716
717 if (!pool)
718 return;
719
720 if (!pool->host_memory_base) {
721 for(int i = 0; i < pool->entry_count; ++i) {
722 radv_descriptor_set_destroy(device, pool, pool->entries[i].set, false);
723 }
724 }
725
726 if (pool->bo)
727 device->ws->buffer_destroy(pool->bo);
728 vk_free2(&device->alloc, pAllocator, pool);
729 }
730
731 VkResult radv_ResetDescriptorPool(
732 VkDevice _device,
733 VkDescriptorPool descriptorPool,
734 VkDescriptorPoolResetFlags flags)
735 {
736 RADV_FROM_HANDLE(radv_device, device, _device);
737 RADV_FROM_HANDLE(radv_descriptor_pool, pool, descriptorPool);
738
739 if (!pool->host_memory_base) {
740 for(int i = 0; i < pool->entry_count; ++i) {
741 radv_descriptor_set_destroy(device, pool, pool->entries[i].set, false);
742 }
743 pool->entry_count = 0;
744 }
745
746 pool->current_offset = 0;
747 pool->host_memory_ptr = pool->host_memory_base;
748
749 return VK_SUCCESS;
750 }
751
752 VkResult radv_AllocateDescriptorSets(
753 VkDevice _device,
754 const VkDescriptorSetAllocateInfo* pAllocateInfo,
755 VkDescriptorSet* pDescriptorSets)
756 {
757 RADV_FROM_HANDLE(radv_device, device, _device);
758 RADV_FROM_HANDLE(radv_descriptor_pool, pool, pAllocateInfo->descriptorPool);
759
760 VkResult result = VK_SUCCESS;
761 uint32_t i;
762 struct radv_descriptor_set *set = NULL;
763
764 const VkDescriptorSetVariableDescriptorCountAllocateInfoEXT *variable_counts =
765 vk_find_struct_const(pAllocateInfo->pNext, DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT);
766 const uint32_t zero = 0;
767
768 /* allocate a set of buffers for each shader to contain descriptors */
769 for (i = 0; i < pAllocateInfo->descriptorSetCount; i++) {
770 RADV_FROM_HANDLE(radv_descriptor_set_layout, layout,
771 pAllocateInfo->pSetLayouts[i]);
772
773 const uint32_t *variable_count = NULL;
774 if (variable_counts) {
775 if (i < variable_counts->descriptorSetCount)
776 variable_count = variable_counts->pDescriptorCounts + i;
777 else
778 variable_count = &zero;
779 }
780
781 assert(!(layout->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
782
783 result = radv_descriptor_set_create(device, pool, layout, variable_count, &set);
784 if (result != VK_SUCCESS)
785 break;
786
787 pDescriptorSets[i] = radv_descriptor_set_to_handle(set);
788 }
789
790 if (result != VK_SUCCESS)
791 radv_FreeDescriptorSets(_device, pAllocateInfo->descriptorPool,
792 i, pDescriptorSets);
793 return result;
794 }
795
796 VkResult radv_FreeDescriptorSets(
797 VkDevice _device,
798 VkDescriptorPool descriptorPool,
799 uint32_t count,
800 const VkDescriptorSet* pDescriptorSets)
801 {
802 RADV_FROM_HANDLE(radv_device, device, _device);
803 RADV_FROM_HANDLE(radv_descriptor_pool, pool, descriptorPool);
804
805 for (uint32_t i = 0; i < count; i++) {
806 RADV_FROM_HANDLE(radv_descriptor_set, set, pDescriptorSets[i]);
807
808 if (set && !pool->host_memory_base)
809 radv_descriptor_set_destroy(device, pool, set, true);
810 }
811 return VK_SUCCESS;
812 }
813
814 static void write_texel_buffer_descriptor(struct radv_device *device,
815 struct radv_cmd_buffer *cmd_buffer,
816 unsigned *dst,
817 struct radeon_winsys_bo **buffer_list,
818 const VkBufferView _buffer_view)
819 {
820 RADV_FROM_HANDLE(radv_buffer_view, buffer_view, _buffer_view);
821
822 memcpy(dst, buffer_view->state, 4 * 4);
823
824 if (cmd_buffer)
825 radv_cs_add_buffer(device->ws, cmd_buffer->cs, buffer_view->bo);
826 else
827 *buffer_list = buffer_view->bo;
828 }
829
830 static void write_buffer_descriptor(struct radv_device *device,
831 struct radv_cmd_buffer *cmd_buffer,
832 unsigned *dst,
833 struct radeon_winsys_bo **buffer_list,
834 const VkDescriptorBufferInfo *buffer_info)
835 {
836 RADV_FROM_HANDLE(radv_buffer, buffer, buffer_info->buffer);
837 uint64_t va = radv_buffer_get_va(buffer->bo);
838 uint32_t range = buffer_info->range;
839
840 if (buffer_info->range == VK_WHOLE_SIZE)
841 range = buffer->size - buffer_info->offset;
842
843 va += buffer_info->offset + buffer->offset;
844 dst[0] = va;
845 dst[1] = S_008F04_BASE_ADDRESS_HI(va >> 32);
846 dst[2] = range;
847 dst[3] = S_008F0C_DST_SEL_X(V_008F0C_SQ_SEL_X) |
848 S_008F0C_DST_SEL_Y(V_008F0C_SQ_SEL_Y) |
849 S_008F0C_DST_SEL_Z(V_008F0C_SQ_SEL_Z) |
850 S_008F0C_DST_SEL_W(V_008F0C_SQ_SEL_W);
851
852 if (device->physical_device->rad_info.chip_class >= GFX10) {
853 dst[3] |= S_008F0C_FORMAT(V_008F0C_IMG_FORMAT_32_FLOAT) |
854 S_008F0C_OOB_SELECT(3) |
855 S_008F0C_RESOURCE_LEVEL(1);
856 } else {
857 dst[3] |= S_008F0C_NUM_FORMAT(V_008F0C_BUF_NUM_FORMAT_FLOAT) |
858 S_008F0C_DATA_FORMAT(V_008F0C_BUF_DATA_FORMAT_32);
859 }
860
861 if (cmd_buffer)
862 radv_cs_add_buffer(device->ws, cmd_buffer->cs, buffer->bo);
863 else
864 *buffer_list = buffer->bo;
865 }
866
867 static void write_block_descriptor(struct radv_device *device,
868 struct radv_cmd_buffer *cmd_buffer,
869 void *dst,
870 const VkWriteDescriptorSet *writeset)
871 {
872 const VkWriteDescriptorSetInlineUniformBlockEXT *inline_ub =
873 vk_find_struct_const(writeset->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK_EXT);
874
875 memcpy(dst, inline_ub->pData, inline_ub->dataSize);
876 }
877
878 static void write_dynamic_buffer_descriptor(struct radv_device *device,
879 struct radv_descriptor_range *range,
880 struct radeon_winsys_bo **buffer_list,
881 const VkDescriptorBufferInfo *buffer_info)
882 {
883 RADV_FROM_HANDLE(radv_buffer, buffer, buffer_info->buffer);
884 uint64_t va = radv_buffer_get_va(buffer->bo);
885 unsigned size = buffer_info->range;
886
887 if (buffer_info->range == VK_WHOLE_SIZE)
888 size = buffer->size - buffer_info->offset;
889
890 va += buffer_info->offset + buffer->offset;
891 range->va = va;
892 range->size = size;
893
894 *buffer_list = buffer->bo;
895 }
896
897 static void
898 write_image_descriptor(struct radv_device *device,
899 struct radv_cmd_buffer *cmd_buffer,
900 unsigned size, unsigned *dst,
901 struct radeon_winsys_bo **buffer_list,
902 VkDescriptorType descriptor_type,
903 const VkDescriptorImageInfo *image_info)
904 {
905 RADV_FROM_HANDLE(radv_image_view, iview, image_info->imageView);
906 union radv_descriptor *descriptor;
907
908 if (descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_IMAGE) {
909 descriptor = &iview->storage_descriptor;
910 } else {
911 descriptor = &iview->descriptor;
912 }
913
914 memcpy(dst, descriptor, size);
915
916 if (cmd_buffer)
917 radv_cs_add_buffer(device->ws, cmd_buffer->cs, iview->bo);
918 else
919 *buffer_list = iview->bo;
920 }
921
922 static void
923 write_combined_image_sampler_descriptor(struct radv_device *device,
924 struct radv_cmd_buffer *cmd_buffer,
925 unsigned sampler_offset,
926 unsigned *dst,
927 struct radeon_winsys_bo **buffer_list,
928 VkDescriptorType descriptor_type,
929 const VkDescriptorImageInfo *image_info,
930 bool has_sampler)
931 {
932 RADV_FROM_HANDLE(radv_sampler, sampler, image_info->sampler);
933
934 write_image_descriptor(device, cmd_buffer, sampler_offset, dst, buffer_list,
935 descriptor_type, image_info);
936 /* copy over sampler state */
937 if (has_sampler) {
938 memcpy(dst + sampler_offset / sizeof(*dst), sampler->state, 16);
939 }
940 }
941
942 static void
943 write_sampler_descriptor(struct radv_device *device,
944 unsigned *dst,
945 const VkDescriptorImageInfo *image_info)
946 {
947 RADV_FROM_HANDLE(radv_sampler, sampler, image_info->sampler);
948
949 memcpy(dst, sampler->state, 16);
950 }
951
952 void radv_update_descriptor_sets(
953 struct radv_device* device,
954 struct radv_cmd_buffer* cmd_buffer,
955 VkDescriptorSet dstSetOverride,
956 uint32_t descriptorWriteCount,
957 const VkWriteDescriptorSet* pDescriptorWrites,
958 uint32_t descriptorCopyCount,
959 const VkCopyDescriptorSet* pDescriptorCopies)
960 {
961 uint32_t i, j;
962 for (i = 0; i < descriptorWriteCount; i++) {
963 const VkWriteDescriptorSet *writeset = &pDescriptorWrites[i];
964 RADV_FROM_HANDLE(radv_descriptor_set, set,
965 dstSetOverride ? dstSetOverride : writeset->dstSet);
966 const struct radv_descriptor_set_binding_layout *binding_layout =
967 set->layout->binding + writeset->dstBinding;
968 uint32_t *ptr = set->mapped_ptr;
969 struct radeon_winsys_bo **buffer_list = set->descriptors;
970 /* Immutable samplers are not copied into push descriptors when they are
971 * allocated, so if we are writing push descriptors we have to copy the
972 * immutable samplers into them now.
973 */
974 const bool copy_immutable_samplers = cmd_buffer &&
975 binding_layout->immutable_samplers_offset && !binding_layout->immutable_samplers_equal;
976 const uint32_t *samplers = radv_immutable_samplers(set->layout, binding_layout);
977
978 ptr += binding_layout->offset / 4;
979
980 if (writeset->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT) {
981 write_block_descriptor(device, cmd_buffer, (uint8_t*)ptr + writeset->dstArrayElement, writeset);
982 continue;
983 }
984
985 ptr += binding_layout->size * writeset->dstArrayElement / 4;
986 buffer_list += binding_layout->buffer_offset;
987 buffer_list += writeset->dstArrayElement;
988 for (j = 0; j < writeset->descriptorCount; ++j) {
989 switch(writeset->descriptorType) {
990 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
991 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC: {
992 unsigned idx = writeset->dstArrayElement + j;
993 idx += binding_layout->dynamic_offset_offset;
994 assert(!(set->layout->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
995 write_dynamic_buffer_descriptor(device, set->dynamic_descriptors + idx,
996 buffer_list, writeset->pBufferInfo + j);
997 break;
998 }
999 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
1000 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
1001 write_buffer_descriptor(device, cmd_buffer, ptr, buffer_list,
1002 writeset->pBufferInfo + j);
1003 break;
1004 case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
1005 case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
1006 write_texel_buffer_descriptor(device, cmd_buffer, ptr, buffer_list,
1007 writeset->pTexelBufferView[j]);
1008 break;
1009 case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
1010 case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
1011 case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
1012 write_image_descriptor(device, cmd_buffer, 64, ptr, buffer_list,
1013 writeset->descriptorType,
1014 writeset->pImageInfo + j);
1015 break;
1016 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER: {
1017 unsigned sampler_offset = radv_combined_image_descriptor_sampler_offset(binding_layout);
1018 write_combined_image_sampler_descriptor(device, cmd_buffer, sampler_offset,
1019 ptr, buffer_list,
1020 writeset->descriptorType,
1021 writeset->pImageInfo + j,
1022 !binding_layout->immutable_samplers_offset);
1023 if (copy_immutable_samplers) {
1024 const unsigned idx = writeset->dstArrayElement + j;
1025 memcpy((char*)ptr + sampler_offset, samplers + 4 * idx, 16);
1026 }
1027 break;
1028 }
1029 case VK_DESCRIPTOR_TYPE_SAMPLER:
1030 if (!binding_layout->immutable_samplers_offset) {
1031 write_sampler_descriptor(device, ptr,
1032 writeset->pImageInfo + j);
1033 } else if (copy_immutable_samplers) {
1034 unsigned idx = writeset->dstArrayElement + j;
1035 memcpy(ptr, samplers + 4 * idx, 16);
1036 }
1037 break;
1038 default:
1039 unreachable("unimplemented descriptor type");
1040 break;
1041 }
1042 ptr += binding_layout->size / 4;
1043 ++buffer_list;
1044 }
1045
1046 }
1047
1048 for (i = 0; i < descriptorCopyCount; i++) {
1049 const VkCopyDescriptorSet *copyset = &pDescriptorCopies[i];
1050 RADV_FROM_HANDLE(radv_descriptor_set, src_set,
1051 copyset->srcSet);
1052 RADV_FROM_HANDLE(radv_descriptor_set, dst_set,
1053 copyset->dstSet);
1054 const struct radv_descriptor_set_binding_layout *src_binding_layout =
1055 src_set->layout->binding + copyset->srcBinding;
1056 const struct radv_descriptor_set_binding_layout *dst_binding_layout =
1057 dst_set->layout->binding + copyset->dstBinding;
1058 uint32_t *src_ptr = src_set->mapped_ptr;
1059 uint32_t *dst_ptr = dst_set->mapped_ptr;
1060 struct radeon_winsys_bo **src_buffer_list = src_set->descriptors;
1061 struct radeon_winsys_bo **dst_buffer_list = dst_set->descriptors;
1062
1063 src_ptr += src_binding_layout->offset / 4;
1064 dst_ptr += dst_binding_layout->offset / 4;
1065
1066 src_ptr += src_binding_layout->size * copyset->srcArrayElement / 4;
1067 dst_ptr += dst_binding_layout->size * copyset->dstArrayElement / 4;
1068
1069 src_buffer_list += src_binding_layout->buffer_offset;
1070 src_buffer_list += copyset->srcArrayElement;
1071
1072 dst_buffer_list += dst_binding_layout->buffer_offset;
1073 dst_buffer_list += copyset->dstArrayElement;
1074
1075 for (j = 0; j < copyset->descriptorCount; ++j) {
1076 switch (src_binding_layout->type) {
1077 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
1078 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC: {
1079 unsigned src_idx = copyset->srcArrayElement + j;
1080 unsigned dst_idx = copyset->dstArrayElement + j;
1081 struct radv_descriptor_range *src_range, *dst_range;
1082 src_idx += src_binding_layout->dynamic_offset_offset;
1083 dst_idx += dst_binding_layout->dynamic_offset_offset;
1084
1085 src_range = src_set->dynamic_descriptors + src_idx;
1086 dst_range = dst_set->dynamic_descriptors + dst_idx;
1087 *dst_range = *src_range;
1088 break;
1089 }
1090 default:
1091 memcpy(dst_ptr, src_ptr, src_binding_layout->size);
1092 }
1093 src_ptr += src_binding_layout->size / 4;
1094 dst_ptr += dst_binding_layout->size / 4;
1095
1096 if (src_binding_layout->type != VK_DESCRIPTOR_TYPE_SAMPLER) {
1097 /* Sampler descriptors don't have a buffer list. */
1098 dst_buffer_list[j] = src_buffer_list[j];
1099 }
1100 }
1101 }
1102 }
1103
1104 void radv_UpdateDescriptorSets(
1105 VkDevice _device,
1106 uint32_t descriptorWriteCount,
1107 const VkWriteDescriptorSet* pDescriptorWrites,
1108 uint32_t descriptorCopyCount,
1109 const VkCopyDescriptorSet* pDescriptorCopies)
1110 {
1111 RADV_FROM_HANDLE(radv_device, device, _device);
1112
1113 radv_update_descriptor_sets(device, NULL, VK_NULL_HANDLE, descriptorWriteCount, pDescriptorWrites,
1114 descriptorCopyCount, pDescriptorCopies);
1115 }
1116
1117 VkResult radv_CreateDescriptorUpdateTemplate(VkDevice _device,
1118 const VkDescriptorUpdateTemplateCreateInfo *pCreateInfo,
1119 const VkAllocationCallbacks *pAllocator,
1120 VkDescriptorUpdateTemplate *pDescriptorUpdateTemplate)
1121 {
1122 RADV_FROM_HANDLE(radv_device, device, _device);
1123 RADV_FROM_HANDLE(radv_descriptor_set_layout, set_layout, pCreateInfo->descriptorSetLayout);
1124 const uint32_t entry_count = pCreateInfo->descriptorUpdateEntryCount;
1125 const size_t size = sizeof(struct radv_descriptor_update_template) +
1126 sizeof(struct radv_descriptor_update_template_entry) * entry_count;
1127 struct radv_descriptor_update_template *templ;
1128 uint32_t i;
1129
1130 templ = vk_alloc2(&device->alloc, pAllocator, size, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
1131 if (!templ)
1132 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
1133
1134 templ->entry_count = entry_count;
1135 templ->bind_point = pCreateInfo->pipelineBindPoint;
1136
1137 for (i = 0; i < entry_count; i++) {
1138 const VkDescriptorUpdateTemplateEntry *entry = &pCreateInfo->pDescriptorUpdateEntries[i];
1139 const struct radv_descriptor_set_binding_layout *binding_layout =
1140 set_layout->binding + entry->dstBinding;
1141 const uint32_t buffer_offset = binding_layout->buffer_offset + entry->dstArrayElement;
1142 const uint32_t *immutable_samplers = NULL;
1143 uint32_t dst_offset;
1144 uint32_t dst_stride;
1145
1146 /* dst_offset is an offset into dynamic_descriptors when the descriptor
1147 is dynamic, and an offset into mapped_ptr otherwise */
1148 switch (entry->descriptorType) {
1149 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
1150 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
1151 assert(pCreateInfo->templateType == VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET);
1152 dst_offset = binding_layout->dynamic_offset_offset + entry->dstArrayElement;
1153 dst_stride = 0; /* Not used */
1154 break;
1155 default:
1156 switch (entry->descriptorType) {
1157 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
1158 case VK_DESCRIPTOR_TYPE_SAMPLER:
1159 /* Immutable samplers are copied into push descriptors when they are pushed */
1160 if (pCreateInfo->templateType == VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR &&
1161 binding_layout->immutable_samplers_offset && !binding_layout->immutable_samplers_equal) {
1162 immutable_samplers = radv_immutable_samplers(set_layout, binding_layout) + entry->dstArrayElement * 4;
1163 }
1164 break;
1165 default:
1166 break;
1167 }
1168 dst_offset = binding_layout->offset / 4;
1169 if (entry->descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT)
1170 dst_offset += entry->dstArrayElement / 4;
1171 else
1172 dst_offset += binding_layout->size * entry->dstArrayElement / 4;
1173
1174 dst_stride = binding_layout->size / 4;
1175 break;
1176 }
1177
1178 templ->entry[i] = (struct radv_descriptor_update_template_entry) {
1179 .descriptor_type = entry->descriptorType,
1180 .descriptor_count = entry->descriptorCount,
1181 .src_offset = entry->offset,
1182 .src_stride = entry->stride,
1183 .dst_offset = dst_offset,
1184 .dst_stride = dst_stride,
1185 .buffer_offset = buffer_offset,
1186 .has_sampler = !binding_layout->immutable_samplers_offset,
1187 .sampler_offset = radv_combined_image_descriptor_sampler_offset(binding_layout),
1188 .immutable_samplers = immutable_samplers
1189 };
1190 }
1191
1192 *pDescriptorUpdateTemplate = radv_descriptor_update_template_to_handle(templ);
1193 return VK_SUCCESS;
1194 }
1195
1196 void radv_DestroyDescriptorUpdateTemplate(VkDevice _device,
1197 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
1198 const VkAllocationCallbacks *pAllocator)
1199 {
1200 RADV_FROM_HANDLE(radv_device, device, _device);
1201 RADV_FROM_HANDLE(radv_descriptor_update_template, templ, descriptorUpdateTemplate);
1202
1203 if (!templ)
1204 return;
1205
1206 vk_free2(&device->alloc, pAllocator, templ);
1207 }
1208
1209 void radv_update_descriptor_set_with_template(struct radv_device *device,
1210 struct radv_cmd_buffer *cmd_buffer,
1211 struct radv_descriptor_set *set,
1212 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
1213 const void *pData)
1214 {
1215 RADV_FROM_HANDLE(radv_descriptor_update_template, templ, descriptorUpdateTemplate);
1216 uint32_t i;
1217
1218 for (i = 0; i < templ->entry_count; ++i) {
1219 struct radeon_winsys_bo **buffer_list = set->descriptors + templ->entry[i].buffer_offset;
1220 uint32_t *pDst = set->mapped_ptr + templ->entry[i].dst_offset;
1221 const uint8_t *pSrc = ((const uint8_t *) pData) + templ->entry[i].src_offset;
1222 uint32_t j;
1223
1224 if (templ->entry[i].descriptor_type == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT) {
1225 memcpy((uint8_t*)pDst, pSrc, templ->entry[i].descriptor_count);
1226 continue;
1227 }
1228
1229 for (j = 0; j < templ->entry[i].descriptor_count; ++j) {
1230 switch (templ->entry[i].descriptor_type) {
1231 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
1232 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC: {
1233 const unsigned idx = templ->entry[i].dst_offset + j;
1234 assert(!(set->layout->flags & VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR));
1235 write_dynamic_buffer_descriptor(device, set->dynamic_descriptors + idx,
1236 buffer_list, (struct VkDescriptorBufferInfo *) pSrc);
1237 break;
1238 }
1239 case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
1240 case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
1241 write_buffer_descriptor(device, cmd_buffer, pDst, buffer_list,
1242 (struct VkDescriptorBufferInfo *) pSrc);
1243 break;
1244 case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
1245 case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
1246 write_texel_buffer_descriptor(device, cmd_buffer, pDst, buffer_list,
1247 *(VkBufferView *) pSrc);
1248 break;
1249 case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
1250 case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
1251 case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
1252 write_image_descriptor(device, cmd_buffer, 64, pDst, buffer_list,
1253 templ->entry[i].descriptor_type,
1254 (struct VkDescriptorImageInfo *) pSrc);
1255 break;
1256 case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
1257 write_combined_image_sampler_descriptor(device, cmd_buffer, templ->entry[i].sampler_offset,
1258 pDst, buffer_list, templ->entry[i].descriptor_type,
1259 (struct VkDescriptorImageInfo *) pSrc,
1260 templ->entry[i].has_sampler);
1261 if (templ->entry[i].immutable_samplers) {
1262 memcpy((char*)pDst + templ->entry[i].sampler_offset, templ->entry[i].immutable_samplers + 4 * j, 16);
1263 }
1264 break;
1265 case VK_DESCRIPTOR_TYPE_SAMPLER:
1266 if (templ->entry[i].has_sampler)
1267 write_sampler_descriptor(device, pDst,
1268 (struct VkDescriptorImageInfo *) pSrc);
1269 else if (templ->entry[i].immutable_samplers)
1270 memcpy(pDst, templ->entry[i].immutable_samplers + 4 * j, 16);
1271 break;
1272 default:
1273 unreachable("unimplemented descriptor type");
1274 break;
1275 }
1276 pSrc += templ->entry[i].src_stride;
1277 pDst += templ->entry[i].dst_stride;
1278 ++buffer_list;
1279 }
1280 }
1281 }
1282
1283 void radv_UpdateDescriptorSetWithTemplate(VkDevice _device,
1284 VkDescriptorSet descriptorSet,
1285 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
1286 const void *pData)
1287 {
1288 RADV_FROM_HANDLE(radv_device, device, _device);
1289 RADV_FROM_HANDLE(radv_descriptor_set, set, descriptorSet);
1290
1291 radv_update_descriptor_set_with_template(device, NULL, set, descriptorUpdateTemplate, pData);
1292 }
1293
1294
1295 VkResult radv_CreateSamplerYcbcrConversion(VkDevice _device,
1296 const VkSamplerYcbcrConversionCreateInfo* pCreateInfo,
1297 const VkAllocationCallbacks* pAllocator,
1298 VkSamplerYcbcrConversion* pYcbcrConversion)
1299 {
1300 RADV_FROM_HANDLE(radv_device, device, _device);
1301 struct radv_sampler_ycbcr_conversion *conversion = NULL;
1302
1303 conversion = vk_zalloc2(&device->alloc, pAllocator, sizeof(*conversion), 8,
1304 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
1305
1306 if (conversion == NULL)
1307 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
1308
1309 conversion->format = pCreateInfo->format;
1310 conversion->ycbcr_model = pCreateInfo->ycbcrModel;
1311 conversion->ycbcr_range = pCreateInfo->ycbcrRange;
1312 conversion->components = pCreateInfo->components;
1313 conversion->chroma_offsets[0] = pCreateInfo->xChromaOffset;
1314 conversion->chroma_offsets[1] = pCreateInfo->yChromaOffset;
1315 conversion->chroma_filter = pCreateInfo->chromaFilter;
1316
1317 *pYcbcrConversion = radv_sampler_ycbcr_conversion_to_handle(conversion);
1318 return VK_SUCCESS;
1319 }
1320
1321
1322 void radv_DestroySamplerYcbcrConversion(VkDevice _device,
1323 VkSamplerYcbcrConversion ycbcrConversion,
1324 const VkAllocationCallbacks* pAllocator)
1325 {
1326 RADV_FROM_HANDLE(radv_device, device, _device);
1327 RADV_FROM_HANDLE(radv_sampler_ycbcr_conversion, ycbcr_conversion, ycbcrConversion);
1328
1329 if (ycbcr_conversion)
1330 vk_free2(&device->alloc, pAllocator, ycbcr_conversion);
1331 }