|
@@ -88,9 +88,9 @@ struct clk {
|
|
void (*init)(struct clk *);
|
|
void (*init)(struct clk *);
|
|
__u8 enable_bit;
|
|
__u8 enable_bit;
|
|
__s8 usecount;
|
|
__s8 usecount;
|
|
|
|
+ u8 fixed_div;
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) || \
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) || \
|
|
defined(CONFIG_ARCH_OMAP4)
|
|
defined(CONFIG_ARCH_OMAP4)
|
|
- u8 fixed_div;
|
|
|
|
void __iomem *clksel_reg;
|
|
void __iomem *clksel_reg;
|
|
u32 clksel_mask;
|
|
u32 clksel_mask;
|
|
const struct clksel *clksel;
|
|
const struct clksel *clksel;
|
|
@@ -134,6 +134,7 @@ extern void propagate_rate(struct clk *clk);
|
|
extern void recalculate_root_clocks(void);
|
|
extern void recalculate_root_clocks(void);
|
|
extern unsigned long followparent_recalc(struct clk *clk);
|
|
extern unsigned long followparent_recalc(struct clk *clk);
|
|
extern void clk_enable_init_clocks(void);
|
|
extern void clk_enable_init_clocks(void);
|
|
|
|
+unsigned long omap_fixed_divisor_recalc(struct clk *clk);
|
|
#ifdef CONFIG_CPU_FREQ
|
|
#ifdef CONFIG_CPU_FREQ
|
|
extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table);
|
|
extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table);
|
|
extern void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table);
|
|
extern void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table);
|