2 * Meson Watchdog Driver
4 * Copyright (c) 2014 Carlo Caione
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/notifier.h>
22 #include <linux/platform_device.h>
23 #include <linux/reboot.h>
24 #include <linux/types.h>
25 #include <linux/watchdog.h>
27 #define DRV_NAME "meson_wdt"
29 #define MESON_WDT_TC 0x00
30 #define MESON_WDT_TC_EN BIT(22)
31 #define MESON_WDT_TC_TM_MASK 0x3fffff
32 #define MESON_WDT_DC_RESET (3 << 24)
34 #define MESON_WDT_RESET 0x04
36 #define MESON_WDT_TIMEOUT 30
37 #define MESON_WDT_MIN_TIMEOUT 1
38 #define MESON_WDT_MAX_TIMEOUT (MESON_WDT_TC_TM_MASK / 100000)
40 #define MESON_SEC_TO_TC(s) ((s) * 100000)
42 static bool nowayout
= WATCHDOG_NOWAYOUT
;
43 static unsigned int timeout
= MESON_WDT_TIMEOUT
;
45 struct meson_wdt_dev
{
46 struct watchdog_device wdt_dev
;
47 void __iomem
*wdt_base
;
48 struct notifier_block restart_handler
;
51 static int meson_restart_handle(struct notifier_block
*this, unsigned long mode
,
54 u32 tc_reboot
= MESON_WDT_DC_RESET
| MESON_WDT_TC_EN
;
55 struct meson_wdt_dev
*meson_wdt
= container_of(this,
60 writel(tc_reboot
, meson_wdt
->wdt_base
+ MESON_WDT_TC
);
67 static int meson_wdt_ping(struct watchdog_device
*wdt_dev
)
69 struct meson_wdt_dev
*meson_wdt
= watchdog_get_drvdata(wdt_dev
);
71 writel(0, meson_wdt
->wdt_base
+ MESON_WDT_RESET
);
76 static void meson_wdt_change_timeout(struct watchdog_device
*wdt_dev
,
79 struct meson_wdt_dev
*meson_wdt
= watchdog_get_drvdata(wdt_dev
);
82 reg
= readl(meson_wdt
->wdt_base
+ MESON_WDT_TC
);
83 reg
&= ~MESON_WDT_TC_TM_MASK
;
84 reg
|= MESON_SEC_TO_TC(timeout
);
85 writel(reg
, meson_wdt
->wdt_base
+ MESON_WDT_TC
);
88 static int meson_wdt_set_timeout(struct watchdog_device
*wdt_dev
,
91 wdt_dev
->timeout
= timeout
;
93 meson_wdt_change_timeout(wdt_dev
, timeout
);
94 meson_wdt_ping(wdt_dev
);
99 static int meson_wdt_stop(struct watchdog_device
*wdt_dev
)
101 struct meson_wdt_dev
*meson_wdt
= watchdog_get_drvdata(wdt_dev
);
104 reg
= readl(meson_wdt
->wdt_base
+ MESON_WDT_TC
);
105 reg
&= ~MESON_WDT_TC_EN
;
106 writel(reg
, meson_wdt
->wdt_base
+ MESON_WDT_TC
);
111 static int meson_wdt_start(struct watchdog_device
*wdt_dev
)
113 struct meson_wdt_dev
*meson_wdt
= watchdog_get_drvdata(wdt_dev
);
116 meson_wdt_change_timeout(wdt_dev
, meson_wdt
->wdt_dev
.timeout
);
117 meson_wdt_ping(wdt_dev
);
119 reg
= readl(meson_wdt
->wdt_base
+ MESON_WDT_TC
);
120 reg
|= MESON_WDT_TC_EN
;
121 writel(reg
, meson_wdt
->wdt_base
+ MESON_WDT_TC
);
126 static const struct watchdog_info meson_wdt_info
= {
127 .identity
= DRV_NAME
,
128 .options
= WDIOF_SETTIMEOUT
|
129 WDIOF_KEEPALIVEPING
|
133 static const struct watchdog_ops meson_wdt_ops
= {
134 .owner
= THIS_MODULE
,
135 .start
= meson_wdt_start
,
136 .stop
= meson_wdt_stop
,
137 .ping
= meson_wdt_ping
,
138 .set_timeout
= meson_wdt_set_timeout
,
141 static int meson_wdt_probe(struct platform_device
*pdev
)
143 struct resource
*res
;
144 struct meson_wdt_dev
*meson_wdt
;
147 meson_wdt
= devm_kzalloc(&pdev
->dev
, sizeof(*meson_wdt
), GFP_KERNEL
);
151 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
152 meson_wdt
->wdt_base
= devm_ioremap_resource(&pdev
->dev
, res
);
153 if (IS_ERR(meson_wdt
->wdt_base
))
154 return PTR_ERR(meson_wdt
->wdt_base
);
156 meson_wdt
->wdt_dev
.parent
= &pdev
->dev
;
157 meson_wdt
->wdt_dev
.info
= &meson_wdt_info
;
158 meson_wdt
->wdt_dev
.ops
= &meson_wdt_ops
;
159 meson_wdt
->wdt_dev
.timeout
= MESON_WDT_TIMEOUT
;
160 meson_wdt
->wdt_dev
.max_timeout
= MESON_WDT_MAX_TIMEOUT
;
161 meson_wdt
->wdt_dev
.min_timeout
= MESON_WDT_MIN_TIMEOUT
;
163 watchdog_set_drvdata(&meson_wdt
->wdt_dev
, meson_wdt
);
165 watchdog_init_timeout(&meson_wdt
->wdt_dev
, timeout
, &pdev
->dev
);
166 watchdog_set_nowayout(&meson_wdt
->wdt_dev
, nowayout
);
168 meson_wdt_stop(&meson_wdt
->wdt_dev
);
170 err
= watchdog_register_device(&meson_wdt
->wdt_dev
);
174 platform_set_drvdata(pdev
, meson_wdt
);
176 meson_wdt
->restart_handler
.notifier_call
= meson_restart_handle
;
177 meson_wdt
->restart_handler
.priority
= 128;
178 err
= register_restart_handler(&meson_wdt
->restart_handler
);
181 "cannot register restart handler (err=%d)\n", err
);
183 dev_info(&pdev
->dev
, "Watchdog enabled (timeout=%d sec, nowayout=%d)",
184 meson_wdt
->wdt_dev
.timeout
, nowayout
);
189 static int meson_wdt_remove(struct platform_device
*pdev
)
191 struct meson_wdt_dev
*meson_wdt
= platform_get_drvdata(pdev
);
193 unregister_restart_handler(&meson_wdt
->restart_handler
);
195 watchdog_unregister_device(&meson_wdt
->wdt_dev
);
200 static void meson_wdt_shutdown(struct platform_device
*pdev
)
202 struct meson_wdt_dev
*meson_wdt
= platform_get_drvdata(pdev
);
204 meson_wdt_stop(&meson_wdt
->wdt_dev
);
207 static const struct of_device_id meson_wdt_dt_ids
[] = {
208 { .compatible
= "amlogic,meson6-wdt" },
211 MODULE_DEVICE_TABLE(of
, meson_wdt_dt_ids
);
213 static struct platform_driver meson_wdt_driver
= {
214 .probe
= meson_wdt_probe
,
215 .remove
= meson_wdt_remove
,
216 .shutdown
= meson_wdt_shutdown
,
218 .owner
= THIS_MODULE
,
220 .of_match_table
= meson_wdt_dt_ids
,
224 module_platform_driver(meson_wdt_driver
);
226 module_param(timeout
, uint
, 0);
227 MODULE_PARM_DESC(timeout
, "Watchdog heartbeat in seconds");
229 module_param(nowayout
, bool, 0);
230 MODULE_PARM_DESC(nowayout
,
231 "Watchdog cannot be stopped once started (default="
232 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
234 MODULE_LICENSE("GPL");
235 MODULE_AUTHOR("Carlo Caione <carlo@caione.org>");
236 MODULE_DESCRIPTION("Meson Watchdog Timer Driver");