OMAP2/3/4 clock: omap2_clk_prepare_for_reboot() is OMAP2xxx-only
authorPaul Walmsley <paul@pwsan.com>
Wed, 27 Jan 2010 03:13:11 +0000 (20:13 -0700)
committerPaul Walmsley <paul@pwsan.com>
Fri, 29 Jan 2010 17:14:22 +0000 (10:14 -0700)
omap2_clk_prepare_for_reboot() is only applicable to OMAP2xxx chips,
so rename it to omap2xxx_clk_prepare_for_reboot() and only call it when
running on OMAP2xxx chips.  Remove the old stub in the OMAP3 clock code.

Signed-off-by: Paul Walmsley <paul@pwsan.com>
arch/arm/mach-omap2/clock.h
arch/arm/mach-omap2/clock2xxx.c
arch/arm/mach-omap2/clock2xxx.h
arch/arm/mach-omap2/clock34xx.c
arch/arm/mach-omap2/clock44xx.c
arch/arm/mach-omap2/prcm.c

index dcd58cde13b6f25095fd267428f49666aa0abf5e..be5a55f5703051f1a2b60d2788b1f94780208c37 100644 (file)
@@ -84,7 +84,6 @@ int omap2_clksel_set_parent(struct clk *clk, struct clk *new_parent);
 u32 omap2_get_dpll_rate(struct clk *clk);
 void omap2_init_dpll_parent(struct clk *clk);
 int omap2_wait_clock_ready(void __iomem *reg, u32 cval, const char *name);
-void omap2_clk_prepare_for_reboot(void);
 int omap2_dflt_clk_enable(struct clk *clk);
 void omap2_dflt_clk_disable(struct clk *clk);
 void omap2_clk_dflt_find_companion(struct clk *clk, void __iomem **other_reg,
index e98f48b0a5c6c6e2126a23cc28ec69102277f4bd..a48b01ab0e359fe2736c96554ada04a11c6399ac 100644 (file)
@@ -71,7 +71,7 @@ const struct clkops clkops_omap2430_i2chs_wait = {
 /*
  * Set clocks for bypass mode for reboot to work.
  */
-void omap2_clk_prepare_for_reboot(void)
+void omap2xxx_clk_prepare_for_reboot(void)
 {
        u32 rate;
 
index c14061b2b9f1abb7517d0e7bc587ce4053c8fcf1..bed294ac3647c40197dd1561635f69e2c2044e2e 100644 (file)
@@ -18,6 +18,7 @@ int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate);
 unsigned long omap2xxx_clk_get_core_rate(struct clk *clk);
 u32 omap2xxx_get_apll_clkin(void);
 u32 omap2xxx_get_sysclkdiv(void);
+void omap2xxx_clk_prepare_for_reboot(void);
 
 /* REVISIT: These should be set dynamically for CONFIG_MULTI_OMAP2 */
 #ifdef CONFIG_ARCH_OMAP2420
index 8a7db7a03bec1148cd9f59875badb7ed5b738770..34d39504628013e3c969ceb6643d10af15ab457d 100644 (file)
@@ -150,25 +150,6 @@ int omap3_dpll4_set_rate(struct clk *clk, unsigned long rate)
        return omap3_noncore_dpll_set_rate(clk, rate);
 }
 
-/* Common clock code */
-
-/*
- * Set clocks for bypass mode for reboot to work.
- */
-void omap2_clk_prepare_for_reboot(void)
-{
-       /* REVISIT: Not ready for 343x */
-#if 0
-       u32 rate;
-
-       if (vclk == NULL || sclk == NULL)
-               return;
-
-       rate = clk_get_rate(sclk);
-       clk_set_rate(vclk, rate);
-#endif
-}
-
 void omap3_clk_lock_dpll5(void)
 {
        struct clk *dpll5_clk;
@@ -191,6 +172,8 @@ void omap3_clk_lock_dpll5(void)
        return;
 }
 
+/* Common clock code */
+
 /* REVISIT: Move this init stuff out into clock.c */
 
 /*
index 08dd6427df7004f06149f67a43c0a3bfe71df036..c238717e37609c809783703a2a18301e8a00ae6e 100644 (file)
@@ -17,8 +17,3 @@ const struct clkops clkops_noncore_dpll_ops = {
        .enable         = &omap3_noncore_dpll_enable,
        .disable        = &omap3_noncore_dpll_disable,
 };
-
-void omap2_clk_prepare_for_reboot(void)
-{
-       return;
-}
index abafd2298ece0a44eabb3c78dcc83fff98532d8b..e8e121a41d6d69bb38a4f330422fe33d6b2f1bd5 100644 (file)
@@ -29,6 +29,7 @@
 #include <plat/control.h>
 
 #include "clock.h"
+#include "clock2xxx.h"
 #include "cm.h"
 #include "prm.h"
 #include "prm-regbits-24xx.h"
@@ -133,11 +134,12 @@ EXPORT_SYMBOL(omap_prcm_get_reset_sources);
 void omap_prcm_arch_reset(char mode)
 {
        s16 prcm_offs;
-       omap2_clk_prepare_for_reboot();
 
-       if (cpu_is_omap24xx())
+       if (cpu_is_omap24xx()) {
+               omap2xxx_clk_prepare_for_reboot();
+
                prcm_offs = WKUP_MOD;
-       else if (cpu_is_omap34xx()) {
+       else if (cpu_is_omap34xx()) {
                u32 l;
 
                prcm_offs = OMAP3430_GR_MOD;