blob: fcdde8fc98be3a122ee8eef82c42d828a4de4a7a [file] [log] [blame]
Randy Dunlap56fb9e52006-05-21 20:58:10 -07001/*
2 * Watchdog Driver Test Program
3 */
4
5#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <unistd.h>
9#include <fcntl.h>
Devendra Nagacad19fa2012-05-17 15:07:48 +053010#include <signal.h>
Randy Dunlap56fb9e52006-05-21 20:58:10 -070011#include <sys/ioctl.h>
12#include <linux/types.h>
13#include <linux/watchdog.h>
14
15int fd;
16
17/*
18 * This function simply sends an IOCTL to the driver, which in turn ticks
19 * the PC Watchdog card to reset its internal timer so it doesn't trigger
20 * a computer reset.
21 */
Ladinu Chandrasingheb7ed6982009-09-22 16:43:42 -070022static void keep_alive(void)
Randy Dunlap56fb9e52006-05-21 20:58:10 -070023{
24 int dummy;
25
26 ioctl(fd, WDIOC_KEEPALIVE, &dummy);
27}
28
29/*
30 * The main program. Run the program with "-d" to disable the card,
31 * or "-e" to enable the card.
32 */
Devendra Nagacad19fa2012-05-17 15:07:48 +053033
Randy Dunlap4b1c2f42012-07-23 10:46:11 -070034static void term(int sig)
Devendra Nagacad19fa2012-05-17 15:07:48 +053035{
36 close(fd);
37 fprintf(stderr, "Stopping watchdog ticks...\n");
38 exit(0);
39}
40
Randy Dunlap56fb9e52006-05-21 20:58:10 -070041int main(int argc, char *argv[])
42{
James Hogandfc33382010-04-05 11:31:29 +010043 int flags;
Timur Tabif15d7112015-06-29 11:46:17 -050044 unsigned int ping_rate = 1;
James Hogandfc33382010-04-05 11:31:29 +010045
Randy Dunlap56fb9e52006-05-21 20:58:10 -070046 fd = open("/dev/watchdog", O_WRONLY);
47
48 if (fd == -1) {
49 fprintf(stderr, "Watchdog device not enabled.\n");
50 fflush(stderr);
51 exit(-1);
52 }
53
54 if (argc > 1) {
55 if (!strncasecmp(argv[1], "-d", 2)) {
James Hogandfc33382010-04-05 11:31:29 +010056 flags = WDIOS_DISABLECARD;
57 ioctl(fd, WDIOC_SETOPTIONS, &flags);
Randy Dunlap56fb9e52006-05-21 20:58:10 -070058 fprintf(stderr, "Watchdog card disabled.\n");
59 fflush(stderr);
Devendra Naga3c2a6182012-05-14 23:42:02 +053060 goto end;
Randy Dunlap56fb9e52006-05-21 20:58:10 -070061 } else if (!strncasecmp(argv[1], "-e", 2)) {
James Hogandfc33382010-04-05 11:31:29 +010062 flags = WDIOS_ENABLECARD;
63 ioctl(fd, WDIOC_SETOPTIONS, &flags);
Randy Dunlap56fb9e52006-05-21 20:58:10 -070064 fprintf(stderr, "Watchdog card enabled.\n");
65 fflush(stderr);
Devendra Naga3c2a6182012-05-14 23:42:02 +053066 goto end;
Timur Tabif15d7112015-06-29 11:46:17 -050067 } else if (!strncasecmp(argv[1], "-t", 2) && argv[2]) {
68 flags = atoi(argv[2]);
69 ioctl(fd, WDIOC_SETTIMEOUT, &flags);
70 fprintf(stderr, "Watchdog timeout set to %u seconds.\n", flags);
71 fflush(stderr);
72 goto end;
73 } else if (!strncasecmp(argv[1], "-p", 2) && argv[2]) {
74 ping_rate = strtoul(argv[2], NULL, 0);
75 fprintf(stderr, "Watchdog ping rate set to %u seconds.\n", ping_rate);
76 fflush(stderr);
Randy Dunlap56fb9e52006-05-21 20:58:10 -070077 } else {
Timur Tabif15d7112015-06-29 11:46:17 -050078 fprintf(stderr, "-d to disable, -e to enable, -t <n> to set " \
79 "the timeout,\n-p <n> to set the ping rate, and \n");
Randy Dunlap56fb9e52006-05-21 20:58:10 -070080 fprintf(stderr, "run by itself to tick the card.\n");
81 fflush(stderr);
Devendra Naga3c2a6182012-05-14 23:42:02 +053082 goto end;
Randy Dunlap56fb9e52006-05-21 20:58:10 -070083 }
Randy Dunlap56fb9e52006-05-21 20:58:10 -070084 }
85
Timur Tabif15d7112015-06-29 11:46:17 -050086 fprintf(stderr, "Watchdog Ticking Away!\n");
87 fflush(stderr);
88
Devendra Nagacad19fa2012-05-17 15:07:48 +053089 signal(SIGINT, term);
90
Randy Dunlap56fb9e52006-05-21 20:58:10 -070091 while(1) {
92 keep_alive();
Timur Tabif15d7112015-06-29 11:46:17 -050093 sleep(ping_rate);
Randy Dunlap56fb9e52006-05-21 20:58:10 -070094 }
Devendra Naga3c2a6182012-05-14 23:42:02 +053095end:
96 close(fd);
97 return 0;
Randy Dunlap56fb9e52006-05-21 20:58:10 -070098}