* [PATCH v7] i2c: xiic: restore non-managed runtime PM to fix clk WARN flood
@ 2026-08-22 1:12 Abdurrahman Hussain
2026-09-10 3:51 ` Abdurrahman Hussain
0 siblings, 1 reply; 3+ messages in thread
From: Abdurrahman Hussain @ 2026-08-22 1:12 UTC (permalink / raw)
To: Michal Simek, Andi Shyti, Andy Shevchenko
Cc: linux-arm-kernel, linux-i2c, linux-kernel, Abdurrahman Hussain
The devres conversion replaced manual pm_runtime_enable()/disable() with
devm_pm_runtime_set_active_enabled() and dropped the remove-time runtime
PM teardown. The managed release tears runtime PM down in the wrong
order: it calls pm_runtime_dont_use_autosuspend() before
pm_runtime_disable(), i.e. while runtime PM is still enabled, and devres
is LIFO so the devm_clk_get_enabled() release runs afterwards.
At remove(), pm_runtime_put_sync() leaves the device active with the
autosuspend timer armed. Clearing use_autosuspend then makes rpm_idle()
suspend immediately, and xiic_i2c_runtime_suspend() clk_disable()s the
clock. The later devm_clk_get_enabled() release clk_disable_unprepare()s
the already-disabled clock, so clk_core_disable() WARNs ("clkN already
disabled") on every teardown.
Drop the managed helper and restore the non-managed runtime PM setup and
teardown, so runtime PM is enabled once in probe and disabled once in
remove and the clock enable count stays balanced.
Order the remove teardown so runtime PM is disabled before the usage
count is dropped: pm_runtime_disable() followed by pm_runtime_put_noidle()
instead of pm_runtime_put_sync(). Dropping the count first with autosuspend
still enabled arms the autosuspend timer, and a preemption before
pm_runtime_disable() lets it expire, suspend the device and clk_disable()
the clock, which the devm release then disables again - the same WARN.
Restore the non-managed IRQ request as well. The probe error paths now
unwind runtime PM by hand via goto, and a devm-registered handler is only
freed later during devres unwind, so it would stay live across the manual
teardown (and across any future failing step added after it). Request the
IRQ with request_threaded_irq() and free it explicitly in the probe error
path and in remove. The probe error path also clears use_autosuspend, to
match the teardown in remove().
Fixes: 50c63491ff26 ("i2c: xiic: switch to devres managed APIs")
Signed-off-by: Abdurrahman Hussain <abdurrahman@nexthop.ai>
---
Changes in v7:
- Add the missing kernel-doc entry for the new @irq member of struct
xiic_i2c (the non-managed IRQ request added in v4 introduced the field
but not its doc), fixing a "struct member 'irq' not described" W=1
kernel-doc warning. No functional change.
- Link to v6: https://patch.msgid.link/20260820-i2c-xiic-restore-runtime-pm-teardown-v6-1-5db5c3703ea0@nexthop.ai
Changes in v6:
- probe: check the pm_runtime_set_active() return value and unwind on
failure (undo pm_runtime_use_autosuspend()) instead of ignoring it.
On failure runtime PM would stay suspended while the clock is left
enabled, and remove()'s pm_runtime_get_sync() would then resume, enable
the clock a second time and leak the enable across the manual teardown
(Sashiko).
- Link to v5: https://patch.msgid.link/20260820-i2c-xiic-restore-runtime-pm-teardown-v5-1-ca5db9605508@nexthop.ai
Changes in v5:
- remove(): disable runtime PM before dropping the usage count
(pm_runtime_disable() + pm_runtime_put_noidle() instead of
pm_runtime_put_sync()), so the armed autosuspend timer can no longer
race pm_runtime_disable() and re-trigger the clk double-disable.
- probe error path: also call pm_runtime_dont_use_autosuspend() so it
mirrors the teardown in remove().
- Link to v4: https://patch.msgid.link/20260819-i2c-xiic-restore-runtime-pm-teardown-v4-1-6999eb434d1c@nexthop.ai
Changes in v4:
- Request the IRQ non-managed (request_threaded_irq/free_irq) and free it
in the probe error path and in remove(), instead of a devm handler that
would only be released during devres unwind and so stay live across the
manual runtime PM teardown in the goto error paths (Andy).
- Link to v3: https://patch.msgid.link/20260818-i2c-xiic-restore-runtime-pm-teardown-v3-1-5fd315b078e1@nexthop.ai
Changes in v3:
- Drop the managed devm_pm_runtime_set_active_enabled() helper entirely
and restore the non-managed runtime PM setup (pm_runtime_set_active +
pm_runtime_enable, with probe error unwinding) and teardown
(pm_runtime_disable + set_suspended + dont_use_autosuspend), so the
disable depth stays balanced rather than being disabled twice (Andi).
- Link to v2: https://patch.msgid.link/20260814-i2c-xiic-restore-runtime-pm-teardown-v2-1-7ae5d0c30ff2@nexthop.ai
Changes in v2:
- Move the Signed-off-by into the commit message proper (Andy).
- Link to v1: https://patch.msgid.link/20260813-i2c-xiic-restore-runtime-pm-teardown-v1-1-0e7dfb206790@nexthop.ai
To: Michal Simek <michal.simek@amd.com>
To: Andi Shyti <andi.shyti@kernel.org>
To: Abdurrahman Hussain <abdurrahman@nexthop.ai>
To: Andy Shevchenko <andriy.shevchenko@intel.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-i2c@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/i2c/busses/i2c-xiic.c | 49 +++++++++++++++++++++++++++++++++++--------
1 file changed, 40 insertions(+), 9 deletions(-)
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
index 3e7735e1dae0..92cefc7e221b 100644
--- a/drivers/i2c/busses/i2c-xiic.c
+++ b/drivers/i2c/busses/i2c-xiic.c
@@ -67,6 +67,7 @@ enum i2c_scl_freq {
* @rx_pos: Position within current RX message
* @endianness: big/little-endian byte order
* @clk: Pointer to AXI4-lite input clock
+ * @irq: Interrupt number
* @state: See STATE_
* @singlemaster: Indicates bus is single master
* @dynamic: Mode of controller
@@ -92,6 +93,7 @@ struct xiic_i2c {
int rx_pos;
enum xiic_endian endianness;
struct clk *clk;
+ int irq;
enum xilinx_i2c_state state;
bool singlemaster;
bool dynamic;
@@ -1475,9 +1477,17 @@ static int xiic_i2c_probe(struct platform_device *pdev)
pm_runtime_set_autosuspend_delay(dev, XIIC_PM_TIMEOUT);
pm_runtime_use_autosuspend(dev);
- ret = devm_pm_runtime_set_active_enabled(dev);
- if (ret)
+ /*
+ * Enable runtime PM by hand: devm_pm_runtime_set_active_enabled()
+ * tears down in an order that races the devm-enabled clock release and
+ * makes clk_core_disable() WARN (see xiic_i2c_remove()).
+ */
+ ret = pm_runtime_set_active(dev);
+ if (ret) {
+ pm_runtime_dont_use_autosuspend(dev);
return ret;
+ }
+ pm_runtime_enable(dev);
/* SCL frequency configuration */
i2c->input_clk = clk_get_rate(i2c->clk);
@@ -1486,10 +1496,15 @@ static int xiic_i2c_probe(struct platform_device *pdev)
if (ret || i2c->i2c_clk > I2C_MAX_FAST_MODE_PLUS_FREQ)
i2c->i2c_clk = 0;
- ret = devm_request_threaded_irq(dev, irq, NULL, xiic_process,
- IRQF_ONESHOT, pdev->name, i2c);
+ /*
+ * Request the IRQ non-managed: later probe steps unwind manually via
+ * goto, so a devm handler could still be live after that teardown runs.
+ */
+ i2c->irq = irq;
+ ret = request_threaded_irq(irq, NULL, xiic_process, IRQF_ONESHOT,
+ pdev->name, i2c);
if (ret)
- return ret;
+ goto err_pm_disable;
i2c->singlemaster = device_property_read_bool(dev, "single-master");
@@ -1506,14 +1521,16 @@ static int xiic_i2c_probe(struct platform_device *pdev)
i2c->endianness = BIG;
ret = xiic_reinit(i2c);
- if (ret)
- return dev_err_probe(dev, ret, "Cannot xiic_reinit\n");
+ if (ret) {
+ dev_err_probe(dev, ret, "Cannot xiic_reinit\n");
+ goto err_free_irq;
+ }
/* add i2c adapter to i2c tree */
ret = i2c_add_numbered_adapter(&i2c->adap);
if (ret) {
xiic_deinit(i2c);
- return ret;
+ goto err_free_irq;
}
if (pdata) {
@@ -1526,6 +1543,15 @@ static int xiic_i2c_probe(struct platform_device *pdev)
res, irq, i2c->i2c_clk);
return 0;
+
+err_free_irq:
+ free_irq(irq, i2c);
+err_pm_disable:
+ pm_runtime_disable(dev);
+ pm_runtime_set_suspended(dev);
+ pm_runtime_dont_use_autosuspend(dev);
+
+ return ret;
}
static void xiic_i2c_remove(struct platform_device *pdev)
@@ -1537,6 +1563,8 @@ static void xiic_i2c_remove(struct platform_device *pdev)
/* remove adapter & data */
i2c_del_adapter(&i2c->adap);
+ free_irq(i2c->irq, i2c);
+
ret = pm_runtime_get_sync(dev);
if (ret < 0)
dev_warn(dev, "Failed to activate device for removal (%pe)\n",
@@ -1544,7 +1572,10 @@ static void xiic_i2c_remove(struct platform_device *pdev)
else
xiic_deinit(i2c);
- pm_runtime_put_sync(dev);
+ pm_runtime_disable(dev);
+ pm_runtime_put_noidle(dev);
+ pm_runtime_set_suspended(dev);
+ pm_runtime_dont_use_autosuspend(dev);
}
static const struct dev_pm_ops xiic_dev_pm_ops = {
---
base-commit: d58772d8520c7ef247c4b95c9bd76d3a25da9ff5
change-id: 20260813-i2c-xiic-restore-runtime-pm-teardown-dd0ab1db2c02
Best regards,
--
Abdurrahman Hussain <abdurrahman@nexthop.ai>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v7] i2c: xiic: restore non-managed runtime PM to fix clk WARN flood
2026-08-22 1:12 [PATCH v7] i2c: xiic: restore non-managed runtime PM to fix clk WARN flood Abdurrahman Hussain
@ 2026-09-10 3:51 ` Abdurrahman Hussain
2026-09-10 6:40 ` Andy Shevchenko
0 siblings, 1 reply; 3+ messages in thread
From: Abdurrahman Hussain @ 2026-09-10 3:51 UTC (permalink / raw)
To: Abdurrahman Hussain, Michal Simek, Andi Shyti, Andy Shevchenko
Cc: linux-arm-kernel, linux-i2c, linux-kernel
On Fri Aug 21, 2026 at 6:12 PM PDT, Abdurrahman Hussain wrote:
> The devres conversion replaced manual pm_runtime_enable()/disable() with
> devm_pm_runtime_set_active_enabled() and dropped the remove-time runtime
> PM teardown. The managed release tears runtime PM down in the wrong
> order: it calls pm_runtime_dont_use_autosuspend() before
> pm_runtime_disable(), i.e. while runtime PM is still enabled, and devres
> is LIFO so the devm_clk_get_enabled() release runs afterwards.
>
> At remove(), pm_runtime_put_sync() leaves the device active with the
> autosuspend timer armed. Clearing use_autosuspend then makes rpm_idle()
> suspend immediately, and xiic_i2c_runtime_suspend() clk_disable()s the
> clock. The later devm_clk_get_enabled() release clk_disable_unprepare()s
> the already-disabled clock, so clk_core_disable() WARNs ("clkN already
> disabled") on every teardown.
>
> Drop the managed helper and restore the non-managed runtime PM setup and
> teardown, so runtime PM is enabled once in probe and disabled once in
> remove and the clock enable count stays balanced.
>
> Order the remove teardown so runtime PM is disabled before the usage
> count is dropped: pm_runtime_disable() followed by pm_runtime_put_noidle()
> instead of pm_runtime_put_sync(). Dropping the count first with autosuspend
> still enabled arms the autosuspend timer, and a preemption before
> pm_runtime_disable() lets it expire, suspend the device and clk_disable()
> the clock, which the devm release then disables again - the same WARN.
>
> Restore the non-managed IRQ request as well. The probe error paths now
> unwind runtime PM by hand via goto, and a devm-registered handler is only
> freed later during devres unwind, so it would stay live across the manual
> teardown (and across any future failing step added after it). Request the
> IRQ with request_threaded_irq() and free it explicitly in the probe error
> path and in remove. The probe error path also clears use_autosuspend, to
> match the teardown in remove().
>
> Fixes: 50c63491ff26 ("i2c: xiic: switch to devres managed APIs")
> Signed-off-by: Abdurrahman Hussain <abdurrahman@nexthop.ai>
> ---
> Changes in v7:
> - Add the missing kernel-doc entry for the new @irq member of struct
> xiic_i2c (the non-managed IRQ request added in v4 introduced the field
> but not its doc), fixing a "struct member 'irq' not described" W=1
> kernel-doc warning. No functional change.
> - Link to v6: https://patch.msgid.link/20260820-i2c-xiic-restore-runtime-pm-teardown-v6-1-5db5c3703ea0@nexthop.ai
>
> Changes in v6:
> - probe: check the pm_runtime_set_active() return value and unwind on
> failure (undo pm_runtime_use_autosuspend()) instead of ignoring it.
> On failure runtime PM would stay suspended while the clock is left
> enabled, and remove()'s pm_runtime_get_sync() would then resume, enable
> the clock a second time and leak the enable across the manual teardown
> (Sashiko).
> - Link to v5: https://patch.msgid.link/20260820-i2c-xiic-restore-runtime-pm-teardown-v5-1-ca5db9605508@nexthop.ai
>
> Changes in v5:
> - remove(): disable runtime PM before dropping the usage count
> (pm_runtime_disable() + pm_runtime_put_noidle() instead of
> pm_runtime_put_sync()), so the armed autosuspend timer can no longer
> race pm_runtime_disable() and re-trigger the clk double-disable.
> - probe error path: also call pm_runtime_dont_use_autosuspend() so it
> mirrors the teardown in remove().
> - Link to v4: https://patch.msgid.link/20260819-i2c-xiic-restore-runtime-pm-teardown-v4-1-6999eb434d1c@nexthop.ai
>
> Changes in v4:
> - Request the IRQ non-managed (request_threaded_irq/free_irq) and free it
> in the probe error path and in remove(), instead of a devm handler that
> would only be released during devres unwind and so stay live across the
> manual runtime PM teardown in the goto error paths (Andy).
> - Link to v3: https://patch.msgid.link/20260818-i2c-xiic-restore-runtime-pm-teardown-v3-1-5fd315b078e1@nexthop.ai
>
> Changes in v3:
> - Drop the managed devm_pm_runtime_set_active_enabled() helper entirely
> and restore the non-managed runtime PM setup (pm_runtime_set_active +
> pm_runtime_enable, with probe error unwinding) and teardown
> (pm_runtime_disable + set_suspended + dont_use_autosuspend), so the
> disable depth stays balanced rather than being disabled twice (Andi).
> - Link to v2: https://patch.msgid.link/20260814-i2c-xiic-restore-runtime-pm-teardown-v2-1-7ae5d0c30ff2@nexthop.ai
>
> Changes in v2:
> - Move the Signed-off-by into the commit message proper (Andy).
> - Link to v1: https://patch.msgid.link/20260813-i2c-xiic-restore-runtime-pm-teardown-v1-1-0e7dfb206790@nexthop.ai
>
> To: Michal Simek <michal.simek@amd.com>
> To: Andi Shyti <andi.shyti@kernel.org>
> To: Abdurrahman Hussain <abdurrahman@nexthop.ai>
> To: Andy Shevchenko <andriy.shevchenko@intel.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-i2c@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/i2c/busses/i2c-xiic.c | 49 +++++++++++++++++++++++++++++++++++--------
> 1 file changed, 40 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
> index 3e7735e1dae0..92cefc7e221b 100644
> --- a/drivers/i2c/busses/i2c-xiic.c
> +++ b/drivers/i2c/busses/i2c-xiic.c
> @@ -67,6 +67,7 @@ enum i2c_scl_freq {
> * @rx_pos: Position within current RX message
> * @endianness: big/little-endian byte order
> * @clk: Pointer to AXI4-lite input clock
> + * @irq: Interrupt number
> * @state: See STATE_
> * @singlemaster: Indicates bus is single master
> * @dynamic: Mode of controller
> @@ -92,6 +93,7 @@ struct xiic_i2c {
> int rx_pos;
> enum xiic_endian endianness;
> struct clk *clk;
> + int irq;
> enum xilinx_i2c_state state;
> bool singlemaster;
> bool dynamic;
> @@ -1475,9 +1477,17 @@ static int xiic_i2c_probe(struct platform_device *pdev)
>
> pm_runtime_set_autosuspend_delay(dev, XIIC_PM_TIMEOUT);
> pm_runtime_use_autosuspend(dev);
> - ret = devm_pm_runtime_set_active_enabled(dev);
> - if (ret)
> + /*
> + * Enable runtime PM by hand: devm_pm_runtime_set_active_enabled()
> + * tears down in an order that races the devm-enabled clock release and
> + * makes clk_core_disable() WARN (see xiic_i2c_remove()).
> + */
> + ret = pm_runtime_set_active(dev);
> + if (ret) {
> + pm_runtime_dont_use_autosuspend(dev);
> return ret;
> + }
> + pm_runtime_enable(dev);
>
> /* SCL frequency configuration */
> i2c->input_clk = clk_get_rate(i2c->clk);
> @@ -1486,10 +1496,15 @@ static int xiic_i2c_probe(struct platform_device *pdev)
> if (ret || i2c->i2c_clk > I2C_MAX_FAST_MODE_PLUS_FREQ)
> i2c->i2c_clk = 0;
>
> - ret = devm_request_threaded_irq(dev, irq, NULL, xiic_process,
> - IRQF_ONESHOT, pdev->name, i2c);
> + /*
> + * Request the IRQ non-managed: later probe steps unwind manually via
> + * goto, so a devm handler could still be live after that teardown runs.
> + */
> + i2c->irq = irq;
> + ret = request_threaded_irq(irq, NULL, xiic_process, IRQF_ONESHOT,
> + pdev->name, i2c);
> if (ret)
> - return ret;
> + goto err_pm_disable;
>
> i2c->singlemaster = device_property_read_bool(dev, "single-master");
>
> @@ -1506,14 +1521,16 @@ static int xiic_i2c_probe(struct platform_device *pdev)
> i2c->endianness = BIG;
>
> ret = xiic_reinit(i2c);
> - if (ret)
> - return dev_err_probe(dev, ret, "Cannot xiic_reinit\n");
> + if (ret) {
> + dev_err_probe(dev, ret, "Cannot xiic_reinit\n");
> + goto err_free_irq;
> + }
>
> /* add i2c adapter to i2c tree */
> ret = i2c_add_numbered_adapter(&i2c->adap);
> if (ret) {
> xiic_deinit(i2c);
> - return ret;
> + goto err_free_irq;
> }
>
> if (pdata) {
> @@ -1526,6 +1543,15 @@ static int xiic_i2c_probe(struct platform_device *pdev)
> res, irq, i2c->i2c_clk);
>
> return 0;
> +
> +err_free_irq:
> + free_irq(irq, i2c);
> +err_pm_disable:
> + pm_runtime_disable(dev);
> + pm_runtime_set_suspended(dev);
> + pm_runtime_dont_use_autosuspend(dev);
> +
> + return ret;
> }
>
> static void xiic_i2c_remove(struct platform_device *pdev)
> @@ -1537,6 +1563,8 @@ static void xiic_i2c_remove(struct platform_device *pdev)
> /* remove adapter & data */
> i2c_del_adapter(&i2c->adap);
>
> + free_irq(i2c->irq, i2c);
> +
> ret = pm_runtime_get_sync(dev);
> if (ret < 0)
> dev_warn(dev, "Failed to activate device for removal (%pe)\n",
> @@ -1544,7 +1572,10 @@ static void xiic_i2c_remove(struct platform_device *pdev)
> else
> xiic_deinit(i2c);
>
> - pm_runtime_put_sync(dev);
> + pm_runtime_disable(dev);
> + pm_runtime_put_noidle(dev);
> + pm_runtime_set_suspended(dev);
> + pm_runtime_dont_use_autosuspend(dev);
> }
>
> static const struct dev_pm_ops xiic_dev_pm_ops = {
>
> ---
> base-commit: d58772d8520c7ef247c4b95c9bd76d3a25da9ff5
> change-id: 20260813-i2c-xiic-restore-runtime-pm-teardown-dd0ab1db2c02
>
> Best regards,
> --
> Abdurrahman Hussain <abdurrahman@nexthop.ai>
Hi Andi, Andy,
Gentle ping on this one. It has been quiet since v7 went out on Aug 21.
Andy, v4 onwards switched to request_threaded_irq()/free_irq() with the
explicit free in the probe error path and in remove(), per your comment on
v3. Does that address your concern, or is there anything else you would
like changed?
Andi, this is a regression fix for 50c63491ff26 (the devres conversion),
and the WARN fires on every unbind/rmmod of the driver, so it would be
good to get it into 7.2 or early 7.3 fixes if the patch looks OK to you.
Happy to respin if anything is still open.
Thanks,
Abdurrahman
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v7] i2c: xiic: restore non-managed runtime PM to fix clk WARN flood
2026-09-10 3:51 ` Abdurrahman Hussain
@ 2026-09-10 6:40 ` Andy Shevchenko
0 siblings, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2026-09-10 6:40 UTC (permalink / raw)
To: Abdurrahman Hussain
Cc: Michal Simek, Andi Shyti, linux-arm-kernel, linux-i2c,
linux-kernel
On Wed, Sep 09, 2026 at 08:51:33PM -0700, Abdurrahman Hussain wrote:
> On Fri Aug 21, 2026 at 6:12 PM PDT, Abdurrahman Hussain wrote:
> Gentle ping on this one. It has been quiet since v7 went out on Aug 21.
>
> Andy, v4 onwards switched to request_threaded_irq()/free_irq() with the
> explicit free in the probe error path and in remove(), per your comment on
> v3. Does that address your concern, or is there anything else you would
> like changed?
Seems okay to me.
> Andi, this is a regression fix for 50c63491ff26 (the devres conversion),
> and the WARN fires on every unbind/rmmod of the driver, so it would be
> good to get it into 7.2 or early 7.3 fixes if the patch looks OK to you.
v7.2 is already released, so v7.3-rcX is the best you can get.
> Happy to respin if anything is still open.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-10 6:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-22 1:12 [PATCH v7] i2c: xiic: restore non-managed runtime PM to fix clk WARN flood Abdurrahman Hussain
2026-09-10 3:51 ` Abdurrahman Hussain
2026-09-10 6:40 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox