From: Chaithanya Lagisetty <nagachaithanya9911@gmail.com>
To: frank.li@oss.nxp.com
Cc: Frank.Li@kernel.org, vkoul@kernel.org, orsonzhai@gmail.com,
baolin.wang@linux.alibaba.com, zhang.lyra@gmail.com,
dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org,
Chaithanya Lagisetty <nagachaithanya9911@gmail.com>
Subject: [PATCH v3] dmaengine: sprd: use clk_bulk API to fix clock imbalance
Date: Wed, 19 Aug 2026 05:35:18 +0000 [thread overview]
Message-ID: <20260819053518.2825514-1-nagachaithanya9911@gmail.com> (raw)
In-Reply-To: <aoMfW_TVbzkuGZeU@SMW015318>
sprd_dma_enable() enabled sdev->clk and then the optional ashb_clk. If
enabling ashb_clk failed, sdev->clk was left enabled: both callers
(probe and resume) treat a non-zero return as "nothing was enabled" and
bail out, leaking sdev->clk.
Convert the driver to the clk_bulk API. clk_bulk_prepare_enable()
enables all clocks and unwinds them on failure, and
clk_bulk_disable_unprepare() disables them, which fixes the imbalance
and simplifies the enable/disable paths. Both clocks are fetched with
devm_clk_bulk_get_optional(); the optional ashb_eb clock simply becomes
a NULL entry that the bulk helpers treat as a no-op, while the mandatory
enable clock is still checked explicitly.
Fixes: 9b3b8171f7f4 ("dmaengine: sprd: Add Spreadtrum DMA driver")
Signed-off-by: Chaithanya Lagisetty <nagachaithanya9911@gmail.com>
---
Changes since v2:
- Fetch both clocks with a single devm_clk_bulk_get_optional() call
instead of separate devm_clk_get()/devm_clk_get_optional() calls, and
keep an explicit check for the mandatory "enable" clock (Frank Li).
Changes since v1:
- Convert the enable/disable paths to the clk_bulk API instead of
manually disabling sdev->clk on the ashb_clk failure path (Frank Li).
v2: https://lore.kernel.org/dmaengine/20260816055005.2667930-1-nagachaithanya9911@gmail.com/
v1: https://lore.kernel.org/dmaengine/20260813105354.2577040-1-nagachaithanya9911@gmail.com/
drivers/dma/sprd-dma.c | 45 ++++++++++++------------------------------
1 file changed, 13 insertions(+), 32 deletions(-)
diff --git a/drivers/dma/sprd-dma.c b/drivers/dma/sprd-dma.c
index 087fea3af2e4..749cabd984eb 100644
--- a/drivers/dma/sprd-dma.c
+++ b/drivers/dma/sprd-dma.c
@@ -208,8 +208,7 @@ struct sprd_dma_chn {
struct sprd_dma_dev {
struct dma_device dma_dev;
void __iomem *glb_base;
- struct clk *clk;
- struct clk *ashb_clk;
+ struct clk_bulk_data clks[2];
int irq;
u32 total_chns;
struct sprd_dma_chn channels[] __counted_by(total_chns);
@@ -260,31 +259,12 @@ static void sprd_dma_chn_update(struct sprd_dma_chn *schan, u32 reg,
static int sprd_dma_enable(struct sprd_dma_dev *sdev)
{
- int ret;
-
- ret = clk_prepare_enable(sdev->clk);
- if (ret)
- return ret;
-
- /*
- * The ashb_clk is optional and only for AGCP DMA controller, so we
- * need add one condition to check if the ashb_clk need enable.
- */
- if (!IS_ERR(sdev->ashb_clk))
- ret = clk_prepare_enable(sdev->ashb_clk);
-
- return ret;
+ return clk_bulk_prepare_enable(ARRAY_SIZE(sdev->clks), sdev->clks);
}
static void sprd_dma_disable(struct sprd_dma_dev *sdev)
{
- clk_disable_unprepare(sdev->clk);
-
- /*
- * Need to check if we need disable the optional ashb_clk for AGCP DMA.
- */
- if (!IS_ERR(sdev->ashb_clk))
- clk_disable_unprepare(sdev->ashb_clk);
+ clk_bulk_disable_unprepare(ARRAY_SIZE(sdev->clks), sdev->clks);
}
static void sprd_dma_set_uid(struct sprd_dma_chn *schan)
@@ -1140,16 +1120,17 @@ static int sprd_dma_probe(struct platform_device *pdev)
if (!sdev)
return -ENOMEM;
- sdev->clk = devm_clk_get(&pdev->dev, "enable");
- if (IS_ERR(sdev->clk)) {
- dev_err(&pdev->dev, "get enable clock failed\n");
- return PTR_ERR(sdev->clk);
- }
+ /* The ashb_eb clock is optional and only present for AGCP DMA */
+ sdev->clks[0].id = "enable";
+ sdev->clks[1].id = "ashb_eb";
+ ret = devm_clk_bulk_get_optional(&pdev->dev, ARRAY_SIZE(sdev->clks),
+ sdev->clks);
+ if (ret)
+ return dev_err_probe(&pdev->dev, ret, "get clocks failed\n");
- /* ashb clock is optional for AGCP DMA */
- sdev->ashb_clk = devm_clk_get(&pdev->dev, "ashb_eb");
- if (IS_ERR(sdev->ashb_clk))
- dev_warn(&pdev->dev, "no optional ashb eb clock\n");
+ if (!sdev->clks[0].clk)
+ return dev_err_probe(&pdev->dev, -ENOENT,
+ "get enable clock failed\n");
/*
* We have three DMA controllers: AP DMA, AON DMA and AGCP DMA. For AGCP
--
2.43.0
next prev parent reply other threads:[~2026-08-19 5:35 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-13 10:53 [PATCH] dmaengine: sprd: fix clock imbalance when enabling ashb_clk fails Chaithanya Lagisetty
2026-08-13 11:06 ` sashiko-bot
2026-08-13 16:39 ` Frank Li
2026-08-16 5:50 ` [PATCH v2] dmaengine: sprd: use clk_bulk API to fix clock imbalance Chaithanya Lagisetty
2026-08-16 5:59 ` sashiko-bot
2026-08-17 14:48 ` Frank Li
2026-08-19 5:35 ` Chaithanya Lagisetty [this message]
2026-08-19 5:47 ` [PATCH v3] " sashiko-bot
2026-08-19 15:42 ` Frank Li
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=20260819053518.2825514-1-nagachaithanya9911@gmail.com \
--to=nagachaithanya9911@gmail.com \
--cc=Frank.Li@kernel.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=dmaengine@vger.kernel.org \
--cc=frank.li@oss.nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=orsonzhai@gmail.com \
--cc=vkoul@kernel.org \
--cc=zhang.lyra@gmail.com \
/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