hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
 *
 * Derived from linux/drivers/watchdog/bcm63xx_wdt.c:
 *    Copyright (C) 2007 Miguel Gaio <miguel.gaio@efixo.com>
 *    Copyright (C) 2008 Florian Fainelli <florian@openwrt.org>
 *
 * SPDX-License-Identifier: GPL-2.0+
 */
 
#include <common.h>
#include <dm.h>
#include <wdt.h>
#include <asm/io.h>
 
/* WDT Value register */
#define WDT_VAL_REG        0x0
#define WDT_VAL_MIN        0x00000002
#define WDT_VAL_MAX        0xfffffffe
 
/* WDT Control register */
#define WDT_CTL_REG        0x4
#define WDT_CTL_START1_MASK    0x0000ff00
#define WDT_CTL_START2_MASK    0x000000ff
#define WDT_CTL_STOP1_MASK    0x0000ee00
#define WDT_CTL_STOP2_MASK    0x000000ee
 
struct bcm6345_wdt_priv {
   void __iomem *regs;
};
 
static int bcm6345_wdt_reset(struct udevice *dev)
{
   struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
 
   writel_be(WDT_CTL_START1_MASK, priv->regs + WDT_CTL_REG);
   writel_be(WDT_CTL_START2_MASK, priv->regs + WDT_CTL_REG);
 
   return 0;
}
 
static int bcm6345_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
{
   struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
 
   if (timeout < WDT_VAL_MIN) {
       debug("watchdog won't fire with less than 2 ticks\n");
       timeout = WDT_VAL_MIN;
   } else if (timeout > WDT_VAL_MAX) {
       debug("maximum watchdog timeout exceeded\n");
       timeout = WDT_VAL_MAX;
   }
 
   writel_be(timeout, priv->regs + WDT_VAL_REG);
 
   return bcm6345_wdt_reset(dev);
}
 
static int bcm6345_wdt_expire_now(struct udevice *dev, ulong flags)
{
   return bcm6345_wdt_start(dev, WDT_VAL_MIN, flags);
}
 
static int bcm6345_wdt_stop(struct udevice *dev)
{
   struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
 
   writel_be(WDT_CTL_STOP1_MASK, priv->regs + WDT_CTL_REG);
   writel_be(WDT_CTL_STOP2_MASK, priv->regs + WDT_CTL_REG);
 
   return 0;
}
 
static const struct wdt_ops bcm6345_wdt_ops = {
   .expire_now = bcm6345_wdt_expire_now,
   .reset = bcm6345_wdt_reset,
   .start = bcm6345_wdt_start,
   .stop = bcm6345_wdt_stop,
};
 
static const struct udevice_id bcm6345_wdt_ids[] = {
   { .compatible = "brcm,bcm6345-wdt" },
   { /* sentinel */ }
};
 
static int bcm6345_wdt_probe(struct udevice *dev)
{
   struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
   fdt_addr_t addr;
   fdt_size_t size;
 
   addr = devfdt_get_addr_size_index(dev, 0, &size);
   if (addr == FDT_ADDR_T_NONE)
       return -EINVAL;
 
   priv->regs = ioremap(addr, size);
 
   bcm6345_wdt_stop(dev);
 
   return 0;
}
 
U_BOOT_DRIVER(wdt_bcm6345) = {
   .name = "wdt_bcm6345",
   .id = UCLASS_WDT,
   .of_match = bcm6345_wdt_ids,
   .ops = &bcm6345_wdt_ops,
   .priv_auto_alloc_size = sizeof(struct bcm6345_wdt_priv),
   .probe = bcm6345_wdt_probe,
};