* [PATCH] clk: eyeq: Use devm_platform_ioremap_resource()
@ 2026-09-11 11:48 Benoît Monin
2026-09-11 12:10 ` Théo Lebrun
2026-09-11 23:53 ` Brian Masney
0 siblings, 2 replies; 3+ messages in thread
From: Benoît Monin @ 2026-09-11 11:48 UTC (permalink / raw)
To: Vladimir Kondratiev, Gregory CLEMENT, Théo Lebrun,
Stephen Boyd, Brian Masney, Jerome Brunet
Cc: Thomas Petazzoni, Tawfik Bayouk, linux-mips, linux-clk,
linux-kernel, Benoît Monin
Convert eqc_probe() from the open-coded platform_get_resource() +
ioremap() sequence to devm_platform_ioremap_resource(). Besides less
code, this requests the memory region so the OLB registers are properly
reserved in the iomem_resource tree.
Move devm_platform_ioremap_resource() before checking for device match
data, so OLBs bound without match data also get their memory region
mapped and reserved.
Add an entry for mobileye,eyeq6h-central-olb without match data: its
clocks are all registered by the early init and it has no auxiliary
devices, so probe() now reserves its region and stops there.
Suggested-by: Vladimir Kondratiev <vladimir.kondratiev@mobileye.com>
Signed-off-by: Benoît Monin <benoit.monin@bootlin.com>
---
drivers/clk/clk-eyeq.c | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/drivers/clk/clk-eyeq.c b/drivers/clk/clk-eyeq.c
index cf37feccc734..bb680283b6f2 100644
--- a/drivers/clk/clk-eyeq.c
+++ b/drivers/clk/clk-eyeq.c
@@ -513,21 +513,16 @@ static int eqc_probe(struct platform_device *pdev)
const struct eqc_match_data *data;
struct clk_hw_onecell_data *cells;
unsigned int i, clk_count;
- struct resource *res;
void __iomem *base;
int ret;
+ base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(base))
+ return PTR_ERR(base);
+
data = device_get_match_data(dev);
if (!data)
- return 0; /* No clocks nor auxdevs, we are done. */
-
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res)
- return -ENODEV;
-
- base = ioremap(res->start, resource_size(res));
- if (!base)
- return -ENOMEM;
+ return 0; /* Early only clocks, stop here but keep resource reserved */
/* Init optional auxiliary devices. */
eqc_auxdev_create_optional(dev, base, data->reset_auxdev_name);
@@ -1175,6 +1170,7 @@ static const struct of_device_id eqc_match_table[] = {
{ .compatible = "mobileye,eyeq5-olb", .data = &eqc_eyeq5_match_data },
{ .compatible = "mobileye,eyeq6l-olb", .data = &eqc_eyeq6l_match_data },
{ .compatible = "mobileye,eyeq6lplus-olb", .data = &eqc_eyeq6lplus_match_data },
+ { .compatible = "mobileye,eyeq6h-central-olb" /* no data, early only */ },
{ .compatible = "mobileye,eyeq6h-west-olb", .data = &eqc_eyeq6h_west_match_data },
{ .compatible = "mobileye,eyeq6h-east-olb", .data = &eqc_eyeq6h_east_match_data },
{ .compatible = "mobileye,eyeq6h-south-olb", .data = &eqc_eyeq6h_south_match_data },
---
base-commit: cee9395acd8043be0644b25c34bfa86623f2b935
change-id: 20260910-clk-eyeq-res-ddbf87fc4fd4
Best regards,
--
Benoît Monin, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] clk: eyeq: Use devm_platform_ioremap_resource()
2026-09-11 11:48 [PATCH] clk: eyeq: Use devm_platform_ioremap_resource() Benoît Monin
@ 2026-09-11 12:10 ` Théo Lebrun
2026-09-11 23:53 ` Brian Masney
1 sibling, 0 replies; 3+ messages in thread
From: Théo Lebrun @ 2026-09-11 12:10 UTC (permalink / raw)
To: Benoît Monin, Vladimir Kondratiev, Gregory CLEMENT,
Stephen Boyd, Brian Masney, Jerome Brunet
Cc: Thomas Petazzoni, Tawfik Bayouk, linux-mips, linux-clk, linux-kernel
Hello Benoît,
On Fri Sep 11, 2026 at 1:48 PM CEST, Benoît Monin wrote:
> Convert eqc_probe() from the open-coded platform_get_resource() +
> ioremap() sequence to devm_platform_ioremap_resource(). Besides less
> code, this requests the memory region so the OLB registers are properly
> reserved in the iomem_resource tree.
>
> Move devm_platform_ioremap_resource() before checking for device match
> data, so OLBs bound without match data also get their memory region
> mapped and reserved.
>
> Add an entry for mobileye,eyeq6h-central-olb without match data: its
> clocks are all registered by the early init and it has no auxiliary
> devices, so probe() now reserves its region and stops there.
>
> Suggested-by: Vladimir Kondratiev <vladimir.kondratiev@mobileye.com>
> Signed-off-by: Benoît Monin <benoit.monin@bootlin.com>
> ---
> drivers/clk/clk-eyeq.c | 16 ++++++----------
> 1 file changed, 6 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/clk/clk-eyeq.c b/drivers/clk/clk-eyeq.c
> index cf37feccc734..bb680283b6f2 100644
> --- a/drivers/clk/clk-eyeq.c
> +++ b/drivers/clk/clk-eyeq.c
> @@ -513,21 +513,16 @@ static int eqc_probe(struct platform_device *pdev)
> const struct eqc_match_data *data;
> struct clk_hw_onecell_data *cells;
> unsigned int i, clk_count;
> - struct resource *res;
> void __iomem *base;
> int ret;
>
> + base = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(base))
> + return PTR_ERR(base);
> +
> data = device_get_match_data(dev);
> if (!data)
> - return 0; /* No clocks nor auxdevs, we are done. */
> -
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - if (!res)
> - return -ENODEV;
> -
> - base = ioremap(res->start, resource_size(res));
> - if (!base)
> - return -ENOMEM;
> + return 0; /* Early only clocks, stop here but keep resource reserved */
Technically it is "early only clocks OR auxdevs", as is seen in.
Not that it matters much.
static const struct eqc_match_data eqc_eyeq6h_west_match_data = {
.reset_auxdev_name = "reset_west",
};
>
> /* Init optional auxiliary devices. */
> eqc_auxdev_create_optional(dev, base, data->reset_auxdev_name);
> @@ -1175,6 +1170,7 @@ static const struct of_device_id eqc_match_table[] = {
> { .compatible = "mobileye,eyeq5-olb", .data = &eqc_eyeq5_match_data },
> { .compatible = "mobileye,eyeq6l-olb", .data = &eqc_eyeq6l_match_data },
> { .compatible = "mobileye,eyeq6lplus-olb", .data = &eqc_eyeq6lplus_match_data },
> + { .compatible = "mobileye,eyeq6h-central-olb" /* no data, early only */ },
> { .compatible = "mobileye,eyeq6h-west-olb", .data = &eqc_eyeq6h_west_match_data },
> { .compatible = "mobileye,eyeq6h-east-olb", .data = &eqc_eyeq6h_east_match_data },
> { .compatible = "mobileye,eyeq6h-south-olb", .data = &eqc_eyeq6h_south_match_data },
I can confirm this is the way to go! The open-coded
platform_get_resource() + ioremap() sequence is heritage from how the
series used to look during its first revisions.
Reviewed-by: Théo Lebrun <theo.lebrun@bootlin.com>
Thanks,
--
Théo Lebrun, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] clk: eyeq: Use devm_platform_ioremap_resource()
2026-09-11 11:48 [PATCH] clk: eyeq: Use devm_platform_ioremap_resource() Benoît Monin
2026-09-11 12:10 ` Théo Lebrun
@ 2026-09-11 23:53 ` Brian Masney
1 sibling, 0 replies; 3+ messages in thread
From: Brian Masney @ 2026-09-11 23:53 UTC (permalink / raw)
To: Benoît Monin
Cc: Vladimir Kondratiev, Gregory CLEMENT, Théo Lebrun,
Stephen Boyd, Brian Masney, Jerome Brunet, Thomas Petazzoni,
Tawfik Bayouk, linux-mips, linux-clk, linux-kernel
Hi Benoît,
On Fri, Sep 11, 2026 at 01:48:47PM +0200, Benoît Monin wrote:
> Convert eqc_probe() from the open-coded platform_get_resource() +
> ioremap() sequence to devm_platform_ioremap_resource(). Besides less
> code, this requests the memory region so the OLB registers are properly
> reserved in the iomem_resource tree.
>
> Move devm_platform_ioremap_resource() before checking for device match
> data, so OLBs bound without match data also get their memory region
> mapped and reserved.
>
> Add an entry for mobileye,eyeq6h-central-olb without match data: its
> clocks are all registered by the early init and it has no auxiliary
> devices, so probe() now reserves its region and stops there.
>
> Suggested-by: Vladimir Kondratiev <vladimir.kondratiev@mobileye.com>
> Signed-off-by: Benoît Monin <benoit.monin@bootlin.com>
> ---
> drivers/clk/clk-eyeq.c | 16 ++++++----------
> 1 file changed, 6 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/clk/clk-eyeq.c b/drivers/clk/clk-eyeq.c
> index cf37feccc734..bb680283b6f2 100644
> --- a/drivers/clk/clk-eyeq.c
> +++ b/drivers/clk/clk-eyeq.c
> @@ -513,21 +513,16 @@ static int eqc_probe(struct platform_device *pdev)
> const struct eqc_match_data *data;
> struct clk_hw_onecell_data *cells;
> unsigned int i, clk_count;
> - struct resource *res;
> void __iomem *base;
> int ret;
>
> + base = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(base))
> + return PTR_ERR(base);
> +
> data = device_get_match_data(dev);
> if (!data)
> - return 0; /* No clocks nor auxdevs, we are done. */
> -
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - if (!res)
> - return -ENODEV;
> -
> - base = ioremap(res->start, resource_size(res));
> - if (!base)
> - return -ENOMEM;
> + return 0; /* Early only clocks, stop here but keep resource reserved */
>
> /* Init optional auxiliary devices. */
> eqc_auxdev_create_optional(dev, base, data->reset_auxdev_name);
Can you make this one patch.
> @@ -1175,6 +1170,7 @@ static const struct of_device_id eqc_match_table[] = {
> { .compatible = "mobileye,eyeq5-olb", .data = &eqc_eyeq5_match_data },
> { .compatible = "mobileye,eyeq6l-olb", .data = &eqc_eyeq6l_match_data },
> { .compatible = "mobileye,eyeq6lplus-olb", .data = &eqc_eyeq6lplus_match_data },
> + { .compatible = "mobileye,eyeq6h-central-olb" /* no data, early only */ },
> { .compatible = "mobileye,eyeq6h-west-olb", .data = &eqc_eyeq6h_west_match_data },
> { .compatible = "mobileye,eyeq6h-east-olb", .data = &eqc_eyeq6h_east_match_data },
> { .compatible = "mobileye,eyeq6h-south-olb", .data = &eqc_eyeq6h_south_match_data },
>
And this a second patch?
Otherwise this looks good to me.
Brian
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-11 23:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-11 11:48 [PATCH] clk: eyeq: Use devm_platform_ioremap_resource() Benoît Monin
2026-09-11 12:10 ` Théo Lebrun
2026-09-11 23:53 ` Brian Masney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®