]> Git Repo - linux.git/commitdiff
clk: socfpga: agilex: fix the parents of the psi_ref_clk
authorDinh Nguyen <[email protected]>
Tue, 13 Jul 2021 14:46:19 +0000 (09:46 -0500)
committerStephen Boyd <[email protected]>
Tue, 27 Jul 2021 00:56:21 +0000 (17:56 -0700)
The psi_ref_clk comes from the C2 node of the main_pll and periph_pll,
not the C3.

Fixes: 80c6b7a0894f ("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]>
drivers/clk/socfpga/clk-agilex.c

index 1cb21ea79c640d960ad00e18b89595ee2bf2e5ea..9dffe9ba0e740f9e87568b7cb00126d6fd8092ca 100644 (file)
@@ -107,10 +107,10 @@ static const struct clk_parent_data gpio_db_free_mux[] = {
 };
 
 static const struct clk_parent_data psi_ref_free_mux[] = {
-       { .fw_name = "main_pll_c3",
-         .name = "main_pll_c3", },
-       { .fw_name = "peri_pll_c3",
-         .name = "peri_pll_c3", },
+       { .fw_name = "main_pll_c2",
+         .name = "main_pll_c2", },
+       { .fw_name = "peri_pll_c2",
+         .name = "peri_pll_c2", },
        { .fw_name = "osc1",
          .name = "osc1", },
        { .fw_name = "cb-intosc-hs-div2-clk",
This page took 0.058845 seconds and 4 git commands to generate.