blob: 7533fc612c797524fcb8ec33353829a497c36a99 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ye Li253531b2017-02-22 16:21:48 +08002/*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
Ye Li253531b2017-02-22 16:21:48 +08004 */
5
6#include <common.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -07007#include <cpu_func.h>
Ye Li253531b2017-02-22 16:21:48 +08008#include <asm/io.h>
9#include <asm/arch/imx-regs.h>
10
11/*
12 * MX7ULP WDOG Register Map
13 */
14struct wdog_regs {
15 u8 cs1;
16 u8 cs2;
17 u16 reserve0;
18 u32 cnt;
19 u32 toval;
20 u32 win;
21};
22
23#ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS
24#define CONFIG_WATCHDOG_TIMEOUT_MSECS 0x1500
25#endif
26
27#define REFRESH_WORD0 0xA602 /* 1st refresh word */
28#define REFRESH_WORD1 0xB480 /* 2nd refresh word */
29
30#define UNLOCK_WORD0 0xC520 /* 1st unlock word */
31#define UNLOCK_WORD1 0xD928 /* 2nd unlock word */
32
33#define WDGCS1_WDGE (1<<7)
34#define WDGCS1_WDGUPDATE (1<<5)
35
36#define WDGCS2_FLG (1<<6)
37
38#define WDG_BUS_CLK (0x0)
39#define WDG_LPO_CLK (0x1)
40#define WDG_32KHZ_CLK (0x2)
41#define WDG_EXT_CLK (0x3)
42
Ye Li253531b2017-02-22 16:21:48 +080043void hw_watchdog_set_timeout(u16 val)
44{
45 /* setting timeout value */
46 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE_ADDR;
47
48 writel(val, &wdog->toval);
49}
50
51void hw_watchdog_reset(void)
52{
53 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE_ADDR;
54
55 writel(REFRESH_WORD0, &wdog->cnt);
56 writel(REFRESH_WORD1, &wdog->cnt);
57}
58
59void hw_watchdog_init(void)
60{
61 u8 val;
62 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE_ADDR;
63
64 writel(UNLOCK_WORD0, &wdog->cnt);
65 writel(UNLOCK_WORD1, &wdog->cnt);
66
67 val = readb(&wdog->cs2);
68 val |= WDGCS2_FLG;
69 writeb(val, &wdog->cs2);
70
71 hw_watchdog_set_timeout(CONFIG_WATCHDOG_TIMEOUT_MSECS);
72 writel(0, &wdog->win);
73
74 writeb(WDG_LPO_CLK, &wdog->cs2);/* setting 1-kHz clock source */
75 writeb((WDGCS1_WDGE | WDGCS1_WDGUPDATE), &wdog->cs1);/* enable counter running */
76
77 hw_watchdog_reset();
78}
79
80void reset_cpu(ulong addr)
81{
82 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE_ADDR;
83
84 writel(UNLOCK_WORD0, &wdog->cnt);
85 writel(UNLOCK_WORD1, &wdog->cnt);
86
87 hw_watchdog_set_timeout(5); /* 5ms timeout */
88 writel(0, &wdog->win);
89
90 writeb(WDG_LPO_CLK, &wdog->cs2);/* setting 1-kHz clock source */
91 writeb(WDGCS1_WDGE, &wdog->cs1);/* enable counter running */
92
93 hw_watchdog_reset();
94
95 while (1);
96}