drm/i915/dsi: Control panel and backlight enable GPIOs on BYT
[linux/fpc-iii.git] / drivers / watchdog / wdt285.c
blobe60993d0767ef57a649b64c0443c1ef380f94e2e
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Intel 21285 watchdog driver
4 * Copyright (c) Phil Blundell <pb@nexus.co.uk>, 1998
6 * based on
8 * SoftDog 0.05: A Software Watchdog Device
10 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
11 * All Rights Reserved.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/fs.h>
21 #include <linux/mm.h>
22 #include <linux/miscdevice.h>
23 #include <linux/watchdog.h>
24 #include <linux/reboot.h>
25 #include <linux/init.h>
26 #include <linux/interrupt.h>
27 #include <linux/uaccess.h>
28 #include <linux/irq.h>
29 #include <mach/hardware.h>
31 #include <asm/mach-types.h>
32 #include <asm/system_info.h>
33 #include <asm/hardware/dec21285.h>
36 * Define this to stop the watchdog actually rebooting the machine.
38 #undef ONLY_TESTING
40 static unsigned int soft_margin = 60; /* in seconds */
41 static unsigned int reload;
42 static unsigned long timer_alive;
44 #ifdef ONLY_TESTING
46 * If the timer expires..
48 static void watchdog_fire(int irq, void *dev_id)
50 pr_crit("Would Reboot\n");
51 *CSR_TIMER4_CNTL = 0;
52 *CSR_TIMER4_CLR = 0;
54 #endif
57 * Refresh the timer.
59 static void watchdog_ping(void)
61 *CSR_TIMER4_LOAD = reload;
65 * Allow only one person to hold it open
67 static int watchdog_open(struct inode *inode, struct file *file)
69 int ret;
71 if (*CSR_SA110_CNTL & (1 << 13))
72 return -EBUSY;
74 if (test_and_set_bit(1, &timer_alive))
75 return -EBUSY;
77 reload = soft_margin * (mem_fclk_21285 / 256);
79 *CSR_TIMER4_CLR = 0;
80 watchdog_ping();
81 *CSR_TIMER4_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD
82 | TIMER_CNTL_DIV256;
84 #ifdef ONLY_TESTING
85 ret = request_irq(IRQ_TIMER4, watchdog_fire, 0, "watchdog", NULL);
86 if (ret) {
87 *CSR_TIMER4_CNTL = 0;
88 clear_bit(1, &timer_alive);
90 #else
92 * Setting this bit is irreversible; once enabled, there is
93 * no way to disable the watchdog.
95 *CSR_SA110_CNTL |= 1 << 13;
97 ret = 0;
98 #endif
99 stream_open(inode, file);
100 return ret;
104 * Shut off the timer.
105 * Note: if we really have enabled the watchdog, there
106 * is no way to turn off.
108 static int watchdog_release(struct inode *inode, struct file *file)
110 #ifdef ONLY_TESTING
111 free_irq(IRQ_TIMER4, NULL);
112 clear_bit(1, &timer_alive);
113 #endif
114 return 0;
117 static ssize_t watchdog_write(struct file *file, const char __user *data,
118 size_t len, loff_t *ppos)
121 * Refresh the timer.
123 if (len)
124 watchdog_ping();
126 return len;
129 static const struct watchdog_info ident = {
130 .options = WDIOF_SETTIMEOUT,
131 .identity = "Footbridge Watchdog",
134 static long watchdog_ioctl(struct file *file, unsigned int cmd,
135 unsigned long arg)
137 int __user *int_arg = (int __user *)arg;
138 int new_margin, ret = -ENOTTY;
140 switch (cmd) {
141 case WDIOC_GETSUPPORT:
142 ret = 0;
143 if (copy_to_user((void __user *)arg, &ident, sizeof(ident)))
144 ret = -EFAULT;
145 break;
147 case WDIOC_GETSTATUS:
148 case WDIOC_GETBOOTSTATUS:
149 ret = put_user(0, int_arg);
150 break;
152 case WDIOC_KEEPALIVE:
153 watchdog_ping();
154 ret = 0;
155 break;
157 case WDIOC_SETTIMEOUT:
158 ret = get_user(new_margin, int_arg);
159 if (ret)
160 break;
162 /* Arbitrary, can't find the card's limits */
163 if (new_margin < 0 || new_margin > 60) {
164 ret = -EINVAL;
165 break;
168 soft_margin = new_margin;
169 reload = soft_margin * (mem_fclk_21285 / 256);
170 watchdog_ping();
171 /* Fall through */
172 case WDIOC_GETTIMEOUT:
173 ret = put_user(soft_margin, int_arg);
174 break;
176 return ret;
179 static const struct file_operations watchdog_fops = {
180 .owner = THIS_MODULE,
181 .llseek = no_llseek,
182 .write = watchdog_write,
183 .unlocked_ioctl = watchdog_ioctl,
184 .compat_ioctl = compat_ptr_ioctl,
185 .open = watchdog_open,
186 .release = watchdog_release,
189 static struct miscdevice watchdog_miscdev = {
190 .minor = WATCHDOG_MINOR,
191 .name = "watchdog",
192 .fops = &watchdog_fops,
195 static int __init footbridge_watchdog_init(void)
197 int retval;
199 if (machine_is_netwinder())
200 return -ENODEV;
202 retval = misc_register(&watchdog_miscdev);
203 if (retval < 0)
204 return retval;
206 pr_info("Footbridge Watchdog Timer: 0.01, timer margin: %d sec\n",
207 soft_margin);
209 if (machine_is_cats())
210 pr_warn("Warning: Watchdog reset may not work on this machine\n");
211 return 0;
214 static void __exit footbridge_watchdog_exit(void)
216 misc_deregister(&watchdog_miscdev);
219 MODULE_AUTHOR("Phil Blundell <pb@nexus.co.uk>");
220 MODULE_DESCRIPTION("Footbridge watchdog driver");
221 MODULE_LICENSE("GPL");
223 module_param(soft_margin, int, 0);
224 MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
226 module_init(footbridge_watchdog_init);
227 module_exit(footbridge_watchdog_exit);