blob: d40952e321ce020f8475389bb9dc43f37cfc3ca2 [file] [log] [blame]
Chia-I Wuc1e0f962014-08-04 08:03:57 +08001/*
Chia-I Wuc1e0f962014-08-04 08:03:57 +08002 *
Jon Ashburn1c75aec2016-02-02 17:47:28 -07003 * Copyright (c) 2014-2016 The Khronos Group Inc.
4 * Copyright (c) 2014-2016 Valve Corporation
5 * Copyright (c) 2014-2016 LunarG, Inc.
Courtney Goeltzenleuchter8e1b8d92015-12-02 14:53:22 -07006 * Copyright (C) 2015 Google Inc.
Chia-I Wuc1e0f962014-08-04 08:03:57 +08007 *
Jon Ashburn1c75aec2016-02-02 17:47:28 -07008 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and/or associated documentation files (the "Materials"), to
10 * deal in the Materials without restriction, including without limitation the
11 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12 * sell copies of the Materials, and to permit persons to whom the Materials are
13 * furnished to do so, subject to the following conditions:
Chia-I Wuc1e0f962014-08-04 08:03:57 +080014 *
Jon Ashburn1c75aec2016-02-02 17:47:28 -070015 * The above copyright notice(s) and this permission notice shall be included in
16 * all copies or substantial portions of the Materials.
Chia-I Wuc1e0f962014-08-04 08:03:57 +080017 *
Jon Ashburn1c75aec2016-02-02 17:47:28 -070018 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Chia-I Wuc1e0f962014-08-04 08:03:57 +080019 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Jon Ashburn1c75aec2016-02-02 17:47:28 -070020 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
Chia-I Wud8ab1e62014-09-02 08:32:09 +080021 *
Jon Ashburn1c75aec2016-02-02 17:47:28 -070022 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE
25 * USE OR OTHER DEALINGS IN THE MATERIALS.
26 *
27 * Author: Jon Ashburn <jon@lunarg.com>
28 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060029 * Author: Chia-I Wu <olvaffe@gmail.com>
30 * Author: Chia-I Wu <olv@lunarg.com>
Jon Ashburn1c75aec2016-02-02 17:47:28 -070031 * Author: Mark Lobodzinski <mark@LunarG.com>
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060032 *
Chia-I Wuc1e0f962014-08-04 08:03:57 +080033 */
34
35#ifndef LOADER_H
36#define LOADER_H
37
David Pinedoa5036622015-11-06 12:54:48 -070038#include <vulkan/vulkan.h>
Jon Ashburn3708e792015-11-06 11:02:40 -070039#include <vk_loader_platform.h>
Ian Elliottafaf1852015-11-17 17:29:40 -070040
Ian Elliotta77fed72015-11-18 14:57:08 -070041
David Pinedoa5036622015-11-06 12:54:48 -070042#include <vulkan/vk_layer.h>
43#include <vulkan/vk_icd.h>
Chia-I Wufe333ed2015-04-11 15:34:07 +080044#include <assert.h>
45
Chia-I Wuc1e0f962014-08-04 08:03:57 +080046#if defined(__GNUC__) && __GNUC__ >= 4
Jon Ashburn1c75aec2016-02-02 17:47:28 -070047#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080048#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
Jon Ashburn1c75aec2016-02-02 17:47:28 -070049#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080050#else
Jon Ashburn1c75aec2016-02-02 17:47:28 -070051#define LOADER_EXPORT
Chia-I Wuc1e0f962014-08-04 08:03:57 +080052#endif
53
Jon Ashburnb2379c52015-08-04 10:22:33 -060054#define MAX_STRING_SIZE 1024
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -060055#define VK_MAJOR(version) (version >> 22)
56#define VK_MINOR(version) ((version >> 12) & 0x3ff)
57#define VK_PATCH(version) (version & 0xfff)
Jon Ashburn13482452015-05-12 17:26:48 -060058
Jon Ashburn399c9162015-07-02 09:40:15 -060059enum layer_type {
Jon Ashburn9464e772015-07-02 16:10:32 -060060 VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1,
61 VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2,
Jon Ashburnd1eb3322016-02-10 20:59:26 -070062 VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // instance and device layer, bitwise
Jon Ashburn9464e772015-07-02 16:10:32 -060063 VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4,
64 VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8,
Jon Ashburnd1eb3322016-02-10 20:59:26 -070065 VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // instance and device layer, bitwise
66 VK_LAYER_TYPE_META_EXPLICT = 0x10,
Jon Ashburn399c9162015-07-02 09:40:15 -060067};
68
Mark Lobodzinski8d325802016-02-02 18:53:34 -070069typedef enum VkStringErrorFlagBits {
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070070 VK_STRING_ERROR_NONE = 0x00000000,
71 VK_STRING_ERROR_LENGTH = 0x00000001,
72 VK_STRING_ERROR_BAD_DATA = 0x00000002,
Mark Lobodzinski8d325802016-02-02 18:53:34 -070073} VkStringErrorFlagBits;
74typedef VkFlags VkStringErrorFlags;
75
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070076static const int MaxLoaderStringLength = 256;
77static const char UTF8_ONE_BYTE_CODE = 0xC0;
78static const char UTF8_ONE_BYTE_MASK = 0xE0;
79static const char UTF8_TWO_BYTE_CODE = 0xE0;
80static const char UTF8_TWO_BYTE_MASK = 0xF0;
81static const char UTF8_THREE_BYTE_CODE = 0xF0;
82static const char UTF8_THREE_BYTE_MASK = 0xF8;
83static const char UTF8_DATA_BYTE_CODE = 0x80;
84static const char UTF8_DATA_BYTE_MASK = 0xC0;
Mark Lobodzinski8d325802016-02-02 18:53:34 -070085
Jon Ashburnd1eb3322016-02-10 20:59:26 -070086static const char std_validation_names[9][VK_MAX_EXTENSION_NAME_SIZE] = {
87 "VK_LAYER_LUNARG_threading", "VK_LAYER_LUNARG_param_checker",
88 "VK_LAYER_LUNARG_device_limits", "VK_LAYER_LUNARG_object_tracker",
89 "VK_LAYER_LUNARG_image", "VK_LAYER_LUNARG_mem_tracker",
90 "VK_LAYER_LUNARG_draw_state", "VK_LAYER_LUNARG_swapchain",
91 "VK_LAYER_GOOGLE_unique_objects"};
92
Jon Ashburn6b00b472015-12-10 08:51:10 -070093// form of all dynamic lists/arrays
94// only the list element should be changed
95struct loader_generic_list {
96 size_t capacity;
97 uint32_t count;
98 void *list;
99};
100
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600101struct loader_extension_list {
102 size_t capacity;
103 uint32_t count;
Jon Ashburnb7d327c2015-08-04 11:14:18 -0600104 VkExtensionProperties *list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600105};
106
Jon Ashburn92cdb012015-12-10 18:17:34 -0700107struct loader_dev_ext_props {
108 VkExtensionProperties props;
109 uint32_t entrypoint_count;
110 char **entrypoints;
111};
112
113struct loader_device_extension_list {
114 size_t capacity;
115 uint32_t count;
116 struct loader_dev_ext_props *list;
117};
118
Jon Ashburn399c9162015-07-02 09:40:15 -0600119struct loader_name_value {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600120 char name[MAX_STRING_SIZE];
121 char value[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600122};
123
124struct loader_lib_info {
Jon Ashburnb4c24232015-08-20 16:35:30 -0600125 char lib_name[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600126 uint32_t ref_count;
127 loader_platform_dl_handle lib_handle;
128};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600129
Jon Ashburn399c9162015-07-02 09:40:15 -0600130struct loader_layer_functions {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600131 char str_gipa[MAX_STRING_SIZE];
132 char str_gdpa[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600133 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
134 PFN_vkGetDeviceProcAddr get_device_proc_addr;
135};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600136
Jon Ashburn399c9162015-07-02 09:40:15 -0600137struct loader_layer_properties {
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600138 VkLayerProperties info;
Jon Ashburn399c9162015-07-02 09:40:15 -0600139 enum layer_type type;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600140 char lib_name[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600141 struct loader_layer_functions functions;
142 struct loader_extension_list instance_extension_list;
Jon Ashburn92cdb012015-12-10 18:17:34 -0700143 struct loader_device_extension_list device_extension_list;
Jon Ashburn399c9162015-07-02 09:40:15 -0600144 struct loader_name_value disable_env_var;
145 struct loader_name_value enable_env_var;
146};
147
148struct loader_layer_list {
149 size_t capacity;
150 uint32_t count;
151 struct loader_layer_properties *list;
Jon Ashburn13482452015-05-12 17:26:48 -0600152};
153
Courtney Goeltzenleuchter8aff3862015-07-05 12:53:31 -0600154struct loader_layer_library_list {
155 size_t capacity;
156 uint32_t count;
157 struct loader_lib_info *list;
158};
159
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700160struct loader_dispatch_hash_list {
161 size_t capacity;
162 uint32_t count;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700163 uint32_t *index; // index into the dev_ext dispatch table
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700164};
165
166#define MAX_NUM_DEV_EXTS 250
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700167// loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.DevExt have one
168// to one
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700169// correspondence; one loader_dispatch_hash_entry for one DevExt dispatch entry.
170// Also have a one to one correspondence with functions in dev_ext_trampoline.c
171struct loader_dispatch_hash_entry {
172 char *func_name;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700173 struct loader_dispatch_hash_list list; // to handle hashing collisions
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700174};
175
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700176typedef void(VKAPI_PTR *PFN_vkDevExt)(VkDevice device);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700177struct loader_dev_ext_dispatch_table {
178 PFN_vkDevExt DevExt[MAX_NUM_DEV_EXTS];
179};
180
181struct loader_dev_dispatch_table {
182 VkLayerDispatchTable core_dispatch;
183 struct loader_dev_ext_dispatch_table ext_dispatch;
184};
185
Jon Ashburn10f4e822015-06-10 10:06:06 -0600186/* per CreateDevice structure */
187struct loader_device {
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700188 struct loader_dev_dispatch_table loader_dispatch;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700189 VkDevice device; // device object from the icd
Jon Ashburn10f4e822015-06-10 10:06:06 -0600190
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700191 uint32_t app_extension_count;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600192 VkExtensionProperties *app_extension_props;
193
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600194 struct loader_layer_list activated_layer_list;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600195
196 struct loader_device *next;
197};
198
Jon Ashburn392c5622015-06-10 16:11:42 -0600199/* per ICD structure */
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600200struct loader_icd {
Jon Ashburnb4c24232015-08-20 16:35:30 -0600201 // pointers to find other structs
202 const struct loader_scanned_icds *this_icd_lib;
203 const struct loader_instance *this_instance;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600204
Jon Ashburn10f4e822015-06-10 10:06:06 -0600205 struct loader_device *logical_device_list;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700206 VkInstance instance; // instance object from the icd
Jon Ashburnc89dd4a2015-05-18 13:20:15 -0600207 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600208 PFN_vkDestroyInstance DestroyInstance;
209 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbes1c946ec2015-06-21 22:55:02 +1200210 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Courtney Goeltzenleuchter2b6559e2015-07-12 12:52:09 -0600211 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700212 PFN_vkGetPhysicalDeviceImageFormatProperties
213 GetPhysicalDeviceImageFormatProperties;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600214 PFN_vkCreateDevice CreateDevice;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600215 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700216 PFN_vkGetPhysicalDeviceQueueFamilyProperties
217 GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600218 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchtere25064c2015-09-14 17:22:16 -0600219 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700220 PFN_vkGetPhysicalDeviceSparseImageFormatProperties
221 GetPhysicalDeviceSparseImageFormatProperties;
Courtney Goeltzenleuchter725db942015-12-09 15:48:16 -0700222 PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallbackEXT;
223 PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallbackEXT;
224 PFN_vkDebugReportMessageEXT DebugReportMessageEXT;
Ian Elliottec736342015-08-21 15:09:33 -0600225 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700226 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR
227 GetPhysicalDeviceSurfaceCapabilitiesKHR;
Ian Elliottea666b22015-11-19 16:05:09 -0700228 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700229 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR
230 GetPhysicalDeviceSurfacePresentModesKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700231#ifdef VK_USE_PLATFORM_WIN32_KHR
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700232 PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR
233 GetPhysicalDeviceWin32PresentationSupportKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700234#endif
235#ifdef VK_USE_PLATFORM_MIR_KHR
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700236 PFN_vkGetPhysicalDeviceMirPresentationSupportKHR
237 GetPhysicalDeviceMirPresentvationSupportKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700238#endif
239#ifdef VK_USE_PLATFORM_WAYLAND_KHR
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700240 PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
241 GetPhysicalDeviceWaylandPresentationSupportKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700242#endif
243#ifdef VK_USE_PLATFORM_XCB_KHR
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700244 PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR
245 GetPhysicalDeviceXcbPresentationSupportKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700246#endif
247#ifdef VK_USE_PLATFORM_XLIB_KHR
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700248 PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR
249 GetPhysicalDeviceXlibPresentationSupportKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700250#endif
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600251
Jon Ashburn10f4e822015-06-10 10:06:06 -0600252 struct loader_icd *next;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600253};
254
Jon Ashburne0367472015-08-18 18:04:47 -0600255/* per ICD library structure */
256struct loader_icd_libs {
257 size_t capacity;
258 uint32_t count;
259 struct loader_scanned_icds *list;
260};
261
Jon Ashburn392c5622015-06-10 16:11:42 -0600262/* per instance structure */
Jon Ashburn13482452015-05-12 17:26:48 -0600263struct loader_instance {
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600264 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
265
Jon Ashburn13482452015-05-12 17:26:48 -0600266 uint32_t total_gpu_count;
Jon Ashburn969caa42015-11-01 14:04:06 -0700267 struct loader_physical_device *phys_devs;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600268 uint32_t total_icd_count;
Jon Ashburn13482452015-05-12 17:26:48 -0600269 struct loader_icd *icds;
270 struct loader_instance *next;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700271 struct loader_extension_list ext_list; // icds and loaders extensions
Jon Ashburne0367472015-08-18 18:04:47 -0600272 struct loader_icd_libs icd_libs;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600273 struct loader_layer_list instance_layer_list;
274 struct loader_layer_list device_layer_list;
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700275 struct loader_dispatch_hash_entry disp_hash[MAX_NUM_DEV_EXTS];
Jon Ashburnb4c24232015-08-20 16:35:30 -0600276
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600277 struct loader_msg_callback_map_entry *icd_msg_callback_map;
278
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600279 struct loader_layer_list activated_layer_list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600280
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700281 VkInstance instance;
282
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600283 bool debug_report_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600284 VkLayerDbgFunctionNode *DbgFunctionHead;
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600285
Chia-I Wu227c8b32015-10-27 18:04:07 +0800286 VkAllocationCallbacks alloc_callbacks;
Ian Elliotted33eb72015-07-06 14:36:13 -0600287
Ian Elliott54cea232015-10-30 15:28:23 -0600288 bool wsi_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700289#ifdef VK_USE_PLATFORM_WIN32_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600290 bool wsi_win32_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700291#endif
292#ifdef VK_USE_PLATFORM_MIR_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600293 bool wsi_mir_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700294#endif
295#ifdef VK_USE_PLATFORM_WAYLAND_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600296 bool wsi_wayland_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700297#endif
298#ifdef VK_USE_PLATFORM_XCB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600299 bool wsi_xcb_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700300#endif
301#ifdef VK_USE_PLATFORM_XLIB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600302 bool wsi_xlib_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700303#endif
304#ifdef VK_USE_PLATFORM_ANDROID_KHR
305 bool wsi_android_surface_enabled;
306#endif
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600307};
308
Jon Ashburn969caa42015-11-01 14:04:06 -0700309/* per enumerated PhysicalDevice structure */
310struct loader_physical_device {
311 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
312 struct loader_instance *this_instance;
313 struct loader_icd *this_icd;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700314 VkPhysicalDevice phys_dev; // object from ICD
315 /*
316 * Fill in the cache of available device extensions from
317 * this physical device. This cache can be used during CreateDevice
318 */
Jon Ashburn969caa42015-11-01 14:04:06 -0700319 struct loader_extension_list device_extension_cache;
320};
321
Jon Ashburn13482452015-05-12 17:26:48 -0600322struct loader_struct {
323 struct loader_instance *instances;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600324
325 unsigned int loaded_layer_lib_count;
Courtney Goeltzenleuchter452303a2015-10-07 09:00:34 -0600326 size_t loaded_layer_lib_capacity;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600327 struct loader_lib_info *loaded_layer_lib_list;
Jon Ashburne0367472015-08-18 18:04:47 -0600328 // TODO add ref counting of ICD libraries
Jon Ashburn269b5922015-07-06 15:40:35 -0600329 // TODO use this struct loader_layer_library_list scanned_layer_libraries;
Jon Ashburne0367472015-08-18 18:04:47 -0600330 // TODO add list of icd libraries for ref counting them for closure
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600331};
332
333struct loader_scanned_icds {
334 char *lib_name;
335 loader_platform_dl_handle handle;
Jon Ashburn27109e82015-11-17 17:35:40 -0700336 uint32_t api_version;
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600337 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600338 PFN_vkCreateInstance CreateInstance;
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700339 PFN_vkEnumerateInstanceExtensionProperties
340 EnumerateInstanceExtensionProperties;
Jon Ashburn13482452015-05-12 17:26:48 -0600341};
342
Jon Ashburn399c9162015-07-02 09:40:15 -0600343static inline struct loader_instance *loader_instance(VkInstance instance) {
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700344 return (struct loader_instance *)instance;
Jon Ashburn399c9162015-07-02 09:40:15 -0600345}
346
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700347static inline void loader_set_dispatch(void *obj, const void *data) {
348 *((const void **)obj) = data;
Chia-I Wufe333ed2015-04-11 15:34:07 +0800349}
350
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700351static inline VkLayerDispatchTable *loader_get_dispatch(const void *obj) {
352 return *((VkLayerDispatchTable **)obj);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800353}
354
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700355static inline struct loader_dev_dispatch_table *
356loader_get_dev_dispatch(const void *obj) {
357 return *((struct loader_dev_dispatch_table **)obj);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700358}
359
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700360static inline VkLayerInstanceDispatchTable *
361loader_get_instance_dispatch(const void *obj) {
362 return *((VkLayerInstanceDispatchTable **)obj);
Jon Ashburn13482452015-05-12 17:26:48 -0600363}
364
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700365static inline void loader_init_dispatch(void *obj, const void *data) {
Jon Ashburn167b2b12015-04-15 13:34:33 -0600366#ifdef DEBUG
Chia-I Wufe333ed2015-04-11 15:34:07 +0800367 assert(valid_loader_magic_value(obj) &&
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700368 "Incompatible ICD, first dword must be initialized to "
369 "ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn167b2b12015-04-15 13:34:33 -0600370#endif
Chia-I Wufe333ed2015-04-11 15:34:07 +0800371
Jon Ashburn62a54d12015-05-01 18:00:33 -0600372 loader_set_dispatch(obj, data);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800373}
374
Jon Ashburn13482452015-05-12 17:26:48 -0600375/* global variables used across files */
376extern struct loader_struct loader;
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600377extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Jon Ashburne0367472015-08-18 18:04:47 -0600378extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600379extern loader_platform_thread_mutex loader_lock;
Jon Ashburn7d4d51c2015-09-22 13:11:00 -0600380extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600381extern const VkLayerInstanceDispatchTable instance_disp;
Jon Ashburnd1eb3322016-02-10 20:59:26 -0700382extern const char *std_validation_str;
Jon Ashburn37e7f972015-04-06 10:58:22 -0600383
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600384struct loader_msg_callback_map_entry {
Courtney Goeltzenleuchter725db942015-12-09 15:48:16 -0700385 VkDebugReportCallbackEXT icd_obj;
386 VkDebugReportCallbackEXT loader_obj;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600387};
388
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700389bool compare_vk_extension_properties(const VkExtensionProperties *op1,
390 const VkExtensionProperties *op2);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600391
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700392VkResult loader_validate_layers(const struct loader_instance *inst,
393 const uint32_t layer_count,
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700394 const char *const *ppEnabledLayerNames,
395 const struct loader_layer_list *list);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600396
397VkResult loader_validate_instance_extensions(
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700398 const struct loader_instance *inst,
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700399 const struct loader_extension_list *icd_exts,
400 const struct loader_layer_list *instance_layer,
401 const VkInstanceCreateInfo *pCreateInfo);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600402
Jon Ashburn13482452015-05-12 17:26:48 -0600403/* instance layer chain termination entrypoint definitions */
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700404VKAPI_ATTR VkResult VKAPI_CALL
405loader_CreateInstance(const VkInstanceCreateInfo *pCreateInfo,
406 const VkAllocationCallbacks *pAllocator,
407 VkInstance *pInstance);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800408
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700409VKAPI_ATTR void VKAPI_CALL
410loader_DestroyInstance(VkInstance instance,
411 const VkAllocationCallbacks *pAllocator);
Jon Ashburn13482452015-05-12 17:26:48 -0600412
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700413VKAPI_ATTR VkResult VKAPI_CALL
414loader_EnumeratePhysicalDevices(VkInstance instance,
415 uint32_t *pPhysicalDeviceCount,
416 VkPhysicalDevice *pPhysicalDevices);
Chris Forbes1c946ec2015-06-21 22:55:02 +1200417
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700418VKAPI_ATTR void VKAPI_CALL
419loader_GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice,
420 VkPhysicalDeviceFeatures *pFeatures);
Chris Forbes1c946ec2015-06-21 22:55:02 +1200421
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700422VKAPI_ATTR void VKAPI_CALL
423loader_GetPhysicalDeviceFormatProperties(VkPhysicalDevice physicalDevice,
424 VkFormat format,
425 VkFormatProperties *pFormatInfo);
Chris Forbes1c946ec2015-06-21 22:55:02 +1200426
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800427VKAPI_ATTR VkResult VKAPI_CALL loader_GetPhysicalDeviceImageFormatProperties(
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700428 VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type,
429 VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags,
430 VkImageFormatProperties *pImageFormatProperties);
Jon Ashburn25c11452015-07-23 18:49:07 -0600431
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800432VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceSparseImageFormatProperties(
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700433 VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type,
434 VkSampleCountFlagBits samples, VkImageUsageFlags usage,
435 VkImageTiling tiling, uint32_t *pNumProperties,
436 VkSparseImageFormatProperties *pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600437
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700438VKAPI_ATTR void VKAPI_CALL
439loader_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice,
440 VkPhysicalDeviceProperties *pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600441
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700442VKAPI_ATTR VkResult VKAPI_CALL
443loader_EnumerateDeviceExtensionProperties(VkPhysicalDevice physicalDevice,
444 const char *pLayerName,
445 uint32_t *pCount,
446 VkExtensionProperties *pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600447
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700448VKAPI_ATTR VkResult VKAPI_CALL
449loader_EnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice,
450 uint32_t *pCount,
451 VkLayerProperties *pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600452
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700453VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceQueueFamilyProperties(
454 VkPhysicalDevice physicalDevice, uint32_t *pCount,
455 VkQueueFamilyProperties *pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600456
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700457VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceMemoryProperties(
458 VkPhysicalDevice physicalDevice,
459 VkPhysicalDeviceMemoryProperties *pProperties);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600460
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700461VKAPI_ATTR VkResult VKAPI_CALL
462loader_create_device_terminator(VkPhysicalDevice physicalDevice,
463 const VkDeviceCreateInfo *pCreateInfo,
464 const VkAllocationCallbacks *pAllocator,
465 VkDevice *pDevice);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700466
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700467VKAPI_ATTR VkResult VKAPI_CALL
468loader_CreateDevice(VkPhysicalDevice gpu, const VkDeviceCreateInfo *pCreateInfo,
469 const VkAllocationCallbacks *pAllocator, VkDevice *pDevice);
Jon Ashburn13482452015-05-12 17:26:48 -0600470
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600471/* helper function definitions */
Jon Ashburne0367472015-08-18 18:04:47 -0600472void loader_initialize(void);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700473bool has_vk_extension_property_array(const VkExtensionProperties *vk_ext_prop,
474 const uint32_t count,
475 const VkExtensionProperties *ext_array);
476bool has_vk_extension_property(const VkExtensionProperties *vk_ext_prop,
477 const struct loader_extension_list *ext_list);
Jon Ashburn13482452015-05-12 17:26:48 -0600478
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700479VkResult loader_add_to_ext_list(const struct loader_instance *inst,
480 struct loader_extension_list *ext_list,
481 uint32_t prop_list_count,
482 const VkExtensionProperties *props);
483void loader_destroy_generic_list(const struct loader_instance *inst,
484 struct loader_generic_list *list);
485void loader_delete_layer_properties(const struct loader_instance *inst,
486 struct loader_layer_list *layer_list);
Jon Ashburnd1eb3322016-02-10 20:59:26 -0700487void loader_expand_layer_names(
488 const struct loader_instance *inst, const char *key_name,
489 uint32_t expand_count,
490 const char expand_names[][VK_MAX_EXTENSION_NAME_SIZE],
491 uint32_t *layer_count, char ***ppp_layer_names);
492void loader_unexpand_dev_layer_names(uint32_t layer_count, char **layer_names,
493 const VkDeviceCreateInfo *pCreateInfo);
494void loader_unexpand_inst_layer_names(uint32_t layer_count, char **layer_names,
495 const VkInstanceCreateInfo *pCreateInfo);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700496void loader_add_to_layer_list(const struct loader_instance *inst,
497 struct loader_layer_list *list,
498 uint32_t prop_list_count,
499 const struct loader_layer_properties *props);
500void loader_scanned_icd_clear(const struct loader_instance *inst,
501 struct loader_icd_libs *icd_libs);
502void loader_icd_scan(const struct loader_instance *inst,
503 struct loader_icd_libs *icds);
504void loader_layer_scan(const struct loader_instance *inst,
505 struct loader_layer_list *instance_layers,
506 struct loader_layer_list *device_layers);
Jon Ashburne0367472015-08-18 18:04:47 -0600507void loader_get_icd_loader_instance_extensions(
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700508 const struct loader_instance *inst, struct loader_icd_libs *icd_libs,
509 struct loader_extension_list *inst_exts);
510struct loader_icd *loader_get_icd_and_device(const VkDevice device,
511 struct loader_device **found_dev);
512void *loader_dev_ext_gpa(struct loader_instance *inst, const char *funcName);
513void *loader_get_dev_ext_trampoline(uint32_t index);
514struct loader_instance *loader_get_instance(const VkInstance instance);
515void loader_remove_logical_device(const struct loader_instance *inst,
516 struct loader_icd *icd,
517 struct loader_device *found_dev);
518VkResult
519loader_enable_instance_layers(struct loader_instance *inst,
520 const VkInstanceCreateInfo *pCreateInfo,
521 const struct loader_layer_list *instance_layers);
Jon Ashburn10f4e822015-06-10 10:06:06 -0600522void loader_deactivate_instance_layers(struct loader_instance *instance);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700523
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700524VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo,
525 const VkAllocationCallbacks *pAllocator,
526 struct loader_instance *inst,
Jon Ashburnd1205a92016-02-03 12:37:30 -0700527 VkInstance *created_instance);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700528
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700529void loader_activate_instance_layer_extensions(struct loader_instance *inst,
530 VkInstance created_inst);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600531
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700532void *loader_heap_alloc(const struct loader_instance *instance, size_t size,
533 VkSystemAllocationScope allocationScope);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600534
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700535void loader_heap_free(const struct loader_instance *instance, void *pMemory);
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600536
537void *loader_tls_heap_alloc(size_t size);
538
Chia-I Wu227c8b32015-10-27 18:04:07 +0800539void loader_tls_heap_free(void *pMemory);
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700540
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -0700541VkStringErrorFlags vk_string_validate(const int max_length,
542 const char *char_array);
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700543
Chia-I Wuc1e0f962014-08-04 08:03:57 +0800544#endif /* LOADER_H */