2 * Ralink MT7621/MT7628 built-in hardware watchdog timer
4 * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
6 * This driver was based on: drivers/watchdog/rt2880_wdt.c
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
13 #include <linux/clk.h>
14 #include <linux/reset.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/watchdog.h>
18 #include <linux/moduleparam.h>
19 #include <linux/platform_device.h>
21 #include <asm/mach-ralink/ralink_regs.h>
23 #define SYSC_RSTSTAT 0x38
24 #define WDT_RST_CAUSE BIT(1)
26 #define RALINK_WDT_TIMEOUT 30
28 #define TIMER_REG_TMRSTAT 0x00
29 #define TIMER_REG_TMR1LOAD 0x24
30 #define TIMER_REG_TMR1CTL 0x20
32 #define TMR1CTL_ENABLE BIT(7)
33 #define TMR1CTL_RESTART BIT(9)
34 #define TMR1CTL_PRESCALE_SHIFT 16
36 static void __iomem
*mt7621_wdt_base
;
37 static struct reset_control
*mt7621_wdt_reset
;
39 static bool nowayout
= WATCHDOG_NOWAYOUT
;
40 module_param(nowayout
, bool, 0);
41 MODULE_PARM_DESC(nowayout
,
42 "Watchdog cannot be stopped once started (default="
43 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
45 static inline void rt_wdt_w32(unsigned reg
, u32 val
)
47 iowrite32(val
, mt7621_wdt_base
+ reg
);
50 static inline u32
rt_wdt_r32(unsigned reg
)
52 return ioread32(mt7621_wdt_base
+ reg
);
55 static int mt7621_wdt_ping(struct watchdog_device
*w
)
57 rt_wdt_w32(TIMER_REG_TMRSTAT
, TMR1CTL_RESTART
);
62 static int mt7621_wdt_set_timeout(struct watchdog_device
*w
, unsigned int t
)
65 rt_wdt_w32(TIMER_REG_TMR1LOAD
, t
* 1000);
71 static int mt7621_wdt_start(struct watchdog_device
*w
)
75 /* set the prescaler to 1ms == 1000us */
76 rt_wdt_w32(TIMER_REG_TMR1CTL
, 1000 << TMR1CTL_PRESCALE_SHIFT
);
78 mt7621_wdt_set_timeout(w
, w
->timeout
);
80 t
= rt_wdt_r32(TIMER_REG_TMR1CTL
);
82 rt_wdt_w32(TIMER_REG_TMR1CTL
, t
);
87 static int mt7621_wdt_stop(struct watchdog_device
*w
)
93 t
= rt_wdt_r32(TIMER_REG_TMR1CTL
);
95 rt_wdt_w32(TIMER_REG_TMR1CTL
, t
);
100 static int mt7621_wdt_bootcause(void)
102 if (rt_sysc_r32(SYSC_RSTSTAT
) & WDT_RST_CAUSE
)
103 return WDIOF_CARDRESET
;
108 static struct watchdog_info mt7621_wdt_info
= {
109 .identity
= "Mediatek Watchdog",
110 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
113 static struct watchdog_ops mt7621_wdt_ops
= {
114 .owner
= THIS_MODULE
,
115 .start
= mt7621_wdt_start
,
116 .stop
= mt7621_wdt_stop
,
117 .ping
= mt7621_wdt_ping
,
118 .set_timeout
= mt7621_wdt_set_timeout
,
121 static struct watchdog_device mt7621_wdt_dev
= {
122 .info
= &mt7621_wdt_info
,
123 .ops
= &mt7621_wdt_ops
,
125 .max_timeout
= 0xfffful
/ 1000,
128 static int mt7621_wdt_probe(struct platform_device
*pdev
)
130 struct resource
*res
;
133 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
134 mt7621_wdt_base
= devm_ioremap_resource(&pdev
->dev
, res
);
135 if (IS_ERR(mt7621_wdt_base
))
136 return PTR_ERR(mt7621_wdt_base
);
138 mt7621_wdt_reset
= devm_reset_control_get(&pdev
->dev
, NULL
);
139 if (!IS_ERR(mt7621_wdt_reset
))
140 reset_control_deassert(mt7621_wdt_reset
);
142 mt7621_wdt_dev
.dev
= &pdev
->dev
;
143 mt7621_wdt_dev
.bootstatus
= mt7621_wdt_bootcause();
145 watchdog_init_timeout(&mt7621_wdt_dev
, mt7621_wdt_dev
.max_timeout
,
147 watchdog_set_nowayout(&mt7621_wdt_dev
, nowayout
);
149 ret
= watchdog_register_device(&mt7621_wdt_dev
);
154 static int mt7621_wdt_remove(struct platform_device
*pdev
)
156 watchdog_unregister_device(&mt7621_wdt_dev
);
161 static void mt7621_wdt_shutdown(struct platform_device
*pdev
)
163 mt7621_wdt_stop(&mt7621_wdt_dev
);
166 static const struct of_device_id mt7621_wdt_match
[] = {
167 { .compatible
= "mediatek,mt7621-wdt" },
170 MODULE_DEVICE_TABLE(of
, mt7621_wdt_match
);
172 static struct platform_driver mt7621_wdt_driver
= {
173 .probe
= mt7621_wdt_probe
,
174 .remove
= mt7621_wdt_remove
,
175 .shutdown
= mt7621_wdt_shutdown
,
177 .name
= KBUILD_MODNAME
,
178 .of_match_table
= mt7621_wdt_match
,
182 module_platform_driver(mt7621_wdt_driver
);
184 MODULE_DESCRIPTION("MediaTek MT762x hardware watchdog driver");
185 MODULE_AUTHOR("John Crispin <blogic@openwrt.org");
186 MODULE_LICENSE("GPL v2");