summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiaxing Hu <gahing@gahingwoo.com>2026-07-18 15:11:42 +1200
committerWill Deacon <will@kernel.org>2026-07-26 13:10:11 +0000
commit841363ebb5082a06c69ac34719e26659fe63dbd6 (patch)
treeb3984b888da8ae8e8eb5103529361fd006646ffc
parentea0a9d453f60d5d065c377bbd20ab8a78b8620b7 (diff)
iommu/rockchip: Take all DT clocks
rk_iommu only enabled a fixed {aclk,iface} pair. On the RK3576 NPU the MMU sits behind the CBUF/DSU gates, so writes to DTE_ADDR are silently dropped until those clocks run too (reads work, writes need more clocks). Use devm_clk_bulk_get_all() to take every clock the devicetree provides instead of a fixed pair, so a platform can list the full set it needs. Clocks stay optional for the older clock-less devicetrees. Signed-off-by: Jiaxing Hu <gahing@gahingwoo.com> Signed-off-by: Will Deacon <will@kernel.org>
-rw-r--r--drivers/iommu/rockchip-iommu.c28
1 files changed, 9 insertions, 19 deletions
diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c
index 05643dbde26d..d041160d18af 100644
--- a/drivers/iommu/rockchip-iommu.c
+++ b/drivers/iommu/rockchip-iommu.c
@@ -104,11 +104,6 @@ struct rk_iommu_domain {
struct iommu_domain domain;
};
-/* list of clocks required by IOMMU */
-static const char * const rk_iommu_clocks[] = {
- "aclk", "iface",
-};
-
struct rk_iommu {
struct device *dev;
void __iomem **bases;
@@ -1252,25 +1247,20 @@ static int rk_iommu_probe(struct platform_device *pdev)
iommu->reset_disabled = device_property_read_bool(dev,
"rockchip,disable-mmu-reset");
- iommu->num_clocks = ARRAY_SIZE(rk_iommu_clocks);
- iommu->clocks = devm_kcalloc(iommu->dev, iommu->num_clocks,
- sizeof(*iommu->clocks), GFP_KERNEL);
- if (!iommu->clocks)
- return -ENOMEM;
-
- for (i = 0; i < iommu->num_clocks; ++i)
- iommu->clocks[i].id = rk_iommu_clocks[i];
-
/*
- * iommu clocks should be present for all new devices and devicetrees
- * but there are older devicetrees without clocks out in the wild.
- * So clocks as optional for the time being.
+ * Take every clock the devicetree provides. Most IOMMU instances
+ * need exactly "aclk" + "iface", but e.g. the RK3576 NPU IOMMUs sit
+ * behind additional gates (CBUF/DSU) whose clocks must be running
+ * for register writes to land. Clocks stay optional because there
+ * are older devicetrees without clocks out in the wild.
*/
- err = devm_clk_bulk_get(iommu->dev, iommu->num_clocks, iommu->clocks);
+ err = devm_clk_bulk_get_all(iommu->dev, &iommu->clocks);
if (err == -ENOENT)
iommu->num_clocks = 0;
- else if (err)
+ else if (err < 0)
return err;
+ else
+ iommu->num_clocks = err;
err = clk_bulk_prepare(iommu->num_clocks, iommu->clocks);
if (err)