Message ID | 20240614140421.3172674-3-peter.griffin@linaro.org |
---|---|
State | New |
Headers | show |
Series | Add syscon of_syscon_register_regmap api | expand |
On Fri, 2024-06-14 at 15:04 +0100, Peter Griffin wrote: > For SoCs like gs101 that need a special regmap, register this with > of_syscon_register_regmap api, so it can be returned by > syscon_regmap_lookup_by_phandle() and friends. > > For SoCs that don't require a custom regmap, revert back to syscon > creating the mmio regmap rather than duplicating the logic here. > > exynos_get_pmu_regmap_by_phandle() api is also updated to retrieve > the regmap via syscon. The exynos_get_pmu_regmap_by_phandle() api > is kept around until fw_devlink support for syscon property is added > for the pinctrl-samsung driver that also runs at postcore_initcall > level. > > All other exynos client drivers can revert back to > syscon_regmap_lookup_by_phandle(). > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org> With this series, the exynos5 usb phy driver works on gs101 without having to patch it to use exynos_get_pmu_regmap_by_phandle() instead of the standard syscon_regmap_lookup_by_phandle(): Tested-by: André Draszik <andre.draszik@linaro.org>
On Fri, Jun 14, 2024 at 9:04 AM Peter Griffin <peter.griffin@linaro.org> wrote: > > For SoCs like gs101 that need a special regmap, register this with > of_syscon_register_regmap api, so it can be returned by > syscon_regmap_lookup_by_phandle() and friends. > > For SoCs that don't require a custom regmap, revert back to syscon > creating the mmio regmap rather than duplicating the logic here. > > exynos_get_pmu_regmap_by_phandle() api is also updated to retrieve > the regmap via syscon. The exynos_get_pmu_regmap_by_phandle() api > is kept around until fw_devlink support for syscon property is added > for the pinctrl-samsung driver that also runs at postcore_initcall > level. > > All other exynos client drivers can revert back to > syscon_regmap_lookup_by_phandle(). > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org> > --- Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org> [snip]
diff --git a/drivers/soc/samsung/exynos-pmu.c b/drivers/soc/samsung/exynos-pmu.c index fd8b6ac06656..91d7f4121a72 100644 --- a/drivers/soc/samsung/exynos-pmu.c +++ b/drivers/soc/samsung/exynos-pmu.c @@ -204,16 +204,6 @@ static const struct regmap_config regmap_smccfg = { .reg_update_bits = tensor_sec_update_bits, }; -static const struct regmap_config regmap_mmiocfg = { - .name = "pmu_regs", - .reg_bits = 32, - .reg_stride = 4, - .val_bits = 32, - .fast_io = true, - .use_single_read = true, - .use_single_write = true, -}; - static const struct exynos_pmu_data gs101_pmu_data = { .pmu_secure = true }; @@ -290,7 +280,6 @@ EXPORT_SYMBOL_GPL(exynos_get_pmu_regmap); struct regmap *exynos_get_pmu_regmap_by_phandle(struct device_node *np, const char *propname) { - struct exynos_pmu_context *ctx; struct device_node *pmu_np; struct device *dev; @@ -316,9 +305,7 @@ struct regmap *exynos_get_pmu_regmap_by_phandle(struct device_node *np, if (!dev) return ERR_PTR(-EPROBE_DEFER); - ctx = dev_get_drvdata(dev); - - return ctx->pmureg; + return syscon_node_to_regmap(np); } EXPORT_SYMBOL_GPL(exynos_get_pmu_regmap_by_phandle); @@ -355,19 +342,22 @@ static int exynos_pmu_probe(struct platform_device *pdev) regmap = devm_regmap_init(dev, NULL, (void *)(uintptr_t)res->start, &pmu_regmcfg); + + if (IS_ERR(regmap)) + return dev_err_probe(&pdev->dev, PTR_ERR(regmap), + "regmap init failed\n"); + + ret = of_syscon_register_regmap(dev->of_node, regmap); + if (ret) + return ret; } else { - /* All other SoCs use a MMIO regmap */ - pmu_regmcfg = regmap_mmiocfg; - pmu_regmcfg.max_register = resource_size(res) - - pmu_regmcfg.reg_stride; - regmap = devm_regmap_init_mmio(dev, pmu_base_addr, - &pmu_regmcfg); + /* let syscon create mmio regmap */ + regmap = syscon_node_to_regmap(dev->of_node); + if (IS_ERR(regmap)) + return dev_err_probe(&pdev->dev, PTR_ERR(regmap), + "syscon_node_to_regmap failed\n"); } - if (IS_ERR(regmap)) - return dev_err_probe(&pdev->dev, PTR_ERR(regmap), - "regmap init failed\n"); - pmu_context->pmureg = regmap; pmu_context->dev = dev;
For SoCs like gs101 that need a special regmap, register this with of_syscon_register_regmap api, so it can be returned by syscon_regmap_lookup_by_phandle() and friends. For SoCs that don't require a custom regmap, revert back to syscon creating the mmio regmap rather than duplicating the logic here. exynos_get_pmu_regmap_by_phandle() api is also updated to retrieve the regmap via syscon. The exynos_get_pmu_regmap_by_phandle() api is kept around until fw_devlink support for syscon property is added for the pinctrl-samsung driver that also runs at postcore_initcall level. All other exynos client drivers can revert back to syscon_regmap_lookup_by_phandle(). Signed-off-by: Peter Griffin <peter.griffin@linaro.org> --- drivers/soc/samsung/exynos-pmu.c | 38 ++++++++++++-------------------- 1 file changed, 14 insertions(+), 24 deletions(-)