Files
niri/src/backend/tty.rs
T

1618 lines
56 KiB
Rust
Raw Normal View History

2023-09-14 22:28:26 +04:00
use std::cell::RefCell;
use std::collections::{HashMap, HashSet};
2024-01-06 08:46:30 +04:00
use std::fmt::Write;
2024-01-03 18:16:20 +04:00
use std::path::Path;
2023-09-14 22:28:26 +04:00
use std::rc::Rc;
use std::sync::{Arc, Mutex};
2023-08-14 15:53:24 +04:00
use std::time::Duration;
2024-01-03 18:16:20 +04:00
use std::{io, mem};
2023-08-09 11:03:38 +04:00
2023-09-03 07:31:44 +04:00
use anyhow::{anyhow, Context};
2023-10-24 15:05:14 +04:00
use libc::dev_t;
2024-01-07 09:07:22 +04:00
use niri_config::Config;
2024-01-03 18:16:20 +04:00
use smithay::backend::allocator::dmabuf::{Dmabuf, DmabufAllocator};
2023-08-09 11:03:38 +04:00
use smithay::backend::allocator::gbm::{GbmAllocator, GbmBufferFlags, GbmDevice};
2024-01-03 18:16:20 +04:00
use smithay::backend::allocator::{Format, Fourcc};
2023-09-14 09:33:42 +04:00
use smithay::backend::drm::compositor::{DrmCompositor, PrimaryPlaneElement};
2024-01-03 18:16:20 +04:00
use smithay::backend::drm::{
DrmDevice, DrmDeviceFd, DrmEvent, DrmEventMetadata, DrmEventTime, DrmNode, NodeType,
};
use smithay::backend::egl::context::ContextPriority;
2024-01-03 18:16:20 +04:00
use smithay::backend::egl::{EGLContext, EGLDevice, EGLDisplay};
2023-08-09 11:03:38 +04:00
use smithay::backend::libinput::{LibinputInputBackend, LibinputSessionInterface};
2024-01-24 20:58:58 +01:00
use smithay::backend::renderer::gles::{Capability, GlesRenderer};
2024-01-03 18:16:20 +04:00
use smithay::backend::renderer::multigpu::gbm::GbmGlesBackend;
use smithay::backend::renderer::multigpu::{GpuManager, MultiFrame, MultiRenderer};
use smithay::backend::renderer::{DebugFlags, ImportDma, ImportEgl, Renderer};
2023-08-09 11:03:38 +04:00
use smithay::backend::session::libseat::LibSeatSession;
use smithay::backend::session::{Event as SessionEvent, Session};
use smithay::backend::udev::{self, UdevBackend, UdevEvent};
2023-08-16 10:59:34 +04:00
use smithay::desktop::utils::OutputPresentationFeedback;
2024-01-16 09:42:31 +04:00
use smithay::output::{Mode, Output, OutputModeSource, PhysicalProperties, Subpixel};
2024-01-01 09:40:41 +04:00
use smithay::reexports::calloop::timer::{TimeoutAction, Timer};
use smithay::reexports::calloop::{Dispatcher, LoopHandle, RegistrationToken};
2023-08-14 15:53:24 +04:00
use smithay::reexports::drm::control::{
2024-01-16 18:01:25 +04:00
self, connector, crtc, property, Device, Mode as DrmMode, ModeFlags, ModeTypeFlags,
2023-08-14 15:53:24 +04:00
};
2024-01-05 20:21:42 +04:00
use smithay::reexports::gbm::Modifier;
2023-08-09 11:03:38 +04:00
use smithay::reexports::input::Libinput;
2023-10-24 15:05:14 +04:00
use smithay::reexports::rustix::fs::OFlags;
2024-01-01 09:40:41 +04:00
use smithay::reexports::wayland_protocols;
2024-01-03 18:16:20 +04:00
use smithay::reexports::wayland_server::protocol::wl_surface::WlSurface;
2023-08-09 11:03:38 +04:00
use smithay::utils::DeviceFd;
2024-01-01 09:40:41 +04:00
use smithay::wayland::dmabuf::{DmabufFeedback, DmabufFeedbackBuilder, DmabufGlobal};
use smithay_drm_extras::drm_scanner::{DrmScanEvent, DrmScanner};
2023-08-09 11:03:38 +04:00
use smithay_drm_extras::edid::EdidInfo;
2024-01-01 09:40:41 +04:00
use wayland_protocols::wp::linux_dmabuf::zv1::server::zwp_linux_dmabuf_feedback_v1::TrancheFlags;
use wayland_protocols::wp::presentation_time::server::wp_presentation_feedback;
2023-08-09 11:03:38 +04:00
2024-01-01 09:40:41 +04:00
use super::RenderResult;
2024-01-16 18:01:45 +04:00
use crate::frame_clock::FrameClock;
2024-02-05 17:22:03 +04:00
use crate::niri::{Niri, RedrawState, State};
2024-02-06 11:24:50 +04:00
use crate::render_helpers::renderer::AsGlesRenderer;
use crate::utils::get_monotonic_time;
2023-08-09 11:03:38 +04:00
const SUPPORTED_COLOR_FORMATS: &[Fourcc] = &[Fourcc::Argb8888, Fourcc::Abgr8888];
pub struct Tty {
2023-09-14 22:28:26 +04:00
config: Rc<RefCell<Config>>,
2023-08-09 11:03:38 +04:00
session: LibSeatSession,
2023-09-24 17:30:06 +04:00
udev_dispatcher: Dispatcher<'static, UdevBackend, State>,
libinput: Libinput,
2024-01-03 18:16:20 +04:00
gpu_manager: GpuManager<GbmGlesBackend<GlesRenderer>>,
// DRM node corresponding to the primary GPU. May or may not be the same as
// primary_render_node.
primary_node: DrmNode,
// DRM render node corresponding to the primary GPU.
primary_render_node: DrmNode,
// Devices indexed by DRM node (not necessarily the render node).
devices: HashMap<DrmNode, OutputDevice>,
2024-01-01 09:54:45 +04:00
// The dma-buf global corresponds to the output device (the primary GPU). It is only `Some()`
// if we have a device corresponding to the primary GPU.
dmabuf_global: Option<DmabufGlobal>,
2024-01-03 18:16:20 +04:00
// The allocator for the primary GPU. It is only `Some()` if we have a device corresponding to
// the primary GPU.
primary_allocator: Option<DmabufAllocator<GbmAllocator<DrmDeviceFd>>>,
// The output config had changed, but the session is paused, so we need to update it on resume.
update_output_config_on_resume: bool,
ipc_outputs: Rc<RefCell<HashMap<String, niri_ipc::Output>>>,
2024-01-17 10:25:23 +04:00
enabled_outputs: Arc<Mutex<HashMap<String, Output>>>,
2023-08-09 11:03:38 +04:00
}
2024-01-03 18:16:20 +04:00
pub type TtyRenderer<'render, 'alloc> = MultiRenderer<
'render,
'render,
'alloc,
GbmGlesBackend<GlesRenderer>,
GbmGlesBackend<GlesRenderer>,
>;
pub type TtyFrame<'render, 'alloc, 'frame> = MultiFrame<
'render,
'render,
'alloc,
'frame,
GbmGlesBackend<GlesRenderer>,
GbmGlesBackend<GlesRenderer>,
>;
pub type TtyRendererError<'render, 'alloc> = <TtyRenderer<'render, 'alloc> as Renderer>::Error;
2023-08-16 10:59:34 +04:00
type GbmDrmCompositor = DrmCompositor<
GbmAllocator<DrmDeviceFd>,
GbmDevice<DrmDeviceFd>,
2023-09-20 11:51:25 +04:00
(OutputPresentationFeedback, Duration),
2023-08-16 10:59:34 +04:00
DrmDeviceFd,
>;
2023-08-09 11:03:38 +04:00
struct OutputDevice {
token: RegistrationToken,
2024-01-03 18:16:20 +04:00
render_node: DrmNode,
drm_scanner: DrmScanner,
2023-09-04 07:49:50 +04:00
surfaces: HashMap<crtc::Handle, Surface>,
2023-10-27 16:17:40 +04:00
// SAFETY: drop after all the objects used with them are dropped.
// See https://github.com/Smithay/smithay/issues/1102.
drm: DrmDevice,
gbm: GbmDevice<DrmDeviceFd>,
}
#[derive(Debug, Clone, Copy)]
struct TtyOutputState {
2024-01-03 18:16:20 +04:00
node: DrmNode,
crtc: crtc::Handle,
2023-08-09 11:03:38 +04:00
}
2023-09-04 07:49:50 +04:00
struct Surface {
2023-09-04 08:01:50 +04:00
name: String,
2023-09-04 07:49:50 +04:00
compositor: GbmDrmCompositor,
2024-01-03 18:16:20 +04:00
dmabuf_feedback: Option<SurfaceDmabufFeedback>,
2023-09-04 08:57:11 +04:00
/// Tracy frame that goes from vblank to vblank.
vblank_frame: Option<tracy_client::Frame>,
2023-09-14 09:19:20 +04:00
/// Frame name for the VBlank frame.
2023-09-04 08:57:11 +04:00
vblank_frame_name: tracy_client::FrameName,
/// Plot name for the time since presentation plot.
time_since_presentation_plot_name: tracy_client::PlotName,
/// Plot name for the presentation misprediction plot.
presentation_misprediction_plot_name: tracy_client::PlotName,
sequence_delta_plot_name: tracy_client::PlotName,
2023-09-04 07:49:50 +04:00
}
2024-01-03 18:16:20 +04:00
pub struct SurfaceDmabufFeedback {
pub render: DmabufFeedback,
pub scanout: DmabufFeedback,
}
2023-08-09 11:03:38 +04:00
impl Tty {
pub fn new(
config: Rc<RefCell<Config>>,
event_loop: LoopHandle<'static, State>,
) -> anyhow::Result<Self> {
let (session, notifier) = LibSeatSession::new().context(
"Error creating a session. This might mean that you're trying to run niri on a TTY \
that is already busy, for example if you're running this inside tmux that had been \
originally started on a different TTY",
)?;
2023-08-09 11:03:38 +04:00
let seat_name = session.seat();
let udev_backend =
UdevBackend::new(session.seat()).context("error creating a udev backend")?;
2023-09-24 17:30:06 +04:00
let udev_dispatcher = Dispatcher::new(udev_backend, move |event, _, state: &mut State| {
state.backend.tty().on_udev_event(&mut state.niri, event);
2023-09-24 17:30:06 +04:00
});
event_loop
.register_dispatcher(udev_dispatcher.clone())
.unwrap();
2023-08-09 11:03:38 +04:00
let mut libinput = Libinput::new_with_udev(LibinputSessionInterface::from(session.clone()));
libinput
.udev_assign_seat(&seat_name)
.map_err(|()| anyhow!("error assigning the seat to libinput"))?;
2023-08-09 11:03:38 +04:00
let input_backend = LibinputInputBackend::new(libinput.clone());
event_loop
2023-09-24 17:30:06 +04:00
.insert_source(input_backend, |mut event, _, state| {
state.process_libinput_event(&mut event);
state.process_input_event(event);
2023-08-09 11:03:38 +04:00
})
.unwrap();
event_loop
2023-09-24 17:30:06 +04:00
.insert_source(notifier, move |event, _, state| {
state.backend.tty().on_session_event(&mut state.niri, event);
2023-08-09 11:03:38 +04:00
})
.unwrap();
2024-01-03 18:16:20 +04:00
let config_ = config.clone();
let create_renderer = move |display: &EGLDisplay| {
let color_transforms = config_
.borrow()
.debug
.enable_color_transformations_capability;
let egl_context = EGLContext::new_with_priority(display, ContextPriority::High)?;
let gles = if color_transforms {
unsafe { GlesRenderer::new(egl_context)? }
} else {
let capabilities = unsafe { GlesRenderer::supported_capabilities(&egl_context) }?
.into_iter()
.filter(|c| *c != Capability::ColorTransformations);
unsafe { GlesRenderer::with_capabilities(egl_context, capabilities)? }
};
Ok(gles)
};
let api = GbmGlesBackend::with_factory(Box::new(create_renderer));
let gpu_manager = GpuManager::new(api).context("error creating the GPU manager")?;
2024-01-03 18:16:20 +04:00
2024-01-06 09:14:48 +04:00
let (primary_node, primary_render_node) = primary_node_from_config(&config.borrow())
.ok_or(())
.or_else(|()| {
let primary_gpu_path = udev::primary_gpu(&seat_name)
.context("error getting the primary GPU")?
.context("couldn't find a GPU")?;
let primary_node = DrmNode::from_path(primary_gpu_path)
.context("error opening the primary GPU DRM node")?;
2024-01-06 09:14:48 +04:00
let primary_render_node = primary_node
.node_with_type(NodeType::Render)
.context("error getting the render node for the primary GPU")?
.context("error getting the render node for the primary GPU")?;
Ok::<_, anyhow::Error>((primary_node, primary_render_node))
})?;
2024-01-06 08:46:30 +04:00
let mut node_path = String::new();
if let Some(path) = primary_render_node.dev_path() {
write!(node_path, "{:?}", path).unwrap();
} else {
write!(node_path, "{}", primary_render_node).unwrap();
}
info!("using as the render node: {}", node_path);
2023-08-09 11:03:38 +04:00
Ok(Self {
2023-09-14 22:28:26 +04:00
config,
2023-08-09 11:03:38 +04:00
session,
udev_dispatcher,
libinput,
2024-01-03 18:16:20 +04:00
gpu_manager,
primary_node,
primary_render_node,
devices: HashMap::new(),
2024-01-01 09:54:45 +04:00
dmabuf_global: None,
2024-01-03 18:16:20 +04:00
primary_allocator: None,
update_output_config_on_resume: false,
ipc_outputs: Rc::new(RefCell::new(HashMap::new())),
2024-01-17 10:25:23 +04:00
enabled_outputs: Arc::new(Mutex::new(HashMap::new())),
})
2023-08-09 11:03:38 +04:00
}
pub fn init(&mut self, niri: &mut Niri) {
for (device_id, path) in self.udev_dispatcher.clone().as_source_ref().device_list() {
if let Err(err) = self.device_added(device_id, path, niri) {
2023-08-09 11:03:38 +04:00
warn!("error adding device: {err:?}");
}
}
}
fn on_udev_event(&mut self, niri: &mut Niri, event: UdevEvent) {
2023-09-26 09:23:30 +04:00
let _span = tracy_client::span!("Tty::on_udev_event");
match event {
UdevEvent::Added { device_id, path } => {
if !self.session.is_active() {
debug!("skipping UdevEvent::Added as session is inactive");
return;
}
if let Err(err) = self.device_added(device_id, &path, niri) {
warn!("error adding device: {err:?}");
}
}
UdevEvent::Changed { device_id } => {
if !self.session.is_active() {
debug!("skipping UdevEvent::Changed as session is inactive");
return;
}
self.device_changed(device_id, niri)
}
UdevEvent::Removed { device_id } => {
if !self.session.is_active() {
debug!("skipping UdevEvent::Removed as session is inactive");
return;
}
self.device_removed(device_id, niri)
}
}
}
fn on_session_event(&mut self, niri: &mut Niri, event: SessionEvent) {
2023-09-26 09:23:30 +04:00
let _span = tracy_client::span!("Tty::on_session_event");
match event {
SessionEvent::PauseSession => {
debug!("pausing session");
self.libinput.suspend();
for device in self.devices.values_mut() {
2024-01-03 18:16:20 +04:00
device.drm.pause();
}
}
SessionEvent::ActivateSession => {
debug!("resuming session");
if self.libinput.resume().is_err() {
error!("error resuming libinput");
}
2024-01-03 18:16:20 +04:00
let mut device_list = self
.udev_dispatcher
.as_source_ref()
.device_list()
.map(|(device_id, path)| (device_id, path.to_owned()))
.collect::<HashMap<_, _>>();
let removed_devices = self
.devices
.keys()
.filter(|node| !device_list.contains_key(&node.dev_id()))
.copied()
.collect::<Vec<_>>();
let remained_devices = self
.devices
.keys()
.filter(|node| device_list.contains_key(&node.dev_id()))
.copied()
.collect::<Vec<_>>();
// Remove removed devices.
for node in removed_devices {
device_list.remove(&node.dev_id());
self.device_removed(node.dev_id(), niri);
}
2024-01-03 18:16:20 +04:00
// Update remained devices.
for node in remained_devices {
device_list.remove(&node.dev_id());
// It hasn't been removed, update its state as usual.
let device = self.devices.get_mut(&node).unwrap();
if let Err(err) = device.drm.activate(true) {
warn!("error activating DRM device: {err:?}");
2024-01-03 18:16:20 +04:00
}
// Refresh the connectors.
self.device_changed(node.dev_id(), niri);
2024-01-03 18:16:20 +04:00
}
// Add new devices.
for (device_id, path) in device_list.into_iter() {
if let Err(err) = self.device_added(device_id, &path, niri) {
warn!("error adding device: {err:?}");
}
}
if self.update_output_config_on_resume {
self.on_output_config_changed(niri);
}
self.refresh_ipc_outputs();
2024-02-12 08:42:34 +04:00
niri.idle_notifier_state.notify_activity(&niri.seat);
niri.queue_redraw_all();
}
}
}
2023-08-09 11:03:38 +04:00
fn device_added(
&mut self,
device_id: dev_t,
path: &Path,
2023-08-09 11:03:38 +04:00
niri: &mut Niri,
) -> anyhow::Result<()> {
2024-01-03 18:16:20 +04:00
debug!("device added: {device_id} {path:?}");
2023-08-09 11:03:38 +04:00
2024-01-03 18:16:20 +04:00
let node = DrmNode::from_dev_id(device_id)?;
2023-08-09 11:03:38 +04:00
2023-10-24 15:05:14 +04:00
let open_flags = OFlags::RDWR | OFlags::CLOEXEC | OFlags::NOCTTY | OFlags::NONBLOCK;
let fd = self.session.open(path, open_flags)?;
2023-10-24 15:05:14 +04:00
let device_fd = DrmDeviceFd::new(DeviceFd::from(fd));
2023-08-09 11:03:38 +04:00
let (drm, drm_notifier) = DrmDevice::new(device_fd.clone(), true)?;
let gbm = GbmDevice::new(device_fd)?;
2024-01-24 20:58:58 +01:00
let display = unsafe { EGLDisplay::new(gbm.clone())? };
2024-01-03 18:16:20 +04:00
let egl_device = EGLDevice::device_for_display(&display)?;
let render_node = egl_device
.try_get_render_node()?
.context("no render node")?;
self.gpu_manager
.as_mut()
.add_node(render_node, gbm.clone())
.context("error adding render node to GPU manager")?;
if node == self.primary_node {
debug!("this is the primary node");
let mut renderer = self
.gpu_manager
.single_renderer(&render_node)
.context("error creating renderer")?;
renderer.bind_wl_display(&niri.display_handle)?;
// Create the dmabuf global.
let primary_formats = renderer.dmabuf_formats().collect::<HashSet<_>>();
let default_feedback =
DmabufFeedbackBuilder::new(render_node.dev_id(), primary_formats.clone())
.build()
.context("error building default dmabuf feedback")?;
let dmabuf_global = niri
.dmabuf_state
.create_global_with_default_feedback::<State>(
&niri.display_handle,
&default_feedback,
);
assert!(self.dmabuf_global.replace(dmabuf_global).is_none());
// Create the primary allocator.
let primary_allocator =
DmabufAllocator(GbmAllocator::new(gbm.clone(), GbmBufferFlags::RENDERING));
assert!(self.primary_allocator.replace(primary_allocator).is_none());
// Update the dmabuf feedbacks for all surfaces.
for device in self.devices.values_mut() {
for surface in device.surfaces.values_mut() {
match surface_dmabuf_feedback(
&surface.compositor,
primary_formats.clone(),
self.primary_render_node,
device.render_node,
) {
Ok(feedback) => {
surface.dmabuf_feedback = Some(feedback);
}
Err(err) => {
warn!("error building dmabuf feedback: {err:?}");
}
}
}
}
}
2023-08-09 11:03:38 +04:00
let token = niri
.event_loop
2023-09-26 08:39:38 +04:00
.insert_source(drm_notifier, move |event, meta, state| {
2023-09-24 17:30:06 +04:00
let tty = state.backend.tty();
2023-08-09 11:03:38 +04:00
match event {
DrmEvent::VBlank(crtc) => {
2023-09-26 13:11:00 +04:00
let meta = meta.expect("VBlank events must have metadata");
2024-01-03 18:16:20 +04:00
tty.on_vblank(&mut state.niri, node, crtc, meta);
2023-08-09 11:03:38 +04:00
}
DrmEvent::Error(error) => error!("DRM error: {error}"),
};
})
.unwrap();
2024-01-03 18:16:20 +04:00
let device = OutputDevice {
2023-08-09 11:03:38 +04:00
token,
2024-01-03 18:16:20 +04:00
render_node,
2023-08-09 11:03:38 +04:00
drm,
gbm,
drm_scanner: DrmScanner::new(),
surfaces: HashMap::new(),
2024-01-03 18:16:20 +04:00
};
assert!(self.devices.insert(node, device).is_none());
2023-08-09 11:03:38 +04:00
self.device_changed(device_id, niri);
2023-08-09 11:03:38 +04:00
Ok(())
}
fn device_changed(&mut self, device_id: dev_t, niri: &mut Niri) {
2024-01-03 18:16:20 +04:00
debug!("device changed: {device_id}");
let Ok(node) = DrmNode::from_dev_id(device_id) else {
warn!("error creating DrmNode");
return;
};
2024-01-03 18:16:20 +04:00
let Some(device) = self.devices.get_mut(&node) else {
warn!("no such device");
return;
2024-01-03 18:16:20 +04:00
};
for event in device.drm_scanner.scan_connectors(&device.drm) {
match event {
DrmScanEvent::Connected {
connector,
crtc: Some(crtc),
} => {
2024-01-03 18:16:20 +04:00
if let Err(err) = self.connector_connected(niri, node, connector, crtc) {
warn!("error connecting connector: {err:?}");
}
2023-08-09 11:03:38 +04:00
}
DrmScanEvent::Disconnected {
crtc: Some(crtc), ..
} => self.connector_disconnected(niri, node, crtc),
_ => (),
2023-08-09 11:03:38 +04:00
}
}
self.refresh_ipc_outputs();
2023-08-09 11:03:38 +04:00
}
fn device_removed(&mut self, device_id: dev_t, niri: &mut Niri) {
2024-01-03 18:16:20 +04:00
debug!("device removed: {device_id}");
let Ok(node) = DrmNode::from_dev_id(device_id) else {
warn!("error creating DrmNode");
return;
};
2024-01-03 18:16:20 +04:00
let Some(device) = self.devices.get_mut(&node) else {
warn!("no such device");
return;
2024-01-03 18:16:20 +04:00
};
let crtcs: Vec<_> = device
.drm_scanner
.crtcs()
.map(|(_info, crtc)| crtc)
.collect();
2023-08-09 11:03:38 +04:00
for crtc in crtcs {
self.connector_disconnected(niri, node, crtc);
2023-08-09 11:03:38 +04:00
}
2024-01-03 18:16:20 +04:00
let device = self.devices.remove(&node).unwrap();
if node == self.primary_node {
match self.gpu_manager.single_renderer(&device.render_node) {
Ok(mut renderer) => renderer.unbind_wl_display(),
Err(err) => {
error!("error creating renderer during device removal: {err}");
}
}
// Disable and destroy the dmabuf global.
let global = self.dmabuf_global.take().unwrap();
niri.dmabuf_state
.disable_global::<State>(&niri.display_handle, &global);
niri.event_loop
.insert_source(
Timer::from_duration(Duration::from_secs(10)),
move |_, _, state| {
state
.niri
.dmabuf_state
.destroy_global::<State>(&state.niri.display_handle, global);
TimeoutAction::Drop
},
)
.unwrap();
self.primary_allocator = None;
// Clear the dmabuf feedbacks for all surfaces.
for device in self.devices.values_mut() {
for surface in device.surfaces.values_mut() {
surface.dmabuf_feedback = None;
}
}
}
2024-01-03 18:16:20 +04:00
self.gpu_manager.as_mut().remove_node(&device.render_node);
niri.event_loop.remove(device.token);
self.refresh_ipc_outputs();
2023-08-09 11:03:38 +04:00
}
fn connector_connected(
2023-08-09 11:03:38 +04:00
&mut self,
niri: &mut Niri,
2024-01-03 18:16:20 +04:00
node: DrmNode,
connector: connector::Info,
crtc: crtc::Handle,
) -> anyhow::Result<()> {
let output_name = format!(
"{}-{}",
2023-08-09 11:03:38 +04:00
connector.interface().as_str(),
connector.interface_id(),
);
debug!("connecting connector: {output_name}");
let config = self
.config
.borrow()
.outputs
.iter()
.find(|o| o.name == output_name)
.cloned()
.unwrap_or_default();
2023-12-18 10:27:41 +04:00
if config.off {
debug!("output is disabled in the config");
return Ok(());
}
2024-01-03 18:16:20 +04:00
let device = self.devices.get_mut(&node).context("missing device")?;
2023-08-09 11:03:38 +04:00
2023-10-03 08:35:24 +04:00
for m in connector.modes() {
trace!("{m:?}");
}
2024-01-16 18:01:25 +04:00
let (mode, fallback) =
pick_mode(&connector, config.mode).ok_or_else(|| anyhow!("no mode"))?;
if fallback {
let target = config.mode.unwrap();
warn!(
"configured mode {}x{}{} could not be found, falling back to preferred",
target.width,
target.height,
if let Some(refresh) = target.refresh {
format!("@{refresh}")
2023-10-03 08:35:24 +04:00
} else {
2024-01-16 18:01:25 +04:00
String::new()
},
);
2023-10-03 08:35:24 +04:00
}
debug!("picking mode: {mode:?}");
2023-08-09 11:03:38 +04:00
let surface = device
.drm
2024-01-16 18:01:25 +04:00
.create_surface(crtc, mode, &[connector.handle()])?;
2023-08-09 11:03:38 +04:00
// Create GBM allocator.
let gbm_flags = GbmBufferFlags::RENDERING | GbmBufferFlags::SCANOUT;
let allocator = GbmAllocator::new(device.gbm.clone(), gbm_flags);
2023-08-09 11:03:38 +04:00
// Update the output mode.
let (physical_width, physical_height) = connector.size().unwrap_or((0, 0));
let (make, model) = EdidInfo::for_connector(&device.drm, connector.handle())
2023-08-09 11:03:38 +04:00
.map(|info| (info.manufacturer, info.model))
.unwrap_or_else(|| ("Unknown".into(), "Unknown".into()));
let output = Output::new(
2023-09-04 08:01:50 +04:00
output_name.clone(),
2023-08-09 11:03:38 +04:00
PhysicalProperties {
size: (physical_width as i32, physical_height as i32).into(),
subpixel: Subpixel::Unknown,
model,
make,
},
);
2023-10-26 00:15:46 +04:00
2024-01-16 18:01:25 +04:00
let wl_mode = Mode::from(mode);
2024-01-16 09:42:31 +04:00
output.change_current_state(Some(wl_mode), None, None, None);
2023-08-09 11:03:38 +04:00
output.set_preferred(wl_mode);
2024-01-03 18:16:20 +04:00
output
.user_data()
.insert_if_missing(|| TtyOutputState { node, crtc });
2023-08-09 11:03:38 +04:00
let mut planes = surface.planes().clone();
2023-09-14 22:43:12 +04:00
2024-01-03 08:41:27 +04:00
let config = self.config.borrow();
2023-09-14 22:43:12 +04:00
// Overlay planes are disabled by default as they cause weird performance issues on my
// system.
2024-01-03 08:41:27 +04:00
if !config.debug.enable_overlay_planes {
2023-09-14 22:43:12 +04:00
planes.overlay.clear();
}
2024-01-03 08:42:04 +04:00
// Cursor planes have bugs on some systems.
let cursor_plane_gbm = if config.debug.disable_cursor_plane {
None
} else {
Some(device.gbm.clone())
};
2024-01-03 18:16:20 +04:00
let renderer = self.gpu_manager.single_renderer(&device.render_node)?;
let egl_context = renderer.as_ref().egl_context();
2024-01-01 10:18:22 +04:00
let render_formats = egl_context.dmabuf_render_formats();
2023-08-09 11:03:38 +04:00
// Create the compositor.
let compositor = DrmCompositor::new(
OutputModeSource::Auto(output.clone()),
2023-08-09 11:03:38 +04:00
surface,
Some(planes),
2023-08-09 11:03:38 +04:00
allocator,
device.gbm.clone(),
2023-08-09 11:03:38 +04:00
SUPPORTED_COLOR_FORMATS,
2024-01-03 18:16:20 +04:00
// This is only used to pick a good internal format, so it can use the surface's render
// formats, even though we only ever render on the primary GPU.
2024-01-01 10:18:22 +04:00
render_formats.clone(),
device.drm.cursor_size(),
2024-01-03 08:42:04 +04:00
cursor_plane_gbm,
2023-08-09 11:03:38 +04:00
)?;
2024-01-03 18:16:20 +04:00
let mut dmabuf_feedback = None;
if let Ok(primary_renderer) = self.gpu_manager.single_renderer(&self.primary_render_node) {
let primary_formats = primary_renderer.dmabuf_formats().collect::<HashSet<_>>();
match surface_dmabuf_feedback(
&compositor,
primary_formats,
self.primary_render_node,
device.render_node,
) {
Ok(feedback) => {
dmabuf_feedback = Some(feedback);
}
Err(err) => {
warn!("error building dmabuf feedback: {err:?}");
}
}
}
2023-09-03 15:15:55 +04:00
2023-09-26 08:00:22 +04:00
let vblank_frame_name =
tracy_client::FrameName::new_leak(format!("vblank on {output_name}"));
let time_since_presentation_plot_name =
tracy_client::PlotName::new_leak(format!("{output_name} time since presentation, ms"));
let presentation_misprediction_plot_name = tracy_client::PlotName::new_leak(format!(
"{output_name} presentation misprediction, ms"
2023-09-26 08:00:22 +04:00
));
let sequence_delta_plot_name =
tracy_client::PlotName::new_leak(format!("{output_name} sequence delta"));
2023-09-04 08:57:11 +04:00
2023-09-04 07:49:50 +04:00
let surface = Surface {
2024-01-23 12:02:52 +04:00
name: output_name.clone(),
2023-09-04 07:49:50 +04:00
compositor,
dmabuf_feedback,
2023-09-04 08:57:11 +04:00
vblank_frame: None,
vblank_frame_name,
time_since_presentation_plot_name,
presentation_misprediction_plot_name,
sequence_delta_plot_name,
2023-09-04 07:49:50 +04:00
};
let res = device.surfaces.insert(crtc, surface);
assert!(res.is_none(), "crtc must not have already existed");
2024-01-16 18:01:25 +04:00
niri.add_output(output.clone(), Some(refresh_interval(mode)));
2023-10-09 18:37:43 +04:00
2024-01-23 12:02:52 +04:00
self.enabled_outputs
.lock()
.unwrap()
.insert(output_name, output.clone());
#[cfg(feature = "dbus")]
niri.on_enabled_outputs_changed();
2023-10-09 18:37:43 +04:00
// Power on all monitors if necessary and queue a redraw on the new one.
niri.event_loop.insert_idle(move |state| {
state.niri.activate_monitors(&mut state.backend);
2023-10-09 18:37:43 +04:00
state.niri.queue_redraw(output);
});
Ok(())
}
fn connector_disconnected(&mut self, niri: &mut Niri, node: DrmNode, crtc: crtc::Handle) {
2024-01-03 18:16:20 +04:00
let Some(device) = self.devices.get_mut(&node) else {
debug!("disconnecting connector for crtc: {crtc:?}");
2024-01-03 18:16:20 +04:00
error!("missing device");
2023-09-26 10:06:07 +04:00
return;
};
2023-09-08 17:54:02 +04:00
let Some(surface) = device.surfaces.remove(&crtc) else {
debug!("disconnecting connector for crtc: {crtc:?}");
2023-09-08 17:54:02 +04:00
debug!("crtc wasn't enabled");
return;
2023-09-08 17:54:02 +04:00
};
debug!("disconnecting connector: {:?}", surface.name);
let output = niri
.global_space
.outputs()
.find(|output| {
let tty_state: &TtyOutputState = output.user_data().get().unwrap();
2024-01-03 18:16:20 +04:00
tty_state.node == node && tty_state.crtc == crtc
})
2023-09-26 10:06:07 +04:00
.cloned();
if let Some(output) = output {
niri.remove_output(&output);
} else {
error!("missing output for crtc {crtc:?}");
};
2023-09-08 17:54:02 +04:00
2024-01-17 10:25:23 +04:00
self.enabled_outputs.lock().unwrap().remove(&surface.name);
2024-01-23 12:02:52 +04:00
#[cfg(feature = "dbus")]
niri.on_enabled_outputs_changed();
2023-08-09 11:03:38 +04:00
}
2023-08-09 14:21:29 +04:00
2024-01-03 18:16:20 +04:00
fn on_vblank(
&mut self,
niri: &mut Niri,
node: DrmNode,
crtc: crtc::Handle,
meta: DrmEventMetadata,
) {
2023-09-26 09:23:30 +04:00
let span = tracy_client::span!("Tty::on_vblank");
2023-09-26 08:39:38 +04:00
let now = get_monotonic_time();
2024-01-03 18:16:20 +04:00
let Some(device) = self.devices.get_mut(&node) else {
2023-09-26 08:54:41 +04:00
// I've seen it happen.
2024-01-03 18:16:20 +04:00
error!("missing device in vblank callback for crtc {crtc:?}");
2023-09-26 08:54:41 +04:00
return;
};
let Some(surface) = device.surfaces.get_mut(&crtc) else {
error!("missing surface in vblank callback for crtc {crtc:?}");
return;
};
// Finish the Tracy frame, if any.
drop(surface.vblank_frame.take());
2023-09-26 08:39:38 +04:00
let name = &surface.name;
trace!("vblank on {name} {meta:?}");
2023-09-26 09:23:30 +04:00
span.emit_text(name);
2023-09-26 08:39:38 +04:00
let presentation_time = match meta.time {
DrmEventTime::Monotonic(time) => time,
DrmEventTime::Realtime(_) => {
// Not supported.
// This value will be ignored in the frame clock code.
Duration::ZERO
}
};
let message = if presentation_time.is_zero() {
format!("vblank on {name}, presentation time unknown")
} else if presentation_time > now {
let diff = presentation_time - now;
tracy_client::Client::running().unwrap().plot(
surface.time_since_presentation_plot_name,
-diff.as_secs_f64() * 1000.,
);
2023-09-26 08:39:38 +04:00
format!("vblank on {name}, presentation is {diff:?} later")
} else {
let diff = now - presentation_time;
tracy_client::Client::running().unwrap().plot(
surface.time_since_presentation_plot_name,
diff.as_secs_f64() * 1000.,
);
2023-09-26 08:39:38 +04:00
format!("vblank on {name}, presentation was {diff:?} ago")
};
tracy_client::Client::running()
.unwrap()
.message(&message, 0);
2023-09-26 08:54:41 +04:00
let Some(output) = niri
2023-09-26 08:39:38 +04:00
.global_space
.outputs()
.find(|output| {
let tty_state: &TtyOutputState = output.user_data().get().unwrap();
2024-01-03 18:16:20 +04:00
tty_state.node == node && tty_state.crtc == crtc
2023-09-26 08:39:38 +04:00
})
2023-09-26 08:54:41 +04:00
.cloned()
else {
error!("missing output in global space for {name}");
return;
};
let Some(output_state) = niri.output_state.get_mut(&output) else {
error!("missing output state for {name}");
return;
};
2023-09-26 08:39:38 +04:00
// Mark the last frame as submitted.
match surface.compositor.frame_submitted() {
Ok(Some((mut feedback, target_presentation_time))) => {
let refresh = output_state
.frame_clock
.refresh_interval()
.unwrap_or(Duration::ZERO);
// FIXME: ideally should be monotonically increasing for a surface.
let seq = meta.sequence as u64;
let flags = wp_presentation_feedback::Kind::Vsync
| wp_presentation_feedback::Kind::HwClock
| wp_presentation_feedback::Kind::HwCompletion;
feedback.presented::<_, smithay::utils::Monotonic>(
presentation_time,
refresh,
seq,
flags,
);
if !presentation_time.is_zero() {
let misprediction_s =
2023-09-26 08:39:38 +04:00
presentation_time.as_secs_f64() - target_presentation_time.as_secs_f64();
tracy_client::Client::running().unwrap().plot(
surface.presentation_misprediction_plot_name,
misprediction_s * 1000.,
);
2023-09-26 08:39:38 +04:00
}
}
Ok(None) => (),
Err(err) => {
error!("error marking frame as submitted: {err}");
}
}
if let Some(last_sequence) = output_state.current_estimated_sequence {
let delta = meta.sequence as f64 - last_sequence as f64;
tracy_client::Client::running()
.unwrap()
.plot(surface.sequence_delta_plot_name, delta);
}
2023-09-26 08:39:38 +04:00
output_state.frame_clock.presented(presentation_time);
output_state.current_estimated_sequence = Some(meta.sequence);
2023-09-30 17:13:56 +04:00
let redraw_needed = match mem::replace(&mut output_state.redraw_state, RedrawState::Idle) {
RedrawState::Idle => unreachable!(),
RedrawState::Queued(_) => unreachable!(),
RedrawState::WaitingForVBlank { redraw_needed } => redraw_needed,
RedrawState::WaitingForEstimatedVBlank(_) => unreachable!(),
RedrawState::WaitingForEstimatedVBlankAndQueued(_) => unreachable!(),
};
if redraw_needed || output_state.unfinished_animations_remain {
let vblank_frame = tracy_client::Client::running()
.unwrap()
.non_continuous_frame(surface.vblank_frame_name);
surface.vblank_frame = Some(vblank_frame);
2023-09-30 17:13:56 +04:00
niri.queue_redraw(output);
} else {
niri.send_frame_callbacks(&output);
}
2023-09-26 08:39:38 +04:00
}
2023-09-30 17:13:56 +04:00
fn on_estimated_vblank_timer(&self, niri: &mut Niri, output: Output) {
let span = tracy_client::span!("Tty::on_estimated_vblank_timer");
let name = output.name();
span.emit_text(&name);
2023-09-30 17:13:56 +04:00
let Some(output_state) = niri.output_state.get_mut(&output) else {
error!("missing output state for {name}");
return;
};
2023-09-30 17:13:56 +04:00
match mem::replace(&mut output_state.redraw_state, RedrawState::Idle) {
RedrawState::Idle => unreachable!(),
RedrawState::Queued(_) => unreachable!(),
RedrawState::WaitingForVBlank { .. } => unreachable!(),
RedrawState::WaitingForEstimatedVBlank(_) => (),
// The timer fired just in front of a redraw.
RedrawState::WaitingForEstimatedVBlankAndQueued((_, idle)) => {
output_state.redraw_state = RedrawState::Queued(idle);
return;
}
}
if let Some(sequence) = output_state.current_estimated_sequence.as_mut() {
*sequence = sequence.wrapping_add(1);
2023-09-30 17:13:56 +04:00
if output_state.unfinished_animations_remain {
niri.queue_redraw(output);
} else {
niri.send_frame_callbacks(&output);
}
}
}
2023-09-03 13:04:32 +04:00
pub fn seat_name(&self) -> String {
self.session.seat()
}
pub fn with_primary_renderer<T>(
&mut self,
f: impl FnOnce(&mut GlesRenderer) -> T,
) -> Option<T> {
2024-01-03 18:16:20 +04:00
let mut renderer = self
.gpu_manager
.single_renderer(&self.primary_render_node)
.ok()?;
Some(f(renderer.as_gles_renderer()))
2023-09-03 13:04:32 +04:00
}
pub fn render(
&mut self,
niri: &mut Niri,
output: &Output,
2023-09-20 11:51:25 +04:00
target_presentation_time: Duration,
2023-10-13 13:04:41 +04:00
) -> RenderResult {
2023-09-19 07:39:21 +04:00
let span = tracy_client::span!("Tty::render");
2023-09-03 13:04:32 +04:00
2024-01-03 11:31:04 +04:00
let mut rv = RenderResult::Skipped;
2023-10-13 13:04:41 +04:00
2024-01-03 18:16:20 +04:00
let tty_state: &TtyOutputState = output.user_data().get().unwrap();
let Some(device) = self.devices.get_mut(&tty_state.node) else {
2023-09-26 10:06:07 +04:00
error!("missing output device");
2023-10-13 13:04:41 +04:00
return rv;
2023-09-26 10:06:07 +04:00
};
2024-01-03 18:16:20 +04:00
let Some(surface) = device.surfaces.get_mut(&tty_state.crtc) else {
error!("missing surface");
return rv;
};
span.emit_text(&surface.name);
2024-01-03 11:28:42 +04:00
if !device.drm.is_active() {
warn!("device is inactive");
return rv;
}
2024-01-03 18:16:20 +04:00
let Some(allocator) = self.primary_allocator.as_mut() else {
warn!("no primary allocator");
2023-10-13 13:04:41 +04:00
return rv;
2023-09-26 10:06:07 +04:00
};
2023-09-03 13:04:32 +04:00
2024-01-03 18:16:20 +04:00
let mut renderer = match self.gpu_manager.renderer(
&self.primary_render_node,
&device.render_node,
allocator,
surface.compositor.format(),
) {
Ok(renderer) => renderer,
Err(err) => {
error!("error creating renderer for primary GPU: {err:?}");
return rv;
}
};
2024-01-03 11:28:42 +04:00
// Render the elements.
2024-01-03 18:16:20 +04:00
let elements = niri.render::<TtyRenderer>(&mut renderer, output, true);
2024-01-03 11:28:42 +04:00
// Hand them over to the DRM.
2023-09-26 10:06:07 +04:00
let drm_compositor = &mut surface.compositor;
2024-01-24 20:58:58 +01:00
match drm_compositor.render_frame::<_, _>(&mut renderer, &elements, [0.; 4]) {
2023-09-03 13:04:32 +04:00
Ok(res) => {
2023-09-14 22:28:26 +04:00
if self
.config
.borrow()
.debug
.wait_for_frame_completion_before_queueing
{
2023-09-14 09:33:42 +04:00
if let PrimaryPlaneElement::Swapchain(element) = res.primary_element {
let _span = tracy_client::span!("wait for completion");
element.sync.wait();
}
}
2023-09-04 09:56:28 +04:00
niri.update_primary_scanout_output(output, &res.states);
2024-01-03 18:16:20 +04:00
if let Some(dmabuf_feedback) = surface.dmabuf_feedback.as_ref() {
niri.send_dmabuf_feedbacks(output, dmabuf_feedback, &res.states);
}
if !res.is_empty {
2023-09-03 13:04:32 +04:00
let presentation_feedbacks =
niri.take_presentation_feedbacks(output, &res.states);
2023-09-20 11:51:25 +04:00
let data = (presentation_feedbacks, target_presentation_time);
2023-09-03 13:04:32 +04:00
2023-09-20 11:51:25 +04:00
match drm_compositor.queue_frame(data) {
2023-09-03 13:04:32 +04:00
Ok(()) => {
let output_state = niri.output_state.get_mut(output).unwrap();
2023-09-30 17:13:56 +04:00
let new_state = RedrawState::WaitingForVBlank {
redraw_needed: false,
};
match mem::replace(&mut output_state.redraw_state, new_state) {
RedrawState::Idle => unreachable!(),
RedrawState::Queued(_) => (),
RedrawState::WaitingForVBlank { .. } => unreachable!(),
RedrawState::WaitingForEstimatedVBlank(_) => unreachable!(),
RedrawState::WaitingForEstimatedVBlankAndQueued((token, _)) => {
niri.event_loop.remove(token);
}
};
2023-09-03 15:15:55 +04:00
2023-10-13 13:04:41 +04:00
return RenderResult::Submitted;
2023-09-03 13:04:32 +04:00
}
Err(err) => {
error!("error queueing frame: {err}");
}
}
2023-10-13 13:04:41 +04:00
} else {
rv = RenderResult::NoDamage;
2023-09-03 13:04:32 +04:00
}
}
Err(err) => {
// Can fail if we switched to a different TTY.
error!("error rendering frame: {err}");
}
}
2023-09-03 15:15:55 +04:00
2023-09-04 08:57:11 +04:00
// We're not expecting a vblank right after this.
drop(surface.vblank_frame.take());
// Queue a timer to fire at the predicted vblank time.
queue_estimated_vblank_timer(niri, output.clone(), target_presentation_time);
2023-10-13 13:04:41 +04:00
rv
2023-09-03 13:04:32 +04:00
}
2023-09-03 14:10:02 +04:00
pub fn change_vt(&mut self, vt: i32) {
2023-08-09 14:21:29 +04:00
if let Err(err) = self.session.change_vt(vt) {
error!("error changing VT: {err}");
}
}
2023-09-03 14:10:02 +04:00
pub fn suspend(&self) {
2023-10-10 10:25:26 +04:00
#[cfg(feature = "dbus")]
2023-09-03 14:10:02 +04:00
if let Err(err) = suspend() {
warn!("error suspending: {err:?}");
}
}
pub fn toggle_debug_tint(&mut self) {
2024-01-03 18:16:20 +04:00
for device in self.devices.values_mut() {
2023-09-04 07:49:50 +04:00
for surface in device.surfaces.values_mut() {
let compositor = &mut surface.compositor;
2023-09-03 14:10:02 +04:00
compositor.set_debug_flags(compositor.debug_flags() ^ DebugFlags::TINT);
}
}
}
2023-09-03 14:22:04 +04:00
2024-02-05 17:31:11 +04:00
pub fn import_dmabuf(&mut self, dmabuf: &Dmabuf) -> bool {
2024-01-03 18:16:20 +04:00
let mut renderer = match self.gpu_manager.single_renderer(&self.primary_render_node) {
Ok(renderer) => renderer,
Err(err) => {
debug!("error creating renderer for primary GPU: {err:?}");
2024-02-05 17:31:11 +04:00
return false;
2024-01-03 18:16:20 +04:00
}
};
match renderer.import_dmabuf(dmabuf, None) {
2024-02-05 17:31:11 +04:00
Ok(_texture) => true,
2024-01-03 11:16:47 +04:00
Err(err) => {
debug!("error importing dmabuf: {err:?}");
2024-02-05 17:31:11 +04:00
false
2024-01-03 11:16:47 +04:00
}
}
}
2024-01-03 18:16:20 +04:00
pub fn early_import(&mut self, surface: &WlSurface) {
if let Err(err) = self.gpu_manager.early_import(
// We always advertise the primary GPU in dmabuf feedback.
Some(self.primary_render_node),
// We always render on the primary GPU.
self.primary_render_node,
surface,
) {
warn!("error doing early import: {err:?}");
}
}
fn refresh_ipc_outputs(&self) {
let _span = tracy_client::span!("Tty::refresh_ipc_outputs");
let mut ipc_outputs = HashMap::new();
for device in self.devices.values() {
for (connector, crtc) in device.drm_scanner.crtcs() {
let connector_name = format!(
"{}-{}",
connector.interface().as_str(),
connector.interface_id(),
);
let physical_size = connector.size();
let (make, model) = EdidInfo::for_connector(&device.drm, connector.handle())
.map(|info| (info.manufacturer, info.model))
.unwrap_or_else(|| ("Unknown".into(), "Unknown".into()));
let modes = connector
.modes()
.iter()
.map(|m| niri_ipc::Mode {
width: m.size().0,
height: m.size().1,
refresh_rate: Mode::from(*m).refresh as u32,
})
.collect();
let mut output = niri_ipc::Output {
name: connector_name.clone(),
make,
model,
physical_size,
modes,
current_mode: None,
};
if let Some(surface) = device.surfaces.get(&crtc) {
let current = surface.compositor.pending_mode();
if let Some(current) = connector.modes().iter().position(|m| *m == current) {
output.current_mode = Some(current);
} else {
error!("connector mode list missing current mode");
}
}
ipc_outputs.insert(connector_name, output);
}
}
self.ipc_outputs.replace(ipc_outputs);
}
pub fn ipc_outputs(&self) -> Rc<RefCell<HashMap<String, niri_ipc::Output>>> {
self.ipc_outputs.clone()
}
2024-01-17 10:25:23 +04:00
pub fn enabled_outputs(&self) -> Arc<Mutex<HashMap<String, Output>>> {
self.enabled_outputs.clone()
2023-09-08 17:54:02 +04:00
}
#[cfg(feature = "xdp-gnome-screencast")]
2024-01-03 18:16:20 +04:00
pub fn primary_gbm_device(&self) -> Option<GbmDevice<DrmDeviceFd>> {
self.devices.get(&self.primary_node).map(|d| d.gbm.clone())
2023-09-08 17:54:02 +04:00
}
2023-09-26 10:42:56 +04:00
pub fn set_monitors_active(&mut self, active: bool) {
// We only disable the CRTC here, this will also reset the
// surface state so that the next call to `render_frame` will
// always produce a new frame and `queue_frame` will change
// the CRTC to active. This makes sure we always enable a CRTC
// within an atomic operation.
if active {
return;
}
for device in self.devices.values_mut() {
for (crtc, surface) in device.surfaces.iter_mut() {
set_crtc_active(&device.drm, *crtc, false);
if let Err(err) = surface.compositor.reset_state() {
warn!("error resetting surface state: {err:?}");
}
2024-01-03 18:16:20 +04:00
}
2023-10-09 18:37:43 +04:00
}
}
2024-01-16 15:34:00 +04:00
pub fn on_output_config_changed(&mut self, niri: &mut Niri) {
let _span = tracy_client::span!("Tty::on_output_config_changed");
// If we're inactive, we can't do anything, so just set a flag for later.
if !self.session.is_active() {
self.update_output_config_on_resume = true;
return;
}
self.update_output_config_on_resume = false;
2024-01-16 15:34:00 +04:00
let mut to_disconnect = vec![];
let mut to_connect = vec![];
2024-01-16 18:01:45 +04:00
for (&node, device) in &mut self.devices {
for surface in device.surfaces.values_mut() {
let crtc = surface.compositor.crtc();
2024-01-16 15:34:00 +04:00
let config = self
.config
.borrow()
.outputs
.iter()
.find(|o| o.name == surface.name)
.cloned()
.unwrap_or_default();
if config.off {
2024-01-16 18:01:45 +04:00
to_disconnect.push((node, crtc));
continue;
2024-01-16 15:34:00 +04:00
}
2024-01-16 18:01:45 +04:00
// Check if we need to change the mode.
let Some(connector) = surface.compositor.pending_connectors().into_iter().next()
else {
error!("surface pending connectors is empty");
continue;
};
2024-01-16 18:01:45 +04:00
let Some(connector) = device.drm_scanner.connectors().get(&connector) else {
error!("missing enabled connector in drm_scanner");
continue;
};
let Some((mode, fallback)) = pick_mode(connector, config.mode) else {
error!("couldn't pick mode for enabled connector");
continue;
};
if surface.compositor.pending_mode() == mode {
2024-01-16 18:01:45 +04:00
continue;
}
let output = niri
.global_space
.outputs()
.find(|output| {
let tty_state: &TtyOutputState = output.user_data().get().unwrap();
tty_state.node == node && tty_state.crtc == crtc
})
.cloned();
let Some(output) = output else {
error!("missing output for crtc: {crtc:?}");
continue;
};
let Some(output_state) = niri.output_state.get_mut(&output) else {
error!("missing state for output {:?}", surface.name);
continue;
};
if fallback {
let target = config.mode.unwrap();
warn!(
"output {:?}: configured mode {}x{}{} could not be found, \
falling back to preferred",
surface.name,
target.width,
target.height,
if let Some(refresh) = target.refresh {
format!("@{refresh}")
} else {
String::new()
},
);
}
debug!("output {:?}: picking mode: {mode:?}", surface.name);
if let Err(err) = surface.compositor.use_mode(mode) {
warn!("error changing mode: {err:?}");
continue;
}
let wl_mode = Mode::from(mode);
output.change_current_state(Some(wl_mode), None, None, None);
output.set_preferred(wl_mode);
output_state.frame_clock = FrameClock::new(Some(refresh_interval(mode)));
niri.output_resized(output);
2024-01-16 15:34:00 +04:00
}
for (connector, crtc) in device.drm_scanner.crtcs() {
// Check if connected.
if connector.state() != connector::State::Connected {
continue;
}
// Check if already enabled.
if device.surfaces.contains_key(&crtc) {
continue;
}
let output_name = format!(
"{}-{}",
connector.interface().as_str(),
connector.interface_id(),
);
let config = self
.config
.borrow()
.outputs
.iter()
.find(|o| o.name == output_name)
.cloned()
.unwrap_or_default();
if !config.off {
2024-01-16 18:01:45 +04:00
to_connect.push((node, connector.clone(), crtc));
2024-01-16 15:34:00 +04:00
}
}
}
for (node, crtc) in to_disconnect {
self.connector_disconnected(niri, node, crtc);
}
for (node, connector, crtc) in to_connect {
if let Err(err) = self.connector_connected(niri, node, connector, crtc) {
warn!("error connecting connector: {err:?}");
}
}
self.refresh_ipc_outputs();
2024-01-16 15:34:00 +04:00
}
2023-10-09 18:37:43 +04:00
}
2024-01-06 09:14:48 +04:00
fn primary_node_from_config(config: &Config) -> Option<(DrmNode, DrmNode)> {
let path = config.debug.render_drm_device.as_ref()?;
debug!("attempting to use render node from config: {path:?}");
match DrmNode::from_path(path) {
Ok(node) => {
if node.ty() == NodeType::Render {
match node.node_with_type(NodeType::Primary) {
Some(Ok(primary_node)) => {
return Some((primary_node, node));
}
Some(Err(err)) => {
warn!("error opening primary node for render node {path:?}: {err:?}");
}
None => {
warn!("error opening primary node for render node {path:?}");
}
}
} else {
warn!("DRM node {path:?} is not a render node");
}
}
Err(err) => {
warn!("error opening {path:?} as DRM node: {err:?}");
}
}
None
}
2024-01-03 18:16:20 +04:00
fn surface_dmabuf_feedback(
compositor: &GbmDrmCompositor,
primary_formats: HashSet<Format>,
primary_render_node: DrmNode,
surface_render_node: DrmNode,
) -> Result<SurfaceDmabufFeedback, io::Error> {
let surface = compositor.surface();
let planes = surface.planes();
let plane_formats = planes
.primary
.formats
.iter()
.chain(planes.overlay.iter().flat_map(|p| p.formats.iter()))
.copied()
.collect::<HashSet<_>>();
// We limit the scan-out trache to formats we can also render from so that there is always a
// fallback render path available in case the supplied buffer can not be scanned out directly.
2024-01-05 20:21:42 +04:00
let mut scanout_formats = plane_formats
2024-01-03 18:16:20 +04:00
.intersection(&primary_formats)
.copied()
.collect::<Vec<_>>();
2024-01-05 20:21:42 +04:00
// HACK: AMD iGPU + dGPU systems share some modifiers between the two, and yet cross-device
// buffers produce a glitched scanout if the modifier is not Linear...
if primary_render_node != surface_render_node {
scanout_formats.retain(|f| f.modifier == Modifier::Linear);
}
2024-01-03 18:16:20 +04:00
let builder = DmabufFeedbackBuilder::new(primary_render_node.dev_id(), primary_formats);
let scanout = builder
.clone()
.add_preference_tranche(
surface_render_node.dev_id(),
Some(TrancheFlags::Scanout),
scanout_formats,
)
.build()?;
// If this is the primary node surface, send scanout formats in both tranches to avoid
// duplication.
let render = if primary_render_node == surface_render_node {
scanout.clone()
} else {
builder.build()?
};
Ok(SurfaceDmabufFeedback { render, scanout })
}
2023-10-09 18:37:43 +04:00
fn find_drm_property(drm: &DrmDevice, crtc: crtc::Handle, name: &str) -> Option<property::Handle> {
let props = match drm.get_properties(crtc) {
Ok(props) => props,
Err(err) => {
warn!("error getting CRTC properties: {err:?}");
return None;
}
};
let (handles, _) = props.as_props_and_values();
handles.iter().find_map(|handle| {
let info = drm.get_property(*handle).ok()?;
let n = info.name().to_str().ok()?;
(n == name).then_some(*handle)
})
}
fn set_crtc_active(drm: &DrmDevice, crtc: crtc::Handle, active: bool) {
let Some(prop) = find_drm_property(drm, crtc, "ACTIVE") else {
return;
};
let value = property::Value::Boolean(active);
if let Err(err) = drm.set_property(crtc, prop, value.into()) {
warn!("error setting CRTC property: {err:?}");
}
2023-08-09 11:03:38 +04:00
}
2023-08-14 15:53:24 +04:00
fn refresh_interval(mode: DrmMode) -> Duration {
let clock = mode.clock() as u64;
let htotal = mode.hsync().2 as u64;
let vtotal = mode.vsync().2 as u64;
let mut numerator = htotal * vtotal * 1_000_000;
let mut denominator = clock;
if mode.flags().contains(ModeFlags::INTERLACE) {
denominator *= 2;
}
if mode.flags().contains(ModeFlags::DBLSCAN) {
numerator *= 2;
}
if mode.vscan() > 1 {
numerator *= mode.vscan() as u64;
}
let refresh_interval = (numerator + denominator / 2) / denominator;
Duration::from_nanos(refresh_interval)
}
2023-09-03 07:31:44 +04:00
2023-10-10 10:25:26 +04:00
#[cfg(feature = "dbus")]
2023-09-03 07:31:44 +04:00
fn suspend() -> anyhow::Result<()> {
let conn = zbus::blocking::Connection::system().context("error connecting to system bus")?;
2024-02-10 14:58:22 +04:00
conn.call_method(
Some("org.freedesktop.login1"),
"/org/freedesktop/login1",
Some("org.freedesktop.login1.Manager"),
"Suspend",
&(true),
)
.context("error suspending")?;
Ok(())
2023-09-03 07:31:44 +04:00
}
fn queue_estimated_vblank_timer(
niri: &mut Niri,
output: Output,
target_presentation_time: Duration,
) {
let output_state = niri.output_state.get_mut(&output).unwrap();
2023-09-30 17:13:56 +04:00
match mem::take(&mut output_state.redraw_state) {
RedrawState::Idle => unreachable!(),
RedrawState::Queued(_) => (),
RedrawState::WaitingForVBlank { .. } => unreachable!(),
RedrawState::WaitingForEstimatedVBlank(token)
| RedrawState::WaitingForEstimatedVBlankAndQueued((token, _)) => {
output_state.redraw_state = RedrawState::WaitingForEstimatedVBlank(token);
return;
}
}
let now = get_monotonic_time();
let timer = Timer::from_duration(target_presentation_time.saturating_sub(now));
let token = niri
.event_loop
.insert_source(timer, move |_, _, data| {
data.backend
.tty()
2023-09-30 17:13:56 +04:00
.on_estimated_vblank_timer(&mut data.niri, output.clone());
TimeoutAction::Drop
})
.unwrap();
2023-09-30 17:13:56 +04:00
output_state.redraw_state = RedrawState::WaitingForEstimatedVBlank(token);
}
2024-01-16 18:01:25 +04:00
fn pick_mode(
connector: &connector::Info,
target: Option<niri_config::Mode>,
) -> Option<(control::Mode, bool)> {
let mut mode = None;
let mut fallback = false;
if let Some(target) = target {
let refresh = target.refresh.map(|r| (r * 1000.).round() as i32);
for m in connector.modes() {
if m.size() != (target.width, target.height) {
continue;
}
if let Some(refresh) = refresh {
// If refresh is set, only pick modes with matching refresh.
let wl_mode = Mode::from(*m);
if wl_mode.refresh == refresh {
mode = Some(m);
}
} else if let Some(curr) = mode {
// If refresh isn't set, pick the mode with the highest refresh.
if curr.vrefresh() < m.vrefresh() {
mode = Some(m);
}
} else {
mode = Some(m);
}
}
if mode.is_none() {
fallback = true;
}
}
if mode.is_none() {
// Pick a preferred mode.
for m in connector.modes() {
if !m.mode_type().contains(ModeTypeFlags::PREFERRED) {
continue;
}
if let Some(curr) = mode {
if curr.vrefresh() < m.vrefresh() {
mode = Some(m);
}
} else {
mode = Some(m);
}
}
}
if mode.is_none() {
// Last attempt.
mode = connector.modes().first();
}
mode.map(|m| (*m, fallback))
}