blob: ca3ccbe76cbad1ea35b8d74ee9d94eab6e303da3 [file] [log] [blame]
Qiang Zhao0652d9f2019-05-07 03:16:09 +00001// 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 <asm/io.h>
9#include <common.h>
10#include <dm/device.h>
11#include <dm/fdtaddr.h>
12#include <dm/read.h>
13#include <linux/bitops.h>
14#include <watchdog.h>
15#include <wdt.h>
Simon Glass61b29b82020-02-03 07:36:15 -070016#include <linux/err.h>
Qiang Zhao0652d9f2019-05-07 03:16:09 +000017
18#define WDTLOAD 0x000
19#define WDTCONTROL 0x008
20#define WDTINTCLR 0x00C
21#define WDTLOCK 0xC00
22
23#define TIME_OUT_MIN_MSECS 1
24#define TIME_OUT_MAX_MSECS 120000
25#define SYS_FSL_WDT_CLK_DIV 16
26#define INT_ENABLE BIT(0)
27#define RESET_ENABLE BIT(1)
28#define DISABLE 0
29#define UNLOCK 0x1ACCE551
30#define LOCK 0x00000001
31#define INT_MASK BIT(0)
32
33DECLARE_GLOBAL_DATA_PTR;
34
35struct sp805_wdt_priv {
36 void __iomem *reg;
37};
38
39static int sp805_wdt_reset(struct udevice *dev)
40{
41 struct sp805_wdt_priv *priv = dev_get_priv(dev);
42
43 writel(UNLOCK, priv->reg + WDTLOCK);
44 writel(INT_MASK, priv->reg + WDTINTCLR);
45 writel(LOCK, priv->reg + WDTLOCK);
46 readl(priv->reg + WDTLOCK);
47
48 return 0;
49}
50
51static int sp805_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
52{
53 u32 load_value;
54 u32 load_time;
55 struct sp805_wdt_priv *priv = dev_get_priv(dev);
56
57 load_time = (u32)timeout;
58 if (timeout < TIME_OUT_MIN_MSECS)
59 load_time = TIME_OUT_MIN_MSECS;
60 else if (timeout > TIME_OUT_MAX_MSECS)
61 load_time = TIME_OUT_MAX_MSECS;
62 /* sp805 runs counter with given value twice, so when the max timeout is
63 * set 120s, the gd->bus_clk is less than 1145MHz, the load_value will
64 * not overflow.
65 */
66 load_value = (gd->bus_clk) /
67 (2 * 1000 * SYS_FSL_WDT_CLK_DIV) * load_time;
68
69 writel(UNLOCK, priv->reg + WDTLOCK);
70 writel(load_value, priv->reg + WDTLOAD);
71 writel(INT_MASK, priv->reg + WDTINTCLR);
72 writel(INT_ENABLE | RESET_ENABLE, priv->reg + WDTCONTROL);
73 writel(LOCK, priv->reg + WDTLOCK);
74 readl(priv->reg + WDTLOCK);
75
76 return 0;
77}
78
79static int sp805_wdt_stop(struct udevice *dev)
80{
81 struct sp805_wdt_priv *priv = dev_get_priv(dev);
82
83 writel(UNLOCK, priv->reg + WDTLOCK);
84 writel(DISABLE, priv->reg + WDTCONTROL);
85 writel(LOCK, priv->reg + WDTLOCK);
86 readl(priv->reg + WDTLOCK);
87
88 return 0;
89}
90
Thomas Schaefer412e25a2019-08-08 16:00:31 +080091static int sp805_wdt_expire_now(struct udevice *dev, ulong flags)
92{
93 sp805_wdt_start(dev, 0, flags);
94
95 return 0;
96}
97
Qiang Zhao0652d9f2019-05-07 03:16:09 +000098static int sp805_wdt_probe(struct udevice *dev)
99{
Thomas Schaefer412e25a2019-08-08 16:00:31 +0800100 debug("%s: Probing wdt%u (sp805-wdt)\n", __func__, dev->seq);
Qiang Zhao0652d9f2019-05-07 03:16:09 +0000101
102 return 0;
103}
104
105static int sp805_wdt_ofdata_to_platdata(struct udevice *dev)
106{
107 struct sp805_wdt_priv *priv = dev_get_priv(dev);
108
109 priv->reg = (void __iomem *)dev_read_addr(dev);
110 if (IS_ERR(priv->reg))
111 return PTR_ERR(priv->reg);
112
113 return 0;
114}
115
116static const struct wdt_ops sp805_wdt_ops = {
117 .start = sp805_wdt_start,
118 .reset = sp805_wdt_reset,
119 .stop = sp805_wdt_stop,
Thomas Schaefer412e25a2019-08-08 16:00:31 +0800120 .expire_now = sp805_wdt_expire_now,
Qiang Zhao0652d9f2019-05-07 03:16:09 +0000121};
122
123static const struct udevice_id sp805_wdt_ids[] = {
124 { .compatible = "arm,sp805-wdt" },
125 {}
126};
127
128U_BOOT_DRIVER(sp805_wdt) = {
129 .name = "sp805_wdt",
130 .id = UCLASS_WDT,
131 .of_match = sp805_wdt_ids,
132 .probe = sp805_wdt_probe,
133 .priv_auto_alloc_size = sizeof(struct sp805_wdt_priv),
134 .ofdata_to_platdata = sp805_wdt_ofdata_to_platdata,
135 .ops = &sp805_wdt_ops,
136};