Skip to content

Commit 9d56323

Browse files
Dinh Nguyenbebarino
authored andcommitted
clk: socfpga: agilex: fix the parents of the psi_ref_clk
The psi_ref_clk comes from the C2 node of the main_pll and periph_pll, not the C3. Fixes: 80c6b7a ("clk: socfpga: agilex: add clock driver for the Agilex platform") Cc: [email protected] Signed-off-by: Kris Chaplin <[email protected]> Signed-off-by: Dinh Nguyen <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent e73f0f0 commit 9d56323

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/clk/socfpga/clk-agilex.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ static const struct clk_parent_data gpio_db_free_mux[] = {
107107
};
108108

109109
static const struct clk_parent_data psi_ref_free_mux[] = {
110-
{ .fw_name = "main_pll_c3",
111-
.name = "main_pll_c3", },
112-
{ .fw_name = "peri_pll_c3",
113-
.name = "peri_pll_c3", },
110+
{ .fw_name = "main_pll_c2",
111+
.name = "main_pll_c2", },
112+
{ .fw_name = "peri_pll_c2",
113+
.name = "peri_pll_c2", },
114114
{ .fw_name = "osc1",
115115
.name = "osc1", },
116116
{ .fw_name = "cb-intosc-hs-div2-clk",

0 commit comments

Comments
 (0)