1 // SPDX-License-Identifier: GPL-2.0+
3 * Watchdog driver for Broadcom BCM2835
5 * "bcm2708_wdog" driver written by Luke Diamand that was obtained from
6 * branch "rpi-3.6.y" of git://github.com/raspberrypi/linux.git was used
7 * as a hardware reference for the Broadcom BCM2835 watchdog timer.
9 * Copyright (C) 2013 Lubomir Rintel <lkundrak@v3.sk>
13 #include <linux/delay.h>
14 #include <linux/types.h>
15 #include <linux/mfd/bcm2835-pm.h>
16 #include <linux/module.h>
18 #include <linux/watchdog.h>
19 #include <linux/platform_device.h>
20 #include <linux/of_address.h>
21 #include <linux/of_platform.h>
27 #define PM_PASSWORD 0x5a000000
29 #define PM_WDOG_TIME_SET 0x000fffff
30 #define PM_RSTC_WRCFG_CLR 0xffffffcf
31 #define PM_RSTS_HADWRH_SET 0x00000040
32 #define PM_RSTC_WRCFG_SET 0x00000030
33 #define PM_RSTC_WRCFG_FULL_RESET 0x00000020
34 #define PM_RSTC_RESET 0x00000102
37 * The Raspberry Pi firmware uses the RSTS register to know which partition
38 * to boot from. The partition value is spread into bits 0, 2, 4, 6, 8, 10.
39 * Partition 63 is a special partition used by the firmware to indicate halt.
41 #define PM_RSTS_RASPBERRYPI_HALT 0x555
43 #define SECS_TO_WDOG_TICKS(x) ((x) << 16)
44 #define WDOG_TICKS_TO_SECS(x) ((x) >> 16)
45 #define WDOG_TICKS_TO_MSECS(x) ((x) * 1000 >> 16)
52 static struct bcm2835_wdt
*bcm2835_power_off_wdt
;
54 static unsigned int heartbeat
;
55 static bool nowayout
= WATCHDOG_NOWAYOUT
;
57 static bool bcm2835_wdt_is_running(struct bcm2835_wdt
*wdt
)
61 cur
= readl(wdt
->base
+ PM_RSTC
);
63 return !!(cur
& PM_RSTC_WRCFG_FULL_RESET
);
66 static int bcm2835_wdt_start(struct watchdog_device
*wdog
)
68 struct bcm2835_wdt
*wdt
= watchdog_get_drvdata(wdog
);
72 spin_lock_irqsave(&wdt
->lock
, flags
);
74 writel_relaxed(PM_PASSWORD
| (SECS_TO_WDOG_TICKS(wdog
->timeout
) &
75 PM_WDOG_TIME_SET
), wdt
->base
+ PM_WDOG
);
76 cur
= readl_relaxed(wdt
->base
+ PM_RSTC
);
77 writel_relaxed(PM_PASSWORD
| (cur
& PM_RSTC_WRCFG_CLR
) |
78 PM_RSTC_WRCFG_FULL_RESET
, wdt
->base
+ PM_RSTC
);
80 spin_unlock_irqrestore(&wdt
->lock
, flags
);
85 static int bcm2835_wdt_stop(struct watchdog_device
*wdog
)
87 struct bcm2835_wdt
*wdt
= watchdog_get_drvdata(wdog
);
89 writel_relaxed(PM_PASSWORD
| PM_RSTC_RESET
, wdt
->base
+ PM_RSTC
);
93 static unsigned int bcm2835_wdt_get_timeleft(struct watchdog_device
*wdog
)
95 struct bcm2835_wdt
*wdt
= watchdog_get_drvdata(wdog
);
97 uint32_t ret
= readl_relaxed(wdt
->base
+ PM_WDOG
);
98 return WDOG_TICKS_TO_SECS(ret
& PM_WDOG_TIME_SET
);
101 static void __bcm2835_restart(struct bcm2835_wdt
*wdt
)
105 /* use a timeout of 10 ticks (~150us) */
106 writel_relaxed(10 | PM_PASSWORD
, wdt
->base
+ PM_WDOG
);
107 val
= readl_relaxed(wdt
->base
+ PM_RSTC
);
108 val
&= PM_RSTC_WRCFG_CLR
;
109 val
|= PM_PASSWORD
| PM_RSTC_WRCFG_FULL_RESET
;
110 writel_relaxed(val
, wdt
->base
+ PM_RSTC
);
112 /* No sleeping, possibly atomic. */
116 static int bcm2835_restart(struct watchdog_device
*wdog
,
117 unsigned long action
, void *data
)
119 struct bcm2835_wdt
*wdt
= watchdog_get_drvdata(wdog
);
121 __bcm2835_restart(wdt
);
126 static const struct watchdog_ops bcm2835_wdt_ops
= {
127 .owner
= THIS_MODULE
,
128 .start
= bcm2835_wdt_start
,
129 .stop
= bcm2835_wdt_stop
,
130 .get_timeleft
= bcm2835_wdt_get_timeleft
,
131 .restart
= bcm2835_restart
,
134 static const struct watchdog_info bcm2835_wdt_info
= {
135 .options
= WDIOF_SETTIMEOUT
| WDIOF_MAGICCLOSE
|
137 .identity
= "Broadcom BCM2835 Watchdog timer",
140 static struct watchdog_device bcm2835_wdt_wdd
= {
141 .info
= &bcm2835_wdt_info
,
142 .ops
= &bcm2835_wdt_ops
,
144 .max_hw_heartbeat_ms
= WDOG_TICKS_TO_MSECS(PM_WDOG_TIME_SET
),
145 .timeout
= WDOG_TICKS_TO_SECS(PM_WDOG_TIME_SET
),
149 * We can't really power off, but if we do the normal reset scheme, and
150 * indicate to bootcode.bin not to reboot, then most of the chip will be
153 static void bcm2835_power_off(void)
155 struct bcm2835_wdt
*wdt
= bcm2835_power_off_wdt
;
159 * We set the watchdog hard reset bit here to distinguish this reset
160 * from the normal (full) reset. bootcode.bin will not reboot after a
163 val
= readl_relaxed(wdt
->base
+ PM_RSTS
);
164 val
|= PM_PASSWORD
| PM_RSTS_RASPBERRYPI_HALT
;
165 writel_relaxed(val
, wdt
->base
+ PM_RSTS
);
167 /* Continue with normal reset mechanism */
168 __bcm2835_restart(wdt
);
171 static int bcm2835_wdt_probe(struct platform_device
*pdev
)
173 struct bcm2835_pm
*pm
= dev_get_drvdata(pdev
->dev
.parent
);
174 struct device
*dev
= &pdev
->dev
;
175 struct bcm2835_wdt
*wdt
;
178 wdt
= devm_kzalloc(dev
, sizeof(struct bcm2835_wdt
), GFP_KERNEL
);
182 spin_lock_init(&wdt
->lock
);
184 wdt
->base
= pm
->base
;
186 watchdog_set_drvdata(&bcm2835_wdt_wdd
, wdt
);
187 watchdog_init_timeout(&bcm2835_wdt_wdd
, heartbeat
, dev
);
188 watchdog_set_nowayout(&bcm2835_wdt_wdd
, nowayout
);
189 bcm2835_wdt_wdd
.parent
= dev
;
190 if (bcm2835_wdt_is_running(wdt
)) {
192 * The currently active timeout value (set by the
193 * bootloader) may be different from the module
194 * heartbeat parameter or the value in device
195 * tree. But we just need to set WDOG_HW_RUNNING,
196 * because then the framework will "immediately" ping
197 * the device, updating the timeout.
199 set_bit(WDOG_HW_RUNNING
, &bcm2835_wdt_wdd
.status
);
202 watchdog_set_restart_priority(&bcm2835_wdt_wdd
, 128);
204 watchdog_stop_on_reboot(&bcm2835_wdt_wdd
);
205 err
= devm_watchdog_register_device(dev
, &bcm2835_wdt_wdd
);
209 if (of_device_is_system_power_controller(pdev
->dev
.parent
->of_node
)) {
211 pm_power_off
= bcm2835_power_off
;
212 bcm2835_power_off_wdt
= wdt
;
214 dev_info(dev
, "Poweroff handler already present!\n");
218 dev_info(dev
, "Broadcom BCM2835 watchdog timer");
222 static void bcm2835_wdt_remove(struct platform_device
*pdev
)
224 if (pm_power_off
== bcm2835_power_off
)
228 static struct platform_driver bcm2835_wdt_driver
= {
229 .probe
= bcm2835_wdt_probe
,
230 .remove
= bcm2835_wdt_remove
,
232 .name
= "bcm2835-wdt",
235 module_platform_driver(bcm2835_wdt_driver
);
237 module_param(heartbeat
, uint
, 0);
238 MODULE_PARM_DESC(heartbeat
, "Initial watchdog heartbeat in seconds");
240 module_param(nowayout
, bool, 0);
241 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
242 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
244 MODULE_ALIAS("platform:bcm2835-wdt");
245 MODULE_AUTHOR("Lubomir Rintel <lkundrak@v3.sk>");
246 MODULE_DESCRIPTION("Driver for Broadcom BCM2835 watchdog timer");
247 MODULE_LICENSE("GPL");