From: Mike Lothian <mike@fireburn.co.uk>
To: dri-devel@lists.freedesktop.org
Cc: "Mike Lothian" <mike@fireburn.co.uk>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Boqun Feng" <boqun@kernel.org>, "Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <lossin@kernel.org>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Alice Ryhl" <aliceryhl@google.com>,
"Trevor Gross" <tmgross@umich.edu>,
"Danilo Krummrich" <dakr@kernel.org>,
"Daniel Almeida" <daniel.almeida@collabora.com>,
"Tamir Duberstein" <tamird@kernel.org>,
"Alexandre Courbot" <acourbot@nvidia.com>,
"Onur Özkan" <work@onurozkan.dev>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Lyude Paul" <lyude@redhat.com>,
"Asahi Lina" <lina+kernel@asahilina.net>,
"Matthew Maurer" <mmaurer@google.com>,
"Lorenzo Stoakes" <ljs@kernel.org>,
"Joel Fernandes" <joelagnelf@nvidia.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v3 9/23] rust: drm: kms: add plane damage-clip accessors
Date: Wed, 26 Aug 2026 17:31:40 +0100 [thread overview]
Message-ID: <20260826163359.4998-10-mike@fireburn.co.uk> (raw)
In-Reply-To: <20260826163359.4998-1-mike@fireburn.co.uk>
Add safe access to the FB_DAMAGE_CLIPS rectangles intersected with
the visible source area.
damage_merged() returns the bounding rectangle produced by
drm_atomic_helper_damage_merged(). for_each_damage_clip() wraps
the DRM damage iterator for drivers that can process the individual
rectangles without repainting their bounding box.
Assisted-by: Claude:claude-opus-5
Signed-off-by: Mike Lothian <mike@fireburn.co.uk>
---
rust/bindings/bindings_helper.h | 1 +
rust/kernel/drm/kms/plane.rs | 105 ++++++++++++++++++++++++++++++++
2 files changed, 106 insertions(+)
diff --git a/rust/bindings/bindings_helper.h b/rust/bindings/bindings_helper.h
index 38ad80fae0ed..c4abdd887699 100644
--- a/rust/bindings/bindings_helper.h
+++ b/rust/bindings/bindings_helper.h
@@ -41,6 +41,7 @@
#include <drm/clients/drm_client_setup.h>
#include <drm/drm_connector.h>
#include <drm/drm_crtc.h>
+#include <drm/drm_damage_helper.h>
#include <drm/drm_device.h>
#include <drm/drm_drv.h>
#include <drm/drm_edid.h>
diff --git a/rust/kernel/drm/kms/plane.rs b/rust/kernel/drm/kms/plane.rs
index 8e3f711b0767..3bff4091abb2 100644
--- a/rust/kernel/drm/kms/plane.rs
+++ b/rust/kernel/drm/kms/plane.rs
@@ -693,6 +693,49 @@ pub trait FromRawPlaneState: AsRawPlaneState {
unsafe fn from_raw_mut<'a>(ptr: *mut bindings::drm_plane_state) -> &'a mut Self;
}
+/// A rectangle in a plane's source (pixel) space, as produced by
+/// [`RawPlaneState::damage_merged`].
+///
+/// The box is inclusive on the top-left and exclusive on the bottom-right (`[x1, x2)` by
+/// `[y1, y2)`), matching [`struct drm_rect`].
+///
+/// [`struct drm_rect`]: srctree/include/drm/drm_rect.h
+#[derive(Copy, Clone, Debug, PartialEq, Eq)]
+pub struct Rect {
+ /// Left edge, inclusive.
+ pub x1: i32,
+ /// Top edge, inclusive.
+ pub y1: i32,
+ /// Right edge, exclusive.
+ pub x2: i32,
+ /// Bottom edge, exclusive.
+ pub y2: i32,
+}
+
+impl Rect {
+ #[inline]
+ fn from_raw(r: &bindings::drm_rect) -> Self {
+ Self {
+ x1: r.x1,
+ y1: r.y1,
+ x2: r.x2,
+ y2: r.y2,
+ }
+ }
+
+ /// The width of the rectangle in pixels.
+ #[inline]
+ pub fn width(&self) -> i32 {
+ self.x2 - self.x1
+ }
+
+ /// The height of the rectangle in pixels.
+ #[inline]
+ pub fn height(&self) -> i32 {
+ self.y2 - self.y1
+ }
+}
+
/// Common methods available on any type which implements [`AsRawPlane`].
///
/// This is implemented internally by DRM, and provides many of the basic methods for working with
@@ -774,6 +817,68 @@ fn atomic_helper_check<S, D>(
})
}
+ /// Merge all frame-damage clips on this (new) plane state -- relative to `old` -- into a
+ /// single bounding rectangle, intersected with the plane's visible source area.
+ ///
+ /// Returns [`None`] when the plane is not visible or there is nothing to update. If the client
+ /// supplied no explicit damage clips, the full plane rectangle is returned, so a driver can
+ /// always treat [`Some`] as "repaint this rectangle" and fall back to a full-frame update.
+ /// Coordinates are integer pixels in the plane's source space.
+ ///
+ /// [`drm_atomic_helper_damage_merged`]: srctree/include/drm/drm_damage_helper.h
+ fn damage_merged(&self, old: &impl AsRawPlaneState) -> Option<Rect> {
+ let mut rect = bindings::drm_rect {
+ x1: 0,
+ y1: 0,
+ x2: 0,
+ y2: 0,
+ };
+
+ // SAFETY:
+ // - `old` and `self` are valid initialized `drm_plane_state`s via their type invariants.
+ // - `drm_atomic_helper_damage_merged` only reads the two states (to gather the damage
+ // clips and the source rectangle) and writes the merged result into `rect`; it does not
+ // mutate the plane state, so deriving a `*mut` from our shared reference is sound.
+ let visible = unsafe {
+ bindings::drm_atomic_helper_damage_merged(
+ core::ptr::from_ref(old.as_raw()),
+ core::ptr::from_ref(self.as_raw()).cast_mut(),
+ &mut rect,
+ )
+ };
+
+ visible.then(|| Rect::from_raw(&rect))
+ }
+
+ /// Invoke `f` once per frame-damage clip on this (new) plane state relative to `old`, each
+ /// intersected with the plane's visible source area -- i.e. the individual rectangles that
+ /// [`Self::damage_merged`] collapses into one. If the client supplied no explicit damage clips,
+ /// `f` is called once with the full plane rectangle. Coordinates are integer pixels in the
+ /// plane's source space.
+ ///
+ /// This lets a driver forward each changed region separately (e.g. to a remote display) instead
+ /// of the bounding box of them all.
+ ///
+ /// [`drm_atomic_helper_damage_iter`]: srctree/include/drm/drm_damage_helper.h
+ fn for_each_damage_clip(&self, old: &impl AsRawPlaneState, mut f: impl FnMut(Rect)) {
+ let mut iter = bindings::drm_atomic_helper_damage_iter::default();
+ let mut clip = bindings::drm_rect::default();
+ // SAFETY:
+ // - `old` and `self` are valid initialized `drm_plane_state`s via their type invariants.
+ // - `drm_atomic_helper_damage_iter_init` only reads the two states to set up `iter`, and
+ // `_next` only reads `iter` and writes `clip`; neither escapes a pointer.
+ unsafe {
+ bindings::drm_atomic_helper_damage_iter_init(
+ &mut iter,
+ core::ptr::from_ref(old.as_raw()),
+ core::ptr::from_ref(self.as_raw()),
+ );
+ while bindings::drm_atomic_helper_damage_iter_next(&mut iter, &mut clip) {
+ f(Rect::from_raw(&clip));
+ }
+ }
+ }
+
/// Return the framebuffer currently set for this plane state
#[inline]
fn framebuffer<D>(&self) -> Option<&Framebuffer<D>>
next prev parent reply other threads:[~2026-08-26 16:35 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-26 16:31 [PATCH v3 0/23] rust: drm: KMS abstractions for a Rust display driver Mike Lothian
2026-08-26 16:31 ` [PATCH v3 1/23] rust: drm: kms: adapt Lyude's KMS series to current DRM APIs Mike Lothian
2026-08-26 16:31 ` [PATCH v3 2/23] rust: drm: kms: tie mode-object references to their owners Mike Lothian
2026-08-26 16:31 ` [PATCH v3 3/23] rust: drm: kms: constrain connector encoder attachment Mike Lothian
2026-08-26 16:31 ` [PATCH v3 4/23] rust: drm: reject cross-device GEM handle creation Mike Lothian
2026-08-26 16:31 ` [PATCH v3 5/23] rust: drm: kms: add common state and connector helpers Mike Lothian
2026-08-26 16:31 ` [PATCH v3 6/23] rust: drm: expose HDCP 2.2 message identifiers Mike Lothian
2026-08-26 16:31 ` [PATCH v3 7/23] rust: drm: kms: add typed color and rotation properties Mike Lothian
2026-08-26 16:31 ` [PATCH v3 8/23] rust: drm: kms: add connector detect() and mode_valid() hooks Mike Lothian
2026-08-26 16:31 ` Mike Lothian [this message]
2026-08-26 16:31 ` [PATCH v3 10/23] rust: drm: framebuffer: add validated shmem scanout views Mike Lothian
2026-08-26 16:31 ` [PATCH v3 11/23] rust: drm: kms: expose checked plane geometry Mike Lothian
2026-08-26 16:31 ` [PATCH v3 12/23] rust: drm: kms: add owned CRTC and vblank references Mike Lothian
2026-08-26 16:31 ` [PATCH v3 13/23] rust: drm: kms: plane: add FB_DAMAGE_CLIPS property support Mike Lothian
2026-08-26 16:31 ` [PATCH v3 14/23] rust: drm: add a safe constructor for owned registration data Mike Lothian
2026-08-26 16:31 ` [PATCH v3 15/23] rust: drm: pin the owner while DRM files remain open Mike Lothian
2026-08-26 16:31 ` [PATCH v3 16/23] rust: drm: kms: add the plane blend-mode property Mike Lothian
2026-08-26 16:31 ` [PATCH v3 17/23] rust: drm: add an owned display mode constructor Mike Lothian
2026-08-26 16:31 ` [PATCH v3 18/23] rust: drm: expose mode flags and CTA VIC matching Mike Lothian
2026-08-26 16:31 ` [PATCH v3 19/23] rust: drm: expose CRTC mode changes Mike Lothian
2026-08-26 16:31 ` [PATCH v3 20/23] rust: drm: kms: add synthesized CVT connector modes Mike Lothian
2026-08-26 16:31 ` [PATCH v3 21/23] rust: drm: kms: read a connector's colorimetry and HDR metadata Mike Lothian
2026-08-26 16:31 ` [PATCH v3 22/23] rust: drm: kms: walk the CRTCs an atomic commit carries Mike Lothian
2026-08-26 16:31 ` [PATCH v3 23/23] rust: drm: kms: expose a connector's requested link depth Mike Lothian
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260826163359.4998-10-mike@fireburn.co.uk \
--to=mike@fireburn.co.uk \
--cc=a.hindborg@kernel.org \
--cc=acourbot@nvidia.com \
--cc=airlied@gmail.com \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=joelagnelf@nvidia.com \
--cc=lina+kernel@asahilina.net \
--cc=linux-kernel@vger.kernel.org \
--cc=ljs@kernel.org \
--cc=lossin@kernel.org \
--cc=lyude@redhat.com \
--cc=mmaurer@google.com \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=simona@ffwll.ch \
--cc=tamird@kernel.org \
--cc=tmgross@umich.edu \
--cc=work@onurozkan.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox