radv: get rid of bunch of KHR suffixes
[mesa.git] / src / amd / vulkan / radv_device.c
index 4fc7392e65e66ccc362aa987fe31c3005833ac36..2619feab86fbb03e6fb02d7cfd2b2f2071b20685 100644 (file)
 #include "ac_llvm_util.h"
 #include "vk_format.h"
 #include "sid.h"
+#include "git_sha1.h"
 #include "gfx9d.h"
-#include "addrlib/gfx9/chip/gfx9_enum.h"
+#include "util/build_id.h"
 #include "util/debug.h"
+#include "util/mesa-sha1.h"
 
 static int
 radv_device_get_cache_uuid(enum radeon_family family, void *uuid)
 {
-       uint32_t mesa_timestamp, llvm_timestamp;
-       uint16_t f = family;
+       struct mesa_sha1 ctx;
+       unsigned char sha1[20];
+       unsigned ptr_size = sizeof(void*);
+
        memset(uuid, 0, VK_UUID_SIZE);
-       if (!disk_cache_get_function_timestamp(radv_device_get_cache_uuid, &mesa_timestamp) ||
-           !disk_cache_get_function_timestamp(LLVMInitializeAMDGPUTargetInfo, &llvm_timestamp))
+       _mesa_sha1_init(&ctx);
+
+       if (!disk_cache_get_function_identifier(radv_device_get_cache_uuid, &ctx) ||
+           !disk_cache_get_function_identifier(LLVMInitializeAMDGPUTargetInfo, &ctx))
                return -1;
 
-       memcpy(uuid, &mesa_timestamp, 4);
-       memcpy((char*)uuid + 4, &llvm_timestamp, 4);
-       memcpy((char*)uuid + 8, &f, 2);
-       snprintf((char*)uuid + 10, VK_UUID_SIZE - 10, "radv");
+       _mesa_sha1_update(&ctx, &family, sizeof(family));
+       _mesa_sha1_update(&ctx, &ptr_size, sizeof(ptr_size));
+       _mesa_sha1_final(&ctx, sha1);
+
+       memcpy(uuid, sha1, VK_UUID_SIZE);
        return 0;
 }
 
@@ -101,18 +108,17 @@ radv_get_device_name(enum radeon_family family, char *name, size_t name_len)
        case CHIP_POLARIS11: chip_string = "AMD RADV POLARIS11"; break;
        case CHIP_POLARIS12: chip_string = "AMD RADV POLARIS12"; break;
        case CHIP_STONEY: chip_string = "AMD RADV STONEY"; break;
+       case CHIP_VEGAM: chip_string = "AMD RADV VEGA M"; break;
        case CHIP_VEGA10: chip_string = "AMD RADV VEGA10"; break;
        case CHIP_VEGA12: chip_string = "AMD RADV VEGA12"; break;
        case CHIP_RAVEN: chip_string = "AMD RADV RAVEN"; break;
+       case CHIP_RAVEN2: chip_string = "AMD RADV RAVEN2"; break;
        default: chip_string = "AMD RADV unknown"; break;
        }
 
-       if (HAVE_LLVM > 0) {
-               snprintf(llvm_string, sizeof(llvm_string),
-                        " (LLVM %i.%i.%i)", (HAVE_LLVM >> 8) & 0xff,
-                        HAVE_LLVM & 0xff, MESA_LLVM_VERSION_PATCH);
-       }
-
+       snprintf(llvm_string, sizeof(llvm_string),
+                " (LLVM %i.%i.%i)", (HAVE_LLVM >> 8) & 0xff,
+                HAVE_LLVM & 0xff, MESA_LLVM_VERSION_PATCH);
        snprintf(name, name_len, "%s%s", chip_string, llvm_string);
 }
 
@@ -143,7 +149,7 @@ radv_physical_device_init_mem_types(struct radv_physical_device *device)
                gart_index = device->memory_properties.memoryHeapCount++;
                device->memory_properties.memoryHeaps[gart_index] = (VkMemoryHeap) {
                        .size = device->rad_info.gart_size,
-                       .flags = 0,
+                       .flags = device->rad_info.has_dedicated_vram ? 0 : VK_MEMORY_HEAP_DEVICE_LOCAL_BIT,
                };
        }
 
@@ -160,7 +166,8 @@ radv_physical_device_init_mem_types(struct radv_physical_device *device)
                device->mem_type_indices[type_count] = RADV_MEM_TYPE_GTT_WRITE_COMBINE;
                device->memory_properties.memoryTypes[type_count++] = (VkMemoryType) {
                        .propertyFlags = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
-                       VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
+                       VK_MEMORY_PROPERTY_HOST_COHERENT_BIT |
+                       (device->rad_info.has_dedicated_vram ? 0 : VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT),
                        .heapIndex = gart_index,
                };
        }
@@ -178,7 +185,8 @@ radv_physical_device_init_mem_types(struct radv_physical_device *device)
                device->memory_properties.memoryTypes[type_count++] = (VkMemoryType) {
                        .propertyFlags = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
                        VK_MEMORY_PROPERTY_HOST_COHERENT_BIT |
-                       VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
+                       VK_MEMORY_PROPERTY_HOST_CACHED_BIT |
+                       (device->rad_info.has_dedicated_vram ? 0 : VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT),
                        .heapIndex = gart_index,
                };
        }
@@ -225,37 +233,69 @@ radv_physical_device_init(struct radv_physical_device *device,
        VkResult result;
        drmVersionPtr version;
        int fd;
+       int master_fd = -1;
 
        fd = open(path, O_RDWR | O_CLOEXEC);
-       if (fd < 0)
-               return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
+       if (fd < 0) {
+               if (instance->debug_flags & RADV_DEBUG_STARTUP)
+                       radv_logi("Could not open device '%s'", path);
+
+               return vk_error(instance, VK_ERROR_INCOMPATIBLE_DRIVER);
+       }
 
        version = drmGetVersion(fd);
        if (!version) {
                close(fd);
-               return vk_errorf(VK_ERROR_INCOMPATIBLE_DRIVER,
+
+               if (instance->debug_flags & RADV_DEBUG_STARTUP)
+                       radv_logi("Could not get the kernel driver version for device '%s'", path);
+
+               return vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
                                 "failed to get version %s: %m", path);
        }
 
        if (strcmp(version->name, "amdgpu")) {
                drmFreeVersion(version);
                close(fd);
+
+               if (instance->debug_flags & RADV_DEBUG_STARTUP)
+                       radv_logi("Device '%s' is not using the amdgpu kernel driver.", path);
+
                return VK_ERROR_INCOMPATIBLE_DRIVER;
        }
        drmFreeVersion(version);
 
+       if (instance->debug_flags & RADV_DEBUG_STARTUP)
+                       radv_logi("Found compatible device '%s'.", path);
+
        device->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
        device->instance = instance;
-       assert(strlen(path) < ARRAY_SIZE(device->path));
-       strncpy(device->path, path, ARRAY_SIZE(device->path));
 
        device->ws = radv_amdgpu_winsys_create(fd, instance->debug_flags,
                                               instance->perftest_flags);
        if (!device->ws) {
-               result = VK_ERROR_INCOMPATIBLE_DRIVER;
+               result = vk_error(instance, VK_ERROR_INCOMPATIBLE_DRIVER);
                goto fail;
        }
 
+       if (instance->enabled_extensions.KHR_display) {
+               master_fd = open(drm_device->nodes[DRM_NODE_PRIMARY], O_RDWR | O_CLOEXEC);
+               if (master_fd >= 0) {
+                       uint32_t accel_working = 0;
+                       struct drm_amdgpu_info request = {
+                               .return_pointer = (uintptr_t)&accel_working,
+                               .return_size = sizeof(accel_working),
+                               .query = AMDGPU_INFO_ACCEL_WORKING
+                       };
+
+                       if (drmCommandWrite(master_fd, DRM_AMDGPU_INFO, &request, sizeof (struct drm_amdgpu_info)) < 0 || !accel_working) {
+                               close(master_fd);
+                               master_fd = -1;
+                       }
+               }
+       }
+
+       device->master_fd = master_fd;
        device->local_fd = fd;
        device->ws->query_info(device->ws, &device->rad_info);
 
@@ -265,7 +305,7 @@ radv_physical_device_init(struct radv_physical_device *device,
 
        if (radv_device_get_cache_uuid(device->rad_info.family, device->cache_uuid)) {
                device->ws->destroy(device->ws);
-               result = vk_errorf(VK_ERROR_INITIALIZATION_FAILED,
+               result = vk_errorf(instance, VK_ERROR_INITIALIZATION_FAILED,
                                   "cannot generate UUID");
                goto fail;
        }
@@ -275,7 +315,7 @@ radv_physical_device_init(struct radv_physical_device *device,
                (device->instance->perftest_flags & RADV_PERFTEST_SISCHED ? 0x1 : 0) |
                (device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH ? 0x2 : 0);
 
-       /* The gpu id is already embeded in the uuid so we just pass "radv"
+       /* The gpu id is already embedded in the uuid so we just pass "radv"
         * when creating the cache.
         */
        char buf[VK_UUID_SIZE * 2 + 1];
@@ -293,10 +333,12 @@ radv_physical_device_init(struct radv_physical_device *device,
            device->rad_info.chip_class >= GFX9) {
                device->has_rbplus = true;
                device->rbplus_allowed = device->rad_info.family == CHIP_STONEY ||
-                                        device->rad_info.family == CHIP_VEGA12;
+                                        device->rad_info.family == CHIP_VEGA12 ||
+                                        device->rad_info.family == CHIP_RAVEN ||
+                                        device->rad_info.family == CHIP_RAVEN2;
        }
 
-       /* The mere presense of CLEAR_STATE in the IB causes random GPU hangs
+       /* The mere presence of CLEAR_STATE in the IB causes random GPU hangs
         * on SI.
         */
        device->has_clear_state = device->rad_info.chip_class >= CIK;
@@ -311,14 +353,27 @@ radv_physical_device_init(struct radv_physical_device *device,
        device->has_out_of_order_rast = device->rad_info.chip_class >= VI &&
                                        device->rad_info.max_se >= 2;
        device->out_of_order_rast_allowed = device->has_out_of_order_rast &&
-                                           (device->instance->perftest_flags & RADV_PERFTEST_OUT_OF_ORDER);
+                                           !(device->instance->debug_flags & RADV_DEBUG_NO_OUT_OF_ORDER);
+
+       device->dcc_msaa_allowed =
+               (device->instance->perftest_flags & RADV_PERFTEST_DCC_MSAA);
 
        radv_physical_device_init_mem_types(device);
        radv_fill_device_extension_table(device, &device->supported_extensions);
 
+       device->bus_info = *drm_device->businfo.pci;
+
+       if ((device->instance->debug_flags & RADV_DEBUG_INFO))
+               ac_print_gpu_info(&device->rad_info);
+
+       /* The WSI is structured as a layer on top of the driver, so this has
+        * to be the last part of initialization (at least until we get other
+        * semi-layers).
+        */
        result = radv_init_wsi(device);
        if (result != VK_SUCCESS) {
                device->ws->destroy(device->ws);
+               vk_error(instance, result);
                goto fail;
        }
 
@@ -326,6 +381,8 @@ radv_physical_device_init(struct radv_physical_device *device,
 
 fail:
        close(fd);
+       if (master_fd != -1)
+               close(master_fd);
        return result;
 }
 
@@ -336,6 +393,8 @@ radv_physical_device_finish(struct radv_physical_device *device)
        device->ws->destroy(device->ws);
        disk_cache_destroy(device->disk_cache);
        close(device->local_fd);
+       if (device->master_fd != -1)
+               close(device->master_fd);
 }
 
 static void *
@@ -382,6 +441,14 @@ static const struct debug_control radv_debug_options[] = {
        {"syncshaders", RADV_DEBUG_SYNC_SHADERS},
        {"nosisched", RADV_DEBUG_NO_SISCHED},
        {"preoptir", RADV_DEBUG_PREOPTIR},
+       {"nodynamicbounds", RADV_DEBUG_NO_DYNAMIC_BOUNDS},
+       {"nooutoforder", RADV_DEBUG_NO_OUT_OF_ORDER},
+       {"info", RADV_DEBUG_INFO},
+       {"errors", RADV_DEBUG_ERRORS},
+       {"startup", RADV_DEBUG_STARTUP},
+       {"checkir", RADV_DEBUG_CHECKIR},
+       {"nothreadllvm", RADV_DEBUG_NOTHREADLLVM},
+       {"nobinning", RADV_DEBUG_NOBINNING},
        {NULL, 0}
 };
 
@@ -396,15 +463,14 @@ static const struct debug_control radv_perftest_options[] = {
        {"nobatchchain", RADV_PERFTEST_NO_BATCHCHAIN},
        {"sisched", RADV_PERFTEST_SISCHED},
        {"localbos", RADV_PERFTEST_LOCAL_BOS},
-       {"binning", RADV_PERFTEST_BINNING},
-       {"outoforderrast", RADV_PERFTEST_OUT_OF_ORDER},
+       {"dccmsaa", RADV_PERFTEST_DCC_MSAA},
        {NULL, 0}
 };
 
 const char *
 radv_get_perftest_option_name(int id)
 {
-       assert(id < ARRAY_SIZE(radv_debug_options) - 1);
+       assert(id < ARRAY_SIZE(radv_perftest_options) - 1);
        return radv_perftest_options[id].string;
 }
 
@@ -419,10 +485,15 @@ radv_handle_per_app_options(struct radv_instance *instance,
 
        if (!strcmp(name, "Talos - Linux - 32bit") ||
            !strcmp(name, "Talos - Linux - 64bit")) {
-               /* Force enable LLVM sisched for Talos because it looks safe
-                * and it gives few more FPS.
-                */
-               instance->perftest_flags |= RADV_PERFTEST_SISCHED;
+               if (!(instance->debug_flags & RADV_DEBUG_NO_SISCHED)) {
+                       /* Force enable LLVM sisched for Talos because it looks
+                        * safe and it gives few more FPS.
+                        */
+                       instance->perftest_flags |= RADV_PERFTEST_SISCHED;
+               }
+       } else if (!strcmp(name, "DOOM_VFR")) {
+               /* Work around a Doom VFR game bug */
+               instance->debug_flags |= RADV_DEBUG_NO_DYNAMIC_BOUNDS;
        }
 }
 
@@ -451,22 +522,13 @@ VkResult radv_CreateInstance(
            pCreateInfo->pApplicationInfo->apiVersion != 0) {
                client_version = pCreateInfo->pApplicationInfo->apiVersion;
        } else {
-               client_version = VK_MAKE_VERSION(1, 0, 0);
-       }
-
-       if (VK_MAKE_VERSION(1, 0, 0) > client_version ||
-           client_version > VK_MAKE_VERSION(1, 1, 0xfff)) {
-               return vk_errorf(VK_ERROR_INCOMPATIBLE_DRIVER,
-                                "Client requested version %d.%d.%d",
-                                VK_VERSION_MAJOR(client_version),
-                                VK_VERSION_MINOR(client_version),
-                                VK_VERSION_PATCH(client_version));
+               radv_EnumerateInstanceVersion(&client_version);
        }
 
        instance = vk_zalloc2(&default_alloc, pAllocator, sizeof(*instance), 8,
                              VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
        if (!instance)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(NULL, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        instance->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
 
@@ -478,13 +540,23 @@ VkResult radv_CreateInstance(
        instance->apiVersion = client_version;
        instance->physicalDeviceCount = -1;
 
+       instance->debug_flags = parse_debug_string(getenv("RADV_DEBUG"),
+                                                  radv_debug_options);
+
+       instance->perftest_flags = parse_debug_string(getenv("RADV_PERFTEST"),
+                                                  radv_perftest_options);
+
+
+       if (instance->debug_flags & RADV_DEBUG_STARTUP)
+               radv_logi("Created an instance");
+
        for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
                const char *ext_name = pCreateInfo->ppEnabledExtensionNames[i];
                int index = radv_get_instance_extension_index(ext_name);
 
                if (index < 0 || !radv_supported_instance_extensions.extensions[index]) {
                        vk_free2(&default_alloc, pAllocator, instance);
-                       return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
+                       return vk_error(instance, VK_ERROR_EXTENSION_NOT_PRESENT);
                }
 
                instance->enabled_extensions.extensions[index] = true;
@@ -493,29 +565,15 @@ VkResult radv_CreateInstance(
        result = vk_debug_report_instance_init(&instance->debug_report_callbacks);
        if (result != VK_SUCCESS) {
                vk_free2(&default_alloc, pAllocator, instance);
-               return vk_error(result);
+               return vk_error(instance, result);
        }
 
        _mesa_locale_init();
 
        VG(VALGRIND_CREATE_MEMPOOL(instance, 0, false));
 
-       instance->debug_flags = parse_debug_string(getenv("RADV_DEBUG"),
-                                                  radv_debug_options);
-
-       instance->perftest_flags = parse_debug_string(getenv("RADV_PERFTEST"),
-                                                  radv_perftest_options);
-
        radv_handle_per_app_options(instance, pCreateInfo->pApplicationInfo);
 
-       if (instance->debug_flags & RADV_DEBUG_NO_SISCHED) {
-               /* Disable sisched when the user requests it, this is mostly
-                * useful when the driver force-enable sisched for the given
-                * application.
-                */
-               instance->perftest_flags &= ~RADV_PERFTEST_SISCHED;
-       }
-
        *pInstance = radv_instance_to_handle(instance);
 
        return VK_SUCCESS;
@@ -554,8 +612,12 @@ radv_enumerate_devices(struct radv_instance *instance)
        instance->physicalDeviceCount = 0;
 
        max_devices = drmGetDevices2(0, devices, ARRAY_SIZE(devices));
+
+       if (instance->debug_flags & RADV_DEBUG_STARTUP)
+               radv_logi("Found %d drm nodes", max_devices);
+
        if (max_devices < 1)
-               return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
+               return vk_error(instance, VK_ERROR_INCOMPATIBLE_DRIVER);
 
        for (unsigned i = 0; i < (unsigned)max_devices; i++) {
                if (devices[i]->available_nodes & 1 << DRM_NODE_RENDER &&
@@ -637,6 +699,7 @@ void radv_GetPhysicalDeviceFeatures(
        VkPhysicalDevice                            physicalDevice,
        VkPhysicalDeviceFeatures*                   pFeatures)
 {
+       RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
        memset(pFeatures, 0, sizeof(*pFeatures));
 
        *pFeatures = (VkPhysicalDeviceFeatures) {
@@ -660,7 +723,8 @@ void radv_GetPhysicalDeviceFeatures(
                .alphaToOne                               = true,
                .multiViewport                            = true,
                .samplerAnisotropy                        = true,
-               .textureCompressionETC2                   = false,
+               .textureCompressionETC2                   = pdevice->rad_info.chip_class >= GFX9 ||
+                                                           pdevice->rad_info.family == CHIP_STONEY,
                .textureCompressionASTC_LDR               = false,
                .textureCompressionBC                     = true,
                .occlusionQueryPrecise                    = true,
@@ -670,7 +734,7 @@ void radv_GetPhysicalDeviceFeatures(
                .shaderTessellationAndGeometryPointSize   = true,
                .shaderImageGatherExtended                = true,
                .shaderStorageImageExtendedFormats        = true,
-               .shaderStorageImageMultisample            = false,
+               .shaderStorageImageMultisample            = pdevice->rad_info.chip_class >= VI,
                .shaderUniformBufferArrayDynamicIndexing  = true,
                .shaderSampledImageArrayDynamicIndexing   = true,
                .shaderStorageBufferArrayDynamicIndexing  = true,
@@ -681,7 +745,7 @@ void radv_GetPhysicalDeviceFeatures(
                .shaderCullDistance                       = true,
                .shaderFloat64                            = true,
                .shaderInt64                              = true,
-               .shaderInt16                              = false,
+               .shaderInt16                              = pdevice->rad_info.chip_class >= GFX9,
                .sparseBinding                            = true,
                .variableMultisampleRate                  = true,
                .inheritedQueries                         = true,
@@ -690,18 +754,19 @@ void radv_GetPhysicalDeviceFeatures(
 
 void radv_GetPhysicalDeviceFeatures2(
        VkPhysicalDevice                            physicalDevice,
-       VkPhysicalDeviceFeatures2KHR               *pFeatures)
+       VkPhysicalDeviceFeatures2                  *pFeatures)
 {
+       RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
        vk_foreach_struct(ext, pFeatures->pNext) {
                switch (ext->sType) {
-               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR: {
-                       VkPhysicalDeviceVariablePointerFeaturesKHR *features = (void *)ext;
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES: {
+                       VkPhysicalDeviceVariablePointerFeatures *features = (void *)ext;
                        features->variablePointersStorageBuffer = true;
                        features->variablePointers = false;
                        break;
                }
-               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR: {
-                       VkPhysicalDeviceMultiviewFeaturesKHR *features = (VkPhysicalDeviceMultiviewFeaturesKHR*)ext;
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES: {
+                       VkPhysicalDeviceMultiviewFeatures *features = (VkPhysicalDeviceMultiviewFeatures*)ext;
                        features->multiview = true;
                        features->multiviewGeometryShader = true;
                        features->multiviewTessellationShader = true;
@@ -722,10 +787,11 @@ void radv_GetPhysicalDeviceFeatures2(
                case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES: {
                        VkPhysicalDevice16BitStorageFeatures *features =
                            (VkPhysicalDevice16BitStorageFeatures*)ext;
-                       features->storageBuffer16BitAccess = false;
-                       features->uniformAndStorageBuffer16BitAccess = false;
-                       features->storagePushConstant16 = false;
-                       features->storageInputOutput16 = false;
+                       bool enabled = pdevice->rad_info.chip_class >= VI;
+                       features->storageBuffer16BitAccess = enabled;
+                       features->uniformAndStorageBuffer16BitAccess = enabled;
+                       features->storagePushConstant16 = enabled;
+                       features->storageInputOutput16 = enabled;
                        break;
                }
                case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: {
@@ -734,6 +800,58 @@ void radv_GetPhysicalDeviceFeatures2(
                        features->samplerYcbcrConversion = false;
                        break;
                }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT: {
+                       VkPhysicalDeviceDescriptorIndexingFeaturesEXT *features =
+                               (VkPhysicalDeviceDescriptorIndexingFeaturesEXT*)ext;
+                       features->shaderInputAttachmentArrayDynamicIndexing = true;
+                       features->shaderUniformTexelBufferArrayDynamicIndexing = true;
+                       features->shaderStorageTexelBufferArrayDynamicIndexing = true;
+                       features->shaderUniformBufferArrayNonUniformIndexing = false;
+                       features->shaderSampledImageArrayNonUniformIndexing = false;
+                       features->shaderStorageBufferArrayNonUniformIndexing = false;
+                       features->shaderStorageImageArrayNonUniformIndexing = false;
+                       features->shaderInputAttachmentArrayNonUniformIndexing = false;
+                       features->shaderUniformTexelBufferArrayNonUniformIndexing = false;
+                       features->shaderStorageTexelBufferArrayNonUniformIndexing = false;
+                       features->descriptorBindingUniformBufferUpdateAfterBind = true;
+                       features->descriptorBindingSampledImageUpdateAfterBind = true;
+                       features->descriptorBindingStorageImageUpdateAfterBind = true;
+                       features->descriptorBindingStorageBufferUpdateAfterBind = true;
+                       features->descriptorBindingUniformTexelBufferUpdateAfterBind = true;
+                       features->descriptorBindingStorageTexelBufferUpdateAfterBind = true;
+                       features->descriptorBindingUpdateUnusedWhilePending = true;
+                       features->descriptorBindingPartiallyBound = true;
+                       features->descriptorBindingVariableDescriptorCount = true;
+                       features->runtimeDescriptorArray = true;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT: {
+                       VkPhysicalDeviceConditionalRenderingFeaturesEXT *features =
+                               (VkPhysicalDeviceConditionalRenderingFeaturesEXT*)ext;
+                       features->conditionalRendering = true;
+                       features->inheritedConditionalRendering = false;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT: {
+                       VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *features =
+                               (VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *)ext;
+                       features->vertexAttributeInstanceRateDivisor = VK_TRUE;
+                       features->vertexAttributeInstanceRateZeroDivisor = VK_TRUE;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT: {
+                       VkPhysicalDeviceTransformFeedbackFeaturesEXT *features =
+                               (VkPhysicalDeviceTransformFeedbackFeaturesEXT*)ext;
+                       features->transformFeedback = true;
+                       features->geometryStreams = true;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES_EXT: {
+                       VkPhysicalDeviceScalarBlockLayoutFeaturesEXT *features =
+                               (VkPhysicalDeviceScalarBlockLayoutFeaturesEXT *)ext;
+                       features->scalarBlockLayout = pdevice->rad_info.chip_class >= CIK;
+                       break;
+               }
                default:
                        break;
                }
@@ -821,9 +939,9 @@ void radv_GetPhysicalDeviceProperties(
                        2048,
                        2048
                },
-               .subPixelPrecisionBits                    = 4 /* FIXME */,
-               .subTexelPrecisionBits                    = 4 /* FIXME */,
-               .mipmapPrecisionBits                      = 4 /* FIXME */,
+               .subPixelPrecisionBits                    = 8,
+               .subTexelPrecisionBits                    = 8,
+               .mipmapPrecisionBits                      = 8,
                .maxDrawIndexedIndexValue                 = UINT32_MAX,
                .maxDrawIndirectCount                     = UINT32_MAX,
                .maxSamplerLodBias                        = 16,
@@ -831,7 +949,7 @@ void radv_GetPhysicalDeviceProperties(
                .maxViewports                             = MAX_VIEWPORTS,
                .maxViewportDimensions                    = { (1 << 14), (1 << 14) },
                .viewportBoundsRange                      = { INT16_MIN, INT16_MAX },
-               .viewportSubPixelBits                     = 13, /* We take a float? */
+               .viewportSubPixelBits                     = 8,
                .minMemoryMapAlignment                    = 4096, /* A page */
                .minTexelBufferOffsetAlignment            = 1,
                .minUniformBufferOffsetAlignment          = 4,
@@ -855,14 +973,14 @@ void radv_GetPhysicalDeviceProperties(
                .sampledImageIntegerSampleCounts          = VK_SAMPLE_COUNT_1_BIT,
                .sampledImageDepthSampleCounts            = sample_counts,
                .sampledImageStencilSampleCounts          = sample_counts,
-               .storageImageSampleCounts                 = VK_SAMPLE_COUNT_1_BIT,
+               .storageImageSampleCounts                 = pdevice->rad_info.chip_class >= VI ? sample_counts : VK_SAMPLE_COUNT_1_BIT,
                .maxSampleMaskWords                       = 1,
                .timestampComputeAndGraphics              = true,
                .timestampPeriod                          = 1000000.0 / pdevice->rad_info.clock_crystal_freq,
                .maxClipDistances                         = 8,
                .maxCullDistances                         = 8,
                .maxCombinedClipAndCullDistances          = 8,
-               .discreteQueuePriorities                  = 1,
+               .discreteQueuePriorities                  = 2,
                .pointSizeRange                           = { 0.125, 255.875 },
                .lineWidthRange                           = { 0.0, 7.9921875 },
                .pointSizeGranularity                     = (1.0 / 8.0),
@@ -890,7 +1008,7 @@ void radv_GetPhysicalDeviceProperties(
 
 void radv_GetPhysicalDeviceProperties2(
        VkPhysicalDevice                            physicalDevice,
-       VkPhysicalDeviceProperties2KHR             *pProperties)
+       VkPhysicalDeviceProperties2                *pProperties)
 {
        RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
        radv_GetPhysicalDeviceProperties(physicalDevice, &pProperties->properties);
@@ -903,23 +1021,23 @@ void radv_GetPhysicalDeviceProperties2(
                        properties->maxPushDescriptors = MAX_PUSH_DESCRIPTORS;
                        break;
                }
-               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR: {
-                       VkPhysicalDeviceIDPropertiesKHR *properties = (VkPhysicalDeviceIDPropertiesKHR*)ext;
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES: {
+                       VkPhysicalDeviceIDProperties *properties = (VkPhysicalDeviceIDProperties*)ext;
                        memcpy(properties->driverUUID, pdevice->driver_uuid, VK_UUID_SIZE);
                        memcpy(properties->deviceUUID, pdevice->device_uuid, VK_UUID_SIZE);
                        properties->deviceLUIDValid = false;
                        break;
                }
-               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES_KHR: {
-                       VkPhysicalDeviceMultiviewPropertiesKHR *properties = (VkPhysicalDeviceMultiviewPropertiesKHR*)ext;
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES: {
+                       VkPhysicalDeviceMultiviewProperties *properties = (VkPhysicalDeviceMultiviewProperties*)ext;
                        properties->maxMultiviewViewCount = MAX_VIEWS;
                        properties->maxMultiviewInstanceIndex = INT_MAX;
                        break;
                }
-               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR: {
-                       VkPhysicalDevicePointClippingPropertiesKHR *properties =
-                           (VkPhysicalDevicePointClippingPropertiesKHR*)ext;
-                       properties->pointClippingBehavior = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES_KHR;
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES: {
+                       VkPhysicalDevicePointClippingProperties *properties =
+                           (VkPhysicalDevicePointClippingProperties*)ext;
+                       properties->pointClippingBehavior = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES;
                        break;
                }
                case  VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT: {
@@ -939,8 +1057,18 @@ void radv_GetPhysicalDeviceProperties2(
                            (VkPhysicalDeviceSubgroupProperties*)ext;
                        properties->subgroupSize = 64;
                        properties->supportedStages = VK_SHADER_STAGE_ALL;
-                       properties->supportedOperations = VK_SUBGROUP_FEATURE_BASIC_BIT;
-                       properties->quadOperationsInAllStages = false;
+                       properties->supportedOperations =
+                                                       VK_SUBGROUP_FEATURE_BASIC_BIT |
+                                                       VK_SUBGROUP_FEATURE_BALLOT_BIT |
+                                                       VK_SUBGROUP_FEATURE_QUAD_BIT |
+                                                       VK_SUBGROUP_FEATURE_VOTE_BIT;
+                       if (pdevice->rad_info.chip_class >= VI) {
+                               properties->supportedOperations |=
+                                                       VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
+                                                       VK_SUBGROUP_FEATURE_SHUFFLE_BIT |
+                                                       VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT;
+                       }
+                       properties->quadOperationsInAllStages = true;
                        break;
                }
                case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES: {
@@ -971,16 +1099,15 @@ void radv_GetPhysicalDeviceProperties2(
                        properties->shaderArraysPerEngineCount =
                                pdevice->rad_info.max_sh_per_se;
                        properties->computeUnitsPerShaderArray =
-                               pdevice->rad_info.num_good_compute_units /
-                                       (pdevice->rad_info.max_se *
-                                        pdevice->rad_info.max_sh_per_se);
+                               pdevice->rad_info.num_good_cu_per_sh;
                        properties->simdPerComputeUnit = 4;
                        properties->wavefrontsPerSimd =
                                pdevice->rad_info.family == CHIP_TONGA ||
                                pdevice->rad_info.family == CHIP_ICELAND ||
                                pdevice->rad_info.family == CHIP_POLARIS10 ||
                                pdevice->rad_info.family == CHIP_POLARIS11 ||
-                               pdevice->rad_info.family == CHIP_POLARIS12 ? 8 : 10;
+                               pdevice->rad_info.family == CHIP_POLARIS12 ||
+                               pdevice->rad_info.family == CHIP_VEGAM ? 8 : 10;
                        properties->wavefrontSize = 64;
 
                        /* SGPR. */
@@ -1001,6 +1128,114 @@ void radv_GetPhysicalDeviceProperties2(
                        properties->vgprAllocationGranularity = 4;
                        break;
                }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT: {
+                       VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *properties =
+                               (VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT *)ext;
+                       properties->maxVertexAttribDivisor = UINT32_MAX;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES_EXT: {
+                       VkPhysicalDeviceDescriptorIndexingPropertiesEXT *properties =
+                               (VkPhysicalDeviceDescriptorIndexingPropertiesEXT*)ext;
+                       properties->maxUpdateAfterBindDescriptorsInAllPools = UINT32_MAX / 64;
+                       properties->shaderUniformBufferArrayNonUniformIndexingNative = false;
+                       properties->shaderSampledImageArrayNonUniformIndexingNative = false;
+                       properties->shaderStorageBufferArrayNonUniformIndexingNative = false;
+                       properties->shaderStorageImageArrayNonUniformIndexingNative = false;
+                       properties->shaderInputAttachmentArrayNonUniformIndexingNative = false;
+                       properties->robustBufferAccessUpdateAfterBind = false;
+                       properties->quadDivergentImplicitLod = false;
+
+                       size_t max_descriptor_set_size = ((1ull << 31) - 16 * MAX_DYNAMIC_BUFFERS) /
+                                 (32 /* uniform buffer, 32 due to potential space wasted on alignment */ +
+                                  32 /* storage buffer, 32 due to potential space wasted on alignment */ +
+                                  32 /* sampler, largest when combined with image */ +
+                                  64 /* sampled image */ +
+                                  64 /* storage image */);
+                       properties->maxPerStageDescriptorUpdateAfterBindSamplers = max_descriptor_set_size;
+                       properties->maxPerStageDescriptorUpdateAfterBindUniformBuffers = max_descriptor_set_size;
+                       properties->maxPerStageDescriptorUpdateAfterBindStorageBuffers = max_descriptor_set_size;
+                       properties->maxPerStageDescriptorUpdateAfterBindSampledImages = max_descriptor_set_size;
+                       properties->maxPerStageDescriptorUpdateAfterBindStorageImages = max_descriptor_set_size;
+                       properties->maxPerStageDescriptorUpdateAfterBindInputAttachments = max_descriptor_set_size;
+                       properties->maxPerStageUpdateAfterBindResources = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindSamplers = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindUniformBuffers = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindUniformBuffersDynamic = MAX_DYNAMIC_UNIFORM_BUFFERS;
+                       properties->maxDescriptorSetUpdateAfterBindStorageBuffers = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindStorageBuffersDynamic = MAX_DYNAMIC_STORAGE_BUFFERS;
+                       properties->maxDescriptorSetUpdateAfterBindSampledImages = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindStorageImages = max_descriptor_set_size;
+                       properties->maxDescriptorSetUpdateAfterBindInputAttachments = max_descriptor_set_size;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES: {
+                       VkPhysicalDeviceProtectedMemoryProperties *properties =
+                               (VkPhysicalDeviceProtectedMemoryProperties *)ext;
+                       properties->protectedNoFault = false;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT: {
+                       VkPhysicalDeviceConservativeRasterizationPropertiesEXT *properties =
+                               (VkPhysicalDeviceConservativeRasterizationPropertiesEXT *)ext;
+                       properties->primitiveOverestimationSize = 0;
+                       properties->maxExtraPrimitiveOverestimationSize = 0;
+                       properties->extraPrimitiveOverestimationSizeGranularity = 0;
+                       properties->primitiveUnderestimation = VK_FALSE;
+                       properties->conservativePointAndLineRasterization = VK_FALSE;
+                       properties->degenerateTrianglesRasterized = VK_FALSE;
+                       properties->degenerateLinesRasterized = VK_FALSE;
+                       properties->fullyCoveredFragmentShaderInputVariable = VK_FALSE;
+                       properties->conservativeRasterizationPostDepthCoverage = VK_FALSE;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT: {
+                       VkPhysicalDevicePCIBusInfoPropertiesEXT *properties =
+                               (VkPhysicalDevicePCIBusInfoPropertiesEXT *)ext;
+                       properties->pciDomain = pdevice->bus_info.domain;
+                       properties->pciBus = pdevice->bus_info.bus;
+                       properties->pciDevice = pdevice->bus_info.dev;
+                       properties->pciFunction = pdevice->bus_info.func;
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES_KHR: {
+                       VkPhysicalDeviceDriverPropertiesKHR *driver_props =
+                               (VkPhysicalDeviceDriverPropertiesKHR *) ext;
+
+                       driver_props->driverID = VK_DRIVER_ID_MESA_RADV_KHR;
+                       memset(driver_props->driverName, 0, VK_MAX_DRIVER_NAME_SIZE_KHR);
+                       strcpy(driver_props->driverName, "radv");
+
+                       memset(driver_props->driverInfo, 0, VK_MAX_DRIVER_INFO_SIZE_KHR);
+                       snprintf(driver_props->driverInfo, VK_MAX_DRIVER_INFO_SIZE_KHR,
+                               "Mesa " PACKAGE_VERSION MESA_GIT_SHA1
+                               " (LLVM %d.%d.%d)",
+                                (HAVE_LLVM >> 8) & 0xff, HAVE_LLVM & 0xff,
+                                MESA_LLVM_VERSION_PATCH);
+
+                       driver_props->conformanceVersion = (VkConformanceVersionKHR) {
+                               .major = 1,
+                               .minor = 1,
+                               .subminor = 2,
+                               .patch = 0,
+                       };
+                       break;
+               }
+               case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT: {
+                       VkPhysicalDeviceTransformFeedbackPropertiesEXT *properties =
+                               (VkPhysicalDeviceTransformFeedbackPropertiesEXT *)ext;
+                       properties->maxTransformFeedbackStreams = MAX_SO_STREAMS;
+                       properties->maxTransformFeedbackBuffers = MAX_SO_BUFFERS;
+                       properties->maxTransformFeedbackBufferSize = UINT32_MAX;
+                       properties->maxTransformFeedbackStreamDataSize = 512;
+                       properties->maxTransformFeedbackBufferDataSize = UINT32_MAX;
+                       properties->maxTransformFeedbackBufferDataStride = 512;
+                       properties->transformFeedbackQueries = true;
+                       properties->transformFeedbackStreamsLinesTriangles = false;
+                       properties->transformFeedbackRasterizationStreamSelect = false;
+                       properties->transformFeedbackDraw = true;
+                       break;
+               }
                default:
                        break;
                }
@@ -1079,7 +1314,7 @@ void radv_GetPhysicalDeviceQueueFamilyProperties(
 void radv_GetPhysicalDeviceQueueFamilyProperties2(
        VkPhysicalDevice                            physicalDevice,
        uint32_t*                                   pCount,
-       VkQueueFamilyProperties2KHR                *pQueueFamilyProperties)
+       VkQueueFamilyProperties2                   *pQueueFamilyProperties)
 {
        RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
        if (!pQueueFamilyProperties) {
@@ -1106,7 +1341,7 @@ void radv_GetPhysicalDeviceMemoryProperties(
 
 void radv_GetPhysicalDeviceMemoryProperties2(
        VkPhysicalDevice                            physicalDevice,
-       VkPhysicalDeviceMemoryProperties2KHR       *pMemoryProperties)
+       VkPhysicalDeviceMemoryProperties2          *pMemoryProperties)
 {
        return radv_GetPhysicalDeviceMemoryProperties(physicalDevice,
                                                      &pMemoryProperties->memoryProperties);
@@ -1114,7 +1349,7 @@ void radv_GetPhysicalDeviceMemoryProperties2(
 
 VkResult radv_GetMemoryHostPointerPropertiesEXT(
        VkDevice                                    _device,
-       VkExternalMemoryHandleTypeFlagBitsKHR       handleType,
+       VkExternalMemoryHandleTypeFlagBits          handleType,
        const void                                 *pHostPointer,
        VkMemoryHostPointerPropertiesEXT           *pMemoryHostPointerProperties)
 {
@@ -1135,7 +1370,7 @@ VkResult radv_GetMemoryHostPointerPropertiesEXT(
                return VK_SUCCESS;
        }
        default:
-               return VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR;
+               return VK_ERROR_INVALID_EXTERNAL_HANDLE;
        }
 }
 
@@ -1176,7 +1411,7 @@ radv_queue_init(struct radv_device *device, struct radv_queue *queue,
 
        queue->hw_ctx = device->ws->ctx_create(device->ws, queue->priority);
        if (!queue->hw_ctx)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        return VK_SUCCESS;
 }
@@ -1208,37 +1443,71 @@ radv_queue_finish(struct radv_queue *queue)
 }
 
 static void
-radv_device_init_gs_info(struct radv_device *device)
+radv_bo_list_init(struct radv_bo_list *bo_list)
 {
-       switch (device->physical_device->rad_info.family) {
-       case CHIP_OLAND:
-       case CHIP_HAINAN:
-       case CHIP_KAVERI:
-       case CHIP_KABINI:
-       case CHIP_MULLINS:
-       case CHIP_ICELAND:
-       case CHIP_CARRIZO:
-       case CHIP_STONEY:
-               device->gs_table_depth = 16;
-               return;
-       case CHIP_TAHITI:
-       case CHIP_PITCAIRN:
-       case CHIP_VERDE:
-       case CHIP_BONAIRE:
-       case CHIP_HAWAII:
-       case CHIP_TONGA:
-       case CHIP_FIJI:
-       case CHIP_POLARIS10:
-       case CHIP_POLARIS11:
-       case CHIP_POLARIS12:
-       case CHIP_VEGA10:
-       case CHIP_VEGA12:
-       case CHIP_RAVEN:
-               device->gs_table_depth = 32;
+       pthread_mutex_init(&bo_list->mutex, NULL);
+       bo_list->list.count = bo_list->capacity = 0;
+       bo_list->list.bos = NULL;
+}
+
+static void
+radv_bo_list_finish(struct radv_bo_list *bo_list)
+{
+       free(bo_list->list.bos);
+       pthread_mutex_destroy(&bo_list->mutex);
+}
+
+static VkResult radv_bo_list_add(struct radv_device *device,
+                                struct radeon_winsys_bo *bo)
+{
+       struct radv_bo_list *bo_list = &device->bo_list;
+
+       if (unlikely(!device->use_global_bo_list))
+               return VK_SUCCESS;
+
+       pthread_mutex_lock(&bo_list->mutex);
+       if (bo_list->list.count == bo_list->capacity) {
+               unsigned capacity = MAX2(4, bo_list->capacity * 2);
+               void *data = realloc(bo_list->list.bos, capacity * sizeof(struct radeon_winsys_bo*));
+
+               if (!data) {
+                       pthread_mutex_unlock(&bo_list->mutex);
+                       return VK_ERROR_OUT_OF_HOST_MEMORY;
+               }
+
+               bo_list->list.bos = (struct radeon_winsys_bo**)data;
+               bo_list->capacity = capacity;
+       }
+
+       bo_list->list.bos[bo_list->list.count++] = bo;
+       pthread_mutex_unlock(&bo_list->mutex);
+       return VK_SUCCESS;
+}
+
+static void radv_bo_list_remove(struct radv_device *device,
+                               struct radeon_winsys_bo *bo)
+{
+       struct radv_bo_list *bo_list = &device->bo_list;
+
+       if (unlikely(!device->use_global_bo_list))
                return;
-       default:
-               unreachable("unknown GPU");
+
+       pthread_mutex_lock(&bo_list->mutex);
+       for(unsigned i = 0; i < bo_list->list.count; ++i) {
+               if (bo_list->list.bos[i] == bo) {
+                       bo_list->list.bos[i] = bo_list->list.bos[bo_list->list.count - 1];
+                       --bo_list->list.count;
+                       break;
+               }
        }
+       pthread_mutex_unlock(&bo_list->mutex);
+}
+
+static void
+radv_device_init_gs_info(struct radv_device *device)
+{
+       device->gs_table_depth = ac_get_gs_table_depth(device->physical_device->rad_info.chip_class,
+                                                      device->physical_device->rad_info.family);
 }
 
 static int radv_get_device_extension_index(const char *name)
@@ -1250,6 +1519,28 @@ static int radv_get_device_extension_index(const char *name)
        return -1;
 }
 
+static int
+radv_get_int_debug_option(const char *name, int default_value)
+{
+       const char *str;
+       int result;
+
+       str = getenv(name);
+       if (!str) {
+               result = default_value;
+       } else {
+               char *endptr;
+
+               result = strtol(str, &endptr, 0);
+               if (str == endptr) {
+                       /* No digits founs. */
+                       result = default_value;
+               }
+       }
+
+       return result;
+}
+
 VkResult radv_CreateDevice(
        VkPhysicalDevice                            physicalDevice,
        const VkDeviceCreateInfo*                   pCreateInfo,
@@ -1271,7 +1562,7 @@ VkResult radv_CreateDevice(
                unsigned num_features = sizeof(VkPhysicalDeviceFeatures) / sizeof(VkBool32);
                for (uint32_t i = 0; i < num_features; i++) {
                        if (enabled_feature[i] && !supported_feature[i])
-                               return vk_error(VK_ERROR_FEATURE_NOT_PRESENT);
+                               return vk_error(physical_device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
                }
        }
 
@@ -1279,7 +1570,7 @@ VkResult radv_CreateDevice(
                            sizeof(*device), 8,
                            VK_SYSTEM_ALLOCATION_SCOPE_DEVICE);
        if (!device)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(physical_device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        device->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
        device->instance = physical_device->instance;
@@ -1296,7 +1587,7 @@ VkResult radv_CreateDevice(
                int index = radv_get_device_extension_index(ext_name);
                if (index < 0 || !physical_device->supported_extensions.extensions[index]) {
                        vk_free(&device->alloc, device);
-                       return vk_error(VK_ERROR_EXTENSION_NOT_PRESENT);
+                       return vk_error(physical_device->instance, VK_ERROR_EXTENSION_NOT_PRESENT);
                }
 
                device->enabled_extensions.extensions[index] = true;
@@ -1304,9 +1595,17 @@ VkResult radv_CreateDevice(
 
        keep_shader_info = device->enabled_extensions.AMD_shader_info;
 
+       /* With update after bind we can't attach bo's to the command buffer
+        * from the descriptor set anymore, so we have to use a global BO list.
+        */
+       device->use_global_bo_list =
+               device->enabled_extensions.EXT_descriptor_indexing;
+
        mtx_init(&device->shader_slab_mutex, mtx_plain);
        list_inithead(&device->shader_slabs);
 
+       radv_bo_list_init(&device->bo_list);
+
        for (unsigned i = 0; i < pCreateInfo->queueCreateInfoCount; i++) {
                const VkDeviceQueueCreateInfo *queue_create = &pCreateInfo->pQueueCreateInfos[i];
                uint32_t qfi = queue_create->queueFamilyIndex;
@@ -1336,22 +1635,22 @@ VkResult radv_CreateDevice(
        }
 
        device->pbb_allowed = device->physical_device->rad_info.chip_class >= GFX9 &&
-                             (device->instance->perftest_flags & RADV_PERFTEST_BINNING);
+                             !(device->instance->debug_flags & RADV_DEBUG_NOBINNING);
 
        /* Disabled and not implemented for now. */
-       device->dfsm_allowed = device->pbb_allowed && false;
+       device->dfsm_allowed = device->pbb_allowed &&
+                              (device->physical_device->rad_info.family == CHIP_RAVEN ||
+                               device->physical_device->rad_info.family == CHIP_RAVEN2);
 
 #ifdef ANDROID
        device->always_use_syncobj = device->physical_device->rad_info.has_syncobj_wait_for_submit;
 #endif
 
-       device->llvm_supports_spill = true;
-
        /* The maximum number of scratch waves. Scratch space isn't divided
         * evenly between CUs. The number is only a function of the number of CUs.
         * We can decrease the constant to decrease the scratch buffer size.
         *
-        * sctx->scratch_waves must be >= the maximum posible size of
+        * sctx->scratch_waves must be >= the maximum possible size of
         * 1 threadgroup, so that the hw doesn't hang from being unable
         * to start any.
         *
@@ -1388,6 +1687,10 @@ VkResult radv_CreateDevice(
                if (!radv_init_trace(device))
                        goto fail;
 
+               fprintf(stderr, "*****************************************************************************\n");
+               fprintf(stderr, "* WARNING: RADV_TRACE_FILE is costly and should only be used for debugging! *\n");
+               fprintf(stderr, "*****************************************************************************\n");
+
                fprintf(stderr, "Trace file will be dumped to %s\n", filename);
                radv_dump_enabled_options(device, stderr);
        }
@@ -1433,12 +1736,21 @@ VkResult radv_CreateDevice(
 
        device->mem_cache = radv_pipeline_cache_from_handle(pc);
 
+       device->force_aniso =
+               MIN2(16, radv_get_int_debug_option("RADV_TEX_ANISO", -1));
+       if (device->force_aniso >= 0) {
+               fprintf(stderr, "radv: Forcing anisotropy filter to %ix\n",
+                       1 << util_logbase2(device->force_aniso));
+       }
+
        *pDevice = radv_device_to_handle(device);
        return VK_SUCCESS;
 
 fail_meta:
        radv_device_finish_meta(device);
 fail:
+       radv_bo_list_finish(&device->bo_list);
+
        if (device->trace_bo)
                device->ws->buffer_destroy(device->trace_bo);
 
@@ -1486,6 +1798,7 @@ void radv_DestroyDevice(
 
        radv_destroy_shader_slabs(device);
 
+       radv_bo_list_finish(&device->bo_list);
        vk_free(&device->alloc, device);
 }
 
@@ -1499,7 +1812,7 @@ VkResult radv_EnumerateInstanceLayerProperties(
        }
 
        /* None supported at this time */
-       return vk_error(VK_ERROR_LAYER_NOT_PRESENT);
+       return vk_error(NULL, VK_ERROR_LAYER_NOT_PRESENT);
 }
 
 VkResult radv_EnumerateDeviceLayerProperties(
@@ -1513,7 +1826,7 @@ VkResult radv_EnumerateDeviceLayerProperties(
        }
 
        /* None supported at this time */
-       return vk_error(VK_ERROR_LAYER_NOT_PRESENT);
+       return vk_error(NULL, VK_ERROR_LAYER_NOT_PRESENT);
 }
 
 void radv_GetDeviceQueue2(
@@ -1708,20 +2021,39 @@ radv_get_hs_offchip_param(struct radv_device *device, uint32_t *max_offchip_buff
                device->physical_device->rad_info.family != CHIP_CARRIZO &&
                device->physical_device->rad_info.family != CHIP_STONEY;
        unsigned max_offchip_buffers_per_se = double_offchip_buffers ? 128 : 64;
-       unsigned max_offchip_buffers = max_offchip_buffers_per_se *
-               device->physical_device->rad_info.max_se;
+       unsigned max_offchip_buffers;
        unsigned offchip_granularity;
        unsigned hs_offchip_param;
-       switch (device->tess_offchip_block_dw_size) {
-       default:
-               assert(0);
-               /* fall through */
-       case 8192:
-               offchip_granularity = V_03093C_X_8K_DWORDS;
-               break;
-       case 4096:
+
+       /*
+        * Per RadeonSI:
+        * This must be one less than the maximum number due to a hw limitation.
+         * Various hardware bugs in SI, CIK, and GFX9 need this.
+        *
+        * Per AMDVLK:
+        * Vega10 should limit max_offchip_buffers to 508 (4 * 127).
+        * Gfx7 should limit max_offchip_buffers to 508
+        * Gfx6 should limit max_offchip_buffers to 126 (2 * 63)
+        *
+        * Follow AMDVLK here.
+        */
+       if (device->physical_device->rad_info.family == CHIP_VEGA10 ||
+           device->physical_device->rad_info.chip_class == CIK ||
+           device->physical_device->rad_info.chip_class == SI)
+               --max_offchip_buffers_per_se;
+
+       max_offchip_buffers = max_offchip_buffers_per_se *
+               device->physical_device->rad_info.max_se;
+
+       /* Hawaii has a bug with offchip buffers > 256 that can be worked
+        * around by setting 4K granularity.
+        */
+       if (device->tess_offchip_block_dw_size == 4096) {
+               assert(device->physical_device->rad_info.family == CHIP_HAWAII);
                offchip_granularity = V_03093C_X_4K_DWORDS;
-               break;
+       } else {
+               assert(device->tess_offchip_block_dw_size == 8192);
+               offchip_granularity = V_03093C_X_8K_DWORDS;
        }
 
        switch (device->physical_device->rad_info.chip_class) {
@@ -1750,6 +2082,153 @@ radv_get_hs_offchip_param(struct radv_device *device, uint32_t *max_offchip_buff
        return hs_offchip_param;
 }
 
+static void
+radv_emit_gs_ring_sizes(struct radv_queue *queue, struct radeon_cmdbuf *cs,
+                       struct radeon_winsys_bo *esgs_ring_bo,
+                       uint32_t esgs_ring_size,
+                       struct radeon_winsys_bo *gsvs_ring_bo,
+                       uint32_t gsvs_ring_size)
+{
+       if (!esgs_ring_bo && !gsvs_ring_bo)
+               return;
+
+       if (esgs_ring_bo)
+               radv_cs_add_buffer(queue->device->ws, cs, esgs_ring_bo);
+
+       if (gsvs_ring_bo)
+               radv_cs_add_buffer(queue->device->ws, cs, gsvs_ring_bo);
+
+       if (queue->device->physical_device->rad_info.chip_class >= CIK) {
+               radeon_set_uconfig_reg_seq(cs, R_030900_VGT_ESGS_RING_SIZE, 2);
+               radeon_emit(cs, esgs_ring_size >> 8);
+               radeon_emit(cs, gsvs_ring_size >> 8);
+       } else {
+               radeon_set_config_reg_seq(cs, R_0088C8_VGT_ESGS_RING_SIZE, 2);
+               radeon_emit(cs, esgs_ring_size >> 8);
+               radeon_emit(cs, gsvs_ring_size >> 8);
+       }
+}
+
+static void
+radv_emit_tess_factor_ring(struct radv_queue *queue, struct radeon_cmdbuf *cs,
+                          unsigned hs_offchip_param, unsigned tf_ring_size,
+                          struct radeon_winsys_bo *tess_rings_bo)
+{
+       uint64_t tf_va;
+
+       if (!tess_rings_bo)
+               return;
+
+       tf_va = radv_buffer_get_va(tess_rings_bo);
+
+       radv_cs_add_buffer(queue->device->ws, cs, tess_rings_bo);
+
+       if (queue->device->physical_device->rad_info.chip_class >= CIK) {
+               radeon_set_uconfig_reg(cs, R_030938_VGT_TF_RING_SIZE,
+                                      S_030938_SIZE(tf_ring_size / 4));
+               radeon_set_uconfig_reg(cs, R_030940_VGT_TF_MEMORY_BASE,
+                                      tf_va >> 8);
+               if (queue->device->physical_device->rad_info.chip_class >= GFX9) {
+                       radeon_set_uconfig_reg(cs, R_030944_VGT_TF_MEMORY_BASE_HI,
+                                              S_030944_BASE_HI(tf_va >> 40));
+               }
+               radeon_set_uconfig_reg(cs, R_03093C_VGT_HS_OFFCHIP_PARAM,
+                                      hs_offchip_param);
+       } else {
+               radeon_set_config_reg(cs, R_008988_VGT_TF_RING_SIZE,
+                                     S_008988_SIZE(tf_ring_size / 4));
+               radeon_set_config_reg(cs, R_0089B8_VGT_TF_MEMORY_BASE,
+                                     tf_va >> 8);
+               radeon_set_config_reg(cs, R_0089B0_VGT_HS_OFFCHIP_PARAM,
+                                    hs_offchip_param);
+       }
+}
+
+static void
+radv_emit_compute_scratch(struct radv_queue *queue, struct radeon_cmdbuf *cs,
+                         struct radeon_winsys_bo *compute_scratch_bo)
+{
+       uint64_t scratch_va;
+
+       if (!compute_scratch_bo)
+               return;
+
+       scratch_va = radv_buffer_get_va(compute_scratch_bo);
+
+       radv_cs_add_buffer(queue->device->ws, cs, compute_scratch_bo);
+
+       radeon_set_sh_reg_seq(cs, R_00B900_COMPUTE_USER_DATA_0, 2);
+       radeon_emit(cs, scratch_va);
+       radeon_emit(cs, S_008F04_BASE_ADDRESS_HI(scratch_va >> 32) |
+                       S_008F04_SWIZZLE_ENABLE(1));
+}
+
+static void
+radv_emit_global_shader_pointers(struct radv_queue *queue,
+                                struct radeon_cmdbuf *cs,
+                                struct radeon_winsys_bo *descriptor_bo)
+{
+       uint64_t va;
+
+       if (!descriptor_bo)
+               return;
+
+       va = radv_buffer_get_va(descriptor_bo);
+
+       radv_cs_add_buffer(queue->device->ws, cs, descriptor_bo);
+
+       if (queue->device->physical_device->rad_info.chip_class >= GFX9) {
+               uint32_t regs[] = {R_00B030_SPI_SHADER_USER_DATA_PS_0,
+                                  R_00B130_SPI_SHADER_USER_DATA_VS_0,
+                                  R_00B208_SPI_SHADER_USER_DATA_ADDR_LO_GS,
+                                  R_00B408_SPI_SHADER_USER_DATA_ADDR_LO_HS};
+
+               for (int i = 0; i < ARRAY_SIZE(regs); ++i) {
+                       radv_emit_shader_pointer(queue->device, cs, regs[i],
+                                                va, true);
+               }
+       } else {
+               uint32_t regs[] = {R_00B030_SPI_SHADER_USER_DATA_PS_0,
+                                  R_00B130_SPI_SHADER_USER_DATA_VS_0,
+                                  R_00B230_SPI_SHADER_USER_DATA_GS_0,
+                                  R_00B330_SPI_SHADER_USER_DATA_ES_0,
+                                  R_00B430_SPI_SHADER_USER_DATA_HS_0,
+                                  R_00B530_SPI_SHADER_USER_DATA_LS_0};
+
+               for (int i = 0; i < ARRAY_SIZE(regs); ++i) {
+                       radv_emit_shader_pointer(queue->device, cs, regs[i],
+                                                va, true);
+               }
+       }
+}
+
+static void
+radv_init_graphics_state(struct radeon_cmdbuf *cs, struct radv_queue *queue)
+{
+       struct radv_device *device = queue->device;
+
+       if (device->gfx_init) {
+               uint64_t va = radv_buffer_get_va(device->gfx_init);
+
+               radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
+               radeon_emit(cs, va);
+               radeon_emit(cs, va >> 32);
+               radeon_emit(cs, device->gfx_init_size_dw & 0xffff);
+
+               radv_cs_add_buffer(device->ws, cs, device->gfx_init);
+       } else {
+               struct radv_physical_device *physical_device = device->physical_device;
+               si_emit_graphics(physical_device, cs);
+       }
+}
+
+static void
+radv_init_compute_state(struct radeon_cmdbuf *cs, struct radv_queue *queue)
+{
+       struct radv_physical_device *physical_device = queue->device->physical_device;
+       si_emit_compute(physical_device, cs);
+}
+
 static VkResult
 radv_get_preamble_cs(struct radv_queue *queue,
                      uint32_t scratch_size,
@@ -1758,9 +2237,9 @@ radv_get_preamble_cs(struct radv_queue *queue,
                     uint32_t gsvs_ring_size,
                     bool needs_tess_rings,
                     bool needs_sample_positions,
-                    struct radeon_winsys_cs **initial_full_flush_preamble_cs,
-                     struct radeon_winsys_cs **initial_preamble_cs,
-                     struct radeon_winsys_cs **continue_preamble_cs)
+                    struct radeon_cmdbuf **initial_full_flush_preamble_cs,
+                     struct radeon_cmdbuf **initial_preamble_cs,
+                     struct radeon_cmdbuf **continue_preamble_cs)
 {
        struct radeon_winsys_bo *scratch_bo = NULL;
        struct radeon_winsys_bo *descriptor_bo = NULL;
@@ -1768,7 +2247,7 @@ radv_get_preamble_cs(struct radv_queue *queue,
        struct radeon_winsys_bo *esgs_ring_bo = NULL;
        struct radeon_winsys_bo *gsvs_ring_bo = NULL;
        struct radeon_winsys_bo *tess_rings_bo = NULL;
-       struct radeon_winsys_cs *dest_cs[3] = {0};
+       struct radeon_cmdbuf *dest_cs[3] = {0};
        bool add_tess_rings = false, add_sample_positions = false;
        unsigned tess_factor_ring_size = 0, tess_offchip_ring_size = 0;
        unsigned max_offchip_buffers;
@@ -1893,7 +2372,7 @@ radv_get_preamble_cs(struct radv_queue *queue,
                descriptor_bo = queue->descriptor_bo;
 
        for(int i = 0; i < 3; ++i) {
-               struct radeon_winsys_cs *cs = NULL;
+               struct radeon_cmdbuf *cs = NULL;
                cs = queue->device->ws->cs_create(queue->device->ws,
                                                  queue->queue_family_index ? RING_COMPUTE : RING_GFX);
                if (!cs)
@@ -1902,19 +2381,19 @@ radv_get_preamble_cs(struct radv_queue *queue,
                dest_cs[i] = cs;
 
                if (scratch_bo)
-                       radv_cs_add_buffer(queue->device->ws, cs, scratch_bo, 8);
-
-               if (esgs_ring_bo)
-                       radv_cs_add_buffer(queue->device->ws, cs, esgs_ring_bo, 8);
+                       radv_cs_add_buffer(queue->device->ws, cs, scratch_bo);
 
-               if (gsvs_ring_bo)
-                       radv_cs_add_buffer(queue->device->ws, cs, gsvs_ring_bo, 8);
-
-               if (tess_rings_bo)
-                       radv_cs_add_buffer(queue->device->ws, cs, tess_rings_bo, 8);
-
-               if (descriptor_bo)
-                       radv_cs_add_buffer(queue->device->ws, cs, descriptor_bo, 8);
+               /* Emit initial configuration. */
+               switch (queue->queue_family_index) {
+               case RADV_QUEUE_GENERAL:
+                       radv_init_graphics_state(cs, queue);
+                       break;
+               case RADV_QUEUE_COMPUTE:
+                       radv_init_compute_state(cs, queue);
+                       break;
+               case RADV_QUEUE_TRANSFER:
+                       break;
+               }
 
                if (descriptor_bo != queue->descriptor_bo) {
                        uint32_t *map = (uint32_t*)queue->device->ws->buffer_map(descriptor_bo);
@@ -1947,80 +2426,12 @@ radv_get_preamble_cs(struct radv_queue *queue,
                        radeon_emit(cs, EVENT_TYPE(V_028A90_VGT_FLUSH) | EVENT_INDEX(0));
                }
 
-               if (esgs_ring_bo || gsvs_ring_bo) {
-                       if (queue->device->physical_device->rad_info.chip_class >= CIK) {
-                               radeon_set_uconfig_reg_seq(cs, R_030900_VGT_ESGS_RING_SIZE, 2);
-                               radeon_emit(cs, esgs_ring_size >> 8);
-                               radeon_emit(cs, gsvs_ring_size >> 8);
-                       } else {
-                               radeon_set_config_reg_seq(cs, R_0088C8_VGT_ESGS_RING_SIZE, 2);
-                               radeon_emit(cs, esgs_ring_size >> 8);
-                               radeon_emit(cs, gsvs_ring_size >> 8);
-                       }
-               }
-
-               if (tess_rings_bo) {
-                       uint64_t tf_va = radv_buffer_get_va(tess_rings_bo);
-                       if (queue->device->physical_device->rad_info.chip_class >= CIK) {
-                               radeon_set_uconfig_reg(cs, R_030938_VGT_TF_RING_SIZE,
-                                                      S_030938_SIZE(tess_factor_ring_size / 4));
-                               radeon_set_uconfig_reg(cs, R_030940_VGT_TF_MEMORY_BASE,
-                                                      tf_va >> 8);
-                               if (queue->device->physical_device->rad_info.chip_class >= GFX9) {
-                                       radeon_set_uconfig_reg(cs, R_030944_VGT_TF_MEMORY_BASE_HI,
-                                                              S_030944_BASE_HI(tf_va >> 40));
-                               }
-                               radeon_set_uconfig_reg(cs, R_03093C_VGT_HS_OFFCHIP_PARAM, hs_offchip_param);
-                       } else {
-                               radeon_set_config_reg(cs, R_008988_VGT_TF_RING_SIZE,
-                                                     S_008988_SIZE(tess_factor_ring_size / 4));
-                               radeon_set_config_reg(cs, R_0089B8_VGT_TF_MEMORY_BASE,
-                                                     tf_va >> 8);
-                               radeon_set_config_reg(cs, R_0089B0_VGT_HS_OFFCHIP_PARAM,
-                                                     hs_offchip_param);
-                       }
-               }
-
-               if (descriptor_bo) {
-                       uint64_t va = radv_buffer_get_va(descriptor_bo);
-                       if (queue->device->physical_device->rad_info.chip_class >= GFX9) {
-                               uint32_t regs[] = {R_00B030_SPI_SHADER_USER_DATA_PS_0,
-                                               R_00B130_SPI_SHADER_USER_DATA_VS_0,
-                                               R_00B208_SPI_SHADER_USER_DATA_ADDR_LO_GS,
-                                               R_00B408_SPI_SHADER_USER_DATA_ADDR_LO_HS};
-
-                               for (int i = 0; i < ARRAY_SIZE(regs); ++i) {
-                                       radeon_set_sh_reg_seq(cs, regs[i], 2);
-                                       radeon_emit(cs, va);
-                                       radeon_emit(cs, va >> 32);
-                               }
-                       } else {
-                               uint32_t regs[] = {R_00B030_SPI_SHADER_USER_DATA_PS_0,
-                                               R_00B130_SPI_SHADER_USER_DATA_VS_0,
-                                               R_00B230_SPI_SHADER_USER_DATA_GS_0,
-                                               R_00B330_SPI_SHADER_USER_DATA_ES_0,
-                                               R_00B430_SPI_SHADER_USER_DATA_HS_0,
-                                               R_00B530_SPI_SHADER_USER_DATA_LS_0};
-
-                               for (int i = 0; i < ARRAY_SIZE(regs); ++i) {
-                                       radeon_set_sh_reg_seq(cs, regs[i], 2);
-                                       radeon_emit(cs, va);
-                                       radeon_emit(cs, va >> 32);
-                               }
-                       }
-               }
-
-               if (compute_scratch_bo) {
-                       uint64_t scratch_va = radv_buffer_get_va(compute_scratch_bo);
-                       uint32_t rsrc1 = S_008F04_BASE_ADDRESS_HI(scratch_va >> 32) |
-                                        S_008F04_SWIZZLE_ENABLE(1);
-
-                       radv_cs_add_buffer(queue->device->ws, cs, compute_scratch_bo, 8);
-
-                       radeon_set_sh_reg_seq(cs, R_00B900_COMPUTE_USER_DATA_0, 2);
-                       radeon_emit(cs, scratch_va);
-                       radeon_emit(cs, rsrc1);
-               }
+               radv_emit_gs_ring_sizes(queue, cs, esgs_ring_bo, esgs_ring_size,
+                                       gsvs_ring_bo, gsvs_ring_size);
+               radv_emit_tess_factor_ring(queue, cs, hs_offchip_param,
+                                          tess_factor_ring_size, tess_rings_bo);
+               radv_emit_global_shader_pointers(queue, cs, descriptor_bo);
+               radv_emit_compute_scratch(queue, cs, compute_scratch_bo);
 
                if (i == 0) {
                        si_cs_emit_cache_flush(cs,
@@ -2032,7 +2443,8 @@ radv_get_preamble_cs(struct radv_queue *queue,
                                               RADV_CMD_FLAG_INV_ICACHE |
                                               RADV_CMD_FLAG_INV_SMEM_L1 |
                                               RADV_CMD_FLAG_INV_VMEM_L1 |
-                                              RADV_CMD_FLAG_INV_GLOBAL_L2);
+                                              RADV_CMD_FLAG_INV_GLOBAL_L2 |
+                                              RADV_CMD_FLAG_START_PIPELINE_STATS, 0);
                } else if (i == 1) {
                        si_cs_emit_cache_flush(cs,
                                               queue->device->physical_device->rad_info.chip_class,
@@ -2042,7 +2454,8 @@ radv_get_preamble_cs(struct radv_queue *queue,
                                               RADV_CMD_FLAG_INV_ICACHE |
                                               RADV_CMD_FLAG_INV_SMEM_L1 |
                                               RADV_CMD_FLAG_INV_VMEM_L1 |
-                                              RADV_CMD_FLAG_INV_GLOBAL_L2);
+                                              RADV_CMD_FLAG_INV_GLOBAL_L2 |
+                                              RADV_CMD_FLAG_START_PIPELINE_STATS, 0);
                }
 
                if (!queue->device->ws->cs_finalize(cs))
@@ -2127,10 +2540,11 @@ fail:
                queue->device->ws->buffer_destroy(gsvs_ring_bo);
        if (tess_rings_bo && tess_rings_bo != queue->tess_rings_bo)
                queue->device->ws->buffer_destroy(tess_rings_bo);
-       return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
+       return vk_error(queue->device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
 }
 
-static VkResult radv_alloc_sem_counts(struct radv_winsys_sem_counts *counts,
+static VkResult radv_alloc_sem_counts(struct radv_instance *instance,
+                                     struct radv_winsys_sem_counts *counts,
                                      int num_sems,
                                      const VkSemaphore *sems,
                                      VkFence _fence,
@@ -2159,14 +2573,14 @@ static VkResult radv_alloc_sem_counts(struct radv_winsys_sem_counts *counts,
        if (counts->syncobj_count) {
                counts->syncobj = (uint32_t *)malloc(sizeof(uint32_t) * counts->syncobj_count);
                if (!counts->syncobj)
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(instance, VK_ERROR_OUT_OF_HOST_MEMORY);
        }
 
        if (counts->sem_count) {
                counts->sem = (struct radeon_winsys_sem **)malloc(sizeof(struct radeon_winsys_sem *) * counts->sem_count);
                if (!counts->sem) {
                        free(counts->syncobj);
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(instance, VK_ERROR_OUT_OF_HOST_MEMORY);
                }
        }
 
@@ -2195,7 +2609,8 @@ static VkResult radv_alloc_sem_counts(struct radv_winsys_sem_counts *counts,
        return VK_SUCCESS;
 }
 
-void radv_free_sem_info(struct radv_winsys_sem_info *sem_info)
+static void
+radv_free_sem_info(struct radv_winsys_sem_info *sem_info)
 {
        free(sem_info->wait.syncobj);
        free(sem_info->wait.sem);
@@ -2218,20 +2633,22 @@ static void radv_free_temp_syncobjs(struct radv_device *device,
        }
 }
 
-VkResult radv_alloc_sem_info(struct radv_winsys_sem_info *sem_info,
-                            int num_wait_sems,
-                            const VkSemaphore *wait_sems,
-                            int num_signal_sems,
-                            const VkSemaphore *signal_sems,
-                            VkFence fence)
+static VkResult
+radv_alloc_sem_info(struct radv_instance *instance,
+                   struct radv_winsys_sem_info *sem_info,
+                   int num_wait_sems,
+                   const VkSemaphore *wait_sems,
+                   int num_signal_sems,
+                   const VkSemaphore *signal_sems,
+                   VkFence fence)
 {
        VkResult ret;
        memset(sem_info, 0, sizeof(*sem_info));
 
-       ret = radv_alloc_sem_counts(&sem_info->wait, num_wait_sems, wait_sems, VK_NULL_HANDLE, true);
+       ret = radv_alloc_sem_counts(instance, &sem_info->wait, num_wait_sems, wait_sems, VK_NULL_HANDLE, true);
        if (ret)
                return ret;
-       ret = radv_alloc_sem_counts(&sem_info->signal, num_signal_sems, signal_sems, fence, false);
+       ret = radv_alloc_sem_counts(instance, &sem_info->signal, num_signal_sems, signal_sems, fence, false);
        if (ret)
                radv_free_sem_info(sem_info);
 
@@ -2249,20 +2666,19 @@ static VkResult radv_signal_fence(struct radv_queue *queue,
        VkResult result;
        struct radv_winsys_sem_info sem_info;
 
-       result = radv_alloc_sem_info(&sem_info, 0, NULL, 0, NULL,
+       result = radv_alloc_sem_info(queue->device->instance, &sem_info, 0, NULL, 0, NULL,
                                     radv_fence_to_handle(fence));
        if (result != VK_SUCCESS)
                return result;
 
        ret = queue->device->ws->cs_submit(queue->hw_ctx, queue->queue_idx,
                                           &queue->device->empty_cs[queue->queue_family_index],
-                                          1, NULL, NULL, &sem_info,
+                                          1, NULL, NULL, &sem_info, NULL,
                                           false, fence->fence);
        radv_free_sem_info(&sem_info);
 
-       /* TODO: find a better error */
        if (ret)
-               return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
+               return vk_error(queue->device->instance, VK_ERROR_DEVICE_LOST);
 
        return VK_SUCCESS;
 }
@@ -2282,7 +2698,7 @@ VkResult radv_QueueSubmit(
        uint32_t scratch_size = 0;
        uint32_t compute_scratch_size = 0;
        uint32_t esgs_ring_size = 0, gsvs_ring_size = 0;
-       struct radeon_winsys_cs *initial_preamble_cs = NULL, *initial_flush_preamble_cs = NULL, *continue_preamble_cs = NULL;
+       struct radeon_cmdbuf *initial_preamble_cs = NULL, *initial_flush_preamble_cs = NULL, *continue_preamble_cs = NULL;
        VkResult result;
        bool fence_emitted = false;
        bool tess_rings_needed = false;
@@ -2313,13 +2729,14 @@ VkResult radv_QueueSubmit(
                return result;
 
        for (uint32_t i = 0; i < submitCount; i++) {
-               struct radeon_winsys_cs **cs_array;
+               struct radeon_cmdbuf **cs_array;
                bool do_flush = !i || pSubmits[i].pWaitDstStageMask;
                bool can_patch = true;
                uint32_t advance;
                struct radv_winsys_sem_info sem_info;
 
-               result = radv_alloc_sem_info(&sem_info,
+               result = radv_alloc_sem_info(queue->device->instance,
+                                            &sem_info,
                                             pSubmits[i].waitSemaphoreCount,
                                             pSubmits[i].pWaitSemaphores,
                                             pSubmits[i].signalSemaphoreCount,
@@ -2333,7 +2750,7 @@ VkResult radv_QueueSubmit(
                                ret = queue->device->ws->cs_submit(ctx, queue->queue_idx,
                                                                   &queue->device->empty_cs[queue->queue_family_index],
                                                                   1, NULL, NULL,
-                                                                  &sem_info,
+                                                                  &sem_info, NULL,
                                                                   false, base_fence);
                                if (ret) {
                                        radv_loge("failed to submit CS %d\n", i);
@@ -2345,7 +2762,7 @@ VkResult radv_QueueSubmit(
                        continue;
                }
 
-               cs_array = malloc(sizeof(struct radeon_winsys_cs *) *
+               cs_array = malloc(sizeof(struct radeon_cmdbuf *) *
                                                (pSubmits[i].commandBufferCount));
 
                for (uint32_t j = 0; j < pSubmits[i].commandBufferCount; j++) {
@@ -2361,7 +2778,9 @@ VkResult radv_QueueSubmit(
                }
 
                for (uint32_t j = 0; j < pSubmits[i].commandBufferCount; j += advance) {
-                       struct radeon_winsys_cs *initial_preamble = (do_flush && !j) ? initial_flush_preamble_cs : initial_preamble_cs;
+                       struct radeon_cmdbuf *initial_preamble = (do_flush && !j) ? initial_flush_preamble_cs : initial_preamble_cs;
+                       const struct radv_winsys_bo_list *bo_list = NULL;
+
                        advance = MIN2(max_cs_submission,
                                       pSubmits[i].commandBufferCount - j);
 
@@ -2371,11 +2790,19 @@ VkResult radv_QueueSubmit(
                        sem_info.cs_emit_wait = j == 0;
                        sem_info.cs_emit_signal = j + advance == pSubmits[i].commandBufferCount;
 
+                       if (unlikely(queue->device->use_global_bo_list)) {
+                               pthread_mutex_lock(&queue->device->bo_list.mutex);
+                               bo_list = &queue->device->bo_list.list;
+                       }
+
                        ret = queue->device->ws->cs_submit(ctx, queue->queue_idx, cs_array + j,
                                                        advance, initial_preamble, continue_preamble_cs,
-                                                          &sem_info,
+                                                       &sem_info, bo_list,
                                                        can_patch, base_fence);
 
+                       if (unlikely(queue->device->use_global_bo_list))
+                               pthread_mutex_unlock(&queue->device->bo_list.mutex);
+
                        if (ret) {
                                radv_loge("failed to submit CS %d\n", i);
                                abort();
@@ -2395,7 +2822,9 @@ VkResult radv_QueueSubmit(
 
        if (fence) {
                if (!fence_emitted) {
-                       radv_signal_fence(queue, fence);
+                       result = radv_signal_fence(queue, fence);
+                       if (result != VK_SUCCESS)
+                               return result;
                }
                fence->submitted = true;
        }
@@ -2541,10 +2970,10 @@ static VkResult radv_alloc_memory(struct radv_device *device,
 
        const VkImportMemoryFdInfoKHR *import_info =
                vk_find_struct_const(pAllocateInfo->pNext, IMPORT_MEMORY_FD_INFO_KHR);
-       const VkMemoryDedicatedAllocateInfoKHR *dedicate_info =
-               vk_find_struct_const(pAllocateInfo->pNext, MEMORY_DEDICATED_ALLOCATE_INFO_KHR);
-       const VkExportMemoryAllocateInfoKHR *export_info =
-               vk_find_struct_const(pAllocateInfo->pNext, EXPORT_MEMORY_ALLOCATE_INFO_KHR);
+       const VkMemoryDedicatedAllocateInfo *dedicate_info =
+               vk_find_struct_const(pAllocateInfo->pNext, MEMORY_DEDICATED_ALLOCATE_INFO);
+       const VkExportMemoryAllocateInfo *export_info =
+               vk_find_struct_const(pAllocateInfo->pNext, EXPORT_MEMORY_ALLOCATE_INFO);
        const VkImportMemoryHostPointerInfoEXT *host_ptr_info =
                vk_find_struct_const(pAllocateInfo->pNext, IMPORT_MEMORY_HOST_POINTER_INFO_EXT);
 
@@ -2554,7 +2983,7 @@ static VkResult radv_alloc_memory(struct radv_device *device,
        mem = vk_alloc2(&device->alloc, pAllocator, sizeof(*mem), 8,
                          VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
        if (mem == NULL)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        if (wsi_info && wsi_info->implicit_sync)
                flags |= RADEON_FLAG_IMPLICIT_SYNC;
@@ -2571,65 +3000,67 @@ static VkResult radv_alloc_memory(struct radv_device *device,
 
        if (import_info) {
                assert(import_info->handleType ==
-                      VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR ||
+                      VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
                       import_info->handleType ==
                       VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
                mem->bo = device->ws->buffer_from_fd(device->ws, import_info->fd,
                                                     NULL, NULL);
                if (!mem->bo) {
-                       result = VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR;
+                       result = VK_ERROR_INVALID_EXTERNAL_HANDLE;
                        goto fail;
                } else {
                        close(import_info->fd);
-                       goto out_success;
                }
-       }
-
-       if (host_ptr_info) {
+       } else if (host_ptr_info) {
                assert(host_ptr_info->handleType == VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT);
                assert(mem_type_index == RADV_MEM_TYPE_GTT_CACHED);
                mem->bo = device->ws->buffer_from_ptr(device->ws, host_ptr_info->pHostPointer,
                                                      pAllocateInfo->allocationSize);
                if (!mem->bo) {
-                       result = VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR;
+                       result = VK_ERROR_INVALID_EXTERNAL_HANDLE;
                        goto fail;
                } else {
                        mem->user_ptr = host_ptr_info->pHostPointer;
-                       goto out_success;
                }
-       }
-
-       uint64_t alloc_size = align_u64(pAllocateInfo->allocationSize, 4096);
-       if (mem_type_index == RADV_MEM_TYPE_GTT_WRITE_COMBINE ||
-           mem_type_index == RADV_MEM_TYPE_GTT_CACHED)
-               domain = RADEON_DOMAIN_GTT;
-       else
-               domain = RADEON_DOMAIN_VRAM;
+       } else {
+               uint64_t alloc_size = align_u64(pAllocateInfo->allocationSize, 4096);
+               if (mem_type_index == RADV_MEM_TYPE_GTT_WRITE_COMBINE ||
+                   mem_type_index == RADV_MEM_TYPE_GTT_CACHED)
+                       domain = RADEON_DOMAIN_GTT;
+               else
+                       domain = RADEON_DOMAIN_VRAM;
 
-       if (mem_type_index == RADV_MEM_TYPE_VRAM)
-               flags |= RADEON_FLAG_NO_CPU_ACCESS;
-       else
-               flags |= RADEON_FLAG_CPU_ACCESS;
+               if (mem_type_index == RADV_MEM_TYPE_VRAM)
+                       flags |= RADEON_FLAG_NO_CPU_ACCESS;
+               else
+                       flags |= RADEON_FLAG_CPU_ACCESS;
 
-       if (mem_type_index == RADV_MEM_TYPE_GTT_WRITE_COMBINE)
-               flags |= RADEON_FLAG_GTT_WC;
+               if (mem_type_index == RADV_MEM_TYPE_GTT_WRITE_COMBINE)
+                       flags |= RADEON_FLAG_GTT_WC;
 
-       if (!dedicate_info && !import_info && (!export_info || !export_info->handleTypes))
-               flags |= RADEON_FLAG_NO_INTERPROCESS_SHARING;
+               if (!dedicate_info && !import_info && (!export_info || !export_info->handleTypes))
+                       flags |= RADEON_FLAG_NO_INTERPROCESS_SHARING;
 
-       mem->bo = device->ws->buffer_create(device->ws, alloc_size, device->physical_device->rad_info.max_alignment,
-                                              domain, flags);
+               mem->bo = device->ws->buffer_create(device->ws, alloc_size, device->physical_device->rad_info.max_alignment,
+                                                   domain, flags);
 
-       if (!mem->bo) {
-               result = VK_ERROR_OUT_OF_DEVICE_MEMORY;
-               goto fail;
+               if (!mem->bo) {
+                       result = VK_ERROR_OUT_OF_DEVICE_MEMORY;
+                       goto fail;
+               }
+               mem->type_index = mem_type_index;
        }
-       mem->type_index = mem_type_index;
-out_success:
+
+       result = radv_bo_list_add(device, mem->bo);
+       if (result != VK_SUCCESS)
+               goto fail_bo;
+
        *pMem = radv_device_memory_to_handle(mem);
 
        return VK_SUCCESS;
 
+fail_bo:
+       device->ws->buffer_destroy(mem->bo);
 fail:
        vk_free2(&device->alloc, pAllocator, mem);
 
@@ -2657,6 +3088,7 @@ void radv_FreeMemory(
        if (mem == NULL)
                return;
 
+       radv_bo_list_remove(device, mem->bo);
        device->ws->buffer_destroy(mem->bo);
        mem->bo = NULL;
 
@@ -2689,7 +3121,7 @@ VkResult radv_MapMemory(
                return VK_SUCCESS;
        }
 
-       return vk_error(VK_ERROR_MEMORY_MAP_FAILED);
+       return vk_error(device->instance, VK_ERROR_MEMORY_MAP_FAILED);
 }
 
 void radv_UnmapMemory(
@@ -2742,17 +3174,17 @@ void radv_GetBufferMemoryRequirements(
 
 void radv_GetBufferMemoryRequirements2(
        VkDevice                                     device,
-       const VkBufferMemoryRequirementsInfo2KHR*    pInfo,
-       VkMemoryRequirements2KHR*                    pMemoryRequirements)
+       const VkBufferMemoryRequirementsInfo2       *pInfo,
+       VkMemoryRequirements2                       *pMemoryRequirements)
 {
        radv_GetBufferMemoryRequirements(device, pInfo->buffer,
                                         &pMemoryRequirements->memoryRequirements);
        RADV_FROM_HANDLE(radv_buffer, buffer, pInfo->buffer);
        vk_foreach_struct(ext, pMemoryRequirements->pNext) {
                switch (ext->sType) {
-               case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR: {
-                       VkMemoryDedicatedRequirementsKHR *req =
-                                      (VkMemoryDedicatedRequirementsKHR *) ext;
+               case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS: {
+                       VkMemoryDedicatedRequirements *req =
+                                      (VkMemoryDedicatedRequirements *) ext;
                        req->requiresDedicatedAllocation = buffer->shareable;
                        req->prefersDedicatedAllocation = req->requiresDedicatedAllocation;
                        break;
@@ -2779,8 +3211,8 @@ void radv_GetImageMemoryRequirements(
 
 void radv_GetImageMemoryRequirements2(
        VkDevice                                    device,
-       const VkImageMemoryRequirementsInfo2KHR*    pInfo,
-       VkMemoryRequirements2KHR*                   pMemoryRequirements)
+       const VkImageMemoryRequirementsInfo2       *pInfo,
+       VkMemoryRequirements2                      *pMemoryRequirements)
 {
        radv_GetImageMemoryRequirements(device, pInfo->image,
                                         &pMemoryRequirements->memoryRequirements);
@@ -2789,9 +3221,9 @@ void radv_GetImageMemoryRequirements2(
 
        vk_foreach_struct(ext, pMemoryRequirements->pNext) {
                switch (ext->sType) {
-               case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR: {
-                       VkMemoryDedicatedRequirementsKHR *req =
-                                      (VkMemoryDedicatedRequirementsKHR *) ext;
+               case VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS: {
+                       VkMemoryDedicatedRequirements *req =
+                                      (VkMemoryDedicatedRequirements *) ext;
                        req->requiresDedicatedAllocation = image->shareable;
                        req->prefersDedicatedAllocation = req->requiresDedicatedAllocation;
                        break;
@@ -2813,9 +3245,9 @@ void radv_GetImageSparseMemoryRequirements(
 
 void radv_GetImageSparseMemoryRequirements2(
        VkDevice                                    device,
-       const VkImageSparseMemoryRequirementsInfo2KHR* pInfo,
+       const VkImageSparseMemoryRequirementsInfo2 *pInfo,
        uint32_t*                                   pSparseMemoryRequirementCount,
-       VkSparseImageMemoryRequirements2KHR*            pSparseMemoryRequirements)
+       VkSparseImageMemoryRequirements2           *pSparseMemoryRequirements)
 {
        stub();
 }
@@ -2830,7 +3262,7 @@ void radv_GetDeviceMemoryCommitment(
 
 VkResult radv_BindBufferMemory2(VkDevice device,
                                 uint32_t bindInfoCount,
-                                const VkBindBufferMemoryInfoKHR *pBindInfos)
+                                const VkBindBufferMemoryInfo *pBindInfos)
 {
        for (uint32_t i = 0; i < bindInfoCount; ++i) {
                RADV_FROM_HANDLE(radv_device_memory, mem, pBindInfos[i].memory);
@@ -2852,8 +3284,8 @@ VkResult radv_BindBufferMemory(
        VkDeviceMemory                              memory,
        VkDeviceSize                                memoryOffset)
 {
-       const VkBindBufferMemoryInfoKHR info = {
-               .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR,
+       const VkBindBufferMemoryInfo info = {
+               .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO,
                .buffer = buffer,
                .memory = memory,
                .memoryOffset = memoryOffset
@@ -2864,7 +3296,7 @@ VkResult radv_BindBufferMemory(
 
 VkResult radv_BindImageMemory2(VkDevice device,
                                uint32_t bindInfoCount,
-                               const VkBindImageMemoryInfoKHR *pBindInfos)
+                               const VkBindImageMemoryInfo *pBindInfos)
 {
        for (uint32_t i = 0; i < bindInfoCount; ++i) {
                RADV_FROM_HANDLE(radv_device_memory, mem, pBindInfos[i].memory);
@@ -2888,8 +3320,8 @@ VkResult radv_BindImageMemory(
        VkDeviceMemory                              memory,
        VkDeviceSize                                memoryOffset)
 {
-       const VkBindImageMemoryInfoKHR info = {
-               .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR,
+       const VkBindImageMemoryInfo info = {
+               .sType = VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO,
                .image = image,
                .memory = memory,
                .memoryOffset = memoryOffset
@@ -2949,6 +3381,8 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device,
        RADV_FROM_HANDLE(radv_queue, queue, _queue);
        struct radeon_winsys_fence *base_fence = fence ? fence->fence : NULL;
        bool fence_emitted = false;
+       VkResult result;
+       int ret;
 
        for (uint32_t i = 0; i < bindInfoCount; ++i) {
                struct radv_winsys_sem_info sem_info;
@@ -2963,7 +3397,8 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device,
                }
 
                VkResult result;
-               result = radv_alloc_sem_info(&sem_info,
+               result = radv_alloc_sem_info(queue->device->instance,
+                                            &sem_info,
                                             pBindInfo[i].waitSemaphoreCount,
                                             pBindInfo[i].pWaitSemaphores,
                                             pBindInfo[i].signalSemaphoreCount,
@@ -2973,11 +3408,16 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device,
                        return result;
 
                if (pBindInfo[i].waitSemaphoreCount || pBindInfo[i].signalSemaphoreCount) {
-                       queue->device->ws->cs_submit(queue->hw_ctx, queue->queue_idx,
-                                                    &queue->device->empty_cs[queue->queue_family_index],
-                                                    1, NULL, NULL,
-                                                    &sem_info,
-                                                    false, base_fence);
+                       ret = queue->device->ws->cs_submit(queue->hw_ctx, queue->queue_idx,
+                                                         &queue->device->empty_cs[queue->queue_family_index],
+                                                         1, NULL, NULL,
+                                                         &sem_info, NULL,
+                                                         false, base_fence);
+                       if (ret) {
+                               radv_loge("failed to submit CS %d\n", i);
+                               abort();
+                       }
+
                        fence_emitted = true;
                        if (fence)
                                fence->submitted = true;
@@ -2989,7 +3429,9 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device,
 
        if (fence) {
                if (!fence_emitted) {
-                       radv_signal_fence(queue, fence);
+                       result = radv_signal_fence(queue, fence);
+                       if (result != VK_SUCCESS)
+                               return result;
                }
                fence->submitted = true;
        }
@@ -3004,9 +3446,9 @@ VkResult radv_CreateFence(
        VkFence*                                    pFence)
 {
        RADV_FROM_HANDLE(radv_device, device, _device);
-       const VkExportFenceCreateInfoKHR *export =
-               vk_find_struct_const(pCreateInfo->pNext, EXPORT_FENCE_CREATE_INFO_KHR);
-       VkExternalFenceHandleTypeFlagsKHR handleTypes =
+       const VkExportFenceCreateInfo *export =
+               vk_find_struct_const(pCreateInfo->pNext, EXPORT_FENCE_CREATE_INFO);
+       VkExternalFenceHandleTypeFlags handleTypes =
                export ? export->handleTypes : 0;
 
        struct radv_fence *fence = vk_alloc2(&device->alloc, pAllocator,
@@ -3014,8 +3456,9 @@ VkResult radv_CreateFence(
                                               VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
 
        if (!fence)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
+       fence->fence_wsi = NULL;
        fence->submitted = false;
        fence->signalled = !!(pCreateInfo->flags & VK_FENCE_CREATE_SIGNALED_BIT);
        fence->temp_syncobj = 0;
@@ -3023,7 +3466,7 @@ VkResult radv_CreateFence(
                int ret = device->ws->create_syncobj(device->ws, &fence->syncobj);
                if (ret) {
                        vk_free2(&device->alloc, pAllocator, fence);
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
                }
                if (pCreateInfo->flags & VK_FENCE_CREATE_SIGNALED_BIT) {
                        device->ws->signal_syncobj(device->ws, fence->syncobj);
@@ -3033,7 +3476,7 @@ VkResult radv_CreateFence(
                fence->fence = device->ws->create_fence();
                if (!fence->fence) {
                        vk_free2(&device->alloc, pAllocator, fence);
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
                }
                fence->syncobj = 0;
        }
@@ -3060,6 +3503,8 @@ void radv_DestroyFence(
                device->ws->destroy_syncobj(device->ws, fence->syncobj);
        if (fence->fence)
                device->ws->destroy_fence(fence->fence);
+       if (fence->fence_wsi)
+               fence->fence_wsi->destroy(fence->fence_wsi);
        vk_free2(&device->alloc, pAllocator, fence);
 }
 
@@ -3085,7 +3530,19 @@ static bool radv_all_fences_plain_and_submitted(uint32_t fenceCount, const VkFen
 {
        for (uint32_t i = 0; i < fenceCount; ++i) {
                RADV_FROM_HANDLE(radv_fence, fence, pFences[i]);
-               if (fence->syncobj || fence->temp_syncobj || (!fence->signalled && !fence->submitted))
+               if (fence->fence == NULL || fence->syncobj ||
+                   fence->temp_syncobj ||
+                   (!fence->signalled && !fence->submitted))
+                       return false;
+       }
+       return true;
+}
+
+static bool radv_all_fences_syncobj(uint32_t fenceCount, const VkFence *pFences)
+{
+       for (uint32_t i = 0; i < fenceCount; ++i) {
+               RADV_FROM_HANDLE(radv_fence, fence, pFences[i]);
+               if (fence->syncobj == 0 && fence->temp_syncobj == 0)
                        return false;
        }
        return true;
@@ -3101,10 +3558,12 @@ VkResult radv_WaitForFences(
        RADV_FROM_HANDLE(radv_device, device, _device);
        timeout = radv_get_absolute_timeout(timeout);
 
-       if (device->always_use_syncobj) {
+       if (device->always_use_syncobj &&
+           radv_all_fences_syncobj(fenceCount, pFences))
+       {
                uint32_t *handles = malloc(sizeof(uint32_t) * fenceCount);
                if (!handles)
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
                for (uint32_t i = 0; i < fenceCount; ++i) {
                        RADV_FROM_HANDLE(radv_fence, fence, pFences[i]);
@@ -3123,7 +3582,7 @@ VkResult radv_WaitForFences(
                        uint32_t wait_count = 0;
                        struct radeon_winsys_fence **fences = malloc(sizeof(struct radeon_winsys_fence *) * fenceCount);
                        if (!fences)
-                               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
                        for (uint32_t i = 0; i < fenceCount; ++i) {
                                RADV_FROM_HANDLE(radv_fence, fence, pFences[i]);
@@ -3171,21 +3630,34 @@ VkResult radv_WaitForFences(
                if (fence->signalled)
                        continue;
 
-               if (!fence->submitted) {
-                       while(radv_get_current_time() <= timeout && !fence->submitted)
-                               /* Do nothing */;
+               if (fence->fence) {
+                       if (!fence->submitted) {
+                               while(radv_get_current_time() <= timeout &&
+                                     !fence->submitted)
+                                       /* Do nothing */;
 
-                       if (!fence->submitted)
-                               return VK_TIMEOUT;
+                               if (!fence->submitted)
+                                       return VK_TIMEOUT;
+
+                               /* Recheck as it may have been set by
+                                * submitting operations. */
 
-                       /* Recheck as it may have been set by submitting operations. */
-                       if (fence->signalled)
-                               continue;
+                               if (fence->signalled)
+                                       continue;
+                       }
+
+                       expired = device->ws->fence_wait(device->ws,
+                                                        fence->fence,
+                                                        true, timeout);
+                       if (!expired)
+                               return VK_TIMEOUT;
                }
 
-               expired = device->ws->fence_wait(device->ws, fence->fence, true, timeout);
-               if (!expired)
-                       return VK_TIMEOUT;
+               if (fence->fence_wsi) {
+                       VkResult result = fence->fence_wsi->wait(fence->fence_wsi, timeout);
+                       if (result != VK_SUCCESS)
+                               return result;
+               }
 
                fence->signalled = true;
        }
@@ -3237,9 +3709,19 @@ VkResult radv_GetFenceStatus(VkDevice _device, VkFence _fence)
                return VK_SUCCESS;
        if (!fence->submitted)
                return VK_NOT_READY;
-       if (!device->ws->fence_wait(device->ws, fence->fence, false, 0))
-               return VK_NOT_READY;
+       if (fence->fence) {
+               if (!device->ws->fence_wait(device->ws, fence->fence, false, 0))
+                       return VK_NOT_READY;
+       }
+       if (fence->fence_wsi) {
+               VkResult result = fence->fence_wsi->wait(fence->fence_wsi, 0);
 
+               if (result != VK_SUCCESS) {
+                       if (result == VK_TIMEOUT)
+                               return VK_NOT_READY;
+                       return result;
+               }
+       }
        return VK_SUCCESS;
 }
 
@@ -3253,16 +3735,16 @@ VkResult radv_CreateSemaphore(
        VkSemaphore*                                pSemaphore)
 {
        RADV_FROM_HANDLE(radv_device, device, _device);
-       const VkExportSemaphoreCreateInfoKHR *export =
-               vk_find_struct_const(pCreateInfo->pNext, EXPORT_SEMAPHORE_CREATE_INFO_KHR);
-       VkExternalSemaphoreHandleTypeFlagsKHR handleTypes =
+       const VkExportSemaphoreCreateInfo *export =
+               vk_find_struct_const(pCreateInfo->pNext, EXPORT_SEMAPHORE_CREATE_INFO);
+       VkExternalSemaphoreHandleTypeFlags handleTypes =
                export ? export->handleTypes : 0;
 
        struct radv_semaphore *sem = vk_alloc2(&device->alloc, pAllocator,
                                               sizeof(*sem), 8,
                                               VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
        if (!sem)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        sem->temp_syncobj = 0;
        /* create a syncobject if we are going to export this semaphore */
@@ -3271,14 +3753,14 @@ VkResult radv_CreateSemaphore(
                int ret = device->ws->create_syncobj(device->ws, &sem->syncobj);
                if (ret) {
                        vk_free2(&device->alloc, pAllocator, sem);
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
                }
                sem->sem = NULL;
        } else {
                sem->sem = device->ws->create_sem(device->ws);
                if (!sem->sem) {
                        vk_free2(&device->alloc, pAllocator, sem);
-                       return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
                }
                sem->syncobj = 0;
        }
@@ -3316,14 +3798,14 @@ VkResult radv_CreateEvent(
                                               VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
 
        if (!event)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        event->bo = device->ws->buffer_create(device->ws, 8, 8,
                                              RADEON_DOMAIN_GTT,
                                              RADEON_FLAG_VA_UNCACHED | RADEON_FLAG_CPU_ACCESS | RADEON_FLAG_NO_INTERPROCESS_SHARING);
        if (!event->bo) {
                vk_free2(&device->alloc, pAllocator, event);
-               return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
        }
 
        event->map = (uint64_t*)device->ws->buffer_map(event->bo);
@@ -3392,7 +3874,7 @@ VkResult radv_CreateBuffer(
        buffer = vk_alloc2(&device->alloc, pAllocator, sizeof(*buffer), 8,
                             VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
        if (buffer == NULL)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        buffer->size = pCreateInfo->size;
        buffer->usage = pCreateInfo->usage;
@@ -3409,7 +3891,7 @@ VkResult radv_CreateBuffer(
                                                       4096, 0, RADEON_FLAG_VIRTUAL);
                if (!buffer->bo) {
                        vk_free2(&device->alloc, pAllocator, buffer);
-                       return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
+                       return vk_error(device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
                }
        }
 
@@ -3449,6 +3931,57 @@ static uint32_t radv_surface_max_layer_count(struct radv_image_view *iview)
        return iview->type == VK_IMAGE_VIEW_TYPE_3D ? iview->extent.depth : (iview->base_layer + iview->layer_count);
 }
 
+static uint32_t
+radv_init_dcc_control_reg(struct radv_device *device,
+                         struct radv_image_view *iview)
+{
+       unsigned max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_256B;
+       unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
+       unsigned max_compressed_block_size;
+       unsigned independent_64b_blocks;
+
+       if (!radv_image_has_dcc(iview->image))
+               return 0;
+
+       if (iview->image->info.samples > 1) {
+               if (iview->image->surface.bpe == 1)
+                       max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
+               else if (iview->image->surface.bpe == 2)
+                       max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_128B;
+       }
+
+       if (!device->physical_device->rad_info.has_dedicated_vram) {
+               /* amdvlk: [min-compressed-block-size] should be set to 32 for
+                * dGPU and 64 for APU because all of our APUs to date use
+                * DIMMs which have a request granularity size of 64B while all
+                * other chips have a 32B request size.
+                */
+               min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
+       }
+
+       if (iview->image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT |
+                                  VK_IMAGE_USAGE_TRANSFER_SRC_BIT |
+                                  VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)) {
+               /* If this DCC image is potentially going to be used in texture
+                * fetches, we need some special settings.
+                */
+               independent_64b_blocks = 1;
+               max_compressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
+       } else {
+               /* MAX_UNCOMPRESSED_BLOCK_SIZE must be >=
+                * MAX_COMPRESSED_BLOCK_SIZE. Set MAX_COMPRESSED_BLOCK_SIZE as
+                * big as possible for better compression state.
+                */
+               independent_64b_blocks = 0;
+               max_compressed_block_size = max_uncompressed_block_size;
+       }
+
+       return S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(max_uncompressed_block_size) |
+              S_028C78_MAX_COMPRESSED_BLOCK_SIZE(max_compressed_block_size) |
+              S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
+              S_028C78_INDEPENDENT_64B_BLOCKS(independent_64b_blocks);
+}
+
 static void
 radv_initialise_color_surface(struct radv_device *device,
                              struct radv_color_buffer_info *cb,
@@ -3603,38 +4136,7 @@ radv_initialise_color_surface(struct radv_device *device,
        if (radv_dcc_enabled(iview->image, iview->base_mip))
                cb->cb_color_info |= S_028C70_DCC_ENABLE(1);
 
-       if (device->physical_device->rad_info.chip_class >= VI) {
-               unsigned max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_256B;
-               unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
-               unsigned independent_64b_blocks = 0;
-               unsigned max_compressed_block_size;
-
-               /* amdvlk: [min-compressed-block-size] should be set to 32 for dGPU and
-                  64 for APU because all of our APUs to date use DIMMs which have
-                  a request granularity size of 64B while all other chips have a
-                  32B request size */
-               if (!device->physical_device->rad_info.has_dedicated_vram)
-                       min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
-
-               if (iview->image->info.samples > 1) {
-                       if (iview->image->surface.bpe == 1)
-                               max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
-                       else if (iview->image->surface.bpe == 2)
-                               max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_128B;
-               }
-
-               if (iview->image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_SRC_BIT |
-                                          VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)) {
-                       independent_64b_blocks = 1;
-                       max_compressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
-               } else
-                       max_compressed_block_size = max_uncompressed_block_size;
-
-               cb->cb_dcc_control = S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(max_uncompressed_block_size) |
-                       S_028C78_MAX_COMPRESSED_BLOCK_SIZE(max_compressed_block_size) |
-                       S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
-                       S_028C78_INDEPENDENT_64B_BLOCKS(independent_64b_blocks);
-       }
+       cb->cb_dcc_control = radv_init_dcc_control_reg(device, iview);
 
        /* This must be set for fast clear to work without FMASK. */
        if (!radv_image_has_fmask(iview->image) &&
@@ -3750,7 +4252,8 @@ radv_initialise_ds_surface(struct radv_device *device,
                ds->db_z_info = S_028038_FORMAT(format) |
                        S_028038_NUM_SAMPLES(util_logbase2(iview->image->info.samples)) |
                        S_028038_SW_MODE(iview->image->surface.u.gfx9.surf.swizzle_mode) |
-                       S_028038_MAXMIP(iview->image->info.levels - 1);
+                       S_028038_MAXMIP(iview->image->info.levels - 1) |
+                       S_028038_ZRANGE_PRECISION(1);
                ds->db_stencil_info = S_02803C_FORMAT(stencil_format) |
                        S_02803C_SW_MODE(iview->image->surface.u.gfx9.stencil.swizzle_mode);
 
@@ -3876,7 +4379,7 @@ VkResult radv_CreateFramebuffer(
        framebuffer = vk_alloc2(&device->alloc, pAllocator, size, 8,
                                  VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
        if (framebuffer == NULL)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        framebuffer->attachment_count = pCreateInfo->attachmentCount;
        framebuffer->width = pCreateInfo->width;
@@ -4026,27 +4529,40 @@ radv_tex_filter_mode(VkSamplerReductionModeEXT mode)
 {
        switch (mode) {
        case VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT:
-               return SQ_IMG_FILTER_MODE_BLEND;
+               return V_008F30_SQ_IMG_FILTER_MODE_BLEND;
        case VK_SAMPLER_REDUCTION_MODE_MIN_EXT:
-               return SQ_IMG_FILTER_MODE_MIN;
+               return V_008F30_SQ_IMG_FILTER_MODE_MIN;
        case VK_SAMPLER_REDUCTION_MODE_MAX_EXT:
-               return SQ_IMG_FILTER_MODE_MAX;
+               return V_008F30_SQ_IMG_FILTER_MODE_MAX;
        default:
                break;
        }
        return 0;
 }
 
+static uint32_t
+radv_get_max_anisotropy(struct radv_device *device,
+                       const VkSamplerCreateInfo *pCreateInfo)
+{
+       if (device->force_aniso >= 0)
+               return device->force_aniso;
+
+       if (pCreateInfo->anisotropyEnable &&
+           pCreateInfo->maxAnisotropy > 1.0f)
+               return (uint32_t)pCreateInfo->maxAnisotropy;
+
+       return 0;
+}
+
 static void
 radv_init_sampler(struct radv_device *device,
                  struct radv_sampler *sampler,
                  const VkSamplerCreateInfo *pCreateInfo)
 {
-       uint32_t max_aniso = pCreateInfo->anisotropyEnable && pCreateInfo->maxAnisotropy > 1.0 ?
-                                       (uint32_t) pCreateInfo->maxAnisotropy : 0;
+       uint32_t max_aniso = radv_get_max_anisotropy(device, pCreateInfo);
        uint32_t max_aniso_ratio = radv_tex_aniso_filter(max_aniso);
        bool is_vi = (device->physical_device->rad_info.chip_class >= VI);
-       unsigned filter_mode = SQ_IMG_FILTER_MODE_BLEND;
+       unsigned filter_mode = V_008F30_SQ_IMG_FILTER_MODE_BLEND;
 
        const struct VkSamplerReductionModeCreateInfoEXT *sampler_reduction =
                vk_find_struct_const(pCreateInfo->pNext,
@@ -4094,7 +4610,7 @@ VkResult radv_CreateSampler(
        sampler = vk_alloc2(&device->alloc, pAllocator, sizeof(*sampler), 8,
                              VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
        if (!sampler)
-               return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
 
        radv_init_sampler(device, sampler, pCreateInfo);
        *pSampler = radv_sampler_to_handle(sampler);
@@ -4170,21 +4686,23 @@ VkResult radv_GetMemoryFdKHR(VkDevice _device,
 
        /* At the moment, we support only the below handle types. */
        assert(pGetFdInfo->handleType ==
-              VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR ||
+              VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT ||
               pGetFdInfo->handleType ==
               VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT);
 
        bool ret = radv_get_memory_fd(device, memory, pFD);
        if (ret == false)
-               return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
+               return vk_error(device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
        return VK_SUCCESS;
 }
 
 VkResult radv_GetMemoryFdPropertiesKHR(VkDevice _device,
-                                      VkExternalMemoryHandleTypeFlagBitsKHR handleType,
+                                      VkExternalMemoryHandleTypeFlagBits handleType,
                                       int fd,
                                       VkMemoryFdPropertiesKHR *pMemoryFdProperties)
 {
+   RADV_FROM_HANDLE(radv_device, device, _device);
+
    switch (handleType) {
    case VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT:
       pMemoryFdProperties->memoryTypeBits = (1 << RADV_MEM_TYPE_COUNT) - 1;
@@ -4198,7 +4716,7 @@ VkResult radv_GetMemoryFdPropertiesKHR(VkDevice _device,
        *
        * So opaque handle types fall into the default "unsupported" case.
        */
-      return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+      return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
    }
 }
 
@@ -4209,7 +4727,7 @@ static VkResult radv_import_opaque_fd(struct radv_device *device,
        uint32_t syncobj_handle = 0;
        int ret = device->ws->import_syncobj(device->ws, fd, &syncobj_handle);
        if (ret != 0)
-               return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+               return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
 
        if (*syncobj)
                device->ws->destroy_syncobj(device->ws, *syncobj);
@@ -4230,7 +4748,7 @@ static VkResult radv_import_sync_fd(struct radv_device *device,
        if (!syncobj_handle) {
                int ret = device->ws->create_syncobj(device->ws, &syncobj_handle);
                if (ret) {
-                       return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+                       return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
                }
        }
 
@@ -4239,7 +4757,7 @@ static VkResult radv_import_sync_fd(struct radv_device *device,
        } else {
                int ret = device->ws->import_syncobj_from_sync_file(device->ws, syncobj_handle, fd);
        if (ret != 0)
-               return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+               return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
        }
 
        *syncobj = syncobj_handle;
@@ -4256,16 +4774,16 @@ VkResult radv_ImportSemaphoreFdKHR(VkDevice _device,
        RADV_FROM_HANDLE(radv_semaphore, sem, pImportSemaphoreFdInfo->semaphore);
        uint32_t *syncobj_dst = NULL;
 
-       if (pImportSemaphoreFdInfo->flags & VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR) {
+       if (pImportSemaphoreFdInfo->flags & VK_SEMAPHORE_IMPORT_TEMPORARY_BIT) {
                syncobj_dst = &sem->temp_syncobj;
        } else {
                syncobj_dst = &sem->syncobj;
        }
 
        switch(pImportSemaphoreFdInfo->handleType) {
-               case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR:
+               case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT:
                        return radv_import_opaque_fd(device, pImportSemaphoreFdInfo->fd, syncobj_dst);
-               case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR:
+               case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT:
                        return radv_import_sync_fd(device, pImportSemaphoreFdInfo->fd, syncobj_dst);
                default:
                        unreachable("Unhandled semaphore handle type");
@@ -4287,10 +4805,10 @@ VkResult radv_GetSemaphoreFdKHR(VkDevice _device,
                syncobj_handle = sem->syncobj;
 
        switch(pGetFdInfo->handleType) {
-       case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR:
+       case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT:
                ret = device->ws->export_syncobj(device->ws, syncobj_handle, pFd);
                break;
-       case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR:
+       case VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT:
                ret = device->ws->export_syncobj_to_sync_file(device->ws, syncobj_handle, pFd);
                if (!ret) {
                        if (sem->temp_syncobj) {
@@ -4306,30 +4824,30 @@ VkResult radv_GetSemaphoreFdKHR(VkDevice _device,
        }
 
        if (ret)
-               return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+               return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
        return VK_SUCCESS;
 }
 
 void radv_GetPhysicalDeviceExternalSemaphoreProperties(
        VkPhysicalDevice                            physicalDevice,
-       const VkPhysicalDeviceExternalSemaphoreInfoKHR* pExternalSemaphoreInfo,
-       VkExternalSemaphorePropertiesKHR*           pExternalSemaphoreProperties)
+       const VkPhysicalDeviceExternalSemaphoreInfo *pExternalSemaphoreInfo,
+       VkExternalSemaphoreProperties               *pExternalSemaphoreProperties)
 {
        RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
 
        /* Require has_syncobj_wait_for_submit for the syncobj signal ioctl introduced at virtually the same time */
        if (pdevice->rad_info.has_syncobj_wait_for_submit &&
-           (pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR || 
-            pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR)) {
-               pExternalSemaphoreProperties->exportFromImportedHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR;
-               pExternalSemaphoreProperties->compatibleHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR;
-               pExternalSemaphoreProperties->externalSemaphoreFeatures = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT_KHR |
-                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR;
-       } else if (pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR) {
-               pExternalSemaphoreProperties->exportFromImportedHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR;
-               pExternalSemaphoreProperties->compatibleHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR;
-               pExternalSemaphoreProperties->externalSemaphoreFeatures = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT_KHR |
-                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR;
+           (pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT || 
+            pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT)) {
+               pExternalSemaphoreProperties->exportFromImportedHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT;
+               pExternalSemaphoreProperties->compatibleHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT;
+               pExternalSemaphoreProperties->externalSemaphoreFeatures = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT |
+                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT;
+       } else if (pExternalSemaphoreInfo->handleType == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT) {
+               pExternalSemaphoreProperties->exportFromImportedHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT;
+               pExternalSemaphoreProperties->compatibleHandleTypes = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT;
+               pExternalSemaphoreProperties->externalSemaphoreFeatures = VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT |
+                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT;
        } else {
                pExternalSemaphoreProperties->exportFromImportedHandleTypes = 0;
                pExternalSemaphoreProperties->compatibleHandleTypes = 0;
@@ -4345,16 +4863,16 @@ VkResult radv_ImportFenceFdKHR(VkDevice _device,
        uint32_t *syncobj_dst = NULL;
 
 
-       if (pImportFenceFdInfo->flags & VK_FENCE_IMPORT_TEMPORARY_BIT_KHR) {
+       if (pImportFenceFdInfo->flags & VK_FENCE_IMPORT_TEMPORARY_BIT) {
                syncobj_dst = &fence->temp_syncobj;
        } else {
                syncobj_dst = &fence->syncobj;
        }
 
        switch(pImportFenceFdInfo->handleType) {
-               case VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR:
+               case VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT:
                        return radv_import_opaque_fd(device, pImportFenceFdInfo->fd, syncobj_dst);
-               case VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR:
+               case VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT:
                        return radv_import_sync_fd(device, pImportFenceFdInfo->fd, syncobj_dst);
                default:
                        unreachable("Unhandled fence handle type");
@@ -4376,10 +4894,10 @@ VkResult radv_GetFenceFdKHR(VkDevice _device,
                syncobj_handle = fence->syncobj;
 
        switch(pGetFdInfo->handleType) {
-       case VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR:
+       case VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT:
                ret = device->ws->export_syncobj(device->ws, syncobj_handle, pFd);
                break;
-       case VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR:
+       case VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT:
                ret = device->ws->export_syncobj_to_sync_file(device->ws, syncobj_handle, pFd);
                if (!ret) {
                        if (fence->temp_syncobj) {
@@ -4395,24 +4913,24 @@ VkResult radv_GetFenceFdKHR(VkDevice _device,
        }
 
        if (ret)
-               return vk_error(VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR);
+               return vk_error(device->instance, VK_ERROR_INVALID_EXTERNAL_HANDLE);
        return VK_SUCCESS;
 }
 
 void radv_GetPhysicalDeviceExternalFenceProperties(
        VkPhysicalDevice                            physicalDevice,
-       const VkPhysicalDeviceExternalFenceInfoKHR* pExternalFenceInfo,
-       VkExternalFencePropertiesKHR*           pExternalFenceProperties)
+       const VkPhysicalDeviceExternalFenceInfo *pExternalFenceInfo,
+       VkExternalFenceProperties               *pExternalFenceProperties)
 {
        RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
 
        if (pdevice->rad_info.has_syncobj_wait_for_submit &&
-           (pExternalFenceInfo->handleType == VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR || 
-            pExternalFenceInfo->handleType == VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR)) {
-               pExternalFenceProperties->exportFromImportedHandleTypes = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR | VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR;
-               pExternalFenceProperties->compatibleHandleTypes = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR | VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR;
-               pExternalFenceProperties->externalFenceFeatures = VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT_KHR |
-                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR;
+           (pExternalFenceInfo->handleType == VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT || 
+            pExternalFenceInfo->handleType == VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT)) {
+               pExternalFenceProperties->exportFromImportedHandleTypes = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT;
+               pExternalFenceProperties->compatibleHandleTypes = VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT | VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT;
+               pExternalFenceProperties->externalFenceFeatures = VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT |
+                       VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT;
        } else {
                pExternalFenceProperties->exportFromImportedHandleTypes = 0;
                pExternalFenceProperties->compatibleHandleTypes = 0;
@@ -4472,3 +4990,122 @@ radv_GetDeviceGroupPeerMemoryFeatures(
                               VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT |
                               VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT;
 }
+
+static const VkTimeDomainEXT radv_time_domains[] = {
+       VK_TIME_DOMAIN_DEVICE_EXT,
+       VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT,
+       VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT,
+};
+
+VkResult radv_GetPhysicalDeviceCalibrateableTimeDomainsEXT(
+       VkPhysicalDevice                             physicalDevice,
+       uint32_t                                     *pTimeDomainCount,
+       VkTimeDomainEXT                              *pTimeDomains)
+{
+       int d;
+       VK_OUTARRAY_MAKE(out, pTimeDomains, pTimeDomainCount);
+
+       for (d = 0; d < ARRAY_SIZE(radv_time_domains); d++) {
+               vk_outarray_append(&out, i) {
+                       *i = radv_time_domains[d];
+               }
+       }
+
+       return vk_outarray_status(&out);
+}
+
+static uint64_t
+radv_clock_gettime(clockid_t clock_id)
+{
+       struct timespec current;
+       int ret;
+
+       ret = clock_gettime(clock_id, &current);
+       if (ret < 0 && clock_id == CLOCK_MONOTONIC_RAW)
+               ret = clock_gettime(CLOCK_MONOTONIC, &current);
+       if (ret < 0)
+               return 0;
+
+       return (uint64_t) current.tv_sec * 1000000000ULL + current.tv_nsec;
+}
+
+VkResult radv_GetCalibratedTimestampsEXT(
+       VkDevice                                     _device,
+       uint32_t                                     timestampCount,
+       const VkCalibratedTimestampInfoEXT           *pTimestampInfos,
+       uint64_t                                     *pTimestamps,
+       uint64_t                                     *pMaxDeviation)
+{
+       RADV_FROM_HANDLE(radv_device, device, _device);
+       uint32_t clock_crystal_freq = device->physical_device->rad_info.clock_crystal_freq;
+       int d;
+       uint64_t begin, end;
+        uint64_t max_clock_period = 0;
+
+       begin = radv_clock_gettime(CLOCK_MONOTONIC_RAW);
+
+       for (d = 0; d < timestampCount; d++) {
+               switch (pTimestampInfos[d].timeDomain) {
+               case VK_TIME_DOMAIN_DEVICE_EXT:
+                       pTimestamps[d] = device->ws->query_value(device->ws,
+                                                                RADEON_TIMESTAMP);
+                        uint64_t device_period = DIV_ROUND_UP(1000000, clock_crystal_freq);
+                        max_clock_period = MAX2(max_clock_period, device_period);
+                       break;
+               case VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT:
+                       pTimestamps[d] = radv_clock_gettime(CLOCK_MONOTONIC);
+                        max_clock_period = MAX2(max_clock_period, 1);
+                       break;
+
+               case VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT:
+                       pTimestamps[d] = begin;
+                       break;
+               default:
+                       pTimestamps[d] = 0;
+                       break;
+               }
+       }
+
+       end = radv_clock_gettime(CLOCK_MONOTONIC_RAW);
+
+        /*
+         * The maximum deviation is the sum of the interval over which we
+         * perform the sampling and the maximum period of any sampled
+         * clock. That's because the maximum skew between any two sampled
+         * clock edges is when the sampled clock with the largest period is
+         * sampled at the end of that period but right at the beginning of the
+         * sampling interval and some other clock is sampled right at the
+         * begining of its sampling period and right at the end of the
+         * sampling interval. Let's assume the GPU has the longest clock
+         * period and that the application is sampling GPU and monotonic:
+         *
+         *                               s                 e
+         *                      w x y z 0 1 2 3 4 5 6 7 8 9 a b c d e f
+         *     Raw              -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
+         *
+         *                               g
+         *               0         1         2         3
+         *     GPU       -----_____-----_____-----_____-----_____
+         *
+         *                                                m
+         *                                         x y z 0 1 2 3 4 5 6 7 8 9 a b c
+         *     Monotonic                           -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
+         *
+         *     Interval                     <----------------->
+         *     Deviation           <-------------------------->
+         *
+         *             s  = read(raw)       2
+         *             g  = read(GPU)       1
+         *             m  = read(monotonic) 2
+         *             e  = read(raw)       b
+         *
+         * We round the sample interval up by one tick to cover sampling error
+         * in the interval clock
+         */
+
+        uint64_t sample_interval = end - begin + 1;
+
+        *pMaxDeviation = sample_interval + max_clock_period;
+
+       return VK_SUCCESS;
+}