Blame view

drivers/watchdog/indydog.c 4.42 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /*
   *	IndyDog	0.3	A Hardware Watchdog Device for SGI IP22
   *
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
5
6
   *	(c) Copyright 2002 Guido Guenther <agx@sigxcpu.org>,
   *						All Rights Reserved.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   *
29fa0586d   Alan Cox   [PATCH] Switch al...
8
   *	based on softdog.c by Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
   */
27c766aaa   Joe Perches   watchdog: Use pr_...
10
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
  #include <linux/module.h>
  #include <linux/moduleparam.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
17
18
19
20
21
  #include <linux/types.h>
  #include <linux/kernel.h>
  #include <linux/fs.h>
  #include <linux/mm.h>
  #include <linux/miscdevice.h>
  #include <linux/watchdog.h>
  #include <linux/notifier.h>
  #include <linux/reboot.h>
  #include <linux/init.h>
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
22
  #include <linux/uaccess.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
  #include <asm/sgi/mc.h>
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
24
  static unsigned long indydog_alive;
1334f3293   Axel Lin   watchdog: Use DEF...
25
  static DEFINE_SPINLOCK(indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
  #define WATCHDOG_TIMEOUT 30		/* 30 sec default timeout */
86a1e1896   Wim Van Sebroeck   watchdog: nowayou...
28
29
  static bool nowayout = WATCHDOG_NOWAYOUT;
  module_param(nowayout, bool, 0);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
30
31
32
  MODULE_PARM_DESC(nowayout,
  		"Watchdog cannot be stopped once started (default="
  				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
35
  
  static void indydog_start(void)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
36
  	spin_lock(&indydog_lock);
0c29c2e85   Alexander Shiyan   watchdog: indydog...
37
  	sgimc->cpuctrl0 |= SGIMC_CCTRL0_WDOG;
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
38
  	spin_unlock(&indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
40
41
42
  }
  
  static void indydog_stop(void)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
43
  	spin_lock(&indydog_lock);
0c29c2e85   Alexander Shiyan   watchdog: indydog...
44
  	sgimc->cpuctrl0 &= ~SGIMC_CCTRL0_WDOG;
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
45
  	spin_unlock(&indydog_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46

27c766aaa   Joe Perches   watchdog: Use pr_...
47
48
  	pr_info("Stopped watchdog timer
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
53
54
55
56
57
58
59
60
  }
  
  static void indydog_ping(void)
  {
  	sgimc->watchdogt = 0;
  }
  
  /*
   *	Allow only one person to hold it open
   */
  static int indydog_open(struct inode *inode, struct file *file)
  {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
61
  	if (test_and_set_bit(0, &indydog_alive))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
63
64
65
66
67
68
69
  		return -EBUSY;
  
  	if (nowayout)
  		__module_get(THIS_MODULE);
  
  	/* Activate timer */
  	indydog_start();
  	indydog_ping();
27c766aaa   Joe Perches   watchdog: Use pr_...
70
71
  	pr_info("Started watchdog timer
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72

c5bf68fe0   Kirill Smelkov   *: convert stream...
73
  	return stream_open(inode, file);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74
75
76
77
78
79
80
81
  }
  
  static int indydog_release(struct inode *inode, struct file *file)
  {
  	/* Shut off the timer.
  	 * Lock it in if it's a module and we defined ...NOWAYOUT */
  	if (!nowayout)
  		indydog_stop();		/* Turn the WDT off */
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
82
  	clear_bit(0, &indydog_alive);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
  	return 0;
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
85
86
  static ssize_t indydog_write(struct file *file, const char *data,
  						size_t len, loff_t *ppos)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
88
  {
  	/* Refresh the timer. */
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
89
  	if (len)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
  		indydog_ping();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
92
  	return len;
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
93
94
  static long indydog_ioctl(struct file *file, unsigned int cmd,
  							unsigned long arg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
  {
  	int options, retval = -EINVAL;
42747d712   Wim Van Sebroeck   [WATCHDOG] watchd...
97
  	static const struct watchdog_info ident = {
e73a78027   Wim Van Sebroeck   [WATCHDOG] Correc...
98
  		.options		= WDIOF_KEEPALIVEPING,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
100
101
102
103
  		.firmware_version	= 0,
  		.identity		= "Hardware Watchdog for SGI IP22",
  	};
  
  	switch (cmd) {
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
104
105
106
107
108
109
110
111
  	case WDIOC_GETSUPPORT:
  		if (copy_to_user((struct watchdog_info *)arg,
  				 &ident, sizeof(ident)))
  			return -EFAULT;
  		return 0;
  	case WDIOC_GETSTATUS:
  	case WDIOC_GETBOOTSTATUS:
  		return put_user(0, (int *)arg);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
112
113
114
115
116
117
118
119
120
121
122
  	case WDIOC_SETOPTIONS:
  	{
  		if (get_user(options, (int *)arg))
  			return -EFAULT;
  		if (options & WDIOS_DISABLECARD) {
  			indydog_stop();
  			retval = 0;
  		}
  		if (options & WDIOS_ENABLECARD) {
  			indydog_start();
  			retval = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
  		}
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
124
125
  		return retval;
  	}
0c06090c9   Wim Van Sebroeck   [WATCHDOG] Coding...
126
127
128
129
130
  	case WDIOC_KEEPALIVE:
  		indydog_ping();
  		return 0;
  	case WDIOC_GETTIMEOUT:
  		return put_user(WATCHDOG_TIMEOUT, (int *)arg);
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
131
132
  	default:
  		return -ENOTTY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
134
  	}
  }
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
135
136
  static int indydog_notify_sys(struct notifier_block *this,
  					unsigned long code, void *unused)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
137
138
139
140
141
142
  {
  	if (code == SYS_DOWN || code == SYS_HALT)
  		indydog_stop();		/* Turn the WDT off */
  
  	return NOTIFY_DONE;
  }
62322d255   Arjan van de Ven   [PATCH] make more...
143
  static const struct file_operations indydog_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
144
145
146
  	.owner		= THIS_MODULE,
  	.llseek		= no_llseek,
  	.write		= indydog_write,
9b9dbcca3   Alan Cox   [WATCHDOG 15/57] ...
147
  	.unlocked_ioctl	= indydog_ioctl,
b6dfb2477   Arnd Bergmann   compat_ioctl: mov...
148
  	.compat_ioctl	= compat_ptr_ioctl,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
149
150
151
152
153
154
155
156
157
158
159
160
161
  	.open		= indydog_open,
  	.release	= indydog_release,
  };
  
  static struct miscdevice indydog_miscdev = {
  	.minor		= WATCHDOG_MINOR,
  	.name		= "watchdog",
  	.fops		= &indydog_fops,
  };
  
  static struct notifier_block indydog_notifier = {
  	.notifier_call = indydog_notify_sys,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162
163
164
165
166
167
  static int __init watchdog_init(void)
  {
  	int ret;
  
  	ret = register_reboot_notifier(&indydog_notifier);
  	if (ret) {
27c766aaa   Joe Perches   watchdog: Use pr_...
168
169
  		pr_err("cannot register reboot notifier (err=%d)
  ", ret);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
170
171
172
173
174
  		return ret;
  	}
  
  	ret = misc_register(&indydog_miscdev);
  	if (ret) {
27c766aaa   Joe Perches   watchdog: Use pr_...
175
176
177
  		pr_err("cannot register miscdev on minor=%d (err=%d)
  ",
  		       WATCHDOG_MINOR, ret);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
178
179
180
  		unregister_reboot_notifier(&indydog_notifier);
  		return ret;
  	}
27c766aaa   Joe Perches   watchdog: Use pr_...
181
182
  	pr_info("Hardware Watchdog Timer for SGI IP22: 0.3
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  
  	return 0;
  }
  
  static void __exit watchdog_exit(void)
  {
  	misc_deregister(&indydog_miscdev);
  	unregister_reboot_notifier(&indydog_notifier);
  }
  
  module_init(watchdog_init);
  module_exit(watchdog_exit);
  
  MODULE_AUTHOR("Guido Guenther <agx@sigxcpu.org>");
  MODULE_DESCRIPTION("Hardware Watchdog Device for SGI IP22");
  MODULE_LICENSE("GPL");