* [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs
@ 2024-07-14 14:13 Claudiu Beznea
2024-07-15 19:47 ` Stephen Boyd
2024-08-24 14:53 ` claudiu beznea
0 siblings, 2 replies; 4+ messages in thread
From: Claudiu Beznea @ 2024-07-14 14:13 UTC (permalink / raw)
To: mturquette, sboyd, nicolas.ferre, alexandre.belloni
Cc: linux-clk, linux-arm-kernel, linux-kernel, Claudiu Beznea
The maximum number of PLL components on SAMA7G5 is 3 (one fractional
part and 2 dividers). Allocate the needed amount of memory for
sama7g5_plls 2d array. Previous code used to allocate 7 array entries for
each PLL. While at it, replace 3 with PLL_COMPID_MAX in the loop which
parses the sama7g5_plls 2d array.
Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
---
drivers/clk/at91/sama7g5.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/at91/sama7g5.c b/drivers/clk/at91/sama7g5.c
index 6706d1305baa..8385badc1c70 100644
--- a/drivers/clk/at91/sama7g5.c
+++ b/drivers/clk/at91/sama7g5.c
@@ -51,6 +51,7 @@ enum pll_component_id {
PLL_COMPID_FRAC,
PLL_COMPID_DIV0,
PLL_COMPID_DIV1,
+ PLL_COMPID_MAX,
};
/*
@@ -157,7 +158,7 @@ static struct sama7g5_pll {
u8 t;
u8 eid;
u8 safe_div;
-} sama7g5_plls[][PLL_ID_MAX] = {
+} sama7g5_plls[][PLL_COMPID_MAX] = {
[PLL_ID_CPU] = {
[PLL_COMPID_FRAC] = {
.n = "cpupll_fracck",
@@ -1030,7 +1031,7 @@ static void __init sama7g5_pmc_setup(struct device_node *np)
sama7g5_pmc->chws[PMC_MAIN] = hw;
for (i = 0; i < PLL_ID_MAX; i++) {
- for (j = 0; j < 3; j++) {
+ for (j = 0; j < PLL_COMPID_MAX; j++) {
struct clk_hw *parent_hw;
if (!sama7g5_plls[i][j].n)
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs
2024-07-14 14:13 [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs Claudiu Beznea
@ 2024-07-15 19:47 ` Stephen Boyd
2024-07-16 7:37 ` claudiu beznea
2024-08-24 14:53 ` claudiu beznea
1 sibling, 1 reply; 4+ messages in thread
From: Stephen Boyd @ 2024-07-15 19:47 UTC (permalink / raw)
To: Claudiu Beznea, alexandre.belloni, mturquette, nicolas.ferre
Cc: linux-clk, linux-arm-kernel, linux-kernel, Claudiu Beznea
Quoting Claudiu Beznea (2024-07-14 07:13:15)
> The maximum number of PLL components on SAMA7G5 is 3 (one fractional
> part and 2 dividers). Allocate the needed amount of memory for
> sama7g5_plls 2d array. Previous code used to allocate 7 array entries for
> each PLL. While at it, replace 3 with PLL_COMPID_MAX in the loop which
> parses the sama7g5_plls 2d array.
>
> Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
> ---
Might as well add a Fixes tag so we know when it was less efficient and
to help anyone trying to backport this driver.
Acked-by: Stephen Boyd <sboyd@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs
2024-07-15 19:47 ` Stephen Boyd
@ 2024-07-16 7:37 ` claudiu beznea
0 siblings, 0 replies; 4+ messages in thread
From: claudiu beznea @ 2024-07-16 7:37 UTC (permalink / raw)
To: Stephen Boyd, alexandre.belloni, mturquette, nicolas.ferre
Cc: linux-clk, linux-arm-kernel, linux-kernel
On 15.07.2024 22:47, Stephen Boyd wrote:
> Quoting Claudiu Beznea (2024-07-14 07:13:15)
>> The maximum number of PLL components on SAMA7G5 is 3 (one fractional
>> part and 2 dividers). Allocate the needed amount of memory for
>> sama7g5_plls 2d array. Previous code used to allocate 7 array entries for
>> each PLL. While at it, replace 3 with PLL_COMPID_MAX in the loop which
>> parses the sama7g5_plls 2d array.
>>
>> Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
>> ---
>
> Might as well add a Fixes tag so we know when it was less efficient and
> to help anyone trying to backport this driver.
That would be:
Fixes: cb783bbbcf54 ("clk: at91: sama7g5: add clock support for sama7g5")
Thank you,
Claudiu Beznea
>
> Acked-by: Stephen Boyd <sboyd@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs
2024-07-14 14:13 [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs Claudiu Beznea
2024-07-15 19:47 ` Stephen Boyd
@ 2024-08-24 14:53 ` claudiu beznea
1 sibling, 0 replies; 4+ messages in thread
From: claudiu beznea @ 2024-08-24 14:53 UTC (permalink / raw)
To: mturquette, sboyd, nicolas.ferre, alexandre.belloni
Cc: linux-clk, linux-arm-kernel, linux-kernel
On 14.07.2024 17:13, Claudiu Beznea wrote:
> The maximum number of PLL components on SAMA7G5 is 3 (one fractional
> part and 2 dividers). Allocate the needed amount of memory for
> sama7g5_plls 2d array. Previous code used to allocate 7 array entries for
> each PLL. While at it, replace 3 with PLL_COMPID_MAX in the loop which
> parses the sama7g5_plls 2d array.
>
> Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
Applied to clk-microchip, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-24 14:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-14 14:13 [PATCH] clk: at91: sama7g5: Allocate only the needed amount of memory for PLLs Claudiu Beznea
2024-07-15 19:47 ` Stephen Boyd
2024-07-16 7:37 ` claudiu beznea
2024-08-24 14:53 ` claudiu beznea
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox