* [PATCH] spi: meson-spifc: fix runtime PM leak on remove
@ 2026-06-09 5:26 Ruoyu Wang
2026-06-09 5:38 ` sashiko-bot
2026-06-09 23:06 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Ruoyu Wang @ 2026-06-09 5:26 UTC (permalink / raw)
To: Mark Brown, linux-spi
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Beniamino Galvani, linux-arm-kernel, linux-amlogic, linux-kernel,
Ruoyu Wang
pm_runtime_get_sync() increments the runtime PM usage counter even when it
returns an error. meson_spifc_remove() uses it to resume the controller
before disabling runtime PM, but never drops the usage counter again.
Balance the get with pm_runtime_put_noidle() after disabling runtime PM,
matching the teardown pattern used by other SPI controller drivers.
Found by static analysis. I do not have hardware to test this.
Fixes: c3e4bc5434d2 ("spi: meson: Add support for Amlogic Meson SPIFC")
Signed-off-by: Ruoyu Wang <ruoyuw560@gmail.com>
---
drivers/spi/spi-meson-spifc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/spi/spi-meson-spifc.c b/drivers/spi/spi-meson-spifc.c
index b818950a8cb7d..e2d19c3873f71 100644
--- a/drivers/spi/spi-meson-spifc.c
+++ b/drivers/spi/spi-meson-spifc.c
@@ -351,6 +351,7 @@ static void meson_spifc_remove(struct platform_device *pdev)
{
pm_runtime_get_sync(&pdev->dev);
pm_runtime_disable(&pdev->dev);
+ pm_runtime_put_noidle(&pdev->dev);
}
#ifdef CONFIG_PM_SLEEP
--
2.51.0
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: meson-spifc: fix runtime PM leak on remove
2026-06-09 5:26 [PATCH] spi: meson-spifc: fix runtime PM leak on remove Ruoyu Wang
@ 2026-06-09 5:38 ` sashiko-bot
2026-06-09 23:06 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-06-09 5:38 UTC (permalink / raw)
To: Ruoyu Wang; +Cc: neil.armstrong, linux-amlogic
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
Pre-existing issues:
- [High] Kernel stack memory is leaked to hardware registers when copying a partial 32-bit word.
- [High] During system resume, `meson_spifc_resume()` accesses SPI registers while the controller clock is disabled if the device was runtime suspended, triggering a system crash.
- [High] Direct 32-bit casts on potentially unaligned SPI buffers will cause unaligned memory access faults.
--
commit 65d4bcf61796efe6db17033eb44065b91fb07665
Author: Ruoyu Wang <ruoyuw560@gmail.com>
spi: meson-spifc: fix runtime PM leak on remove
This commit balances a pm_runtime_get_sync() call with pm_runtime_put_noidle()
in the remove function to fix a runtime PM usage counter leak.
> diff --git a/drivers/spi/spi-meson-spifc.c b/drivers/spi/spi-meson-spifc.c
> index d700fa3152231..e36aa94bbdae3 100644
> --- a/drivers/spi/spi-meson-spifc.c
> +++ b/drivers/spi/spi-meson-spifc.c
> @@ -345,6 +345,7 @@ static void meson_spifc_remove(struct platform_device *pdev)
> {
> pm_runtime_get_sync(&pdev->dev);
> pm_runtime_disable(&pdev->dev);
> + pm_runtime_put_noidle(&pdev->dev);
> }
[Severity: High]
This isn't a bug introduced by this patch, but could this leak uninitialized
kernel stack memory to hardware registers?
In meson_spifc_fill_buffer(), when the remaining length is less than 4 bytes:
drivers/spi/spi-meson-spifc.c:meson_spifc_fill_buffer() {
...
while (i < len) {
if (len - i >= 4)
data = *(u32 *)buf;
else
memcpy(&data, buf, len - i);
regmap_write(spifc->regmap, REG_C0 + i, data);
...
}
If len - i < 4, memcpy() copies only 1 to 3 bytes into the local 32-bit
variable data. The remaining bytes in data are left uninitialized.
The entire 32-bit variable is then written to the REG_C0 register,
potentially leaking kernel stack memory.
[Severity: High]
This isn't a bug introduced by this patch, but can this cause a synchronous
external abort during system resume?
In meson_spifc_resume(), the clock is not enabled if the device was runtime
suspended:
drivers/spi/spi-meson-spifc.c:meson_spifc_resume() {
...
if (!pm_runtime_suspended(dev)) {
ret = clk_prepare_enable(spifc->clk);
if (ret)
return ret;
}
meson_spifc_hw_init(spifc);
...
}
meson_spifc_hw_init() unconditionally writes to hardware registers via
regmap_update_bits().
If the device was runtime suspended, the clock remains disabled, and
accessing unclocked peripheral registers can cause a system crash.
[Severity: High]
This isn't a bug introduced by this patch, but will this cause unaligned
memory access faults?
Both meson_spifc_drain_buffer() and meson_spifc_fill_buffer() cast the
generic u8 *buf pointer directly to u32 * to perform 4-byte operations:
drivers/spi/spi-meson-spifc.c:meson_spifc_drain_buffer() {
...
if (len - i >= 4) {
*((u32 *)buf) = data;
buf += 4;
} else {
...
}
And similarly in meson_spifc_fill_buffer():
drivers/spi/spi-meson-spifc.c:meson_spifc_fill_buffer() {
...
while (i < len) {
if (len - i >= 4)
data = *(u32 *)buf;
else
...
}
The SPI subsystem does not guarantee that tx_buf or rx_buf are 4-byte
aligned. Casting and dereferencing them as 32-bit pointers constitutes
undefined behavior in C and can lead to alignment faults depending on
the architecture.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260609052647.5-1-ruoyuw560@gmail.com?part=1
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: meson-spifc: fix runtime PM leak on remove
2026-06-09 5:26 [PATCH] spi: meson-spifc: fix runtime PM leak on remove Ruoyu Wang
2026-06-09 5:38 ` sashiko-bot
@ 2026-06-09 23:06 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2026-06-09 23:06 UTC (permalink / raw)
To: linux-spi, Ruoyu Wang
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Beniamino Galvani, linux-arm-kernel, linux-amlogic, linux-kernel
On Tue, 09 Jun 2026 13:26:47 +0800, Ruoyu Wang wrote:
> spi: meson-spifc: fix runtime PM leak on remove
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-7.2
Thanks!
[1/1] spi: meson-spifc: fix runtime PM leak on remove
https://git.kernel.org/broonie/spi/c/606c0826bd90
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-10 10:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-09 5:26 [PATCH] spi: meson-spifc: fix runtime PM leak on remove Ruoyu Wang
2026-06-09 5:38 ` sashiko-bot
2026-06-09 23:06 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox