From: Beata Michalska <beata.michalska@arm.com>
To: Alice Ryhl <aliceryhl@google.com>
Cc: ojeda@kernel.org, dakr@kernel.org, gregkh@linuxfoundation.org,
rafael@kernel.org, boqun@kernel.org, gary@garyguo.net,
bjorn3_gh@protonmail.com, lossin@kernel.org,
a.hindborg@kernel.org, tmgross@umich.edu,
daniel.almeida@collabora.com, boris.brezillon@collabora.com,
work@onurozkan.dev, samitolvanen@google.com,
rust-for-linux@vger.kernel.org, driver-core@lists.linux.dev,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org
Subject: Re: [PATCH v2 2/3] rust: platform: wire runtime PM callbacks
Date: Tue, 4 Aug 2026 14:26:37 +0200 [thread overview]
Message-ID: <anHafc4O3bKcTeoc@arm.com> (raw)
In-Reply-To: <anGcgxwNXz5_RzD1@google.com>
On Tue, Aug 04, 2026 at 08:02:11AM +0000, Alice Ryhl wrote:
> On Tue, Jul 21, 2026 at 05:34:03PM +0200, Beata Michalska wrote:
> > Allow Rust platform drivers to expose runtime PM callbacks to the driver core.
> >
> > The runtime PM abstraction builds a dev_pm_ops table for the concrete driver
> > implementation, but the platform bus still needs to receive that table through
> > struct platform_driver. Add an optional PM_OPS associated constant to
> > platform::Driver and initialize the coresponding C device_driver struct
> > accordingly during registration. The platform glue only wires the callback
> > table into the C driver model; ownership of the callback payload and
> > runtime PM teardown remain with the pm module.
> >
> > Signed-off-by: Beata Michalska <beata.michalska@arm.com>
> > ---
> > rust/kernel/platform.rs | 9 +++++++++
> > 1 file changed, 9 insertions(+)
> >
> > diff --git a/rust/kernel/platform.rs b/rust/kernel/platform.rs
> > index d8d48f60b0b9..b7e422388634 100644
> > --- a/rust/kernel/platform.rs
> > +++ b/rust/kernel/platform.rs
> > @@ -72,6 +72,11 @@ unsafe fn register(
> > None => core::ptr::null(),
> > };
> >
> > + let pm_ops = match T::PM_OPS {
> > + Some(ops) => ops,
> > + None => core::ptr::null(),
> > + };
>
> This value is just any user-provided &bindings::pm_ops, which I think is
> too lax. There is no guarantee that the Registration and the PM_OPS
> table agree on what the type T is, which can lead to type confusion.
>
Indeed, as stated in the commit message
> Most likely, you must instead give `trait Driver` an associated type
> saying "the PmOps type is this particular type", and then here you can
> do `Some(T::PM_OPS)` to actually get the associated table.
>
> And then in the registration, you can further require that the types
> also match there. E.g., maybe make the registration generic over the
> Driver type and then the inner type T is just D::PmData or similar.
>
I do need to ponder on that one a bit.
---
BR
Beata
> Alice
>
> > // SAFETY: It's safe to set the fields of `struct platform_driver` on initialization.
> > unsafe {
> > (*pdrv.get()).driver.name = name.as_char_ptr();
> > @@ -79,6 +84,7 @@ unsafe fn register(
> > (*pdrv.get()).remove = Some(Self::remove_callback);
> > (*pdrv.get()).driver.of_match_table = of_table;
> > (*pdrv.get()).driver.acpi_match_table = acpi_table;
> > + (*pdrv.get()).driver.pm = pm_ops;
> > }
> >
> > // SAFETY: `pdrv` is guaranteed to be a valid `DriverType`.
> > @@ -222,6 +228,9 @@ pub trait Driver {
> > /// The table of ACPI device ids supported by the driver.
> > const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = None;
> >
> > + /// Runtime PM callbacks
> > + const PM_OPS: Option<&'static bindings::dev_pm_ops> = None;
> > +
> > /// Platform driver probe.
> > ///
> > /// Called when a new platform device is added or discovered.
> > --
> > 2.43.0
> >
next prev parent reply other threads:[~2026-08-04 12:26 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-21 15:34 [PATCH v2 0/3] Rust: add runtime PM support Beata Michalska
2026-07-21 15:34 ` [PATCH v2 1/3] rust: " Beata Michalska
2026-07-27 14:56 ` Onur Özkan
2026-07-29 9:07 ` Beata Michalska
2026-07-29 13:58 ` Onur Özkan
2026-08-03 9:30 ` Beata Michalska
2026-08-04 8:06 ` Alice Ryhl
2026-08-04 12:27 ` Beata Michalska
2026-08-04 8:13 ` Alice Ryhl
2026-08-04 12:27 ` Beata Michalska
2026-07-21 15:34 ` [PATCH v2 2/3] rust: platform: wire runtime PM callbacks Beata Michalska
2026-08-04 8:02 ` Alice Ryhl
2026-08-04 12:26 ` Beata Michalska [this message]
2026-08-04 9:16 ` Alice Ryhl
2026-08-04 12:28 ` Beata Michalska
2026-07-21 15:34 ` [PATCH v2 3/3] drm/tyr: enable runtime PM Beata Michalska
2026-07-27 15:00 ` Onur Özkan
2026-07-29 9:13 ` Beata Michalska
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=anHafc4O3bKcTeoc@arm.com \
--to=beata.michalska@arm.com \
--cc=a.hindborg@kernel.org \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=boris.brezillon@collabora.com \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=driver-core@lists.linux.dev \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=ojeda@kernel.org \
--cc=rafael@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=samitolvanen@google.com \
--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