radv/sqtt: handle thread trace capture in sqtt_QueuePresentKHR()
[mesa.git] / src / amd / vulkan / radv_wsi.c
1 /*
2 * Copyright © 2016 Red Hat
3 * based on intel anv code:
4 * Copyright © 2015 Intel Corporation
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 * IN THE SOFTWARE.
24 */
25
26 #include "radv_private.h"
27 #include "radv_meta.h"
28 #include "wsi_common.h"
29 #include "vk_util.h"
30 #include "util/macros.h"
31
32 static PFN_vkVoidFunction
33 radv_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
34 {
35 return radv_lookup_entrypoint(pName);
36 }
37
38 VkResult
39 radv_init_wsi(struct radv_physical_device *physical_device)
40 {
41 return wsi_device_init(&physical_device->wsi_device,
42 radv_physical_device_to_handle(physical_device),
43 radv_wsi_proc_addr,
44 &physical_device->instance->alloc,
45 physical_device->master_fd,
46 &physical_device->instance->dri_options);
47 }
48
49 void
50 radv_finish_wsi(struct radv_physical_device *physical_device)
51 {
52 wsi_device_finish(&physical_device->wsi_device,
53 &physical_device->instance->alloc);
54 }
55
56 void radv_DestroySurfaceKHR(
57 VkInstance _instance,
58 VkSurfaceKHR _surface,
59 const VkAllocationCallbacks* pAllocator)
60 {
61 RADV_FROM_HANDLE(radv_instance, instance, _instance);
62 ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
63
64 vk_free2(&instance->alloc, pAllocator, surface);
65 }
66
67 VkResult radv_GetPhysicalDeviceSurfaceSupportKHR(
68 VkPhysicalDevice physicalDevice,
69 uint32_t queueFamilyIndex,
70 VkSurfaceKHR surface,
71 VkBool32* pSupported)
72 {
73 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
74
75 return wsi_common_get_surface_support(&device->wsi_device,
76 queueFamilyIndex,
77 surface,
78 pSupported);
79 }
80
81 VkResult radv_GetPhysicalDeviceSurfaceCapabilitiesKHR(
82 VkPhysicalDevice physicalDevice,
83 VkSurfaceKHR surface,
84 VkSurfaceCapabilitiesKHR* pSurfaceCapabilities)
85 {
86 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
87
88 return wsi_common_get_surface_capabilities(&device->wsi_device,
89 surface,
90 pSurfaceCapabilities);
91 }
92
93 VkResult radv_GetPhysicalDeviceSurfaceCapabilities2KHR(
94 VkPhysicalDevice physicalDevice,
95 const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo,
96 VkSurfaceCapabilities2KHR* pSurfaceCapabilities)
97 {
98 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
99
100 return wsi_common_get_surface_capabilities2(&device->wsi_device,
101 pSurfaceInfo,
102 pSurfaceCapabilities);
103 }
104
105 VkResult radv_GetPhysicalDeviceSurfaceCapabilities2EXT(
106 VkPhysicalDevice physicalDevice,
107 VkSurfaceKHR surface,
108 VkSurfaceCapabilities2EXT* pSurfaceCapabilities)
109 {
110 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
111
112 return wsi_common_get_surface_capabilities2ext(&device->wsi_device,
113 surface,
114 pSurfaceCapabilities);
115 }
116
117 VkResult radv_GetPhysicalDeviceSurfaceFormatsKHR(
118 VkPhysicalDevice physicalDevice,
119 VkSurfaceKHR surface,
120 uint32_t* pSurfaceFormatCount,
121 VkSurfaceFormatKHR* pSurfaceFormats)
122 {
123 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
124
125 return wsi_common_get_surface_formats(&device->wsi_device,
126 surface,
127 pSurfaceFormatCount,
128 pSurfaceFormats);
129 }
130
131 VkResult radv_GetPhysicalDeviceSurfaceFormats2KHR(
132 VkPhysicalDevice physicalDevice,
133 const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo,
134 uint32_t* pSurfaceFormatCount,
135 VkSurfaceFormat2KHR* pSurfaceFormats)
136 {
137 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
138
139 return wsi_common_get_surface_formats2(&device->wsi_device,
140 pSurfaceInfo,
141 pSurfaceFormatCount,
142 pSurfaceFormats);
143 }
144
145 VkResult radv_GetPhysicalDeviceSurfacePresentModesKHR(
146 VkPhysicalDevice physicalDevice,
147 VkSurfaceKHR surface,
148 uint32_t* pPresentModeCount,
149 VkPresentModeKHR* pPresentModes)
150 {
151 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
152
153 return wsi_common_get_surface_present_modes(&device->wsi_device,
154 surface,
155 pPresentModeCount,
156 pPresentModes);
157 }
158
159 VkResult radv_CreateSwapchainKHR(
160 VkDevice _device,
161 const VkSwapchainCreateInfoKHR* pCreateInfo,
162 const VkAllocationCallbacks* pAllocator,
163 VkSwapchainKHR* pSwapchain)
164 {
165 RADV_FROM_HANDLE(radv_device, device, _device);
166 const VkAllocationCallbacks *alloc;
167 if (pAllocator)
168 alloc = pAllocator;
169 else
170 alloc = &device->alloc;
171
172 return wsi_common_create_swapchain(&device->physical_device->wsi_device,
173 radv_device_to_handle(device),
174 pCreateInfo,
175 alloc,
176 pSwapchain);
177 }
178
179 void radv_DestroySwapchainKHR(
180 VkDevice _device,
181 VkSwapchainKHR swapchain,
182 const VkAllocationCallbacks* pAllocator)
183 {
184 RADV_FROM_HANDLE(radv_device, device, _device);
185 const VkAllocationCallbacks *alloc;
186
187 if (pAllocator)
188 alloc = pAllocator;
189 else
190 alloc = &device->alloc;
191
192 wsi_common_destroy_swapchain(_device, swapchain, alloc);
193 }
194
195 VkResult radv_GetSwapchainImagesKHR(
196 VkDevice device,
197 VkSwapchainKHR swapchain,
198 uint32_t* pSwapchainImageCount,
199 VkImage* pSwapchainImages)
200 {
201 return wsi_common_get_images(swapchain,
202 pSwapchainImageCount,
203 pSwapchainImages);
204 }
205
206 VkResult radv_AcquireNextImageKHR(
207 VkDevice device,
208 VkSwapchainKHR swapchain,
209 uint64_t timeout,
210 VkSemaphore semaphore,
211 VkFence fence,
212 uint32_t* pImageIndex)
213 {
214 VkAcquireNextImageInfoKHR acquire_info = {
215 .sType = VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR,
216 .swapchain = swapchain,
217 .timeout = timeout,
218 .semaphore = semaphore,
219 .fence = fence,
220 .deviceMask = 0,
221 };
222
223 return radv_AcquireNextImage2KHR(device, &acquire_info, pImageIndex);
224 }
225
226 VkResult radv_AcquireNextImage2KHR(
227 VkDevice _device,
228 const VkAcquireNextImageInfoKHR* pAcquireInfo,
229 uint32_t* pImageIndex)
230 {
231 RADV_FROM_HANDLE(radv_device, device, _device);
232 struct radv_physical_device *pdevice = device->physical_device;
233 RADV_FROM_HANDLE(radv_fence, fence, pAcquireInfo->fence);
234 RADV_FROM_HANDLE(radv_semaphore, semaphore, pAcquireInfo->semaphore);
235
236 VkResult result = wsi_common_acquire_next_image2(&pdevice->wsi_device,
237 _device,
238 pAcquireInfo,
239 pImageIndex);
240
241 if (result == VK_SUCCESS || result == VK_SUBOPTIMAL_KHR) {
242 if (fence) {
243 if (fence->fence)
244 device->ws->signal_fence(fence->fence);
245 if (fence->temp_syncobj) {
246 device->ws->signal_syncobj(device->ws, fence->temp_syncobj);
247 } else if (fence->syncobj) {
248 device->ws->signal_syncobj(device->ws, fence->syncobj);
249 }
250 }
251 if (semaphore) {
252 struct radv_semaphore_part *part =
253 semaphore->temporary.kind != RADV_SEMAPHORE_NONE ?
254 &semaphore->temporary : &semaphore->permanent;
255
256 switch (part->kind) {
257 case RADV_SEMAPHORE_NONE:
258 case RADV_SEMAPHORE_WINSYS:
259 /* Do not need to do anything. */
260 break;
261 case RADV_SEMAPHORE_TIMELINE:
262 unreachable("WSI only allows binary semaphores.");
263 case RADV_SEMAPHORE_SYNCOBJ:
264 device->ws->signal_syncobj(device->ws, part->syncobj);
265 break;
266 }
267 }
268 }
269 return result;
270 }
271
272 VkResult radv_QueuePresentKHR(
273 VkQueue _queue,
274 const VkPresentInfoKHR* pPresentInfo)
275 {
276 RADV_FROM_HANDLE(radv_queue, queue, _queue);
277 return wsi_common_queue_present(&queue->device->physical_device->wsi_device,
278 radv_device_to_handle(queue->device),
279 _queue,
280 queue->queue_family_index,
281 pPresentInfo);
282 }
283
284
285 VkResult radv_GetDeviceGroupPresentCapabilitiesKHR(
286 VkDevice device,
287 VkDeviceGroupPresentCapabilitiesKHR* pCapabilities)
288 {
289 memset(pCapabilities->presentMask, 0,
290 sizeof(pCapabilities->presentMask));
291 pCapabilities->presentMask[0] = 0x1;
292 pCapabilities->modes = VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR;
293
294 return VK_SUCCESS;
295 }
296
297 VkResult radv_GetDeviceGroupSurfacePresentModesKHR(
298 VkDevice device,
299 VkSurfaceKHR surface,
300 VkDeviceGroupPresentModeFlagsKHR* pModes)
301 {
302 *pModes = VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR;
303
304 return VK_SUCCESS;
305 }
306
307 VkResult radv_GetPhysicalDevicePresentRectanglesKHR(
308 VkPhysicalDevice physicalDevice,
309 VkSurfaceKHR surface,
310 uint32_t* pRectCount,
311 VkRect2D* pRects)
312 {
313 RADV_FROM_HANDLE(radv_physical_device, device, physicalDevice);
314
315 return wsi_common_get_present_rectangles(&device->wsi_device,
316 surface,
317 pRectCount, pRects);
318 }