Skip to content

Commit d3dcc98

Browse files
claudiubezneabebarino
authored andcommitted
clk: versaclock3: Add support for the 5L35023 variant
Add support for the 5L35023 variant of the Versa 3 clock generator. Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com> Link: https://lore.kernel.org/r/20241210170953.2936724-4-claudiu.beznea.uj@bp.renesas.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent 626b777 commit d3dcc98

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/clk/clk-versaclock3.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,8 +1133,14 @@ static const struct vc3_hw_cfg vc3_5p = {
11331133
.se2_clk_sel_msk = BIT(6),
11341134
};
11351135

1136+
static const struct vc3_hw_cfg vc3_5l = {
1137+
.pll2_vco = { .min = 30000000UL, .max = 130000000UL },
1138+
.se2_clk_sel_msk = BIT(0),
1139+
};
1140+
11361141
static const struct of_device_id dev_ids[] = {
11371142
{ .compatible = "renesas,5p35023", .data = &vc3_5p },
1143+
{ .compatible = "renesas,5l35023", .data = &vc3_5l },
11381144
{ /* Sentinel */ }
11391145
};
11401146
MODULE_DEVICE_TABLE(of, dev_ids);

0 commit comments

Comments
 (0)