blob: ff0a68cf7439c31ac8743939b3c503fe8786d066 [file] [log] [blame]
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -07001/*
2 * OMAP2+ MPU WD_TIMER-specific code
3 *
Paul Walmsleyb13159a2012-10-29 20:57:44 -06004 * Copyright (C) 2012 Texas Instruments, Inc.
5 *
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -07006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/io.h>
14#include <linux/err.h>
15
Paul Walmsley37c67d02012-10-29 20:49:44 -060016#include <linux/platform_data/omap-wd-timer.h>
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070017
Paul Walmsley37c67d02012-10-29 20:49:44 -060018#include "omap_hwmod.h"
19#include "omap_device.h"
Nishanth Menona9b365b2011-01-06 19:49:29 -080020#include "wd_timer.h"
Kevin Hilman414e4122012-05-08 11:34:30 -060021#include "common.h"
Paul Walmsley37c67d02012-10-29 20:49:44 -060022#include "prm.h"
23#include "soc.h"
Nishanth Menona9b365b2011-01-06 19:49:29 -080024
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070025/*
26 * In order to avoid any assumptions from bootloader regarding WDT
27 * settings, WDT module is reset during init. This enables the watchdog
28 * timer. Hence it is required to disable the watchdog after the WDT reset
29 * during init. Otherwise the system would reboot as per the default
30 * watchdog timer registers settings.
31 */
32#define OMAP_WDT_WPS 0x34
33#define OMAP_WDT_SPR 0x48
34
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070035int omap2_wd_timer_disable(struct omap_hwmod *oh)
36{
37 void __iomem *base;
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070038
39 if (!oh) {
40 pr_err("%s: Could not look up wdtimer_hwmod\n", __func__);
41 return -EINVAL;
42 }
43
44 base = omap_hwmod_get_mpu_rt_va(oh);
45 if (!base) {
46 pr_err("%s: Could not get the base address for %s\n",
47 oh->name, __func__);
48 return -EINVAL;
49 }
50
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070051 /* sequence required to disable watchdog */
Victor Kamenskyedfaf052014-04-15 20:37:46 +030052 writel_relaxed(0xAAAA, base + OMAP_WDT_SPR);
53 while (readl_relaxed(base + OMAP_WDT_WPS) & 0x10)
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070054 cpu_relax();
55
Victor Kamenskyedfaf052014-04-15 20:37:46 +030056 writel_relaxed(0x5555, base + OMAP_WDT_SPR);
57 while (readl_relaxed(base + OMAP_WDT_WPS) & 0x10)
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070058 cpu_relax();
59
Paul Walmsleyff2516f2010-12-21 15:39:15 -070060 return 0;
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -070061}
62
Kevin Hilman414e4122012-05-08 11:34:30 -060063/**
64 * omap2_wdtimer_reset - reset and disable the WDTIMER IP block
65 * @oh: struct omap_hwmod *
66 *
67 * After the WDTIMER IP blocks are reset on OMAP2/3, we must also take
68 * care to execute the special watchdog disable sequence. This is
69 * because the watchdog is re-armed upon OCP softreset. (On OMAP4,
70 * this behavior was apparently changed and the watchdog is no longer
71 * re-armed after an OCP soft-reset.) Returns -ETIMEDOUT if the reset
72 * did not complete, or 0 upon success.
73 *
74 * XXX Most of this code should be moved to the omap_hwmod.c layer
75 * during a normal merge window. omap_hwmod_softreset() should be
76 * renamed to omap_hwmod_set_ocp_softreset(), and omap_hwmod_softreset()
77 * should call the hwmod _ocp_softreset() code.
78 */
79int omap2_wd_timer_reset(struct omap_hwmod *oh)
80{
81 int c = 0;
82
83 /* Write to the SOFTRESET bit */
84 omap_hwmod_softreset(oh);
85
86 /* Poll on RESETDONE bit */
87 omap_test_timeout((omap_hwmod_read(oh,
88 oh->class->sysc->syss_offs)
89 & SYSS_RESETDONE_MASK),
90 MAX_MODULE_SOFTRESET_WAIT, c);
91
92 if (oh->class->sysc->srst_udelay)
93 udelay(oh->class->sysc->srst_udelay);
94
95 if (c == MAX_MODULE_SOFTRESET_WAIT)
Joe Perches3d0cb732014-09-13 11:31:16 -070096 pr_warn("%s: %s: softreset failed (waited %d usec)\n",
97 __func__, oh->name, MAX_MODULE_SOFTRESET_WAIT);
Kevin Hilman414e4122012-05-08 11:34:30 -060098 else
99 pr_debug("%s: %s: softreset in %d usec\n", __func__,
100 oh->name, c);
101
102 return (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT :
103 omap2_wd_timer_disable(oh);
104}
Paul Walmsley37c67d02012-10-29 20:49:44 -0600105
106static int __init omap_init_wdt(void)
107{
108 int id = -1;
109 struct platform_device *pdev;
110 struct omap_hwmod *oh;
111 char *oh_name = "wd_timer2";
112 char *dev_name = "omap_wdt";
113 struct omap_wd_timer_platform_data pdata;
114
115 if (!cpu_class_is_omap2() || of_have_populated_dt())
116 return 0;
117
118 oh = omap_hwmod_lookup(oh_name);
119 if (!oh) {
120 pr_err("Could not look up wd_timer%d hwmod\n", id);
121 return -EINVAL;
122 }
123
124 pdata.read_reset_sources = prm_read_reset_sources;
125
126 pdev = omap_device_build(dev_name, id, oh, &pdata,
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700127 sizeof(struct omap_wd_timer_platform_data));
Paul Walmsley37c67d02012-10-29 20:49:44 -0600128 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
129 dev_name, oh->name);
130 return 0;
131}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -0800132omap_subsys_initcall(omap_init_wdt);