Commit 066edb2d authored by Tero Kristo's avatar Tero Kristo Committed by Paul Walmsley

ARM: OMAP2+: clock/interface: add a clk_features definition for idlest value

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: default avatarTero Kristo <t-kristo@ti.com>
Reviewed-by: default avatarMike Turquette <mturquette@linaro.org>
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
parent 2337c5b5
...@@ -305,13 +305,7 @@ void omap2_clk_dflt_find_idlest(struct clk_hw_omap *clk, ...@@ -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 * 34xx reverses this, just to keep us on our toes
* AM35xx uses both, depending on the module. * AM35xx uses both, depending on the module.
*/ */
if (cpu_is_omap24xx()) *idlest_val = ti_clk_features.cm_idlest_val;
*idlest_val = OMAP24XX_CM_IDLEST_VAL;
else if (cpu_is_omap34xx())
*idlest_val = OMAP34XX_CM_IDLEST_VAL;
else
BUG();
} }
/** /**
...@@ -788,4 +782,14 @@ void __init ti_clk_init_features(void) ...@@ -788,4 +782,14 @@ void __init ti_clk_init_features(void)
/* Jitter correction only available on OMAP343X */ /* Jitter correction only available on OMAP343X */
if (cpu_is_omap343x()) if (cpu_is_omap343x())
ti_clk_features.flags |= TI_CLK_DPLL_HAS_FREQSEL; 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;
} }
...@@ -233,6 +233,7 @@ struct ti_clk_features { ...@@ -233,6 +233,7 @@ struct ti_clk_features {
long fint_band1_max; long fint_band1_max;
long fint_band2_min; long fint_band2_min;
u8 dpll_bypass_vals; u8 dpll_bypass_vals;
u8 cm_idlest_val;
}; };
#define TI_CLK_DPLL_HAS_FREQSEL (1 << 0) #define TI_CLK_DPLL_HAS_FREQSEL (1 << 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment