turnip: implement VK_EXT_4444_formats
[mesa.git] / src / freedreno / vulkan / tu_device.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based in part on anv driver which is:
6 * Copyright © 2015 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 */
27
28 #include "tu_private.h"
29
30 #include <fcntl.h>
31 #include <libsync.h>
32 #include <stdbool.h>
33 #include <string.h>
34 #include <sys/mman.h>
35 #include <sys/sysinfo.h>
36 #include <unistd.h>
37 #include <xf86drm.h>
38
39 #include "compiler/glsl_types.h"
40 #include "util/debug.h"
41 #include "util/disk_cache.h"
42 #include "util/u_atomic.h"
43 #include "vk_format.h"
44 #include "vk_util.h"
45
46 #include "drm-uapi/msm_drm.h"
47
48 /* for fd_get_driver/device_uuid() */
49 #include "freedreno/common/freedreno_uuid.h"
50
51 static void
52 tu_semaphore_remove_temp(struct tu_device *device,
53 struct tu_semaphore *sem);
54
55 static int
56 tu_device_get_cache_uuid(uint16_t family, void *uuid)
57 {
58 uint32_t mesa_timestamp;
59 uint16_t f = family;
60 memset(uuid, 0, VK_UUID_SIZE);
61 if (!disk_cache_get_function_timestamp(tu_device_get_cache_uuid,
62 &mesa_timestamp))
63 return -1;
64
65 memcpy(uuid, &mesa_timestamp, 4);
66 memcpy((char *) uuid + 4, &f, 2);
67 snprintf((char *) uuid + 6, VK_UUID_SIZE - 10, "tu");
68 return 0;
69 }
70
71 static VkResult
72 tu_bo_init(struct tu_device *dev,
73 struct tu_bo *bo,
74 uint32_t gem_handle,
75 uint64_t size)
76 {
77 uint64_t iova = tu_gem_info_iova(dev, gem_handle);
78 if (!iova)
79 return VK_ERROR_OUT_OF_DEVICE_MEMORY;
80
81 *bo = (struct tu_bo) {
82 .gem_handle = gem_handle,
83 .size = size,
84 .iova = iova,
85 };
86
87 return VK_SUCCESS;
88 }
89
90 VkResult
91 tu_bo_init_new(struct tu_device *dev, struct tu_bo *bo, uint64_t size)
92 {
93 /* TODO: Choose better flags. As of 2018-11-12, freedreno/drm/msm_bo.c
94 * always sets `flags = MSM_BO_WC`, and we copy that behavior here.
95 */
96 uint32_t gem_handle = tu_gem_new(dev, size, MSM_BO_WC);
97 if (!gem_handle)
98 return vk_error(dev->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
99
100 VkResult result = tu_bo_init(dev, bo, gem_handle, size);
101 if (result != VK_SUCCESS) {
102 tu_gem_close(dev, gem_handle);
103 return vk_error(dev->instance, result);
104 }
105
106 return VK_SUCCESS;
107 }
108
109 VkResult
110 tu_bo_init_dmabuf(struct tu_device *dev,
111 struct tu_bo *bo,
112 uint64_t size,
113 int fd)
114 {
115 uint32_t gem_handle = tu_gem_import_dmabuf(dev, fd, size);
116 if (!gem_handle)
117 return vk_error(dev->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
118
119 VkResult result = tu_bo_init(dev, bo, gem_handle, size);
120 if (result != VK_SUCCESS) {
121 tu_gem_close(dev, gem_handle);
122 return vk_error(dev->instance, result);
123 }
124
125 return VK_SUCCESS;
126 }
127
128 int
129 tu_bo_export_dmabuf(struct tu_device *dev, struct tu_bo *bo)
130 {
131 return tu_gem_export_dmabuf(dev, bo->gem_handle);
132 }
133
134 VkResult
135 tu_bo_map(struct tu_device *dev, struct tu_bo *bo)
136 {
137 if (bo->map)
138 return VK_SUCCESS;
139
140 uint64_t offset = tu_gem_info_offset(dev, bo->gem_handle);
141 if (!offset)
142 return vk_error(dev->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
143
144 /* TODO: Should we use the wrapper os_mmap() like Freedreno does? */
145 void *map = mmap(0, bo->size, PROT_READ | PROT_WRITE, MAP_SHARED,
146 dev->physical_device->local_fd, offset);
147 if (map == MAP_FAILED)
148 return vk_error(dev->instance, VK_ERROR_MEMORY_MAP_FAILED);
149
150 bo->map = map;
151 return VK_SUCCESS;
152 }
153
154 void
155 tu_bo_finish(struct tu_device *dev, struct tu_bo *bo)
156 {
157 assert(bo->gem_handle);
158
159 if (bo->map)
160 munmap(bo->map, bo->size);
161
162 tu_gem_close(dev, bo->gem_handle);
163 }
164
165 static VkResult
166 tu_physical_device_init(struct tu_physical_device *device,
167 struct tu_instance *instance,
168 drmDevicePtr drm_device)
169 {
170 const char *path = drm_device->nodes[DRM_NODE_RENDER];
171 VkResult result = VK_SUCCESS;
172 drmVersionPtr version;
173 int fd;
174 int master_fd = -1;
175
176 fd = open(path, O_RDWR | O_CLOEXEC);
177 if (fd < 0) {
178 return vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
179 "failed to open device %s", path);
180 }
181
182 /* Version 1.3 added MSM_INFO_IOVA. */
183 const int min_version_major = 1;
184 const int min_version_minor = 3;
185
186 version = drmGetVersion(fd);
187 if (!version) {
188 close(fd);
189 return vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
190 "failed to query kernel driver version for device %s",
191 path);
192 }
193
194 if (strcmp(version->name, "msm")) {
195 drmFreeVersion(version);
196 close(fd);
197 return vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
198 "device %s does not use the msm kernel driver", path);
199 }
200
201 if (version->version_major != min_version_major ||
202 version->version_minor < min_version_minor) {
203 result = vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
204 "kernel driver for device %s has version %d.%d, "
205 "but Vulkan requires version >= %d.%d",
206 path, version->version_major, version->version_minor,
207 min_version_major, min_version_minor);
208 drmFreeVersion(version);
209 close(fd);
210 return result;
211 }
212
213 device->msm_major_version = version->version_major;
214 device->msm_minor_version = version->version_minor;
215
216 drmFreeVersion(version);
217
218 if (instance->debug_flags & TU_DEBUG_STARTUP)
219 tu_logi("Found compatible device '%s'.", path);
220
221 vk_object_base_init(NULL, &device->base, VK_OBJECT_TYPE_PHYSICAL_DEVICE);
222 device->instance = instance;
223 assert(strlen(path) < ARRAY_SIZE(device->path));
224 strncpy(device->path, path, ARRAY_SIZE(device->path));
225
226 if (instance->enabled_extensions.KHR_display) {
227 master_fd =
228 open(drm_device->nodes[DRM_NODE_PRIMARY], O_RDWR | O_CLOEXEC);
229 if (master_fd >= 0) {
230 /* TODO: free master_fd is accel is not working? */
231 }
232 }
233
234 device->master_fd = master_fd;
235 device->local_fd = fd;
236
237 if (tu_drm_get_gpu_id(device, &device->gpu_id)) {
238 if (instance->debug_flags & TU_DEBUG_STARTUP)
239 tu_logi("Could not query the GPU ID");
240 result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
241 "could not get GPU ID");
242 goto fail;
243 }
244
245 if (tu_drm_get_gmem_size(device, &device->gmem_size)) {
246 if (instance->debug_flags & TU_DEBUG_STARTUP)
247 tu_logi("Could not query the GMEM size");
248 result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
249 "could not get GMEM size");
250 goto fail;
251 }
252
253 if (tu_drm_get_gmem_base(device, &device->gmem_base)) {
254 if (instance->debug_flags & TU_DEBUG_STARTUP)
255 tu_logi("Could not query the GMEM size");
256 result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
257 "could not get GMEM size");
258 goto fail;
259 }
260
261 memset(device->name, 0, sizeof(device->name));
262 sprintf(device->name, "FD%d", device->gpu_id);
263
264 device->limited_z24s8 = (device->gpu_id == 630);
265
266 switch (device->gpu_id) {
267 case 618:
268 device->ccu_offset_gmem = 0x7c000; /* 0x7e000 in some cases? */
269 device->ccu_offset_bypass = 0x10000;
270 device->tile_align_w = 32;
271 device->magic.PC_UNKNOWN_9805 = 0x0;
272 device->magic.SP_UNKNOWN_A0F8 = 0x0;
273 break;
274 case 630:
275 case 640:
276 device->ccu_offset_gmem = 0xf8000;
277 device->ccu_offset_bypass = 0x20000;
278 device->tile_align_w = 32;
279 device->magic.PC_UNKNOWN_9805 = 0x1;
280 device->magic.SP_UNKNOWN_A0F8 = 0x1;
281 break;
282 case 650:
283 device->ccu_offset_gmem = 0x114000;
284 device->ccu_offset_bypass = 0x30000;
285 device->tile_align_w = 96;
286 device->magic.PC_UNKNOWN_9805 = 0x2;
287 device->magic.SP_UNKNOWN_A0F8 = 0x2;
288 break;
289 default:
290 result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
291 "device %s is unsupported", device->name);
292 goto fail;
293 }
294 if (tu_device_get_cache_uuid(device->gpu_id, device->cache_uuid)) {
295 result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
296 "cannot generate UUID");
297 goto fail;
298 }
299
300 /* The gpu id is already embedded in the uuid so we just pass "tu"
301 * when creating the cache.
302 */
303 char buf[VK_UUID_SIZE * 2 + 1];
304 disk_cache_format_hex_id(buf, device->cache_uuid, VK_UUID_SIZE * 2);
305 device->disk_cache = disk_cache_create(device->name, buf, 0);
306
307 fprintf(stderr, "WARNING: tu is not a conformant vulkan implementation, "
308 "testing use only.\n");
309
310 fd_get_driver_uuid(device->driver_uuid);
311 fd_get_device_uuid(device->device_uuid, device->gpu_id);
312
313 tu_physical_device_get_supported_extensions(device, &device->supported_extensions);
314
315 if (result != VK_SUCCESS) {
316 vk_error(instance, result);
317 goto fail;
318 }
319
320 result = tu_wsi_init(device);
321 if (result != VK_SUCCESS) {
322 vk_error(instance, result);
323 goto fail;
324 }
325
326 return VK_SUCCESS;
327
328 fail:
329 close(fd);
330 if (master_fd != -1)
331 close(master_fd);
332 return result;
333 }
334
335 static void
336 tu_physical_device_finish(struct tu_physical_device *device)
337 {
338 tu_wsi_finish(device);
339
340 disk_cache_destroy(device->disk_cache);
341 close(device->local_fd);
342 if (device->master_fd != -1)
343 close(device->master_fd);
344
345 vk_object_base_finish(&device->base);
346 }
347
348 static VKAPI_ATTR void *
349 default_alloc_func(void *pUserData,
350 size_t size,
351 size_t align,
352 VkSystemAllocationScope allocationScope)
353 {
354 return malloc(size);
355 }
356
357 static VKAPI_ATTR void *
358 default_realloc_func(void *pUserData,
359 void *pOriginal,
360 size_t size,
361 size_t align,
362 VkSystemAllocationScope allocationScope)
363 {
364 return realloc(pOriginal, size);
365 }
366
367 static VKAPI_ATTR void
368 default_free_func(void *pUserData, void *pMemory)
369 {
370 free(pMemory);
371 }
372
373 static const VkAllocationCallbacks default_alloc = {
374 .pUserData = NULL,
375 .pfnAllocation = default_alloc_func,
376 .pfnReallocation = default_realloc_func,
377 .pfnFree = default_free_func,
378 };
379
380 static const struct debug_control tu_debug_options[] = {
381 { "startup", TU_DEBUG_STARTUP },
382 { "nir", TU_DEBUG_NIR },
383 { "ir3", TU_DEBUG_IR3 },
384 { "nobin", TU_DEBUG_NOBIN },
385 { "sysmem", TU_DEBUG_SYSMEM },
386 { "forcebin", TU_DEBUG_FORCEBIN },
387 { "noubwc", TU_DEBUG_NOUBWC },
388 { NULL, 0 }
389 };
390
391 const char *
392 tu_get_debug_option_name(int id)
393 {
394 assert(id < ARRAY_SIZE(tu_debug_options) - 1);
395 return tu_debug_options[id].string;
396 }
397
398 static int
399 tu_get_instance_extension_index(const char *name)
400 {
401 for (unsigned i = 0; i < TU_INSTANCE_EXTENSION_COUNT; ++i) {
402 if (strcmp(name, tu_instance_extensions[i].extensionName) == 0)
403 return i;
404 }
405 return -1;
406 }
407
408 VkResult
409 tu_CreateInstance(const VkInstanceCreateInfo *pCreateInfo,
410 const VkAllocationCallbacks *pAllocator,
411 VkInstance *pInstance)
412 {
413 struct tu_instance *instance;
414 VkResult result;
415
416 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO);
417
418 uint32_t client_version;
419 if (pCreateInfo->pApplicationInfo &&
420 pCreateInfo->pApplicationInfo->apiVersion != 0) {
421 client_version = pCreateInfo->pApplicationInfo->apiVersion;
422 } else {
423 tu_EnumerateInstanceVersion(&client_version);
424 }
425
426 instance = vk_zalloc2(&default_alloc, pAllocator, sizeof(*instance), 8,
427 VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
428
429 if (!instance)
430 return vk_error(NULL, VK_ERROR_OUT_OF_HOST_MEMORY);
431
432 vk_object_base_init(NULL, &instance->base, VK_OBJECT_TYPE_INSTANCE);
433
434 if (pAllocator)
435 instance->alloc = *pAllocator;
436 else
437 instance->alloc = default_alloc;
438
439 instance->api_version = client_version;
440 instance->physical_device_count = -1;
441
442 instance->debug_flags =
443 parse_debug_string(getenv("TU_DEBUG"), tu_debug_options);
444
445 if (instance->debug_flags & TU_DEBUG_STARTUP)
446 tu_logi("Created an instance");
447
448 for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
449 const char *ext_name = pCreateInfo->ppEnabledExtensionNames[i];
450 int index = tu_get_instance_extension_index(ext_name);
451
452 if (index < 0 || !tu_instance_extensions_supported.extensions[index]) {
453 vk_object_base_finish(&instance->base);
454 vk_free2(&default_alloc, pAllocator, instance);
455 return vk_error(instance, VK_ERROR_EXTENSION_NOT_PRESENT);
456 }
457
458 instance->enabled_extensions.extensions[index] = true;
459 }
460
461 result = vk_debug_report_instance_init(&instance->debug_report_callbacks);
462 if (result != VK_SUCCESS) {
463 vk_object_base_finish(&instance->base);
464 vk_free2(&default_alloc, pAllocator, instance);
465 return vk_error(instance, result);
466 }
467
468 glsl_type_singleton_init_or_ref();
469
470 VG(VALGRIND_CREATE_MEMPOOL(instance, 0, false));
471
472 *pInstance = tu_instance_to_handle(instance);
473
474 return VK_SUCCESS;
475 }
476
477 void
478 tu_DestroyInstance(VkInstance _instance,
479 const VkAllocationCallbacks *pAllocator)
480 {
481 TU_FROM_HANDLE(tu_instance, instance, _instance);
482
483 if (!instance)
484 return;
485
486 for (int i = 0; i < instance->physical_device_count; ++i) {
487 tu_physical_device_finish(instance->physical_devices + i);
488 }
489
490 VG(VALGRIND_DESTROY_MEMPOOL(instance));
491
492 glsl_type_singleton_decref();
493
494 vk_debug_report_instance_destroy(&instance->debug_report_callbacks);
495
496 vk_object_base_finish(&instance->base);
497 vk_free(&instance->alloc, instance);
498 }
499
500 static VkResult
501 tu_enumerate_devices(struct tu_instance *instance)
502 {
503 /* TODO: Check for more devices ? */
504 drmDevicePtr devices[8];
505 VkResult result = VK_ERROR_INCOMPATIBLE_DRIVER;
506 int max_devices;
507
508 instance->physical_device_count = 0;
509
510 max_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices));
511
512 if (instance->debug_flags & TU_DEBUG_STARTUP) {
513 if (max_devices < 0)
514 tu_logi("drmGetDevices2 returned error: %s\n", strerror(max_devices));
515 else
516 tu_logi("Found %d drm nodes", max_devices);
517 }
518
519 if (max_devices < 1)
520 return vk_error(instance, VK_ERROR_INCOMPATIBLE_DRIVER);
521
522 for (unsigned i = 0; i < (unsigned) max_devices; i++) {
523 if (devices[i]->available_nodes & 1 << DRM_NODE_RENDER &&
524 devices[i]->bustype == DRM_BUS_PLATFORM) {
525
526 result = tu_physical_device_init(
527 instance->physical_devices + instance->physical_device_count,
528 instance, devices[i]);
529 if (result == VK_SUCCESS)
530 ++instance->physical_device_count;
531 else if (result != VK_ERROR_INCOMPATIBLE_DRIVER)
532 break;
533 }
534 }
535 drmFreeDevices(devices, max_devices);
536
537 return result;
538 }
539
540 VkResult
541 tu_EnumeratePhysicalDevices(VkInstance _instance,
542 uint32_t *pPhysicalDeviceCount,
543 VkPhysicalDevice *pPhysicalDevices)
544 {
545 TU_FROM_HANDLE(tu_instance, instance, _instance);
546 VK_OUTARRAY_MAKE(out, pPhysicalDevices, pPhysicalDeviceCount);
547
548 VkResult result;
549
550 if (instance->physical_device_count < 0) {
551 result = tu_enumerate_devices(instance);
552 if (result != VK_SUCCESS && result != VK_ERROR_INCOMPATIBLE_DRIVER)
553 return result;
554 }
555
556 for (uint32_t i = 0; i < instance->physical_device_count; ++i) {
557 vk_outarray_append(&out, p)
558 {
559 *p = tu_physical_device_to_handle(instance->physical_devices + i);
560 }
561 }
562
563 return vk_outarray_status(&out);
564 }
565
566 VkResult
567 tu_EnumeratePhysicalDeviceGroups(
568 VkInstance _instance,
569 uint32_t *pPhysicalDeviceGroupCount,
570 VkPhysicalDeviceGroupProperties *pPhysicalDeviceGroupProperties)
571 {
572 TU_FROM_HANDLE(tu_instance, instance, _instance);
573 VK_OUTARRAY_MAKE(out, pPhysicalDeviceGroupProperties,
574 pPhysicalDeviceGroupCount);
575 VkResult result;
576
577 if (instance->physical_device_count < 0) {
578 result = tu_enumerate_devices(instance);
579 if (result != VK_SUCCESS && result != VK_ERROR_INCOMPATIBLE_DRIVER)
580 return result;
581 }
582
583 for (uint32_t i = 0; i < instance->physical_device_count; ++i) {
584 vk_outarray_append(&out, p)
585 {
586 p->physicalDeviceCount = 1;
587 p->physicalDevices[0] =
588 tu_physical_device_to_handle(instance->physical_devices + i);
589 p->subsetAllocation = false;
590 }
591 }
592
593 return vk_outarray_status(&out);
594 }
595
596 void
597 tu_GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice,
598 VkPhysicalDeviceFeatures *pFeatures)
599 {
600 memset(pFeatures, 0, sizeof(*pFeatures));
601
602 *pFeatures = (VkPhysicalDeviceFeatures) {
603 .robustBufferAccess = true,
604 .fullDrawIndexUint32 = true,
605 .imageCubeArray = true,
606 .independentBlend = true,
607 .geometryShader = true,
608 .tessellationShader = true,
609 .sampleRateShading = true,
610 .dualSrcBlend = true,
611 .logicOp = true,
612 .multiDrawIndirect = true,
613 .drawIndirectFirstInstance = true,
614 .depthClamp = true,
615 .depthBiasClamp = true,
616 .fillModeNonSolid = true,
617 .depthBounds = true,
618 .wideLines = false,
619 .largePoints = true,
620 .alphaToOne = true,
621 .multiViewport = false,
622 .samplerAnisotropy = true,
623 .textureCompressionETC2 = true,
624 .textureCompressionASTC_LDR = true,
625 .textureCompressionBC = true,
626 .occlusionQueryPrecise = true,
627 .pipelineStatisticsQuery = false,
628 .vertexPipelineStoresAndAtomics = true,
629 .fragmentStoresAndAtomics = true,
630 .shaderTessellationAndGeometryPointSize = false,
631 .shaderImageGatherExtended = false,
632 .shaderStorageImageExtendedFormats = false,
633 .shaderStorageImageMultisample = false,
634 .shaderUniformBufferArrayDynamicIndexing = true,
635 .shaderSampledImageArrayDynamicIndexing = true,
636 .shaderStorageBufferArrayDynamicIndexing = true,
637 .shaderStorageImageArrayDynamicIndexing = true,
638 .shaderStorageImageReadWithoutFormat = false,
639 .shaderStorageImageWriteWithoutFormat = false,
640 .shaderClipDistance = false,
641 .shaderCullDistance = false,
642 .shaderFloat64 = false,
643 .shaderInt64 = false,
644 .shaderInt16 = false,
645 .sparseBinding = false,
646 .variableMultisampleRate = false,
647 .inheritedQueries = false,
648 };
649 }
650
651 void
652 tu_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
653 VkPhysicalDeviceFeatures2 *pFeatures)
654 {
655 vk_foreach_struct(ext, pFeatures->pNext)
656 {
657 switch (ext->sType) {
658 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES: {
659 VkPhysicalDeviceVulkan11Features *features = (void *) ext;
660 features->storageBuffer16BitAccess = false;
661 features->uniformAndStorageBuffer16BitAccess = false;
662 features->storagePushConstant16 = false;
663 features->storageInputOutput16 = false;
664 features->multiview = false;
665 features->multiviewGeometryShader = false;
666 features->multiviewTessellationShader = false;
667 features->variablePointersStorageBuffer = true;
668 features->variablePointers = true;
669 features->protectedMemory = false;
670 features->samplerYcbcrConversion = true;
671 features->shaderDrawParameters = true;
672 break;
673 }
674 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES: {
675 VkPhysicalDeviceVulkan12Features *features = (void *) ext;
676 features->samplerMirrorClampToEdge = true;
677 features->drawIndirectCount = true;
678 features->storageBuffer8BitAccess = false;
679 features->uniformAndStorageBuffer8BitAccess = false;
680 features->storagePushConstant8 = false;
681 features->shaderBufferInt64Atomics = false;
682 features->shaderSharedInt64Atomics = false;
683 features->shaderFloat16 = false;
684 features->shaderInt8 = false;
685
686 features->descriptorIndexing = false;
687 features->shaderInputAttachmentArrayDynamicIndexing = false;
688 features->shaderUniformTexelBufferArrayDynamicIndexing = false;
689 features->shaderStorageTexelBufferArrayDynamicIndexing = false;
690 features->shaderUniformBufferArrayNonUniformIndexing = false;
691 features->shaderSampledImageArrayNonUniformIndexing = false;
692 features->shaderStorageBufferArrayNonUniformIndexing = false;
693 features->shaderStorageImageArrayNonUniformIndexing = false;
694 features->shaderInputAttachmentArrayNonUniformIndexing = false;
695 features->shaderUniformTexelBufferArrayNonUniformIndexing = false;
696 features->shaderStorageTexelBufferArrayNonUniformIndexing = false;
697 features->descriptorBindingUniformBufferUpdateAfterBind = false;
698 features->descriptorBindingSampledImageUpdateAfterBind = false;
699 features->descriptorBindingStorageImageUpdateAfterBind = false;
700 features->descriptorBindingStorageBufferUpdateAfterBind = false;
701 features->descriptorBindingUniformTexelBufferUpdateAfterBind = false;
702 features->descriptorBindingStorageTexelBufferUpdateAfterBind = false;
703 features->descriptorBindingUpdateUnusedWhilePending = false;
704 features->descriptorBindingPartiallyBound = false;
705 features->descriptorBindingVariableDescriptorCount = false;
706 features->runtimeDescriptorArray = false;
707
708 features->samplerFilterMinmax = true;
709 features->scalarBlockLayout = false;
710 features->imagelessFramebuffer = false;
711 features->uniformBufferStandardLayout = false;
712 features->shaderSubgroupExtendedTypes = false;
713 features->separateDepthStencilLayouts = false;
714 features->hostQueryReset = false;
715 features->timelineSemaphore = false;
716 features->bufferDeviceAddress = false;
717 features->bufferDeviceAddressCaptureReplay = false;
718 features->bufferDeviceAddressMultiDevice = false;
719 features->vulkanMemoryModel = false;
720 features->vulkanMemoryModelDeviceScope = false;
721 features->vulkanMemoryModelAvailabilityVisibilityChains = false;
722 features->shaderOutputViewportIndex = false;
723 features->shaderOutputLayer = false;
724 features->subgroupBroadcastDynamicId = false;
725 break;
726 }
727 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES: {
728 VkPhysicalDeviceVariablePointersFeatures *features = (void *) ext;
729 features->variablePointersStorageBuffer = true;
730 features->variablePointers = true;
731 break;
732 }
733 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES: {
734 VkPhysicalDeviceMultiviewFeatures *features =
735 (VkPhysicalDeviceMultiviewFeatures *) ext;
736 features->multiview = false;
737 features->multiviewGeometryShader = false;
738 features->multiviewTessellationShader = false;
739 break;
740 }
741 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES: {
742 VkPhysicalDeviceShaderDrawParametersFeatures *features =
743 (VkPhysicalDeviceShaderDrawParametersFeatures *) ext;
744 features->shaderDrawParameters = true;
745 break;
746 }
747 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES: {
748 VkPhysicalDeviceProtectedMemoryFeatures *features =
749 (VkPhysicalDeviceProtectedMemoryFeatures *) ext;
750 features->protectedMemory = false;
751 break;
752 }
753 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES: {
754 VkPhysicalDevice16BitStorageFeatures *features =
755 (VkPhysicalDevice16BitStorageFeatures *) ext;
756 features->storageBuffer16BitAccess = false;
757 features->uniformAndStorageBuffer16BitAccess = false;
758 features->storagePushConstant16 = false;
759 features->storageInputOutput16 = false;
760 break;
761 }
762 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: {
763 VkPhysicalDeviceSamplerYcbcrConversionFeatures *features =
764 (VkPhysicalDeviceSamplerYcbcrConversionFeatures *) ext;
765 features->samplerYcbcrConversion = true;
766 break;
767 }
768 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT: {
769 VkPhysicalDeviceDescriptorIndexingFeaturesEXT *features =
770 (VkPhysicalDeviceDescriptorIndexingFeaturesEXT *) ext;
771 features->shaderInputAttachmentArrayDynamicIndexing = false;
772 features->shaderUniformTexelBufferArrayDynamicIndexing = false;
773 features->shaderStorageTexelBufferArrayDynamicIndexing = false;
774 features->shaderUniformBufferArrayNonUniformIndexing = false;
775 features->shaderSampledImageArrayNonUniformIndexing = false;
776 features->shaderStorageBufferArrayNonUniformIndexing = false;
777 features->shaderStorageImageArrayNonUniformIndexing = false;
778 features->shaderInputAttachmentArrayNonUniformIndexing = false;
779 features->shaderUniformTexelBufferArrayNonUniformIndexing = false;
780 features->shaderStorageTexelBufferArrayNonUniformIndexing = false;
781 features->descriptorBindingUniformBufferUpdateAfterBind = false;
782 features->descriptorBindingSampledImageUpdateAfterBind = false;
783 features->descriptorBindingStorageImageUpdateAfterBind = false;
784 features->descriptorBindingStorageBufferUpdateAfterBind = false;
785 features->descriptorBindingUniformTexelBufferUpdateAfterBind = false;
786 features->descriptorBindingStorageTexelBufferUpdateAfterBind = false;
787 features->descriptorBindingUpdateUnusedWhilePending = false;
788 features->descriptorBindingPartiallyBound = false;
789 features->descriptorBindingVariableDescriptorCount = false;
790 features->runtimeDescriptorArray = false;
791 break;
792 }
793 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT: {
794 VkPhysicalDeviceConditionalRenderingFeaturesEXT *features =
795 (VkPhysicalDeviceConditionalRenderingFeaturesEXT *) ext;
796 features->conditionalRendering = false;
797 features->inheritedConditionalRendering = false;
798 break;
799 }
800 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT: {
801 VkPhysicalDeviceTransformFeedbackFeaturesEXT *features =
802 (VkPhysicalDeviceTransformFeedbackFeaturesEXT *) ext;
803 features->transformFeedback = true;
804 features->geometryStreams = false;
805 break;
806 }
807 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT: {
808 VkPhysicalDeviceIndexTypeUint8FeaturesEXT *features =
809 (VkPhysicalDeviceIndexTypeUint8FeaturesEXT *)ext;
810 features->indexTypeUint8 = true;
811 break;
812 }
813 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT: {
814 VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *features =
815 (VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *)ext;
816 features->vertexAttributeInstanceRateDivisor = true;
817 features->vertexAttributeInstanceRateZeroDivisor = true;
818 break;
819 }
820 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES_EXT: {
821 VkPhysicalDevicePrivateDataFeaturesEXT *features =
822 (VkPhysicalDevicePrivateDataFeaturesEXT *)ext;
823 features->privateData = true;
824 break;
825 }
826 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT: {
827 VkPhysicalDeviceDepthClipEnableFeaturesEXT *features =
828 (VkPhysicalDeviceDepthClipEnableFeaturesEXT *)ext;
829 features->depthClipEnable = true;
830 break;
831 }
832 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT: {
833 VkPhysicalDevice4444FormatsFeaturesEXT *features = (void *)ext;
834 features->formatA4R4G4B4 = true;
835 features->formatA4B4G4R4 = true;
836 break;
837 }
838 default:
839 break;
840 }
841 }
842 return tu_GetPhysicalDeviceFeatures(physicalDevice, &pFeatures->features);
843 }
844
845 void
846 tu_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice,
847 VkPhysicalDeviceProperties *pProperties)
848 {
849 TU_FROM_HANDLE(tu_physical_device, pdevice, physicalDevice);
850 VkSampleCountFlags sample_counts =
851 VK_SAMPLE_COUNT_1_BIT | VK_SAMPLE_COUNT_2_BIT | VK_SAMPLE_COUNT_4_BIT;
852
853 /* I have no idea what the maximum size is, but the hardware supports very
854 * large numbers of descriptors (at least 2^16). This limit is based on
855 * CP_LOAD_STATE6, which has a 28-bit field for the DWORD offset, so that
856 * we don't have to think about what to do if that overflows, but really
857 * nothing is likely to get close to this.
858 */
859 const size_t max_descriptor_set_size = (1 << 28) / A6XX_TEX_CONST_DWORDS;
860
861 VkPhysicalDeviceLimits limits = {
862 .maxImageDimension1D = (1 << 14),
863 .maxImageDimension2D = (1 << 14),
864 .maxImageDimension3D = (1 << 11),
865 .maxImageDimensionCube = (1 << 14),
866 .maxImageArrayLayers = (1 << 11),
867 .maxTexelBufferElements = 128 * 1024 * 1024,
868 .maxUniformBufferRange = MAX_UNIFORM_BUFFER_RANGE,
869 .maxStorageBufferRange = MAX_STORAGE_BUFFER_RANGE,
870 .maxPushConstantsSize = MAX_PUSH_CONSTANTS_SIZE,
871 .maxMemoryAllocationCount = UINT32_MAX,
872 .maxSamplerAllocationCount = 64 * 1024,
873 .bufferImageGranularity = 64, /* A cache line */
874 .sparseAddressSpaceSize = 0xffffffffu, /* buffer max size */
875 .maxBoundDescriptorSets = MAX_SETS,
876 .maxPerStageDescriptorSamplers = max_descriptor_set_size,
877 .maxPerStageDescriptorUniformBuffers = max_descriptor_set_size,
878 .maxPerStageDescriptorStorageBuffers = max_descriptor_set_size,
879 .maxPerStageDescriptorSampledImages = max_descriptor_set_size,
880 .maxPerStageDescriptorStorageImages = max_descriptor_set_size,
881 .maxPerStageDescriptorInputAttachments = MAX_RTS,
882 .maxPerStageResources = max_descriptor_set_size,
883 .maxDescriptorSetSamplers = max_descriptor_set_size,
884 .maxDescriptorSetUniformBuffers = max_descriptor_set_size,
885 .maxDescriptorSetUniformBuffersDynamic = MAX_DYNAMIC_UNIFORM_BUFFERS,
886 .maxDescriptorSetStorageBuffers = max_descriptor_set_size,
887 .maxDescriptorSetStorageBuffersDynamic = MAX_DYNAMIC_STORAGE_BUFFERS,
888 .maxDescriptorSetSampledImages = max_descriptor_set_size,
889 .maxDescriptorSetStorageImages = max_descriptor_set_size,
890 .maxDescriptorSetInputAttachments = MAX_RTS,
891 .maxVertexInputAttributes = 32,
892 .maxVertexInputBindings = 32,
893 .maxVertexInputAttributeOffset = 4095,
894 .maxVertexInputBindingStride = 2048,
895 .maxVertexOutputComponents = 128,
896 .maxTessellationGenerationLevel = 64,
897 .maxTessellationPatchSize = 32,
898 .maxTessellationControlPerVertexInputComponents = 128,
899 .maxTessellationControlPerVertexOutputComponents = 128,
900 .maxTessellationControlPerPatchOutputComponents = 120,
901 .maxTessellationControlTotalOutputComponents = 4096,
902 .maxTessellationEvaluationInputComponents = 128,
903 .maxTessellationEvaluationOutputComponents = 128,
904 .maxGeometryShaderInvocations = 32,
905 .maxGeometryInputComponents = 64,
906 .maxGeometryOutputComponents = 128,
907 .maxGeometryOutputVertices = 256,
908 .maxGeometryTotalOutputComponents = 1024,
909 .maxFragmentInputComponents = 124,
910 .maxFragmentOutputAttachments = 8,
911 .maxFragmentDualSrcAttachments = 1,
912 .maxFragmentCombinedOutputResources = 8,
913 .maxComputeSharedMemorySize = 32768,
914 .maxComputeWorkGroupCount = { 65535, 65535, 65535 },
915 .maxComputeWorkGroupInvocations = 2048,
916 .maxComputeWorkGroupSize = { 2048, 2048, 2048 },
917 .subPixelPrecisionBits = 8,
918 .subTexelPrecisionBits = 8,
919 .mipmapPrecisionBits = 8,
920 .maxDrawIndexedIndexValue = UINT32_MAX,
921 .maxDrawIndirectCount = UINT32_MAX,
922 .maxSamplerLodBias = 4095.0 / 256.0, /* [-16, 15.99609375] */
923 .maxSamplerAnisotropy = 16,
924 .maxViewports = MAX_VIEWPORTS,
925 .maxViewportDimensions = { (1 << 14), (1 << 14) },
926 .viewportBoundsRange = { INT16_MIN, INT16_MAX },
927 .viewportSubPixelBits = 8,
928 .minMemoryMapAlignment = 4096, /* A page */
929 .minTexelBufferOffsetAlignment = 64,
930 .minUniformBufferOffsetAlignment = 64,
931 .minStorageBufferOffsetAlignment = 64,
932 .minTexelOffset = -16,
933 .maxTexelOffset = 15,
934 .minTexelGatherOffset = -32,
935 .maxTexelGatherOffset = 31,
936 .minInterpolationOffset = -0.5,
937 .maxInterpolationOffset = 0.4375,
938 .subPixelInterpolationOffsetBits = 4,
939 .maxFramebufferWidth = (1 << 14),
940 .maxFramebufferHeight = (1 << 14),
941 .maxFramebufferLayers = (1 << 10),
942 .framebufferColorSampleCounts = sample_counts,
943 .framebufferDepthSampleCounts = sample_counts,
944 .framebufferStencilSampleCounts = sample_counts,
945 .framebufferNoAttachmentsSampleCounts = sample_counts,
946 .maxColorAttachments = MAX_RTS,
947 .sampledImageColorSampleCounts = sample_counts,
948 .sampledImageIntegerSampleCounts = VK_SAMPLE_COUNT_1_BIT,
949 .sampledImageDepthSampleCounts = sample_counts,
950 .sampledImageStencilSampleCounts = sample_counts,
951 .storageImageSampleCounts = VK_SAMPLE_COUNT_1_BIT,
952 .maxSampleMaskWords = 1,
953 .timestampComputeAndGraphics = true,
954 .timestampPeriod = 1000000000.0 / 19200000.0, /* CP_ALWAYS_ON_COUNTER is fixed 19.2MHz */
955 .maxClipDistances = 8,
956 .maxCullDistances = 8,
957 .maxCombinedClipAndCullDistances = 8,
958 .discreteQueuePriorities = 1,
959 .pointSizeRange = { 1, 4092 },
960 .lineWidthRange = { 0.0, 7.9921875 },
961 .pointSizeGranularity = 0.0625,
962 .lineWidthGranularity = (1.0 / 128.0),
963 .strictLines = false, /* FINISHME */
964 .standardSampleLocations = true,
965 .optimalBufferCopyOffsetAlignment = 128,
966 .optimalBufferCopyRowPitchAlignment = 128,
967 .nonCoherentAtomSize = 64,
968 };
969
970 *pProperties = (VkPhysicalDeviceProperties) {
971 .apiVersion = tu_physical_device_api_version(pdevice),
972 .driverVersion = vk_get_driver_version(),
973 .vendorID = 0, /* TODO */
974 .deviceID = 0,
975 .deviceType = VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU,
976 .limits = limits,
977 .sparseProperties = { 0 },
978 };
979
980 strcpy(pProperties->deviceName, pdevice->name);
981 memcpy(pProperties->pipelineCacheUUID, pdevice->cache_uuid, VK_UUID_SIZE);
982 }
983
984 void
985 tu_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
986 VkPhysicalDeviceProperties2 *pProperties)
987 {
988 TU_FROM_HANDLE(tu_physical_device, pdevice, physicalDevice);
989 tu_GetPhysicalDeviceProperties(physicalDevice, &pProperties->properties);
990
991 vk_foreach_struct(ext, pProperties->pNext)
992 {
993 switch (ext->sType) {
994 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR: {
995 VkPhysicalDevicePushDescriptorPropertiesKHR *properties =
996 (VkPhysicalDevicePushDescriptorPropertiesKHR *) ext;
997 properties->maxPushDescriptors = MAX_PUSH_DESCRIPTORS;
998 break;
999 }
1000 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES: {
1001 VkPhysicalDeviceIDProperties *properties =
1002 (VkPhysicalDeviceIDProperties *) ext;
1003 memcpy(properties->driverUUID, pdevice->driver_uuid, VK_UUID_SIZE);
1004 memcpy(properties->deviceUUID, pdevice->device_uuid, VK_UUID_SIZE);
1005 properties->deviceLUIDValid = false;
1006 break;
1007 }
1008 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES: {
1009 VkPhysicalDeviceMultiviewProperties *properties =
1010 (VkPhysicalDeviceMultiviewProperties *) ext;
1011 properties->maxMultiviewViewCount = MAX_VIEWS;
1012 properties->maxMultiviewInstanceIndex = INT_MAX;
1013 break;
1014 }
1015 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES: {
1016 VkPhysicalDevicePointClippingProperties *properties =
1017 (VkPhysicalDevicePointClippingProperties *) ext;
1018 properties->pointClippingBehavior =
1019 VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES;
1020 break;
1021 }
1022 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES: {
1023 VkPhysicalDeviceMaintenance3Properties *properties =
1024 (VkPhysicalDeviceMaintenance3Properties *) ext;
1025 /* Make sure everything is addressable by a signed 32-bit int, and
1026 * our largest descriptors are 96 bytes. */
1027 properties->maxPerSetDescriptors = (1ull << 31) / 96;
1028 /* Our buffer size fields allow only this much */
1029 properties->maxMemoryAllocationSize = 0xFFFFFFFFull;
1030 break;
1031 }
1032 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT: {
1033 VkPhysicalDeviceTransformFeedbackPropertiesEXT *properties =
1034 (VkPhysicalDeviceTransformFeedbackPropertiesEXT *)ext;
1035
1036 properties->maxTransformFeedbackStreams = IR3_MAX_SO_STREAMS;
1037 properties->maxTransformFeedbackBuffers = IR3_MAX_SO_BUFFERS;
1038 properties->maxTransformFeedbackBufferSize = UINT32_MAX;
1039 properties->maxTransformFeedbackStreamDataSize = 512;
1040 properties->maxTransformFeedbackBufferDataSize = 512;
1041 properties->maxTransformFeedbackBufferDataStride = 512;
1042 properties->transformFeedbackQueries = true;
1043 properties->transformFeedbackStreamsLinesTriangles = false;
1044 properties->transformFeedbackRasterizationStreamSelect = false;
1045 properties->transformFeedbackDraw = true;
1046 break;
1047 }
1048 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT: {
1049 VkPhysicalDeviceSampleLocationsPropertiesEXT *properties =
1050 (VkPhysicalDeviceSampleLocationsPropertiesEXT *)ext;
1051 properties->sampleLocationSampleCounts = 0;
1052 if (pdevice->supported_extensions.EXT_sample_locations) {
1053 properties->sampleLocationSampleCounts =
1054 VK_SAMPLE_COUNT_1_BIT | VK_SAMPLE_COUNT_2_BIT | VK_SAMPLE_COUNT_4_BIT;
1055 }
1056 properties->maxSampleLocationGridSize = (VkExtent2D) { 1 , 1 };
1057 properties->sampleLocationCoordinateRange[0] = 0.0f;
1058 properties->sampleLocationCoordinateRange[1] = 0.9375f;
1059 properties->sampleLocationSubPixelBits = 4;
1060 properties->variableSampleLocations = true;
1061 break;
1062 }
1063 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES: {
1064 VkPhysicalDeviceSamplerFilterMinmaxProperties *properties =
1065 (VkPhysicalDeviceSamplerFilterMinmaxProperties *)ext;
1066 properties->filterMinmaxImageComponentMapping = true;
1067 properties->filterMinmaxSingleComponentFormats = true;
1068 break;
1069 }
1070 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES: {
1071 VkPhysicalDeviceSubgroupProperties *properties =
1072 (VkPhysicalDeviceSubgroupProperties *)ext;
1073 properties->subgroupSize = 64;
1074 properties->supportedStages = VK_SHADER_STAGE_COMPUTE_BIT;
1075 properties->supportedOperations = VK_SUBGROUP_FEATURE_BASIC_BIT |
1076 VK_SUBGROUP_FEATURE_VOTE_BIT;
1077 properties->quadOperationsInAllStages = false;
1078 break;
1079 }
1080 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT: {
1081 VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *props =
1082 (VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *)ext;
1083 props->maxVertexAttribDivisor = UINT32_MAX;
1084 break;
1085 }
1086 default:
1087 break;
1088 }
1089 }
1090 }
1091
1092 static const VkQueueFamilyProperties tu_queue_family_properties = {
1093 .queueFlags =
1094 VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT,
1095 .queueCount = 1,
1096 .timestampValidBits = 48,
1097 .minImageTransferGranularity = { 1, 1, 1 },
1098 };
1099
1100 void
1101 tu_GetPhysicalDeviceQueueFamilyProperties(
1102 VkPhysicalDevice physicalDevice,
1103 uint32_t *pQueueFamilyPropertyCount,
1104 VkQueueFamilyProperties *pQueueFamilyProperties)
1105 {
1106 VK_OUTARRAY_MAKE(out, pQueueFamilyProperties, pQueueFamilyPropertyCount);
1107
1108 vk_outarray_append(&out, p) { *p = tu_queue_family_properties; }
1109 }
1110
1111 void
1112 tu_GetPhysicalDeviceQueueFamilyProperties2(
1113 VkPhysicalDevice physicalDevice,
1114 uint32_t *pQueueFamilyPropertyCount,
1115 VkQueueFamilyProperties2 *pQueueFamilyProperties)
1116 {
1117 VK_OUTARRAY_MAKE(out, pQueueFamilyProperties, pQueueFamilyPropertyCount);
1118
1119 vk_outarray_append(&out, p)
1120 {
1121 p->queueFamilyProperties = tu_queue_family_properties;
1122 }
1123 }
1124
1125 static uint64_t
1126 tu_get_system_heap_size()
1127 {
1128 struct sysinfo info;
1129 sysinfo(&info);
1130
1131 uint64_t total_ram = (uint64_t) info.totalram * (uint64_t) info.mem_unit;
1132
1133 /* We don't want to burn too much ram with the GPU. If the user has 4GiB
1134 * or less, we use at most half. If they have more than 4GiB, we use 3/4.
1135 */
1136 uint64_t available_ram;
1137 if (total_ram <= 4ull * 1024ull * 1024ull * 1024ull)
1138 available_ram = total_ram / 2;
1139 else
1140 available_ram = total_ram * 3 / 4;
1141
1142 return available_ram;
1143 }
1144
1145 void
1146 tu_GetPhysicalDeviceMemoryProperties(
1147 VkPhysicalDevice physicalDevice,
1148 VkPhysicalDeviceMemoryProperties *pMemoryProperties)
1149 {
1150 pMemoryProperties->memoryHeapCount = 1;
1151 pMemoryProperties->memoryHeaps[0].size = tu_get_system_heap_size();
1152 pMemoryProperties->memoryHeaps[0].flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT;
1153
1154 pMemoryProperties->memoryTypeCount = 1;
1155 pMemoryProperties->memoryTypes[0].propertyFlags =
1156 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
1157 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
1158 VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
1159 pMemoryProperties->memoryTypes[0].heapIndex = 0;
1160 }
1161
1162 void
1163 tu_GetPhysicalDeviceMemoryProperties2(
1164 VkPhysicalDevice physicalDevice,
1165 VkPhysicalDeviceMemoryProperties2 *pMemoryProperties)
1166 {
1167 return tu_GetPhysicalDeviceMemoryProperties(
1168 physicalDevice, &pMemoryProperties->memoryProperties);
1169 }
1170
1171 static VkResult
1172 tu_queue_init(struct tu_device *device,
1173 struct tu_queue *queue,
1174 uint32_t queue_family_index,
1175 int idx,
1176 VkDeviceQueueCreateFlags flags)
1177 {
1178 vk_object_base_init(&device->vk, &queue->base, VK_OBJECT_TYPE_QUEUE);
1179
1180 queue->device = device;
1181 queue->queue_family_index = queue_family_index;
1182 queue->queue_idx = idx;
1183 queue->flags = flags;
1184
1185 int ret = tu_drm_submitqueue_new(device, 0, &queue->msm_queue_id);
1186 if (ret)
1187 return VK_ERROR_INITIALIZATION_FAILED;
1188
1189 tu_fence_init(&queue->submit_fence, false);
1190
1191 return VK_SUCCESS;
1192 }
1193
1194 static void
1195 tu_queue_finish(struct tu_queue *queue)
1196 {
1197 tu_fence_finish(&queue->submit_fence);
1198 tu_drm_submitqueue_close(queue->device, queue->msm_queue_id);
1199 }
1200
1201 static int
1202 tu_get_device_extension_index(const char *name)
1203 {
1204 for (unsigned i = 0; i < TU_DEVICE_EXTENSION_COUNT; ++i) {
1205 if (strcmp(name, tu_device_extensions[i].extensionName) == 0)
1206 return i;
1207 }
1208 return -1;
1209 }
1210
1211 struct PACKED bcolor_entry {
1212 uint32_t fp32[4];
1213 uint16_t ui16[4];
1214 int16_t si16[4];
1215 uint16_t fp16[4];
1216 uint16_t rgb565;
1217 uint16_t rgb5a1;
1218 uint16_t rgba4;
1219 uint8_t __pad0[2];
1220 uint8_t ui8[4];
1221 int8_t si8[4];
1222 uint32_t rgb10a2;
1223 uint32_t z24; /* also s8? */
1224 uint16_t srgb[4]; /* appears to duplicate fp16[], but clamped, used for srgb */
1225 uint8_t __pad1[56];
1226 } border_color[] = {
1227 [VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK] = {},
1228 [VK_BORDER_COLOR_INT_TRANSPARENT_BLACK] = {},
1229 [VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK] = {
1230 .fp32[3] = 0x3f800000,
1231 .ui16[3] = 0xffff,
1232 .si16[3] = 0x7fff,
1233 .fp16[3] = 0x3c00,
1234 .rgb5a1 = 0x8000,
1235 .rgba4 = 0xf000,
1236 .ui8[3] = 0xff,
1237 .si8[3] = 0x7f,
1238 .rgb10a2 = 0xc0000000,
1239 .srgb[3] = 0x3c00,
1240 },
1241 [VK_BORDER_COLOR_INT_OPAQUE_BLACK] = {
1242 .fp32[3] = 1,
1243 .fp16[3] = 1,
1244 },
1245 [VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE] = {
1246 .fp32[0 ... 3] = 0x3f800000,
1247 .ui16[0 ... 3] = 0xffff,
1248 .si16[0 ... 3] = 0x7fff,
1249 .fp16[0 ... 3] = 0x3c00,
1250 .rgb565 = 0xffff,
1251 .rgb5a1 = 0xffff,
1252 .rgba4 = 0xffff,
1253 .ui8[0 ... 3] = 0xff,
1254 .si8[0 ... 3] = 0x7f,
1255 .rgb10a2 = 0xffffffff,
1256 .z24 = 0xffffff,
1257 .srgb[0 ... 3] = 0x3c00,
1258 },
1259 [VK_BORDER_COLOR_INT_OPAQUE_WHITE] = {
1260 .fp32[0 ... 3] = 1,
1261 .fp16[0 ... 3] = 1,
1262 },
1263 };
1264
1265 VkResult
1266 tu_CreateDevice(VkPhysicalDevice physicalDevice,
1267 const VkDeviceCreateInfo *pCreateInfo,
1268 const VkAllocationCallbacks *pAllocator,
1269 VkDevice *pDevice)
1270 {
1271 TU_FROM_HANDLE(tu_physical_device, physical_device, physicalDevice);
1272 VkResult result;
1273 struct tu_device *device;
1274
1275 /* Check enabled features */
1276 if (pCreateInfo->pEnabledFeatures) {
1277 VkPhysicalDeviceFeatures supported_features;
1278 tu_GetPhysicalDeviceFeatures(physicalDevice, &supported_features);
1279 VkBool32 *supported_feature = (VkBool32 *) &supported_features;
1280 VkBool32 *enabled_feature = (VkBool32 *) pCreateInfo->pEnabledFeatures;
1281 unsigned num_features =
1282 sizeof(VkPhysicalDeviceFeatures) / sizeof(VkBool32);
1283 for (uint32_t i = 0; i < num_features; i++) {
1284 if (enabled_feature[i] && !supported_feature[i])
1285 return vk_error(physical_device->instance,
1286 VK_ERROR_FEATURE_NOT_PRESENT);
1287 }
1288 }
1289
1290 device = vk_zalloc2(&physical_device->instance->alloc, pAllocator,
1291 sizeof(*device), 8, VK_SYSTEM_ALLOCATION_SCOPE_DEVICE);
1292 if (!device)
1293 return vk_error(physical_device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
1294
1295 vk_device_init(&device->vk, pCreateInfo,
1296 &physical_device->instance->alloc, pAllocator);
1297
1298 device->instance = physical_device->instance;
1299 device->physical_device = physical_device;
1300 device->_lost = false;
1301
1302 for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
1303 const char *ext_name = pCreateInfo->ppEnabledExtensionNames[i];
1304 int index = tu_get_device_extension_index(ext_name);
1305 if (index < 0 ||
1306 !physical_device->supported_extensions.extensions[index]) {
1307 vk_free(&device->vk.alloc, device);
1308 return vk_error(physical_device->instance,
1309 VK_ERROR_EXTENSION_NOT_PRESENT);
1310 }
1311
1312 device->enabled_extensions.extensions[index] = true;
1313 }
1314
1315 for (unsigned i = 0; i < pCreateInfo->queueCreateInfoCount; i++) {
1316 const VkDeviceQueueCreateInfo *queue_create =
1317 &pCreateInfo->pQueueCreateInfos[i];
1318 uint32_t qfi = queue_create->queueFamilyIndex;
1319 device->queues[qfi] = vk_alloc(
1320 &device->vk.alloc, queue_create->queueCount * sizeof(struct tu_queue),
1321 8, VK_SYSTEM_ALLOCATION_SCOPE_DEVICE);
1322 if (!device->queues[qfi]) {
1323 result = VK_ERROR_OUT_OF_HOST_MEMORY;
1324 goto fail_queues;
1325 }
1326
1327 memset(device->queues[qfi], 0,
1328 queue_create->queueCount * sizeof(struct tu_queue));
1329
1330 device->queue_count[qfi] = queue_create->queueCount;
1331
1332 for (unsigned q = 0; q < queue_create->queueCount; q++) {
1333 result = tu_queue_init(device, &device->queues[qfi][q], qfi, q,
1334 queue_create->flags);
1335 if (result != VK_SUCCESS)
1336 goto fail_queues;
1337 }
1338 }
1339
1340 device->compiler = ir3_compiler_create(NULL, physical_device->gpu_id);
1341 if (!device->compiler)
1342 goto fail_queues;
1343
1344 /* initial sizes, these will increase if there is overflow */
1345 device->vsc_draw_strm_pitch = 0x1000 + VSC_PAD;
1346 device->vsc_prim_strm_pitch = 0x4000 + VSC_PAD;
1347
1348 STATIC_ASSERT(sizeof(border_color) == sizeof(((struct tu6_global*) 0)->border_color));
1349 result = tu_bo_init_new(device, &device->global_bo, sizeof(struct tu6_global));
1350 if (result != VK_SUCCESS)
1351 goto fail_global_bo;
1352
1353 result = tu_bo_map(device, &device->global_bo);
1354 if (result != VK_SUCCESS)
1355 goto fail_global_bo_map;
1356
1357 memcpy(device->global_bo.map + gb_offset(border_color), border_color, sizeof(border_color));
1358 tu_init_clear_blit_shaders(device->global_bo.map);
1359
1360 VkPipelineCacheCreateInfo ci;
1361 ci.sType = VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO;
1362 ci.pNext = NULL;
1363 ci.flags = 0;
1364 ci.pInitialData = NULL;
1365 ci.initialDataSize = 0;
1366 VkPipelineCache pc;
1367 result =
1368 tu_CreatePipelineCache(tu_device_to_handle(device), &ci, NULL, &pc);
1369 if (result != VK_SUCCESS)
1370 goto fail_pipeline_cache;
1371
1372 device->mem_cache = tu_pipeline_cache_from_handle(pc);
1373
1374 for (unsigned i = 0; i < ARRAY_SIZE(device->scratch_bos); i++)
1375 mtx_init(&device->scratch_bos[i].construct_mtx, mtx_plain);
1376
1377 mtx_init(&device->vsc_pitch_mtx, mtx_plain);
1378
1379 *pDevice = tu_device_to_handle(device);
1380 return VK_SUCCESS;
1381
1382 fail_pipeline_cache:
1383 fail_global_bo_map:
1384 tu_bo_finish(device, &device->global_bo);
1385
1386 fail_global_bo:
1387 ralloc_free(device->compiler);
1388
1389 fail_queues:
1390 for (unsigned i = 0; i < TU_MAX_QUEUE_FAMILIES; i++) {
1391 for (unsigned q = 0; q < device->queue_count[i]; q++)
1392 tu_queue_finish(&device->queues[i][q]);
1393 if (device->queue_count[i])
1394 vk_object_free(&device->vk, NULL, device->queues[i]);
1395 }
1396
1397 vk_free(&device->vk.alloc, device);
1398 return result;
1399 }
1400
1401 void
1402 tu_DestroyDevice(VkDevice _device, const VkAllocationCallbacks *pAllocator)
1403 {
1404 TU_FROM_HANDLE(tu_device, device, _device);
1405
1406 if (!device)
1407 return;
1408
1409 for (unsigned i = 0; i < TU_MAX_QUEUE_FAMILIES; i++) {
1410 for (unsigned q = 0; q < device->queue_count[i]; q++)
1411 tu_queue_finish(&device->queues[i][q]);
1412 if (device->queue_count[i])
1413 vk_object_free(&device->vk, NULL, device->queues[i]);
1414 }
1415
1416 for (unsigned i = 0; i < ARRAY_SIZE(device->scratch_bos); i++) {
1417 if (device->scratch_bos[i].initialized)
1418 tu_bo_finish(device, &device->scratch_bos[i].bo);
1419 }
1420
1421 ir3_compiler_destroy(device->compiler);
1422
1423 VkPipelineCache pc = tu_pipeline_cache_to_handle(device->mem_cache);
1424 tu_DestroyPipelineCache(tu_device_to_handle(device), pc, NULL);
1425
1426 vk_free(&device->vk.alloc, device);
1427 }
1428
1429 VkResult
1430 _tu_device_set_lost(struct tu_device *device,
1431 const char *file, int line,
1432 const char *msg, ...)
1433 {
1434 /* Set the flag indicating that waits should return in finite time even
1435 * after device loss.
1436 */
1437 p_atomic_inc(&device->_lost);
1438
1439 /* TODO: Report the log message through VkDebugReportCallbackEXT instead */
1440 fprintf(stderr, "%s:%d: ", file, line);
1441 va_list ap;
1442 va_start(ap, msg);
1443 vfprintf(stderr, msg, ap);
1444 va_end(ap);
1445
1446 if (env_var_as_boolean("TU_ABORT_ON_DEVICE_LOSS", false))
1447 abort();
1448
1449 return VK_ERROR_DEVICE_LOST;
1450 }
1451
1452 VkResult
1453 tu_get_scratch_bo(struct tu_device *dev, uint64_t size, struct tu_bo **bo)
1454 {
1455 unsigned size_log2 = MAX2(util_logbase2_ceil64(size), MIN_SCRATCH_BO_SIZE_LOG2);
1456 unsigned index = size_log2 - MIN_SCRATCH_BO_SIZE_LOG2;
1457 assert(index < ARRAY_SIZE(dev->scratch_bos));
1458
1459 for (unsigned i = index; i < ARRAY_SIZE(dev->scratch_bos); i++) {
1460 if (p_atomic_read(&dev->scratch_bos[i].initialized)) {
1461 /* Fast path: just return the already-allocated BO. */
1462 *bo = &dev->scratch_bos[i].bo;
1463 return VK_SUCCESS;
1464 }
1465 }
1466
1467 /* Slow path: actually allocate the BO. We take a lock because the process
1468 * of allocating it is slow, and we don't want to block the CPU while it
1469 * finishes.
1470 */
1471 mtx_lock(&dev->scratch_bos[index].construct_mtx);
1472
1473 /* Another thread may have allocated it already while we were waiting on
1474 * the lock. We need to check this in order to avoid double-allocating.
1475 */
1476 if (dev->scratch_bos[index].initialized) {
1477 mtx_unlock(&dev->scratch_bos[index].construct_mtx);
1478 *bo = &dev->scratch_bos[index].bo;
1479 return VK_SUCCESS;
1480 }
1481
1482 unsigned bo_size = 1ull << size_log2;
1483 VkResult result = tu_bo_init_new(dev, &dev->scratch_bos[index].bo, bo_size);
1484 if (result != VK_SUCCESS) {
1485 mtx_unlock(&dev->scratch_bos[index].construct_mtx);
1486 return result;
1487 }
1488
1489 p_atomic_set(&dev->scratch_bos[index].initialized, true);
1490
1491 mtx_unlock(&dev->scratch_bos[index].construct_mtx);
1492
1493 *bo = &dev->scratch_bos[index].bo;
1494 return VK_SUCCESS;
1495 }
1496
1497 VkResult
1498 tu_EnumerateInstanceLayerProperties(uint32_t *pPropertyCount,
1499 VkLayerProperties *pProperties)
1500 {
1501 *pPropertyCount = 0;
1502 return VK_SUCCESS;
1503 }
1504
1505 VkResult
1506 tu_EnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice,
1507 uint32_t *pPropertyCount,
1508 VkLayerProperties *pProperties)
1509 {
1510 *pPropertyCount = 0;
1511 return VK_SUCCESS;
1512 }
1513
1514 void
1515 tu_GetDeviceQueue2(VkDevice _device,
1516 const VkDeviceQueueInfo2 *pQueueInfo,
1517 VkQueue *pQueue)
1518 {
1519 TU_FROM_HANDLE(tu_device, device, _device);
1520 struct tu_queue *queue;
1521
1522 queue =
1523 &device->queues[pQueueInfo->queueFamilyIndex][pQueueInfo->queueIndex];
1524 if (pQueueInfo->flags != queue->flags) {
1525 /* From the Vulkan 1.1.70 spec:
1526 *
1527 * "The queue returned by vkGetDeviceQueue2 must have the same
1528 * flags value from this structure as that used at device
1529 * creation time in a VkDeviceQueueCreateInfo instance. If no
1530 * matching flags were specified at device creation time then
1531 * pQueue will return VK_NULL_HANDLE."
1532 */
1533 *pQueue = VK_NULL_HANDLE;
1534 return;
1535 }
1536
1537 *pQueue = tu_queue_to_handle(queue);
1538 }
1539
1540 void
1541 tu_GetDeviceQueue(VkDevice _device,
1542 uint32_t queueFamilyIndex,
1543 uint32_t queueIndex,
1544 VkQueue *pQueue)
1545 {
1546 const VkDeviceQueueInfo2 info =
1547 (VkDeviceQueueInfo2) { .sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2,
1548 .queueFamilyIndex = queueFamilyIndex,
1549 .queueIndex = queueIndex };
1550
1551 tu_GetDeviceQueue2(_device, &info, pQueue);
1552 }
1553
1554 static VkResult
1555 tu_get_semaphore_syncobjs(const VkSemaphore *sems,
1556 uint32_t sem_count,
1557 bool wait,
1558 struct drm_msm_gem_submit_syncobj **out,
1559 uint32_t *out_count)
1560 {
1561 uint32_t syncobj_count = 0;
1562 struct drm_msm_gem_submit_syncobj *syncobjs;
1563
1564 for (uint32_t i = 0; i < sem_count; ++i) {
1565 TU_FROM_HANDLE(tu_semaphore, sem, sems[i]);
1566
1567 struct tu_semaphore_part *part =
1568 sem->temporary.kind != TU_SEMAPHORE_NONE ?
1569 &sem->temporary : &sem->permanent;
1570
1571 if (part->kind == TU_SEMAPHORE_SYNCOBJ)
1572 ++syncobj_count;
1573 }
1574
1575 *out = NULL;
1576 *out_count = syncobj_count;
1577 if (!syncobj_count)
1578 return VK_SUCCESS;
1579
1580 *out = syncobjs = calloc(syncobj_count, sizeof (*syncobjs));
1581 if (!syncobjs)
1582 return VK_ERROR_OUT_OF_HOST_MEMORY;
1583
1584 for (uint32_t i = 0, j = 0; i < sem_count; ++i) {
1585 TU_FROM_HANDLE(tu_semaphore, sem, sems[i]);
1586
1587 struct tu_semaphore_part *part =
1588 sem->temporary.kind != TU_SEMAPHORE_NONE ?
1589 &sem->temporary : &sem->permanent;
1590
1591 if (part->kind == TU_SEMAPHORE_SYNCOBJ) {
1592 syncobjs[j].handle = part->syncobj;
1593 syncobjs[j].flags = wait ? MSM_SUBMIT_SYNCOBJ_RESET : 0;
1594 ++j;
1595 }
1596 }
1597
1598 return VK_SUCCESS;
1599 }
1600
1601
1602 static void
1603 tu_semaphores_remove_temp(struct tu_device *device,
1604 const VkSemaphore *sems,
1605 uint32_t sem_count)
1606 {
1607 for (uint32_t i = 0; i < sem_count; ++i) {
1608 TU_FROM_HANDLE(tu_semaphore, sem, sems[i]);
1609 tu_semaphore_remove_temp(device, sem);
1610 }
1611 }
1612
1613 VkResult
1614 tu_QueueSubmit(VkQueue _queue,
1615 uint32_t submitCount,
1616 const VkSubmitInfo *pSubmits,
1617 VkFence _fence)
1618 {
1619 TU_FROM_HANDLE(tu_queue, queue, _queue);
1620 VkResult result;
1621
1622 for (uint32_t i = 0; i < submitCount; ++i) {
1623 const VkSubmitInfo *submit = pSubmits + i;
1624 const bool last_submit = (i == submitCount - 1);
1625 struct drm_msm_gem_submit_syncobj *in_syncobjs = NULL, *out_syncobjs = NULL;
1626 uint32_t nr_in_syncobjs, nr_out_syncobjs;
1627 struct tu_bo_list bo_list;
1628 tu_bo_list_init(&bo_list);
1629
1630 result = tu_get_semaphore_syncobjs(pSubmits[i].pWaitSemaphores,
1631 pSubmits[i].waitSemaphoreCount,
1632 false, &in_syncobjs, &nr_in_syncobjs);
1633 if (result != VK_SUCCESS) {
1634 return tu_device_set_lost(queue->device,
1635 "failed to allocate space for semaphore submission\n");
1636 }
1637
1638 result = tu_get_semaphore_syncobjs(pSubmits[i].pSignalSemaphores,
1639 pSubmits[i].signalSemaphoreCount,
1640 false, &out_syncobjs, &nr_out_syncobjs);
1641 if (result != VK_SUCCESS) {
1642 free(in_syncobjs);
1643 return tu_device_set_lost(queue->device,
1644 "failed to allocate space for semaphore submission\n");
1645 }
1646
1647 uint32_t entry_count = 0;
1648 for (uint32_t j = 0; j < submit->commandBufferCount; ++j) {
1649 TU_FROM_HANDLE(tu_cmd_buffer, cmdbuf, submit->pCommandBuffers[j]);
1650 entry_count += cmdbuf->cs.entry_count;
1651 }
1652
1653 struct drm_msm_gem_submit_cmd cmds[entry_count];
1654 uint32_t entry_idx = 0;
1655 for (uint32_t j = 0; j < submit->commandBufferCount; ++j) {
1656 TU_FROM_HANDLE(tu_cmd_buffer, cmdbuf, submit->pCommandBuffers[j]);
1657 struct tu_cs *cs = &cmdbuf->cs;
1658 for (unsigned i = 0; i < cs->entry_count; ++i, ++entry_idx) {
1659 cmds[entry_idx].type = MSM_SUBMIT_CMD_BUF;
1660 cmds[entry_idx].submit_idx =
1661 tu_bo_list_add(&bo_list, cs->entries[i].bo,
1662 MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_DUMP);
1663 cmds[entry_idx].submit_offset = cs->entries[i].offset;
1664 cmds[entry_idx].size = cs->entries[i].size;
1665 cmds[entry_idx].pad = 0;
1666 cmds[entry_idx].nr_relocs = 0;
1667 cmds[entry_idx].relocs = 0;
1668 }
1669
1670 tu_bo_list_merge(&bo_list, &cmdbuf->bo_list);
1671 }
1672
1673 uint32_t flags = MSM_PIPE_3D0;
1674 if (nr_in_syncobjs) {
1675 flags |= MSM_SUBMIT_SYNCOBJ_IN;
1676 }
1677 if (nr_out_syncobjs) {
1678 flags |= MSM_SUBMIT_SYNCOBJ_OUT;
1679 }
1680
1681 if (last_submit) {
1682 flags |= MSM_SUBMIT_FENCE_FD_OUT;
1683 }
1684
1685 struct drm_msm_gem_submit req = {
1686 .flags = flags,
1687 .queueid = queue->msm_queue_id,
1688 .bos = (uint64_t)(uintptr_t) bo_list.bo_infos,
1689 .nr_bos = bo_list.count,
1690 .cmds = (uint64_t)(uintptr_t)cmds,
1691 .nr_cmds = entry_count,
1692 .in_syncobjs = (uint64_t)(uintptr_t)in_syncobjs,
1693 .out_syncobjs = (uint64_t)(uintptr_t)out_syncobjs,
1694 .nr_in_syncobjs = nr_in_syncobjs,
1695 .nr_out_syncobjs = nr_out_syncobjs,
1696 .syncobj_stride = sizeof(struct drm_msm_gem_submit_syncobj),
1697 };
1698
1699 int ret = drmCommandWriteRead(queue->device->physical_device->local_fd,
1700 DRM_MSM_GEM_SUBMIT,
1701 &req, sizeof(req));
1702 if (ret) {
1703 free(in_syncobjs);
1704 free(out_syncobjs);
1705 return tu_device_set_lost(queue->device, "submit failed: %s\n",
1706 strerror(errno));
1707 }
1708
1709 tu_bo_list_destroy(&bo_list);
1710 free(in_syncobjs);
1711 free(out_syncobjs);
1712
1713 tu_semaphores_remove_temp(queue->device, pSubmits[i].pWaitSemaphores,
1714 pSubmits[i].waitSemaphoreCount);
1715 if (last_submit) {
1716 /* no need to merge fences as queue execution is serialized */
1717 tu_fence_update_fd(&queue->submit_fence, req.fence_fd);
1718 } else if (last_submit) {
1719 close(req.fence_fd);
1720 }
1721 }
1722
1723 if (_fence != VK_NULL_HANDLE) {
1724 TU_FROM_HANDLE(tu_fence, fence, _fence);
1725 tu_fence_copy(fence, &queue->submit_fence);
1726 }
1727
1728 return VK_SUCCESS;
1729 }
1730
1731 VkResult
1732 tu_QueueWaitIdle(VkQueue _queue)
1733 {
1734 TU_FROM_HANDLE(tu_queue, queue, _queue);
1735
1736 if (tu_device_is_lost(queue->device))
1737 return VK_ERROR_DEVICE_LOST;
1738
1739 tu_fence_wait_idle(&queue->submit_fence);
1740
1741 return VK_SUCCESS;
1742 }
1743
1744 VkResult
1745 tu_DeviceWaitIdle(VkDevice _device)
1746 {
1747 TU_FROM_HANDLE(tu_device, device, _device);
1748
1749 if (tu_device_is_lost(device))
1750 return VK_ERROR_DEVICE_LOST;
1751
1752 for (unsigned i = 0; i < TU_MAX_QUEUE_FAMILIES; i++) {
1753 for (unsigned q = 0; q < device->queue_count[i]; q++) {
1754 tu_QueueWaitIdle(tu_queue_to_handle(&device->queues[i][q]));
1755 }
1756 }
1757 return VK_SUCCESS;
1758 }
1759
1760 VkResult
1761 tu_EnumerateInstanceExtensionProperties(const char *pLayerName,
1762 uint32_t *pPropertyCount,
1763 VkExtensionProperties *pProperties)
1764 {
1765 VK_OUTARRAY_MAKE(out, pProperties, pPropertyCount);
1766
1767 /* We spport no lyaers */
1768 if (pLayerName)
1769 return vk_error(NULL, VK_ERROR_LAYER_NOT_PRESENT);
1770
1771 for (int i = 0; i < TU_INSTANCE_EXTENSION_COUNT; i++) {
1772 if (tu_instance_extensions_supported.extensions[i]) {
1773 vk_outarray_append(&out, prop) { *prop = tu_instance_extensions[i]; }
1774 }
1775 }
1776
1777 return vk_outarray_status(&out);
1778 }
1779
1780 VkResult
1781 tu_EnumerateDeviceExtensionProperties(VkPhysicalDevice physicalDevice,
1782 const char *pLayerName,
1783 uint32_t *pPropertyCount,
1784 VkExtensionProperties *pProperties)
1785 {
1786 /* We spport no lyaers */
1787 TU_FROM_HANDLE(tu_physical_device, device, physicalDevice);
1788 VK_OUTARRAY_MAKE(out, pProperties, pPropertyCount);
1789
1790 /* We spport no lyaers */
1791 if (pLayerName)
1792 return vk_error(NULL, VK_ERROR_LAYER_NOT_PRESENT);
1793
1794 for (int i = 0; i < TU_DEVICE_EXTENSION_COUNT; i++) {
1795 if (device->supported_extensions.extensions[i]) {
1796 vk_outarray_append(&out, prop) { *prop = tu_device_extensions[i]; }
1797 }
1798 }
1799
1800 return vk_outarray_status(&out);
1801 }
1802
1803 PFN_vkVoidFunction
1804 tu_GetInstanceProcAddr(VkInstance _instance, const char *pName)
1805 {
1806 TU_FROM_HANDLE(tu_instance, instance, _instance);
1807
1808 return tu_lookup_entrypoint_checked(
1809 pName, instance ? instance->api_version : 0,
1810 instance ? &instance->enabled_extensions : NULL, NULL);
1811 }
1812
1813 /* The loader wants us to expose a second GetInstanceProcAddr function
1814 * to work around certain LD_PRELOAD issues seen in apps.
1815 */
1816 PUBLIC
1817 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL
1818 vk_icdGetInstanceProcAddr(VkInstance instance, const char *pName);
1819
1820 PUBLIC
1821 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL
1822 vk_icdGetInstanceProcAddr(VkInstance instance, const char *pName)
1823 {
1824 return tu_GetInstanceProcAddr(instance, pName);
1825 }
1826
1827 PFN_vkVoidFunction
1828 tu_GetDeviceProcAddr(VkDevice _device, const char *pName)
1829 {
1830 TU_FROM_HANDLE(tu_device, device, _device);
1831
1832 return tu_lookup_entrypoint_checked(pName, device->instance->api_version,
1833 &device->instance->enabled_extensions,
1834 &device->enabled_extensions);
1835 }
1836
1837 static VkResult
1838 tu_alloc_memory(struct tu_device *device,
1839 const VkMemoryAllocateInfo *pAllocateInfo,
1840 const VkAllocationCallbacks *pAllocator,
1841 VkDeviceMemory *pMem)
1842 {
1843 struct tu_device_memory *mem;
1844 VkResult result;
1845
1846 assert(pAllocateInfo->sType == VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO);
1847
1848 if (pAllocateInfo->allocationSize == 0) {
1849 /* Apparently, this is allowed */
1850 *pMem = VK_NULL_HANDLE;
1851 return VK_SUCCESS;
1852 }
1853
1854 mem = vk_object_alloc(&device->vk, pAllocator, sizeof(*mem),
1855 VK_OBJECT_TYPE_DEVICE_MEMORY);
1856 if (mem == NULL)
1857 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
1858
1859 const VkImportMemoryFdInfoKHR *fd_info =
1860 vk_find_struct_const(pAllocateInfo->pNext, IMPORT_MEMORY_FD_INFO_KHR);
1861 if (fd_info && !fd_info->handleType)
1862 fd_info = NULL;
1863
1864 if (fd_info) {
1865 assert(fd_info->handleType ==
1866 VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
1867 fd_info->handleType ==
1868 VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
1869
1870 /*
1871 * TODO Importing the same fd twice gives us the same handle without
1872 * reference counting. We need to maintain a per-instance handle-to-bo
1873 * table and add reference count to tu_bo.
1874 */
1875 result = tu_bo_init_dmabuf(device, &mem->bo,
1876 pAllocateInfo->allocationSize, fd_info->fd);
1877 if (result == VK_SUCCESS) {
1878 /* take ownership and close the fd */
1879 close(fd_info->fd);
1880 }
1881 } else {
1882 result =
1883 tu_bo_init_new(device, &mem->bo, pAllocateInfo->allocationSize);
1884 }
1885
1886 if (result != VK_SUCCESS) {
1887 vk_object_free(&device->vk, pAllocator, mem);
1888 return result;
1889 }
1890
1891 mem->size = pAllocateInfo->allocationSize;
1892 mem->type_index = pAllocateInfo->memoryTypeIndex;
1893
1894 mem->map = NULL;
1895 mem->user_ptr = NULL;
1896
1897 *pMem = tu_device_memory_to_handle(mem);
1898
1899 return VK_SUCCESS;
1900 }
1901
1902 VkResult
1903 tu_AllocateMemory(VkDevice _device,
1904 const VkMemoryAllocateInfo *pAllocateInfo,
1905 const VkAllocationCallbacks *pAllocator,
1906 VkDeviceMemory *pMem)
1907 {
1908 TU_FROM_HANDLE(tu_device, device, _device);
1909 return tu_alloc_memory(device, pAllocateInfo, pAllocator, pMem);
1910 }
1911
1912 void
1913 tu_FreeMemory(VkDevice _device,
1914 VkDeviceMemory _mem,
1915 const VkAllocationCallbacks *pAllocator)
1916 {
1917 TU_FROM_HANDLE(tu_device, device, _device);
1918 TU_FROM_HANDLE(tu_device_memory, mem, _mem);
1919
1920 if (mem == NULL)
1921 return;
1922
1923 tu_bo_finish(device, &mem->bo);
1924 vk_object_free(&device->vk, pAllocator, mem);
1925 }
1926
1927 VkResult
1928 tu_MapMemory(VkDevice _device,
1929 VkDeviceMemory _memory,
1930 VkDeviceSize offset,
1931 VkDeviceSize size,
1932 VkMemoryMapFlags flags,
1933 void **ppData)
1934 {
1935 TU_FROM_HANDLE(tu_device, device, _device);
1936 TU_FROM_HANDLE(tu_device_memory, mem, _memory);
1937 VkResult result;
1938
1939 if (mem == NULL) {
1940 *ppData = NULL;
1941 return VK_SUCCESS;
1942 }
1943
1944 if (mem->user_ptr) {
1945 *ppData = mem->user_ptr;
1946 } else if (!mem->map) {
1947 result = tu_bo_map(device, &mem->bo);
1948 if (result != VK_SUCCESS)
1949 return result;
1950 *ppData = mem->map = mem->bo.map;
1951 } else
1952 *ppData = mem->map;
1953
1954 if (*ppData) {
1955 *ppData += offset;
1956 return VK_SUCCESS;
1957 }
1958
1959 return vk_error(device->instance, VK_ERROR_MEMORY_MAP_FAILED);
1960 }
1961
1962 void
1963 tu_UnmapMemory(VkDevice _device, VkDeviceMemory _memory)
1964 {
1965 /* I do not see any unmapping done by the freedreno Gallium driver. */
1966 }
1967
1968 VkResult
1969 tu_FlushMappedMemoryRanges(VkDevice _device,
1970 uint32_t memoryRangeCount,
1971 const VkMappedMemoryRange *pMemoryRanges)
1972 {
1973 return VK_SUCCESS;
1974 }
1975
1976 VkResult
1977 tu_InvalidateMappedMemoryRanges(VkDevice _device,
1978 uint32_t memoryRangeCount,
1979 const VkMappedMemoryRange *pMemoryRanges)
1980 {
1981 return VK_SUCCESS;
1982 }
1983
1984 void
1985 tu_GetBufferMemoryRequirements(VkDevice _device,
1986 VkBuffer _buffer,
1987 VkMemoryRequirements *pMemoryRequirements)
1988 {
1989 TU_FROM_HANDLE(tu_buffer, buffer, _buffer);
1990
1991 pMemoryRequirements->memoryTypeBits = 1;
1992 pMemoryRequirements->alignment = 64;
1993 pMemoryRequirements->size =
1994 align64(buffer->size, pMemoryRequirements->alignment);
1995 }
1996
1997 void
1998 tu_GetBufferMemoryRequirements2(
1999 VkDevice device,
2000 const VkBufferMemoryRequirementsInfo2 *pInfo,
2001 VkMemoryRequirements2 *pMemoryRequirements)
2002 {
2003 tu_GetBufferMemoryRequirements(device, pInfo->buffer,
2004 &pMemoryRequirements->memoryRequirements);
2005 }
2006
2007 void
2008 tu_GetImageMemoryRequirements(VkDevice _device,
2009 VkImage _image,
2010 VkMemoryRequirements *pMemoryRequirements)
2011 {
2012 TU_FROM_HANDLE(tu_image, image, _image);
2013
2014 pMemoryRequirements->memoryTypeBits = 1;
2015 pMemoryRequirements->size = image->total_size;
2016 pMemoryRequirements->alignment = image->layout[0].base_align;
2017 }
2018
2019 void
2020 tu_GetImageMemoryRequirements2(VkDevice device,
2021 const VkImageMemoryRequirementsInfo2 *pInfo,
2022 VkMemoryRequirements2 *pMemoryRequirements)
2023 {
2024 tu_GetImageMemoryRequirements(device, pInfo->image,
2025 &pMemoryRequirements->memoryRequirements);
2026 }
2027
2028 void
2029 tu_GetImageSparseMemoryRequirements(
2030 VkDevice device,
2031 VkImage image,
2032 uint32_t *pSparseMemoryRequirementCount,
2033 VkSparseImageMemoryRequirements *pSparseMemoryRequirements)
2034 {
2035 tu_stub();
2036 }
2037
2038 void
2039 tu_GetImageSparseMemoryRequirements2(
2040 VkDevice device,
2041 const VkImageSparseMemoryRequirementsInfo2 *pInfo,
2042 uint32_t *pSparseMemoryRequirementCount,
2043 VkSparseImageMemoryRequirements2 *pSparseMemoryRequirements)
2044 {
2045 tu_stub();
2046 }
2047
2048 void
2049 tu_GetDeviceMemoryCommitment(VkDevice device,
2050 VkDeviceMemory memory,
2051 VkDeviceSize *pCommittedMemoryInBytes)
2052 {
2053 *pCommittedMemoryInBytes = 0;
2054 }
2055
2056 VkResult
2057 tu_BindBufferMemory2(VkDevice device,
2058 uint32_t bindInfoCount,
2059 const VkBindBufferMemoryInfo *pBindInfos)
2060 {
2061 for (uint32_t i = 0; i < bindInfoCount; ++i) {
2062 TU_FROM_HANDLE(tu_device_memory, mem, pBindInfos[i].memory);
2063 TU_FROM_HANDLE(tu_buffer, buffer, pBindInfos[i].buffer);
2064
2065 if (mem) {
2066 buffer->bo = &mem->bo;
2067 buffer->bo_offset = pBindInfos[i].memoryOffset;
2068 } else {
2069 buffer->bo = NULL;
2070 }
2071 }
2072 return VK_SUCCESS;
2073 }
2074
2075 VkResult
2076 tu_BindBufferMemory(VkDevice device,
2077 VkBuffer buffer,
2078 VkDeviceMemory memory,
2079 VkDeviceSize memoryOffset)
2080 {
2081 const VkBindBufferMemoryInfo info = {
2082 .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO,
2083 .buffer = buffer,
2084 .memory = memory,
2085 .memoryOffset = memoryOffset
2086 };
2087
2088 return tu_BindBufferMemory2(device, 1, &info);
2089 }
2090
2091 VkResult
2092 tu_BindImageMemory2(VkDevice device,
2093 uint32_t bindInfoCount,
2094 const VkBindImageMemoryInfo *pBindInfos)
2095 {
2096 for (uint32_t i = 0; i < bindInfoCount; ++i) {
2097 TU_FROM_HANDLE(tu_image, image, pBindInfos[i].image);
2098 TU_FROM_HANDLE(tu_device_memory, mem, pBindInfos[i].memory);
2099
2100 if (mem) {
2101 image->bo = &mem->bo;
2102 image->bo_offset = pBindInfos[i].memoryOffset;
2103 } else {
2104 image->bo = NULL;
2105 image->bo_offset = 0;
2106 }
2107 }
2108
2109 return VK_SUCCESS;
2110 }
2111
2112 VkResult
2113 tu_BindImageMemory(VkDevice device,
2114 VkImage image,
2115 VkDeviceMemory memory,
2116 VkDeviceSize memoryOffset)
2117 {
2118 const VkBindImageMemoryInfo info = {
2119 .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO,
2120 .image = image,
2121 .memory = memory,
2122 .memoryOffset = memoryOffset
2123 };
2124
2125 return tu_BindImageMemory2(device, 1, &info);
2126 }
2127
2128 VkResult
2129 tu_QueueBindSparse(VkQueue _queue,
2130 uint32_t bindInfoCount,
2131 const VkBindSparseInfo *pBindInfo,
2132 VkFence _fence)
2133 {
2134 return VK_SUCCESS;
2135 }
2136
2137 // Queue semaphore functions
2138
2139
2140 static void
2141 tu_semaphore_part_destroy(struct tu_device *device,
2142 struct tu_semaphore_part *part)
2143 {
2144 switch(part->kind) {
2145 case TU_SEMAPHORE_NONE:
2146 break;
2147 case TU_SEMAPHORE_SYNCOBJ:
2148 drmSyncobjDestroy(device->physical_device->local_fd, part->syncobj);
2149 break;
2150 }
2151 part->kind = TU_SEMAPHORE_NONE;
2152 }
2153
2154 static void
2155 tu_semaphore_remove_temp(struct tu_device *device,
2156 struct tu_semaphore *sem)
2157 {
2158 if (sem->temporary.kind != TU_SEMAPHORE_NONE) {
2159 tu_semaphore_part_destroy(device, &sem->temporary);
2160 }
2161 }
2162
2163 VkResult
2164 tu_CreateSemaphore(VkDevice _device,
2165 const VkSemaphoreCreateInfo *pCreateInfo,
2166 const VkAllocationCallbacks *pAllocator,
2167 VkSemaphore *pSemaphore)
2168 {
2169 TU_FROM_HANDLE(tu_device, device, _device);
2170
2171 struct tu_semaphore *sem =
2172 vk_object_alloc(&device->vk, pAllocator, sizeof(*sem),
2173 VK_OBJECT_TYPE_SEMAPHORE);
2174 if (!sem)
2175 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2176
2177 const VkExportSemaphoreCreateInfo *export =
2178 vk_find_struct_const(pCreateInfo->pNext, EXPORT_SEMAPHORE_CREATE_INFO);
2179 VkExternalSemaphoreHandleTypeFlags handleTypes =
2180 export ? export->handleTypes : 0;
2181
2182 sem->permanent.kind = TU_SEMAPHORE_NONE;
2183 sem->temporary.kind = TU_SEMAPHORE_NONE;
2184
2185 if (handleTypes) {
2186 if (drmSyncobjCreate(device->physical_device->local_fd, 0, &sem->permanent.syncobj) < 0) {
2187 vk_free2(&device->vk.alloc, pAllocator, sem);
2188 return VK_ERROR_OUT_OF_HOST_MEMORY;
2189 }
2190 sem->permanent.kind = TU_SEMAPHORE_SYNCOBJ;
2191 }
2192 *pSemaphore = tu_semaphore_to_handle(sem);
2193 return VK_SUCCESS;
2194 }
2195
2196 void
2197 tu_DestroySemaphore(VkDevice _device,
2198 VkSemaphore _semaphore,
2199 const VkAllocationCallbacks *pAllocator)
2200 {
2201 TU_FROM_HANDLE(tu_device, device, _device);
2202 TU_FROM_HANDLE(tu_semaphore, sem, _semaphore);
2203 if (!_semaphore)
2204 return;
2205
2206 tu_semaphore_part_destroy(device, &sem->permanent);
2207 tu_semaphore_part_destroy(device, &sem->temporary);
2208
2209 vk_object_free(&device->vk, pAllocator, sem);
2210 }
2211
2212 VkResult
2213 tu_CreateEvent(VkDevice _device,
2214 const VkEventCreateInfo *pCreateInfo,
2215 const VkAllocationCallbacks *pAllocator,
2216 VkEvent *pEvent)
2217 {
2218 TU_FROM_HANDLE(tu_device, device, _device);
2219
2220 struct tu_event *event =
2221 vk_object_alloc(&device->vk, pAllocator, sizeof(*event),
2222 VK_OBJECT_TYPE_EVENT);
2223 if (!event)
2224 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2225
2226 VkResult result = tu_bo_init_new(device, &event->bo, 0x1000);
2227 if (result != VK_SUCCESS)
2228 goto fail_alloc;
2229
2230 result = tu_bo_map(device, &event->bo);
2231 if (result != VK_SUCCESS)
2232 goto fail_map;
2233
2234 *pEvent = tu_event_to_handle(event);
2235
2236 return VK_SUCCESS;
2237
2238 fail_map:
2239 tu_bo_finish(device, &event->bo);
2240 fail_alloc:
2241 vk_object_free(&device->vk, pAllocator, event);
2242 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2243 }
2244
2245 void
2246 tu_DestroyEvent(VkDevice _device,
2247 VkEvent _event,
2248 const VkAllocationCallbacks *pAllocator)
2249 {
2250 TU_FROM_HANDLE(tu_device, device, _device);
2251 TU_FROM_HANDLE(tu_event, event, _event);
2252
2253 if (!event)
2254 return;
2255
2256 tu_bo_finish(device, &event->bo);
2257 vk_object_free(&device->vk, pAllocator, event);
2258 }
2259
2260 VkResult
2261 tu_GetEventStatus(VkDevice _device, VkEvent _event)
2262 {
2263 TU_FROM_HANDLE(tu_event, event, _event);
2264
2265 if (*(uint64_t*) event->bo.map == 1)
2266 return VK_EVENT_SET;
2267 return VK_EVENT_RESET;
2268 }
2269
2270 VkResult
2271 tu_SetEvent(VkDevice _device, VkEvent _event)
2272 {
2273 TU_FROM_HANDLE(tu_event, event, _event);
2274 *(uint64_t*) event->bo.map = 1;
2275
2276 return VK_SUCCESS;
2277 }
2278
2279 VkResult
2280 tu_ResetEvent(VkDevice _device, VkEvent _event)
2281 {
2282 TU_FROM_HANDLE(tu_event, event, _event);
2283 *(uint64_t*) event->bo.map = 0;
2284
2285 return VK_SUCCESS;
2286 }
2287
2288 VkResult
2289 tu_CreateBuffer(VkDevice _device,
2290 const VkBufferCreateInfo *pCreateInfo,
2291 const VkAllocationCallbacks *pAllocator,
2292 VkBuffer *pBuffer)
2293 {
2294 TU_FROM_HANDLE(tu_device, device, _device);
2295 struct tu_buffer *buffer;
2296
2297 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO);
2298
2299 buffer = vk_object_alloc(&device->vk, pAllocator, sizeof(*buffer),
2300 VK_OBJECT_TYPE_BUFFER);
2301 if (buffer == NULL)
2302 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2303
2304 buffer->size = pCreateInfo->size;
2305 buffer->usage = pCreateInfo->usage;
2306 buffer->flags = pCreateInfo->flags;
2307
2308 *pBuffer = tu_buffer_to_handle(buffer);
2309
2310 return VK_SUCCESS;
2311 }
2312
2313 void
2314 tu_DestroyBuffer(VkDevice _device,
2315 VkBuffer _buffer,
2316 const VkAllocationCallbacks *pAllocator)
2317 {
2318 TU_FROM_HANDLE(tu_device, device, _device);
2319 TU_FROM_HANDLE(tu_buffer, buffer, _buffer);
2320
2321 if (!buffer)
2322 return;
2323
2324 vk_object_free(&device->vk, pAllocator, buffer);
2325 }
2326
2327 VkResult
2328 tu_CreateFramebuffer(VkDevice _device,
2329 const VkFramebufferCreateInfo *pCreateInfo,
2330 const VkAllocationCallbacks *pAllocator,
2331 VkFramebuffer *pFramebuffer)
2332 {
2333 TU_FROM_HANDLE(tu_device, device, _device);
2334 TU_FROM_HANDLE(tu_render_pass, pass, pCreateInfo->renderPass);
2335 struct tu_framebuffer *framebuffer;
2336
2337 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO);
2338
2339 size_t size = sizeof(*framebuffer) + sizeof(struct tu_attachment_info) *
2340 pCreateInfo->attachmentCount;
2341 framebuffer = vk_object_alloc(&device->vk, pAllocator, size,
2342 VK_OBJECT_TYPE_FRAMEBUFFER);
2343 if (framebuffer == NULL)
2344 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2345
2346 framebuffer->attachment_count = pCreateInfo->attachmentCount;
2347 framebuffer->width = pCreateInfo->width;
2348 framebuffer->height = pCreateInfo->height;
2349 framebuffer->layers = pCreateInfo->layers;
2350 for (uint32_t i = 0; i < pCreateInfo->attachmentCount; i++) {
2351 VkImageView _iview = pCreateInfo->pAttachments[i];
2352 struct tu_image_view *iview = tu_image_view_from_handle(_iview);
2353 framebuffer->attachments[i].attachment = iview;
2354 }
2355
2356 tu_framebuffer_tiling_config(framebuffer, device, pass);
2357
2358 *pFramebuffer = tu_framebuffer_to_handle(framebuffer);
2359 return VK_SUCCESS;
2360 }
2361
2362 void
2363 tu_DestroyFramebuffer(VkDevice _device,
2364 VkFramebuffer _fb,
2365 const VkAllocationCallbacks *pAllocator)
2366 {
2367 TU_FROM_HANDLE(tu_device, device, _device);
2368 TU_FROM_HANDLE(tu_framebuffer, fb, _fb);
2369
2370 if (!fb)
2371 return;
2372
2373 vk_object_free(&device->vk, pAllocator, fb);
2374 }
2375
2376 static void
2377 tu_init_sampler(struct tu_device *device,
2378 struct tu_sampler *sampler,
2379 const VkSamplerCreateInfo *pCreateInfo)
2380 {
2381 const struct VkSamplerReductionModeCreateInfo *reduction =
2382 vk_find_struct_const(pCreateInfo->pNext, SAMPLER_REDUCTION_MODE_CREATE_INFO);
2383 const struct VkSamplerYcbcrConversionInfo *ycbcr_conversion =
2384 vk_find_struct_const(pCreateInfo->pNext, SAMPLER_YCBCR_CONVERSION_INFO);
2385
2386 unsigned aniso = pCreateInfo->anisotropyEnable ?
2387 util_last_bit(MIN2((uint32_t)pCreateInfo->maxAnisotropy >> 1, 8)) : 0;
2388 bool miplinear = (pCreateInfo->mipmapMode == VK_SAMPLER_MIPMAP_MODE_LINEAR);
2389 float min_lod = CLAMP(pCreateInfo->minLod, 0.0f, 4095.0f / 256.0f);
2390 float max_lod = CLAMP(pCreateInfo->maxLod, 0.0f, 4095.0f / 256.0f);
2391
2392 sampler->descriptor[0] =
2393 COND(miplinear, A6XX_TEX_SAMP_0_MIPFILTER_LINEAR_NEAR) |
2394 A6XX_TEX_SAMP_0_XY_MAG(tu6_tex_filter(pCreateInfo->magFilter, aniso)) |
2395 A6XX_TEX_SAMP_0_XY_MIN(tu6_tex_filter(pCreateInfo->minFilter, aniso)) |
2396 A6XX_TEX_SAMP_0_ANISO(aniso) |
2397 A6XX_TEX_SAMP_0_WRAP_S(tu6_tex_wrap(pCreateInfo->addressModeU)) |
2398 A6XX_TEX_SAMP_0_WRAP_T(tu6_tex_wrap(pCreateInfo->addressModeV)) |
2399 A6XX_TEX_SAMP_0_WRAP_R(tu6_tex_wrap(pCreateInfo->addressModeW)) |
2400 A6XX_TEX_SAMP_0_LOD_BIAS(pCreateInfo->mipLodBias);
2401 sampler->descriptor[1] =
2402 /* COND(!cso->seamless_cube_map, A6XX_TEX_SAMP_1_CUBEMAPSEAMLESSFILTOFF) | */
2403 COND(pCreateInfo->unnormalizedCoordinates, A6XX_TEX_SAMP_1_UNNORM_COORDS) |
2404 A6XX_TEX_SAMP_1_MIN_LOD(min_lod) |
2405 A6XX_TEX_SAMP_1_MAX_LOD(max_lod) |
2406 COND(pCreateInfo->compareEnable,
2407 A6XX_TEX_SAMP_1_COMPARE_FUNC(tu6_compare_func(pCreateInfo->compareOp)));
2408 /* This is an offset into the border_color BO, which we fill with all the
2409 * possible Vulkan border colors in the correct order, so we can just use
2410 * the Vulkan enum with no translation necessary.
2411 */
2412 sampler->descriptor[2] =
2413 A6XX_TEX_SAMP_2_BCOLOR_OFFSET((unsigned) pCreateInfo->borderColor *
2414 sizeof(struct bcolor_entry));
2415 sampler->descriptor[3] = 0;
2416
2417 if (reduction) {
2418 sampler->descriptor[2] |= A6XX_TEX_SAMP_2_REDUCTION_MODE(
2419 tu6_reduction_mode(reduction->reductionMode));
2420 }
2421
2422 sampler->ycbcr_sampler = ycbcr_conversion ?
2423 tu_sampler_ycbcr_conversion_from_handle(ycbcr_conversion->conversion) : NULL;
2424
2425 if (sampler->ycbcr_sampler &&
2426 sampler->ycbcr_sampler->chroma_filter == VK_FILTER_LINEAR) {
2427 sampler->descriptor[2] |= A6XX_TEX_SAMP_2_CHROMA_LINEAR;
2428 }
2429
2430 /* TODO:
2431 * A6XX_TEX_SAMP_1_MIPFILTER_LINEAR_FAR disables mipmapping, but vk has no NONE mipfilter?
2432 */
2433 }
2434
2435 VkResult
2436 tu_CreateSampler(VkDevice _device,
2437 const VkSamplerCreateInfo *pCreateInfo,
2438 const VkAllocationCallbacks *pAllocator,
2439 VkSampler *pSampler)
2440 {
2441 TU_FROM_HANDLE(tu_device, device, _device);
2442 struct tu_sampler *sampler;
2443
2444 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO);
2445
2446 sampler = vk_object_alloc(&device->vk, pAllocator, sizeof(*sampler),
2447 VK_OBJECT_TYPE_SAMPLER);
2448 if (!sampler)
2449 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
2450
2451 tu_init_sampler(device, sampler, pCreateInfo);
2452 *pSampler = tu_sampler_to_handle(sampler);
2453
2454 return VK_SUCCESS;
2455 }
2456
2457 void
2458 tu_DestroySampler(VkDevice _device,
2459 VkSampler _sampler,
2460 const VkAllocationCallbacks *pAllocator)
2461 {
2462 TU_FROM_HANDLE(tu_device, device, _device);
2463 TU_FROM_HANDLE(tu_sampler, sampler, _sampler);
2464
2465 if (!sampler)
2466 return;
2467
2468 vk_object_free(&device->vk, pAllocator, sampler);
2469 }
2470
2471 /* vk_icd.h does not declare this function, so we declare it here to
2472 * suppress Wmissing-prototypes.
2473 */
2474 PUBLIC VKAPI_ATTR VkResult VKAPI_CALL
2475 vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t *pSupportedVersion);
2476
2477 PUBLIC VKAPI_ATTR VkResult VKAPI_CALL
2478 vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t *pSupportedVersion)
2479 {
2480 /* For the full details on loader interface versioning, see
2481 * <https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/blob/master/loader/LoaderAndLayerInterface.md>.
2482 * What follows is a condensed summary, to help you navigate the large and
2483 * confusing official doc.
2484 *
2485 * - Loader interface v0 is incompatible with later versions. We don't
2486 * support it.
2487 *
2488 * - In loader interface v1:
2489 * - The first ICD entrypoint called by the loader is
2490 * vk_icdGetInstanceProcAddr(). The ICD must statically expose this
2491 * entrypoint.
2492 * - The ICD must statically expose no other Vulkan symbol unless it
2493 * is linked with -Bsymbolic.
2494 * - Each dispatchable Vulkan handle created by the ICD must be
2495 * a pointer to a struct whose first member is VK_LOADER_DATA. The
2496 * ICD must initialize VK_LOADER_DATA.loadMagic to
2497 * ICD_LOADER_MAGIC.
2498 * - The loader implements vkCreate{PLATFORM}SurfaceKHR() and
2499 * vkDestroySurfaceKHR(). The ICD must be capable of working with
2500 * such loader-managed surfaces.
2501 *
2502 * - Loader interface v2 differs from v1 in:
2503 * - The first ICD entrypoint called by the loader is
2504 * vk_icdNegotiateLoaderICDInterfaceVersion(). The ICD must
2505 * statically expose this entrypoint.
2506 *
2507 * - Loader interface v3 differs from v2 in:
2508 * - The ICD must implement vkCreate{PLATFORM}SurfaceKHR(),
2509 * vkDestroySurfaceKHR(), and other API which uses VKSurfaceKHR,
2510 * because the loader no longer does so.
2511 */
2512 *pSupportedVersion = MIN2(*pSupportedVersion, 3u);
2513 return VK_SUCCESS;
2514 }
2515
2516 VkResult
2517 tu_GetMemoryFdKHR(VkDevice _device,
2518 const VkMemoryGetFdInfoKHR *pGetFdInfo,
2519 int *pFd)
2520 {
2521 TU_FROM_HANDLE(tu_device, device, _device);
2522 TU_FROM_HANDLE(tu_device_memory, memory, pGetFdInfo->memory);
2523
2524 assert(pGetFdInfo->sType == VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR);
2525
2526 /* At the moment, we support only the below handle types. */
2527 assert(pGetFdInfo->handleType ==
2528 VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
2529 pGetFdInfo->handleType ==
2530 VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
2531
2532 int prime_fd = tu_bo_export_dmabuf(device, &memory->bo);
2533 if (prime_fd < 0)
2534 return vk_error(device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
2535
2536 *pFd = prime_fd;
2537 return VK_SUCCESS;
2538 }
2539
2540 VkResult
2541 tu_GetMemoryFdPropertiesKHR(VkDevice _device,
2542 VkExternalMemoryHandleTypeFlagBits handleType,
2543 int fd,
2544 VkMemoryFdPropertiesKHR *pMemoryFdProperties)
2545 {
2546 assert(handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
2547 pMemoryFdProperties->memoryTypeBits = 1;
2548 return VK_SUCCESS;
2549 }
2550
2551 VkResult
2552 tu_ImportFenceFdKHR(VkDevice _device,
2553 const VkImportFenceFdInfoKHR *pImportFenceFdInfo)
2554 {
2555 tu_stub();
2556
2557 return VK_SUCCESS;
2558 }
2559
2560 VkResult
2561 tu_GetFenceFdKHR(VkDevice _device,
2562 const VkFenceGetFdInfoKHR *pGetFdInfo,
2563 int *pFd)
2564 {
2565 tu_stub();
2566
2567 return VK_SUCCESS;
2568 }
2569
2570 VkResult
2571 tu_ImportSemaphoreFdKHR(VkDevice _device,
2572 const VkImportSemaphoreFdInfoKHR *pImportSemaphoreFdInfo)
2573 {
2574 TU_FROM_HANDLE(tu_device, device, _device);
2575 TU_FROM_HANDLE(tu_semaphore, sem, pImportSemaphoreFdInfo->semaphore);
2576 int ret;
2577 struct tu_semaphore_part *dst = NULL;
2578
2579 if (pImportSemaphoreFdInfo->flags & VK_SEMAPHORE_IMPORT_TEMPORARY_BIT) {
2580 dst = &sem->temporary;
2581 } else {
2582 dst = &sem->permanent;
2583 }
2584
2585 uint32_t syncobj = dst->kind == TU_SEMAPHORE_SYNCOBJ ? dst->syncobj : 0;
2586
2587 switch(pImportSemaphoreFdInfo->handleType) {
2588 case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT: {
2589 uint32_t old_syncobj = syncobj;
2590 ret = drmSyncobjFDToHandle(device->physical_device->local_fd, pImportSemaphoreFdInfo->fd, &syncobj);
2591 if (ret == 0) {
2592 close(pImportSemaphoreFdInfo->fd);
2593 if (old_syncobj)
2594 drmSyncobjDestroy(device->physical_device->local_fd, old_syncobj);
2595 }
2596 break;
2597 }
2598 case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT: {
2599 if (!syncobj) {
2600 ret = drmSyncobjCreate(device->physical_device->local_fd, 0, &syncobj);
2601 if (ret)
2602 break;
2603 }
2604 if (pImportSemaphoreFdInfo->fd == -1) {
2605 ret = drmSyncobjSignal(device->physical_device->local_fd, &syncobj, 1);
2606 } else {
2607 ret = drmSyncobjImportSyncFile(device->physical_device->local_fd, syncobj, pImportSemaphoreFdInfo->fd);
2608 }
2609 if (!ret)
2610 close(pImportSemaphoreFdInfo->fd);
2611 break;
2612 }
2613 default:
2614 unreachable("Unhandled semaphore handle type");
2615 }
2616
2617 if (ret) {
2618 return VK_ERROR_INVALID_EXTERNAL_HANDLE;
2619 }
2620 dst->syncobj = syncobj;
2621 dst->kind = TU_SEMAPHORE_SYNCOBJ;
2622
2623 return VK_SUCCESS;
2624 }
2625
2626 VkResult
2627 tu_GetSemaphoreFdKHR(VkDevice _device,
2628 const VkSemaphoreGetFdInfoKHR *pGetFdInfo,
2629 int *pFd)
2630 {
2631 TU_FROM_HANDLE(tu_device, device, _device);
2632 TU_FROM_HANDLE(tu_semaphore, sem, pGetFdInfo->semaphore);
2633 int ret;
2634 uint32_t syncobj_handle;
2635
2636 if (sem->temporary.kind != TU_SEMAPHORE_NONE) {
2637 assert(sem->temporary.kind == TU_SEMAPHORE_SYNCOBJ);
2638 syncobj_handle = sem->temporary.syncobj;
2639 } else {
2640 assert(sem->permanent.kind == TU_SEMAPHORE_SYNCOBJ);
2641 syncobj_handle = sem->permanent.syncobj;
2642 }
2643
2644 switch(pGetFdInfo->handleType) {
2645 case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT:
2646 ret = drmSyncobjHandleToFD(device->physical_device->local_fd, syncobj_handle, pFd);
2647 break;
2648 case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT:
2649 ret = drmSyncobjExportSyncFile(device->physical_device->local_fd, syncobj_handle, pFd);
2650 if (!ret) {
2651 if (sem->temporary.kind != TU_SEMAPHORE_NONE) {
2652 tu_semaphore_part_destroy(device, &sem->temporary);
2653 } else {
2654 drmSyncobjReset(device->physical_device->local_fd, &syncobj_handle, 1);
2655 }
2656 }
2657 break;
2658 default:
2659 unreachable("Unhandled semaphore handle type");
2660 }
2661
2662 if (ret)
2663 return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
2664 return VK_SUCCESS;
2665 }
2666
2667
2668 static bool tu_has_syncobj(struct tu_physical_device *pdev)
2669 {
2670 uint64_t value;
2671 if (drmGetCap(pdev->local_fd, DRM_CAP_SYNCOBJ, &value))
2672 return false;
2673 return value && pdev->msm_major_version == 1 && pdev->msm_minor_version >= 6;
2674 }
2675
2676 void
2677 tu_GetPhysicalDeviceExternalSemaphoreProperties(
2678 VkPhysicalDevice physicalDevice,
2679 const VkPhysicalDeviceExternalSemaphoreInfo *pExternalSemaphoreInfo,
2680 VkExternalSemaphoreProperties *pExternalSemaphoreProperties)
2681 {
2682 TU_FROM_HANDLE(tu_physical_device, pdev, physicalDevice);
2683
2684 if (tu_has_syncobj(pdev) &&
2685 (pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT ||
2686 pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT)) {
2687 pExternalSemaphoreProperties->exportFromImportedHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT;
2688 pExternalSemaphoreProperties->compatibleHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT;
2689 pExternalSemaphoreProperties->externalSemaphoreFeatures = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT |
2690 VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT;
2691 } else {
2692 pExternalSemaphoreProperties->exportFromImportedHandleTypes = 0;
2693 pExternalSemaphoreProperties->compatibleHandleTypes = 0;
2694 pExternalSemaphoreProperties->externalSemaphoreFeatures = 0;
2695 }
2696 }
2697
2698 void
2699 tu_GetPhysicalDeviceExternalFenceProperties(
2700 VkPhysicalDevice physicalDevice,
2701 const VkPhysicalDeviceExternalFenceInfo *pExternalFenceInfo,
2702 VkExternalFenceProperties *pExternalFenceProperties)
2703 {
2704 pExternalFenceProperties->exportFromImportedHandleTypes = 0;
2705 pExternalFenceProperties->compatibleHandleTypes = 0;
2706 pExternalFenceProperties->externalFenceFeatures = 0;
2707 }
2708
2709 VkResult
2710 tu_CreateDebugReportCallbackEXT(
2711 VkInstance _instance,
2712 const VkDebugReportCallbackCreateInfoEXT *pCreateInfo,
2713 const VkAllocationCallbacks *pAllocator,
2714 VkDebugReportCallbackEXT *pCallback)
2715 {
2716 TU_FROM_HANDLE(tu_instance, instance, _instance);
2717 return vk_create_debug_report_callback(&instance->debug_report_callbacks,
2718 pCreateInfo, pAllocator,
2719 &instance->alloc, pCallback);
2720 }
2721
2722 void
2723 tu_DestroyDebugReportCallbackEXT(VkInstance _instance,
2724 VkDebugReportCallbackEXT _callback,
2725 const VkAllocationCallbacks *pAllocator)
2726 {
2727 TU_FROM_HANDLE(tu_instance, instance, _instance);
2728 vk_destroy_debug_report_callback(&instance->debug_report_callbacks,
2729 _callback, pAllocator, &instance->alloc);
2730 }
2731
2732 void
2733 tu_DebugReportMessageEXT(VkInstance _instance,
2734 VkDebugReportFlagsEXT flags,
2735 VkDebugReportObjectTypeEXT objectType,
2736 uint64_t object,
2737 size_t location,
2738 int32_t messageCode,
2739 const char *pLayerPrefix,
2740 const char *pMessage)
2741 {
2742 TU_FROM_HANDLE(tu_instance, instance, _instance);
2743 vk_debug_report(&instance->debug_report_callbacks, flags, objectType,
2744 object, location, messageCode, pLayerPrefix, pMessage);
2745 }
2746
2747 void
2748 tu_GetDeviceGroupPeerMemoryFeatures(
2749 VkDevice device,
2750 uint32_t heapIndex,
2751 uint32_t localDeviceIndex,
2752 uint32_t remoteDeviceIndex,
2753 VkPeerMemoryFeatureFlags *pPeerMemoryFeatures)
2754 {
2755 assert(localDeviceIndex == remoteDeviceIndex);
2756
2757 *pPeerMemoryFeatures = VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT |
2758 VK_PEER_MEMORY_FEATURE_COPY_DST_BIT |
2759 VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT |
2760 VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT;
2761 }
2762
2763 void tu_GetPhysicalDeviceMultisamplePropertiesEXT(
2764 VkPhysicalDevice physicalDevice,
2765 VkSampleCountFlagBits samples,
2766 VkMultisamplePropertiesEXT* pMultisampleProperties)
2767 {
2768 TU_FROM_HANDLE(tu_physical_device, pdevice, physicalDevice);
2769
2770 if (samples <= VK_SAMPLE_COUNT_4_BIT && pdevice->supported_extensions.EXT_sample_locations)
2771 pMultisampleProperties->maxSampleLocationGridSize = (VkExtent2D){ 1, 1 };
2772 else
2773 pMultisampleProperties->maxSampleLocationGridSize = (VkExtent2D){ 0, 0 };
2774 }
2775
2776
2777 VkResult
2778 tu_CreatePrivateDataSlotEXT(VkDevice _device,
2779 const VkPrivateDataSlotCreateInfoEXT* pCreateInfo,
2780 const VkAllocationCallbacks* pAllocator,
2781 VkPrivateDataSlotEXT* pPrivateDataSlot)
2782 {
2783 TU_FROM_HANDLE(tu_device, device, _device);
2784 return vk_private_data_slot_create(&device->vk,
2785 pCreateInfo,
2786 pAllocator,
2787 pPrivateDataSlot);
2788 }
2789
2790 void
2791 tu_DestroyPrivateDataSlotEXT(VkDevice _device,
2792 VkPrivateDataSlotEXT privateDataSlot,
2793 const VkAllocationCallbacks* pAllocator)
2794 {
2795 TU_FROM_HANDLE(tu_device, device, _device);
2796 vk_private_data_slot_destroy(&device->vk, privateDataSlot, pAllocator);
2797 }
2798
2799 VkResult
2800 tu_SetPrivateDataEXT(VkDevice _device,
2801 VkObjectType objectType,
2802 uint64_t objectHandle,
2803 VkPrivateDataSlotEXT privateDataSlot,
2804 uint64_t data)
2805 {
2806 TU_FROM_HANDLE(tu_device, device, _device);
2807 return vk_object_base_set_private_data(&device->vk,
2808 objectType,
2809 objectHandle,
2810 privateDataSlot,
2811 data);
2812 }
2813
2814 void
2815 tu_GetPrivateDataEXT(VkDevice _device,
2816 VkObjectType objectType,
2817 uint64_t objectHandle,
2818 VkPrivateDataSlotEXT privateDataSlot,
2819 uint64_t* pData)
2820 {
2821 TU_FROM_HANDLE(tu_device, device, _device);
2822 vk_object_base_get_private_data(&device->vk,
2823 objectType,
2824 objectHandle,
2825 privateDataSlot,
2826 pData);
2827 }