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> |
Nicolas Pitre | fdd8b07 | 2009-04-22 20:08:17 +0100 | [diff] [blame] | 27 | #include <mach/bridge-regs.h> |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * Watchdog timer block registers. |
| 31 | */ |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 32 | #define TIMER_CTRL 0x0000 |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 33 | #define WDT_EN 0x0010 |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 34 | #define WDT_VAL 0x0024 |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 35 | |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 36 | #define WDT_MAX_CYCLE_COUNT 0xffffffff |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 37 | |
Russell King | fa142ff | 2013-06-18 17:19:32 +0100 | [diff] [blame] | 38 | #define WDT_RESET_OUT_EN BIT(1) |
| 39 | #define WDT_INT_REQ BIT(3) |
| 40 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 41 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 42 | static int heartbeat = -1; /* module parameter (seconds) */ |
| 43 | static unsigned int wdt_max_duration; /* (seconds) */ |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 44 | static struct clk *clk; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 45 | static unsigned int wdt_tclk; |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 46 | static void __iomem *wdt_reg; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 47 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 48 | static int orion_wdt_ping(struct watchdog_device *wdt_dev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 49 | { |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 50 | /* Reload watchdog duration */ |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 51 | writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 52 | return 0; |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 53 | } |
| 54 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 55 | static int orion_wdt_start(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 56 | { |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 57 | /* Set watchdog duration */ |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 58 | writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 59 | |
| 60 | /* Clear watchdog timer interrupt */ |
Russell King | 6910ceb | 2013-06-18 17:20:32 +0100 | [diff] [blame] | 61 | writel(~WDT_INT_REQ, BRIDGE_CAUSE); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 62 | |
| 63 | /* Enable watchdog timer */ |
Ezequiel Garcia | fc8cd2a | 2014-02-10 20:00:21 -0300 | [diff] [blame] | 64 | atomic_io_modify(wdt_reg + TIMER_CTRL, WDT_EN, WDT_EN); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 65 | |
| 66 | /* Enable reset on watchdog */ |
Ezequiel Garcia | fc8cd2a | 2014-02-10 20:00:21 -0300 | [diff] [blame] | 67 | atomic_io_modify(RSTOUTn_MASK, WDT_RESET_OUT_EN, WDT_RESET_OUT_EN); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 68 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 69 | } |
| 70 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 71 | static int orion_wdt_stop(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 72 | { |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 73 | /* Disable reset on watchdog */ |
Ezequiel Garcia | fc8cd2a | 2014-02-10 20:00:21 -0300 | [diff] [blame] | 74 | atomic_io_modify(RSTOUTn_MASK, WDT_RESET_OUT_EN, 0); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 75 | |
| 76 | /* Disable watchdog timer */ |
Ezequiel Garcia | fc8cd2a | 2014-02-10 20:00:21 -0300 | [diff] [blame] | 77 | atomic_io_modify(wdt_reg + TIMER_CTRL, WDT_EN, 0); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 78 | return 0; |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 81 | static int orion_wdt_enabled(void) |
| 82 | { |
| 83 | bool enabled, running; |
| 84 | |
| 85 | enabled = readl(RSTOUTn_MASK) & WDT_RESET_OUT_EN; |
| 86 | running = readl(wdt_reg + TIMER_CTRL) & WDT_EN; |
| 87 | |
| 88 | return enabled && running; |
| 89 | } |
| 90 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 91 | 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] | 92 | { |
Ezequiel Garcia | fc8cd2a | 2014-02-10 20:00:21 -0300 | [diff] [blame] | 93 | return readl(wdt_reg + WDT_VAL) / wdt_tclk; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev, |
| 97 | unsigned int timeout) |
| 98 | { |
| 99 | wdt_dev->timeout = timeout; |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 100 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 101 | } |
| 102 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 103 | static const struct watchdog_info orion_wdt_info = { |
| 104 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 105 | .identity = "Orion Watchdog", |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 106 | }; |
| 107 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 108 | static const struct watchdog_ops orion_wdt_ops = { |
| 109 | .owner = THIS_MODULE, |
| 110 | .start = orion_wdt_start, |
| 111 | .stop = orion_wdt_stop, |
| 112 | .ping = orion_wdt_ping, |
| 113 | .set_timeout = orion_wdt_set_timeout, |
| 114 | .get_timeleft = orion_wdt_get_timeleft, |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 115 | }; |
| 116 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 117 | static struct watchdog_device orion_wdt = { |
| 118 | .info = &orion_wdt_info, |
| 119 | .ops = &orion_wdt_ops, |
Fabio Porcedda | c1fd5f6 | 2013-02-14 09:14:25 +0100 | [diff] [blame] | 120 | .min_timeout = 1, |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 121 | }; |
| 122 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame^] | 123 | static irqreturn_t orion_wdt_irq(int irq, void *devid) |
| 124 | { |
| 125 | panic("Watchdog Timeout"); |
| 126 | return IRQ_HANDLED; |
| 127 | } |
| 128 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 129 | static int orion_wdt_probe(struct platform_device *pdev) |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 130 | { |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 131 | struct resource *res; |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame^] | 132 | int ret, irq; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 133 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 134 | clk = devm_clk_get(&pdev->dev, NULL); |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 135 | if (IS_ERR(clk)) { |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 136 | dev_err(&pdev->dev, "Orion Watchdog missing clock\n"); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 137 | return PTR_ERR(clk); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 138 | } |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 139 | ret = clk_prepare_enable(clk); |
| 140 | if (ret) |
| 141 | return ret; |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 142 | wdt_tclk = clk_get_rate(clk); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 143 | |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 144 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 145 | if (!res) { |
| 146 | ret = -ENODEV; |
| 147 | goto disable_clk; |
| 148 | } |
| 149 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 150 | wdt_reg = devm_ioremap(&pdev->dev, res->start, resource_size(res)); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 151 | if (!wdt_reg) { |
| 152 | ret = -ENOMEM; |
| 153 | goto disable_clk; |
| 154 | } |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 155 | |
| 156 | wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 157 | |
Fabio Porcedda | c1fd5f6 | 2013-02-14 09:14:25 +0100 | [diff] [blame] | 158 | orion_wdt.timeout = wdt_max_duration; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 159 | orion_wdt.max_timeout = wdt_max_duration; |
Fabio Porcedda | c1fd5f6 | 2013-02-14 09:14:25 +0100 | [diff] [blame] | 160 | watchdog_init_timeout(&orion_wdt, heartbeat, &pdev->dev); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 161 | |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 162 | /* |
| 163 | * Let's make sure the watchdog is fully stopped, unless it's |
| 164 | * explicitly enabled. This may be the case if the module was |
| 165 | * removed and re-insterted, or if the bootloader explicitly |
| 166 | * set a running watchdog before booting the kernel. |
| 167 | */ |
| 168 | if (!orion_wdt_enabled()) |
| 169 | orion_wdt_stop(&orion_wdt); |
| 170 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame^] | 171 | /* Request the IRQ only after the watchdog is disabled */ |
| 172 | irq = platform_get_irq(pdev, 0); |
| 173 | if (irq > 0) { |
| 174 | /* |
| 175 | * Not all supported platforms specify an interrupt for the |
| 176 | * watchdog, so let's make it optional. |
| 177 | */ |
| 178 | ret = devm_request_irq(&pdev->dev, irq, orion_wdt_irq, 0, |
| 179 | pdev->name, &orion_wdt); |
| 180 | if (ret < 0) { |
| 181 | dev_err(&pdev->dev, "failed to request IRQ\n"); |
| 182 | goto disable_clk; |
| 183 | } |
| 184 | } |
| 185 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 186 | watchdog_set_nowayout(&orion_wdt, nowayout); |
| 187 | ret = watchdog_register_device(&orion_wdt); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 188 | if (ret) |
| 189 | goto disable_clk; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 190 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 191 | pr_info("Initial timeout %d sec%s\n", |
Fabio Porcedda | c1fd5f6 | 2013-02-14 09:14:25 +0100 | [diff] [blame] | 192 | orion_wdt.timeout, nowayout ? ", nowayout" : ""); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 193 | return 0; |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 194 | |
| 195 | disable_clk: |
| 196 | clk_disable_unprepare(clk); |
| 197 | return ret; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 198 | } |
| 199 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 200 | static int orion_wdt_remove(struct platform_device *pdev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 201 | { |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 202 | watchdog_unregister_device(&orion_wdt); |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 203 | clk_disable_unprepare(clk); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 204 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 205 | } |
| 206 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 207 | static void orion_wdt_shutdown(struct platform_device *pdev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 208 | { |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 209 | orion_wdt_stop(&orion_wdt); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Bill Pemberton | 1d13136 | 2012-11-19 13:24:05 -0500 | [diff] [blame] | 212 | static const struct of_device_id orion_wdt_of_match_table[] = { |
Andrew Lunn | 1e7bad0 | 2012-06-10 15:20:06 +0200 | [diff] [blame] | 213 | { .compatible = "marvell,orion-wdt", }, |
| 214 | {}, |
| 215 | }; |
| 216 | MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table); |
| 217 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 218 | static struct platform_driver orion_wdt_driver = { |
| 219 | .probe = orion_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 220 | .remove = orion_wdt_remove, |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 221 | .shutdown = orion_wdt_shutdown, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 222 | .driver = { |
| 223 | .owner = THIS_MODULE, |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 224 | .name = "orion_wdt", |
Sachin Kamat | 85eee81 | 2013-09-30 10:12:51 +0530 | [diff] [blame] | 225 | .of_match_table = orion_wdt_of_match_table, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 226 | }, |
| 227 | }; |
| 228 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 229 | module_platform_driver(orion_wdt_driver); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 230 | |
| 231 | MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>"); |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 232 | MODULE_DESCRIPTION("Orion Processor Watchdog"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 233 | |
| 234 | module_param(heartbeat, int, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 235 | MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 236 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 237 | module_param(nowayout, bool, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 238 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 239 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 240 | |
| 241 | MODULE_LICENSE("GPL"); |
Lubomir Rintel | f3ea733 | 2013-01-04 15:06:28 +0100 | [diff] [blame] | 242 | MODULE_ALIAS("platform:orion_wdt"); |