compat_ioctl: move WDIOC handling into wdt drivers
[linux-2.6-block.git] / drivers / watchdog / mv64x60_wdt.c
CommitLineData
d0173278 1// SPDX-License-Identifier: GPL-2.0
3be10211
JC
2/*
3 * mv64x60_wdt.c - MV64X60 (Marvell Discovery) watchdog userspace interface
4 *
5 * Author: James Chapman <jchapman@katalix.com>
6 *
7 * Platform-specific setup code should configure the dog to generate
8 * interrupt or reset as required. This code only enables/disables
9 * and services the watchdog.
10 *
11 * Derived from mpc8xx_wdt.c, with the following copyright.
a86b8498 12 *
d0173278 13 * 2002 (c) Florian Schirmer <jolt@tuxbox.org>
3be10211
JC
14 */
15
27c766aa
JP
16#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
3be10211
JC
18#include <linux/fs.h>
19#include <linux/init.h>
20#include <linux/kernel.h>
21#include <linux/miscdevice.h>
22#include <linux/module.h>
23#include <linux/watchdog.h>
d052d1be 24#include <linux/platform_device.h>
7e07a159 25#include <linux/mv643xx.h>
a86b8498
AC
26#include <linux/uaccess.h>
27#include <linux/io.h>
3be10211 28
8a5cfa64
DF
29#define MV64x60_WDT_WDC_OFFSET 0
30
f1869994
DF
31/*
32 * The watchdog configuration register contains a pair of 2-bit fields,
33 * 1. a reload field, bits 27-26, which triggers a reload of
34 * the countdown register, and
35 * 2. an enable field, bits 25-24, which toggles between
36 * enabling and disabling the watchdog timer.
37 * Bit 31 is a read-only field which indicates whether the
38 * watchdog timer is currently enabled.
39 *
40 * The low 24 bits contain the timer reload value.
41 */
42#define MV64x60_WDC_ENABLE_SHIFT 24
43#define MV64x60_WDC_SERVICE_SHIFT 26
44#define MV64x60_WDC_ENABLED_SHIFT 31
45
46#define MV64x60_WDC_ENABLED_TRUE 1
47#define MV64x60_WDC_ENABLED_FALSE 0
3be10211
JC
48
49/* Flags bits */
50#define MV64x60_WDOG_FLAG_OPENED 0
3be10211
JC
51
52static unsigned long wdt_flags;
53static int wdt_status;
8a5cfa64 54static void __iomem *mv64x60_wdt_regs;
3be10211 55static int mv64x60_wdt_timeout;
f1869994 56static int mv64x60_wdt_count;
94796f90 57static unsigned int bus_clk;
bf2fc92c 58static char expect_close;
f1869994 59static DEFINE_SPINLOCK(mv64x60_wdt_spinlock);
3be10211 60
86a1e189
WVS
61static bool nowayout = WATCHDOG_NOWAYOUT;
62module_param(nowayout, bool, 0);
a86b8498
AC
63MODULE_PARM_DESC(nowayout,
64 "Watchdog cannot be stopped once started (default="
65 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
d37a5c3d 66
f1869994 67static int mv64x60_wdt_toggle_wdc(int enabled_predicate, int field_shift)
3be10211 68{
f1869994
DF
69 u32 data;
70 u32 enabled;
71 int ret = 0;
72
73 spin_lock(&mv64x60_wdt_spinlock);
74 data = readl(mv64x60_wdt_regs + MV64x60_WDT_WDC_OFFSET);
75 enabled = (data >> MV64x60_WDC_ENABLED_SHIFT) & 1;
76
77 /* only toggle the requested field if enabled state matches predicate */
78 if ((enabled ^ enabled_predicate) == 0) {
79 /* We write a 1, then a 2 -- to the appropriate field */
80 data = (1 << field_shift) | mv64x60_wdt_count;
81 writel(data, mv64x60_wdt_regs + MV64x60_WDT_WDC_OFFSET);
82
83 data = (2 << field_shift) | mv64x60_wdt_count;
84 writel(data, mv64x60_wdt_regs + MV64x60_WDT_WDC_OFFSET);
85 ret = 1;
86 }
87 spin_unlock(&mv64x60_wdt_spinlock);
88
89 return ret;
3be10211
JC
90}
91
92static void mv64x60_wdt_service(void)
93{
f1869994
DF
94 mv64x60_wdt_toggle_wdc(MV64x60_WDC_ENABLED_TRUE,
95 MV64x60_WDC_SERVICE_SHIFT);
3be10211
JC
96}
97
f1869994 98static void mv64x60_wdt_handler_enable(void)
3be10211 99{
f1869994
DF
100 if (mv64x60_wdt_toggle_wdc(MV64x60_WDC_ENABLED_FALSE,
101 MV64x60_WDC_ENABLE_SHIFT)) {
102 mv64x60_wdt_service();
27c766aa 103 pr_notice("watchdog activated\n");
3be10211
JC
104 }
105}
106
f1869994 107static void mv64x60_wdt_handler_disable(void)
3be10211 108{
f1869994
DF
109 if (mv64x60_wdt_toggle_wdc(MV64x60_WDC_ENABLED_TRUE,
110 MV64x60_WDC_ENABLE_SHIFT))
27c766aa 111 pr_notice("watchdog deactivated\n");
3be10211
JC
112}
113
f1869994 114static void mv64x60_wdt_set_timeout(unsigned int timeout)
94796f90
DF
115{
116 /* maximum bus cycle count is 0xFFFFFFFF */
117 if (timeout > 0xFFFFFFFF / bus_clk)
118 timeout = 0xFFFFFFFF / bus_clk;
119
f1869994 120 mv64x60_wdt_count = timeout * bus_clk >> 8;
94796f90 121 mv64x60_wdt_timeout = timeout;
94796f90
DF
122}
123
3be10211
JC
124static int mv64x60_wdt_open(struct inode *inode, struct file *file)
125{
126 if (test_and_set_bit(MV64x60_WDOG_FLAG_OPENED, &wdt_flags))
127 return -EBUSY;
128
d37a5c3d
DF
129 if (nowayout)
130 __module_get(THIS_MODULE);
131
3be10211
JC
132 mv64x60_wdt_handler_enable();
133
c5bf68fe 134 return stream_open(inode, file);
3be10211
JC
135}
136
137static int mv64x60_wdt_release(struct inode *inode, struct file *file)
138{
bf2fc92c 139 if (expect_close == 42)
d37a5c3d 140 mv64x60_wdt_handler_disable();
bf2fc92c 141 else {
27c766aa 142 pr_crit("unexpected close, not stopping timer!\n");
bf2fc92c
DF
143 mv64x60_wdt_service();
144 }
145 expect_close = 0;
3be10211
JC
146
147 clear_bit(MV64x60_WDOG_FLAG_OPENED, &wdt_flags);
148
149 return 0;
150}
151
b2846dfa 152static ssize_t mv64x60_wdt_write(struct file *file, const char __user *data,
a86b8498 153 size_t len, loff_t *ppos)
3be10211 154{
bf2fc92c
DF
155 if (len) {
156 if (!nowayout) {
157 size_t i;
158
159 expect_close = 0;
160
161 for (i = 0; i != len; i++) {
162 char c;
a86b8498 163 if (get_user(c, data + i))
bf2fc92c
DF
164 return -EFAULT;
165 if (c == 'V')
166 expect_close = 42;
167 }
168 }
3be10211 169 mv64x60_wdt_service();
bf2fc92c 170 }
3be10211
JC
171
172 return len;
173}
174
a86b8498
AC
175static long mv64x60_wdt_ioctl(struct file *file,
176 unsigned int cmd, unsigned long arg)
3be10211 177{
94796f90 178 int timeout;
85d57238 179 int options;
b2846dfa 180 void __user *argp = (void __user *)arg;
42747d71 181 static const struct watchdog_info info = {
94796f90 182 .options = WDIOF_SETTIMEOUT |
bf2fc92c 183 WDIOF_MAGICCLOSE |
94796f90 184 WDIOF_KEEPALIVEPING,
3be10211
JC
185 .firmware_version = 0,
186 .identity = "MV64x60 watchdog",
187 };
188
189 switch (cmd) {
190 case WDIOC_GETSUPPORT:
b2846dfa 191 if (copy_to_user(argp, &info, sizeof(info)))
3be10211
JC
192 return -EFAULT;
193 break;
194
195 case WDIOC_GETSTATUS:
196 case WDIOC_GETBOOTSTATUS:
b2846dfa 197 if (put_user(wdt_status, (int __user *)argp))
3be10211
JC
198 return -EFAULT;
199 wdt_status &= ~WDIOF_KEEPALIVEPING;
200 break;
201
202 case WDIOC_GETTEMP:
203 return -EOPNOTSUPP;
204
205 case WDIOC_SETOPTIONS:
85d57238
DF
206 if (get_user(options, (int __user *)argp))
207 return -EFAULT;
208
209 if (options & WDIOS_DISABLECARD)
210 mv64x60_wdt_handler_disable();
211
212 if (options & WDIOS_ENABLECARD)
213 mv64x60_wdt_handler_enable();
214 break;
3be10211
JC
215
216 case WDIOC_KEEPALIVE:
217 mv64x60_wdt_service();
218 wdt_status |= WDIOF_KEEPALIVEPING;
219 break;
220
221 case WDIOC_SETTIMEOUT:
94796f90
DF
222 if (get_user(timeout, (int __user *)argp))
223 return -EFAULT;
224 mv64x60_wdt_set_timeout(timeout);
225 /* Fall through */
3be10211
JC
226
227 case WDIOC_GETTIMEOUT:
264f0991 228 if (put_user(mv64x60_wdt_timeout, (int __user *)argp))
3be10211
JC
229 return -EFAULT;
230 break;
231
232 default:
795b89d2 233 return -ENOTTY;
3be10211
JC
234 }
235
236 return 0;
237}
238
62322d25 239static const struct file_operations mv64x60_wdt_fops = {
3be10211
JC
240 .owner = THIS_MODULE,
241 .llseek = no_llseek,
242 .write = mv64x60_wdt_write,
a86b8498 243 .unlocked_ioctl = mv64x60_wdt_ioctl,
b6dfb247 244 .compat_ioctl = compat_ptr_ioctl,
3be10211
JC
245 .open = mv64x60_wdt_open,
246 .release = mv64x60_wdt_release,
247};
248
249static struct miscdevice mv64x60_wdt_miscdev = {
250 .minor = WATCHDOG_MINOR,
251 .name = "watchdog",
252 .fops = &mv64x60_wdt_fops,
253};
254
2d991a16 255static int mv64x60_wdt_probe(struct platform_device *dev)
3be10211 256{
bc8fdfbe 257 struct mv64x60_wdt_pdata *pdata = dev_get_platdata(&dev->dev);
8a5cfa64 258 struct resource *r;
94796f90 259 int timeout = 10;
3be10211 260
94796f90 261 bus_clk = 133; /* in MHz */
3be10211 262 if (pdata) {
94796f90 263 timeout = pdata->timeout;
3be10211
JC
264 bus_clk = pdata->bus_clk;
265 }
266
94796f90
DF
267 /* Since bus_clk is truncated MHz, actual frequency could be
268 * up to 1MHz higher. Round up, since it's better to time out
269 * too late than too soon.
270 */
271 bus_clk++;
272 bus_clk *= 1000000; /* convert to Hz */
273
8a5cfa64
DF
274 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
275 if (!r)
276 return -ENODEV;
277
ac1bb694 278 mv64x60_wdt_regs = devm_ioremap(&dev->dev, r->start, resource_size(r));
8a5cfa64
DF
279 if (mv64x60_wdt_regs == NULL)
280 return -ENOMEM;
3be10211 281
94796f90 282 mv64x60_wdt_set_timeout(timeout);
3be10211 283
2422df5e
DF
284 mv64x60_wdt_handler_disable(); /* in case timer was already running */
285
3be10211
JC
286 return misc_register(&mv64x60_wdt_miscdev);
287}
288
4b12b896 289static int mv64x60_wdt_remove(struct platform_device *dev)
3be10211
JC
290{
291 misc_deregister(&mv64x60_wdt_miscdev);
292
3be10211
JC
293 mv64x60_wdt_handler_disable();
294
295 return 0;
296}
297
3ae5eaec 298static struct platform_driver mv64x60_wdt_driver = {
3be10211 299 .probe = mv64x60_wdt_probe,
82268714 300 .remove = mv64x60_wdt_remove,
3ae5eaec 301 .driver = {
3ae5eaec
RK
302 .name = MV64x60_WDT_NAME,
303 },
3be10211
JC
304};
305
3be10211
JC
306static int __init mv64x60_wdt_init(void)
307{
27c766aa 308 pr_info("MV64x60 watchdog driver\n");
3be10211 309
422db8d2 310 return platform_driver_register(&mv64x60_wdt_driver);
3be10211
JC
311}
312
313static void __exit mv64x60_wdt_exit(void)
314{
3ae5eaec 315 platform_driver_unregister(&mv64x60_wdt_driver);
3be10211
JC
316}
317
318module_init(mv64x60_wdt_init);
319module_exit(mv64x60_wdt_exit);
320
321MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
322MODULE_DESCRIPTION("MV64x60 watchdog driver");
323MODULE_LICENSE("GPL");
f37d193c 324MODULE_ALIAS("platform:" MV64x60_WDT_NAME);