1 // SPDX-License-Identifier: GPL-2.0+
3 * Broadcom BCM63xx SoC watchdog driver
5 * Copyright (C) 2007, Miguel Gaio <miguel.gaio@efixo.com>
6 * Copyright (C) 2008, Florian Fainelli <florian@openwrt.org>
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/bitops.h>
13 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/miscdevice.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/types.h>
21 #include <linux/uaccess.h>
22 #include <linux/watchdog.h>
23 #include <linux/timer.h>
24 #include <linux/jiffies.h>
25 #include <linux/interrupt.h>
26 #include <linux/ptrace.h>
27 #include <linux/resource.h>
28 #include <linux/platform_device.h>
30 #include <bcm63xx_cpu.h>
31 #include <bcm63xx_io.h>
32 #include <bcm63xx_regs.h>
33 #include <bcm63xx_timer.h>
35 #define PFX KBUILD_MODNAME
37 #define WDT_HZ 50000000 /* Fclk */
38 #define WDT_DEFAULT_TIME 30 /* seconds */
39 #define WDT_MAX_TIME 256 /* seconds */
43 struct timer_list timer
;
48 static int expect_close
;
50 static int wdt_time
= WDT_DEFAULT_TIME
;
51 static bool nowayout
= WATCHDOG_NOWAYOUT
;
52 module_param(nowayout
, bool, 0);
53 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
54 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
57 static void bcm63xx_wdt_hw_start(void)
59 bcm_writel(0xfffffffe, bcm63xx_wdt_device
.regs
+ WDT_DEFVAL_REG
);
60 bcm_writel(WDT_START_1
, bcm63xx_wdt_device
.regs
+ WDT_CTL_REG
);
61 bcm_writel(WDT_START_2
, bcm63xx_wdt_device
.regs
+ WDT_CTL_REG
);
64 static void bcm63xx_wdt_hw_stop(void)
66 bcm_writel(WDT_STOP_1
, bcm63xx_wdt_device
.regs
+ WDT_CTL_REG
);
67 bcm_writel(WDT_STOP_2
, bcm63xx_wdt_device
.regs
+ WDT_CTL_REG
);
70 static void bcm63xx_wdt_isr(void *data
)
72 struct pt_regs
*regs
= get_irq_regs();
74 die(PFX
" fire", regs
);
77 static void bcm63xx_timer_tick(struct timer_list
*unused
)
79 if (!atomic_dec_and_test(&bcm63xx_wdt_device
.ticks
)) {
80 bcm63xx_wdt_hw_start();
81 mod_timer(&bcm63xx_wdt_device
.timer
, jiffies
+ HZ
);
83 pr_crit("watchdog will restart system\n");
86 static void bcm63xx_wdt_pet(void)
88 atomic_set(&bcm63xx_wdt_device
.ticks
, wdt_time
);
91 static void bcm63xx_wdt_start(void)
94 bcm63xx_timer_tick(0);
97 static void bcm63xx_wdt_pause(void)
99 del_timer_sync(&bcm63xx_wdt_device
.timer
);
100 bcm63xx_wdt_hw_stop();
103 static int bcm63xx_wdt_settimeout(int new_time
)
105 if ((new_time
<= 0) || (new_time
> WDT_MAX_TIME
))
113 static int bcm63xx_wdt_open(struct inode
*inode
, struct file
*file
)
115 if (test_and_set_bit(0, &bcm63xx_wdt_device
.inuse
))
119 return stream_open(inode
, file
);
122 static int bcm63xx_wdt_release(struct inode
*inode
, struct file
*file
)
124 if (expect_close
== 42)
127 pr_crit("Unexpected close, not stopping watchdog!\n");
130 clear_bit(0, &bcm63xx_wdt_device
.inuse
);
135 static ssize_t
bcm63xx_wdt_write(struct file
*file
, const char *data
,
136 size_t len
, loff_t
*ppos
)
142 /* In case it was set long ago */
145 for (i
= 0; i
!= len
; i
++) {
147 if (get_user(c
, data
+ i
))
158 static struct watchdog_info bcm63xx_wdt_info
= {
160 .options
= WDIOF_SETTIMEOUT
|
161 WDIOF_KEEPALIVEPING
|
166 static long bcm63xx_wdt_ioctl(struct file
*file
, unsigned int cmd
,
169 void __user
*argp
= (void __user
*)arg
;
170 int __user
*p
= argp
;
171 int new_value
, retval
= -EINVAL
;
174 case WDIOC_GETSUPPORT
:
175 return copy_to_user(argp
, &bcm63xx_wdt_info
,
176 sizeof(bcm63xx_wdt_info
)) ? -EFAULT
: 0;
178 case WDIOC_GETSTATUS
:
179 case WDIOC_GETBOOTSTATUS
:
180 return put_user(0, p
);
182 case WDIOC_SETOPTIONS
:
183 if (get_user(new_value
, p
))
186 if (new_value
& WDIOS_DISABLECARD
) {
190 if (new_value
& WDIOS_ENABLECARD
) {
197 case WDIOC_KEEPALIVE
:
201 case WDIOC_SETTIMEOUT
:
202 if (get_user(new_value
, p
))
205 if (bcm63xx_wdt_settimeout(new_value
))
210 case WDIOC_GETTIMEOUT
:
211 return put_user(wdt_time
, p
);
219 static const struct file_operations bcm63xx_wdt_fops
= {
220 .owner
= THIS_MODULE
,
222 .write
= bcm63xx_wdt_write
,
223 .unlocked_ioctl
= bcm63xx_wdt_ioctl
,
224 .compat_ioctl
= compat_ptr_ioctl
,
225 .open
= bcm63xx_wdt_open
,
226 .release
= bcm63xx_wdt_release
,
229 static struct miscdevice bcm63xx_wdt_miscdev
= {
230 .minor
= WATCHDOG_MINOR
,
232 .fops
= &bcm63xx_wdt_fops
,
236 static int bcm63xx_wdt_probe(struct platform_device
*pdev
)
241 timer_setup(&bcm63xx_wdt_device
.timer
, bcm63xx_timer_tick
, 0);
243 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
245 dev_err(&pdev
->dev
, "failed to get resources\n");
249 bcm63xx_wdt_device
.regs
= devm_ioremap(&pdev
->dev
, r
->start
,
251 if (!bcm63xx_wdt_device
.regs
) {
252 dev_err(&pdev
->dev
, "failed to remap I/O resources\n");
256 ret
= bcm63xx_timer_register(TIMER_WDT_ID
, bcm63xx_wdt_isr
, NULL
);
258 dev_err(&pdev
->dev
, "failed to register wdt timer isr\n");
262 if (bcm63xx_wdt_settimeout(wdt_time
)) {
263 bcm63xx_wdt_settimeout(WDT_DEFAULT_TIME
);
265 ": wdt_time value must be 1 <= wdt_time <= 256, using %d\n",
269 ret
= misc_register(&bcm63xx_wdt_miscdev
);
271 dev_err(&pdev
->dev
, "failed to register watchdog device\n");
272 goto unregister_timer
;
275 dev_info(&pdev
->dev
, " started, timer margin: %d sec\n",
281 bcm63xx_timer_unregister(TIMER_WDT_ID
);
285 static int bcm63xx_wdt_remove(struct platform_device
*pdev
)
290 misc_deregister(&bcm63xx_wdt_miscdev
);
291 bcm63xx_timer_unregister(TIMER_WDT_ID
);
295 static void bcm63xx_wdt_shutdown(struct platform_device
*pdev
)
300 static struct platform_driver bcm63xx_wdt_driver
= {
301 .probe
= bcm63xx_wdt_probe
,
302 .remove
= bcm63xx_wdt_remove
,
303 .shutdown
= bcm63xx_wdt_shutdown
,
305 .name
= "bcm63xx-wdt",
309 module_platform_driver(bcm63xx_wdt_driver
);
311 MODULE_AUTHOR("Miguel Gaio <miguel.gaio@efixo.com>");
312 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
313 MODULE_DESCRIPTION("Driver for the Broadcom BCM63xx SoC watchdog");
314 MODULE_LICENSE("GPL");
315 MODULE_ALIAS("platform:bcm63xx-wdt");