Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 1 | /* |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 2 | * drivers/watchdog/orion_wdt.c |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 3 | * |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 4 | * Watchdog driver for Orion/Kirkwood processors |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 5 | * |
| 6 | * Author: Sylver Bruneau <sylver.bruneau@googlemail.com> |
| 7 | * |
| 8 | * This file is licensed under the terms of the GNU General Public |
| 9 | * License version 2. This program is licensed "as is" without any |
| 10 | * warranty of any kind, whether express or implied. |
| 11 | */ |
| 12 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 14 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/moduleparam.h> |
| 17 | #include <linux/types.h> |
| 18 | #include <linux/kernel.h> |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 20 | #include <linux/watchdog.h> |
| 21 | #include <linux/init.h> |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 22 | #include <linux/interrupt.h> |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 23 | #include <linux/io.h> |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 24 | #include <linux/clk.h> |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 25 | #include <linux/err.h> |
Andrew Lunn | 1e7bad0 | 2012-06-10 15:20:06 +0200 | [diff] [blame] | 26 | #include <linux/of.h> |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 27 | |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 28 | /* RSTOUT mask register physical address for Orion5x, Kirkwood and Dove */ |
| 29 | #define ORION_RSTOUT_MASK_OFFSET 0x20108 |
| 30 | |
| 31 | /* Internal registers can be configured at any 1 MiB aligned address */ |
| 32 | #define INTERNAL_REGS_MASK ~(SZ_1M - 1) |
| 33 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 34 | /* |
| 35 | * Watchdog timer block registers. |
| 36 | */ |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 37 | #define TIMER_CTRL 0x0000 |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 38 | #define WDT_EN 0x0010 |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 39 | #define WDT_VAL 0x0024 |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 40 | |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 41 | #define WDT_MAX_CYCLE_COUNT 0xffffffff |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 42 | |
Russell King | fa142ff | 2013-06-18 17:19:32 +0100 | [diff] [blame] | 43 | #define WDT_RESET_OUT_EN BIT(1) |
Russell King | fa142ff | 2013-06-18 17:19:32 +0100 | [diff] [blame] | 44 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 45 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 46 | static int heartbeat = -1; /* module parameter (seconds) */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 47 | |
| 48 | struct orion_watchdog { |
| 49 | struct watchdog_device wdt; |
| 50 | void __iomem *reg; |
| 51 | void __iomem *rstout; |
| 52 | unsigned long clk_rate; |
| 53 | struct clk *clk; |
| 54 | }; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 55 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 56 | static int orion_wdt_ping(struct watchdog_device *wdt_dev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 57 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 58 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 59 | /* Reload watchdog duration */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 60 | writel(dev->clk_rate * wdt_dev->timeout, dev->reg + WDT_VAL); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 61 | return 0; |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 62 | } |
| 63 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 64 | static int orion_wdt_start(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 65 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 66 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 67 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 68 | /* Set watchdog duration */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 69 | writel(dev->clk_rate * wdt_dev->timeout, dev->reg + WDT_VAL); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 70 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 71 | /* Enable watchdog timer */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 72 | atomic_io_modify(dev->reg + TIMER_CTRL, WDT_EN, WDT_EN); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 73 | |
| 74 | /* Enable reset on watchdog */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 75 | atomic_io_modify(dev->rstout, WDT_RESET_OUT_EN, WDT_RESET_OUT_EN); |
| 76 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 77 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 80 | static int orion_wdt_stop(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 81 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 82 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 83 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 84 | /* Disable reset on watchdog */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 85 | atomic_io_modify(dev->rstout, WDT_RESET_OUT_EN, 0); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 86 | |
| 87 | /* Disable watchdog timer */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 88 | atomic_io_modify(dev->reg + TIMER_CTRL, WDT_EN, 0); |
| 89 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 90 | return 0; |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 93 | static int orion_wdt_enabled(struct orion_watchdog *dev) |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 94 | { |
| 95 | bool enabled, running; |
| 96 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 97 | enabled = readl(dev->rstout) & WDT_RESET_OUT_EN; |
| 98 | running = readl(dev->reg + TIMER_CTRL) & WDT_EN; |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 99 | |
| 100 | return enabled && running; |
| 101 | } |
| 102 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 103 | static unsigned int orion_wdt_get_timeleft(struct watchdog_device *wdt_dev) |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 104 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 105 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 106 | return readl(dev->reg + WDT_VAL) / dev->clk_rate; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev, |
| 110 | unsigned int timeout) |
| 111 | { |
| 112 | wdt_dev->timeout = timeout; |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 113 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 116 | static const struct watchdog_info orion_wdt_info = { |
| 117 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 118 | .identity = "Orion Watchdog", |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 119 | }; |
| 120 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 121 | static const struct watchdog_ops orion_wdt_ops = { |
| 122 | .owner = THIS_MODULE, |
| 123 | .start = orion_wdt_start, |
| 124 | .stop = orion_wdt_stop, |
| 125 | .ping = orion_wdt_ping, |
| 126 | .set_timeout = orion_wdt_set_timeout, |
| 127 | .get_timeleft = orion_wdt_get_timeleft, |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 128 | }; |
| 129 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 130 | static irqreturn_t orion_wdt_irq(int irq, void *devid) |
| 131 | { |
| 132 | panic("Watchdog Timeout"); |
| 133 | return IRQ_HANDLED; |
| 134 | } |
| 135 | |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 136 | /* |
| 137 | * The original devicetree binding for this driver specified only |
| 138 | * one memory resource, so in order to keep DT backwards compatibility |
| 139 | * we try to fallback to a hardcoded register address, if the resource |
| 140 | * is missing from the devicetree. |
| 141 | */ |
| 142 | static void __iomem *orion_wdt_ioremap_rstout(struct platform_device *pdev, |
| 143 | phys_addr_t internal_regs) |
| 144 | { |
| 145 | struct resource *res; |
| 146 | phys_addr_t rstout; |
| 147 | |
| 148 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 149 | if (res) |
| 150 | return devm_ioremap(&pdev->dev, res->start, |
| 151 | resource_size(res)); |
| 152 | |
| 153 | /* This workaround works only for "orion-wdt", DT-enabled */ |
| 154 | if (!of_device_is_compatible(pdev->dev.of_node, "marvell,orion-wdt")) |
| 155 | return NULL; |
| 156 | |
| 157 | rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET; |
| 158 | |
| 159 | WARN(1, FW_BUG "falling back to harcoded RSTOUT reg 0x%x\n", rstout); |
| 160 | return devm_ioremap(&pdev->dev, rstout, 0x4); |
| 161 | } |
| 162 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 163 | static int orion_wdt_probe(struct platform_device *pdev) |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 164 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 165 | struct orion_watchdog *dev; |
| 166 | unsigned int wdt_max_duration; /* (seconds) */ |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 167 | struct resource *res; |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 168 | int ret, irq; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 169 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 170 | dev = devm_kzalloc(&pdev->dev, sizeof(struct orion_watchdog), |
| 171 | GFP_KERNEL); |
| 172 | if (!dev) |
| 173 | return -ENOMEM; |
| 174 | |
| 175 | dev->wdt.info = &orion_wdt_info; |
| 176 | dev->wdt.ops = &orion_wdt_ops; |
| 177 | dev->wdt.min_timeout = 1; |
| 178 | |
| 179 | dev->clk = devm_clk_get(&pdev->dev, NULL); |
| 180 | if (IS_ERR(dev->clk)) { |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 181 | dev_err(&pdev->dev, "Orion Watchdog missing clock\n"); |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 182 | return PTR_ERR(dev->clk); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 183 | } |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 184 | ret = clk_prepare_enable(dev->clk); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 185 | if (ret) |
| 186 | return ret; |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 187 | dev->clk_rate = clk_get_rate(dev->clk); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 188 | |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 189 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 190 | if (!res) { |
| 191 | ret = -ENODEV; |
| 192 | goto disable_clk; |
| 193 | } |
| 194 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 195 | dev->reg = devm_ioremap(&pdev->dev, res->start, |
| 196 | resource_size(res)); |
| 197 | if (!dev->reg) { |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 198 | ret = -ENOMEM; |
| 199 | goto disable_clk; |
| 200 | } |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 201 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 202 | dev->rstout = orion_wdt_ioremap_rstout(pdev, res->start & |
| 203 | INTERNAL_REGS_MASK); |
| 204 | if (!dev->rstout) { |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 205 | ret = -ENODEV; |
| 206 | goto disable_clk; |
| 207 | } |
| 208 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 209 | wdt_max_duration = WDT_MAX_CYCLE_COUNT / dev->clk_rate; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 210 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 211 | dev->wdt.timeout = wdt_max_duration; |
| 212 | dev->wdt.max_timeout = wdt_max_duration; |
| 213 | watchdog_init_timeout(&dev->wdt, heartbeat, &pdev->dev); |
| 214 | |
| 215 | platform_set_drvdata(pdev, &dev->wdt); |
| 216 | watchdog_set_drvdata(&dev->wdt, dev); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 217 | |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 218 | /* |
| 219 | * Let's make sure the watchdog is fully stopped, unless it's |
| 220 | * explicitly enabled. This may be the case if the module was |
| 221 | * removed and re-insterted, or if the bootloader explicitly |
| 222 | * set a running watchdog before booting the kernel. |
| 223 | */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 224 | if (!orion_wdt_enabled(dev)) |
| 225 | orion_wdt_stop(&dev->wdt); |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 226 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 227 | /* Request the IRQ only after the watchdog is disabled */ |
| 228 | irq = platform_get_irq(pdev, 0); |
| 229 | if (irq > 0) { |
| 230 | /* |
| 231 | * Not all supported platforms specify an interrupt for the |
| 232 | * watchdog, so let's make it optional. |
| 233 | */ |
| 234 | ret = devm_request_irq(&pdev->dev, irq, orion_wdt_irq, 0, |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 235 | pdev->name, dev); |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 236 | if (ret < 0) { |
| 237 | dev_err(&pdev->dev, "failed to request IRQ\n"); |
| 238 | goto disable_clk; |
| 239 | } |
| 240 | } |
| 241 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 242 | watchdog_set_nowayout(&dev->wdt, nowayout); |
| 243 | ret = watchdog_register_device(&dev->wdt); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 244 | if (ret) |
| 245 | goto disable_clk; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 246 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 247 | pr_info("Initial timeout %d sec%s\n", |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 248 | dev->wdt.timeout, nowayout ? ", nowayout" : ""); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 249 | return 0; |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 250 | |
| 251 | disable_clk: |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 252 | clk_disable_unprepare(dev->clk); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 253 | return ret; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 254 | } |
| 255 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 256 | static int orion_wdt_remove(struct platform_device *pdev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 257 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 258 | struct watchdog_device *wdt_dev = platform_get_drvdata(pdev); |
| 259 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 260 | |
| 261 | watchdog_unregister_device(wdt_dev); |
| 262 | clk_disable_unprepare(dev->clk); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 263 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 264 | } |
| 265 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 266 | static void orion_wdt_shutdown(struct platform_device *pdev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 267 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame^] | 268 | struct watchdog_device *wdt_dev = platform_get_drvdata(pdev); |
| 269 | orion_wdt_stop(wdt_dev); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 270 | } |
| 271 | |
Bill Pemberton | 1d13136 | 2012-11-19 13:24:05 -0500 | [diff] [blame] | 272 | static const struct of_device_id orion_wdt_of_match_table[] = { |
Andrew Lunn | 1e7bad0 | 2012-06-10 15:20:06 +0200 | [diff] [blame] | 273 | { .compatible = "marvell,orion-wdt", }, |
| 274 | {}, |
| 275 | }; |
| 276 | MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table); |
| 277 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 278 | static struct platform_driver orion_wdt_driver = { |
| 279 | .probe = orion_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 280 | .remove = orion_wdt_remove, |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 281 | .shutdown = orion_wdt_shutdown, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 282 | .driver = { |
| 283 | .owner = THIS_MODULE, |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 284 | .name = "orion_wdt", |
Sachin Kamat | 85eee81 | 2013-09-30 10:12:51 +0530 | [diff] [blame] | 285 | .of_match_table = orion_wdt_of_match_table, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 286 | }, |
| 287 | }; |
| 288 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 289 | module_platform_driver(orion_wdt_driver); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 290 | |
| 291 | MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>"); |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 292 | MODULE_DESCRIPTION("Orion Processor Watchdog"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 293 | |
| 294 | module_param(heartbeat, int, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 295 | MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 296 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 297 | module_param(nowayout, bool, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 298 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 299 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 300 | |
| 301 | MODULE_LICENSE("GPL"); |
Lubomir Rintel | f3ea733 | 2013-01-04 15:06:28 +0100 | [diff] [blame] | 302 | MODULE_ALIAS("platform:orion_wdt"); |