1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * OMAP2+ MPU WD_TIMER-specific code
5 * Copyright (C) 2012 Texas Instruments, Inc.
8 #include <linux/kernel.h>
10 #include <linux/err.h>
12 #include <linux/platform_data/omap-wd-timer.h>
14 #include "omap_hwmod.h"
15 #include "omap_device.h"
22 * In order to avoid any assumptions from bootloader regarding WDT
23 * settings, WDT module is reset during init. This enables the watchdog
24 * timer. Hence it is required to disable the watchdog after the WDT reset
25 * during init. Otherwise the system would reboot as per the default
26 * watchdog timer registers settings.
28 #define OMAP_WDT_WPS 0x34
29 #define OMAP_WDT_SPR 0x48
31 int omap2_wd_timer_disable(struct omap_hwmod
*oh
)
36 pr_err("%s: Could not look up wdtimer_hwmod\n", __func__
);
40 base
= omap_hwmod_get_mpu_rt_va(oh
);
42 pr_err("%s: Could not get the base address for %s\n",
47 /* sequence required to disable watchdog */
48 writel_relaxed(0xAAAA, base
+ OMAP_WDT_SPR
);
49 while (readl_relaxed(base
+ OMAP_WDT_WPS
) & 0x10)
52 writel_relaxed(0x5555, base
+ OMAP_WDT_SPR
);
53 while (readl_relaxed(base
+ OMAP_WDT_WPS
) & 0x10)
60 * omap2_wdtimer_reset - reset and disable the WDTIMER IP block
61 * @oh: struct omap_hwmod *
63 * After the WDTIMER IP blocks are reset on OMAP2/3, we must also take
64 * care to execute the special watchdog disable sequence. This is
65 * because the watchdog is re-armed upon OCP softreset. (On OMAP4,
66 * this behavior was apparently changed and the watchdog is no longer
67 * re-armed after an OCP soft-reset.) Returns -ETIMEDOUT if the reset
68 * did not complete, or 0 upon success.
70 * XXX Most of this code should be moved to the omap_hwmod.c layer
71 * during a normal merge window. omap_hwmod_softreset() should be
72 * renamed to omap_hwmod_set_ocp_softreset(), and omap_hwmod_softreset()
73 * should call the hwmod _ocp_softreset() code.
75 int omap2_wd_timer_reset(struct omap_hwmod
*oh
)
79 /* Write to the SOFTRESET bit */
80 omap_hwmod_softreset(oh
);
82 /* Poll on RESETDONE bit */
83 omap_test_timeout((omap_hwmod_read(oh
,
84 oh
->class->sysc
->syss_offs
)
85 & SYSS_RESETDONE_MASK
),
86 MAX_MODULE_SOFTRESET_WAIT
, c
);
88 if (oh
->class->sysc
->srst_udelay
)
89 udelay(oh
->class->sysc
->srst_udelay
);
91 if (c
== MAX_MODULE_SOFTRESET_WAIT
)
92 pr_warn("%s: %s: softreset failed (waited %d usec)\n",
93 __func__
, oh
->name
, MAX_MODULE_SOFTRESET_WAIT
);
95 pr_debug("%s: %s: softreset in %d usec\n", __func__
,
98 return (c
== MAX_MODULE_SOFTRESET_WAIT
) ? -ETIMEDOUT
:
99 omap2_wd_timer_disable(oh
);