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> |
Rob Herring | 5af5073 | 2013-09-17 14:28:33 -0500 | [diff] [blame] | 26 | #include <linux/of_address.h> |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 27 | #include <linux/of_platform.h> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/watchdog.h> |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 30 | #include <linux/io.h> |
| 31 | #include <linux/uaccess.h> |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 32 | #include <sysdev/fsl_soc.h> |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 33 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 34 | struct mpc8xxx_wdt { |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 35 | __be32 res0; |
| 36 | __be32 swcrr; /* System watchdog control register */ |
| 37 | #define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */ |
| 38 | #define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */ |
| 39 | #define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/ |
| 40 | #define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */ |
| 41 | __be32 swcnr; /* System watchdog count register */ |
| 42 | u8 res1[2]; |
| 43 | __be16 swsrr; /* System watchdog service register */ |
| 44 | u8 res2[0xF0]; |
| 45 | }; |
| 46 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 47 | struct mpc8xxx_wdt_type { |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 48 | int prescaler; |
| 49 | bool hw_enabled; |
| 50 | }; |
| 51 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 52 | struct mpc8xxx_wdt_ddata { |
| 53 | struct mpc8xxx_wdt __iomem *base; |
| 54 | struct watchdog_device wdd; |
| 55 | struct timer_list timer; |
| 56 | spinlock_t lock; |
| 57 | }; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 58 | |
| 59 | static u16 timeout = 0xffff; |
| 60 | module_param(timeout, ushort, 0); |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 61 | MODULE_PARM_DESC(timeout, |
Randy Dunlap | 76550d3 | 2010-05-01 09:46:15 -0700 | [diff] [blame] | 62 | "Watchdog timeout in ticks. (0<timeout<65536, default=65535)"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 63 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 64 | static bool reset = 1; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 65 | module_param(reset, bool, 0); |
Alan Cox | f26ef3d | 2008-05-19 14:07:09 +0100 | [diff] [blame] | 66 | MODULE_PARM_DESC(reset, |
| 67 | "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 68 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 69 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 70 | module_param(nowayout, bool, 0); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 71 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
| 72 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
| 73 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 74 | static void mpc8xxx_wdt_keepalive(struct mpc8xxx_wdt_ddata *ddata) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 75 | { |
| 76 | /* Ping the WDT */ |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 77 | spin_lock(&ddata->lock); |
| 78 | out_be16(&ddata->base->swsrr, 0x556c); |
| 79 | out_be16(&ddata->base->swsrr, 0xaa39); |
| 80 | spin_unlock(&ddata->lock); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 83 | static void mpc8xxx_wdt_timer_ping(unsigned long arg) |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 84 | { |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 85 | struct mpc8xxx_wdt_ddata *ddata = (void *)arg; |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 86 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 87 | mpc8xxx_wdt_keepalive(ddata); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 88 | /* We're pinging it twice faster than needed, just to be sure. */ |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 89 | mod_timer(&ddata->timer, jiffies + HZ * ddata->wdd.timeout / 2); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 92 | static int mpc8xxx_wdt_start(struct watchdog_device *w) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 93 | { |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 94 | struct mpc8xxx_wdt_ddata *ddata = |
| 95 | container_of(w, struct mpc8xxx_wdt_ddata, wdd); |
| 96 | |
Uwe Kleine-König | a57e06f | 2015-08-12 10:15:52 +0200 | [diff] [blame] | 97 | u32 tmp = SWCRR_SWEN | SWCRR_SWPR; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 98 | |
| 99 | /* Good, fire up the show */ |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 100 | if (reset) |
| 101 | tmp |= SWCRR_SWRI; |
| 102 | |
| 103 | tmp |= timeout << 16; |
| 104 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 105 | out_be32(&ddata->base->swcrr, tmp); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 106 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 107 | del_timer_sync(&ddata->timer); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 108 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 112 | static int mpc8xxx_wdt_ping(struct watchdog_device *w) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 113 | { |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 114 | struct mpc8xxx_wdt_ddata *ddata = |
| 115 | container_of(w, struct mpc8xxx_wdt_ddata, wdd); |
| 116 | |
| 117 | mpc8xxx_wdt_keepalive(ddata); |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 118 | return 0; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 119 | } |
| 120 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 121 | static int mpc8xxx_wdt_stop(struct watchdog_device *w) |
| 122 | { |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 123 | struct mpc8xxx_wdt_ddata *ddata = |
| 124 | container_of(w, struct mpc8xxx_wdt_ddata, wdd); |
| 125 | |
| 126 | mod_timer(&ddata->timer, jiffies); |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static struct watchdog_info mpc8xxx_wdt_info = { |
| 131 | .options = WDIOF_KEEPALIVEPING, |
| 132 | .firmware_version = 1, |
| 133 | .identity = "MPC8xxx", |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 134 | }; |
| 135 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 136 | static struct watchdog_ops mpc8xxx_wdt_ops = { |
| 137 | .owner = THIS_MODULE, |
| 138 | .start = mpc8xxx_wdt_start, |
| 139 | .ping = mpc8xxx_wdt_ping, |
| 140 | .stop = mpc8xxx_wdt_stop, |
| 141 | }; |
| 142 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 143 | static int mpc8xxx_wdt_probe(struct platform_device *ofdev) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 144 | { |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 145 | int ret; |
Uwe Kleine-König | de5f712 | 2015-08-12 10:15:55 +0200 | [diff] [blame] | 146 | struct resource *res; |
Arnd Bergmann | 639397e | 2012-05-21 21:57:39 +0200 | [diff] [blame] | 147 | const struct mpc8xxx_wdt_type *wdt_type; |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 148 | struct mpc8xxx_wdt_ddata *ddata; |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 149 | u32 freq = fsl_get_sys_freq(); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 150 | bool enabled; |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 151 | unsigned int timeout_sec; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 152 | |
Uwe Kleine-König | f0ded83 | 2015-08-12 10:15:54 +0200 | [diff] [blame] | 153 | wdt_type = of_device_get_match_data(&ofdev->dev); |
| 154 | if (!wdt_type) |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 155 | return -EINVAL; |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 156 | |
Anton Vorontsov | ef8ab12 | 2008-07-03 23:51:32 -0700 | [diff] [blame] | 157 | if (!freq || freq == -1) |
| 158 | return -EINVAL; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 159 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 160 | ddata = devm_kzalloc(&ofdev->dev, sizeof(*ddata), GFP_KERNEL); |
| 161 | if (!ddata) |
| 162 | return -ENOMEM; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 163 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 164 | res = platform_get_resource(ofdev, IORESOURCE_MEM, 0); |
| 165 | ddata->base = devm_ioremap_resource(&ofdev->dev, res); |
| 166 | if (IS_ERR(ddata->base)) |
| 167 | return PTR_ERR(ddata->base); |
| 168 | |
| 169 | enabled = in_be32(&ddata->base->swcrr) & SWCRR_SWEN; |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 170 | if (!enabled && wdt_type->hw_enabled) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 171 | pr_info("could not be enabled in software\n"); |
Uwe Kleine-König | 72cd501 | 2015-08-12 10:15:57 +0200 | [diff] [blame] | 172 | return -ENODEV; |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 175 | spin_lock_init(&ddata->lock); |
| 176 | setup_timer(&ddata->timer, mpc8xxx_wdt_timer_ping, |
| 177 | (unsigned long)ddata); |
| 178 | |
| 179 | ddata->wdd.info = &mpc8xxx_wdt_info, |
| 180 | ddata->wdd.ops = &mpc8xxx_wdt_ops, |
| 181 | |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 182 | /* Calculate the timeout in seconds */ |
Uwe Kleine-König | a57e06f | 2015-08-12 10:15:52 +0200 | [diff] [blame] | 183 | timeout_sec = (timeout * wdt_type->prescaler) / freq; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 184 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 185 | ddata->wdd.timeout = timeout_sec; |
Uwe Kleine-König | 50ffb53 | 2015-08-12 10:15:53 +0200 | [diff] [blame] | 186 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 187 | watchdog_set_nowayout(&ddata->wdd, nowayout); |
Uwe Kleine-König | 50ffb53 | 2015-08-12 10:15:53 +0200 | [diff] [blame] | 188 | |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 189 | ret = watchdog_register_device(&ddata->wdd); |
Uwe Kleine-König | 50ffb53 | 2015-08-12 10:15:53 +0200 | [diff] [blame] | 190 | if (ret) { |
| 191 | pr_err("cannot register watchdog device (err=%d)\n", ret); |
Uwe Kleine-König | de5f712 | 2015-08-12 10:15:55 +0200 | [diff] [blame] | 192 | return ret; |
Uwe Kleine-König | 50ffb53 | 2015-08-12 10:15:53 +0200 | [diff] [blame] | 193 | } |
Anton Vorontsov | 593fc17 | 2008-08-20 16:38:36 -0700 | [diff] [blame] | 194 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 195 | pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n", |
| 196 | reset ? "reset" : "interrupt", timeout, timeout_sec); |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 197 | |
| 198 | /* |
| 199 | * If the watchdog was previously enabled or we're running on |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 200 | * MPC8xxx, we should ping the wdt from the kernel until the |
Anton Vorontsov | 500c919 | 2008-07-03 23:51:34 -0700 | [diff] [blame] | 201 | * userspace handles it. |
| 202 | */ |
| 203 | if (enabled) |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 204 | mod_timer(&ddata->timer, jiffies); |
| 205 | |
| 206 | platform_set_drvdata(ofdev, ddata); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 207 | return 0; |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 208 | } |
| 209 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 210 | static int mpc8xxx_wdt_remove(struct platform_device *ofdev) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 211 | { |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 212 | struct mpc8xxx_wdt_ddata *ddata = platform_get_drvdata(ofdev); |
| 213 | |
Christophe Leroy | d5cfaf0 | 2013-12-04 07:32:14 +0100 | [diff] [blame] | 214 | pr_crit("Watchdog removed, expect the %s soon!\n", |
| 215 | reset ? "reset" : "machine check exception"); |
Uwe Kleine-König | 7997eba | 2015-08-12 10:15:56 +0200 | [diff] [blame] | 216 | del_timer_sync(&ddata->timer); |
| 217 | watchdog_unregister_device(&ddata->wdd); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 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 | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 256 | static int __init mpc8xxx_wdt_init(void) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 257 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 258 | return platform_driver_register(&mpc8xxx_wdt_driver); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 259 | } |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 260 | arch_initcall(mpc8xxx_wdt_init); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 261 | |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 262 | static void __exit mpc8xxx_wdt_exit(void) |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 263 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 264 | platform_driver_unregister(&mpc8xxx_wdt_driver); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 265 | } |
Anton Vorontsov | 59ca1b0 | 2008-07-03 23:51:35 -0700 | [diff] [blame] | 266 | module_exit(mpc8xxx_wdt_exit); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 267 | |
| 268 | MODULE_AUTHOR("Dave Updegraff, Kumar Gala"); |
Anton Vorontsov | 0d7b101 | 2008-07-03 23:51:36 -0700 | [diff] [blame] | 269 | MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx " |
| 270 | "uProcessors"); |
Kumar Gala | fabbfb9 | 2006-01-14 13:20:50 -0800 | [diff] [blame] | 271 | MODULE_LICENSE("GPL"); |