2024-11-29 17:22:59 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025 Arm Limited.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
* 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 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file present_timing.cpp
|
|
|
|
|
*
|
|
|
|
|
* @brief Contains the functionality to implement features for present timing extension.
|
|
|
|
|
*/
|
2025-05-16 08:26:19 +00:00
|
|
|
#if VULKAN_WSI_LAYER_EXPERIMENTAL
|
2024-11-29 17:22:59 +00:00
|
|
|
#include <cstdint>
|
2025-03-20 16:52:35 +02:00
|
|
|
#include <array>
|
2025-05-16 08:26:19 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
#include "present_timing_handler.hpp"
|
|
|
|
|
#include "layer/private_data.hpp"
|
2024-11-29 17:22:59 +00:00
|
|
|
|
2025-05-28 15:59:16 +00:00
|
|
|
wsi_ext_present_timing_headless::wsi_ext_present_timing_headless(const util::allocator &allocator, VkDevice device,
|
2025-07-18 11:39:41 +00:00
|
|
|
uint32_t num_images,
|
|
|
|
|
std::optional<VkTimeDomainEXT> monotonic_domain)
|
2025-05-28 15:59:16 +00:00
|
|
|
: wsi::wsi_ext_present_timing(allocator, device, num_images)
|
2025-07-18 11:39:41 +00:00
|
|
|
, m_monotonic_domain(monotonic_domain)
|
2024-11-29 17:22:59 +00:00
|
|
|
{
|
|
|
|
|
}
|
2025-06-18 12:15:41 +00:00
|
|
|
|
|
|
|
|
util::unique_ptr<wsi_ext_present_timing_headless> wsi_ext_present_timing_headless::create(
|
|
|
|
|
const VkDevice &device, const util::allocator &allocator, uint32_t num_images)
|
2025-05-16 08:26:19 +00:00
|
|
|
{
|
2025-06-18 12:15:41 +00:00
|
|
|
|
2025-05-16 08:26:19 +00:00
|
|
|
auto &dev_data = layer::device_private_data::get(device);
|
|
|
|
|
|
2025-06-18 12:15:41 +00:00
|
|
|
/*
|
|
|
|
|
* Select the hardware raw monotonic clock domain (unaffected by NTP or adjtime adjustments)
|
|
|
|
|
* when the driver supports it; otherwise use the standard monotonic clock.
|
|
|
|
|
*/
|
|
|
|
|
std::array monotonic_domains = {
|
|
|
|
|
std::tuple{ VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT, false },
|
|
|
|
|
std::tuple{ VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT, false },
|
|
|
|
|
};
|
|
|
|
|
auto result =
|
|
|
|
|
wsi::check_time_domain_support(dev_data.physical_device, monotonic_domains.data(), monotonic_domains.size());
|
2025-05-16 08:26:19 +00:00
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
|
{
|
2025-06-18 12:15:41 +00:00
|
|
|
return nullptr;
|
2025-05-16 08:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
2025-07-18 11:39:41 +00:00
|
|
|
std::optional<VkTimeDomainEXT> monotonic_domain;
|
2025-06-18 12:15:41 +00:00
|
|
|
for (auto [domain, supported] : monotonic_domains)
|
2025-05-16 08:26:19 +00:00
|
|
|
{
|
2025-06-18 12:15:41 +00:00
|
|
|
if (supported)
|
|
|
|
|
{
|
2025-07-18 11:39:41 +00:00
|
|
|
monotonic_domain = domain;
|
2025-06-18 12:15:41 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2025-05-16 08:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
2025-06-18 12:15:41 +00:00
|
|
|
util::vector<util::unique_ptr<wsi::vulkan_time_domain>> domains(allocator);
|
|
|
|
|
if (!domains.try_push_back(allocator.make_unique<wsi::vulkan_time_domain>(
|
|
|
|
|
VK_PRESENT_STAGE_QUEUE_OPERATIONS_END_BIT_EXT, VK_TIME_DOMAIN_DEVICE_KHR)))
|
2025-05-16 08:26:19 +00:00
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2025-06-18 12:15:41 +00:00
|
|
|
|
2025-07-18 11:39:41 +00:00
|
|
|
if (monotonic_domain)
|
2025-05-16 08:26:19 +00:00
|
|
|
{
|
2025-07-18 11:39:41 +00:00
|
|
|
if (!domains.try_push_back(
|
|
|
|
|
allocator.make_unique<wsi::vulkan_time_domain>(VK_PRESENT_STAGE_IMAGE_LATCHED_BIT_EXT, *monotonic_domain)))
|
2025-06-18 12:15:41 +00:00
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
if (!domains.try_push_back(allocator.make_unique<wsi::vulkan_time_domain>(
|
2025-07-18 11:39:41 +00:00
|
|
|
VK_PRESENT_STAGE_IMAGE_FIRST_PIXEL_OUT_BIT_EXT, *monotonic_domain)))
|
2025-06-18 12:15:41 +00:00
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
if (!domains.try_push_back(allocator.make_unique<wsi::vulkan_time_domain>(
|
2025-07-18 11:39:41 +00:00
|
|
|
VK_PRESENT_STAGE_IMAGE_FIRST_PIXEL_VISIBLE_BIT_EXT, *monotonic_domain)))
|
2025-06-18 12:15:41 +00:00
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2025-05-16 08:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
2025-06-18 12:15:41 +00:00
|
|
|
return wsi_ext_present_timing::create<wsi_ext_present_timing_headless>(allocator, domains.data(), domains.size(),
|
2025-07-18 11:39:41 +00:00
|
|
|
device, num_images, monotonic_domain);
|
2024-11-29 17:22:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VkResult wsi_ext_present_timing_headless::get_swapchain_timing_properties(
|
|
|
|
|
uint64_t &timing_properties_counter, VkSwapchainTimingPropertiesEXT &timing_properties)
|
|
|
|
|
{
|
2025-06-03 13:05:16 +01:00
|
|
|
/*
|
|
|
|
|
* The headless backend does not have a limit on how fast the swapchain can be presented.
|
|
|
|
|
* We set the refresh duration to 1, because on some platforms, 0 is returned until after
|
|
|
|
|
* at least one image had been presented. On these platforms, 0 is used to indicate timing
|
|
|
|
|
* properties are currently unavailable.
|
|
|
|
|
*/
|
2025-05-22 10:12:33 +00:00
|
|
|
const uint64_t fixed_refresh_duration_ns = 1;
|
2024-11-29 17:22:59 +00:00
|
|
|
|
|
|
|
|
timing_properties_counter = 1;
|
|
|
|
|
timing_properties.refreshDuration = fixed_refresh_duration_ns;
|
|
|
|
|
timing_properties.variableRefreshDelay = UINT64_MAX;
|
|
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
}
|
2025-07-30 12:27:09 +00:00
|
|
|
|
|
|
|
|
std::optional<uint64_t> wsi_ext_present_timing_headless::get_current_clock_time_ns() const
|
|
|
|
|
{
|
|
|
|
|
if (!m_monotonic_domain.has_value())
|
|
|
|
|
{
|
|
|
|
|
return std::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clockid_t clockid = CLOCK_MONOTONIC_RAW;
|
|
|
|
|
switch (*m_monotonic_domain)
|
|
|
|
|
{
|
|
|
|
|
case VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_KHR:
|
|
|
|
|
clockid = CLOCK_MONOTONIC_RAW;
|
|
|
|
|
break;
|
|
|
|
|
case VK_TIME_DOMAIN_CLOCK_MONOTONIC_KHR:
|
|
|
|
|
clockid = CLOCK_MONOTONIC;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return std::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct timespec now = {};
|
|
|
|
|
if (clock_gettime(clockid, &now) != 0)
|
|
|
|
|
{
|
|
|
|
|
WSI_LOG_ERROR("Failed to get time of clock %d, error: %d (%s)", clockid, errno, strerror(errno));
|
|
|
|
|
return std::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return now.tv_sec * static_cast<uint64_t>(1e9) + now.tv_nsec;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-03 13:05:16 +01:00
|
|
|
#endif
|