* [PATCH v4 0/2] clk: rs9: Fix and of_clk_hw_onecell_get() conversion
@ 2026-03-11 15:06 Geert Uytterhoeven
2026-03-11 15:06 ` [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get() Geert Uytterhoeven
2026-03-11 15:06 ` [PATCH v4 2/2] clk: rs9: Convert to clk_hw_onecell_data and of_clk_hw_onecell_get() Geert Uytterhoeven
0 siblings, 2 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2026-03-11 15:06 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Marek Vasut
Cc: linux-clk, linux-renesas-soc, linux-kernel, Geert Uytterhoeven
Hi all,
This patch series contains a fix and further development for the Renesas
9-series PCIe clock generator driver, which were submitted before as
separate patches As the fix hasn't been picked up yet, and the further
development depends on the fix, I am resending them as a series.
Thanks for your comments!
Geert Uytterhoeven (2):
clk: rs9: Add clock index range check to rs9_of_clk_get()
clk: rs9: Convert to clk_hw_onecell_data and of_clk_hw_onecell_get()
drivers/clk/clk-renesas-pcie.c | 39 ++++++++++++++++------------------
1 file changed, 18 insertions(+), 21 deletions(-)
--
2.43.0
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get()
2026-03-11 15:06 [PATCH v4 0/2] clk: rs9: Fix and of_clk_hw_onecell_get() conversion Geert Uytterhoeven
@ 2026-03-11 15:06 ` Geert Uytterhoeven
2026-03-11 15:36 ` Marek Vasut
2026-03-11 15:06 ` [PATCH v4 2/2] clk: rs9: Convert to clk_hw_onecell_data and of_clk_hw_onecell_get() Geert Uytterhoeven
1 sibling, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2026-03-11 15:06 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Marek Vasut
Cc: linux-clk, linux-renesas-soc, linux-kernel, Geert Uytterhoeven
rs9_of_clk_get() does not validate the clock index in the passed
DT clock specifier. If DT specifies an incorrect and out-of-range
index, this will access memory beyond the end of the clk_dif[] array.
Fix by this adding a range check to rs9_of_clk_get().
Fixes: 892e0ddea1aa6f70 ("clk: rs9: Add Renesas 9-series PCIe clock generator driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v4:
- Put in a series,
v3:
- Add error message,
v2:
- Just add the missing range check; the conversion to
of_clk_hw_onecell_get() can be done later.
v1: "[PATCH] clk: rs9: Convert to clk_hw_onecell_data and
of_clk_hw_onecell_get()"
https://lore.kernel.org/a6dce17b15d29a257d09fe0edc199a14c297f1a8.1768836042.git.geert+renesas@glider.be
---
drivers/clk/clk-renesas-pcie.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/clk/clk-renesas-pcie.c b/drivers/clk/clk-renesas-pcie.c
index aa108df12e44fb9f..b9bee616afe8d4ef 100644
--- a/drivers/clk/clk-renesas-pcie.c
+++ b/drivers/clk/clk-renesas-pcie.c
@@ -277,6 +277,11 @@ rs9_of_clk_get(struct of_phandle_args *clkspec, void *data)
struct rs9_driver_data *rs9 = data;
unsigned int idx = clkspec->args[0];
+ if (idx >= rs9->chip_info->num_clks) {
+ pr_err("%s: Invalid clock index %u\n", __func__, idx);
+ return ERR_PTR(-EINVAL);
+ }
+
return rs9->clk_dif[idx];
}
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v4 2/2] clk: rs9: Convert to clk_hw_onecell_data and of_clk_hw_onecell_get()
2026-03-11 15:06 [PATCH v4 0/2] clk: rs9: Fix and of_clk_hw_onecell_get() conversion Geert Uytterhoeven
2026-03-11 15:06 ` [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get() Geert Uytterhoeven
@ 2026-03-11 15:06 ` Geert Uytterhoeven
1 sibling, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2026-03-11 15:06 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Marek Vasut
Cc: linux-clk, linux-renesas-soc, linux-kernel, Geert Uytterhoeven,
Marek Vasut
Convert the rs9 clock driver to use the of_clk_hw_onecell_get() helper,
which requires using the clk_hw_onecell_data structure. Embedding that
structure in the rs9_driver_data structure has the benefit that the
clock array always has the correct size, and thus can no longer become
out of sync when adding support for new rs9 variants.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
v4:
- Add Reviewed-by,
- Rebase on top of "clk: rs9: Add clock index range check to
rs9_of_clk_get()", so this becomes a pure refactoring instead of a
fix,
- Put in a series,
(v3 and v2 do not exist)
v1:
- https://lore.kernel.org/a6dce17b15d29a257d09fe0edc199a14c297f1a8.1768836042.git.geert+renesas@glider.be
---
drivers/clk/clk-renesas-pcie.c | 44 ++++++++++++++--------------------
1 file changed, 18 insertions(+), 26 deletions(-)
diff --git a/drivers/clk/clk-renesas-pcie.c b/drivers/clk/clk-renesas-pcie.c
index b9bee616afe8d4ef..2b8b6b82250360d5 100644
--- a/drivers/clk/clk-renesas-pcie.c
+++ b/drivers/clk/clk-renesas-pcie.c
@@ -64,10 +64,11 @@ struct rs9_driver_data {
struct i2c_client *client;
struct regmap *regmap;
const struct rs9_chip_info *chip_info;
- struct clk_hw *clk_dif[8];
u8 pll_amplitude;
u8 pll_ssc;
u8 clk_dif_sr;
+ /* must be last */
+ struct clk_hw_onecell_data onecell;
};
/*
@@ -271,37 +272,28 @@ static void rs9_update_config(struct rs9_driver_data *rs9)
}
}
-static struct clk_hw *
-rs9_of_clk_get(struct of_phandle_args *clkspec, void *data)
-{
- struct rs9_driver_data *rs9 = data;
- unsigned int idx = clkspec->args[0];
-
- if (idx >= rs9->chip_info->num_clks) {
- pr_err("%s: Invalid clock index %u\n", __func__, idx);
- return ERR_PTR(-EINVAL);
- }
-
- return rs9->clk_dif[idx];
-}
-
static int rs9_probe(struct i2c_client *client)
{
+ const struct rs9_chip_info *chip_info;
unsigned char name[5] = "DIF0";
struct rs9_driver_data *rs9;
unsigned int vid, did;
struct clk_hw *hw;
int i, ret;
- rs9 = devm_kzalloc(&client->dev, sizeof(*rs9), GFP_KERNEL);
+ chip_info = i2c_get_match_data(client);
+ if (!chip_info)
+ return -EINVAL;
+
+ rs9 = devm_kzalloc(&client->dev, struct_size(rs9, onecell.hws,
+ chip_info->num_clks), GFP_KERNEL);
if (!rs9)
return -ENOMEM;
i2c_set_clientdata(client, rs9);
rs9->client = client;
- rs9->chip_info = i2c_get_match_data(client);
- if (!rs9->chip_info)
- return -EINVAL;
+ rs9->chip_info = chip_info;
+ rs9->onecell.num = chip_info->num_clks;
/* Fetch common configuration from DT (if specified) */
ret = rs9_get_common_config(rs9);
@@ -309,7 +301,7 @@ static int rs9_probe(struct i2c_client *client)
return ret;
/* Fetch DIFx output configuration from DT (if specified) */
- for (i = 0; i < rs9->chip_info->num_clks; i++) {
+ for (i = 0; i < rs9->onecell.num; i++) {
ret = rs9_get_output_config(rs9, i);
if (ret)
return ret;
@@ -335,24 +327,24 @@ static int rs9_probe(struct i2c_client *client)
return ret;
vid &= RS9_REG_VID_MASK;
- if (vid != RS9_REG_VID_IDT || did != rs9->chip_info->did)
+ if (vid != RS9_REG_VID_IDT || did != chip_info->did)
return dev_err_probe(&client->dev, -ENODEV,
"Incorrect VID/DID: %#02x, %#02x. Expected %#02x, %#02x\n",
- vid, did, RS9_REG_VID_IDT,
- rs9->chip_info->did);
+ vid, did, RS9_REG_VID_IDT, chip_info->did);
/* Register clock */
- for (i = 0; i < rs9->chip_info->num_clks; i++) {
+ for (i = 0; i < rs9->onecell.num; i++) {
snprintf(name, 5, "DIF%d", i);
hw = devm_clk_hw_register_fixed_factor_index(&client->dev, name,
0, 0, 4, 1);
if (IS_ERR(hw))
return PTR_ERR(hw);
- rs9->clk_dif[i] = hw;
+ rs9->onecell.hws[i] = hw;
}
- ret = devm_of_clk_add_hw_provider(&client->dev, rs9_of_clk_get, rs9);
+ ret = devm_of_clk_add_hw_provider(&client->dev, of_clk_hw_onecell_get,
+ &rs9->onecell);
if (!ret)
rs9_update_config(rs9);
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get()
2026-03-11 15:06 ` [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get() Geert Uytterhoeven
@ 2026-03-11 15:36 ` Marek Vasut
0 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2026-03-11 15:36 UTC (permalink / raw)
To: Geert Uytterhoeven, Michael Turquette, Stephen Boyd
Cc: linux-clk, linux-renesas-soc, linux-kernel
On 3/11/26 4:06 PM, Geert Uytterhoeven wrote:
> rs9_of_clk_get() does not validate the clock index in the passed
> DT clock specifier. If DT specifies an incorrect and out-of-range
> index, this will access memory beyond the end of the clk_dif[] array.
>
> Fix by this adding a range check to rs9_of_clk_get().
>
> Fixes: 892e0ddea1aa6f70 ("clk: rs9: Add Renesas 9-series PCIe clock generator driver")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-03-11 15:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 15:06 [PATCH v4 0/2] clk: rs9: Fix and of_clk_hw_onecell_get() conversion Geert Uytterhoeven
2026-03-11 15:06 ` [PATCH v4 1/2] clk: rs9: Add clock index range check to rs9_of_clk_get() Geert Uytterhoeven
2026-03-11 15:36 ` Marek Vasut
2026-03-11 15:06 ` [PATCH v4 2/2] clk: rs9: Convert to clk_hw_onecell_data and of_clk_hw_onecell_get() Geert Uytterhoeven
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox