anv: Enable SPV_KHR_8bit_storage and VK_KHR_8bit_storage
[mesa.git] / src / intel / vulkan / anv_device.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <sys/mman.h>
28 #include <sys/sysinfo.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <xf86drm.h>
32 #include <drm_fourcc.h>
33
34 #include "anv_private.h"
35 #include "util/strtod.h"
36 #include "util/debug.h"
37 #include "util/build_id.h"
38 #include "util/disk_cache.h"
39 #include "util/mesa-sha1.h"
40 #include "vk_util.h"
41 #include "common/gen_defines.h"
42
43 #include "genxml/gen7_pack.h"
44
45 static void
46 compiler_debug_log(void *data, const char *fmt, ...)
47 { }
48
49 static void
50 compiler_perf_log(void *data, const char *fmt, ...)
51 {
52 va_list args;
53 va_start(args, fmt);
54
55 if (unlikely(INTEL_DEBUG & DEBUG_PERF))
56 intel_logd_v(fmt, args);
57
58 va_end(args);
59 }
60
61 static VkResult
62 anv_compute_heap_size(int fd, uint64_t gtt_size, uint64_t *heap_size)
63 {
64 /* Query the total ram from the system */
65 struct sysinfo info;
66 sysinfo(&info);
67
68 uint64_t total_ram = (uint64_t)info.totalram * (uint64_t)info.mem_unit;
69
70 /* We don't want to burn too much ram with the GPU. If the user has 4GiB
71 * or less, we use at most half. If they have more than 4GiB, we use 3/4.
72 */
73 uint64_t available_ram;
74 if (total_ram <= 4ull * 1024ull * 1024ull * 1024ull)
75 available_ram = total_ram / 2;
76 else
77 available_ram = total_ram * 3 / 4;
78
79 /* We also want to leave some padding for things we allocate in the driver,
80 * so don't go over 3/4 of the GTT either.
81 */
82 uint64_t available_gtt = gtt_size * 3 / 4;
83
84 *heap_size = MIN2(available_ram, available_gtt);
85
86 return VK_SUCCESS;
87 }
88
89 static VkResult
90 anv_physical_device_init_heaps(struct anv_physical_device *device, int fd)
91 {
92 uint64_t gtt_size;
93 if (anv_gem_get_context_param(fd, 0, I915_CONTEXT_PARAM_GTT_SIZE,
94 &gtt_size) == -1) {
95 /* If, for whatever reason, we can't actually get the GTT size from the
96 * kernel (too old?) fall back to the aperture size.
97 */
98 anv_perf_warn(NULL, NULL,
99 "Failed to get I915_CONTEXT_PARAM_GTT_SIZE: %m");
100
101 if (anv_gem_get_aperture(fd, &gtt_size) == -1) {
102 return vk_errorf(NULL, NULL, VK_ERROR_INITIALIZATION_FAILED,
103 "failed to get aperture size: %m");
104 }
105 }
106
107 device->supports_48bit_addresses = (device->info.gen >= 8) &&
108 gtt_size > (4ULL << 30 /* GiB */);
109
110 uint64_t heap_size = 0;
111 VkResult result = anv_compute_heap_size(fd, gtt_size, &heap_size);
112 if (result != VK_SUCCESS)
113 return result;
114
115 if (heap_size > (2ull << 30) && !device->supports_48bit_addresses) {
116 /* When running with an overridden PCI ID, we may get a GTT size from
117 * the kernel that is greater than 2 GiB but the execbuf check for 48bit
118 * address support can still fail. Just clamp the address space size to
119 * 2 GiB if we don't have 48-bit support.
120 */
121 intel_logw("%s:%d: The kernel reported a GTT size larger than 2 GiB but "
122 "not support for 48-bit addresses",
123 __FILE__, __LINE__);
124 heap_size = 2ull << 30;
125 }
126
127 if (heap_size <= 3ull * (1ull << 30)) {
128 /* In this case, everything fits nicely into the 32-bit address space,
129 * so there's no need for supporting 48bit addresses on client-allocated
130 * memory objects.
131 */
132 device->memory.heap_count = 1;
133 device->memory.heaps[0] = (struct anv_memory_heap) {
134 .size = heap_size,
135 .flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT,
136 .supports_48bit_addresses = false,
137 };
138 } else {
139 /* Not everything will fit nicely into a 32-bit address space. In this
140 * case we need a 64-bit heap. Advertise a small 32-bit heap and a
141 * larger 48-bit heap. If we're in this case, then we have a total heap
142 * size larger than 3GiB which most likely means they have 8 GiB of
143 * video memory and so carving off 1 GiB for the 32-bit heap should be
144 * reasonable.
145 */
146 const uint64_t heap_size_32bit = 1ull << 30;
147 const uint64_t heap_size_48bit = heap_size - heap_size_32bit;
148
149 assert(device->supports_48bit_addresses);
150
151 device->memory.heap_count = 2;
152 device->memory.heaps[0] = (struct anv_memory_heap) {
153 .size = heap_size_48bit,
154 .flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT,
155 .supports_48bit_addresses = true,
156 };
157 device->memory.heaps[1] = (struct anv_memory_heap) {
158 .size = heap_size_32bit,
159 .flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT,
160 .supports_48bit_addresses = false,
161 };
162 }
163
164 uint32_t type_count = 0;
165 for (uint32_t heap = 0; heap < device->memory.heap_count; heap++) {
166 uint32_t valid_buffer_usage = ~0;
167
168 /* There appears to be a hardware issue in the VF cache where it only
169 * considers the bottom 32 bits of memory addresses. If you happen to
170 * have two vertex buffers which get placed exactly 4 GiB apart and use
171 * them in back-to-back draw calls, you can get collisions. In order to
172 * solve this problem, we require vertex and index buffers be bound to
173 * memory allocated out of the 32-bit heap.
174 */
175 if (device->memory.heaps[heap].supports_48bit_addresses) {
176 valid_buffer_usage &= ~(VK_BUFFER_USAGE_INDEX_BUFFER_BIT |
177 VK_BUFFER_USAGE_VERTEX_BUFFER_BIT);
178 }
179
180 if (device->info.has_llc) {
181 /* Big core GPUs share LLC with the CPU and thus one memory type can be
182 * both cached and coherent at the same time.
183 */
184 device->memory.types[type_count++] = (struct anv_memory_type) {
185 .propertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
186 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
187 VK_MEMORY_PROPERTY_HOST_COHERENT_BIT |
188 VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
189 .heapIndex = heap,
190 .valid_buffer_usage = valid_buffer_usage,
191 };
192 } else {
193 /* The spec requires that we expose a host-visible, coherent memory
194 * type, but Atom GPUs don't share LLC. Thus we offer two memory types
195 * to give the application a choice between cached, but not coherent and
196 * coherent but uncached (WC though).
197 */
198 device->memory.types[type_count++] = (struct anv_memory_type) {
199 .propertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
200 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
201 VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
202 .heapIndex = heap,
203 .valid_buffer_usage = valid_buffer_usage,
204 };
205 device->memory.types[type_count++] = (struct anv_memory_type) {
206 .propertyFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
207 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
208 VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
209 .heapIndex = heap,
210 .valid_buffer_usage = valid_buffer_usage,
211 };
212 }
213 }
214 device->memory.type_count = type_count;
215
216 return VK_SUCCESS;
217 }
218
219 static VkResult
220 anv_physical_device_init_uuids(struct anv_physical_device *device)
221 {
222 const struct build_id_note *note =
223 build_id_find_nhdr_for_addr(anv_physical_device_init_uuids);
224 if (!note) {
225 return vk_errorf(device->instance, device,
226 VK_ERROR_INITIALIZATION_FAILED,
227 "Failed to find build-id");
228 }
229
230 unsigned build_id_len = build_id_length(note);
231 if (build_id_len < 20) {
232 return vk_errorf(device->instance, device,
233 VK_ERROR_INITIALIZATION_FAILED,
234 "build-id too short. It needs to be a SHA");
235 }
236
237 memcpy(device->driver_build_sha1, build_id_data(note), 20);
238
239 struct mesa_sha1 sha1_ctx;
240 uint8_t sha1[20];
241 STATIC_ASSERT(VK_UUID_SIZE <= sizeof(sha1));
242
243 /* The pipeline cache UUID is used for determining when a pipeline cache is
244 * invalid. It needs both a driver build and the PCI ID of the device.
245 */
246 _mesa_sha1_init(&sha1_ctx);
247 _mesa_sha1_update(&sha1_ctx, build_id_data(note), build_id_len);
248 _mesa_sha1_update(&sha1_ctx, &device->chipset_id,
249 sizeof(device->chipset_id));
250 _mesa_sha1_final(&sha1_ctx, sha1);
251 memcpy(device->pipeline_cache_uuid, sha1, VK_UUID_SIZE);
252
253 /* The driver UUID is used for determining sharability of images and memory
254 * between two Vulkan instances in separate processes. People who want to
255 * share memory need to also check the device UUID (below) so all this
256 * needs to be is the build-id.
257 */
258 memcpy(device->driver_uuid, build_id_data(note), VK_UUID_SIZE);
259
260 /* The device UUID uniquely identifies the given device within the machine.
261 * Since we never have more than one device, this doesn't need to be a real
262 * UUID. However, on the off-chance that someone tries to use this to
263 * cache pre-tiled images or something of the like, we use the PCI ID and
264 * some bits of ISL info to ensure that this is safe.
265 */
266 _mesa_sha1_init(&sha1_ctx);
267 _mesa_sha1_update(&sha1_ctx, &device->chipset_id,
268 sizeof(device->chipset_id));
269 _mesa_sha1_update(&sha1_ctx, &device->isl_dev.has_bit6_swizzling,
270 sizeof(device->isl_dev.has_bit6_swizzling));
271 _mesa_sha1_final(&sha1_ctx, sha1);
272 memcpy(device->device_uuid, sha1, VK_UUID_SIZE);
273
274 return VK_SUCCESS;
275 }
276
277 static void
278 anv_physical_device_init_disk_cache(struct anv_physical_device *device)
279 {
280 #ifdef ENABLE_SHADER_CACHE
281 char renderer[9];
282 MAYBE_UNUSED int len = snprintf(renderer, sizeof(renderer), "anv_%04x",
283 device->chipset_id);
284 assert(len == sizeof(renderer) - 1);
285
286 char timestamp[41];
287 _mesa_sha1_format(timestamp, device->driver_build_sha1);
288
289 device->disk_cache = disk_cache_create(renderer, timestamp, 0);
290 #else
291 device->disk_cache = NULL;
292 #endif
293 }
294
295 static void
296 anv_physical_device_free_disk_cache(struct anv_physical_device *device)
297 {
298 #ifdef ENABLE_SHADER_CACHE
299 if (device->disk_cache)
300 disk_cache_destroy(device->disk_cache);
301 #else
302 assert(device->disk_cache == NULL);
303 #endif
304 }
305
306 static VkResult
307 anv_physical_device_init(struct anv_physical_device *device,
308 struct anv_instance *instance,
309 const char *primary_path,
310 const char *path)
311 {
312 VkResult result;
313 int fd;
314 int master_fd = -1;
315
316 brw_process_intel_debug_variable();
317
318 fd = open(path, O_RDWR | O_CLOEXEC);
319 if (fd < 0)
320 return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
321
322 device->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
323 device->instance = instance;
324
325 assert(strlen(path) < ARRAY_SIZE(device->path));
326 strncpy(device->path, path, ARRAY_SIZE(device->path));
327
328 device->no_hw = getenv("INTEL_NO_HW") != NULL;
329
330 const int pci_id_override = gen_get_pci_device_id_override();
331 if (pci_id_override < 0) {
332 device->chipset_id = anv_gem_get_param(fd, I915_PARAM_CHIPSET_ID);
333 if (!device->chipset_id) {
334 result = vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
335 goto fail;
336 }
337 } else {
338 device->chipset_id = pci_id_override;
339 device->no_hw = true;
340 }
341
342 device->name = gen_get_device_name(device->chipset_id);
343 if (!gen_get_device_info(device->chipset_id, &device->info)) {
344 result = vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
345 goto fail;
346 }
347
348 if (device->info.is_haswell) {
349 intel_logw("Haswell Vulkan support is incomplete");
350 } else if (device->info.gen == 7 && !device->info.is_baytrail) {
351 intel_logw("Ivy Bridge Vulkan support is incomplete");
352 } else if (device->info.gen == 7 && device->info.is_baytrail) {
353 intel_logw("Bay Trail Vulkan support is incomplete");
354 } else if (device->info.gen >= 8 && device->info.gen <= 10) {
355 /* Gen8-10 fully supported */
356 } else if (device->info.gen == 11) {
357 intel_logw("Vulkan is not yet fully supported on gen11.");
358 } else {
359 result = vk_errorf(device->instance, device,
360 VK_ERROR_INCOMPATIBLE_DRIVER,
361 "Vulkan not yet supported on %s", device->name);
362 goto fail;
363 }
364
365 device->cmd_parser_version = -1;
366 if (device->info.gen == 7) {
367 device->cmd_parser_version =
368 anv_gem_get_param(fd, I915_PARAM_CMD_PARSER_VERSION);
369 if (device->cmd_parser_version == -1) {
370 result = vk_errorf(device->instance, device,
371 VK_ERROR_INITIALIZATION_FAILED,
372 "failed to get command parser version");
373 goto fail;
374 }
375 }
376
377 if (!anv_gem_get_param(fd, I915_PARAM_HAS_WAIT_TIMEOUT)) {
378 result = vk_errorf(device->instance, device,
379 VK_ERROR_INITIALIZATION_FAILED,
380 "kernel missing gem wait");
381 goto fail;
382 }
383
384 if (!anv_gem_get_param(fd, I915_PARAM_HAS_EXECBUF2)) {
385 result = vk_errorf(device->instance, device,
386 VK_ERROR_INITIALIZATION_FAILED,
387 "kernel missing execbuf2");
388 goto fail;
389 }
390
391 if (!device->info.has_llc &&
392 anv_gem_get_param(fd, I915_PARAM_MMAP_VERSION) < 1) {
393 result = vk_errorf(device->instance, device,
394 VK_ERROR_INITIALIZATION_FAILED,
395 "kernel missing wc mmap");
396 goto fail;
397 }
398
399 result = anv_physical_device_init_heaps(device, fd);
400 if (result != VK_SUCCESS)
401 goto fail;
402
403 device->has_exec_async = anv_gem_get_param(fd, I915_PARAM_HAS_EXEC_ASYNC);
404 device->has_exec_capture = anv_gem_get_param(fd, I915_PARAM_HAS_EXEC_CAPTURE);
405 device->has_exec_fence = anv_gem_get_param(fd, I915_PARAM_HAS_EXEC_FENCE);
406 device->has_syncobj = anv_gem_get_param(fd, I915_PARAM_HAS_EXEC_FENCE_ARRAY);
407 device->has_syncobj_wait = device->has_syncobj &&
408 anv_gem_supports_syncobj_wait(fd);
409 device->has_context_priority = anv_gem_has_context_priority(fd);
410
411 device->use_softpin = anv_gem_get_param(fd, I915_PARAM_HAS_EXEC_SOFTPIN)
412 && device->supports_48bit_addresses;
413
414 device->has_context_isolation =
415 anv_gem_get_param(fd, I915_PARAM_HAS_CONTEXT_ISOLATION);
416
417 bool swizzled = anv_gem_get_bit6_swizzle(fd, I915_TILING_X);
418
419 /* Starting with Gen10, the timestamp frequency of the command streamer may
420 * vary from one part to another. We can query the value from the kernel.
421 */
422 if (device->info.gen >= 10) {
423 int timestamp_frequency =
424 anv_gem_get_param(fd, I915_PARAM_CS_TIMESTAMP_FREQUENCY);
425
426 if (timestamp_frequency < 0)
427 intel_logw("Kernel 4.16-rc1+ required to properly query CS timestamp frequency");
428 else
429 device->info.timestamp_frequency = timestamp_frequency;
430 }
431
432 /* GENs prior to 8 do not support EU/Subslice info */
433 if (device->info.gen >= 8) {
434 device->subslice_total = anv_gem_get_param(fd, I915_PARAM_SUBSLICE_TOTAL);
435 device->eu_total = anv_gem_get_param(fd, I915_PARAM_EU_TOTAL);
436
437 /* Without this information, we cannot get the right Braswell
438 * brandstrings, and we have to use conservative numbers for GPGPU on
439 * many platforms, but otherwise, things will just work.
440 */
441 if (device->subslice_total < 1 || device->eu_total < 1) {
442 intel_logw("Kernel 4.1 required to properly query GPU properties");
443 }
444 } else if (device->info.gen == 7) {
445 device->subslice_total = 1 << (device->info.gt - 1);
446 }
447
448 if (device->info.is_cherryview &&
449 device->subslice_total > 0 && device->eu_total > 0) {
450 /* Logical CS threads = EUs per subslice * num threads per EU */
451 uint32_t max_cs_threads =
452 device->eu_total / device->subslice_total * device->info.num_thread_per_eu;
453
454 /* Fuse configurations may give more threads than expected, never less. */
455 if (max_cs_threads > device->info.max_cs_threads)
456 device->info.max_cs_threads = max_cs_threads;
457 }
458
459 device->compiler = brw_compiler_create(NULL, &device->info);
460 if (device->compiler == NULL) {
461 result = vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
462 goto fail;
463 }
464 device->compiler->shader_debug_log = compiler_debug_log;
465 device->compiler->shader_perf_log = compiler_perf_log;
466 device->compiler->supports_pull_constants = false;
467 device->compiler->constant_buffer_0_is_relative =
468 device->info.gen < 8 || !device->has_context_isolation;
469 device->compiler->supports_shader_constants = true;
470
471 isl_device_init(&device->isl_dev, &device->info, swizzled);
472
473 result = anv_physical_device_init_uuids(device);
474 if (result != VK_SUCCESS)
475 goto fail;
476
477 anv_physical_device_init_disk_cache(device);
478
479 if (instance->enabled_extensions.KHR_display) {
480 master_fd = open(primary_path, O_RDWR | O_CLOEXEC);
481 if (master_fd >= 0) {
482 /* prod the device with a GETPARAM call which will fail if
483 * we don't have permission to even render on this device
484 */
485 if (anv_gem_get_param(master_fd, I915_PARAM_CHIPSET_ID) == 0) {
486 close(master_fd);
487 master_fd = -1;
488 }
489 }
490 }
491 device->master_fd = master_fd;
492
493 result = anv_init_wsi(device);
494 if (result != VK_SUCCESS) {
495 ralloc_free(device->compiler);
496 anv_physical_device_free_disk_cache(device);
497 goto fail;
498 }
499
500 anv_physical_device_get_supported_extensions(device,
501 &device->supported_extensions);
502
503
504 device->local_fd = fd;
505
506 return VK_SUCCESS;
507
508 fail:
509 close(fd);
510 if (master_fd != -1)
511 close(master_fd);
512 return result;
513 }
514
515 static void
516 anv_physical_device_finish(struct anv_physical_device *device)
517 {
518 anv_finish_wsi(device);
519 anv_physical_device_free_disk_cache(device);
520 ralloc_free(device->compiler);
521 close(device->local_fd);
522 if (device->master_fd >= 0)
523 close(device->master_fd);
524 }
525
526 static void *
527 default_alloc_func(void *pUserData, size_t size, size_t align,
528 VkSystemAllocationScope allocationScope)
529 {
530 return malloc(size);
531 }
532
533 static void *
534 default_realloc_func(void *pUserData, void *pOriginal, size_t size,
535 size_t align, VkSystemAllocationScope allocationScope)
536 {
537 return realloc(pOriginal, size);
538 }
539
540 static void
541 default_free_func(void *pUserData, void *pMemory)
542 {
543 free(pMemory);
544 }
545
546 static const VkAllocationCallbacks default_alloc = {
547 .pUserData = NULL,
548 .pfnAllocation = default_alloc_func,
549 .pfnReallocation = default_realloc_func,
550 .pfnFree = default_free_func,
551 };
552
553 VkResult anv_EnumerateInstanceExtensionProperties(
554 const char* pLayerName,
555 uint32_t* pPropertyCount,
556 VkExtensionProperties* pProperties)
557 {
558 VK_OUTARRAY_MAKE(out, pProperties, pPropertyCount);
559
560 for (int i = 0; i < ANV_INSTANCE_EXTENSION_COUNT; i++) {
561 if (anv_instance_extensions_supported.extensions[i]) {
562 vk_outarray_append(&out, prop) {
563 *prop = anv_instance_extensions[i];
564 }
565 }
566 }
567
568 return vk_outarray_status(&out);
569 }
570
571 VkResult anv_CreateInstance(
572 const VkInstanceCreateInfo* pCreateInfo,
573 const VkAllocationCallbacks* pAllocator,
574 VkInstance* pInstance)
575 {
576 struct anv_instance *instance;
577 VkResult result;
578
579 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO);
580
581 struct anv_instance_extension_table enabled_extensions = {};
582 for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
583 int idx;
584 for (idx = 0; idx < ANV_INSTANCE_EXTENSION_COUNT; idx++) {
585 if (strcmp(pCreateInfo->ppEnabledExtensionNames[i],
586 anv_instance_extensions[idx].extensionName) == 0)
587 break;
588 }
589
590 if (idx >= ANV_INSTANCE_EXTENSION_COUNT)
591 return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
592
593 if (!anv_instance_extensions_supported.extensions[idx])
594 return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
595
596 enabled_extensions.extensions[idx] = true;
597 }
598
599 instance = vk_alloc2(&default_alloc, pAllocator, sizeof(*instance), 8,
600 VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
601 if (!instance)
602 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
603
604 instance->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
605
606 if (pAllocator)
607 instance->alloc = *pAllocator;
608 else
609 instance->alloc = default_alloc;
610
611 if (pCreateInfo->pApplicationInfo &&
612 pCreateInfo->pApplicationInfo->apiVersion != 0) {
613 instance->apiVersion = pCreateInfo->pApplicationInfo->apiVersion;
614 } else {
615 anv_EnumerateInstanceVersion(&instance->apiVersion);
616 }
617
618 instance->enabled_extensions = enabled_extensions;
619
620 for (unsigned i = 0; i < ARRAY_SIZE(instance->dispatch.entrypoints); i++) {
621 /* Vulkan requires that entrypoints for extensions which have not been
622 * enabled must not be advertised.
623 */
624 if (!anv_entrypoint_is_enabled(i, instance->apiVersion,
625 &instance->enabled_extensions, NULL)) {
626 instance->dispatch.entrypoints[i] = NULL;
627 } else if (anv_dispatch_table.entrypoints[i] != NULL) {
628 instance->dispatch.entrypoints[i] = anv_dispatch_table.entrypoints[i];
629 } else {
630 instance->dispatch.entrypoints[i] =
631 anv_tramp_dispatch_table.entrypoints[i];
632 }
633 }
634
635 instance->physicalDeviceCount = -1;
636
637 result = vk_debug_report_instance_init(&instance->debug_report_callbacks);
638 if (result != VK_SUCCESS) {
639 vk_free2(&default_alloc, pAllocator, instance);
640 return vk_error(result);
641 }
642
643 instance->pipeline_cache_enabled =
644 env_var_as_boolean("ANV_ENABLE_PIPELINE_CACHE", true);
645
646 _mesa_locale_init();
647
648 VG(VALGRIND_CREATE_MEMPOOL(instance, 0, false));
649
650 *pInstance = anv_instance_to_handle(instance);
651
652 return VK_SUCCESS;
653 }
654
655 void anv_DestroyInstance(
656 VkInstance _instance,
657 const VkAllocationCallbacks* pAllocator)
658 {
659 ANV_FROM_HANDLE(anv_instance, instance, _instance);
660
661 if (!instance)
662 return;
663
664 if (instance->physicalDeviceCount > 0) {
665 /* We support at most one physical device. */
666 assert(instance->physicalDeviceCount == 1);
667 anv_physical_device_finish(&instance->physicalDevice);
668 }
669
670 VG(VALGRIND_DESTROY_MEMPOOL(instance));
671
672 vk_debug_report_instance_destroy(&instance->debug_report_callbacks);
673
674 _mesa_locale_fini();
675
676 vk_free(&instance->alloc, instance);
677 }
678
679 static VkResult
680 anv_enumerate_devices(struct anv_instance *instance)
681 {
682 /* TODO: Check for more devices ? */
683 drmDevicePtr devices[8];
684 VkResult result = VK_ERROR_INCOMPATIBLE_DRIVER;
685 int max_devices;
686
687 instance->physicalDeviceCount = 0;
688
689 max_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices));
690 if (max_devices < 1)
691 return VK_ERROR_INCOMPATIBLE_DRIVER;
692
693 for (unsigned i = 0; i < (unsigned)max_devices; i++) {
694 if (devices[i]->available_nodes & 1 << DRM_NODE_RENDER &&
695 devices[i]->bustype == DRM_BUS_PCI &&
696 devices[i]->deviceinfo.pci->vendor_id == 0x8086) {
697
698 result = anv_physical_device_init(&instance->physicalDevice,
699 instance,
700 devices[i]->nodes[DRM_NODE_PRIMARY],
701 devices[i]->nodes[DRM_NODE_RENDER]);
702 if (result != VK_ERROR_INCOMPATIBLE_DRIVER)
703 break;
704 }
705 }
706 drmFreeDevices(devices, max_devices);
707
708 if (result == VK_SUCCESS)
709 instance->physicalDeviceCount = 1;
710
711 return result;
712 }
713
714 static VkResult
715 anv_instance_ensure_physical_device(struct anv_instance *instance)
716 {
717 if (instance->physicalDeviceCount < 0) {
718 VkResult result = anv_enumerate_devices(instance);
719 if (result != VK_SUCCESS &&
720 result != VK_ERROR_INCOMPATIBLE_DRIVER)
721 return result;
722 }
723
724 return VK_SUCCESS;
725 }
726
727 VkResult anv_EnumeratePhysicalDevices(
728 VkInstance _instance,
729 uint32_t* pPhysicalDeviceCount,
730 VkPhysicalDevice* pPhysicalDevices)
731 {
732 ANV_FROM_HANDLE(anv_instance, instance, _instance);
733 VK_OUTARRAY_MAKE(out, pPhysicalDevices, pPhysicalDeviceCount);
734
735 VkResult result = anv_instance_ensure_physical_device(instance);
736 if (result != VK_SUCCESS)
737 return result;
738
739 if (instance->physicalDeviceCount == 0)
740 return VK_SUCCESS;
741
742 assert(instance->physicalDeviceCount == 1);
743 vk_outarray_append(&out, i) {
744 *i = anv_physical_device_to_handle(&instance->physicalDevice);
745 }
746
747 return vk_outarray_status(&out);
748 }
749
750 VkResult anv_EnumeratePhysicalDeviceGroups(
751 VkInstance _instance,
752 uint32_t* pPhysicalDeviceGroupCount,
753 VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties)
754 {
755 ANV_FROM_HANDLE(anv_instance, instance, _instance);
756 VK_OUTARRAY_MAKE(out, pPhysicalDeviceGroupProperties,
757 pPhysicalDeviceGroupCount);
758
759 VkResult result = anv_instance_ensure_physical_device(instance);
760 if (result != VK_SUCCESS)
761 return result;
762
763 if (instance->physicalDeviceCount == 0)
764 return VK_SUCCESS;
765
766 assert(instance->physicalDeviceCount == 1);
767
768 vk_outarray_append(&out, p) {
769 p->physicalDeviceCount = 1;
770 memset(p->physicalDevices, 0, sizeof(p->physicalDevices));
771 p->physicalDevices[0] =
772 anv_physical_device_to_handle(&instance->physicalDevice);
773 p->subsetAllocation = VK_FALSE;
774
775 vk_foreach_struct(ext, p->pNext)
776 anv_debug_ignored_stype(ext->sType);
777 }
778
779 return vk_outarray_status(&out);
780 }
781
782 void anv_GetPhysicalDeviceFeatures(
783 VkPhysicalDevice physicalDevice,
784 VkPhysicalDeviceFeatures* pFeatures)
785 {
786 ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
787
788 *pFeatures = (VkPhysicalDeviceFeatures) {
789 .robustBufferAccess = true,
790 .fullDrawIndexUint32 = true,
791 .imageCubeArray = true,
792 .independentBlend = true,
793 .geometryShader = true,
794 .tessellationShader = true,
795 .sampleRateShading = true,
796 .dualSrcBlend = true,
797 .logicOp = true,
798 .multiDrawIndirect = true,
799 .drawIndirectFirstInstance = true,
800 .depthClamp = true,
801 .depthBiasClamp = true,
802 .fillModeNonSolid = true,
803 .depthBounds = false,
804 .wideLines = true,
805 .largePoints = true,
806 .alphaToOne = true,
807 .multiViewport = true,
808 .samplerAnisotropy = true,
809 .textureCompressionETC2 = pdevice->info.gen >= 8 ||
810 pdevice->info.is_baytrail,
811 .textureCompressionASTC_LDR = pdevice->info.gen >= 9, /* FINISHME CHV */
812 .textureCompressionBC = true,
813 .occlusionQueryPrecise = true,
814 .pipelineStatisticsQuery = true,
815 .fragmentStoresAndAtomics = true,
816 .shaderTessellationAndGeometryPointSize = true,
817 .shaderImageGatherExtended = true,
818 .shaderStorageImageExtendedFormats = true,
819 .shaderStorageImageMultisample = false,
820 .shaderStorageImageReadWithoutFormat = false,
821 .shaderStorageImageWriteWithoutFormat = true,
822 .shaderUniformBufferArrayDynamicIndexing = true,
823 .shaderSampledImageArrayDynamicIndexing = true,
824 .shaderStorageBufferArrayDynamicIndexing = true,
825 .shaderStorageImageArrayDynamicIndexing = true,
826 .shaderClipDistance = true,
827 .shaderCullDistance = true,
828 .shaderFloat64 = pdevice->info.gen >= 8 &&
829 pdevice->info.has_64bit_types,
830 .shaderInt64 = pdevice->info.gen >= 8 &&
831 pdevice->info.has_64bit_types,
832 .shaderInt16 = pdevice->info.gen >= 8,
833 .shaderResourceMinLod = false,
834 .variableMultisampleRate = true,
835 .inheritedQueries = true,
836 };
837
838 /* We can't do image stores in vec4 shaders */
839 pFeatures->vertexPipelineStoresAndAtomics =
840 pdevice->compiler->scalar_stage[MESA_SHADER_VERTEX] &&
841 pdevice->compiler->scalar_stage[MESA_SHADER_GEOMETRY];
842 }
843
844 void anv_GetPhysicalDeviceFeatures2(
845 VkPhysicalDevice physicalDevice,
846 VkPhysicalDeviceFeatures2* pFeatures)
847 {
848 anv_GetPhysicalDeviceFeatures(physicalDevice, &pFeatures->features);
849
850 vk_foreach_struct(ext, pFeatures->pNext) {
851 switch (ext->sType) {
852 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES: {
853 VkPhysicalDeviceProtectedMemoryFeatures *features = (void *)ext;
854 features->protectedMemory = VK_FALSE;
855 break;
856 }
857
858 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES: {
859 VkPhysicalDeviceMultiviewFeatures *features =
860 (VkPhysicalDeviceMultiviewFeatures *)ext;
861 features->multiview = true;
862 features->multiviewGeometryShader = true;
863 features->multiviewTessellationShader = true;
864 break;
865 }
866
867 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES: {
868 VkPhysicalDeviceVariablePointerFeatures *features = (void *)ext;
869 features->variablePointersStorageBuffer = true;
870 features->variablePointers = true;
871 break;
872 }
873
874 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: {
875 VkPhysicalDeviceSamplerYcbcrConversionFeatures *features =
876 (VkPhysicalDeviceSamplerYcbcrConversionFeatures *) ext;
877 features->samplerYcbcrConversion = true;
878 break;
879 }
880
881 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES: {
882 VkPhysicalDeviceShaderDrawParameterFeatures *features = (void *)ext;
883 features->shaderDrawParameters = true;
884 break;
885 }
886
887 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR: {
888 VkPhysicalDevice16BitStorageFeaturesKHR *features =
889 (VkPhysicalDevice16BitStorageFeaturesKHR *)ext;
890 ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
891
892 features->storageBuffer16BitAccess = pdevice->info.gen >= 8;
893 features->uniformAndStorageBuffer16BitAccess = pdevice->info.gen >= 8;
894 features->storagePushConstant16 = pdevice->info.gen >= 8;
895 features->storageInputOutput16 = false;
896 break;
897 }
898
899 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES_KHR: {
900 VkPhysicalDevice8BitStorageFeaturesKHR *features =
901 (VkPhysicalDevice8BitStorageFeaturesKHR *)ext;
902 ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
903
904 features->storageBuffer8BitAccess = pdevice->info.gen >= 8;
905 features->uniformAndStorageBuffer8BitAccess = pdevice->info.gen >= 8;
906 features->storagePushConstant8 = pdevice->info.gen >= 8;
907 break;
908 }
909
910 default:
911 anv_debug_ignored_stype(ext->sType);
912 break;
913 }
914 }
915 }
916
917 void anv_GetPhysicalDeviceProperties(
918 VkPhysicalDevice physicalDevice,
919 VkPhysicalDeviceProperties* pProperties)
920 {
921 ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
922 const struct gen_device_info *devinfo = &pdevice->info;
923
924 /* See assertions made when programming the buffer surface state. */
925 const uint32_t max_raw_buffer_sz = devinfo->gen >= 7 ?
926 (1ul << 30) : (1ul << 27);
927
928 const uint32_t max_samplers = (devinfo->gen >= 8 || devinfo->is_haswell) ?
929 128 : 16;
930
931 VkSampleCountFlags sample_counts =
932 isl_device_get_sample_counts(&pdevice->isl_dev);
933
934 VkPhysicalDeviceLimits limits = {
935 .maxImageDimension1D = (1 << 14),
936 .maxImageDimension2D = (1 << 14),
937 .maxImageDimension3D = (1 << 11),
938 .maxImageDimensionCube = (1 << 14),
939 .maxImageArrayLayers = (1 << 11),
940 .maxTexelBufferElements = 128 * 1024 * 1024,
941 .maxUniformBufferRange = (1ul << 27),
942 .maxStorageBufferRange = max_raw_buffer_sz,
943 .maxPushConstantsSize = MAX_PUSH_CONSTANTS_SIZE,
944 .maxMemoryAllocationCount = UINT32_MAX,
945 .maxSamplerAllocationCount = 64 * 1024,
946 .bufferImageGranularity = 64, /* A cache line */
947 .sparseAddressSpaceSize = 0,
948 .maxBoundDescriptorSets = MAX_SETS,
949 .maxPerStageDescriptorSamplers = max_samplers,
950 .maxPerStageDescriptorUniformBuffers = 64,
951 .maxPerStageDescriptorStorageBuffers = 64,
952 .maxPerStageDescriptorSampledImages = max_samplers,
953 .maxPerStageDescriptorStorageImages = 64,
954 .maxPerStageDescriptorInputAttachments = 64,
955 .maxPerStageResources = 250,
956 .maxDescriptorSetSamplers = 6 * max_samplers, /* number of stages * maxPerStageDescriptorSamplers */
957 .maxDescriptorSetUniformBuffers = 6 * 64, /* number of stages * maxPerStageDescriptorUniformBuffers */
958 .maxDescriptorSetUniformBuffersDynamic = MAX_DYNAMIC_BUFFERS / 2,
959 .maxDescriptorSetStorageBuffers = 6 * 64, /* number of stages * maxPerStageDescriptorStorageBuffers */
960 .maxDescriptorSetStorageBuffersDynamic = MAX_DYNAMIC_BUFFERS / 2,
961 .maxDescriptorSetSampledImages = 6 * max_samplers, /* number of stages * maxPerStageDescriptorSampledImages */
962 .maxDescriptorSetStorageImages = 6 * 64, /* number of stages * maxPerStageDescriptorStorageImages */
963 .maxDescriptorSetInputAttachments = 256,
964 .maxVertexInputAttributes = MAX_VBS,
965 .maxVertexInputBindings = MAX_VBS,
966 .maxVertexInputAttributeOffset = 2047,
967 .maxVertexInputBindingStride = 2048,
968 .maxVertexOutputComponents = 128,
969 .maxTessellationGenerationLevel = 64,
970 .maxTessellationPatchSize = 32,
971 .maxTessellationControlPerVertexInputComponents = 128,
972 .maxTessellationControlPerVertexOutputComponents = 128,
973 .maxTessellationControlPerPatchOutputComponents = 128,
974 .maxTessellationControlTotalOutputComponents = 2048,
975 .maxTessellationEvaluationInputComponents = 128,
976 .maxTessellationEvaluationOutputComponents = 128,
977 .maxGeometryShaderInvocations = 32,
978 .maxGeometryInputComponents = 64,
979 .maxGeometryOutputComponents = 128,
980 .maxGeometryOutputVertices = 256,
981 .maxGeometryTotalOutputComponents = 1024,
982 .maxFragmentInputComponents = 112, /* 128 components - (POS, PSIZ, CLIP_DIST0, CLIP_DIST1) */
983 .maxFragmentOutputAttachments = 8,
984 .maxFragmentDualSrcAttachments = 1,
985 .maxFragmentCombinedOutputResources = 8,
986 .maxComputeSharedMemorySize = 32768,
987 .maxComputeWorkGroupCount = { 65535, 65535, 65535 },
988 .maxComputeWorkGroupInvocations = 16 * devinfo->max_cs_threads,
989 .maxComputeWorkGroupSize = {
990 16 * devinfo->max_cs_threads,
991 16 * devinfo->max_cs_threads,
992 16 * devinfo->max_cs_threads,
993 },
994 .subPixelPrecisionBits = 4 /* FIXME */,
995 .subTexelPrecisionBits = 4 /* FIXME */,
996 .mipmapPrecisionBits = 4 /* FIXME */,
997 .maxDrawIndexedIndexValue = UINT32_MAX,
998 .maxDrawIndirectCount = UINT32_MAX,
999 .maxSamplerLodBias = 16,
1000 .maxSamplerAnisotropy = 16,
1001 .maxViewports = MAX_VIEWPORTS,
1002 .maxViewportDimensions = { (1 << 14), (1 << 14) },
1003 .viewportBoundsRange = { INT16_MIN, INT16_MAX },
1004 .viewportSubPixelBits = 13, /* We take a float? */
1005 .minMemoryMapAlignment = 4096, /* A page */
1006 .minTexelBufferOffsetAlignment = 1,
1007 /* We need 16 for UBO block reads to work and 32 for push UBOs */
1008 .minUniformBufferOffsetAlignment = 32,
1009 .minStorageBufferOffsetAlignment = 4,
1010 .minTexelOffset = -8,
1011 .maxTexelOffset = 7,
1012 .minTexelGatherOffset = -32,
1013 .maxTexelGatherOffset = 31,
1014 .minInterpolationOffset = -0.5,
1015 .maxInterpolationOffset = 0.4375,
1016 .subPixelInterpolationOffsetBits = 4,
1017 .maxFramebufferWidth = (1 << 14),
1018 .maxFramebufferHeight = (1 << 14),
1019 .maxFramebufferLayers = (1 << 11),
1020 .framebufferColorSampleCounts = sample_counts,
1021 .framebufferDepthSampleCounts = sample_counts,
1022 .framebufferStencilSampleCounts = sample_counts,
1023 .framebufferNoAttachmentsSampleCounts = sample_counts,
1024 .maxColorAttachments = MAX_RTS,
1025 .sampledImageColorSampleCounts = sample_counts,
1026 .sampledImageIntegerSampleCounts = VK_SAMPLE_COUNT_1_BIT,
1027 .sampledImageDepthSampleCounts = sample_counts,
1028 .sampledImageStencilSampleCounts = sample_counts,
1029 .storageImageSampleCounts = VK_SAMPLE_COUNT_1_BIT,
1030 .maxSampleMaskWords = 1,
1031 .timestampComputeAndGraphics = false,
1032 .timestampPeriod = 1000000000.0 / devinfo->timestamp_frequency,
1033 .maxClipDistances = 8,
1034 .maxCullDistances = 8,
1035 .maxCombinedClipAndCullDistances = 8,
1036 .discreteQueuePriorities = 1,
1037 .pointSizeRange = { 0.125, 255.875 },
1038 .lineWidthRange = { 0.0, 7.9921875 },
1039 .pointSizeGranularity = (1.0 / 8.0),
1040 .lineWidthGranularity = (1.0 / 128.0),
1041 .strictLines = false, /* FINISHME */
1042 .standardSampleLocations = true,
1043 .optimalBufferCopyOffsetAlignment = 128,
1044 .optimalBufferCopyRowPitchAlignment = 128,
1045 .nonCoherentAtomSize = 64,
1046 };
1047
1048 *pProperties = (VkPhysicalDeviceProperties) {
1049 .apiVersion = anv_physical_device_api_version(pdevice),
1050 .driverVersion = vk_get_driver_version(),
1051 .vendorID = 0x8086,
1052 .deviceID = pdevice->chipset_id,
1053 .deviceType = VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU,
1054 .limits = limits,
1055 .sparseProperties = {0}, /* Broadwell doesn't do sparse. */
1056 };
1057
1058 snprintf(pProperties->deviceName, sizeof(pProperties->deviceName),
1059 "%s", pdevice->name);
1060 memcpy(pProperties->pipelineCacheUUID,
1061 pdevice->pipeline_cache_uuid, VK_UUID_SIZE);
1062 }
1063
1064 void anv_GetPhysicalDeviceProperties2(
1065 VkPhysicalDevice physicalDevice,
1066 VkPhysicalDeviceProperties2* pProperties)
1067 {
1068 ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
1069
1070 anv_GetPhysicalDeviceProperties(physicalDevice, &pProperties->properties);
1071
1072 vk_foreach_struct(ext, pProperties->pNext) {
1073 switch (ext->sType) {
1074 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR: {
1075 VkPhysicalDevicePushDescriptorPropertiesKHR *properties =
1076 (VkPhysicalDevicePushDescriptorPropertiesKHR *) ext;
1077
1078 properties->maxPushDescriptors = MAX_PUSH_DESCRIPTORS;
1079 break;
1080 }
1081
1082 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES: {
1083 VkPhysicalDeviceIDProperties *id_props =
1084 (VkPhysicalDeviceIDProperties *)ext;
1085 memcpy(id_props->deviceUUID, pdevice->device_uuid, VK_UUID_SIZE);
1086 memcpy(id_props->driverUUID, pdevice->driver_uuid, VK_UUID_SIZE);
1087 /* The LUID is for Windows. */
1088 id_props->deviceLUIDValid = false;
1089 break;
1090 }
1091
1092 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES: {
1093 VkPhysicalDeviceMaintenance3Properties *props =
1094 (VkPhysicalDeviceMaintenance3Properties *)ext;
1095 /* This value doesn't matter for us today as our per-stage
1096 * descriptors are the real limit.
1097 */
1098 props->maxPerSetDescriptors = 1024;
1099 props->maxMemoryAllocationSize = MAX_MEMORY_ALLOCATION_SIZE;
1100 break;
1101 }
1102
1103 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES: {
1104 VkPhysicalDeviceMultiviewProperties *properties =
1105 (VkPhysicalDeviceMultiviewProperties *)ext;
1106 properties->maxMultiviewViewCount = 16;
1107 properties->maxMultiviewInstanceIndex = UINT32_MAX / 16;
1108 break;
1109 }
1110
1111 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES: {
1112 VkPhysicalDevicePointClippingProperties *properties =
1113 (VkPhysicalDevicePointClippingProperties *) ext;
1114 properties->pointClippingBehavior = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES;
1115 anv_finishme("Implement pop-free point clipping");
1116 break;
1117 }
1118
1119 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES: {
1120 VkPhysicalDeviceSubgroupProperties *properties = (void *)ext;
1121
1122 properties->subgroupSize = BRW_SUBGROUP_SIZE;
1123
1124 VkShaderStageFlags scalar_stages = 0;
1125 for (unsigned stage = 0; stage < MESA_SHADER_STAGES; stage++) {
1126 if (pdevice->compiler->scalar_stage[stage])
1127 scalar_stages |= mesa_to_vk_shader_stage(stage);
1128 }
1129 properties->supportedStages = scalar_stages;
1130
1131 properties->supportedOperations = VK_SUBGROUP_FEATURE_BASIC_BIT |
1132 VK_SUBGROUP_FEATURE_VOTE_BIT |
1133 VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
1134 VK_SUBGROUP_FEATURE_BALLOT_BIT |
1135 VK_SUBGROUP_FEATURE_SHUFFLE_BIT |
1136 VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT |
1137 VK_SUBGROUP_FEATURE_CLUSTERED_BIT |
1138 VK_SUBGROUP_FEATURE_QUAD_BIT;
1139 properties->quadOperationsInAllStages = VK_TRUE;
1140 break;
1141 }
1142
1143 default:
1144 anv_debug_ignored_stype(ext->sType);
1145 break;
1146 }
1147 }
1148 }
1149
1150 /* We support exactly one queue family. */
1151 static const VkQueueFamilyProperties
1152 anv_queue_family_properties = {
1153 .queueFlags = VK_QUEUE_GRAPHICS_BIT |
1154 VK_QUEUE_COMPUTE_BIT |
1155 VK_QUEUE_TRANSFER_BIT,
1156 .queueCount = 1,
1157 .timestampValidBits = 36, /* XXX: Real value here */
1158 .minImageTransferGranularity = { 1, 1, 1 },
1159 };
1160
1161 void anv_GetPhysicalDeviceQueueFamilyProperties(
1162 VkPhysicalDevice physicalDevice,
1163 uint32_t* pCount,
1164 VkQueueFamilyProperties* pQueueFamilyProperties)
1165 {
1166 VK_OUTARRAY_MAKE(out, pQueueFamilyProperties, pCount);
1167
1168 vk_outarray_append(&out, p) {
1169 *p = anv_queue_family_properties;
1170 }
1171 }
1172
1173 void anv_GetPhysicalDeviceQueueFamilyProperties2(
1174 VkPhysicalDevice physicalDevice,
1175 uint32_t* pQueueFamilyPropertyCount,
1176 VkQueueFamilyProperties2* pQueueFamilyProperties)
1177 {
1178
1179 VK_OUTARRAY_MAKE(out, pQueueFamilyProperties, pQueueFamilyPropertyCount);
1180
1181 vk_outarray_append(&out, p) {
1182 p->queueFamilyProperties = anv_queue_family_properties;
1183
1184 vk_foreach_struct(s, p->pNext) {
1185 anv_debug_ignored_stype(s->sType);
1186 }
1187 }
1188 }
1189
1190 void anv_GetPhysicalDeviceMemoryProperties(
1191 VkPhysicalDevice physicalDevice,
1192 VkPhysicalDeviceMemoryProperties* pMemoryProperties)
1193 {
1194 ANV_FROM_HANDLE(anv_physical_device, physical_device, physicalDevice);
1195
1196 pMemoryProperties->memoryTypeCount = physical_device->memory.type_count;
1197 for (uint32_t i = 0; i < physical_device->memory.type_count; i++) {
1198 pMemoryProperties->memoryTypes[i] = (VkMemoryType) {
1199 .propertyFlags = physical_device->memory.types[i].propertyFlags,
1200 .heapIndex = physical_device->memory.types[i].heapIndex,
1201 };
1202 }
1203
1204 pMemoryProperties->memoryHeapCount = physical_device->memory.heap_count;
1205 for (uint32_t i = 0; i < physical_device->memory.heap_count; i++) {
1206 pMemoryProperties->memoryHeaps[i] = (VkMemoryHeap) {
1207 .size = physical_device->memory.heaps[i].size,
1208 .flags = physical_device->memory.heaps[i].flags,
1209 };
1210 }
1211 }
1212
1213 void anv_GetPhysicalDeviceMemoryProperties2(
1214 VkPhysicalDevice physicalDevice,
1215 VkPhysicalDeviceMemoryProperties2* pMemoryProperties)
1216 {
1217 anv_GetPhysicalDeviceMemoryProperties(physicalDevice,
1218 &pMemoryProperties->memoryProperties);
1219
1220 vk_foreach_struct(ext, pMemoryProperties->pNext) {
1221 switch (ext->sType) {
1222 default:
1223 anv_debug_ignored_stype(ext->sType);
1224 break;
1225 }
1226 }
1227 }
1228
1229 void
1230 anv_GetDeviceGroupPeerMemoryFeatures(
1231 VkDevice device,
1232 uint32_t heapIndex,
1233 uint32_t localDeviceIndex,
1234 uint32_t remoteDeviceIndex,
1235 VkPeerMemoryFeatureFlags* pPeerMemoryFeatures)
1236 {
1237 assert(localDeviceIndex == 0 && remoteDeviceIndex == 0);
1238 *pPeerMemoryFeatures = VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT |
1239 VK_PEER_MEMORY_FEATURE_COPY_DST_BIT |
1240 VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT |
1241 VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT;
1242 }
1243
1244 PFN_vkVoidFunction anv_GetInstanceProcAddr(
1245 VkInstance _instance,
1246 const char* pName)
1247 {
1248 ANV_FROM_HANDLE(anv_instance, instance, _instance);
1249
1250 /* The Vulkan 1.0 spec for vkGetInstanceProcAddr has a table of exactly
1251 * when we have to return valid function pointers, NULL, or it's left
1252 * undefined. See the table for exact details.
1253 */
1254 if (pName == NULL)
1255 return NULL;
1256
1257 #define LOOKUP_ANV_ENTRYPOINT(entrypoint) \
1258 if (strcmp(pName, "vk" #entrypoint) == 0) \
1259 return (PFN_vkVoidFunction)anv_##entrypoint
1260
1261 LOOKUP_ANV_ENTRYPOINT(EnumerateInstanceExtensionProperties);
1262 LOOKUP_ANV_ENTRYPOINT(EnumerateInstanceLayerProperties);
1263 LOOKUP_ANV_ENTRYPOINT(EnumerateInstanceVersion);
1264 LOOKUP_ANV_ENTRYPOINT(CreateInstance);
1265
1266 #undef LOOKUP_ANV_ENTRYPOINT
1267
1268 if (instance == NULL)
1269 return NULL;
1270
1271 int idx = anv_get_entrypoint_index(pName);
1272 if (idx < 0)
1273 return NULL;
1274
1275 return instance->dispatch.entrypoints[idx];
1276 }
1277
1278 /* With version 1+ of the loader interface the ICD should expose
1279 * vk_icdGetInstanceProcAddr to work around certain LD_PRELOAD issues seen in apps.
1280 */
1281 PUBLIC
1282 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vk_icdGetInstanceProcAddr(
1283 VkInstance instance,
1284 const char* pName);
1285
1286 PUBLIC
1287 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vk_icdGetInstanceProcAddr(
1288 VkInstance instance,
1289 const char* pName)
1290 {
1291 return anv_GetInstanceProcAddr(instance, pName);
1292 }
1293
1294 PFN_vkVoidFunction anv_GetDeviceProcAddr(
1295 VkDevice _device,
1296 const char* pName)
1297 {
1298 ANV_FROM_HANDLE(anv_device, device, _device);
1299
1300 if (!device || !pName)
1301 return NULL;
1302
1303 int idx = anv_get_entrypoint_index(pName);
1304 if (idx < 0)
1305 return NULL;
1306
1307 return device->dispatch.entrypoints[idx];
1308 }
1309
1310 VkResult
1311 anv_CreateDebugReportCallbackEXT(VkInstance _instance,
1312 const VkDebugReportCallbackCreateInfoEXT* pCreateInfo,
1313 const VkAllocationCallbacks* pAllocator,
1314 VkDebugReportCallbackEXT* pCallback)
1315 {
1316 ANV_FROM_HANDLE(anv_instance, instance, _instance);
1317 return vk_create_debug_report_callback(&instance->debug_report_callbacks,
1318 pCreateInfo, pAllocator, &instance->alloc,
1319 pCallback);
1320 }
1321
1322 void
1323 anv_DestroyDebugReportCallbackEXT(VkInstance _instance,
1324 VkDebugReportCallbackEXT _callback,
1325 const VkAllocationCallbacks* pAllocator)
1326 {
1327 ANV_FROM_HANDLE(anv_instance, instance, _instance);
1328 vk_destroy_debug_report_callback(&instance->debug_report_callbacks,
1329 _callback, pAllocator, &instance->alloc);
1330 }
1331
1332 void
1333 anv_DebugReportMessageEXT(VkInstance _instance,
1334 VkDebugReportFlagsEXT flags,
1335 VkDebugReportObjectTypeEXT objectType,
1336 uint64_t object,
1337 size_t location,
1338 int32_t messageCode,
1339 const char* pLayerPrefix,
1340 const char* pMessage)
1341 {
1342 ANV_FROM_HANDLE(anv_instance, instance, _instance);
1343 vk_debug_report(&instance->debug_report_callbacks, flags, objectType,
1344 object, location, messageCode, pLayerPrefix, pMessage);
1345 }
1346
1347 static void
1348 anv_queue_init(struct anv_device *device, struct anv_queue *queue)
1349 {
1350 queue->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
1351 queue->device = device;
1352 queue->flags = 0;
1353 }
1354
1355 static void
1356 anv_queue_finish(struct anv_queue *queue)
1357 {
1358 }
1359
1360 static struct anv_state
1361 anv_state_pool_emit_data(struct anv_state_pool *pool, size_t size, size_t align, const void *p)
1362 {
1363 struct anv_state state;
1364
1365 state = anv_state_pool_alloc(pool, size, align);
1366 memcpy(state.map, p, size);
1367
1368 anv_state_flush(pool->block_pool.device, state);
1369
1370 return state;
1371 }
1372
1373 struct gen8_border_color {
1374 union {
1375 float float32[4];
1376 uint32_t uint32[4];
1377 };
1378 /* Pad out to 64 bytes */
1379 uint32_t _pad[12];
1380 };
1381
1382 static void
1383 anv_device_init_border_colors(struct anv_device *device)
1384 {
1385 static const struct gen8_border_color border_colors[] = {
1386 [VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK] = { .float32 = { 0.0, 0.0, 0.0, 0.0 } },
1387 [VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK] = { .float32 = { 0.0, 0.0, 0.0, 1.0 } },
1388 [VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE] = { .float32 = { 1.0, 1.0, 1.0, 1.0 } },
1389 [VK_BORDER_COLOR_INT_TRANSPARENT_BLACK] = { .uint32 = { 0, 0, 0, 0 } },
1390 [VK_BORDER_COLOR_INT_OPAQUE_BLACK] = { .uint32 = { 0, 0, 0, 1 } },
1391 [VK_BORDER_COLOR_INT_OPAQUE_WHITE] = { .uint32 = { 1, 1, 1, 1 } },
1392 };
1393
1394 device->border_colors = anv_state_pool_emit_data(&device->dynamic_state_pool,
1395 sizeof(border_colors), 64,
1396 border_colors);
1397 }
1398
1399 static void
1400 anv_device_init_trivial_batch(struct anv_device *device)
1401 {
1402 anv_bo_init_new(&device->trivial_batch_bo, device, 4096);
1403
1404 if (device->instance->physicalDevice.has_exec_async)
1405 device->trivial_batch_bo.flags |= EXEC_OBJECT_ASYNC;
1406
1407 if (device->instance->physicalDevice.use_softpin)
1408 device->trivial_batch_bo.flags |= EXEC_OBJECT_PINNED;
1409
1410 anv_vma_alloc(device, &device->trivial_batch_bo);
1411
1412 void *map = anv_gem_mmap(device, device->trivial_batch_bo.gem_handle,
1413 0, 4096, 0);
1414
1415 struct anv_batch batch = {
1416 .start = map,
1417 .next = map,
1418 .end = map + 4096,
1419 };
1420
1421 anv_batch_emit(&batch, GEN7_MI_BATCH_BUFFER_END, bbe);
1422 anv_batch_emit(&batch, GEN7_MI_NOOP, noop);
1423
1424 if (!device->info.has_llc)
1425 gen_clflush_range(map, batch.next - map);
1426
1427 anv_gem_munmap(map, device->trivial_batch_bo.size);
1428 }
1429
1430 VkResult anv_EnumerateDeviceExtensionProperties(
1431 VkPhysicalDevice physicalDevice,
1432 const char* pLayerName,
1433 uint32_t* pPropertyCount,
1434 VkExtensionProperties* pProperties)
1435 {
1436 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
1437 VK_OUTARRAY_MAKE(out, pProperties, pPropertyCount);
1438 (void)device;
1439
1440 for (int i = 0; i < ANV_DEVICE_EXTENSION_COUNT; i++) {
1441 if (device->supported_extensions.extensions[i]) {
1442 vk_outarray_append(&out, prop) {
1443 *prop = anv_device_extensions[i];
1444 }
1445 }
1446 }
1447
1448 return vk_outarray_status(&out);
1449 }
1450
1451 static void
1452 anv_device_init_dispatch(struct anv_device *device)
1453 {
1454 const struct anv_dispatch_table *genX_table;
1455 switch (device->info.gen) {
1456 case 11:
1457 genX_table = &gen11_dispatch_table;
1458 break;
1459 case 10:
1460 genX_table = &gen10_dispatch_table;
1461 break;
1462 case 9:
1463 genX_table = &gen9_dispatch_table;
1464 break;
1465 case 8:
1466 genX_table = &gen8_dispatch_table;
1467 break;
1468 case 7:
1469 if (device->info.is_haswell)
1470 genX_table = &gen75_dispatch_table;
1471 else
1472 genX_table = &gen7_dispatch_table;
1473 break;
1474 default:
1475 unreachable("unsupported gen\n");
1476 }
1477
1478 for (unsigned i = 0; i < ARRAY_SIZE(device->dispatch.entrypoints); i++) {
1479 /* Vulkan requires that entrypoints for extensions which have not been
1480 * enabled must not be advertised.
1481 */
1482 if (!anv_entrypoint_is_enabled(i, device->instance->apiVersion,
1483 &device->instance->enabled_extensions,
1484 &device->enabled_extensions)) {
1485 device->dispatch.entrypoints[i] = NULL;
1486 } else if (genX_table->entrypoints[i]) {
1487 device->dispatch.entrypoints[i] = genX_table->entrypoints[i];
1488 } else {
1489 device->dispatch.entrypoints[i] = anv_dispatch_table.entrypoints[i];
1490 }
1491 }
1492 }
1493
1494 static int
1495 vk_priority_to_gen(int priority)
1496 {
1497 switch (priority) {
1498 case VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT:
1499 return GEN_CONTEXT_LOW_PRIORITY;
1500 case VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT:
1501 return GEN_CONTEXT_MEDIUM_PRIORITY;
1502 case VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT:
1503 return GEN_CONTEXT_HIGH_PRIORITY;
1504 case VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT:
1505 return GEN_CONTEXT_REALTIME_PRIORITY;
1506 default:
1507 unreachable("Invalid priority");
1508 }
1509 }
1510
1511 static void
1512 anv_device_init_hiz_clear_batch(struct anv_device *device)
1513 {
1514 anv_bo_init_new(&device->hiz_clear_bo, device, 4096);
1515 uint32_t *map = anv_gem_mmap(device, device->hiz_clear_bo.gem_handle,
1516 0, 4096, 0);
1517
1518 union isl_color_value hiz_clear = { .u32 = { 0, } };
1519 hiz_clear.f32[0] = ANV_HZ_FC_VAL;
1520
1521 memcpy(map, hiz_clear.u32, sizeof(hiz_clear.u32));
1522 anv_gem_munmap(map, device->hiz_clear_bo.size);
1523 }
1524
1525 VkResult anv_CreateDevice(
1526 VkPhysicalDevice physicalDevice,
1527 const VkDeviceCreateInfo* pCreateInfo,
1528 const VkAllocationCallbacks* pAllocator,
1529 VkDevice* pDevice)
1530 {
1531 ANV_FROM_HANDLE(anv_physical_device, physical_device, physicalDevice);
1532 VkResult result;
1533 struct anv_device *device;
1534
1535 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO);
1536
1537 struct anv_device_extension_table enabled_extensions = { };
1538 for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
1539 int idx;
1540 for (idx = 0; idx < ANV_DEVICE_EXTENSION_COUNT; idx++) {
1541 if (strcmp(pCreateInfo->ppEnabledExtensionNames[i],
1542 anv_device_extensions[idx].extensionName) == 0)
1543 break;
1544 }
1545
1546 if (idx >= ANV_DEVICE_EXTENSION_COUNT)
1547 return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
1548
1549 if (!physical_device->supported_extensions.extensions[idx])
1550 return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
1551
1552 enabled_extensions.extensions[idx] = true;
1553 }
1554
1555 /* Check enabled features */
1556 if (pCreateInfo->pEnabledFeatures) {
1557 VkPhysicalDeviceFeatures supported_features;
1558 anv_GetPhysicalDeviceFeatures(physicalDevice, &supported_features);
1559 VkBool32 *supported_feature = (VkBool32 *)&supported_features;
1560 VkBool32 *enabled_feature = (VkBool32 *)pCreateInfo->pEnabledFeatures;
1561 unsigned num_features = sizeof(VkPhysicalDeviceFeatures) / sizeof(VkBool32);
1562 for (uint32_t i = 0; i < num_features; i++) {
1563 if (enabled_feature[i] && !supported_feature[i])
1564 return vk_error(VK_ERROR_FEATURE_NOT_PRESENT);
1565 }
1566 }
1567
1568 /* Check requested queues and fail if we are requested to create any
1569 * queues with flags we don't support.
1570 */
1571 assert(pCreateInfo->queueCreateInfoCount > 0);
1572 for (uint32_t i = 0; i < pCreateInfo->queueCreateInfoCount; i++) {
1573 if (pCreateInfo->pQueueCreateInfos[i].flags != 0)
1574 return vk_error(VK_ERROR_INITIALIZATION_FAILED);
1575 }
1576
1577 /* Check if client specified queue priority. */
1578 const VkDeviceQueueGlobalPriorityCreateInfoEXT *queue_priority =
1579 vk_find_struct_const(pCreateInfo->pQueueCreateInfos[0].pNext,
1580 DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_EXT);
1581
1582 VkQueueGlobalPriorityEXT priority =
1583 queue_priority ? queue_priority->globalPriority :
1584 VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT;
1585
1586 device = vk_alloc2(&physical_device->instance->alloc, pAllocator,
1587 sizeof(*device), 8,
1588 VK_SYSTEM_ALLOCATION_SCOPE_DEVICE);
1589 if (!device)
1590 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
1591
1592 device->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
1593 device->instance = physical_device->instance;
1594 device->chipset_id = physical_device->chipset_id;
1595 device->no_hw = physical_device->no_hw;
1596 device->lost = false;
1597
1598 if (pAllocator)
1599 device->alloc = *pAllocator;
1600 else
1601 device->alloc = physical_device->instance->alloc;
1602
1603 /* XXX(chadv): Can we dup() physicalDevice->fd here? */
1604 device->fd = open(physical_device->path, O_RDWR | O_CLOEXEC);
1605 if (device->fd == -1) {
1606 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1607 goto fail_device;
1608 }
1609
1610 device->context_id = anv_gem_create_context(device);
1611 if (device->context_id == -1) {
1612 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1613 goto fail_fd;
1614 }
1615
1616 if (physical_device->use_softpin) {
1617 if (pthread_mutex_init(&device->vma_mutex, NULL) != 0) {
1618 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1619 goto fail_fd;
1620 }
1621
1622 /* keep the page with address zero out of the allocator */
1623 util_vma_heap_init(&device->vma_lo, LOW_HEAP_MIN_ADDRESS, LOW_HEAP_SIZE);
1624 device->vma_lo_available =
1625 physical_device->memory.heaps[physical_device->memory.heap_count - 1].size;
1626
1627 /* Leave the last 4GiB out of the high vma range, so that no state base
1628 * address + size can overflow 48 bits. For more information see the
1629 * comment about Wa32bitGeneralStateOffset in anv_allocator.c
1630 */
1631 util_vma_heap_init(&device->vma_hi, HIGH_HEAP_MIN_ADDRESS,
1632 HIGH_HEAP_SIZE);
1633 device->vma_hi_available = physical_device->memory.heap_count == 1 ? 0 :
1634 physical_device->memory.heaps[0].size;
1635 }
1636
1637 /* As per spec, the driver implementation may deny requests to acquire
1638 * a priority above the default priority (MEDIUM) if the caller does not
1639 * have sufficient privileges. In this scenario VK_ERROR_NOT_PERMITTED_EXT
1640 * is returned.
1641 */
1642 if (physical_device->has_context_priority) {
1643 int err = anv_gem_set_context_param(device->fd, device->context_id,
1644 I915_CONTEXT_PARAM_PRIORITY,
1645 vk_priority_to_gen(priority));
1646 if (err != 0 && priority > VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT) {
1647 result = vk_error(VK_ERROR_NOT_PERMITTED_EXT);
1648 goto fail_fd;
1649 }
1650 }
1651
1652 device->info = physical_device->info;
1653 device->isl_dev = physical_device->isl_dev;
1654
1655 /* On Broadwell and later, we can use batch chaining to more efficiently
1656 * implement growing command buffers. Prior to Haswell, the kernel
1657 * command parser gets in the way and we have to fall back to growing
1658 * the batch.
1659 */
1660 device->can_chain_batches = device->info.gen >= 8;
1661
1662 device->robust_buffer_access = pCreateInfo->pEnabledFeatures &&
1663 pCreateInfo->pEnabledFeatures->robustBufferAccess;
1664 device->enabled_extensions = enabled_extensions;
1665
1666 anv_device_init_dispatch(device);
1667
1668 if (pthread_mutex_init(&device->mutex, NULL) != 0) {
1669 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1670 goto fail_context_id;
1671 }
1672
1673 pthread_condattr_t condattr;
1674 if (pthread_condattr_init(&condattr) != 0) {
1675 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1676 goto fail_mutex;
1677 }
1678 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) {
1679 pthread_condattr_destroy(&condattr);
1680 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1681 goto fail_mutex;
1682 }
1683 if (pthread_cond_init(&device->queue_submit, NULL) != 0) {
1684 pthread_condattr_destroy(&condattr);
1685 result = vk_error(VK_ERROR_INITIALIZATION_FAILED);
1686 goto fail_mutex;
1687 }
1688 pthread_condattr_destroy(&condattr);
1689
1690 uint64_t bo_flags =
1691 (physical_device->supports_48bit_addresses ? EXEC_OBJECT_SUPPORTS_48B_ADDRESS : 0) |
1692 (physical_device->has_exec_async ? EXEC_OBJECT_ASYNC : 0) |
1693 (physical_device->has_exec_capture ? EXEC_OBJECT_CAPTURE : 0) |
1694 (physical_device->use_softpin ? EXEC_OBJECT_PINNED : 0);
1695
1696 anv_bo_pool_init(&device->batch_bo_pool, device, bo_flags);
1697
1698 result = anv_bo_cache_init(&device->bo_cache);
1699 if (result != VK_SUCCESS)
1700 goto fail_batch_bo_pool;
1701
1702 if (!physical_device->use_softpin)
1703 bo_flags &= ~EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
1704
1705 result = anv_state_pool_init(&device->dynamic_state_pool, device,
1706 DYNAMIC_STATE_POOL_MIN_ADDRESS,
1707 16384,
1708 bo_flags);
1709 if (result != VK_SUCCESS)
1710 goto fail_bo_cache;
1711
1712 result = anv_state_pool_init(&device->instruction_state_pool, device,
1713 INSTRUCTION_STATE_POOL_MIN_ADDRESS,
1714 16384,
1715 bo_flags);
1716 if (result != VK_SUCCESS)
1717 goto fail_dynamic_state_pool;
1718
1719 result = anv_state_pool_init(&device->surface_state_pool, device,
1720 SURFACE_STATE_POOL_MIN_ADDRESS,
1721 4096,
1722 bo_flags);
1723 if (result != VK_SUCCESS)
1724 goto fail_instruction_state_pool;
1725
1726 if (physical_device->use_softpin) {
1727 result = anv_state_pool_init(&device->binding_table_pool, device,
1728 BINDING_TABLE_POOL_MIN_ADDRESS,
1729 4096,
1730 bo_flags);
1731 if (result != VK_SUCCESS)
1732 goto fail_surface_state_pool;
1733 }
1734
1735 result = anv_bo_init_new(&device->workaround_bo, device, 1024);
1736 if (result != VK_SUCCESS)
1737 goto fail_binding_table_pool;
1738
1739 if (physical_device->use_softpin)
1740 device->workaround_bo.flags |= EXEC_OBJECT_PINNED;
1741
1742 if (!anv_vma_alloc(device, &device->workaround_bo))
1743 goto fail_workaround_bo;
1744
1745 anv_device_init_trivial_batch(device);
1746
1747 if (device->info.gen >= 10)
1748 anv_device_init_hiz_clear_batch(device);
1749
1750 anv_scratch_pool_init(device, &device->scratch_pool);
1751
1752 anv_queue_init(device, &device->queue);
1753
1754 switch (device->info.gen) {
1755 case 7:
1756 if (!device->info.is_haswell)
1757 result = gen7_init_device_state(device);
1758 else
1759 result = gen75_init_device_state(device);
1760 break;
1761 case 8:
1762 result = gen8_init_device_state(device);
1763 break;
1764 case 9:
1765 result = gen9_init_device_state(device);
1766 break;
1767 case 10:
1768 result = gen10_init_device_state(device);
1769 break;
1770 case 11:
1771 result = gen11_init_device_state(device);
1772 break;
1773 default:
1774 /* Shouldn't get here as we don't create physical devices for any other
1775 * gens. */
1776 unreachable("unhandled gen");
1777 }
1778 if (result != VK_SUCCESS)
1779 goto fail_workaround_bo;
1780
1781 anv_pipeline_cache_init(&device->default_pipeline_cache, device, true);
1782
1783 anv_device_init_blorp(device);
1784
1785 anv_device_init_border_colors(device);
1786
1787 *pDevice = anv_device_to_handle(device);
1788
1789 return VK_SUCCESS;
1790
1791 fail_workaround_bo:
1792 anv_queue_finish(&device->queue);
1793 anv_scratch_pool_finish(device, &device->scratch_pool);
1794 anv_gem_munmap(device->workaround_bo.map, device->workaround_bo.size);
1795 anv_gem_close(device, device->workaround_bo.gem_handle);
1796 fail_binding_table_pool:
1797 if (physical_device->use_softpin)
1798 anv_state_pool_finish(&device->binding_table_pool);
1799 fail_surface_state_pool:
1800 anv_state_pool_finish(&device->surface_state_pool);
1801 fail_instruction_state_pool:
1802 anv_state_pool_finish(&device->instruction_state_pool);
1803 fail_dynamic_state_pool:
1804 anv_state_pool_finish(&device->dynamic_state_pool);
1805 fail_bo_cache:
1806 anv_bo_cache_finish(&device->bo_cache);
1807 fail_batch_bo_pool:
1808 anv_bo_pool_finish(&device->batch_bo_pool);
1809 pthread_cond_destroy(&device->queue_submit);
1810 fail_mutex:
1811 pthread_mutex_destroy(&device->mutex);
1812 fail_context_id:
1813 anv_gem_destroy_context(device, device->context_id);
1814 fail_fd:
1815 close(device->fd);
1816 fail_device:
1817 vk_free(&device->alloc, device);
1818
1819 return result;
1820 }
1821
1822 void anv_DestroyDevice(
1823 VkDevice _device,
1824 const VkAllocationCallbacks* pAllocator)
1825 {
1826 ANV_FROM_HANDLE(anv_device, device, _device);
1827 struct anv_physical_device *physical_device = &device->instance->physicalDevice;
1828
1829 if (!device)
1830 return;
1831
1832 anv_device_finish_blorp(device);
1833
1834 anv_pipeline_cache_finish(&device->default_pipeline_cache);
1835
1836 anv_queue_finish(&device->queue);
1837
1838 #ifdef HAVE_VALGRIND
1839 /* We only need to free these to prevent valgrind errors. The backing
1840 * BO will go away in a couple of lines so we don't actually leak.
1841 */
1842 anv_state_pool_free(&device->dynamic_state_pool, device->border_colors);
1843 #endif
1844
1845 anv_scratch_pool_finish(device, &device->scratch_pool);
1846
1847 anv_gem_munmap(device->workaround_bo.map, device->workaround_bo.size);
1848 anv_vma_free(device, &device->workaround_bo);
1849 anv_gem_close(device, device->workaround_bo.gem_handle);
1850
1851 anv_vma_free(device, &device->trivial_batch_bo);
1852 anv_gem_close(device, device->trivial_batch_bo.gem_handle);
1853 if (device->info.gen >= 10)
1854 anv_gem_close(device, device->hiz_clear_bo.gem_handle);
1855
1856 if (physical_device->use_softpin)
1857 anv_state_pool_finish(&device->binding_table_pool);
1858 anv_state_pool_finish(&device->surface_state_pool);
1859 anv_state_pool_finish(&device->instruction_state_pool);
1860 anv_state_pool_finish(&device->dynamic_state_pool);
1861
1862 anv_bo_cache_finish(&device->bo_cache);
1863
1864 anv_bo_pool_finish(&device->batch_bo_pool);
1865
1866 pthread_cond_destroy(&device->queue_submit);
1867 pthread_mutex_destroy(&device->mutex);
1868
1869 anv_gem_destroy_context(device, device->context_id);
1870
1871 close(device->fd);
1872
1873 vk_free(&device->alloc, device);
1874 }
1875
1876 VkResult anv_EnumerateInstanceLayerProperties(
1877 uint32_t* pPropertyCount,
1878 VkLayerProperties* pProperties)
1879 {
1880 if (pProperties == NULL) {
1881 *pPropertyCount = 0;
1882 return VK_SUCCESS;
1883 }
1884
1885 /* None supported at this time */
1886 return vk_error(VK_ERROR_LAYER_NOT_PRESENT);
1887 }
1888
1889 VkResult anv_EnumerateDeviceLayerProperties(
1890 VkPhysicalDevice physicalDevice,
1891 uint32_t* pPropertyCount,
1892 VkLayerProperties* pProperties)
1893 {
1894 if (pProperties == NULL) {
1895 *pPropertyCount = 0;
1896 return VK_SUCCESS;
1897 }
1898
1899 /* None supported at this time */
1900 return vk_error(VK_ERROR_LAYER_NOT_PRESENT);
1901 }
1902
1903 void anv_GetDeviceQueue(
1904 VkDevice _device,
1905 uint32_t queueNodeIndex,
1906 uint32_t queueIndex,
1907 VkQueue* pQueue)
1908 {
1909 ANV_FROM_HANDLE(anv_device, device, _device);
1910
1911 assert(queueIndex == 0);
1912
1913 *pQueue = anv_queue_to_handle(&device->queue);
1914 }
1915
1916 void anv_GetDeviceQueue2(
1917 VkDevice _device,
1918 const VkDeviceQueueInfo2* pQueueInfo,
1919 VkQueue* pQueue)
1920 {
1921 ANV_FROM_HANDLE(anv_device, device, _device);
1922
1923 assert(pQueueInfo->queueIndex == 0);
1924
1925 if (pQueueInfo->flags == device->queue.flags)
1926 *pQueue = anv_queue_to_handle(&device->queue);
1927 else
1928 *pQueue = NULL;
1929 }
1930
1931 VkResult
1932 anv_device_query_status(struct anv_device *device)
1933 {
1934 /* This isn't likely as most of the callers of this function already check
1935 * for it. However, it doesn't hurt to check and it potentially lets us
1936 * avoid an ioctl.
1937 */
1938 if (unlikely(device->lost))
1939 return VK_ERROR_DEVICE_LOST;
1940
1941 uint32_t active, pending;
1942 int ret = anv_gem_gpu_get_reset_stats(device, &active, &pending);
1943 if (ret == -1) {
1944 /* We don't know the real error. */
1945 device->lost = true;
1946 return vk_errorf(device->instance, device, VK_ERROR_DEVICE_LOST,
1947 "get_reset_stats failed: %m");
1948 }
1949
1950 if (active) {
1951 device->lost = true;
1952 return vk_errorf(device->instance, device, VK_ERROR_DEVICE_LOST,
1953 "GPU hung on one of our command buffers");
1954 } else if (pending) {
1955 device->lost = true;
1956 return vk_errorf(device->instance, device, VK_ERROR_DEVICE_LOST,
1957 "GPU hung with commands in-flight");
1958 }
1959
1960 return VK_SUCCESS;
1961 }
1962
1963 VkResult
1964 anv_device_bo_busy(struct anv_device *device, struct anv_bo *bo)
1965 {
1966 /* Note: This only returns whether or not the BO is in use by an i915 GPU.
1967 * Other usages of the BO (such as on different hardware) will not be
1968 * flagged as "busy" by this ioctl. Use with care.
1969 */
1970 int ret = anv_gem_busy(device, bo->gem_handle);
1971 if (ret == 1) {
1972 return VK_NOT_READY;
1973 } else if (ret == -1) {
1974 /* We don't know the real error. */
1975 device->lost = true;
1976 return vk_errorf(device->instance, device, VK_ERROR_DEVICE_LOST,
1977 "gem wait failed: %m");
1978 }
1979
1980 /* Query for device status after the busy call. If the BO we're checking
1981 * got caught in a GPU hang we don't want to return VK_SUCCESS to the
1982 * client because it clearly doesn't have valid data. Yes, this most
1983 * likely means an ioctl, but we just did an ioctl to query the busy status
1984 * so it's no great loss.
1985 */
1986 return anv_device_query_status(device);
1987 }
1988
1989 VkResult
1990 anv_device_wait(struct anv_device *device, struct anv_bo *bo,
1991 int64_t timeout)
1992 {
1993 int ret = anv_gem_wait(device, bo->gem_handle, &timeout);
1994 if (ret == -1 && errno == ETIME) {
1995 return VK_TIMEOUT;
1996 } else if (ret == -1) {
1997 /* We don't know the real error. */
1998 device->lost = true;
1999 return vk_errorf(device->instance, device, VK_ERROR_DEVICE_LOST,
2000 "gem wait failed: %m");
2001 }
2002
2003 /* Query for device status after the wait. If the BO we're waiting on got
2004 * caught in a GPU hang we don't want to return VK_SUCCESS to the client
2005 * because it clearly doesn't have valid data. Yes, this most likely means
2006 * an ioctl, but we just did an ioctl to wait so it's no great loss.
2007 */
2008 return anv_device_query_status(device);
2009 }
2010
2011 VkResult anv_DeviceWaitIdle(
2012 VkDevice _device)
2013 {
2014 ANV_FROM_HANDLE(anv_device, device, _device);
2015 if (unlikely(device->lost))
2016 return VK_ERROR_DEVICE_LOST;
2017
2018 struct anv_batch batch;
2019
2020 uint32_t cmds[8];
2021 batch.start = batch.next = cmds;
2022 batch.end = (void *) cmds + sizeof(cmds);
2023
2024 anv_batch_emit(&batch, GEN7_MI_BATCH_BUFFER_END, bbe);
2025 anv_batch_emit(&batch, GEN7_MI_NOOP, noop);
2026
2027 return anv_device_submit_simple_batch(device, &batch);
2028 }
2029
2030 bool
2031 anv_vma_alloc(struct anv_device *device, struct anv_bo *bo)
2032 {
2033 if (!(bo->flags & EXEC_OBJECT_PINNED))
2034 return true;
2035
2036 pthread_mutex_lock(&device->vma_mutex);
2037
2038 bo->offset = 0;
2039
2040 if (bo->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS &&
2041 device->vma_hi_available >= bo->size) {
2042 uint64_t addr = util_vma_heap_alloc(&device->vma_hi, bo->size, 4096);
2043 if (addr) {
2044 bo->offset = gen_canonical_address(addr);
2045 assert(addr == gen_48b_address(bo->offset));
2046 device->vma_hi_available -= bo->size;
2047 }
2048 }
2049
2050 if (bo->offset == 0 && device->vma_lo_available >= bo->size) {
2051 uint64_t addr = util_vma_heap_alloc(&device->vma_lo, bo->size, 4096);
2052 if (addr) {
2053 bo->offset = gen_canonical_address(addr);
2054 assert(addr == gen_48b_address(bo->offset));
2055 device->vma_lo_available -= bo->size;
2056 }
2057 }
2058
2059 pthread_mutex_unlock(&device->vma_mutex);
2060
2061 return bo->offset != 0;
2062 }
2063
2064 void
2065 anv_vma_free(struct anv_device *device, struct anv_bo *bo)
2066 {
2067 if (!(bo->flags & EXEC_OBJECT_PINNED))
2068 return;
2069
2070 const uint64_t addr_48b = gen_48b_address(bo->offset);
2071
2072 pthread_mutex_lock(&device->vma_mutex);
2073
2074 if (addr_48b >= LOW_HEAP_MIN_ADDRESS &&
2075 addr_48b <= LOW_HEAP_MAX_ADDRESS) {
2076 util_vma_heap_free(&device->vma_lo, addr_48b, bo->size);
2077 device->vma_lo_available += bo->size;
2078 } else {
2079 assert(addr_48b >= HIGH_HEAP_MIN_ADDRESS &&
2080 addr_48b <= HIGH_HEAP_MAX_ADDRESS);
2081 util_vma_heap_free(&device->vma_hi, addr_48b, bo->size);
2082 device->vma_hi_available += bo->size;
2083 }
2084
2085 pthread_mutex_unlock(&device->vma_mutex);
2086
2087 bo->offset = 0;
2088 }
2089
2090 VkResult
2091 anv_bo_init_new(struct anv_bo *bo, struct anv_device *device, uint64_t size)
2092 {
2093 uint32_t gem_handle = anv_gem_create(device, size);
2094 if (!gem_handle)
2095 return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
2096
2097 anv_bo_init(bo, gem_handle, size);
2098
2099 return VK_SUCCESS;
2100 }
2101
2102 VkResult anv_AllocateMemory(
2103 VkDevice _device,
2104 const VkMemoryAllocateInfo* pAllocateInfo,
2105 const VkAllocationCallbacks* pAllocator,
2106 VkDeviceMemory* pMem)
2107 {
2108 ANV_FROM_HANDLE(anv_device, device, _device);
2109 struct anv_physical_device *pdevice = &device->instance->physicalDevice;
2110 struct anv_device_memory *mem;
2111 VkResult result = VK_SUCCESS;
2112
2113 assert(pAllocateInfo->sType == VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO);
2114
2115 /* The Vulkan 1.0.33 spec says "allocationSize must be greater than 0". */
2116 assert(pAllocateInfo->allocationSize > 0);
2117
2118 if (pAllocateInfo->allocationSize > MAX_MEMORY_ALLOCATION_SIZE)
2119 return VK_ERROR_OUT_OF_DEVICE_MEMORY;
2120
2121 /* FINISHME: Fail if allocation request exceeds heap size. */
2122
2123 mem = vk_alloc2(&device->alloc, pAllocator, sizeof(*mem), 8,
2124 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
2125 if (mem == NULL)
2126 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
2127
2128 assert(pAllocateInfo->memoryTypeIndex < pdevice->memory.type_count);
2129 mem->type = &pdevice->memory.types[pAllocateInfo->memoryTypeIndex];
2130 mem->map = NULL;
2131 mem->map_size = 0;
2132
2133 uint64_t bo_flags = 0;
2134
2135 assert(mem->type->heapIndex < pdevice->memory.heap_count);
2136 if (pdevice->memory.heaps[mem->type->heapIndex].supports_48bit_addresses)
2137 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
2138
2139 const struct wsi_memory_allocate_info *wsi_info =
2140 vk_find_struct_const(pAllocateInfo->pNext, WSI_MEMORY_ALLOCATE_INFO_MESA);
2141 if (wsi_info && wsi_info->implicit_sync) {
2142 /* We need to set the WRITE flag on window system buffers so that GEM
2143 * will know we're writing to them and synchronize uses on other rings
2144 * (eg if the display server uses the blitter ring).
2145 */
2146 bo_flags |= EXEC_OBJECT_WRITE;
2147 } else if (pdevice->has_exec_async) {
2148 bo_flags |= EXEC_OBJECT_ASYNC;
2149 }
2150
2151 if (pdevice->use_softpin)
2152 bo_flags |= EXEC_OBJECT_PINNED;
2153
2154 const VkImportMemoryFdInfoKHR *fd_info =
2155 vk_find_struct_const(pAllocateInfo->pNext, IMPORT_MEMORY_FD_INFO_KHR);
2156
2157 /* The Vulkan spec permits handleType to be 0, in which case the struct is
2158 * ignored.
2159 */
2160 if (fd_info && fd_info->handleType) {
2161 /* At the moment, we support only the below handle types. */
2162 assert(fd_info->handleType ==
2163 VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
2164 fd_info->handleType ==
2165 VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
2166
2167 result = anv_bo_cache_import(device, &device->bo_cache,
2168 fd_info->fd, bo_flags, &mem->bo);
2169 if (result != VK_SUCCESS)
2170 goto fail;
2171
2172 VkDeviceSize aligned_alloc_size =
2173 align_u64(pAllocateInfo->allocationSize, 4096);
2174
2175 /* For security purposes, we reject importing the bo if it's smaller
2176 * than the requested allocation size. This prevents a malicious client
2177 * from passing a buffer to a trusted client, lying about the size, and
2178 * telling the trusted client to try and texture from an image that goes
2179 * out-of-bounds. This sort of thing could lead to GPU hangs or worse
2180 * in the trusted client. The trusted client can protect itself against
2181 * this sort of attack but only if it can trust the buffer size.
2182 */
2183 if (mem->bo->size < aligned_alloc_size) {
2184 result = vk_errorf(device->instance, device,
2185 VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR,
2186 "aligned allocationSize too large for "
2187 "VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR: "
2188 "%"PRIu64"B > %"PRIu64"B",
2189 aligned_alloc_size, mem->bo->size);
2190 anv_bo_cache_release(device, &device->bo_cache, mem->bo);
2191 goto fail;
2192 }
2193
2194 /* From the Vulkan spec:
2195 *
2196 * "Importing memory from a file descriptor transfers ownership of
2197 * the file descriptor from the application to the Vulkan
2198 * implementation. The application must not perform any operations on
2199 * the file descriptor after a successful import."
2200 *
2201 * If the import fails, we leave the file descriptor open.
2202 */
2203 close(fd_info->fd);
2204 } else {
2205 result = anv_bo_cache_alloc(device, &device->bo_cache,
2206 pAllocateInfo->allocationSize, bo_flags,
2207 &mem->bo);
2208 if (result != VK_SUCCESS)
2209 goto fail;
2210
2211 const VkMemoryDedicatedAllocateInfoKHR *dedicated_info =
2212 vk_find_struct_const(pAllocateInfo->pNext, MEMORY_DEDICATED_ALLOCATE_INFO_KHR);
2213 if (dedicated_info && dedicated_info->image != VK_NULL_HANDLE) {
2214 ANV_FROM_HANDLE(anv_image, image, dedicated_info->image);
2215
2216 /* Some legacy (non-modifiers) consumers need the tiling to be set on
2217 * the BO. In this case, we have a dedicated allocation.
2218 */
2219 if (image->needs_set_tiling) {
2220 const uint32_t i915_tiling =
2221 isl_tiling_to_i915_tiling(image->planes[0].surface.isl.tiling);
2222 int ret = anv_gem_set_tiling(device, mem->bo->gem_handle,
2223 image->planes[0].surface.isl.row_pitch,
2224 i915_tiling);
2225 if (ret) {
2226 anv_bo_cache_release(device, &device->bo_cache, mem->bo);
2227 return vk_errorf(device->instance, NULL,
2228 VK_ERROR_OUT_OF_DEVICE_MEMORY,
2229 "failed to set BO tiling: %m");
2230 }
2231 }
2232 }
2233 }
2234
2235 *pMem = anv_device_memory_to_handle(mem);
2236
2237 return VK_SUCCESS;
2238
2239 fail:
2240 vk_free2(&device->alloc, pAllocator, mem);
2241
2242 return result;
2243 }
2244
2245 VkResult anv_GetMemoryFdKHR(
2246 VkDevice device_h,
2247 const VkMemoryGetFdInfoKHR* pGetFdInfo,
2248 int* pFd)
2249 {
2250 ANV_FROM_HANDLE(anv_device, dev, device_h);
2251 ANV_FROM_HANDLE(anv_device_memory, mem, pGetFdInfo->memory);
2252
2253 assert(pGetFdInfo->sType == VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR);
2254
2255 assert(pGetFdInfo->handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
2256 pGetFdInfo->handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
2257
2258 return anv_bo_cache_export(dev, &dev->bo_cache, mem->bo, pFd);
2259 }
2260
2261 VkResult anv_GetMemoryFdPropertiesKHR(
2262 VkDevice _device,
2263 VkExternalMemoryHandleTypeFlagBitsKHR handleType,
2264 int fd,
2265 VkMemoryFdPropertiesKHR* pMemoryFdProperties)
2266 {
2267 ANV_FROM_HANDLE(anv_device, device, _device);
2268 struct anv_physical_device *pdevice = &device->instance->physicalDevice;
2269
2270 switch (handleType) {
2271 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT:
2272 /* dma-buf can be imported as any memory type */
2273 pMemoryFdProperties->memoryTypeBits =
2274 (1 << pdevice->memory.type_count) - 1;
2275 return VK_SUCCESS;
2276
2277 default:
2278 /* The valid usage section for this function says:
2279 *
2280 * "handleType must not be one of the handle types defined as
2281 * opaque."
2282 *
2283 * So opaque handle types fall into the default "unsupported" case.
2284 */
2285 return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE);
2286 }
2287 }
2288
2289 void anv_FreeMemory(
2290 VkDevice _device,
2291 VkDeviceMemory _mem,
2292 const VkAllocationCallbacks* pAllocator)
2293 {
2294 ANV_FROM_HANDLE(anv_device, device, _device);
2295 ANV_FROM_HANDLE(anv_device_memory, mem, _mem);
2296
2297 if (mem == NULL)
2298 return;
2299
2300 if (mem->map)
2301 anv_UnmapMemory(_device, _mem);
2302
2303 anv_bo_cache_release(device, &device->bo_cache, mem->bo);
2304
2305 vk_free2(&device->alloc, pAllocator, mem);
2306 }
2307
2308 VkResult anv_MapMemory(
2309 VkDevice _device,
2310 VkDeviceMemory _memory,
2311 VkDeviceSize offset,
2312 VkDeviceSize size,
2313 VkMemoryMapFlags flags,
2314 void** ppData)
2315 {
2316 ANV_FROM_HANDLE(anv_device, device, _device);
2317 ANV_FROM_HANDLE(anv_device_memory, mem, _memory);
2318
2319 if (mem == NULL) {
2320 *ppData = NULL;
2321 return VK_SUCCESS;
2322 }
2323
2324 if (size == VK_WHOLE_SIZE)
2325 size = mem->bo->size - offset;
2326
2327 /* From the Vulkan spec version 1.0.32 docs for MapMemory:
2328 *
2329 * * If size is not equal to VK_WHOLE_SIZE, size must be greater than 0
2330 * assert(size != 0);
2331 * * If size is not equal to VK_WHOLE_SIZE, size must be less than or
2332 * equal to the size of the memory minus offset
2333 */
2334 assert(size > 0);
2335 assert(offset + size <= mem->bo->size);
2336
2337 /* FIXME: Is this supposed to be thread safe? Since vkUnmapMemory() only
2338 * takes a VkDeviceMemory pointer, it seems like only one map of the memory
2339 * at a time is valid. We could just mmap up front and return an offset
2340 * pointer here, but that may exhaust virtual memory on 32 bit
2341 * userspace. */
2342
2343 uint32_t gem_flags = 0;
2344
2345 if (!device->info.has_llc &&
2346 (mem->type->propertyFlags & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT))
2347 gem_flags |= I915_MMAP_WC;
2348
2349 /* GEM will fail to map if the offset isn't 4k-aligned. Round down. */
2350 uint64_t map_offset = offset & ~4095ull;
2351 assert(offset >= map_offset);
2352 uint64_t map_size = (offset + size) - map_offset;
2353
2354 /* Let's map whole pages */
2355 map_size = align_u64(map_size, 4096);
2356
2357 void *map = anv_gem_mmap(device, mem->bo->gem_handle,
2358 map_offset, map_size, gem_flags);
2359 if (map == MAP_FAILED)
2360 return vk_error(VK_ERROR_MEMORY_MAP_FAILED);
2361
2362 mem->map = map;
2363 mem->map_size = map_size;
2364
2365 *ppData = mem->map + (offset - map_offset);
2366
2367 return VK_SUCCESS;
2368 }
2369
2370 void anv_UnmapMemory(
2371 VkDevice _device,
2372 VkDeviceMemory _memory)
2373 {
2374 ANV_FROM_HANDLE(anv_device_memory, mem, _memory);
2375
2376 if (mem == NULL)
2377 return;
2378
2379 anv_gem_munmap(mem->map, mem->map_size);
2380
2381 mem->map = NULL;
2382 mem->map_size = 0;
2383 }
2384
2385 static void
2386 clflush_mapped_ranges(struct anv_device *device,
2387 uint32_t count,
2388 const VkMappedMemoryRange *ranges)
2389 {
2390 for (uint32_t i = 0; i < count; i++) {
2391 ANV_FROM_HANDLE(anv_device_memory, mem, ranges[i].memory);
2392 if (ranges[i].offset >= mem->map_size)
2393 continue;
2394
2395 gen_clflush_range(mem->map + ranges[i].offset,
2396 MIN2(ranges[i].size, mem->map_size - ranges[i].offset));
2397 }
2398 }
2399
2400 VkResult anv_FlushMappedMemoryRanges(
2401 VkDevice _device,
2402 uint32_t memoryRangeCount,
2403 const VkMappedMemoryRange* pMemoryRanges)
2404 {
2405 ANV_FROM_HANDLE(anv_device, device, _device);
2406
2407 if (device->info.has_llc)
2408 return VK_SUCCESS;
2409
2410 /* Make sure the writes we're flushing have landed. */
2411 __builtin_ia32_mfence();
2412
2413 clflush_mapped_ranges(device, memoryRangeCount, pMemoryRanges);
2414
2415 return VK_SUCCESS;
2416 }
2417
2418 VkResult anv_InvalidateMappedMemoryRanges(
2419 VkDevice _device,
2420 uint32_t memoryRangeCount,
2421 const VkMappedMemoryRange* pMemoryRanges)
2422 {
2423 ANV_FROM_HANDLE(anv_device, device, _device);
2424
2425 if (device->info.has_llc)
2426 return VK_SUCCESS;
2427
2428 clflush_mapped_ranges(device, memoryRangeCount, pMemoryRanges);
2429
2430 /* Make sure no reads get moved up above the invalidate. */
2431 __builtin_ia32_mfence();
2432
2433 return VK_SUCCESS;
2434 }
2435
2436 void anv_GetBufferMemoryRequirements(
2437 VkDevice _device,
2438 VkBuffer _buffer,
2439 VkMemoryRequirements* pMemoryRequirements)
2440 {
2441 ANV_FROM_HANDLE(anv_buffer, buffer, _buffer);
2442 ANV_FROM_HANDLE(anv_device, device, _device);
2443 struct anv_physical_device *pdevice = &device->instance->physicalDevice;
2444
2445 /* The Vulkan spec (git aaed022) says:
2446 *
2447 * memoryTypeBits is a bitfield and contains one bit set for every
2448 * supported memory type for the resource. The bit `1<<i` is set if and
2449 * only if the memory type `i` in the VkPhysicalDeviceMemoryProperties
2450 * structure for the physical device is supported.
2451 */
2452 uint32_t memory_types = 0;
2453 for (uint32_t i = 0; i < pdevice->memory.type_count; i++) {
2454 uint32_t valid_usage = pdevice->memory.types[i].valid_buffer_usage;
2455 if ((valid_usage & buffer->usage) == buffer->usage)
2456 memory_types |= (1u << i);
2457 }
2458
2459 /* Base alignment requirement of a cache line */
2460 uint32_t alignment = 16;
2461
2462 /* We need an alignment of 32 for pushing UBOs */
2463 if (buffer->usage & VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT)
2464 alignment = MAX2(alignment, 32);
2465
2466 pMemoryRequirements->size = buffer->size;
2467 pMemoryRequirements->alignment = alignment;
2468
2469 /* Storage and Uniform buffers should have their size aligned to
2470 * 32-bits to avoid boundary checks when last DWord is not complete.
2471 * This would ensure that not internal padding would be needed for
2472 * 16-bit types.
2473 */
2474 if (device->robust_buffer_access &&
2475 (buffer->usage & VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT ||
2476 buffer->usage & VK_BUFFER_USAGE_STORAGE_BUFFER_BIT))
2477 pMemoryRequirements->size = align_u64(buffer->size, 4);
2478
2479 pMemoryRequirements->memoryTypeBits = memory_types;
2480 }
2481
2482 void anv_GetBufferMemoryRequirements2(
2483 VkDevice _device,
2484 const VkBufferMemoryRequirementsInfo2* pInfo,
2485 VkMemoryRequirements2* pMemoryRequirements)
2486 {
2487 anv_GetBufferMemoryRequirements(_device, pInfo->buffer,
2488 &pMemoryRequirements->memoryRequirements);
2489
2490 vk_foreach_struct(ext, pMemoryRequirements->pNext) {
2491 switch (ext->sType) {
2492 case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS: {
2493 VkMemoryDedicatedRequirements *requirements = (void *)ext;
2494 requirements->prefersDedicatedAllocation = VK_FALSE;
2495 requirements->requiresDedicatedAllocation = VK_FALSE;
2496 break;
2497 }
2498
2499 default:
2500 anv_debug_ignored_stype(ext->sType);
2501 break;
2502 }
2503 }
2504 }
2505
2506 void anv_GetImageMemoryRequirements(
2507 VkDevice _device,
2508 VkImage _image,
2509 VkMemoryRequirements* pMemoryRequirements)
2510 {
2511 ANV_FROM_HANDLE(anv_image, image, _image);
2512 ANV_FROM_HANDLE(anv_device, device, _device);
2513 struct anv_physical_device *pdevice = &device->instance->physicalDevice;
2514
2515 /* The Vulkan spec (git aaed022) says:
2516 *
2517 * memoryTypeBits is a bitfield and contains one bit set for every
2518 * supported memory type for the resource. The bit `1<<i` is set if and
2519 * only if the memory type `i` in the VkPhysicalDeviceMemoryProperties
2520 * structure for the physical device is supported.
2521 *
2522 * All types are currently supported for images.
2523 */
2524 uint32_t memory_types = (1ull << pdevice->memory.type_count) - 1;
2525
2526 pMemoryRequirements->size = image->size;
2527 pMemoryRequirements->alignment = image->alignment;
2528 pMemoryRequirements->memoryTypeBits = memory_types;
2529 }
2530
2531 void anv_GetImageMemoryRequirements2(
2532 VkDevice _device,
2533 const VkImageMemoryRequirementsInfo2* pInfo,
2534 VkMemoryRequirements2* pMemoryRequirements)
2535 {
2536 ANV_FROM_HANDLE(anv_device, device, _device);
2537 ANV_FROM_HANDLE(anv_image, image, pInfo->image);
2538
2539 anv_GetImageMemoryRequirements(_device, pInfo->image,
2540 &pMemoryRequirements->memoryRequirements);
2541
2542 vk_foreach_struct_const(ext, pInfo->pNext) {
2543 switch (ext->sType) {
2544 case VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO: {
2545 struct anv_physical_device *pdevice = &device->instance->physicalDevice;
2546 const VkImagePlaneMemoryRequirementsInfoKHR *plane_reqs =
2547 (const VkImagePlaneMemoryRequirementsInfoKHR *) ext;
2548 uint32_t plane = anv_image_aspect_to_plane(image->aspects,
2549 plane_reqs->planeAspect);
2550
2551 assert(image->planes[plane].offset == 0);
2552
2553 /* The Vulkan spec (git aaed022) says:
2554 *
2555 * memoryTypeBits is a bitfield and contains one bit set for every
2556 * supported memory type for the resource. The bit `1<<i` is set
2557 * if and only if the memory type `i` in the
2558 * VkPhysicalDeviceMemoryProperties structure for the physical
2559 * device is supported.
2560 *
2561 * All types are currently supported for images.
2562 */
2563 pMemoryRequirements->memoryRequirements.memoryTypeBits =
2564 (1ull << pdevice->memory.type_count) - 1;
2565
2566 pMemoryRequirements->memoryRequirements.size = image->planes[plane].size;
2567 pMemoryRequirements->memoryRequirements.alignment =
2568 image->planes[plane].alignment;
2569 break;
2570 }
2571
2572 default:
2573 anv_debug_ignored_stype(ext->sType);
2574 break;
2575 }
2576 }
2577
2578 vk_foreach_struct(ext, pMemoryRequirements->pNext) {
2579 switch (ext->sType) {
2580 case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS: {
2581 VkMemoryDedicatedRequirements *requirements = (void *)ext;
2582 if (image->needs_set_tiling) {
2583 /* If we need to set the tiling for external consumers, we need a
2584 * dedicated allocation.
2585 *
2586 * See also anv_AllocateMemory.
2587 */
2588 requirements->prefersDedicatedAllocation = VK_TRUE;
2589 requirements->requiresDedicatedAllocation = VK_TRUE;
2590 } else {
2591 requirements->prefersDedicatedAllocation = VK_FALSE;
2592 requirements->requiresDedicatedAllocation = VK_FALSE;
2593 }
2594 break;
2595 }
2596
2597 default:
2598 anv_debug_ignored_stype(ext->sType);
2599 break;
2600 }
2601 }
2602 }
2603
2604 void anv_GetImageSparseMemoryRequirements(
2605 VkDevice device,
2606 VkImage image,
2607 uint32_t* pSparseMemoryRequirementCount,
2608 VkSparseImageMemoryRequirements* pSparseMemoryRequirements)
2609 {
2610 *pSparseMemoryRequirementCount = 0;
2611 }
2612
2613 void anv_GetImageSparseMemoryRequirements2(
2614 VkDevice device,
2615 const VkImageSparseMemoryRequirementsInfo2* pInfo,
2616 uint32_t* pSparseMemoryRequirementCount,
2617 VkSparseImageMemoryRequirements2* pSparseMemoryRequirements)
2618 {
2619 *pSparseMemoryRequirementCount = 0;
2620 }
2621
2622 void anv_GetDeviceMemoryCommitment(
2623 VkDevice device,
2624 VkDeviceMemory memory,
2625 VkDeviceSize* pCommittedMemoryInBytes)
2626 {
2627 *pCommittedMemoryInBytes = 0;
2628 }
2629
2630 static void
2631 anv_bind_buffer_memory(const VkBindBufferMemoryInfo *pBindInfo)
2632 {
2633 ANV_FROM_HANDLE(anv_device_memory, mem, pBindInfo->memory);
2634 ANV_FROM_HANDLE(anv_buffer, buffer, pBindInfo->buffer);
2635
2636 assert(pBindInfo->sType == VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO);
2637
2638 if (mem) {
2639 assert((buffer->usage & mem->type->valid_buffer_usage) == buffer->usage);
2640 buffer->address = (struct anv_address) {
2641 .bo = mem->bo,
2642 .offset = pBindInfo->memoryOffset,
2643 };
2644 } else {
2645 buffer->address = ANV_NULL_ADDRESS;
2646 }
2647 }
2648
2649 VkResult anv_BindBufferMemory(
2650 VkDevice device,
2651 VkBuffer buffer,
2652 VkDeviceMemory memory,
2653 VkDeviceSize memoryOffset)
2654 {
2655 anv_bind_buffer_memory(
2656 &(VkBindBufferMemoryInfo) {
2657 .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO,
2658 .buffer = buffer,
2659 .memory = memory,
2660 .memoryOffset = memoryOffset,
2661 });
2662
2663 return VK_SUCCESS;
2664 }
2665
2666 VkResult anv_BindBufferMemory2(
2667 VkDevice device,
2668 uint32_t bindInfoCount,
2669 const VkBindBufferMemoryInfo* pBindInfos)
2670 {
2671 for (uint32_t i = 0; i < bindInfoCount; i++)
2672 anv_bind_buffer_memory(&pBindInfos[i]);
2673
2674 return VK_SUCCESS;
2675 }
2676
2677 VkResult anv_QueueBindSparse(
2678 VkQueue _queue,
2679 uint32_t bindInfoCount,
2680 const VkBindSparseInfo* pBindInfo,
2681 VkFence fence)
2682 {
2683 ANV_FROM_HANDLE(anv_queue, queue, _queue);
2684 if (unlikely(queue->device->lost))
2685 return VK_ERROR_DEVICE_LOST;
2686
2687 return vk_error(VK_ERROR_FEATURE_NOT_PRESENT);
2688 }
2689
2690 // Event functions
2691
2692 VkResult anv_CreateEvent(
2693 VkDevice _device,
2694 const VkEventCreateInfo* pCreateInfo,
2695 const VkAllocationCallbacks* pAllocator,
2696 VkEvent* pEvent)
2697 {
2698 ANV_FROM_HANDLE(anv_device, device, _device);
2699 struct anv_state state;
2700 struct anv_event *event;
2701
2702 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_EVENT_CREATE_INFO);
2703
2704 state = anv_state_pool_alloc(&device->dynamic_state_pool,
2705 sizeof(*event), 8);
2706 event = state.map;
2707 event->state = state;
2708 event->semaphore = VK_EVENT_RESET;
2709
2710 if (!device->info.has_llc) {
2711 /* Make sure the writes we're flushing have landed. */
2712 __builtin_ia32_mfence();
2713 __builtin_ia32_clflush(event);
2714 }
2715
2716 *pEvent = anv_event_to_handle(event);
2717
2718 return VK_SUCCESS;
2719 }
2720
2721 void anv_DestroyEvent(
2722 VkDevice _device,
2723 VkEvent _event,
2724 const VkAllocationCallbacks* pAllocator)
2725 {
2726 ANV_FROM_HANDLE(anv_device, device, _device);
2727 ANV_FROM_HANDLE(anv_event, event, _event);
2728
2729 if (!event)
2730 return;
2731
2732 anv_state_pool_free(&device->dynamic_state_pool, event->state);
2733 }
2734
2735 VkResult anv_GetEventStatus(
2736 VkDevice _device,
2737 VkEvent _event)
2738 {
2739 ANV_FROM_HANDLE(anv_device, device, _device);
2740 ANV_FROM_HANDLE(anv_event, event, _event);
2741
2742 if (unlikely(device->lost))
2743 return VK_ERROR_DEVICE_LOST;
2744
2745 if (!device->info.has_llc) {
2746 /* Invalidate read cache before reading event written by GPU. */
2747 __builtin_ia32_clflush(event);
2748 __builtin_ia32_mfence();
2749
2750 }
2751
2752 return event->semaphore;
2753 }
2754
2755 VkResult anv_SetEvent(
2756 VkDevice _device,
2757 VkEvent _event)
2758 {
2759 ANV_FROM_HANDLE(anv_device, device, _device);
2760 ANV_FROM_HANDLE(anv_event, event, _event);
2761
2762 event->semaphore = VK_EVENT_SET;
2763
2764 if (!device->info.has_llc) {
2765 /* Make sure the writes we're flushing have landed. */
2766 __builtin_ia32_mfence();
2767 __builtin_ia32_clflush(event);
2768 }
2769
2770 return VK_SUCCESS;
2771 }
2772
2773 VkResult anv_ResetEvent(
2774 VkDevice _device,
2775 VkEvent _event)
2776 {
2777 ANV_FROM_HANDLE(anv_device, device, _device);
2778 ANV_FROM_HANDLE(anv_event, event, _event);
2779
2780 event->semaphore = VK_EVENT_RESET;
2781
2782 if (!device->info.has_llc) {
2783 /* Make sure the writes we're flushing have landed. */
2784 __builtin_ia32_mfence();
2785 __builtin_ia32_clflush(event);
2786 }
2787
2788 return VK_SUCCESS;
2789 }
2790
2791 // Buffer functions
2792
2793 VkResult anv_CreateBuffer(
2794 VkDevice _device,
2795 const VkBufferCreateInfo* pCreateInfo,
2796 const VkAllocationCallbacks* pAllocator,
2797 VkBuffer* pBuffer)
2798 {
2799 ANV_FROM_HANDLE(anv_device, device, _device);
2800 struct anv_buffer *buffer;
2801
2802 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO);
2803
2804 buffer = vk_alloc2(&device->alloc, pAllocator, sizeof(*buffer), 8,
2805 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
2806 if (buffer == NULL)
2807 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
2808
2809 buffer->size = pCreateInfo->size;
2810 buffer->usage = pCreateInfo->usage;
2811 buffer->address = ANV_NULL_ADDRESS;
2812
2813 *pBuffer = anv_buffer_to_handle(buffer);
2814
2815 return VK_SUCCESS;
2816 }
2817
2818 void anv_DestroyBuffer(
2819 VkDevice _device,
2820 VkBuffer _buffer,
2821 const VkAllocationCallbacks* pAllocator)
2822 {
2823 ANV_FROM_HANDLE(anv_device, device, _device);
2824 ANV_FROM_HANDLE(anv_buffer, buffer, _buffer);
2825
2826 if (!buffer)
2827 return;
2828
2829 vk_free2(&device->alloc, pAllocator, buffer);
2830 }
2831
2832 void
2833 anv_fill_buffer_surface_state(struct anv_device *device, struct anv_state state,
2834 enum isl_format format,
2835 struct anv_address address,
2836 uint32_t range, uint32_t stride)
2837 {
2838 isl_buffer_fill_state(&device->isl_dev, state.map,
2839 .address = anv_address_physical(address),
2840 .mocs = device->default_mocs,
2841 .size = range,
2842 .format = format,
2843 .stride = stride);
2844
2845 anv_state_flush(device, state);
2846 }
2847
2848 void anv_DestroySampler(
2849 VkDevice _device,
2850 VkSampler _sampler,
2851 const VkAllocationCallbacks* pAllocator)
2852 {
2853 ANV_FROM_HANDLE(anv_device, device, _device);
2854 ANV_FROM_HANDLE(anv_sampler, sampler, _sampler);
2855
2856 if (!sampler)
2857 return;
2858
2859 vk_free2(&device->alloc, pAllocator, sampler);
2860 }
2861
2862 VkResult anv_CreateFramebuffer(
2863 VkDevice _device,
2864 const VkFramebufferCreateInfo* pCreateInfo,
2865 const VkAllocationCallbacks* pAllocator,
2866 VkFramebuffer* pFramebuffer)
2867 {
2868 ANV_FROM_HANDLE(anv_device, device, _device);
2869 struct anv_framebuffer *framebuffer;
2870
2871 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO);
2872
2873 size_t size = sizeof(*framebuffer) +
2874 sizeof(struct anv_image_view *) * pCreateInfo->attachmentCount;
2875 framebuffer = vk_alloc2(&device->alloc, pAllocator, size, 8,
2876 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
2877 if (framebuffer == NULL)
2878 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
2879
2880 framebuffer->attachment_count = pCreateInfo->attachmentCount;
2881 for (uint32_t i = 0; i < pCreateInfo->attachmentCount; i++) {
2882 VkImageView _iview = pCreateInfo->pAttachments[i];
2883 framebuffer->attachments[i] = anv_image_view_from_handle(_iview);
2884 }
2885
2886 framebuffer->width = pCreateInfo->width;
2887 framebuffer->height = pCreateInfo->height;
2888 framebuffer->layers = pCreateInfo->layers;
2889
2890 *pFramebuffer = anv_framebuffer_to_handle(framebuffer);
2891
2892 return VK_SUCCESS;
2893 }
2894
2895 void anv_DestroyFramebuffer(
2896 VkDevice _device,
2897 VkFramebuffer _fb,
2898 const VkAllocationCallbacks* pAllocator)
2899 {
2900 ANV_FROM_HANDLE(anv_device, device, _device);
2901 ANV_FROM_HANDLE(anv_framebuffer, fb, _fb);
2902
2903 if (!fb)
2904 return;
2905
2906 vk_free2(&device->alloc, pAllocator, fb);
2907 }
2908
2909 /* vk_icd.h does not declare this function, so we declare it here to
2910 * suppress Wmissing-prototypes.
2911 */
2912 PUBLIC VKAPI_ATTR VkResult VKAPI_CALL
2913 vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pSupportedVersion);
2914
2915 PUBLIC VKAPI_ATTR VkResult VKAPI_CALL
2916 vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t* pSupportedVersion)
2917 {
2918 /* For the full details on loader interface versioning, see
2919 * <https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/blob/master/loader/LoaderAndLayerInterface.md>.
2920 * What follows is a condensed summary, to help you navigate the large and
2921 * confusing official doc.
2922 *
2923 * - Loader interface v0 is incompatible with later versions. We don't
2924 * support it.
2925 *
2926 * - In loader interface v1:
2927 * - The first ICD entrypoint called by the loader is
2928 * vk_icdGetInstanceProcAddr(). The ICD must statically expose this
2929 * entrypoint.
2930 * - The ICD must statically expose no other Vulkan symbol unless it is
2931 * linked with -Bsymbolic.
2932 * - Each dispatchable Vulkan handle created by the ICD must be
2933 * a pointer to a struct whose first member is VK_LOADER_DATA. The
2934 * ICD must initialize VK_LOADER_DATA.loadMagic to ICD_LOADER_MAGIC.
2935 * - The loader implements vkCreate{PLATFORM}SurfaceKHR() and
2936 * vkDestroySurfaceKHR(). The ICD must be capable of working with
2937 * such loader-managed surfaces.
2938 *
2939 * - Loader interface v2 differs from v1 in:
2940 * - The first ICD entrypoint called by the loader is
2941 * vk_icdNegotiateLoaderICDInterfaceVersion(). The ICD must
2942 * statically expose this entrypoint.
2943 *
2944 * - Loader interface v3 differs from v2 in:
2945 * - The ICD must implement vkCreate{PLATFORM}SurfaceKHR(),
2946 * vkDestroySurfaceKHR(), and other API which uses VKSurfaceKHR,
2947 * because the loader no longer does so.
2948 */
2949 *pSupportedVersion = MIN2(*pSupportedVersion, 3u);
2950 return VK_SUCCESS;
2951 }