vulkan: create high-priority queues if possible
This commit is contained in:
parent
7a623006e2
commit
68713b2e39
9 changed files with 253 additions and 44 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
|
@ -611,6 +611,7 @@ dependencies = [
|
||||||
"num-derive",
|
"num-derive",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
"opera",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"pin-project",
|
"pin-project",
|
||||||
"png",
|
"png",
|
||||||
|
|
@ -859,6 +860,12 @@ version = "1.20.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "opera"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5444847837ad2026bf6addabcf0c3c25bf3e9f92e435dedb555f4a6a0180ded1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "option-ext"
|
name = "option-ext"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,7 @@ kbvm = "0.1.4"
|
||||||
tiny-skia = { version = "0.11.4", default-features = false, features = ["std"] }
|
tiny-skia = { version = "0.11.4", default-features = false, features = ["std"] }
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
|
opera = "1.0.1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
repc = "0.1.1"
|
repc = "0.1.1"
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ use {
|
||||||
logger::Logger,
|
logger::Logger,
|
||||||
output_schedule::OutputSchedule,
|
output_schedule::OutputSchedule,
|
||||||
portal::{self, PortalStartup},
|
portal::{self, PortalStartup},
|
||||||
pr_caps::pr_caps,
|
pr_caps::{PrCapsThread, pr_caps},
|
||||||
scale::Scale,
|
scale::Scale,
|
||||||
sighand::{self, SighandError},
|
sighand::{self, SighandError},
|
||||||
state::{ConnectorData, IdleState, ScreenlockState, State, XWaylandState},
|
state::{ConnectorData, IdleState, ScreenlockState, State, XWaylandState},
|
||||||
|
|
@ -82,10 +82,13 @@ pub fn start_compositor(global: GlobalArgs, args: RunArgs) {
|
||||||
sighand::reset_all();
|
sighand::reset_all();
|
||||||
let reaper_pid = ensure_reaper();
|
let reaper_pid = ensure_reaper();
|
||||||
let caps = pr_caps().into_comp();
|
let caps = pr_caps().into_comp();
|
||||||
if caps.has_nice() {
|
let caps_thread = if caps.has_nice() {
|
||||||
elevate_scheduler();
|
elevate_scheduler();
|
||||||
}
|
Some(caps.into_thread())
|
||||||
drop(caps);
|
} else {
|
||||||
|
drop(caps);
|
||||||
|
None
|
||||||
|
};
|
||||||
let forker = create_forker(reaper_pid);
|
let forker = create_forker(reaper_pid);
|
||||||
let portal = portal::run_from_compositor(global.log_level.into());
|
let portal = portal::run_from_compositor(global.log_level.into());
|
||||||
enable_profiler();
|
enable_profiler();
|
||||||
|
|
@ -97,7 +100,14 @@ pub fn start_compositor(global: GlobalArgs, args: RunArgs) {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let res = start_compositor2(Some(forker), portal, Some(logger.clone()), args, None);
|
let res = start_compositor2(
|
||||||
|
Some(forker),
|
||||||
|
portal,
|
||||||
|
Some(logger.clone()),
|
||||||
|
args,
|
||||||
|
None,
|
||||||
|
caps_thread,
|
||||||
|
);
|
||||||
leaks::log_leaked();
|
leaks::log_leaked();
|
||||||
if let Err(e) = res {
|
if let Err(e) = res {
|
||||||
let e = ErrorFmt(e);
|
let e = ErrorFmt(e);
|
||||||
|
|
@ -111,7 +121,7 @@ pub fn start_compositor(global: GlobalArgs, args: RunArgs) {
|
||||||
|
|
||||||
#[cfg(feature = "it")]
|
#[cfg(feature = "it")]
|
||||||
pub fn start_compositor_for_test(future: TestFuture) -> Result<(), CompositorError> {
|
pub fn start_compositor_for_test(future: TestFuture) -> Result<(), CompositorError> {
|
||||||
let res = start_compositor2(None, None, None, RunArgs::default(), Some(future));
|
let res = start_compositor2(None, None, None, RunArgs::default(), Some(future), None);
|
||||||
leaks::log_leaked();
|
leaks::log_leaked();
|
||||||
res
|
res
|
||||||
}
|
}
|
||||||
|
|
@ -157,6 +167,7 @@ fn start_compositor2(
|
||||||
logger: Option<Arc<Logger>>,
|
logger: Option<Arc<Logger>>,
|
||||||
run_args: RunArgs,
|
run_args: RunArgs,
|
||||||
test_future: Option<TestFuture>,
|
test_future: Option<TestFuture>,
|
||||||
|
caps_thread: Option<PrCapsThread>,
|
||||||
) -> Result<(), CompositorError> {
|
) -> Result<(), CompositorError> {
|
||||||
log::info!("pid = {}", uapi::getpid());
|
log::info!("pid = {}", uapi::getpid());
|
||||||
log::info!("version = {VERSION}");
|
log::info!("version = {VERSION}");
|
||||||
|
|
@ -321,6 +332,7 @@ fn start_compositor2(
|
||||||
show_pin_icon: Cell::new(false),
|
show_pin_icon: Cell::new(false),
|
||||||
cl_matcher_manager: ClMatcherManager::new(&crit_ids),
|
cl_matcher_manager: ClMatcherManager::new(&crit_ids),
|
||||||
tl_matcher_manager: TlMatcherManager::new(&crit_ids),
|
tl_matcher_manager: TlMatcherManager::new(&crit_ids),
|
||||||
|
caps_thread,
|
||||||
});
|
});
|
||||||
state.tracker.register(ClientId::from_raw(0));
|
state.tracker.register(ClientId::from_raw(0));
|
||||||
create_dummy_output(&state);
|
create_dummy_output(&state);
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ use {
|
||||||
async_engine::AsyncEngine,
|
async_engine::AsyncEngine,
|
||||||
gfx_api::{GfxContext, GfxError},
|
gfx_api::{GfxContext, GfxError},
|
||||||
io_uring::IoUring,
|
io_uring::IoUring,
|
||||||
|
pr_caps::PrCapsThread,
|
||||||
utils::errorfmt::ErrorFmt,
|
utils::errorfmt::ErrorFmt,
|
||||||
video::drm::Drm,
|
video::drm::Drm,
|
||||||
},
|
},
|
||||||
|
|
@ -19,12 +20,13 @@ pub fn create_gfx_context(
|
||||||
ring: &Rc<IoUring>,
|
ring: &Rc<IoUring>,
|
||||||
drm: &Drm,
|
drm: &Drm,
|
||||||
api: GfxApi,
|
api: GfxApi,
|
||||||
|
caps_thread: Option<&PrCapsThread>,
|
||||||
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
||||||
let mut apis = [GfxApi::OpenGl, GfxApi::Vulkan];
|
let mut apis = [GfxApi::OpenGl, GfxApi::Vulkan];
|
||||||
apis.sort_by_key(|&a| if a == api { -1 } else { a as i32 });
|
apis.sort_by_key(|&a| if a == api { -1 } else { a as i32 });
|
||||||
let mut last_err = None;
|
let mut last_err = None;
|
||||||
for api in apis {
|
for api in apis {
|
||||||
let res = create_gfx_context_(eng, ring, drm, api);
|
let res = create_gfx_context_(eng, ring, drm, api, caps_thread);
|
||||||
match res {
|
match res {
|
||||||
Ok(_) => return res,
|
Ok(_) => return res,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
|
@ -41,10 +43,11 @@ fn create_gfx_context_(
|
||||||
ring: &Rc<IoUring>,
|
ring: &Rc<IoUring>,
|
||||||
drm: &Drm,
|
drm: &Drm,
|
||||||
api: GfxApi,
|
api: GfxApi,
|
||||||
|
caps_thread: Option<&PrCapsThread>,
|
||||||
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
||||||
match api {
|
match api {
|
||||||
GfxApi::OpenGl => gl::create_gfx_context(drm),
|
GfxApi::OpenGl => gl::create_gfx_context(drm),
|
||||||
GfxApi::Vulkan => vulkan::create_graphics_context(eng, ring, drm),
|
GfxApi::Vulkan => vulkan::create_graphics_context(eng, ring, drm, caps_thread),
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,8 +35,9 @@ use {
|
||||||
image::VulkanImageMemory, instance::VulkanInstance, renderer::VulkanRenderer,
|
image::VulkanImageMemory, instance::VulkanInstance, renderer::VulkanRenderer,
|
||||||
},
|
},
|
||||||
io_uring::IoUring,
|
io_uring::IoUring,
|
||||||
|
pr_caps::PrCapsThread,
|
||||||
rect::Rect,
|
rect::Rect,
|
||||||
utils::oserror::OsError,
|
utils::{errorfmt::ErrorFmt, oserror::OsError},
|
||||||
video::{
|
video::{
|
||||||
dmabuf::DmaBuf,
|
dmabuf::DmaBuf,
|
||||||
drm::{Drm, DrmError, sync_obj::SyncObjCtx},
|
drm::{Drm, DrmError, sync_obj::SyncObjCtx},
|
||||||
|
|
@ -224,16 +225,27 @@ pub fn create_graphics_context(
|
||||||
eng: &Rc<AsyncEngine>,
|
eng: &Rc<AsyncEngine>,
|
||||||
ring: &Rc<IoUring>,
|
ring: &Rc<IoUring>,
|
||||||
drm: &Drm,
|
drm: &Drm,
|
||||||
|
caps_thread: Option<&PrCapsThread>,
|
||||||
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
) -> Result<Rc<dyn GfxContext>, GfxError> {
|
||||||
let instance = VulkanInstance::new(Level::Info, *VULKAN_VALIDATION)?;
|
let instance = VulkanInstance::new(Level::Info, *VULKAN_VALIDATION)?;
|
||||||
let device = instance.create_device(drm)?;
|
let device = 'device: {
|
||||||
|
if let Some(t) = caps_thread {
|
||||||
|
match unsafe { t.run(|| instance.create_device(drm, true)) } {
|
||||||
|
Ok(d) => break 'device d,
|
||||||
|
Err(e) => {
|
||||||
|
log::warn!("Could not create high-priority device: {}", ErrorFmt(e));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
instance.create_device(drm, false)?
|
||||||
|
};
|
||||||
let renderer = device.create_renderer(eng, ring)?;
|
let renderer = device.create_renderer(eng, ring)?;
|
||||||
Ok(Rc::new(Context(renderer)))
|
Ok(Rc::new(Context(renderer)))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn create_vulkan_allocator(drm: &Drm) -> Result<Rc<dyn Allocator>, AllocatorError> {
|
pub fn create_vulkan_allocator(drm: &Drm) -> Result<Rc<dyn Allocator>, AllocatorError> {
|
||||||
let instance = VulkanInstance::new(Level::Debug, *VULKAN_VALIDATION)?;
|
let instance = VulkanInstance::new(Level::Debug, *VULKAN_VALIDATION)?;
|
||||||
let device = instance.create_device(drm)?;
|
let device = instance.create_device(drm, false)?;
|
||||||
let allocator = device.create_bo_allocator(drm)?;
|
let allocator = device.create_bo_allocator(drm)?;
|
||||||
Ok(Rc::new(allocator))
|
Ok(Rc::new(allocator))
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,12 +24,12 @@ use {
|
||||||
physical_device_drm, queue_family_foreign,
|
physical_device_drm, queue_family_foreign,
|
||||||
},
|
},
|
||||||
khr::{
|
khr::{
|
||||||
driver_properties, external_fence_fd, external_memory_fd, external_semaphore_fd,
|
self, driver_properties, external_fence_fd, external_memory_fd, external_semaphore_fd,
|
||||||
push_descriptor,
|
push_descriptor,
|
||||||
},
|
},
|
||||||
vk::{
|
vk::{
|
||||||
self, DeviceCreateInfo, DeviceQueueCreateInfo, DeviceSize, DriverId,
|
self, DeviceCreateInfo, DeviceQueueCreateInfo, DeviceQueueGlobalPriorityCreateInfoKHR,
|
||||||
ExternalSemaphoreFeatureFlags, ExternalSemaphoreHandleTypeFlags,
|
DeviceSize, DriverId, ExternalSemaphoreFeatureFlags, ExternalSemaphoreHandleTypeFlags,
|
||||||
ExternalSemaphoreProperties, MAX_MEMORY_TYPES, MemoryPropertyFlags, MemoryType,
|
ExternalSemaphoreProperties, MAX_MEMORY_TYPES, MemoryPropertyFlags, MemoryType,
|
||||||
PhysicalDevice, PhysicalDeviceBufferDeviceAddressFeatures,
|
PhysicalDevice, PhysicalDeviceBufferDeviceAddressFeatures,
|
||||||
PhysicalDeviceDescriptorBufferFeaturesEXT, PhysicalDeviceDescriptorBufferPropertiesEXT,
|
PhysicalDeviceDescriptorBufferFeaturesEXT, PhysicalDeviceDescriptorBufferPropertiesEXT,
|
||||||
|
|
@ -39,7 +39,7 @@ use {
|
||||||
PhysicalDeviceProperties2, PhysicalDeviceSynchronization2Features,
|
PhysicalDeviceProperties2, PhysicalDeviceSynchronization2Features,
|
||||||
PhysicalDeviceTimelineSemaphoreFeatures,
|
PhysicalDeviceTimelineSemaphoreFeatures,
|
||||||
PhysicalDeviceUniformBufferStandardLayoutFeatures, PhysicalDeviceVulkan12Properties,
|
PhysicalDeviceUniformBufferStandardLayoutFeatures, PhysicalDeviceVulkan12Properties,
|
||||||
Queue, QueueFlags,
|
Queue, QueueFamilyProperties2, QueueFlags, QueueGlobalPriorityKHR,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
isnt::std_1::collections::IsntHashMap2Ext,
|
isnt::std_1::collections::IsntHashMap2Ext,
|
||||||
|
|
@ -50,6 +50,7 @@ use {
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
},
|
},
|
||||||
uapi::Ustr,
|
uapi::Ustr,
|
||||||
|
vk::QueueFamilyGlobalPriorityPropertiesKHR,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub struct VulkanDevice {
|
pub struct VulkanDevice {
|
||||||
|
|
@ -210,20 +211,42 @@ impl VulkanInstance {
|
||||||
fn find_queues(
|
fn find_queues(
|
||||||
&self,
|
&self,
|
||||||
phy_dev: PhysicalDevice,
|
phy_dev: PhysicalDevice,
|
||||||
) -> Result<(u32, Option<(u32, u32, u32)>), VulkanError> {
|
) -> Result<
|
||||||
let props = unsafe {
|
(
|
||||||
|
u32,
|
||||||
|
Option<(u32, u32, u32)>,
|
||||||
|
QueueGlobalPriorityKHR,
|
||||||
|
QueueGlobalPriorityKHR,
|
||||||
|
),
|
||||||
|
VulkanError,
|
||||||
|
> {
|
||||||
|
let len = unsafe {
|
||||||
self.instance
|
self.instance
|
||||||
.get_physical_device_queue_family_properties(phy_dev)
|
.get_physical_device_queue_family_properties2_len(phy_dev)
|
||||||
};
|
};
|
||||||
|
let mut priority_props = vec![QueueFamilyGlobalPriorityPropertiesKHR::default(); len];
|
||||||
|
let mut props: Vec<_> = priority_props
|
||||||
|
.iter_mut()
|
||||||
|
.map(|p| QueueFamilyProperties2::default().push_next(p))
|
||||||
|
.collect();
|
||||||
|
unsafe {
|
||||||
|
self.instance
|
||||||
|
.get_physical_device_queue_family_properties2(phy_dev, &mut props[..])
|
||||||
|
}
|
||||||
let gfx_queue = props
|
let gfx_queue = props
|
||||||
.iter()
|
.iter()
|
||||||
.position(|p| p.queue_flags.contains(QueueFlags::GRAPHICS))
|
.position(|p| {
|
||||||
|
p.queue_family_properties
|
||||||
|
.queue_flags
|
||||||
|
.contains(QueueFlags::GRAPHICS)
|
||||||
|
})
|
||||||
.ok_or(VulkanError::NoGraphicsQueue)?;
|
.ok_or(VulkanError::NoGraphicsQueue)?;
|
||||||
let transfer_queue = 'transfer: {
|
let transfer_queue = 'transfer: {
|
||||||
let mut transfer_only = None;
|
let mut transfer_only = None;
|
||||||
let mut compute_only = None;
|
let mut compute_only = None;
|
||||||
let mut separate_gfx = None;
|
let mut separate_gfx = None;
|
||||||
for (idx, props) in props.iter().enumerate() {
|
for (idx, props) in props.iter().enumerate() {
|
||||||
|
let props = &props.queue_family_properties;
|
||||||
if idx == gfx_queue {
|
if idx == gfx_queue {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
@ -244,7 +267,7 @@ impl VulkanInstance {
|
||||||
if let Some(idx) = transfer_only.or(compute_only).or(separate_gfx) {
|
if let Some(idx) = transfer_only.or(compute_only).or(separate_gfx) {
|
||||||
break 'transfer Some(idx);
|
break 'transfer Some(idx);
|
||||||
}
|
}
|
||||||
if props[gfx_queue].queue_count > 1 {
|
if props[gfx_queue].queue_family_properties.queue_count > 1 {
|
||||||
break 'transfer Some(gfx_queue);
|
break 'transfer Some(gfx_queue);
|
||||||
}
|
}
|
||||||
None
|
None
|
||||||
|
|
@ -252,13 +275,27 @@ impl VulkanInstance {
|
||||||
let mut width_mask = 0;
|
let mut width_mask = 0;
|
||||||
let mut height_mask = 0;
|
let mut height_mask = 0;
|
||||||
if let Some(idx) = transfer_queue {
|
if let Some(idx) = transfer_queue {
|
||||||
let g = &props[idx].min_image_transfer_granularity;
|
let g = &props[idx]
|
||||||
|
.queue_family_properties
|
||||||
|
.min_image_transfer_granularity;
|
||||||
width_mask = g.width.wrapping_sub(1);
|
width_mask = g.width.wrapping_sub(1);
|
||||||
height_mask = g.height.wrapping_sub(1);
|
height_mask = g.height.wrapping_sub(1);
|
||||||
}
|
}
|
||||||
|
let get_priority = |idx: usize| {
|
||||||
|
let props = &priority_props[idx];
|
||||||
|
if props.priority_count > 0 {
|
||||||
|
props.priorities[props.priority_count as usize - 1]
|
||||||
|
} else {
|
||||||
|
QueueGlobalPriorityKHR::MEDIUM
|
||||||
|
}
|
||||||
|
};
|
||||||
Ok((
|
Ok((
|
||||||
gfx_queue as _,
|
gfx_queue as _,
|
||||||
transfer_queue.map(|v| (v as _, width_mask, height_mask)),
|
transfer_queue.map(|v| (v as _, width_mask, height_mask)),
|
||||||
|
get_priority(gfx_queue),
|
||||||
|
transfer_queue
|
||||||
|
.map(get_priority)
|
||||||
|
.unwrap_or(QueueGlobalPriorityKHR::MEDIUM),
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -275,7 +312,11 @@ impl VulkanInstance {
|
||||||
.contains(ExternalSemaphoreFeatureFlags::IMPORTABLE)
|
.contains(ExternalSemaphoreFeatureFlags::IMPORTABLE)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn create_device(self: &Rc<Self>, drm: &Drm) -> Result<Rc<VulkanDevice>, VulkanError> {
|
pub fn create_device(
|
||||||
|
self: &Rc<Self>,
|
||||||
|
drm: &Drm,
|
||||||
|
mut high_priority: bool,
|
||||||
|
) -> Result<Rc<VulkanDevice>, VulkanError> {
|
||||||
let render_node = drm
|
let render_node = drm
|
||||||
.get_render_node()
|
.get_render_node()
|
||||||
.map_err(VulkanError::FetchRenderNode)?
|
.map_err(VulkanError::FetchRenderNode)?
|
||||||
|
|
@ -293,7 +334,17 @@ impl VulkanInstance {
|
||||||
if !supports_descriptor_buffer {
|
if !supports_descriptor_buffer {
|
||||||
log::warn!("Vulkan device does not support descriptor buffers");
|
log::warn!("Vulkan device does not support descriptor buffers");
|
||||||
}
|
}
|
||||||
let (graphics_queue_family_idx, transfer_queue_family) = self.find_queues(phy_dev)?;
|
let supports_queue_priority = extensions.contains_key(khr::global_priority::NAME);
|
||||||
|
if !supports_queue_priority && high_priority {
|
||||||
|
high_priority = false;
|
||||||
|
log::warn!("Vulkan device does not support queue priorities");
|
||||||
|
}
|
||||||
|
let (
|
||||||
|
graphics_queue_family_idx,
|
||||||
|
transfer_queue_family,
|
||||||
|
max_graphics_priority,
|
||||||
|
max_transfer_priority,
|
||||||
|
) = self.find_queues(phy_dev)?;
|
||||||
let mut distinct_transfer_queue_family_idx = None;
|
let mut distinct_transfer_queue_family_idx = None;
|
||||||
let mut transfer_granularity_mask = (0, 0);
|
let mut transfer_granularity_mask = (0, 0);
|
||||||
if let Some((idx, width_mask, height_mask)) = transfer_queue_family {
|
if let Some((idx, width_mask, height_mask)) = transfer_queue_family {
|
||||||
|
|
@ -325,18 +376,31 @@ impl VulkanInstance {
|
||||||
let mut uniform_buffer_standard_layout_features =
|
let mut uniform_buffer_standard_layout_features =
|
||||||
PhysicalDeviceUniformBufferStandardLayoutFeatures::default()
|
PhysicalDeviceUniformBufferStandardLayoutFeatures::default()
|
||||||
.uniform_buffer_standard_layout(true);
|
.uniform_buffer_standard_layout(true);
|
||||||
|
let mut gfx_queue_device_queue_global_priority_create_info =
|
||||||
|
DeviceQueueGlobalPriorityCreateInfoKHR::default()
|
||||||
|
.global_priority(max_graphics_priority);
|
||||||
|
let mut trn_queue_device_queue_global_priority_create_info =
|
||||||
|
DeviceQueueGlobalPriorityCreateInfoKHR::default()
|
||||||
|
.global_priority(max_transfer_priority);
|
||||||
let mut queue_create_infos = ArrayVec::<_, 2>::new();
|
let mut queue_create_infos = ArrayVec::<_, 2>::new();
|
||||||
queue_create_infos.push(
|
let queue_create_info = |idx, priority_info| {
|
||||||
DeviceQueueCreateInfo::default()
|
let mut info = DeviceQueueCreateInfo::default()
|
||||||
.queue_family_index(graphics_queue_family_idx)
|
.queue_family_index(idx)
|
||||||
.queue_priorities(&[1.0]),
|
.queue_priorities(&[1.0]);
|
||||||
);
|
if high_priority {
|
||||||
|
info = info.push_next(priority_info);
|
||||||
|
}
|
||||||
|
info
|
||||||
|
};
|
||||||
|
queue_create_infos.push(queue_create_info(
|
||||||
|
graphics_queue_family_idx,
|
||||||
|
&mut gfx_queue_device_queue_global_priority_create_info,
|
||||||
|
));
|
||||||
if let Some((tq, _, _)) = transfer_queue_family {
|
if let Some((tq, _, _)) = transfer_queue_family {
|
||||||
queue_create_infos.push(
|
queue_create_infos.push(queue_create_info(
|
||||||
DeviceQueueCreateInfo::default()
|
tq,
|
||||||
.queue_family_index(tq)
|
&mut trn_queue_device_queue_global_priority_create_info,
|
||||||
.queue_priorities(&[1.0]),
|
));
|
||||||
);
|
|
||||||
}
|
}
|
||||||
let mut device_create_info = DeviceCreateInfo::default()
|
let mut device_create_info = DeviceCreateInfo::default()
|
||||||
.push_next(&mut semaphore_features)
|
.push_next(&mut semaphore_features)
|
||||||
|
|
@ -433,6 +497,11 @@ impl VulkanInstance {
|
||||||
};
|
};
|
||||||
unsafe { device.get_device_queue(family_idx, queue_idx) }
|
unsafe { device.get_device_queue(family_idx, queue_idx) }
|
||||||
});
|
});
|
||||||
|
if high_priority {
|
||||||
|
log::info!(
|
||||||
|
"Created queues with priorities {max_graphics_priority:?}/{max_transfer_priority:?}",
|
||||||
|
);
|
||||||
|
}
|
||||||
Ok(Rc::new(VulkanDevice {
|
Ok(Rc::new(VulkanDevice {
|
||||||
physical_device: phy_dev,
|
physical_device: phy_dev,
|
||||||
render_node,
|
render_node,
|
||||||
|
|
|
||||||
|
|
@ -185,17 +185,22 @@ impl UsrJayRenderCtxOwner for PortalDisplay {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if render_ctx.is_none() {
|
if render_ctx.is_none() {
|
||||||
let ctx =
|
let ctx = match create_gfx_context(
|
||||||
match create_gfx_context(&self.state.eng, &self.state.ring, &drm, GfxApi::OpenGl) {
|
&self.state.eng,
|
||||||
Ok(c) => c,
|
&self.state.ring,
|
||||||
Err(e) => {
|
&drm,
|
||||||
log::error!(
|
GfxApi::OpenGl,
|
||||||
"Could not create render context from drm device: {}",
|
None,
|
||||||
ErrorFmt(e)
|
) {
|
||||||
);
|
Ok(c) => c,
|
||||||
return;
|
Err(e) => {
|
||||||
}
|
log::error!(
|
||||||
};
|
"Could not create render context from drm device: {}",
|
||||||
|
ErrorFmt(e)
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
let ctx = Rc::new(PortalRenderCtx {
|
let ctx = Rc::new(PortalRenderCtx {
|
||||||
_dev_id: dev_id,
|
_dev_id: dev_id,
|
||||||
ctx,
|
ctx,
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,13 @@ use {
|
||||||
},
|
},
|
||||||
utils::{bitflags::BitflagsExt, errorfmt::ErrorFmt, oserror::OsError},
|
utils::{bitflags::BitflagsExt, errorfmt::ErrorFmt, oserror::OsError},
|
||||||
},
|
},
|
||||||
|
opera::PhantomNotSend,
|
||||||
|
parking_lot::{Condvar, Mutex},
|
||||||
|
std::{
|
||||||
|
mem,
|
||||||
|
sync::Arc,
|
||||||
|
thread::{self, JoinHandle},
|
||||||
|
},
|
||||||
uapi::{
|
uapi::{
|
||||||
c::{SYS_capget, SYS_capset, syscall},
|
c::{SYS_capget, SYS_capset, syscall},
|
||||||
map_err,
|
map_err,
|
||||||
|
|
@ -22,6 +29,24 @@ pub struct PrCompCaps {
|
||||||
caps: PrCaps,
|
caps: PrCaps,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub struct PrCapsThread {
|
||||||
|
thread: Option<JoinHandle<()>>,
|
||||||
|
data: Arc<ThreadData>,
|
||||||
|
_no_send: PhantomNotSend,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
struct ThreadData {
|
||||||
|
cond: Condvar,
|
||||||
|
mutex: Mutex<MutData>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
struct MutData {
|
||||||
|
exit: bool,
|
||||||
|
fun: Option<Box<dyn FnOnce() + Send>>,
|
||||||
|
}
|
||||||
|
|
||||||
pub fn pr_caps() -> PrCaps {
|
pub fn pr_caps() -> PrCaps {
|
||||||
let mut hdr = cap_user_header_t {
|
let mut hdr = cap_user_header_t {
|
||||||
version: _LINUX_CAPABILITY_VERSION_3,
|
version: _LINUX_CAPABILITY_VERSION_3,
|
||||||
|
|
@ -103,6 +128,70 @@ impl PrCompCaps {
|
||||||
pub fn has_nice(&self) -> bool {
|
pub fn has_nice(&self) -> bool {
|
||||||
self.caps.effective.contains(1 << CAP_SYS_NICE)
|
self.caps.effective.contains(1 << CAP_SYS_NICE)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn into_thread(self) -> PrCapsThread {
|
||||||
|
let data = Arc::new(ThreadData::default());
|
||||||
|
let data2 = data.clone();
|
||||||
|
let jh = thread::Builder::new()
|
||||||
|
.name("SYS_nice thread".to_string())
|
||||||
|
.spawn(move || {
|
||||||
|
let data2 = data2;
|
||||||
|
let mut lock = data2.mutex.lock();
|
||||||
|
loop {
|
||||||
|
if lock.exit {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if let Some(f) = lock.fun.take() {
|
||||||
|
f();
|
||||||
|
}
|
||||||
|
data2.cond.wait(&mut lock);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.expect("Could not spawn SYS_nice thread");
|
||||||
|
PrCapsThread {
|
||||||
|
thread: Some(jh),
|
||||||
|
data,
|
||||||
|
_no_send: Default::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PrCapsThread {
|
||||||
|
pub unsafe fn run<T, F>(&self, f: F) -> T
|
||||||
|
where
|
||||||
|
F: FnOnce() -> T,
|
||||||
|
{
|
||||||
|
struct AssertSend<T>(T);
|
||||||
|
unsafe impl<T> Send for AssertSend<T> {}
|
||||||
|
struct Data<T> {
|
||||||
|
cond: Condvar,
|
||||||
|
mutex: Mutex<Option<AssertSend<T>>>,
|
||||||
|
}
|
||||||
|
let data = Arc::new(Data {
|
||||||
|
cond: Default::default(),
|
||||||
|
mutex: Default::default(),
|
||||||
|
});
|
||||||
|
let data2 = data.clone();
|
||||||
|
let f = AssertSend(f);
|
||||||
|
let fun = Box::new(move || {
|
||||||
|
let f = f;
|
||||||
|
let t = f.0();
|
||||||
|
*data2.mutex.lock() = Some(AssertSend(t));
|
||||||
|
data2.cond.notify_all();
|
||||||
|
});
|
||||||
|
let fun = unsafe {
|
||||||
|
mem::transmute::<Box<dyn FnOnce() + Send + '_>, Box<dyn FnOnce() + Send>>(fun)
|
||||||
|
};
|
||||||
|
self.data.mutex.lock().fun = Some(fun);
|
||||||
|
self.data.cond.notify_all();
|
||||||
|
let mut lock = data.mutex.lock();
|
||||||
|
loop {
|
||||||
|
if let Some(t) = lock.take() {
|
||||||
|
return t.0;
|
||||||
|
}
|
||||||
|
data.cond.wait(&mut lock);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Drop for PrCaps {
|
impl Drop for PrCaps {
|
||||||
|
|
@ -111,6 +200,14 @@ impl Drop for PrCaps {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Drop for PrCapsThread {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
self.data.mutex.lock().exit = true;
|
||||||
|
self.data.cond.notify_all();
|
||||||
|
let _ = self.thread.take().unwrap().join();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mod sys {
|
mod sys {
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,7 @@ use {
|
||||||
keyboard::KeyboardStateIds,
|
keyboard::KeyboardStateIds,
|
||||||
leaks::Tracker,
|
leaks::Tracker,
|
||||||
logger::Logger,
|
logger::Logger,
|
||||||
|
pr_caps::PrCapsThread,
|
||||||
rect::{Rect, Region},
|
rect::{Rect, Region},
|
||||||
renderer::Renderer,
|
renderer::Renderer,
|
||||||
scale::Scale,
|
scale::Scale,
|
||||||
|
|
@ -246,6 +247,7 @@ pub struct State {
|
||||||
pub show_pin_icon: Cell<bool>,
|
pub show_pin_icon: Cell<bool>,
|
||||||
pub cl_matcher_manager: ClMatcherManager,
|
pub cl_matcher_manager: ClMatcherManager,
|
||||||
pub tl_matcher_manager: TlMatcherManager,
|
pub tl_matcher_manager: TlMatcherManager,
|
||||||
|
pub caps_thread: Option<PrCapsThread>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// impl Drop for State {
|
// impl Drop for State {
|
||||||
|
|
@ -446,6 +448,7 @@ impl State {
|
||||||
&self.ring,
|
&self.ring,
|
||||||
drm,
|
drm,
|
||||||
api.unwrap_or(self.default_gfx_api.get()),
|
api.unwrap_or(self.default_gfx_api.get()),
|
||||||
|
self.caps_thread.as_ref(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue