Commit d3dcc98f authored by Claudiu Beznea's avatar Claudiu Beznea Committed by Stephen Boyd
Browse files

clk: versaclock3: Add support for the 5L35023 variant

parent 626b7773
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1133,8 +1133,14 @@ static const struct vc3_hw_cfg vc3_5p = {
	.se2_clk_sel_msk = BIT(6),
};

static const struct vc3_hw_cfg vc3_5l = {
	.pll2_vco = { .min = 30000000UL, .max = 130000000UL },
	.se2_clk_sel_msk = BIT(0),
};

static const struct of_device_id dev_ids[] = {
	{ .compatible = "renesas,5p35023", .data = &vc3_5p },
	{ .compatible = "renesas,5l35023", .data = &vc3_5l },
	{ /* Sentinel */ }
};
MODULE_DEVICE_TABLE(of, dev_ids);