mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 09:18:10 +02:00
Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36827>
99 lines
3.2 KiB
C
99 lines
3.2 KiB
C
/*
|
|
* Copyright © 2016 Red Hat
|
|
* based on intel anv code:
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "radv_wsi.h"
|
|
#include "meta/radv_meta.h"
|
|
#include "util/macros.h"
|
|
#include "radv_debug.h"
|
|
#include "vk_fence.h"
|
|
#include "vk_semaphore.h"
|
|
#include "vk_util.h"
|
|
#include "wsi_common.h"
|
|
|
|
static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL
|
|
radv_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
|
|
{
|
|
VK_FROM_HANDLE(radv_physical_device, pdev, physicalDevice);
|
|
const struct radv_instance *instance = radv_physical_device_instance(pdev);
|
|
return vk_instance_get_proc_addr_unchecked(&instance->vk, pName);
|
|
}
|
|
|
|
static void
|
|
radv_wsi_set_memory_ownership(VkDevice _device, VkDeviceMemory _mem, VkBool32 ownership)
|
|
{
|
|
VK_FROM_HANDLE(radv_device, device, _device);
|
|
VK_FROM_HANDLE(radv_device_memory, mem, _mem);
|
|
|
|
if (device->use_global_bo_list) {
|
|
device->ws->buffer_make_resident(device->ws, mem->bo, ownership);
|
|
}
|
|
}
|
|
|
|
static struct vk_queue *
|
|
radv_wsi_get_prime_blit_queue(VkDevice _device)
|
|
{
|
|
VK_FROM_HANDLE(radv_device, device, _device);
|
|
struct radv_physical_device *pdev = radv_device_physical(device);
|
|
const struct radv_instance *instance = radv_physical_device_instance(pdev);
|
|
|
|
if (device->private_sdma_queue != VK_NULL_HANDLE)
|
|
return &device->private_sdma_queue->vk;
|
|
|
|
if (pdev->info.gfx_level >= GFX9 && !(instance->debug_flags & RADV_DEBUG_NO_DMA_BLIT)) {
|
|
|
|
pdev->vk_queue_to_radv[pdev->num_queues++] = RADV_QUEUE_TRANSFER;
|
|
const VkDeviceQueueCreateInfo queue_create = {
|
|
.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO,
|
|
.queueFamilyIndex = pdev->num_queues - 1,
|
|
.queueCount = 1,
|
|
};
|
|
|
|
device->private_sdma_queue =
|
|
vk_zalloc(&device->vk.alloc, sizeof(struct radv_queue), 8, VK_SYSTEM_ALLOCATION_SCOPE_DEVICE);
|
|
|
|
VkResult result = radv_queue_init(device, device->private_sdma_queue, 0, &queue_create, NULL);
|
|
if (result == VK_SUCCESS) {
|
|
return &device->private_sdma_queue->vk;
|
|
} else {
|
|
vk_free(&device->vk.alloc, device->private_sdma_queue);
|
|
device->private_sdma_queue = VK_NULL_HANDLE;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
VkResult
|
|
radv_init_wsi(struct radv_physical_device *pdev)
|
|
{
|
|
const struct radv_instance *instance = radv_physical_device_instance(pdev);
|
|
|
|
VkResult result =
|
|
wsi_device_init(&pdev->wsi_device, radv_physical_device_to_handle(pdev), radv_wsi_proc_addr, &instance->vk.alloc,
|
|
pdev->master_fd, &instance->drirc.options, &(struct wsi_device_options){.sw_device = false});
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
pdev->wsi_device.supports_modifiers = pdev->info.gfx_level >= GFX9;
|
|
pdev->wsi_device.set_memory_ownership = radv_wsi_set_memory_ownership;
|
|
pdev->wsi_device.get_blit_queue = radv_wsi_get_prime_blit_queue;
|
|
|
|
wsi_device_setup_syncobj_fd(&pdev->wsi_device, pdev->local_fd);
|
|
|
|
pdev->vk.wsi_device = &pdev->wsi_device;
|
|
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
void
|
|
radv_finish_wsi(struct radv_physical_device *pdev)
|
|
{
|
|
const struct radv_instance *instance = radv_physical_device_instance(pdev);
|
|
|
|
pdev->vk.wsi_device = NULL;
|
|
wsi_device_finish(&pdev->wsi_device, &instance->vk.alloc);
|
|
}
|