clk: meson: meson8b: don't register the XTAL clock when provided via OF
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Sun, 17 Nov 2019 13:59:26 +0000 (14:59 +0100)
committerJerome Brunet <jbrunet@baylibre.com>
Wed, 11 Dec 2019 13:06:31 +0000 (14:06 +0100)
The XTAL clock is an actual crystal on the PCB. Thus the meson8b clock
driver should not register the XTAL clock - instead it should be
provided via .dts and then passed to the clock controller.

Skip the registration of the XTAL clock if a parent clock is provided
via OF. Fall back to registering the XTAL clock if this is not the case
to keep support for old .dtbs.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
drivers/clk/meson/meson8b.c

index f857a2c..44e97ba 100644 (file)
@@ -3687,10 +3687,16 @@ static void __init meson8b_clkc_init_common(struct device_node *np,
                meson8b_clk_regmaps[i]->map = map;
 
        /*
-        * register all clks
-        * CLKID_UNUSED = 0, so skip it and start with CLKID_XTAL = 1
+        * always skip CLKID_UNUSED and also skip XTAL if the .dtb provides the
+        * XTAL clock as input.
         */
-       for (i = CLKID_XTAL; i < CLK_NR_CLKS; i++) {
+       if (!IS_ERR(of_clk_get_by_name(np, "xtal")))
+               i = CLKID_PLL_FIXED;
+       else
+               i = CLKID_XTAL;
+
+       /* register all clks */
+       for (; i < CLK_NR_CLKS; i++) {
                /* array might be sparse */
                if (!clk_hw_onecell_data->hws[i])
                        continue;