Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 1 | /* |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 2 | * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 3 | * |
| 4 | * Authors: Dave Updegraff <dave@cray.org> |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 5 | * Kumar Gala <galak@kernel.crashing.org> |
| 6 | * Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org> |
| 7 | * ..and from sc520_wdt |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 8 | * Copyright (c) 2008 MontaVista Software, Inc. |
| 9 | * Anton Vorontsov <avorontsov@ru.mvista.com> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 10 | * |
| 11 | * Note: it appears that you can only actually ENABLE or DISABLE the thing |
| 12 | * once after POR. Once enabled, you cannot disable, and vice versa. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify it |
| 15 | * under the terms of the GNU General Public License as published by the |
| 16 | * Free Software Foundation; either version 2 of the License, or (at your |
| 17 | * option) any later version. |
| 18 | */ |
| 19 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 21 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 22 | #include <linux/fs.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/kernel.h> |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 25 | #include <linux/timer.h> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 26 | #include <linux/miscdevice.h> |
Rob Herring | 5af5073 | 2013-09-17 14:28:33 -0500 | [diff] [blame] | 27 | #include <linux/of_address.h> |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 28 | #include <linux/of_platform.h> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 29 | #include <linux/module.h> |
| 30 | #include <linux/watchdog.h> |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 31 | #include <linux/io.h> |
| 32 | #include <linux/uaccess.h> |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 33 | #include <sysdev/fsl_soc.h> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 34 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 35 | struct mpc8xxx_wdt { |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 36 | __be32 res0; |
| 37 | __be32 swcrr; /* System watchdog control register */ |
| 38 | #define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */ |
| 39 | #define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */ |
| 40 | #define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/ |
| 41 | #define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */ |
| 42 | __be32 swcnr; /* System watchdog count register */ |
| 43 | u8 res1[2]; |
| 44 | __be16 swsrr; /* System watchdog service register */ |
| 45 | u8 res2[0xF0]; |
| 46 | }; |
| 47 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 48 | struct mpc8xxx_wdt_type { |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 49 | int prescaler; |
| 50 | bool hw_enabled; |
| 51 | }; |
| 52 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 53 | static struct mpc8xxx_wdt __iomem *wd_base; |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 54 | static int mpc8xxx_wdt_init_late(void); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 55 | |
| 56 | static u16 timeout = 0xffff; |
| 57 | module_param(timeout, ushort, 0); |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 58 | MODULE_PARM_DESC(timeout, |
Randy Dunlap | 76550d3 | 2010-05-01 09:46:15 -0700 | [diff] [blame] | 59 | "Watchdog timeout in ticks. (0<timeout<65536, default=65535)"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 60 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 61 | static bool reset = 1; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 62 | module_param(reset, bool, 0); |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 63 | MODULE_PARM_DESC(reset, |
| 64 | "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 65 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 66 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 67 | module_param(nowayout, bool, 0); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 68 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
| 69 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
| 70 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 71 | /* |
| 72 | * We always prescale, but if someone really doesn't want to they can set this |
| 73 | * to 0 |
| 74 | */ |
| 75 | static int prescale = 1; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 76 | |
Alexey Dobriyan | c7dfd0c | 2007-11-01 16:27:08 -0700 | [diff] [blame] | 77 | static DEFINE_SPINLOCK(wdt_spinlock); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 78 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 79 | static void mpc8xxx_wdt_keepalive(void) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 80 | { |
| 81 | /* Ping the WDT */ |
| 82 | spin_lock(&wdt_spinlock); |
| 83 | out_be16(&wd_base->swsrr, 0x556c); |
| 84 | out_be16(&wd_base->swsrr, 0xaa39); |
| 85 | spin_unlock(&wdt_spinlock); |
| 86 | } |
| 87 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 88 | static struct watchdog_device mpc8xxx_wdt_dev; |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 89 | static void mpc8xxx_wdt_timer_ping(unsigned long arg); |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 90 | static DEFINE_TIMER(wdt_timer, mpc8xxx_wdt_timer_ping, 0, |
| 91 | (unsigned long)&mpc8xxx_wdt_dev); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 92 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 93 | static void mpc8xxx_wdt_timer_ping(unsigned long arg) |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 94 | { |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 95 | struct watchdog_device *w = (struct watchdog_device *)arg; |
| 96 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 97 | mpc8xxx_wdt_keepalive(); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 98 | /* We're pinging it twice faster than needed, just to be sure. */ |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 99 | mod_timer(&wdt_timer, jiffies + HZ * w->timeout / 2); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 102 | static int mpc8xxx_wdt_start(struct watchdog_device *w) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 103 | { |
| 104 | u32 tmp = SWCRR_SWEN; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 105 | |
| 106 | /* Good, fire up the show */ |
| 107 | if (prescale) |
| 108 | tmp |= SWCRR_SWPR; |
| 109 | if (reset) |
| 110 | tmp |= SWCRR_SWRI; |
| 111 | |
| 112 | tmp |= timeout << 16; |
| 113 | |
| 114 | out_be32(&wd_base->swcrr, tmp); |
| 115 | |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 116 | del_timer_sync(&wdt_timer); |
| 117 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 118 | return 0; |
| 119 | } |
| 120 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 121 | static int mpc8xxx_wdt_ping(struct watchdog_device *w) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 122 | { |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 123 | mpc8xxx_wdt_keepalive(); |
| 124 | return 0; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 127 | static int mpc8xxx_wdt_stop(struct watchdog_device *w) |
| 128 | { |
| 129 | mod_timer(&wdt_timer, jiffies); |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | static struct watchdog_info mpc8xxx_wdt_info = { |
| 134 | .options = WDIOF_KEEPALIVEPING, |
| 135 | .firmware_version = 1, |
| 136 | .identity = "MPC8xxx", |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 137 | }; |
| 138 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 139 | static struct watchdog_ops mpc8xxx_wdt_ops = { |
| 140 | .owner = THIS_MODULE, |
| 141 | .start = mpc8xxx_wdt_start, |
| 142 | .ping = mpc8xxx_wdt_ping, |
| 143 | .stop = mpc8xxx_wdt_stop, |
| 144 | }; |
| 145 | |
| 146 | static struct watchdog_device mpc8xxx_wdt_dev = { |
| 147 | .info = &mpc8xxx_wdt_info, |
| 148 | .ops = &mpc8xxx_wdt_ops, |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 149 | }; |
| 150 | |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 151 | static const struct of_device_id mpc8xxx_wdt_match[]; |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 152 | static int mpc8xxx_wdt_probe(struct platform_device *ofdev) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 153 | { |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 154 | int ret; |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 155 | const struct of_device_id *match; |
Michael Guntsche | de2b606 | 2010-06-02 02:25:52 -0600 | [diff] [blame] | 156 | struct device_node *np = ofdev->dev.of_node; |
Arnd Bergmann | 639397e | 2012-05-21 21:57:39 +0200 | [diff] [blame] | 157 | const struct mpc8xxx_wdt_type *wdt_type; |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 158 | u32 freq = fsl_get_sys_freq(); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 159 | bool enabled; |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 160 | unsigned int timeout_sec; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 161 | |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 162 | match = of_match_device(mpc8xxx_wdt_match, &ofdev->dev); |
| 163 | if (!match) |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 164 | return -EINVAL; |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 165 | wdt_type = match->data; |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 166 | |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 167 | if (!freq || freq == -1) |
| 168 | return -EINVAL; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 169 | |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 170 | wd_base = of_iomap(np, 0); |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 171 | if (!wd_base) |
| 172 | return -ENOMEM; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 173 | |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 174 | enabled = in_be32(&wd_base->swcrr) & SWCRR_SWEN; |
| 175 | if (!enabled && wdt_type->hw_enabled) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 176 | pr_info("could not be enabled in software\n"); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 177 | ret = -ENOSYS; |
| 178 | goto err_unmap; |
| 179 | } |
| 180 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 181 | /* Calculate the timeout in seconds */ |
| 182 | if (prescale) |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 183 | timeout_sec = (timeout * wdt_type->prescaler) / freq; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 184 | else |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 185 | timeout_sec = timeout / freq; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 186 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 187 | mpc8xxx_wdt_dev.timeout = timeout_sec; |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 188 | #ifdef MODULE |
| 189 | ret = mpc8xxx_wdt_init_late(); |
| 190 | if (ret) |
| 191 | goto err_unmap; |
| 192 | #endif |
| 193 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 194 | pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n", |
| 195 | reset ? "reset" : "interrupt", timeout, timeout_sec); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 196 | |
| 197 | /* |
| 198 | * If the watchdog was previously enabled or we're running on |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 199 | * MPC8xxx, we should ping the wdt from the kernel until the |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 200 | * userspace handles it. |
| 201 | */ |
| 202 | if (enabled) |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 203 | mod_timer(&wdt_timer, jiffies); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 204 | return 0; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 205 | err_unmap: |
| 206 | iounmap(wd_base); |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 207 | wd_base = NULL; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 208 | return ret; |
| 209 | } |
| 210 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 211 | static int mpc8xxx_wdt_remove(struct platform_device *ofdev) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 212 | { |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 213 | pr_crit("Watchdog removed, expect the %s soon!\n", |
| 214 | reset ? "reset" : "machine check exception"); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 215 | del_timer_sync(&wdt_timer); |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 216 | watchdog_unregister_device(&mpc8xxx_wdt_dev); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 217 | iounmap(wd_base); |
| 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 222 | static const struct of_device_id mpc8xxx_wdt_match[] = { |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 223 | { |
| 224 | .compatible = "mpc83xx_wdt", |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 225 | .data = &(struct mpc8xxx_wdt_type) { |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 226 | .prescaler = 0x10000, |
| 227 | }, |
| 228 | }, |
| 229 | { |
| 230 | .compatible = "fsl,mpc8610-wdt", |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 231 | .data = &(struct mpc8xxx_wdt_type) { |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 232 | .prescaler = 0x10000, |
| 233 | .hw_enabled = true, |
| 234 | }, |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 235 | }, |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 236 | { |
| 237 | .compatible = "fsl,mpc823-wdt", |
| 238 | .data = &(struct mpc8xxx_wdt_type) { |
| 239 | .prescaler = 0x800, |
Christophe Leroy | 4af897f | 2013-11-30 16:45:40 +0100 | [diff] [blame] | 240 | .hw_enabled = true, |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 241 | }, |
| 242 | }, |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 243 | {}, |
| 244 | }; |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 245 | MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match); |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 246 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 247 | static struct platform_driver mpc8xxx_wdt_driver = { |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 248 | .probe = mpc8xxx_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 249 | .remove = mpc8xxx_wdt_remove, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 250 | .driver = { |
| 251 | .name = "mpc8xxx_wdt", |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 252 | .of_match_table = mpc8xxx_wdt_match, |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 253 | }, |
| 254 | }; |
| 255 | |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 256 | /* |
| 257 | * We do wdt initialization in two steps: arch_initcall probes the wdt |
| 258 | * very early to start pinging the watchdog (misc devices are not yet |
| 259 | * available), and later module_init() just registers the misc device. |
| 260 | */ |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 261 | static int mpc8xxx_wdt_init_late(void) |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 262 | { |
| 263 | int ret; |
| 264 | |
| 265 | if (!wd_base) |
| 266 | return -ENODEV; |
| 267 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 268 | watchdog_set_nowayout(&mpc8xxx_wdt_dev, nowayout); |
| 269 | |
| 270 | ret = watchdog_register_device(&mpc8xxx_wdt_dev); |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 271 | if (ret) { |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 272 | pr_err("cannot register watchdog device (err=%d)\n", ret); |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 273 | return ret; |
| 274 | } |
| 275 | return 0; |
| 276 | } |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 277 | #ifndef MODULE |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 278 | module_init(mpc8xxx_wdt_init_late); |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 279 | #endif |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 280 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 281 | static int __init mpc8xxx_wdt_init(void) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 282 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 283 | return platform_driver_register(&mpc8xxx_wdt_driver); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 284 | } |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 285 | arch_initcall(mpc8xxx_wdt_init); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 286 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 287 | static void __exit mpc8xxx_wdt_exit(void) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 288 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 289 | platform_driver_unregister(&mpc8xxx_wdt_driver); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 290 | } |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 291 | module_exit(mpc8xxx_wdt_exit); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 292 | |
| 293 | MODULE_AUTHOR("Dave Updegraff, Kumar Gala"); |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 294 | MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx " |
| 295 | "uProcessors"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 296 | MODULE_LICENSE("GPL"); |