Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 1 | /* |
Courtney Goeltzenleuchter | 0b01860 | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 2 | * Vulkan |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2014 LunarG, Inc. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included |
| 14 | * in all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
Chia-I Wu | d8ab1e6 | 2014-09-02 08:32:09 +0800 | [diff] [blame] | 23 | * |
| 24 | * Authors: |
| 25 | * Chia-I Wu <olv@lunarg.com> |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #ifndef LOADER_H |
| 29 | #define LOADER_H |
| 30 | |
Courtney Goeltzenleuchter | 0b01860 | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 31 | #include <vulkan.h> |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 32 | #include <vk_debug_report_lunarg.h> |
Ian Elliott | ec73634 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 33 | #include <vk_ext_khr_swapchain.h> |
Tobin Ehlis | 7ad5aca | 2015-07-03 09:42:57 -0600 | [diff] [blame] | 34 | #include <vk_layer.h> |
| 35 | #include <vk_icd.h> |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 36 | #include <assert.h> |
| 37 | |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 38 | #if defined(__GNUC__) && __GNUC__ >= 4 |
| 39 | # define LOADER_EXPORT __attribute__((visibility("default"))) |
| 40 | #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590) |
| 41 | # define LOADER_EXPORT __attribute__((visibility("default"))) |
| 42 | #else |
| 43 | # define LOADER_EXPORT |
| 44 | #endif |
| 45 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 46 | #define MAX_EXTENSION_NAME_SIZE (VK_MAX_EXTENSION_NAME-1) |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 47 | #define MAX_GPUS_PER_ICD 16 |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 48 | #define MAX_STRING_SIZE 1024 |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 49 | #define VK_MAJOR(version) (version >> 22) |
| 50 | #define VK_MINOR(version) ((version >> 12) & 0x3ff) |
| 51 | #define VK_PATCH(version) (version & 0xfff) |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 52 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 53 | enum layer_type { |
Jon Ashburn | 9464e77 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 54 | VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1, |
| 55 | VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2, |
| 56 | VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // both instance and device layer, bitwise |
| 57 | VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4, |
| 58 | VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8, |
| 59 | VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // both instance and device layer, bitwise |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 60 | }; |
| 61 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 62 | struct loader_extension_list { |
| 63 | size_t capacity; |
| 64 | uint32_t count; |
Jon Ashburn | b7d327c | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 65 | VkExtensionProperties *list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 66 | }; |
| 67 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 68 | struct loader_name_value { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 69 | char name[MAX_STRING_SIZE]; |
| 70 | char value[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | struct loader_lib_info { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 74 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 75 | uint32_t ref_count; |
| 76 | loader_platform_dl_handle lib_handle; |
| 77 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 78 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 79 | struct loader_layer_functions { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 80 | char str_gipa[MAX_STRING_SIZE]; |
| 81 | char str_gdpa[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 82 | PFN_vkGetInstanceProcAddr get_instance_proc_addr; |
| 83 | PFN_vkGetDeviceProcAddr get_device_proc_addr; |
| 84 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 85 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 86 | struct loader_layer_properties { |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 87 | VkLayerProperties info; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 88 | enum layer_type type; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 89 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 90 | struct loader_layer_functions functions; |
| 91 | struct loader_extension_list instance_extension_list; |
| 92 | struct loader_extension_list device_extension_list; |
| 93 | struct loader_name_value disable_env_var; |
| 94 | struct loader_name_value enable_env_var; |
| 95 | }; |
| 96 | |
| 97 | struct loader_layer_list { |
| 98 | size_t capacity; |
| 99 | uint32_t count; |
| 100 | struct loader_layer_properties *list; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 101 | }; |
| 102 | |
Courtney Goeltzenleuchter | 8aff386 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 103 | struct loader_layer_library_list { |
| 104 | size_t capacity; |
| 105 | uint32_t count; |
| 106 | struct loader_lib_info *list; |
| 107 | }; |
| 108 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 109 | /* per CreateDevice structure */ |
| 110 | struct loader_device { |
| 111 | VkLayerDispatchTable loader_dispatch; |
| 112 | VkDevice device; // device object from the icd |
| 113 | |
| 114 | uint32_t app_extension_count; |
| 115 | VkExtensionProperties *app_extension_props; |
| 116 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 117 | struct loader_layer_list activated_layer_list; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 118 | |
| 119 | struct loader_device *next; |
| 120 | }; |
| 121 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 122 | /* per ICD structure */ |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 123 | struct loader_icd { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 124 | // pointers to find other structs |
| 125 | const struct loader_scanned_icds *this_icd_lib; |
| 126 | const struct loader_instance *this_instance; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 127 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 128 | struct loader_device *logical_device_list; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 129 | uint32_t gpu_count; |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 130 | VkPhysicalDevice *gpus; // enumerated PhysicalDevices |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 131 | VkInstance instance; // instance object from the icd |
Jon Ashburn | c89dd4a | 2015-05-18 13:20:15 -0600 | [diff] [blame] | 132 | PFN_vkGetDeviceProcAddr GetDeviceProcAddr; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 133 | PFN_vkDestroyInstance DestroyInstance; |
| 134 | PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices; |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 135 | PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures; |
Courtney Goeltzenleuchter | 2b6559e | 2015-07-12 12:52:09 -0600 | [diff] [blame] | 136 | PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties; |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 137 | PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 138 | PFN_vkCreateDevice CreateDevice; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 139 | PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties; |
Cody Northrop | fc4ad13 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 140 | PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 141 | PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties; |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 142 | PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties; |
Mark Lobodzinski | 0c708be | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 143 | PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 144 | PFN_vkDbgCreateMsgCallback DbgCreateMsgCallback; |
| 145 | PFN_vkDbgDestroyMsgCallback DbgDestroyMsgCallback; |
Ian Elliott | ec73634 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 146 | PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR; |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 147 | |
Courtney Goeltzenleuchter | 1c51240 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 148 | /* |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 149 | * Fill in the cache of available device extensions from |
| 150 | * this physical device. This cache will be used to satisfy |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 151 | * calls to EnumerateDeviceExtensionProperties |
Courtney Goeltzenleuchter | 1c51240 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 152 | */ |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 153 | struct loader_extension_list device_extension_cache[MAX_GPUS_PER_ICD]; |
| 154 | struct loader_icd *next; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 155 | }; |
| 156 | |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 157 | /* per ICD library structure */ |
| 158 | struct loader_icd_libs { |
| 159 | size_t capacity; |
| 160 | uint32_t count; |
| 161 | struct loader_scanned_icds *list; |
| 162 | }; |
| 163 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 164 | /* per instance structure */ |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 165 | struct loader_instance { |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 166 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
| 167 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 168 | uint32_t total_gpu_count; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 169 | uint32_t total_icd_count; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 170 | struct loader_icd *icds; |
| 171 | struct loader_instance *next; |
Jon Ashburn | e503a7d | 2015-08-14 14:49:22 -0600 | [diff] [blame] | 172 | struct loader_extension_list ext_list; // icds and loaders extensions |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 173 | struct loader_icd_libs icd_libs; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 174 | struct loader_layer_list instance_layer_list; |
| 175 | struct loader_layer_list device_layer_list; |
| 176 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 177 | /* TODO: Should keep track of application provided allocation functions */ |
| 178 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 179 | struct loader_msg_callback_map_entry *icd_msg_callback_map; |
| 180 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 181 | struct loader_layer_list activated_layer_list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 182 | |
| 183 | bool debug_report_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 184 | VkLayerDbgFunctionNode *DbgFunctionHead; |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 185 | |
| 186 | VkAllocCallbacks alloc_callbacks; |
Ian Elliott | ed33eb7 | 2015-07-06 14:36:13 -0600 | [diff] [blame] | 187 | |
| 188 | bool wsi_swapchain_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 189 | }; |
| 190 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 191 | struct loader_struct { |
| 192 | struct loader_instance *instances; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 193 | |
| 194 | unsigned int loaded_layer_lib_count; |
Courtney Goeltzenleuchter | 452303a | 2015-10-07 09:00:34 -0600 | [diff] [blame^] | 195 | size_t loaded_layer_lib_capacity; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 196 | struct loader_lib_info *loaded_layer_lib_list; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 197 | // TODO add ref counting of ICD libraries |
Jon Ashburn | 269b592 | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 198 | // TODO use this struct loader_layer_library_list scanned_layer_libraries; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 199 | // TODO add list of icd libraries for ref counting them for closure |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 200 | }; |
| 201 | |
| 202 | struct loader_scanned_icds { |
| 203 | char *lib_name; |
| 204 | loader_platform_dl_handle handle; |
| 205 | |
Jon Ashburn | c7ca48d | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 206 | PFN_vkGetInstanceProcAddr GetInstanceProcAddr; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 207 | PFN_vkCreateInstance CreateInstance; |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 208 | PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 209 | }; |
| 210 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 211 | static inline struct loader_instance *loader_instance(VkInstance instance) { |
| 212 | return (struct loader_instance *) instance; |
| 213 | } |
| 214 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 215 | static inline void loader_set_dispatch(void* obj, const void *data) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 216 | { |
| 217 | *((const void **) obj) = data; |
| 218 | } |
| 219 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 220 | static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 221 | { |
Jon Ashburn | 62a54d1 | 2015-05-01 18:00:33 -0600 | [diff] [blame] | 222 | return *((VkLayerDispatchTable **) obj); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 223 | } |
| 224 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 225 | static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj) |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 226 | { |
| 227 | return *((VkLayerInstanceDispatchTable **) obj); |
| 228 | } |
| 229 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 230 | static inline void loader_init_dispatch(void* obj, const void *data) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 231 | { |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 232 | #ifdef DEBUG |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 233 | assert(valid_loader_magic_value(obj) && |
| 234 | "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details."); |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 235 | #endif |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 236 | |
Jon Ashburn | 62a54d1 | 2015-05-01 18:00:33 -0600 | [diff] [blame] | 237 | loader_set_dispatch(obj, data); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 238 | } |
| 239 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 240 | /* global variables used across files */ |
| 241 | extern struct loader_struct loader; |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 242 | extern THREAD_LOCAL_DECL struct loader_instance *tls_instance; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 243 | extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init); |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 244 | extern loader_platform_thread_mutex loader_lock; |
Jon Ashburn | 7d4d51c | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 245 | extern loader_platform_thread_mutex loader_json_lock; |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 246 | extern const VkLayerInstanceDispatchTable instance_disp; |
Jon Ashburn | 37e7f97 | 2015-04-06 10:58:22 -0600 | [diff] [blame] | 247 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 248 | struct loader_msg_callback_map_entry { |
| 249 | VkDbgMsgCallback icd_obj; |
| 250 | VkDbgMsgCallback loader_obj; |
| 251 | }; |
| 252 | |
| 253 | bool compare_vk_extension_properties( |
| 254 | const VkExtensionProperties* op1, |
| 255 | const VkExtensionProperties* op2); |
| 256 | |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 257 | VkResult loader_validate_layers( |
| 258 | const uint32_t layer_count, |
| 259 | const char * const *ppEnabledLayerNames, |
| 260 | const struct loader_layer_list *list); |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 261 | |
| 262 | VkResult loader_validate_instance_extensions( |
Jon Ashburn | 555d2ed | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 263 | const struct loader_extension_list *icd_exts, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 264 | const struct loader_layer_list *instance_layer, |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 265 | const VkInstanceCreateInfo* pCreateInfo); |
| 266 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 267 | /* instance layer chain termination entrypoint definitions */ |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 268 | VkResult VKAPI loader_CreateInstance( |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 269 | const VkInstanceCreateInfo* pCreateInfo, |
| 270 | VkInstance* pInstance); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 271 | |
Mark Lobodzinski | 025eade | 2015-09-07 13:59:43 -0600 | [diff] [blame] | 272 | void VKAPI loader_DestroyInstance( |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 273 | VkInstance instance); |
| 274 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 275 | VkResult VKAPI loader_EnumeratePhysicalDevices( |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 276 | VkInstance instance, |
| 277 | uint32_t* pPhysicalDeviceCount, |
| 278 | VkPhysicalDevice* pPhysicalDevices); |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 279 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 280 | VkResult VKAPI loader_GetPhysicalDeviceFeatures( |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 281 | VkPhysicalDevice physicalDevice, |
| 282 | VkPhysicalDeviceFeatures* pFeatures); |
| 283 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 284 | VkResult VKAPI loader_GetPhysicalDeviceFormatProperties( |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 285 | VkPhysicalDevice physicalDevice, |
| 286 | VkFormat format, |
| 287 | VkFormatProperties* pFormatInfo); |
| 288 | |
Courtney Goeltzenleuchter | 4743d00 | 2015-09-10 13:44:12 -0600 | [diff] [blame] | 289 | VkResult VKAPI loader_GetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice, |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 290 | VkFormat format, |
| 291 | VkImageType type, |
| 292 | VkImageTiling tiling, |
| 293 | VkImageUsageFlags usage, |
Courtney Goeltzenleuchter | 4743d00 | 2015-09-10 13:44:12 -0600 | [diff] [blame] | 294 | VkImageCreateFlags flags, |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 295 | VkImageFormatProperties* pImageFormatProperties); |
| 296 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 297 | VkResult VKAPI loader_GetPhysicalDeviceSparseImageFormatProperties( |
Mark Lobodzinski | 0c708be | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 298 | VkPhysicalDevice physicalDevice, |
| 299 | VkFormat format, |
| 300 | VkImageType type, |
| 301 | uint32_t samples, |
| 302 | VkImageUsageFlags usage, |
| 303 | VkImageTiling tiling, |
| 304 | uint32_t* pNumProperties, |
| 305 | VkSparseImageFormatProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 306 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 307 | VkResult VKAPI loader_GetPhysicalDeviceProperties ( |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 308 | VkPhysicalDevice physicalDevice, |
| 309 | VkPhysicalDeviceProperties* pProperties); |
| 310 | |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 311 | VkResult VKAPI loader_EnumerateDeviceExtensionProperties (VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 312 | const char *pLayerName, uint32_t *pCount, |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 313 | VkExtensionProperties* pProperties); |
| 314 | |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 315 | VkResult VKAPI loader_EnumerateDeviceLayerProperties (VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 316 | uint32_t *pCount, |
| 317 | VkLayerProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 318 | |
Cody Northrop | fc4ad13 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 319 | VkResult VKAPI loader_GetPhysicalDeviceQueueFamilyProperties ( |
| 320 | VkPhysicalDevice physicalDevice, |
| 321 | uint32_t* pCount, |
| 322 | VkQueueFamilyProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 323 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 324 | VkResult VKAPI loader_GetPhysicalDeviceMemoryProperties ( |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 325 | VkPhysicalDevice physicalDevice, |
| 326 | VkPhysicalDeviceMemoryProperties * pProperties); |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 327 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 328 | VkResult VKAPI loader_CreateDevice( |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 329 | VkPhysicalDevice gpu, |
| 330 | const VkDeviceCreateInfo* pCreateInfo, |
| 331 | VkDevice* pDevice); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 332 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 333 | /* helper function definitions */ |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 334 | void loader_initialize(void); |
Jon Ashburn | 02a8d6e | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 335 | bool has_vk_extension_property_array( |
| 336 | const VkExtensionProperties *vk_ext_prop, |
| 337 | const uint32_t count, |
| 338 | const VkExtensionProperties *ext_array); |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 339 | bool has_vk_extension_property( |
| 340 | const VkExtensionProperties *vk_ext_prop, |
| 341 | const struct loader_extension_list *ext_list); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 342 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 343 | void loader_add_to_ext_list( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 344 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 345 | struct loader_extension_list *ext_list, |
| 346 | uint32_t prop_list_count, |
Jon Ashburn | b7d327c | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 347 | const VkExtensionProperties *props); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 348 | void loader_destroy_ext_list( |
| 349 | const struct loader_instance *inst, |
| 350 | struct loader_extension_list *ext_info); |
| 351 | void loader_delete_layer_properties( |
| 352 | const struct loader_instance *inst, |
| 353 | struct loader_layer_list *layer_list); |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 354 | void loader_add_to_layer_list( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 355 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 356 | struct loader_layer_list *list, |
| 357 | uint32_t prop_list_count, |
| 358 | const struct loader_layer_properties *props); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 359 | void loader_scanned_icd_clear( |
| 360 | const struct loader_instance *inst, |
| 361 | struct loader_icd_libs *icd_libs); |
| 362 | void loader_icd_scan( |
| 363 | const struct loader_instance *inst, |
| 364 | struct loader_icd_libs *icds); |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 365 | void loader_layer_scan( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 366 | const struct loader_instance *inst, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 367 | struct loader_layer_list *instance_layers, |
| 368 | struct loader_layer_list *device_layers); |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 369 | void loader_get_icd_loader_instance_extensions( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 370 | const struct loader_instance *inst, |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 371 | struct loader_icd_libs *icd_libs, |
| 372 | struct loader_extension_list *inst_exts); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 373 | struct loader_icd *loader_get_icd_and_device( |
| 374 | const VkDevice device, |
| 375 | struct loader_device **found_dev); |
Jon Ashburn | 8a7e562 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 376 | struct loader_instance *loader_get_instance( |
| 377 | const VkInstance instance); |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 378 | struct loader_icd * loader_get_icd( |
| 379 | const VkPhysicalDevice gpu, |
| 380 | uint32_t *gpu_index); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 381 | void loader_remove_logical_device( |
| 382 | const struct loader_instance *inst, |
| 383 | VkDevice device); |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 384 | VkResult loader_enable_instance_layers( |
| 385 | struct loader_instance *inst, |
| 386 | const VkInstanceCreateInfo *pCreateInfo, |
| 387 | const struct loader_layer_list *instance_layers); |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 388 | void loader_deactivate_instance_layers(struct loader_instance *instance); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 389 | uint32_t loader_activate_instance_layers(struct loader_instance *inst); |
Courtney Goeltzenleuchter | 1c51240 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 390 | void loader_activate_instance_layer_extensions(struct loader_instance *inst); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 391 | |
| 392 | void* loader_heap_alloc( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 393 | const struct loader_instance *instance, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 394 | size_t size, |
| 395 | VkSystemAllocType allocType); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 396 | |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 397 | void loader_heap_free( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 398 | const struct loader_instance *instance, |
| 399 | void *pMem); |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 400 | |
| 401 | void *loader_tls_heap_alloc(size_t size); |
| 402 | |
| 403 | void loader_tls_heap_free(void *pMem); |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 404 | #endif /* LOADER_H */ |