spi: atmel: Drop atmel_spi.h
[oweals/u-boot.git] / drivers / watchdog / sp805_wdt.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Watchdog driver for SP805 on some Layerscape SoC
4  *
5  * Copyright 2019 NXP
6  */
7
8 #include <log.h>
9 #include <asm/io.h>
10 #include <common.h>
11 #include <clk.h>
12 #include <dm/device.h>
13 #include <dm/fdtaddr.h>
14 #include <dm/read.h>
15 #include <linux/bitops.h>
16 #include <watchdog.h>
17 #include <wdt.h>
18 #include <linux/err.h>
19
20 #define WDTLOAD                 0x000
21 #define WDTCONTROL              0x008
22 #define WDTINTCLR               0x00C
23 #define WDTLOCK                 0xC00
24
25 #define TIME_OUT_MIN_MSECS      1
26 #define TIME_OUT_MAX_MSECS      120000
27 #define SYS_FSL_WDT_CLK_DIV     16
28 #define INT_ENABLE              BIT(0)
29 #define RESET_ENABLE            BIT(1)
30 #define DISABLE                 0
31 #define UNLOCK                  0x1ACCE551
32 #define LOCK                    0x00000001
33 #define INT_MASK                BIT(0)
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 struct sp805_wdt_priv {
38         void __iomem *reg;
39         unsigned long clk_rate;
40 };
41
42 static int sp805_wdt_reset(struct udevice *dev)
43 {
44         struct sp805_wdt_priv *priv = dev_get_priv(dev);
45
46         writel(UNLOCK, priv->reg + WDTLOCK);
47         writel(INT_MASK, priv->reg + WDTINTCLR);
48         writel(LOCK, priv->reg + WDTLOCK);
49         readl(priv->reg + WDTLOCK);
50
51         return 0;
52 }
53
54 static int sp805_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
55 {
56         u32 load_value;
57         u32 load_time;
58         struct sp805_wdt_priv *priv = dev_get_priv(dev);
59
60         load_time = (u32)timeout;
61         if (timeout < TIME_OUT_MIN_MSECS)
62                 load_time = TIME_OUT_MIN_MSECS;
63         else if (timeout > TIME_OUT_MAX_MSECS)
64                 load_time = TIME_OUT_MAX_MSECS;
65         /* sp805 runs counter with given value twice, so when the max timeout is
66          * set 120s, the gd->bus_clk is less than 1145MHz, the load_value will
67          * not overflow.
68          */
69         if (gd->bus_clk) {
70                 load_value = (gd->bus_clk) /
71                         (2 * 1000 * SYS_FSL_WDT_CLK_DIV) * load_time;
72         } else {
73                 /* platform provide clk */
74                 load_value = (timeout / 2) * (priv->clk_rate / 1000);
75         }
76
77         writel(UNLOCK, priv->reg + WDTLOCK);
78         writel(load_value, priv->reg + WDTLOAD);
79         writel(INT_MASK, priv->reg + WDTINTCLR);
80         writel(INT_ENABLE | RESET_ENABLE, priv->reg + WDTCONTROL);
81         writel(LOCK, priv->reg + WDTLOCK);
82         readl(priv->reg + WDTLOCK);
83
84         return 0;
85 }
86
87 static int sp805_wdt_stop(struct udevice *dev)
88 {
89         struct sp805_wdt_priv *priv = dev_get_priv(dev);
90
91         writel(UNLOCK, priv->reg + WDTLOCK);
92         writel(DISABLE, priv->reg + WDTCONTROL);
93         writel(LOCK, priv->reg + WDTLOCK);
94         readl(priv->reg + WDTLOCK);
95
96         return 0;
97 }
98
99 static int sp805_wdt_expire_now(struct udevice *dev, ulong flags)
100 {
101         sp805_wdt_start(dev, 0, flags);
102
103         return 0;
104 }
105
106 static int sp805_wdt_probe(struct udevice *dev)
107 {
108         debug("%s: Probing wdt%u (sp805-wdt)\n", __func__, dev->seq);
109
110         return 0;
111 }
112
113 static int sp805_wdt_ofdata_to_platdata(struct udevice *dev)
114 {
115         struct sp805_wdt_priv *priv = dev_get_priv(dev);
116         struct clk clk;
117
118         priv->reg = (void __iomem *)dev_read_addr(dev);
119         if (IS_ERR(priv->reg))
120                 return PTR_ERR(priv->reg);
121
122         if (!clk_get_by_index(dev, 0, &clk))
123                 priv->clk_rate = clk_get_rate(&clk);
124
125         return 0;
126 }
127
128 static const struct wdt_ops sp805_wdt_ops = {
129         .start = sp805_wdt_start,
130         .reset = sp805_wdt_reset,
131         .stop = sp805_wdt_stop,
132         .expire_now = sp805_wdt_expire_now,
133 };
134
135 static const struct udevice_id sp805_wdt_ids[] = {
136         { .compatible = "arm,sp805-wdt" },
137         {}
138 };
139
140 U_BOOT_DRIVER(sp805_wdt) = {
141         .name = "sp805_wdt",
142         .id = UCLASS_WDT,
143         .of_match = sp805_wdt_ids,
144         .probe = sp805_wdt_probe,
145         .priv_auto_alloc_size = sizeof(struct sp805_wdt_priv),
146         .ofdata_to_platdata = sp805_wdt_ofdata_to_platdata,
147         .ops = &sp805_wdt_ops,
148 };