* [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers
@ 2024-05-10 9:40 Anand Moon
2024-05-10 9:40 ` [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member Anand Moon
2024-06-17 8:24 ` [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
0 siblings, 2 replies; 6+ messages in thread
From: Anand Moon @ 2024-05-10 9:40 UTC (permalink / raw)
To: Chanwoo Choi, MyungJoo Ham, Kyungmin Park, Krzysztof Kozlowski,
Alim Akhtar
Cc: Anand Moon, Christophe JAILLET, linux-pm, linux-samsung-soc,
linux-arm-kernel, linux-kernel
The devm_clk_get_enabled() helpers:
- call devm_clk_get()
- call clk_prepare_enable() and register what is needed in order to
call clk_disable_unprepare() when needed, as a managed resource.
This simplifies the code and avoids the calls to clk_disable_unprepare().
While at it, use dev_err_probe consistently, and use its return value
to return the error code.
Signed-off-by: Anand Moon <linux.amoon@gmail.com>
---
v5 - No change
V4 - wrap up the error messagee within 80 char
v3 - No change
v2 - No change
---
drivers/devfreq/exynos-bus.c | 22 +++++-----------------
1 file changed, 5 insertions(+), 17 deletions(-)
diff --git a/drivers/devfreq/exynos-bus.c b/drivers/devfreq/exynos-bus.c
index 00118580905a..7d06c476d8e9 100644
--- a/drivers/devfreq/exynos-bus.c
+++ b/drivers/devfreq/exynos-bus.c
@@ -160,7 +160,6 @@ static void exynos_bus_exit(struct device *dev)
platform_device_unregister(bus->icc_pdev);
dev_pm_opp_of_remove_table(dev);
- clk_disable_unprepare(bus->clk);
dev_pm_opp_put_regulators(bus->opp_token);
}
@@ -171,7 +170,6 @@ static void exynos_bus_passive_exit(struct device *dev)
platform_device_unregister(bus->icc_pdev);
dev_pm_opp_of_remove_table(dev);
- clk_disable_unprepare(bus->clk);
}
static int exynos_bus_parent_parse_of(struct device_node *np,
@@ -247,23 +245,16 @@ static int exynos_bus_parse_of(struct device_node *np,
int ret;
/* Get the clock to provide each bus with source clock */
- bus->clk = devm_clk_get(dev, "bus");
- if (IS_ERR(bus->clk)) {
- dev_err(dev, "failed to get bus clock\n");
- return PTR_ERR(bus->clk);
- }
-
- ret = clk_prepare_enable(bus->clk);
- if (ret < 0) {
- dev_err(dev, "failed to get enable clock\n");
- return ret;
- }
+ bus->clk = devm_clk_get_enabled(dev, "bus");
+ if (IS_ERR(bus->clk))
+ return dev_err_probe(dev, PTR_ERR(bus->clk),
+ "failed to get bus clock\n");
/* Get the freq and voltage from OPP table to scale the bus freq */
ret = dev_pm_opp_of_add_table(dev);
if (ret < 0) {
dev_err(dev, "failed to get OPP table\n");
- goto err_clk;
+ return ret;
}
rate = clk_get_rate(bus->clk);
@@ -281,8 +272,6 @@ static int exynos_bus_parse_of(struct device_node *np,
err_opp:
dev_pm_opp_of_remove_table(dev);
-err_clk:
- clk_disable_unprepare(bus->clk);
return ret;
}
@@ -453,7 +442,6 @@ static int exynos_bus_probe(struct platform_device *pdev)
err:
dev_pm_opp_of_remove_table(dev);
- clk_disable_unprepare(bus->clk);
err_reg:
dev_pm_opp_put_regulators(bus->opp_token);
--
2.44.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member
2024-05-10 9:40 [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
@ 2024-05-10 9:40 ` Anand Moon
2024-06-29 13:52 ` Anand Moon
2024-06-17 8:24 ` [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
1 sibling, 1 reply; 6+ messages in thread
From: Anand Moon @ 2024-05-10 9:40 UTC (permalink / raw)
To: Chanwoo Choi, MyungJoo Ham, Kyungmin Park, Krzysztof Kozlowski,
Alim Akhtar
Cc: Anand Moon, Christophe JAILLET, linux-pm, linux-samsung-soc,
linux-arm-kernel, linux-kernel
This commit modifies the exynos bus driver to use a local clk variable
for clock handling instead of storing it in the exynos_bus struct member.
This helps in simplifying the code and makes it more readable.
Suggested-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Anand Moon <linux.amoon@gmail.com>
---
v5: New patch
---
drivers/devfreq/exynos-bus.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/devfreq/exynos-bus.c b/drivers/devfreq/exynos-bus.c
index 7d06c476d8e9..e55ae59a8ae7 100644
--- a/drivers/devfreq/exynos-bus.c
+++ b/drivers/devfreq/exynos-bus.c
@@ -34,7 +34,6 @@ struct exynos_bus {
unsigned long curr_freq;
int opp_token;
- struct clk *clk;
unsigned int ratio;
};
@@ -241,13 +240,14 @@ static int exynos_bus_parse_of(struct device_node *np,
{
struct device *dev = bus->dev;
struct dev_pm_opp *opp;
+ struct clk *clk;
unsigned long rate;
int ret;
/* Get the clock to provide each bus with source clock */
- bus->clk = devm_clk_get_enabled(dev, "bus");
- if (IS_ERR(bus->clk))
- return dev_err_probe(dev, PTR_ERR(bus->clk),
+ clk = devm_clk_get_enabled(dev, "bus");
+ if (IS_ERR(clk))
+ return dev_err_probe(dev, PTR_ERR(clk),
"failed to get bus clock\n");
/* Get the freq and voltage from OPP table to scale the bus freq */
@@ -257,7 +257,7 @@ static int exynos_bus_parse_of(struct device_node *np,
return ret;
}
- rate = clk_get_rate(bus->clk);
+ rate = clk_get_rate(clk);
opp = devfreq_recommended_opp(dev, &rate, 0);
if (IS_ERR(opp)) {
--
2.44.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member
2024-05-10 9:40 ` [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member Anand Moon
@ 2024-06-29 13:52 ` Anand Moon
0 siblings, 0 replies; 6+ messages in thread
From: Anand Moon @ 2024-06-29 13:52 UTC (permalink / raw)
To: Chanwoo Choi, MyungJoo Ham, Kyungmin Park, Krzysztof Kozlowski,
Alim Akhtar
Cc: Christophe JAILLET, linux-pm, linux-samsung-soc, linux-arm-kernel,
linux-kernel
Hi Chamwoo,
On Fri, 10 May 2024 at 15:11, Anand Moon <linux.amoon@gmail.com> wrote:
>
> This commit modifies the exynos bus driver to use a local clk variable
> for clock handling instead of storing it in the exynos_bus struct member.
> This helps in simplifying the code and makes it more readable.
>
> Suggested-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> ---
I am letting you know that you missed this patch.
> v5: New patch
> ---
> drivers/devfreq/exynos-bus.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/devfreq/exynos-bus.c b/drivers/devfreq/exynos-bus.c
> index 7d06c476d8e9..e55ae59a8ae7 100644
> --- a/drivers/devfreq/exynos-bus.c
> +++ b/drivers/devfreq/exynos-bus.c
> @@ -34,7 +34,6 @@ struct exynos_bus {
> unsigned long curr_freq;
>
> int opp_token;
> - struct clk *clk;
> unsigned int ratio;
> };
>
> @@ -241,13 +240,14 @@ static int exynos_bus_parse_of(struct device_node *np,
> {
> struct device *dev = bus->dev;
> struct dev_pm_opp *opp;
> + struct clk *clk;
> unsigned long rate;
> int ret;
>
> /* Get the clock to provide each bus with source clock */
> - bus->clk = devm_clk_get_enabled(dev, "bus");
> - if (IS_ERR(bus->clk))
> - return dev_err_probe(dev, PTR_ERR(bus->clk),
> + clk = devm_clk_get_enabled(dev, "bus");
> + if (IS_ERR(clk))
> + return dev_err_probe(dev, PTR_ERR(clk),
> "failed to get bus clock\n");
>
> /* Get the freq and voltage from OPP table to scale the bus freq */
> @@ -257,7 +257,7 @@ static int exynos_bus_parse_of(struct device_node *np,
> return ret;
> }
>
> - rate = clk_get_rate(bus->clk);
> + rate = clk_get_rate(clk);
>
> opp = devfreq_recommended_opp(dev, &rate, 0);
> if (IS_ERR(opp)) {
> --
> 2.44.0
>
Thanks & Regards
-Anand
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers
2024-05-10 9:40 [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
2024-05-10 9:40 ` [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member Anand Moon
@ 2024-06-17 8:24 ` Anand Moon
2024-06-26 14:30 ` Chanwoo Choi
1 sibling, 1 reply; 6+ messages in thread
From: Anand Moon @ 2024-06-17 8:24 UTC (permalink / raw)
To: Chanwoo Choi, MyungJoo Ham, Kyungmin Park, Krzysztof Kozlowski,
Alim Akhtar
Cc: Christophe JAILLET, linux-pm, linux-samsung-soc, linux-arm-kernel,
linux-kernel
Hi All,
On Fri, 10 May 2024 at 15:10, Anand Moon <linux.amoon@gmail.com> wrote:
>
> The devm_clk_get_enabled() helpers:
> - call devm_clk_get()
> - call clk_prepare_enable() and register what is needed in order to
> call clk_disable_unprepare() when needed, as a managed resource.
>
> This simplifies the code and avoids the calls to clk_disable_unprepare().
>
> While at it, use dev_err_probe consistently, and use its return value
> to return the error code.
>
> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
Gentle ping?
Thanks
-Anand
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers
2024-06-17 8:24 ` [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
@ 2024-06-26 14:30 ` Chanwoo Choi
2024-06-29 4:25 ` Anand Moon
0 siblings, 1 reply; 6+ messages in thread
From: Chanwoo Choi @ 2024-06-26 14:30 UTC (permalink / raw)
To: Anand Moon, Chanwoo Choi, MyungJoo Ham, Kyungmin Park,
Krzysztof Kozlowski, Alim Akhtar
Cc: Christophe JAILLET, linux-pm, linux-samsung-soc, linux-arm-kernel,
linux-kernel
24. 6. 17. 17:24에 Anand Moon 이(가) 쓴 글:
> Hi All,
>
> On Fri, 10 May 2024 at 15:10, Anand Moon <linux.amoon@gmail.com> wrote:
>>
>> The devm_clk_get_enabled() helpers:
>> - call devm_clk_get()
>> - call clk_prepare_enable() and register what is needed in order to
>> call clk_disable_unprepare() when needed, as a managed resource.
>>
>> This simplifies the code and avoids the calls to clk_disable_unprepare().
>>
>> While at it, use dev_err_probe consistently, and use its return value
>> to return the error code.
>>
>> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
>
> Gentle ping?
>
> Thanks
> -Anand
>
Applied it. Thanks.
I'm sorry for late reply.
--
Best Regards,
Samsung Electronics
Chanwoo Choi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers
2024-06-26 14:30 ` Chanwoo Choi
@ 2024-06-29 4:25 ` Anand Moon
0 siblings, 0 replies; 6+ messages in thread
From: Anand Moon @ 2024-06-29 4:25 UTC (permalink / raw)
To: Chanwoo Choi
Cc: Chanwoo Choi, MyungJoo Ham, Kyungmin Park, Krzysztof Kozlowski,
Alim Akhtar, Christophe JAILLET, linux-pm, linux-samsung-soc,
linux-arm-kernel, linux-kernel
Hi Chanwoo,
On Wed, 26 Jun 2024 at 20:00, Chanwoo Choi <chanwoo@kernel.org> wrote:
>
> 24. 6. 17. 17:24에 Anand Moon 이(가) 쓴 글:
> > Hi All,
> >
> > On Fri, 10 May 2024 at 15:10, Anand Moon <linux.amoon@gmail.com> wrote:
> >>
> >> The devm_clk_get_enabled() helpers:
> >> - call devm_clk_get()
> >> - call clk_prepare_enable() and register what is needed in order to
> >> call clk_disable_unprepare() when needed, as a managed resource.
> >>
> >> This simplifies the code and avoids the calls to clk_disable_unprepare().
> >>
> >> While at it, use dev_err_probe consistently, and use its return value
> >> to return the error code.
> >>
> >> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> >
> > Gentle ping?
> >
> > Thanks
> > -Anand
> >
>
> Applied it. Thanks.
> I'm sorry for late reply.
>
Thanks & Regards
-Anand
> --
> Best Regards,
> Samsung Electronics
> Chanwoo Choi
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-06-29 13:52 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-10 9:40 [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
2024-05-10 9:40 ` [PATCH v5 2/2] PM / devfreq: exynos: Use local clk variable instead of exynos_bus member Anand Moon
2024-06-29 13:52 ` Anand Moon
2024-06-17 8:24 ` [PATCH v5 1/2] PM / devfreq: exynos: Use Use devm_clk_get_enabled() helpers Anand Moon
2024-06-26 14:30 ` Chanwoo Choi
2024-06-29 4:25 ` Anand Moon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).