From: Beata Michalska <beata.michalska@arm.com>
To: Miguel Ojeda <ojeda@kernel.org>,
Danilo Krummrich <dakr@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
"Rafael J . Wysocki" <rafael@kernel.org>
Cc: Boqun Feng <boqun@kernel.org>, Gary Guo <gary@garyguo.net>,
Bjorn 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>,
Daniel Almeida <daniel.almeida@collabora.com>,
Boris Brezillon <boris.brezillon@collabora.com>,
rust-for-linux@vger.kernel.org, driver-core@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: [RFC PATCH 2/3] rust/platform: Add support for runtime PM
Date: Thu, 14 May 2026 17:09:04 +0200 [thread overview]
Message-ID: <20260514150957.3501924-3-beata.michalska@arm.com> (raw)
In-Reply-To: <20260514150957.3501924-1-beata.michalska@arm.com>
Wire the per-driver dev_pm_ops pointer into platform_driver
registration so Rust drivers can expose PM callbacks to the PM core.
Also add a TryFrom implementation from Device<CoreInternal>
to platform::Device so generated PM callbacks can recover
a platform device from the generic device pointer received
from the PM core.
Signed-off-by: Beata Michalska <beata.michalska@arm.com>
---
rust/kernel/platform.rs | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/rust/kernel/platform.rs b/rust/kernel/platform.rs
index 8917d4ee499f..d100adc2ef76 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(),
+ };
+
// 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`.
@@ -218,6 +224,9 @@ pub trait Driver: Send {
/// 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.
@@ -555,6 +564,15 @@ fn try_from(dev: &device::Device<Ctx>) -> Result<Self, Self::Error> {
}
}
+impl TryFrom<&device::Device<device::CoreInternal>> for &Device {
+ type Error = kernel::error::Error;
+
+ fn try_from(dev: &device::Device<device::CoreInternal>) -> Result<Self, Self::Error> {
+ let pdev_ci: &Device<device::CoreInternal> = TryFrom::try_from(dev)?;
+ Ok(pdev_ci)
+ }
+}
+
// SAFETY: A `Device` is always reference-counted and can be released from any thread.
unsafe impl Send for Device {}
--
2.43.0
next prev parent reply other threads:[~2026-05-14 15:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-14 15:09 [RFC PATCH 0/3] Rust: add runtime PM support Beata Michalska
2026-05-14 15:09 ` [RFC PATCH 1/3] rust: Add " Beata Michalska
2026-05-14 15:09 ` Beata Michalska [this message]
2026-05-14 15:09 ` [RFC PATCH 3/3] [DO NOT MERGE] drm/tyr: wire runtime PM hooks 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=20260514150957.3501924-3-beata.michalska@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=lossin@kernel.org \
--cc=ojeda@kernel.org \
--cc=rafael@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
/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