[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <C008D12A-C5C0-46A9-81D7-8B544341A80C@collabora.com>
Date: Wed, 27 Nov 2024 12:06:14 -0300
From: Daniel Almeida <daniel.almeida@...labora.com>
To: Lyude Paul <lyude@...hat.com>
Cc: dri-devel@...ts.freedesktop.org,
rust-for-linux@...r.kernel.org,
Asahi Lina <lina@...hilina.net>,
Danilo Krummrich <dakr@...nel.org>,
mcanal@...lia.com,
airlied@...hat.com,
zhiw@...dia.com,
cjia@...dia.com,
jhubbard@...dia.com,
Miguel Ojeda <ojeda@...nel.org>,
Alex Gaynor <alex.gaynor@...il.com>,
Wedson Almeida Filho <wedsonaf@...il.com>,
Boqun Feng <boqun.feng@...il.com>,
Gary Guo <gary@...yguo.net>,
Björn Roy Baron <bjorn3_gh@...tonmail.com>,
Benno Lossin <benno.lossin@...ton.me>,
Andreas Hindborg <a.hindborg@...sung.com>,
Alice Ryhl <aliceryhl@...gle.com>,
Trevor Gross <tmgross@...ch.edu>,
Danilo Krummrich <dakr@...hat.com>,
Mika Westerberg <mika.westerberg@...ux.intel.com>,
open list <linux-kernel@...r.kernel.org>
Subject: Re: [WIP RFC v2 11/35] rust: drm/kms: Add
ConnectorGuard::add_modes_noedid()
Hi Lyude,
> On 30 Sep 2024, at 20:09, Lyude Paul <lyude@...hat.com> wrote:
>
> A simple binding for drm_add_modes_noedid() using the ConnectorGuard type
> we just added.
>
> Signed-off-by: Lyude Paul <lyude@...hat.com>
> ---
> rust/bindings/bindings_helper.h | 2 ++
> rust/kernel/drm/kms/connector.rs | 11 +++++++++++
> 2 files changed, 13 insertions(+)
>
> diff --git a/rust/bindings/bindings_helper.h b/rust/bindings/bindings_helper.h
> index ba1871b05b7fa..7695f11f4363c 100644
> --- a/rust/bindings/bindings_helper.h
> +++ b/rust/bindings/bindings_helper.h
> @@ -10,6 +10,7 @@
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_device.h>
> #include <drm/drm_drv.h>
> +#include <drm/drm_edid.h>
> #include <drm/drm_file.h>
> #include <drm/drm_fourcc.h>
> #include <drm/drm_fbdev_dma.h>
> @@ -19,6 +20,7 @@
> #include <drm/drm_gem_shmem_helper.h>
> #include <drm/drm_mode_object.h>
> #include <drm/drm_ioctl.h>
> +#include <drm/drm_probe_helper.h>
> #include <kunit/test.h>
> #include <linux/blk-mq.h>
> #include <linux/blk_types.h>
> diff --git a/rust/kernel/drm/kms/connector.rs b/rust/kernel/drm/kms/connector.rs
> index 57ab29473c344..7d0f67c3bdaf8 100644
> --- a/rust/kernel/drm/kms/connector.rs
> +++ b/rust/kernel/drm/kms/connector.rs
> @@ -378,6 +378,17 @@ fn deref(&self) -> &Self::Target {
> }
> }
>
> +impl<'a, T: DriverConnector> ConnectorGuard<'a, T> {
> + /// Add modes for a [`ConnectorGuard`] without an EDID.
> + ///
> + /// Add the specified modes to the connector's mode list up to the given maximum resultion.
> + /// Returns how many modes were added.
> + pub fn add_modes_noedid(&self, (max_h, max_v): (i32, i32)) -> i32 {
> + // SAFETY: We hold the locks required to call this via our type invariants.
> + unsafe { bindings::drm_add_modes_noedid(self.as_raw(), max_h, max_v) }
> + }
> +}
> +
> // SAFETY: DRM expects this struct to be zero-initialized
> unsafe impl Zeroable for bindings::drm_connector_state {}
>
> --
> 2.46.1
>
LGTM.
— Daniel
Powered by blists - more mailing lists