* [PATCH] i3c: dw: Add shutdown support to dw_i3c_master driver
@ 2025-07-28 10:44 Manikanta Guntupalli
2025-07-29 14:14 ` Frank Li
0 siblings, 1 reply; 2+ messages in thread
From: Manikanta Guntupalli @ 2025-07-28 10:44 UTC (permalink / raw)
To: git, alexandre.belloni, Frank.Li, wsa+renesas, quic_msavaliy,
Shyam-sundar.S-k, xiaopei01, billy_tsai, linux-i3c, linux-kernel
Cc: michal.simek, radhey.shyam.pandey, srinivas.goud,
shubhrajyoti.datta, manion05gk, Manikanta Guntupalli
Add shutdown handler to the Synopsys DesignWare I3C master driver,
ensuring the device is gracefully disabled during system shutdown.
The shutdown handler cancels any pending hot-join work and disables
interrupts.
Signed-off-by: Manikanta Guntupalli <manikanta.guntupalli@amd.com>
---
drivers/i3c/master/dw-i3c-master.c | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index ae1992665673..6769def5580a 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -1762,6 +1762,29 @@ static const struct dev_pm_ops dw_i3c_pm_ops = {
SET_RUNTIME_PM_OPS(dw_i3c_master_runtime_suspend, dw_i3c_master_runtime_resume, NULL)
};
+static void dw_i3c_shutdown(struct platform_device *pdev)
+{
+ struct dw_i3c_master *master = platform_get_drvdata(pdev);
+ int ret;
+
+ ret = pm_runtime_resume_and_get(master->dev);
+ if (ret < 0) {
+ dev_err(master->dev,
+ "<%s> cannot resume i3c bus master, err: %d\n",
+ __func__, ret);
+ return;
+ }
+
+ cancel_work_sync(&master->hj_work);
+
+ /* Disable interrupts */
+ writel((u32)~INTR_ALL, master->regs + INTR_STATUS_EN);
+ writel((u32)~INTR_ALL, master->regs + INTR_SIGNAL_EN);
+
+ pm_runtime_mark_last_busy(master->dev);
+ pm_runtime_put_autosuspend(master->dev);
+}
+
static const struct of_device_id dw_i3c_master_of_match[] = {
{ .compatible = "snps,dw-i3c-master-1.00a", },
{},
@@ -1777,6 +1800,7 @@ MODULE_DEVICE_TABLE(acpi, amd_i3c_device_match);
static struct platform_driver dw_i3c_driver = {
.probe = dw_i3c_probe,
.remove = dw_i3c_remove,
+ .shutdown = dw_i3c_shutdown,
.driver = {
.name = "dw-i3c-master",
.of_match_table = dw_i3c_master_of_match,
--
2.34.1
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] i3c: dw: Add shutdown support to dw_i3c_master driver
2025-07-28 10:44 [PATCH] i3c: dw: Add shutdown support to dw_i3c_master driver Manikanta Guntupalli
@ 2025-07-29 14:14 ` Frank Li
0 siblings, 0 replies; 2+ messages in thread
From: Frank Li @ 2025-07-29 14:14 UTC (permalink / raw)
To: Manikanta Guntupalli
Cc: git, alexandre.belloni, wsa+renesas, quic_msavaliy,
Shyam-sundar.S-k, xiaopei01, billy_tsai, linux-i3c, linux-kernel,
michal.simek, radhey.shyam.pandey, srinivas.goud,
shubhrajyoti.datta, manion05gk
On Mon, Jul 28, 2025 at 04:14:25PM +0530, Manikanta Guntupalli wrote:
> Add shutdown handler to the Synopsys DesignWare I3C master driver,
> ensuring the device is gracefully disabled during system shutdown.
>
> The shutdown handler cancels any pending hot-join work and disables
> interrupts.
>
> Signed-off-by: Manikanta Guntupalli <manikanta.guntupalli@amd.com>
> ---
> drivers/i3c/master/dw-i3c-master.c | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
> index ae1992665673..6769def5580a 100644
> --- a/drivers/i3c/master/dw-i3c-master.c
> +++ b/drivers/i3c/master/dw-i3c-master.c
> @@ -1762,6 +1762,29 @@ static const struct dev_pm_ops dw_i3c_pm_ops = {
> SET_RUNTIME_PM_OPS(dw_i3c_master_runtime_suspend, dw_i3c_master_runtime_resume, NULL)
> };
>
> +static void dw_i3c_shutdown(struct platform_device *pdev)
> +{
> + struct dw_i3c_master *master = platform_get_drvdata(pdev);
> + int ret;
> +
> + ret = pm_runtime_resume_and_get(master->dev);
> + if (ret < 0) {
> + dev_err(master->dev,
> + "<%s> cannot resume i3c bus master, err: %d\n",
> + __func__, ret);
> + return;
> + }
> +
> + cancel_work_sync(&master->hj_work);
> +
> + /* Disable interrupts */
> + writel((u32)~INTR_ALL, master->regs + INTR_STATUS_EN);
> + writel((u32)~INTR_ALL, master->regs + INTR_SIGNAL_EN);
> +
> + pm_runtime_mark_last_busy(master->dev);
Needn't call pm_runtime_mark_last_busy() now
See: https://lore.kernel.org/linux-pm/20250704075225.3212486-1-sakari.ailus@linux.intel.com/
Frank
> + pm_runtime_put_autosuspend(master->dev);
> +}
> +
> static const struct of_device_id dw_i3c_master_of_match[] = {
> { .compatible = "snps,dw-i3c-master-1.00a", },
> {},
> @@ -1777,6 +1800,7 @@ MODULE_DEVICE_TABLE(acpi, amd_i3c_device_match);
> static struct platform_driver dw_i3c_driver = {
> .probe = dw_i3c_probe,
> .remove = dw_i3c_remove,
> + .shutdown = dw_i3c_shutdown,
> .driver = {
> .name = "dw-i3c-master",
> .of_match_table = dw_i3c_master_of_match,
> --
> 2.34.1
>
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-30 23:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-28 10:44 [PATCH] i3c: dw: Add shutdown support to dw_i3c_master driver Manikanta Guntupalli
2025-07-29 14:14 ` Frank Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).