提交 b5088c0d 编写于 作者: R Russell King 提交者: Russell King

[ARM] omap: clks: call recalc after any rate change

This implements the remainder of:
  OMAP clock: move rate recalc, propagation code up to plat-omap/clock.c
from Paul Walmsley which is not covered by the previous:
  [ARM] omap: move clock propagation into core omap clock code
  [ARM] omap: remove unnecessary calls to propagate_rate()
  [ARM] omap: move propagate_rate() calls into generic omap clock code
commits.
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 7b0f89d7
...@@ -441,7 +441,6 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate) ...@@ -441,7 +441,6 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked()); omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
omap2xxx_sdrc_reprogram(done_rate, 0); omap2xxx_sdrc_reprogram(done_rate, 0);
} }
omap2_dpllcore_recalc(&dpll_ck);
ret = 0; ret = 0;
dpll_exit: dpll_exit:
...@@ -570,7 +569,6 @@ static int omap2_select_table_rate(struct clk *clk, unsigned long rate) ...@@ -570,7 +569,6 @@ static int omap2_select_table_rate(struct clk *clk, unsigned long rate)
local_irq_restore(flags); local_irq_restore(flags);
} }
omap2_dpllcore_recalc(&dpll_ck);
return 0; return 0;
} }
......
...@@ -614,8 +614,6 @@ static int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) ...@@ -614,8 +614,6 @@ static int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate)
omap3_noncore_dpll_program(clk, dd->last_rounded_m, dd->last_rounded_n, omap3_noncore_dpll_program(clk, dd->last_rounded_m, dd->last_rounded_n,
freqsel); freqsel);
omap3_dpll_recalc(clk);
return 0; return 0;
} }
...@@ -693,8 +691,6 @@ static int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate) ...@@ -693,8 +691,6 @@ static int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate)
sp->actim_ctrlb, new_div); sp->actim_ctrlb, new_div);
local_irq_enable(); local_irq_enable();
omap2_clksel_recalc(clk);
return 0; return 0;
} }
......
...@@ -140,8 +140,12 @@ int clk_set_rate(struct clk *clk, unsigned long rate) ...@@ -140,8 +140,12 @@ int clk_set_rate(struct clk *clk, unsigned long rate)
spin_lock_irqsave(&clockfw_lock, flags); spin_lock_irqsave(&clockfw_lock, flags);
if (arch_clock->clk_set_rate) if (arch_clock->clk_set_rate)
ret = arch_clock->clk_set_rate(clk, rate); ret = arch_clock->clk_set_rate(clk, rate);
if (ret == 0 && (clk->flags & RATE_PROPAGATES)) if (ret == 0) {
propagate_rate(clk); if (clk->recalc)
clk->recalc(clk);
if (clk->flags & RATE_PROPAGATES)
propagate_rate(clk);
}
spin_unlock_irqrestore(&clockfw_lock, flags); spin_unlock_irqrestore(&clockfw_lock, flags);
return ret; return ret;
...@@ -159,8 +163,12 @@ int clk_set_parent(struct clk *clk, struct clk *parent) ...@@ -159,8 +163,12 @@ int clk_set_parent(struct clk *clk, struct clk *parent)
spin_lock_irqsave(&clockfw_lock, flags); spin_lock_irqsave(&clockfw_lock, flags);
if (arch_clock->clk_set_parent) if (arch_clock->clk_set_parent)
ret = arch_clock->clk_set_parent(clk, parent); ret = arch_clock->clk_set_parent(clk, parent);
if (ret == 0 && (clk->flags & RATE_PROPAGATES)) if (ret == 0) {
propagate_rate(clk); if (clk->recalc)
clk->recalc(clk);
if (clk->flags & RATE_PROPAGATES)
propagate_rate(clk);
}
spin_unlock_irqrestore(&clockfw_lock, flags); spin_unlock_irqrestore(&clockfw_lock, flags);
return ret; return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册