blob: e6fa87d85de3d1857bd626b6f1735ae612466c7c [file] [log] [blame]
Andrew Victor853807f2006-03-14 11:11:04 +02001/*
2 * Watchdog driver for Atmel AT91RM9200 (Thunder)
3 *
4 * Copyright (C) 2003 SAN People (Pty) Ltd
5 *
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.
10 */
11
Joe Perches27c766a2012-02-15 15:06:19 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Jiri Slaby1977f032007-10-18 23:40:25 -070014#include <linux/bitops.h>
Andrew Victor853807f2006-03-14 11:11:04 +020015#include <linux/errno.h>
16#include <linux/fs.h>
17#include <linux/init.h>
Jean-Christop PLAGNIOL-VILLARD02e07462009-01-23 10:06:07 +010018#include <linux/io.h>
Andrew Victor853807f2006-03-14 11:11:04 +020019#include <linux/kernel.h>
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010020#include <linux/mfd/syscon.h>
21#include <linux/mfd/syscon/atmel-st.h>
Andrew Victor853807f2006-03-14 11:11:04 +020022#include <linux/miscdevice.h>
23#include <linux/module.h>
24#include <linux/moduleparam.h>
Andrew Victordfc7bd92006-05-21 15:32:59 +020025#include <linux/platform_device.h>
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010026#include <linux/regmap.h>
Andrew Victor853807f2006-03-14 11:11:04 +020027#include <linux/types.h>
28#include <linux/watchdog.h>
Alan Cox27606002008-05-19 14:05:19 +010029#include <linux/uaccess.h>
Joachim Eastwooda6a1bcd2013-02-14 23:02:29 +010030#include <linux/of.h>
31#include <linux/of_device.h>
Andrew Victor853807f2006-03-14 11:11:04 +020032
Andrew Victordfc7bd92006-05-21 15:32:59 +020033#define WDT_DEFAULT_TIME 5 /* seconds */
34#define WDT_MAX_TIME 256 /* seconds */
Andrew Victor853807f2006-03-14 11:11:04 +020035
36static int wdt_time = WDT_DEFAULT_TIME;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010037static bool nowayout = WATCHDOG_NOWAYOUT;
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010038static struct regmap *regmap_st;
Andrew Victor853807f2006-03-14 11:11:04 +020039
40module_param(wdt_time, int, 0);
Alan Cox27606002008-05-19 14:05:19 +010041MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
42 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
Andrew Victor853807f2006-03-14 11:11:04 +020043
Andrew Victordfc7bd92006-05-21 15:32:59 +020044#ifdef CONFIG_WATCHDOG_NOWAYOUT
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010045module_param(nowayout, bool, 0);
Alan Cox27606002008-05-19 14:05:19 +010046MODULE_PARM_DESC(nowayout,
47 "Watchdog cannot be stopped once started (default="
48 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Andrew Victordfc7bd92006-05-21 15:32:59 +020049#endif
Andrew Victor853807f2006-03-14 11:11:04 +020050
51
52static unsigned long at91wdt_busy;
53
54/* ......................................................................... */
55
56/*
57 * Disable the watchdog.
58 */
Alan Cox27606002008-05-19 14:05:19 +010059static inline void at91_wdt_stop(void)
Andrew Victor853807f2006-03-14 11:11:04 +020060{
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010061 regmap_write(regmap_st, AT91_ST_WDMR, AT91_ST_EXTEN);
Andrew Victor853807f2006-03-14 11:11:04 +020062}
63
64/*
65 * Enable and reset the watchdog.
66 */
Alan Cox27606002008-05-19 14:05:19 +010067static inline void at91_wdt_start(void)
Andrew Victor853807f2006-03-14 11:11:04 +020068{
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010069 regmap_write(regmap_st, AT91_ST_WDMR, AT91_ST_EXTEN | AT91_ST_RSTEN |
Alan Cox27606002008-05-19 14:05:19 +010070 (((65536 * wdt_time) >> 8) & AT91_ST_WDV));
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010071 regmap_write(regmap_st, AT91_ST_CR, AT91_ST_WDRST);
Andrew Victor853807f2006-03-14 11:11:04 +020072}
73
74/*
75 * Reload the watchdog timer. (ie, pat the watchdog)
76 */
Alan Cox27606002008-05-19 14:05:19 +010077static inline void at91_wdt_reload(void)
Andrew Victor853807f2006-03-14 11:11:04 +020078{
Alexandre Belloni8432f9e2015-03-12 13:07:27 +010079 regmap_write(regmap_st, AT91_ST_CR, AT91_ST_WDRST);
Andrew Victor853807f2006-03-14 11:11:04 +020080}
81
82/* ......................................................................... */
83
84/*
85 * Watchdog device is opened, and watchdog starts running.
86 */
87static int at91_wdt_open(struct inode *inode, struct file *file)
88{
89 if (test_and_set_bit(0, &at91wdt_busy))
90 return -EBUSY;
91
92 at91_wdt_start();
93 return nonseekable_open(inode, file);
94}
95
96/*
97 * Close the watchdog device.
98 * If CONFIG_WATCHDOG_NOWAYOUT is NOT defined then the watchdog is also
99 * disabled.
100 */
101static int at91_wdt_close(struct inode *inode, struct file *file)
102{
Alan Cox27606002008-05-19 14:05:19 +0100103 /* Disable the watchdog when file is closed */
Andrew Victor853807f2006-03-14 11:11:04 +0200104 if (!nowayout)
Alan Cox27606002008-05-19 14:05:19 +0100105 at91_wdt_stop();
Andrew Victor853807f2006-03-14 11:11:04 +0200106
107 clear_bit(0, &at91wdt_busy);
108 return 0;
109}
110
111/*
112 * Change the watchdog time interval.
113 */
114static int at91_wdt_settimeout(int new_time)
115{
116 /*
Andrew Victor2af29b72009-02-11 21:23:10 +0100117 * All counting occurs at SLOW_CLOCK / 128 = 256 Hz
Andrew Victor853807f2006-03-14 11:11:04 +0200118 *
119 * Since WDV is a 16-bit counter, the maximum period is
Andrew Victor2af29b72009-02-11 21:23:10 +0100120 * 65536 / 256 = 256 seconds.
Andrew Victor853807f2006-03-14 11:11:04 +0200121 */
122 if ((new_time <= 0) || (new_time > WDT_MAX_TIME))
123 return -EINVAL;
124
Alan Cox27606002008-05-19 14:05:19 +0100125 /* Set new watchdog time. It will be used when
126 at91_wdt_start() is called. */
Andrew Victor853807f2006-03-14 11:11:04 +0200127 wdt_time = new_time;
128 return 0;
129}
130
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000131static const struct watchdog_info at91_wdt_info = {
Andrew Victor853807f2006-03-14 11:11:04 +0200132 .identity = "at91 watchdog",
133 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
134};
135
136/*
137 * Handle commands from user-space.
138 */
Adrian Bunk3c4fafd2008-08-08 18:57:45 +0300139static long at91_wdt_ioctl(struct file *file,
Alan Cox27606002008-05-19 14:05:19 +0100140 unsigned int cmd, unsigned long arg)
Andrew Victor853807f2006-03-14 11:11:04 +0200141{
142 void __user *argp = (void __user *)arg;
143 int __user *p = argp;
144 int new_value;
145
Alan Cox27606002008-05-19 14:05:19 +0100146 switch (cmd) {
Alan Cox27606002008-05-19 14:05:19 +0100147 case WDIOC_GETSUPPORT:
148 return copy_to_user(argp, &at91_wdt_info,
149 sizeof(at91_wdt_info)) ? -EFAULT : 0;
Alan Cox27606002008-05-19 14:05:19 +0100150 case WDIOC_GETSTATUS:
151 case WDIOC_GETBOOTSTATUS:
152 return put_user(0, p);
153 case WDIOC_SETOPTIONS:
154 if (get_user(new_value, p))
155 return -EFAULT;
156 if (new_value & WDIOS_DISABLECARD)
157 at91_wdt_stop();
158 if (new_value & WDIOS_ENABLECARD)
Andrew Victor853807f2006-03-14 11:11:04 +0200159 at91_wdt_start();
Alan Cox27606002008-05-19 14:05:19 +0100160 return 0;
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000161 case WDIOC_KEEPALIVE:
162 at91_wdt_reload(); /* pat the watchdog */
163 return 0;
164 case WDIOC_SETTIMEOUT:
165 if (get_user(new_value, p))
166 return -EFAULT;
167 if (at91_wdt_settimeout(new_value))
168 return -EINVAL;
169 /* Enable new time value */
170 at91_wdt_start();
171 /* Return current value */
172 return put_user(wdt_time, p);
173 case WDIOC_GETTIMEOUT:
174 return put_user(wdt_time, p);
Alan Cox27606002008-05-19 14:05:19 +0100175 default:
176 return -ENOTTY;
Andrew Victor853807f2006-03-14 11:11:04 +0200177 }
178}
179
180/*
181 * Pat the watchdog whenever device is written to.
182 */
Alan Cox27606002008-05-19 14:05:19 +0100183static ssize_t at91_wdt_write(struct file *file, const char *data,
184 size_t len, loff_t *ppos)
Andrew Victor853807f2006-03-14 11:11:04 +0200185{
186 at91_wdt_reload(); /* pat the watchdog */
187 return len;
188}
189
190/* ......................................................................... */
191
Arjan van de Ven62322d22006-07-03 00:24:21 -0700192static const struct file_operations at91wdt_fops = {
Andrew Victor853807f2006-03-14 11:11:04 +0200193 .owner = THIS_MODULE,
194 .llseek = no_llseek,
Alan Cox27606002008-05-19 14:05:19 +0100195 .unlocked_ioctl = at91_wdt_ioctl,
Andrew Victor853807f2006-03-14 11:11:04 +0200196 .open = at91_wdt_open,
197 .release = at91_wdt_close,
198 .write = at91_wdt_write,
199};
200
201static struct miscdevice at91wdt_miscdev = {
202 .minor = WATCHDOG_MINOR,
203 .name = "watchdog",
204 .fops = &at91wdt_fops,
205};
206
Bill Pemberton2d991a12012-11-19 13:21:41 -0500207static int at91wdt_probe(struct platform_device *pdev)
Andrew Victor853807f2006-03-14 11:11:04 +0200208{
Alexandre Belloni8432f9e2015-03-12 13:07:27 +0100209 struct device *dev = &pdev->dev;
210 struct device *parent;
Andrew Victor853807f2006-03-14 11:11:04 +0200211 int res;
212
Andrew Victore0b79e02006-12-04 15:56:18 +0200213 if (at91wdt_miscdev.parent)
Andrew Victordfc7bd92006-05-21 15:32:59 +0200214 return -EBUSY;
Andrew Victore0b79e02006-12-04 15:56:18 +0200215 at91wdt_miscdev.parent = &pdev->dev;
Andrew Victor853807f2006-03-14 11:11:04 +0200216
Alexandre Belloni8432f9e2015-03-12 13:07:27 +0100217 parent = dev->parent;
218 if (!parent) {
219 dev_err(dev, "no parent\n");
220 return -ENODEV;
221 }
222
223 regmap_st = syscon_node_to_regmap(parent->of_node);
224 if (!regmap_st)
225 return -ENODEV;
226
Andrew Victor853807f2006-03-14 11:11:04 +0200227 res = misc_register(&at91wdt_miscdev);
228 if (res)
229 return res;
230
Joe Perches27c766a2012-02-15 15:06:19 -0800231 pr_info("AT91 Watchdog Timer enabled (%d seconds%s)\n",
232 wdt_time, nowayout ? ", nowayout" : "");
Andrew Victor853807f2006-03-14 11:11:04 +0200233 return 0;
234}
235
Bill Pemberton4b12b892012-11-19 13:26:24 -0500236static int at91wdt_remove(struct platform_device *pdev)
Andrew Victordfc7bd92006-05-21 15:32:59 +0200237{
238 int res;
239
240 res = misc_deregister(&at91wdt_miscdev);
241 if (!res)
Andrew Victore0b79e02006-12-04 15:56:18 +0200242 at91wdt_miscdev.parent = NULL;
Andrew Victordfc7bd92006-05-21 15:32:59 +0200243
244 return res;
245}
246
247static void at91wdt_shutdown(struct platform_device *pdev)
248{
249 at91_wdt_stop();
250}
251
252#ifdef CONFIG_PM
253
254static int at91wdt_suspend(struct platform_device *pdev, pm_message_t message)
255{
256 at91_wdt_stop();
257 return 0;
258}
259
260static int at91wdt_resume(struct platform_device *pdev)
261{
262 if (at91wdt_busy)
263 at91_wdt_start();
Ilpo Jarvinen95f62bd2008-08-19 09:01:14 +0300264 return 0;
Andrew Victordfc7bd92006-05-21 15:32:59 +0200265}
266
267#else
268#define at91wdt_suspend NULL
269#define at91wdt_resume NULL
270#endif
271
Joachim Eastwooda6a1bcd2013-02-14 23:02:29 +0100272static const struct of_device_id at91_wdt_dt_ids[] = {
273 { .compatible = "atmel,at91rm9200-wdt" },
274 { /* sentinel */ }
275};
276MODULE_DEVICE_TABLE(of, at91_wdt_dt_ids);
277
Andrew Victordfc7bd92006-05-21 15:32:59 +0200278static struct platform_driver at91wdt_driver = {
279 .probe = at91wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500280 .remove = at91wdt_remove,
Andrew Victordfc7bd92006-05-21 15:32:59 +0200281 .shutdown = at91wdt_shutdown,
282 .suspend = at91wdt_suspend,
283 .resume = at91wdt_resume,
284 .driver = {
Alexandre Belloni8432f9e2015-03-12 13:07:27 +0100285 .name = "atmel_st_watchdog",
Sachin Kamat85eee812013-09-30 10:12:51 +0530286 .of_match_table = at91_wdt_dt_ids,
Andrew Victordfc7bd92006-05-21 15:32:59 +0200287 },
288};
289
290static int __init at91_wdt_init(void)
291{
Alan Cox27606002008-05-19 14:05:19 +0100292 /* Check that the heartbeat value is within range;
293 if not reset to the default */
Andrew Victordfc7bd92006-05-21 15:32:59 +0200294 if (at91_wdt_settimeout(wdt_time)) {
295 at91_wdt_settimeout(WDT_DEFAULT_TIME);
Joe Perches27c766a2012-02-15 15:06:19 -0800296 pr_info("wdt_time value must be 1 <= wdt_time <= 256, using %d\n",
297 wdt_time);
Andrew Victordfc7bd92006-05-21 15:32:59 +0200298 }
299
300 return platform_driver_register(&at91wdt_driver);
301}
302
Andrew Victor853807f2006-03-14 11:11:04 +0200303static void __exit at91_wdt_exit(void)
304{
Andrew Victordfc7bd92006-05-21 15:32:59 +0200305 platform_driver_unregister(&at91wdt_driver);
Andrew Victor853807f2006-03-14 11:11:04 +0200306}
307
308module_init(at91_wdt_init);
309module_exit(at91_wdt_exit);
310
311MODULE_AUTHOR("Andrew Victor");
312MODULE_DESCRIPTION("Watchdog driver for Atmel AT91RM9200");
313MODULE_LICENSE("GPL");
Alexandre Belloni8432f9e2015-03-12 13:07:27 +0100314MODULE_ALIAS("platform:atmel_st_watchdog");