diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-12-21 21:56:17 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-12-21 21:56:17 -0500 |
commit | 81fbc5ef9b22df2e2198dd0c530719a263a8d1c5 (patch) | |
tree | e11b03021482b9ea8e0623a160eb86e03841b40d /arch/arm/mach-omap2/devices.c | |
parent | 233cbe5b94096f95ba7bca2162d63275b0b90b5b (diff) |
OMAP2+: wd_timer: separate watchdog disable code from the rest of mach-omap2/devices.c
Split the wd_timer disable code out into its own file,
mach-omap2/wd_timer.c; it belongs in its own file rather than
cluttering up devices.c.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Charulatha Varadarajan <charu@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 55 |
1 files changed, 5 insertions, 50 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 1bca147ac91d..9221a486b51f 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
@@ -33,6 +33,7 @@ | |||
33 | 33 | ||
34 | #include "mux.h" | 34 | #include "mux.h" |
35 | #include "control.h" | 35 | #include "control.h" |
36 | #include "wd_timer.h" | ||
36 | 37 | ||
37 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) | 38 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) |
38 | 39 | ||
@@ -955,69 +956,23 @@ static inline void omap_init_vout(void) {} | |||
955 | 956 | ||
956 | /*-------------------------------------------------------------------------*/ | 957 | /*-------------------------------------------------------------------------*/ |
957 | 958 | ||
958 | /* | ||
959 | * Inorder to avoid any assumptions from bootloader regarding WDT | ||
960 | * settings, WDT module is reset during init. This enables the watchdog | ||
961 | * timer. Hence it is required to disable the watchdog after the WDT reset | ||
962 | * during init. Otherwise the system would reboot as per the default | ||
963 | * watchdog timer registers settings. | ||
964 | */ | ||
965 | #define OMAP_WDT_WPS (0x34) | ||
966 | #define OMAP_WDT_SPR (0x48) | ||
967 | |||
968 | static int omap2_disable_wdt(struct omap_hwmod *oh, void *unused) | 959 | static int omap2_disable_wdt(struct omap_hwmod *oh, void *unused) |
969 | { | 960 | { |
970 | void __iomem *base; | 961 | return omap2_wd_timer_disable(oh); |
971 | int ret; | ||
972 | |||
973 | if (!oh) { | ||
974 | pr_err("%s: Could not look up wdtimer_hwmod\n", __func__); | ||
975 | return -EINVAL; | ||
976 | } | ||
977 | |||
978 | base = omap_hwmod_get_mpu_rt_va(oh); | ||
979 | if (!base) { | ||
980 | pr_err("%s: Could not get the base address for %s\n", | ||
981 | oh->name, __func__); | ||
982 | return -EINVAL; | ||
983 | } | ||
984 | |||
985 | /* Enable the clocks before accessing the WDT registers */ | ||
986 | ret = omap_hwmod_enable(oh); | ||
987 | if (ret) { | ||
988 | pr_err("%s: Could not enable clocks for %s\n", | ||
989 | oh->name, __func__); | ||
990 | return ret; | ||
991 | } | ||
992 | |||
993 | /* sequence required to disable watchdog */ | ||
994 | __raw_writel(0xAAAA, base + OMAP_WDT_SPR); | ||
995 | while (__raw_readl(base + OMAP_WDT_WPS) & 0x10) | ||
996 | cpu_relax(); | ||
997 | |||
998 | __raw_writel(0x5555, base + OMAP_WDT_SPR); | ||
999 | while (__raw_readl(base + OMAP_WDT_WPS) & 0x10) | ||
1000 | cpu_relax(); | ||
1001 | |||
1002 | ret = omap_hwmod_idle(oh); | ||
1003 | if (ret) | ||
1004 | pr_err("%s: Could not disable clocks for %s\n", | ||
1005 | oh->name, __func__); | ||
1006 | |||
1007 | return ret; | ||
1008 | } | 962 | } |
1009 | 963 | ||
1010 | static void __init omap_disable_wdt(void) | 964 | static void __init omap_disable_wdt(void) |
1011 | { | 965 | { |
1012 | if (cpu_class_is_omap2()) | 966 | if (cpu_class_is_omap2()) |
1013 | omap_hwmod_for_each_by_class("wd_timer", | 967 | omap_hwmod_for_each_by_class("wd_timer", |
1014 | omap2_disable_wdt, NULL); | 968 | omap2_disable_wdt, NULL); |
1015 | return; | 969 | return; |
1016 | } | 970 | } |
1017 | 971 | ||
1018 | static int __init omap2_init_devices(void) | 972 | static int __init omap2_init_devices(void) |
1019 | { | 973 | { |
1020 | /* please keep these calls, and their implementations above, | 974 | /* |
975 | * please keep these calls, and their implementations above, | ||
1021 | * in alphabetical order so they're easier to sort through. | 976 | * in alphabetical order so they're easier to sort through. |
1022 | */ | 977 | */ |
1023 | omap_disable_wdt(); | 978 | omap_disable_wdt(); |