hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * Copyright (C) 2013 Altera Corporation <www.altera.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
#include <watchdog.h>
#include <asm/io.h>
#include <asm/utils.h>
 
#define DW_WDT_CR    0x00
#define DW_WDT_TORR    0x04
#define DW_WDT_CRR    0x0C
 
#define DW_WDT_CR_EN_OFFSET    0x00
#define DW_WDT_CR_RMOD_OFFSET    0x01
#define DW_WDT_CR_RMOD_VAL    0x00
#define DW_WDT_CRR_RESTART_VAL    0x76
 
/*
 * Set the watchdog time interval.
 * Counter is 32 bit.
 */
static int designware_wdt_settimeout(unsigned int timeout)
{
   signed int i;
 
   /* calculate the timeout range value */
   i = (log_2_n_round_up(timeout * CONFIG_DW_WDT_CLOCK_KHZ)) - 16;
   if (i > 15)
       i = 15;
   if (i < 0)
       i = 0;
 
   writel((i | (i << 4)), (CONFIG_DW_WDT_BASE + DW_WDT_TORR));
   return 0;
}
 
static void designware_wdt_enable(void)
{
   writel(((DW_WDT_CR_RMOD_VAL << DW_WDT_CR_RMOD_OFFSET) |
         (0x1 << DW_WDT_CR_EN_OFFSET)),
         (CONFIG_DW_WDT_BASE + DW_WDT_CR));
}
 
static unsigned int designware_wdt_is_enabled(void)
{
   unsigned long val;
   val = readl((CONFIG_DW_WDT_BASE + DW_WDT_CR));
   return val & 0x1;
}
 
#if defined(CONFIG_HW_WATCHDOG)
void hw_watchdog_reset(void)
{
   if (designware_wdt_is_enabled())
       /* restart the watchdog counter */
       writel(DW_WDT_CRR_RESTART_VAL,
              (CONFIG_DW_WDT_BASE + DW_WDT_CRR));
}
 
void hw_watchdog_init(void)
{
   /* reset to disable the watchdog */
   hw_watchdog_reset();
   /* set timer in miliseconds */
   designware_wdt_settimeout(CONFIG_WATCHDOG_TIMEOUT_MSECS);
   /* enable the watchdog */
   designware_wdt_enable();
   /* reset the watchdog */
   hw_watchdog_reset();
}
#endif