mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 11:28:15 +02:00
Adds a trivial EXT_image_drm_format_modifier support that only handles LINEAR modifier. Signed-off-by: Icenowy Zheng <uwu@icenowy.me> Acked-by: Luigi Santivetti <luigi.santivetti@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38991>
110 lines
3.6 KiB
C
110 lines
3.6 KiB
C
/*
|
|
* Copyright © 2022 Imagination Technologies Ltd.
|
|
*
|
|
* based on intel anv code:
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#include "pvr_wsi.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <vulkan/vulkan.h>
|
|
#include <xf86drm.h>
|
|
|
|
#include "pvr_device.h"
|
|
#include "pvr_entrypoints.h"
|
|
#include "pvr_instance.h"
|
|
#include "pvr_physical_device.h"
|
|
#include "pvr_queue.h"
|
|
|
|
#include "util/u_atomic.h"
|
|
#include "vk_object.h"
|
|
#include "vk_instance.h"
|
|
#include "wsi_common.h"
|
|
|
|
static PFN_vkVoidFunction pvr_wsi_proc_addr(VkPhysicalDevice physicalDevice,
|
|
const char *pName)
|
|
{
|
|
VK_FROM_HANDLE(pvr_physical_device, pdevice, physicalDevice);
|
|
|
|
return vk_instance_get_proc_addr_unchecked(&pdevice->instance->vk, pName);
|
|
}
|
|
|
|
static bool pvr_can_present_on_device(VkPhysicalDevice pdevice, int fd)
|
|
{
|
|
drmDevicePtr device;
|
|
if (drmGetDevice2(fd, 0, &device) != 0)
|
|
return false;
|
|
/* Allow on-device presentation for all devices with bus type PLATFORM.
|
|
* Other device types such as PCI or USB should use the PRIME blit path. */
|
|
bool match = device->bustype == DRM_BUS_PLATFORM;
|
|
|
|
drmFreeDevice(&device);
|
|
|
|
return match;
|
|
}
|
|
|
|
VkResult pvr_wsi_init(struct pvr_physical_device *pdevice)
|
|
{
|
|
VkResult result;
|
|
|
|
result = wsi_device_init(&pdevice->wsi_device,
|
|
pvr_physical_device_to_handle(pdevice),
|
|
pvr_wsi_proc_addr,
|
|
&pdevice->vk.instance->alloc,
|
|
pdevice->ws->display_fd,
|
|
NULL,
|
|
&(struct wsi_device_options){ .sw_device = false });
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
pdevice->wsi_device.supports_modifiers = true;
|
|
pdevice->wsi_device.can_present_on_device = pvr_can_present_on_device;
|
|
pdevice->vk.wsi_device = &pdevice->wsi_device;
|
|
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
void pvr_wsi_finish(struct pvr_physical_device *pdevice)
|
|
{
|
|
pdevice->vk.wsi_device = NULL;
|
|
wsi_device_finish(&pdevice->wsi_device, &pdevice->vk.instance->alloc);
|
|
}
|
|
|
|
VkResult pvr_QueuePresentKHR(VkQueue _queue,
|
|
const VkPresentInfoKHR *pPresentInfo)
|
|
{
|
|
VK_FROM_HANDLE(pvr_queue, queue, _queue);
|
|
VkResult result;
|
|
|
|
result = wsi_common_queue_present(&queue->device->pdevice->wsi_device,
|
|
&queue->vk,
|
|
pPresentInfo);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
p_atomic_inc(&queue->device->global_queue_present_count);
|
|
|
|
return VK_SUCCESS;
|
|
}
|