Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * drivers/char/watchdog/ixp2000_wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Watchdog driver for Intel IXP2000 network processors |
| 5 | * |
| 6 | * Adapted from the IXP4xx watchdog driver by Lennert Buytenhek. |
| 7 | * The original version carries these notices: |
| 8 | * |
| 9 | * Author: Deepak Saxena <dsaxena@plexity.net> |
| 10 | * |
| 11 | * Copyright 2004 (c) MontaVista, Software, Inc. |
| 12 | * Based on sa1100 driver, Copyright (C) 2000 Oleg Drokin <green@crimea.edu> |
| 13 | * |
| 14 | * This file is licensed under the terms of the GNU General Public |
| 15 | * License version 2. This program is licensed "as is" without any |
| 16 | * warranty of any kind, whether express or implied. |
| 17 | */ |
| 18 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/moduleparam.h> |
| 23 | #include <linux/types.h> |
Peter Huewe | e605d55 | 2010-01-07 03:35:49 +0100 | [diff] [blame] | 24 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/miscdevice.h> |
| 28 | #include <linux/watchdog.h> |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/bitops.h> |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame^] | 34 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static unsigned int heartbeat = 60; /* (secs) Default is 1 minute */ |
| 36 | static unsigned long wdt_status; |
Axel Lin | 1334f32 | 2011-11-29 13:54:01 +0800 | [diff] [blame] | 37 | static DEFINE_SPINLOCK(wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #define WDT_IN_USE 0 |
| 40 | #define WDT_OK_TO_CLOSE 1 |
| 41 | |
| 42 | static unsigned long wdt_tick_rate; |
| 43 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 44 | static void wdt_enable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 46 | spin_lock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | ixp2000_reg_write(IXP2000_RESET0, *(IXP2000_RESET0) | WDT_RESET_ENABLE); |
| 48 | ixp2000_reg_write(IXP2000_TWDE, WDT_ENABLE); |
| 49 | ixp2000_reg_write(IXP2000_T4_CLD, heartbeat * wdt_tick_rate); |
| 50 | ixp2000_reg_write(IXP2000_T4_CTL, TIMER_DIVIDER_256 | TIMER_ENABLE); |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 51 | spin_unlock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 54 | static void wdt_disable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 56 | spin_lock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | ixp2000_reg_write(IXP2000_T4_CTL, 0); |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 58 | spin_unlock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 61 | static void wdt_keepalive(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 63 | spin_lock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | ixp2000_reg_write(IXP2000_T4_CLD, heartbeat * wdt_tick_rate); |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 65 | spin_unlock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 68 | static int ixp2000_wdt_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { |
| 70 | if (test_and_set_bit(WDT_IN_USE, &wdt_status)) |
| 71 | return -EBUSY; |
| 72 | |
| 73 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 74 | |
| 75 | wdt_enable(); |
| 76 | |
| 77 | return nonseekable_open(inode, file); |
| 78 | } |
| 79 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 80 | static ssize_t ixp2000_wdt_write(struct file *file, const char *data, |
| 81 | size_t len, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | if (len) { |
| 84 | if (!nowayout) { |
| 85 | size_t i; |
| 86 | |
| 87 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 88 | |
| 89 | for (i = 0; i != len; i++) { |
| 90 | char c; |
| 91 | |
| 92 | if (get_user(c, data + i)) |
| 93 | return -EFAULT; |
| 94 | if (c == 'V') |
| 95 | set_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 96 | } |
| 97 | } |
| 98 | wdt_keepalive(); |
| 99 | } |
| 100 | |
| 101 | return len; |
| 102 | } |
| 103 | |
| 104 | |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 105 | static const struct watchdog_info ident = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | |
| 107 | WDIOF_KEEPALIVEPING, |
| 108 | .identity = "IXP2000 Watchdog", |
| 109 | }; |
| 110 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 111 | static long ixp2000_wdt_ioctl(struct file *file, unsigned int cmd, |
| 112 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
Samuel Tardieu | 795b89d | 2006-09-09 17:34:31 +0200 | [diff] [blame] | 114 | int ret = -ENOTTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | int time; |
| 116 | |
| 117 | switch (cmd) { |
| 118 | case WDIOC_GETSUPPORT: |
| 119 | ret = copy_to_user((struct watchdog_info *)arg, &ident, |
| 120 | sizeof(ident)) ? -EFAULT : 0; |
| 121 | break; |
| 122 | |
| 123 | case WDIOC_GETSTATUS: |
| 124 | ret = put_user(0, (int *)arg); |
| 125 | break; |
| 126 | |
| 127 | case WDIOC_GETBOOTSTATUS: |
| 128 | ret = put_user(0, (int *)arg); |
| 129 | break; |
| 130 | |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 131 | case WDIOC_KEEPALIVE: |
| 132 | wdt_enable(); |
| 133 | ret = 0; |
| 134 | break; |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | case WDIOC_SETTIMEOUT: |
| 137 | ret = get_user(time, (int *)arg); |
| 138 | if (ret) |
| 139 | break; |
| 140 | |
| 141 | if (time <= 0 || time > 60) { |
| 142 | ret = -EINVAL; |
| 143 | break; |
| 144 | } |
| 145 | |
| 146 | heartbeat = time; |
| 147 | wdt_keepalive(); |
| 148 | /* Fall through */ |
| 149 | |
| 150 | case WDIOC_GETTIMEOUT: |
| 151 | ret = put_user(heartbeat, (int *)arg); |
| 152 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | return ret; |
| 156 | } |
| 157 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 158 | static int ixp2000_wdt_release(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 160 | if (test_bit(WDT_OK_TO_CLOSE, &wdt_status)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | wdt_disable(); |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 162 | else |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 163 | pr_crit("Device closed unexpectedly - timer will not stop\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | clear_bit(WDT_IN_USE, &wdt_status); |
| 165 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 166 | |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 171 | static const struct file_operations ixp2000_wdt_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | .owner = THIS_MODULE, |
| 173 | .llseek = no_llseek, |
| 174 | .write = ixp2000_wdt_write, |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 175 | .unlocked_ioctl = ixp2000_wdt_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | .open = ixp2000_wdt_open, |
| 177 | .release = ixp2000_wdt_release, |
| 178 | }; |
| 179 | |
Alan Cox | 640b4f6 | 2008-05-19 14:06:42 +0100 | [diff] [blame] | 180 | static struct miscdevice ixp2000_wdt_miscdev = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | .minor = WATCHDOG_MINOR, |
Olaf Hering | 2dab3ca | 2005-08-17 08:58:34 +0200 | [diff] [blame] | 182 | .name = "watchdog", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | .fops = &ixp2000_wdt_fops, |
| 184 | }; |
| 185 | |
| 186 | static int __init ixp2000_wdt_init(void) |
| 187 | { |
Lennert Buytenhek | e4fe198 | 2005-06-20 18:51:07 +0100 | [diff] [blame] | 188 | if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 189 | pr_info("Unable to use IXP2000 watchdog due to IXP2800 erratum #25\n"); |
Lennert Buytenhek | e4fe198 | 2005-06-20 18:51:07 +0100 | [diff] [blame] | 190 | return -EIO; |
| 191 | } |
Lennert Buytenhek | e4fe198 | 2005-06-20 18:51:07 +0100 | [diff] [blame] | 192 | wdt_tick_rate = (*IXP2000_T1_CLD * HZ) / 256; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | return misc_register(&ixp2000_wdt_miscdev); |
| 194 | } |
| 195 | |
| 196 | static void __exit ixp2000_wdt_exit(void) |
| 197 | { |
| 198 | misc_deregister(&ixp2000_wdt_miscdev); |
| 199 | } |
| 200 | |
| 201 | module_init(ixp2000_wdt_init); |
| 202 | module_exit(ixp2000_wdt_exit); |
| 203 | |
Yoann Padioleau | 632155e | 2007-06-01 00:46:35 -0700 | [diff] [blame] | 204 | MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | MODULE_DESCRIPTION("IXP2000 Network Processor Watchdog"); |
| 206 | |
| 207 | module_param(heartbeat, int, 0); |
| 208 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds (default 60s)"); |
| 209 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame^] | 210 | module_param(nowayout, bool, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started"); |
| 212 | |
| 213 | MODULE_LICENSE("GPL"); |
| 214 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
| 215 | |