]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: OMAP2+: clock/interface: add a clk_features definition for idlest value
authorTero Kristo <t-kristo@ti.com>
Wed, 2 Jul 2014 08:47:44 +0000 (11:47 +0300)
committerPaul Walmsley <paul@pwsan.com>
Tue, 15 Jul 2014 20:09:13 +0000 (14:09 -0600)
Helps to get rid of some runtime cpu_is_x checks. This also allows eventual
migration of the code under clock driver.

Signed-off-by: Tero Kristo <t-kristo@ti.com>
Reviewed-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
arch/arm/mach-omap2/clock.c
arch/arm/mach-omap2/clock.h

index 23b5f050c8a91bcb30bab9cb3dc18b400d28de5b..5a0cac93d9ec8f9aa9b0d97d3832f9522da8d02f 100644 (file)
@@ -305,13 +305,7 @@ void omap2_clk_dflt_find_idlest(struct clk_hw_omap *clk,
         * 34xx reverses this, just to keep us on our toes
         * AM35xx uses both, depending on the module.
         */
-       if (cpu_is_omap24xx())
-               *idlest_val = OMAP24XX_CM_IDLEST_VAL;
-       else if (cpu_is_omap34xx())
-               *idlest_val = OMAP34XX_CM_IDLEST_VAL;
-       else
-               BUG();
-
+       *idlest_val = ti_clk_features.cm_idlest_val;
 }
 
 /**
@@ -788,4 +782,14 @@ void __init ti_clk_init_features(void)
        /* Jitter correction only available on OMAP343X */
        if (cpu_is_omap343x())
                ti_clk_features.flags |= TI_CLK_DPLL_HAS_FREQSEL;
+
+       /* Idlest value for interface clocks.
+        * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
+        * 34xx reverses this, just to keep us on our toes
+        * AM35xx uses both, depending on the module.
+        */
+       if (cpu_is_omap24xx())
+               ti_clk_features.cm_idlest_val = OMAP24XX_CM_IDLEST_VAL;
+       else if (cpu_is_omap34xx())
+               ti_clk_features.cm_idlest_val = OMAP34XX_CM_IDLEST_VAL;
 }
index d3ef147b32a1a5d2c93db0c0850024d3da014e98..0f100dc4e97f3383d46f5c2f1f8f5c6c37c8c533 100644 (file)
@@ -233,6 +233,7 @@ struct ti_clk_features {
        long fint_band1_max;
        long fint_band2_min;
        u8 dpll_bypass_vals;
+       u8 cm_idlest_val;
 };
 
 #define TI_CLK_DPLL_HAS_FREQSEL                (1 << 0)