Am Donnerstag, 15. September 2022, 18:39:45 CEST schrieb Jagan Teki: > Clock & Reset Unit (CRU) in RV1126 support clocks for CRU > and CRU_PMU blocks. > > This patch is trying to add minimal Clock-Architecture Diagram's > inferred from [1] authored by Finley Xiao. > > [1] https://github.com/rockchip-linux/kernel/blob/develop-4.19/drivers/clk/rockchip/clk-rv1126.c > > Cc: linux-clk@xxxxxxxxxxxxxxx > Cc: Michael Turquette <mturquette@xxxxxxxxxxxx> > Cc: Stephen Boyd <sboyd@xxxxxxxxxx> > Signed-off-by: Finley Xiao <finley.xiao@xxxxxxxxxxxxxx> > Signed-off-by: Jagan Teki <jagan@xxxxxxxxxx> > --- > Changes for v5: > - add platform-drivers [...] > +static void __init rv1126_pmu_clk_init(struct device_node *np) > +{ > + struct rockchip_clk_provider *ctx; > + void __iomem *reg_base; > + > + reg_base = of_iomap(np, 0); > + if (!reg_base) { > + pr_err("%s: could not map cru pmu region\n", __func__); > + return; > + } > + > + ctx = rockchip_clk_init(np, reg_base, CLKPMU_NR_CLKS); > + if (IS_ERR(ctx)) { > + pr_err("%s: rockchip pmu clk init failed\n", __func__); > + return; > + } > + > + rockchip_clk_register_plls(ctx, rv1126_pmu_pll_clks, > + ARRAY_SIZE(rv1126_pmu_pll_clks), > + RV1126_GRF_SOC_STATUS0); > + > + rockchip_clk_register_branches(ctx, rv1126_clk_pmu_branches, > + ARRAY_SIZE(rv1126_clk_pmu_branches)); > + > + rockchip_register_softrst(np, 2, reg_base + RV1126_PMU_SOFTRST_CON(0), > + ROCKCHIP_SOFTRST_HIWORD_MASK); > + > + rockchip_clk_of_add_provider(np, ctx); > +} > + > +CLK_OF_DECLARE(rv1126_cru_pmu, "rockchip,rv1126-pmucru", rv1126_pmu_clk_init); this one and the one below should go away I think. Can you check if that is the case, then I can just drop the two CLK_OF_DECLARE lines. Heiko > + > +static void __init rv1126_clk_init(struct device_node *np) > +{ > + struct rockchip_clk_provider *ctx; > + void __iomem *reg_base; > + > + reg_base = of_iomap(np, 0); > + if (!reg_base) { > + pr_err("%s: could not map cru region\n", __func__); > + return; > + } > + > + ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS); > + if (IS_ERR(ctx)) { > + pr_err("%s: rockchip clk init failed\n", __func__); > + iounmap(reg_base); > + return; > + } > + > + rockchip_clk_register_plls(ctx, rv1126_pll_clks, > + ARRAY_SIZE(rv1126_pll_clks), > + RV1126_GRF_SOC_STATUS0); > + > + rockchip_clk_register_armclk(ctx, ARMCLK, "armclk", > + mux_armclk_p, ARRAY_SIZE(mux_armclk_p), > + &rv1126_cpuclk_data, rv1126_cpuclk_rates, > + ARRAY_SIZE(rv1126_cpuclk_rates)); > + > + rockchip_clk_register_branches(ctx, rv1126_clk_branches, > + ARRAY_SIZE(rv1126_clk_branches)); > + > + rockchip_register_softrst(np, 15, reg_base + RV1126_SOFTRST_CON(0), > + ROCKCHIP_SOFTRST_HIWORD_MASK); > + > + rockchip_register_restart_notifier(ctx, RV1126_GLB_SRST_FST, NULL); > + > + rockchip_clk_protect_critical(rv1126_cru_critical_clocks, > + ARRAY_SIZE(rv1126_cru_critical_clocks)); > + > + rockchip_clk_of_add_provider(np, ctx); > +} > + > +CLK_OF_DECLARE(rv1126_cru, "rockchip,rv1126-cru", rv1126_clk_init); > + > +struct clk_rv1126_inits { > + void (*inits)(struct device_node *np); > +}; > + > +static const struct clk_rv1126_inits clk_rv1126_pmucru_init = { > + .inits = rv1126_pmu_clk_init, > +}; > + > +static const struct clk_rv1126_inits clk_rv1126_cru_init = { > + .inits = rv1126_clk_init, > +}; > + > +static const struct of_device_id clk_rv1126_match_table[] = { > + { > + .compatible = "rockchip,rv1126-cru", > + .data = &clk_rv1126_cru_init, > + }, { > + .compatible = "rockchip,rv1126-pmucru", > + .data = &clk_rv1126_pmucru_init, > + }, > + { } > +}; > + > +static int __init clk_rv1126_probe(struct platform_device *pdev) > +{ > + struct device_node *np = pdev->dev.of_node; > + const struct clk_rv1126_inits *init_data; > + > + init_data = (struct clk_rv1126_inits *)of_device_get_match_data(&pdev->dev); > + if (!init_data) > + return -EINVAL; > + > + if (init_data->inits) > + init_data->inits(np); > + > + return 0; > +} > + > +static struct platform_driver clk_rv1126_driver = { > + .driver = { > + .name = "clk-rv1126", > + .of_match_table = clk_rv1126_match_table, > + .suppress_bind_attrs = true, > + }, > +}; > +builtin_platform_driver_probe(clk_rv1126_driver, clk_rv1126_probe);