drivers/spi/spi-stm32-ospi.c | 4 ++++ 1 file changed, 4 insertions(+)
If an error occurs after a successful stm32_ospi_dma_setup() call, some
dma_release_channel() calls are needed to release some resources, as
already done in the remove function.
Fixes: 79b8a705e26c ("spi: stm32: Add OSPI driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
Compile tested-only
---
drivers/spi/spi-stm32-ospi.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c
index 668022098b1e..9ec9823409cc 100644
--- a/drivers/spi/spi-stm32-ospi.c
+++ b/drivers/spi/spi-stm32-ospi.c
@@ -960,6 +960,10 @@ static int stm32_ospi_probe(struct platform_device *pdev)
err_pm_enable:
pm_runtime_force_suspend(ospi->dev);
mutex_destroy(&ospi->lock);
+ if (ospi->dma_chtx)
+ dma_release_channel(ospi->dma_chtx);
+ if (ospi->dma_chrx)
+ dma_release_channel(ospi->dma_chrx);
return ret;
}
--
2.49.0
On Fri, 18 Apr 2025 13:27:53 +0200, Christophe JAILLET wrote:
> If an error occurs after a successful stm32_ospi_dma_setup() call, some
> dma_release_channel() calls are needed to release some resources, as
> already done in the remove function.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/1] spi: stm32-ospi: Fix an error handling path in stm32_ospi_probe()
commit: 460b14b0929fa9f658a7e159ef646ce456962ab0
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
On 4/18/25 13:27, Christophe JAILLET wrote:
> If an error occurs after a successful stm32_ospi_dma_setup() call, some
> dma_release_channel() calls are needed to release some resources, as
> already done in the remove function.
>
> Fixes: 79b8a705e26c ("spi: stm32: Add OSPI driver")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> ---
> Compile tested-only
> ---
> drivers/spi/spi-stm32-ospi.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c
> index 668022098b1e..9ec9823409cc 100644
> --- a/drivers/spi/spi-stm32-ospi.c
> +++ b/drivers/spi/spi-stm32-ospi.c
> @@ -960,6 +960,10 @@ static int stm32_ospi_probe(struct platform_device *pdev)
> err_pm_enable:
> pm_runtime_force_suspend(ospi->dev);
> mutex_destroy(&ospi->lock);
> + if (ospi->dma_chtx)
> + dma_release_channel(ospi->dma_chtx);
> + if (ospi->dma_chrx)
> + dma_release_channel(ospi->dma_chrx);
>
> return ret;
> }
Hi Christophe
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Thanks
On 4/18/2025 4:57 PM, Christophe JAILLET wrote: [...] > diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c > index 668022098b1e..9ec9823409cc 100644 > --- a/drivers/spi/spi-stm32-ospi.c > +++ b/drivers/spi/spi-stm32-ospi.c > @@ -960,6 +960,10 @@ static int stm32_ospi_probe(struct platform_device *pdev) > err_pm_enable: > pm_runtime_force_suspend(ospi->dev); > mutex_destroy(&ospi->lock); > + if (ospi->dma_chtx) > + dma_release_channel(ospi->dma_chtx); why can't you move to devm_dma_request_chan ? No need to cleanup. > + if (ospi->dma_chrx) > + dma_release_channel(ospi->dma_chrx); > > return ret; > }
Le 18/04/2025 à 14:09, Mukesh Kumar Savaliya a écrit : > > > On 4/18/2025 4:57 PM, Christophe JAILLET wrote: > [...] >> diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c >> index 668022098b1e..9ec9823409cc 100644 >> --- a/drivers/spi/spi-stm32-ospi.c >> +++ b/drivers/spi/spi-stm32-ospi.c >> @@ -960,6 +960,10 @@ static int stm32_ospi_probe(struct >> platform_device *pdev) >> err_pm_enable: >> pm_runtime_force_suspend(ospi->dev); >> mutex_destroy(&ospi->lock); >> + if (ospi->dma_chtx) >> + dma_release_channel(ospi->dma_chtx); > why can't you move to devm_dma_request_chan ? No need to cleanup. Unless I miss something obvious, this function does not exist. CJ >> + if (ospi->dma_chrx) >> + dma_release_channel(ospi->dma_chrx); >> return ret; >> } > > >
On 4/18/2025 5:50 PM, Christophe JAILLET wrote: > Le 18/04/2025 à 14:09, Mukesh Kumar Savaliya a écrit : >> >> >> On 4/18/2025 4:57 PM, Christophe JAILLET wrote: >> [...] >>> diff --git a/drivers/spi/spi-stm32-ospi.c b/drivers/spi/spi-stm32-ospi.c >>> index 668022098b1e..9ec9823409cc 100644 >>> --- a/drivers/spi/spi-stm32-ospi.c >>> +++ b/drivers/spi/spi-stm32-ospi.c >>> @@ -960,6 +960,10 @@ static int stm32_ospi_probe(struct >>> platform_device *pdev) >>> err_pm_enable: >>> pm_runtime_force_suspend(ospi->dev); >>> mutex_destroy(&ospi->lock); >>> + if (ospi->dma_chtx) >>> + dma_release_channel(ospi->dma_chtx); >> why can't you move to devm_dma_request_chan ? No need to cleanup. > > Unless I miss something obvious, this function does not exist. > > CJ > Yes, You are right. Seems the patch is yet not merged. https://lore.kernel.org/all/20250115160244.1102881-1-csokas.bence@prolan.hu/T/ dma: Add devm_dma_request_chan() Can ignore it for now. >>> + if (ospi->dma_chrx) >>> + dma_release_channel(ospi->dma_chrx); >>> return ret; >>> } >> >> >> >
© 2016 - 2025 Red Hat, Inc.