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> |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 21 | #include <linux/interrupt.h> |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 22 | #include <linux/io.h> |
Andrew Lunn | 4f04be6 | 2012-03-04 16:57:31 +0100 | [diff] [blame] | 23 | #include <linux/clk.h> |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 24 | #include <linux/err.h> |
Andrew Lunn | 1e7bad0 | 2012-06-10 15:20:06 +0200 | [diff] [blame] | 25 | #include <linux/of.h> |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 26 | #include <linux/of_device.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) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * Watchdog timer block registers. |
| 36 | */ |
Jason Cooper | a855a7c | 2012-03-15 00:33:26 +0000 | [diff] [blame] | 37 | #define TIMER_CTRL 0x0000 |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 38 | #define TIMER1_FIXED_ENABLE_BIT BIT(12) |
| 39 | #define WDT_AXP_FIXED_ENABLE_BIT BIT(10) |
| 40 | #define TIMER1_ENABLE_BIT BIT(2) |
| 41 | |
| 42 | #define TIMER_A370_STATUS 0x0004 |
| 43 | #define WDT_A370_EXPIRED BIT(31) |
| 44 | #define TIMER1_STATUS_BIT BIT(8) |
| 45 | |
| 46 | #define TIMER1_VAL_OFF 0x001c |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 47 | |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 48 | #define WDT_MAX_CYCLE_COUNT 0xffffffff |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 49 | |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 50 | #define WDT_A370_RATIO_MASK(v) ((v) << 16) |
| 51 | #define WDT_A370_RATIO_SHIFT 5 |
| 52 | #define WDT_A370_RATIO (1 << WDT_A370_RATIO_SHIFT) |
| 53 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 54 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Chris Packham | bb91408 | 2020-03-13 16:13:12 +1300 | [diff] [blame] | 55 | static int heartbeat; /* module parameter (seconds) */ |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 56 | |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 57 | struct orion_watchdog; |
| 58 | |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 59 | struct orion_watchdog_data { |
| 60 | int wdt_counter_offset; |
| 61 | int wdt_enable_bit; |
| 62 | int rstout_enable_bit; |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 63 | int rstout_mask_bit; |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 64 | int (*clock_init)(struct platform_device *, |
| 65 | struct orion_watchdog *); |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 66 | int (*enabled)(struct orion_watchdog *); |
Ezequiel Garcia | 490d8e3 | 2014-02-10 20:00:30 -0300 | [diff] [blame] | 67 | int (*start)(struct watchdog_device *); |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 68 | int (*stop)(struct watchdog_device *); |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 69 | }; |
| 70 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 71 | struct orion_watchdog { |
| 72 | struct watchdog_device wdt; |
| 73 | void __iomem *reg; |
| 74 | void __iomem *rstout; |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 75 | void __iomem *rstout_mask; |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 76 | unsigned long clk_rate; |
| 77 | struct clk *clk; |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 78 | const struct orion_watchdog_data *data; |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 79 | }; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 80 | |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 81 | static int orion_wdt_clock_init(struct platform_device *pdev, |
| 82 | struct orion_watchdog *dev) |
| 83 | { |
| 84 | int ret; |
| 85 | |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 86 | dev->clk = clk_get(&pdev->dev, NULL); |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 87 | if (IS_ERR(dev->clk)) |
| 88 | return PTR_ERR(dev->clk); |
| 89 | ret = clk_prepare_enable(dev->clk); |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 90 | if (ret) { |
| 91 | clk_put(dev->clk); |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 92 | return ret; |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | dev->clk_rate = clk_get_rate(dev->clk); |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | static int armada370_wdt_clock_init(struct platform_device *pdev, |
| 100 | struct orion_watchdog *dev) |
| 101 | { |
| 102 | int ret; |
| 103 | |
| 104 | dev->clk = clk_get(&pdev->dev, NULL); |
| 105 | if (IS_ERR(dev->clk)) |
| 106 | return PTR_ERR(dev->clk); |
| 107 | ret = clk_prepare_enable(dev->clk); |
| 108 | if (ret) { |
| 109 | clk_put(dev->clk); |
| 110 | return ret; |
| 111 | } |
| 112 | |
| 113 | /* Setup watchdog input clock */ |
| 114 | atomic_io_modify(dev->reg + TIMER_CTRL, |
| 115 | WDT_A370_RATIO_MASK(WDT_A370_RATIO_SHIFT), |
| 116 | WDT_A370_RATIO_MASK(WDT_A370_RATIO_SHIFT)); |
| 117 | |
| 118 | dev->clk_rate = clk_get_rate(dev->clk) / WDT_A370_RATIO; |
| 119 | return 0; |
| 120 | } |
| 121 | |
Ezequiel Garcia | 8067042 | 2014-11-04 10:21:32 -0300 | [diff] [blame] | 122 | static int armada375_wdt_clock_init(struct platform_device *pdev, |
| 123 | struct orion_watchdog *dev) |
| 124 | { |
| 125 | int ret; |
| 126 | |
| 127 | dev->clk = of_clk_get_by_name(pdev->dev.of_node, "fixed"); |
| 128 | if (!IS_ERR(dev->clk)) { |
| 129 | ret = clk_prepare_enable(dev->clk); |
| 130 | if (ret) { |
| 131 | clk_put(dev->clk); |
| 132 | return ret; |
| 133 | } |
| 134 | |
| 135 | atomic_io_modify(dev->reg + TIMER_CTRL, |
| 136 | WDT_AXP_FIXED_ENABLE_BIT, |
| 137 | WDT_AXP_FIXED_ENABLE_BIT); |
| 138 | dev->clk_rate = clk_get_rate(dev->clk); |
| 139 | |
| 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | /* Mandatory fallback for proper devicetree backward compatibility */ |
| 144 | dev->clk = clk_get(&pdev->dev, NULL); |
| 145 | if (IS_ERR(dev->clk)) |
| 146 | return PTR_ERR(dev->clk); |
| 147 | |
| 148 | ret = clk_prepare_enable(dev->clk); |
| 149 | if (ret) { |
| 150 | clk_put(dev->clk); |
| 151 | return ret; |
| 152 | } |
| 153 | |
| 154 | atomic_io_modify(dev->reg + TIMER_CTRL, |
| 155 | WDT_A370_RATIO_MASK(WDT_A370_RATIO_SHIFT), |
| 156 | WDT_A370_RATIO_MASK(WDT_A370_RATIO_SHIFT)); |
| 157 | dev->clk_rate = clk_get_rate(dev->clk) / WDT_A370_RATIO; |
| 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 162 | static int armadaxp_wdt_clock_init(struct platform_device *pdev, |
| 163 | struct orion_watchdog *dev) |
| 164 | { |
| 165 | int ret; |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 166 | u32 val; |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 167 | |
| 168 | dev->clk = of_clk_get_by_name(pdev->dev.of_node, "fixed"); |
| 169 | if (IS_ERR(dev->clk)) |
| 170 | return PTR_ERR(dev->clk); |
| 171 | ret = clk_prepare_enable(dev->clk); |
| 172 | if (ret) { |
| 173 | clk_put(dev->clk); |
| 174 | return ret; |
| 175 | } |
| 176 | |
Bhaskar Chowdhury | bbfdad8 | 2021-03-17 10:47:34 +0530 | [diff] [blame] | 177 | /* Fix the wdt and timer1 clock frequency to 25MHz */ |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 178 | val = WDT_AXP_FIXED_ENABLE_BIT | TIMER1_FIXED_ENABLE_BIT; |
| 179 | atomic_io_modify(dev->reg + TIMER_CTRL, val, val); |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 180 | |
| 181 | dev->clk_rate = clk_get_rate(dev->clk); |
| 182 | return 0; |
| 183 | } |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 184 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 185 | static int orion_wdt_ping(struct watchdog_device *wdt_dev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 186 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 187 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 188 | /* Reload watchdog duration */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 189 | writel(dev->clk_rate * wdt_dev->timeout, |
| 190 | dev->reg + dev->data->wdt_counter_offset); |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 191 | if (dev->wdt.info->options & WDIOF_PRETIMEOUT) |
| 192 | writel(dev->clk_rate * (wdt_dev->timeout - wdt_dev->pretimeout), |
| 193 | dev->reg + TIMER1_VAL_OFF); |
| 194 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 195 | return 0; |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 196 | } |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 197 | |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 198 | static int armada375_start(struct watchdog_device *wdt_dev) |
| 199 | { |
| 200 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 201 | u32 reg; |
| 202 | |
| 203 | /* Set watchdog duration */ |
| 204 | writel(dev->clk_rate * wdt_dev->timeout, |
| 205 | dev->reg + dev->data->wdt_counter_offset); |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 206 | if (dev->wdt.info->options & WDIOF_PRETIMEOUT) |
| 207 | writel(dev->clk_rate * (wdt_dev->timeout - wdt_dev->pretimeout), |
| 208 | dev->reg + TIMER1_VAL_OFF); |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 209 | |
| 210 | /* Clear the watchdog expiration bit */ |
| 211 | atomic_io_modify(dev->reg + TIMER_A370_STATUS, WDT_A370_EXPIRED, 0); |
| 212 | |
| 213 | /* Enable watchdog timer */ |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 214 | reg = dev->data->wdt_enable_bit; |
| 215 | if (dev->wdt.info->options & WDIOF_PRETIMEOUT) |
| 216 | reg |= TIMER1_ENABLE_BIT; |
| 217 | atomic_io_modify(dev->reg + TIMER_CTRL, reg, reg); |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 218 | |
| 219 | /* Enable reset on watchdog */ |
| 220 | reg = readl(dev->rstout); |
| 221 | reg |= dev->data->rstout_enable_bit; |
| 222 | writel(reg, dev->rstout); |
| 223 | |
| 224 | atomic_io_modify(dev->rstout_mask, dev->data->rstout_mask_bit, 0); |
| 225 | return 0; |
| 226 | } |
| 227 | |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 228 | static int armada370_start(struct watchdog_device *wdt_dev) |
| 229 | { |
| 230 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Ezequiel Garcia | eba985e | 2014-03-15 15:17:58 -0300 | [diff] [blame] | 231 | u32 reg; |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 232 | |
| 233 | /* Set watchdog duration */ |
| 234 | writel(dev->clk_rate * wdt_dev->timeout, |
| 235 | dev->reg + dev->data->wdt_counter_offset); |
| 236 | |
| 237 | /* Clear the watchdog expiration bit */ |
| 238 | atomic_io_modify(dev->reg + TIMER_A370_STATUS, WDT_A370_EXPIRED, 0); |
| 239 | |
| 240 | /* Enable watchdog timer */ |
| 241 | atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit, |
| 242 | dev->data->wdt_enable_bit); |
| 243 | |
Ezequiel Garcia | eba985e | 2014-03-15 15:17:58 -0300 | [diff] [blame] | 244 | /* Enable reset on watchdog */ |
| 245 | reg = readl(dev->rstout); |
| 246 | reg |= dev->data->rstout_enable_bit; |
| 247 | writel(reg, dev->rstout); |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
Ezequiel Garcia | 490d8e3 | 2014-02-10 20:00:30 -0300 | [diff] [blame] | 251 | static int orion_start(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 252 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 253 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 254 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 255 | /* Set watchdog duration */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 256 | writel(dev->clk_rate * wdt_dev->timeout, |
| 257 | dev->reg + dev->data->wdt_counter_offset); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 258 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 259 | /* Enable watchdog timer */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 260 | atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit, |
| 261 | dev->data->wdt_enable_bit); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 262 | |
| 263 | /* Enable reset on watchdog */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 264 | atomic_io_modify(dev->rstout, dev->data->rstout_enable_bit, |
| 265 | dev->data->rstout_enable_bit); |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 266 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | static int orion_wdt_start(struct watchdog_device *wdt_dev) |
| 271 | { |
Ezequiel Garcia | 490d8e3 | 2014-02-10 20:00:30 -0300 | [diff] [blame] | 272 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 273 | |
Ezequiel Garcia | 490d8e3 | 2014-02-10 20:00:30 -0300 | [diff] [blame] | 274 | /* There are some per-SoC quirks to handle */ |
| 275 | return dev->data->start(wdt_dev); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 278 | static int orion_stop(struct watchdog_device *wdt_dev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 279 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 280 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 281 | |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 282 | /* Disable reset on watchdog */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 283 | atomic_io_modify(dev->rstout, dev->data->rstout_enable_bit, 0); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 284 | |
| 285 | /* Disable watchdog timer */ |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 286 | atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit, 0); |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 287 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 288 | return 0; |
Wim Van Sebroeck | 6d0f0df | 2008-10-02 09:32:45 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 291 | static int armada375_stop(struct watchdog_device *wdt_dev) |
| 292 | { |
| 293 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 294 | u32 reg, mask; |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 295 | |
| 296 | /* Disable reset on watchdog */ |
| 297 | atomic_io_modify(dev->rstout_mask, dev->data->rstout_mask_bit, |
| 298 | dev->data->rstout_mask_bit); |
| 299 | reg = readl(dev->rstout); |
| 300 | reg &= ~dev->data->rstout_enable_bit; |
| 301 | writel(reg, dev->rstout); |
| 302 | |
| 303 | /* Disable watchdog timer */ |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 304 | mask = dev->data->wdt_enable_bit; |
| 305 | if (wdt_dev->info->options & WDIOF_PRETIMEOUT) |
| 306 | mask |= TIMER1_ENABLE_BIT; |
| 307 | atomic_io_modify(dev->reg + TIMER_CTRL, mask, 0); |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 312 | static int armada370_stop(struct watchdog_device *wdt_dev) |
| 313 | { |
| 314 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 315 | u32 reg; |
| 316 | |
| 317 | /* Disable reset on watchdog */ |
| 318 | reg = readl(dev->rstout); |
| 319 | reg &= ~dev->data->rstout_enable_bit; |
| 320 | writel(reg, dev->rstout); |
| 321 | |
| 322 | /* Disable watchdog timer */ |
| 323 | atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit, 0); |
| 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
| 328 | static int orion_wdt_stop(struct watchdog_device *wdt_dev) |
| 329 | { |
| 330 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 331 | |
| 332 | return dev->data->stop(wdt_dev); |
| 333 | } |
| 334 | |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 335 | static int orion_enabled(struct orion_watchdog *dev) |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 336 | { |
| 337 | bool enabled, running; |
| 338 | |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 339 | enabled = readl(dev->rstout) & dev->data->rstout_enable_bit; |
| 340 | running = readl(dev->reg + TIMER_CTRL) & dev->data->wdt_enable_bit; |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 341 | |
| 342 | return enabled && running; |
| 343 | } |
| 344 | |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 345 | static int armada375_enabled(struct orion_watchdog *dev) |
| 346 | { |
| 347 | bool masked, enabled, running; |
| 348 | |
| 349 | masked = readl(dev->rstout_mask) & dev->data->rstout_mask_bit; |
| 350 | enabled = readl(dev->rstout) & dev->data->rstout_enable_bit; |
| 351 | running = readl(dev->reg + TIMER_CTRL) & dev->data->wdt_enable_bit; |
| 352 | |
| 353 | return !masked && enabled && running; |
| 354 | } |
| 355 | |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 356 | static int orion_wdt_enabled(struct watchdog_device *wdt_dev) |
| 357 | { |
| 358 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 359 | |
| 360 | return dev->data->enabled(dev); |
| 361 | } |
| 362 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 363 | 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] | 364 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 365 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 366 | return readl(dev->reg + dev->data->wdt_counter_offset) / dev->clk_rate; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 367 | } |
| 368 | |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 369 | static struct watchdog_info orion_wdt_info = { |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 370 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 371 | .identity = "Orion Watchdog", |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 372 | }; |
| 373 | |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 374 | static const struct watchdog_ops orion_wdt_ops = { |
| 375 | .owner = THIS_MODULE, |
| 376 | .start = orion_wdt_start, |
| 377 | .stop = orion_wdt_stop, |
| 378 | .ping = orion_wdt_ping, |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 379 | .get_timeleft = orion_wdt_get_timeleft, |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 380 | }; |
| 381 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 382 | static irqreturn_t orion_wdt_irq(int irq, void *devid) |
| 383 | { |
| 384 | panic("Watchdog Timeout"); |
| 385 | return IRQ_HANDLED; |
| 386 | } |
| 387 | |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 388 | static irqreturn_t orion_wdt_pre_irq(int irq, void *devid) |
| 389 | { |
| 390 | struct orion_watchdog *dev = devid; |
| 391 | |
| 392 | atomic_io_modify(dev->reg + TIMER_A370_STATUS, |
| 393 | TIMER1_STATUS_BIT, 0); |
| 394 | watchdog_notify_pretimeout(&dev->wdt); |
| 395 | return IRQ_HANDLED; |
| 396 | } |
| 397 | |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 398 | /* |
| 399 | * The original devicetree binding for this driver specified only |
| 400 | * one memory resource, so in order to keep DT backwards compatibility |
| 401 | * we try to fallback to a hardcoded register address, if the resource |
| 402 | * is missing from the devicetree. |
| 403 | */ |
| 404 | static void __iomem *orion_wdt_ioremap_rstout(struct platform_device *pdev, |
| 405 | phys_addr_t internal_regs) |
| 406 | { |
| 407 | struct resource *res; |
| 408 | phys_addr_t rstout; |
| 409 | |
| 410 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 411 | if (res) |
| 412 | return devm_ioremap(&pdev->dev, res->start, |
| 413 | resource_size(res)); |
| 414 | |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 415 | rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET; |
| 416 | |
Colin Ian King | 9bf2dfb | 2016-12-29 21:49:18 +0000 | [diff] [blame] | 417 | WARN(1, FW_BUG "falling back to hardcoded RSTOUT reg %pa\n", &rstout); |
Ezequiel Garcia | 868eb61 | 2014-02-10 20:00:25 -0300 | [diff] [blame] | 418 | return devm_ioremap(&pdev->dev, rstout, 0x4); |
| 419 | } |
| 420 | |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 421 | static const struct orion_watchdog_data orion_data = { |
| 422 | .rstout_enable_bit = BIT(1), |
| 423 | .wdt_enable_bit = BIT(4), |
| 424 | .wdt_counter_offset = 0x24, |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 425 | .clock_init = orion_wdt_clock_init, |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 426 | .enabled = orion_enabled, |
Ezequiel Garcia | 490d8e3 | 2014-02-10 20:00:30 -0300 | [diff] [blame] | 427 | .start = orion_start, |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 428 | .stop = orion_stop, |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 429 | }; |
| 430 | |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 431 | static const struct orion_watchdog_data armada370_data = { |
| 432 | .rstout_enable_bit = BIT(8), |
| 433 | .wdt_enable_bit = BIT(8), |
| 434 | .wdt_counter_offset = 0x34, |
| 435 | .clock_init = armada370_wdt_clock_init, |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 436 | .enabled = orion_enabled, |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 437 | .start = armada370_start, |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 438 | .stop = armada370_stop, |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 439 | }; |
| 440 | |
| 441 | static const struct orion_watchdog_data armadaxp_data = { |
| 442 | .rstout_enable_bit = BIT(8), |
| 443 | .wdt_enable_bit = BIT(8), |
| 444 | .wdt_counter_offset = 0x34, |
| 445 | .clock_init = armadaxp_wdt_clock_init, |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 446 | .enabled = orion_enabled, |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 447 | .start = armada370_start, |
Ezequiel Garcia | ebf5cf7 | 2014-03-15 15:17:59 -0300 | [diff] [blame] | 448 | .stop = armada370_stop, |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 449 | }; |
| 450 | |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 451 | static const struct orion_watchdog_data armada375_data = { |
| 452 | .rstout_enable_bit = BIT(8), |
| 453 | .rstout_mask_bit = BIT(10), |
| 454 | .wdt_enable_bit = BIT(8), |
| 455 | .wdt_counter_offset = 0x34, |
Ezequiel Garcia | 8067042 | 2014-11-04 10:21:32 -0300 | [diff] [blame] | 456 | .clock_init = armada375_wdt_clock_init, |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 457 | .enabled = armada375_enabled, |
| 458 | .start = armada375_start, |
| 459 | .stop = armada375_stop, |
| 460 | }; |
| 461 | |
| 462 | static const struct orion_watchdog_data armada380_data = { |
| 463 | .rstout_enable_bit = BIT(8), |
| 464 | .rstout_mask_bit = BIT(10), |
| 465 | .wdt_enable_bit = BIT(8), |
| 466 | .wdt_counter_offset = 0x34, |
| 467 | .clock_init = armadaxp_wdt_clock_init, |
| 468 | .enabled = armada375_enabled, |
| 469 | .start = armada375_start, |
| 470 | .stop = armada375_stop, |
| 471 | }; |
| 472 | |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 473 | static const struct of_device_id orion_wdt_of_match_table[] = { |
| 474 | { |
| 475 | .compatible = "marvell,orion-wdt", |
| 476 | .data = &orion_data, |
| 477 | }, |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 478 | { |
| 479 | .compatible = "marvell,armada-370-wdt", |
| 480 | .data = &armada370_data, |
| 481 | }, |
| 482 | { |
| 483 | .compatible = "marvell,armada-xp-wdt", |
| 484 | .data = &armadaxp_data, |
| 485 | }, |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 486 | { |
| 487 | .compatible = "marvell,armada-375-wdt", |
| 488 | .data = &armada375_data, |
| 489 | }, |
| 490 | { |
| 491 | .compatible = "marvell,armada-380-wdt", |
| 492 | .data = &armada380_data, |
| 493 | }, |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 494 | {}, |
| 495 | }; |
| 496 | MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table); |
| 497 | |
Ezequiel Garcia | aaaac9e | 2014-03-15 15:17:56 -0300 | [diff] [blame] | 498 | static int orion_wdt_get_regs(struct platform_device *pdev, |
| 499 | struct orion_watchdog *dev) |
| 500 | { |
Ezequiel Garcia | 92d4fc1 | 2014-03-15 15:17:57 -0300 | [diff] [blame] | 501 | struct device_node *node = pdev->dev.of_node; |
Ezequiel Garcia | aaaac9e | 2014-03-15 15:17:56 -0300 | [diff] [blame] | 502 | struct resource *res; |
| 503 | |
| 504 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 505 | if (!res) |
| 506 | return -ENODEV; |
| 507 | dev->reg = devm_ioremap(&pdev->dev, res->start, |
| 508 | resource_size(res)); |
| 509 | if (!dev->reg) |
| 510 | return -ENOMEM; |
| 511 | |
Ezequiel Garcia | 92d4fc1 | 2014-03-15 15:17:57 -0300 | [diff] [blame] | 512 | /* Each supported compatible has some RSTOUT register quirk */ |
| 513 | if (of_device_is_compatible(node, "marvell,orion-wdt")) { |
| 514 | |
| 515 | dev->rstout = orion_wdt_ioremap_rstout(pdev, res->start & |
| 516 | INTERNAL_REGS_MASK); |
| 517 | if (!dev->rstout) |
| 518 | return -ENODEV; |
| 519 | |
| 520 | } else if (of_device_is_compatible(node, "marvell,armada-370-wdt") || |
| 521 | of_device_is_compatible(node, "marvell,armada-xp-wdt")) { |
| 522 | |
| 523 | /* Dedicated RSTOUT register, can be requested. */ |
Guenter Roeck | 0f0a6a2 | 2019-04-02 12:01:53 -0700 | [diff] [blame] | 524 | dev->rstout = devm_platform_ioremap_resource(pdev, 1); |
Ezequiel Garcia | 92d4fc1 | 2014-03-15 15:17:57 -0300 | [diff] [blame] | 525 | if (IS_ERR(dev->rstout)) |
| 526 | return PTR_ERR(dev->rstout); |
| 527 | |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 528 | } else if (of_device_is_compatible(node, "marvell,armada-375-wdt") || |
| 529 | of_device_is_compatible(node, "marvell,armada-380-wdt")) { |
| 530 | |
| 531 | /* Dedicated RSTOUT register, can be requested. */ |
Guenter Roeck | 0f0a6a2 | 2019-04-02 12:01:53 -0700 | [diff] [blame] | 532 | dev->rstout = devm_platform_ioremap_resource(pdev, 1); |
Ezequiel Garcia | b483642 | 2014-03-15 15:18:01 -0300 | [diff] [blame] | 533 | if (IS_ERR(dev->rstout)) |
| 534 | return PTR_ERR(dev->rstout); |
| 535 | |
| 536 | res = platform_get_resource(pdev, IORESOURCE_MEM, 2); |
| 537 | if (!res) |
| 538 | return -ENODEV; |
| 539 | dev->rstout_mask = devm_ioremap(&pdev->dev, res->start, |
| 540 | resource_size(res)); |
| 541 | if (!dev->rstout_mask) |
| 542 | return -ENOMEM; |
| 543 | |
Ezequiel Garcia | 92d4fc1 | 2014-03-15 15:17:57 -0300 | [diff] [blame] | 544 | } else { |
Ezequiel Garcia | aaaac9e | 2014-03-15 15:17:56 -0300 | [diff] [blame] | 545 | return -ENODEV; |
Ezequiel Garcia | 92d4fc1 | 2014-03-15 15:17:57 -0300 | [diff] [blame] | 546 | } |
Ezequiel Garcia | aaaac9e | 2014-03-15 15:17:56 -0300 | [diff] [blame] | 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 551 | static int orion_wdt_probe(struct platform_device *pdev) |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 552 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 553 | struct orion_watchdog *dev; |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 554 | const struct of_device_id *match; |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 555 | unsigned int wdt_max_duration; /* (seconds) */ |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 556 | int ret, irq; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 557 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 558 | dev = devm_kzalloc(&pdev->dev, sizeof(struct orion_watchdog), |
| 559 | GFP_KERNEL); |
| 560 | if (!dev) |
| 561 | return -ENOMEM; |
| 562 | |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 563 | match = of_match_device(orion_wdt_of_match_table, &pdev->dev); |
| 564 | if (!match) |
| 565 | /* Default legacy match */ |
| 566 | match = &orion_wdt_of_match_table[0]; |
| 567 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 568 | dev->wdt.info = &orion_wdt_info; |
| 569 | dev->wdt.ops = &orion_wdt_ops; |
| 570 | dev->wdt.min_timeout = 1; |
Ezequiel Garcia | fc72385 | 2014-02-10 20:00:28 -0300 | [diff] [blame] | 571 | dev->data = match->data; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 572 | |
Ezequiel Garcia | aaaac9e | 2014-03-15 15:17:56 -0300 | [diff] [blame] | 573 | ret = orion_wdt_get_regs(pdev, dev); |
| 574 | if (ret) |
| 575 | return ret; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 576 | |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 577 | ret = dev->data->clock_init(pdev, dev); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 578 | if (ret) { |
Ezequiel Garcia | 1924227 | 2014-02-10 20:00:29 -0300 | [diff] [blame] | 579 | dev_err(&pdev->dev, "cannot initialize clock\n"); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 580 | return ret; |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 581 | } |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 582 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 583 | wdt_max_duration = WDT_MAX_CYCLE_COUNT / dev->clk_rate; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 584 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 585 | dev->wdt.timeout = wdt_max_duration; |
| 586 | dev->wdt.max_timeout = wdt_max_duration; |
Pratyush Anand | 6551881 | 2015-08-20 14:05:01 +0530 | [diff] [blame] | 587 | dev->wdt.parent = &pdev->dev; |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 588 | watchdog_init_timeout(&dev->wdt, heartbeat, &pdev->dev); |
| 589 | |
| 590 | platform_set_drvdata(pdev, &dev->wdt); |
| 591 | watchdog_set_drvdata(&dev->wdt, dev); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 592 | |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 593 | /* |
| 594 | * Let's make sure the watchdog is fully stopped, unless it's |
| 595 | * explicitly enabled. This may be the case if the module was |
Chris Packham | 844ecd9 | 2017-10-11 15:29:56 +1300 | [diff] [blame] | 596 | * removed and re-inserted, or if the bootloader explicitly |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 597 | * set a running watchdog before booting the kernel. |
| 598 | */ |
Ezequiel Garcia | 1b0ea57 | 2014-03-15 15:18:00 -0300 | [diff] [blame] | 599 | if (!orion_wdt_enabled(&dev->wdt)) |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 600 | orion_wdt_stop(&dev->wdt); |
Maxim Kochetkov | 2421cfd | 2018-06-07 16:54:37 +0300 | [diff] [blame] | 601 | else |
| 602 | set_bit(WDOG_HW_RUNNING, &dev->wdt.status); |
Ezequiel Garcia | d9d0c53 | 2014-02-10 20:00:23 -0300 | [diff] [blame] | 603 | |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 604 | /* Request the IRQ only after the watchdog is disabled */ |
Russell King | dcbce5f | 2019-11-29 14:51:35 +0000 | [diff] [blame] | 605 | irq = platform_get_irq_optional(pdev, 0); |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 606 | if (irq > 0) { |
| 607 | /* |
| 608 | * Not all supported platforms specify an interrupt for the |
| 609 | * watchdog, so let's make it optional. |
| 610 | */ |
| 611 | ret = devm_request_irq(&pdev->dev, irq, orion_wdt_irq, 0, |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 612 | pdev->name, dev); |
Ezequiel Garcia | e97662e | 2014-02-10 20:00:24 -0300 | [diff] [blame] | 613 | if (ret < 0) { |
| 614 | dev_err(&pdev->dev, "failed to request IRQ\n"); |
| 615 | goto disable_clk; |
| 616 | } |
| 617 | } |
| 618 | |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 619 | /* Optional 2nd interrupt for pretimeout */ |
Russell King | dcbce5f | 2019-11-29 14:51:35 +0000 | [diff] [blame] | 620 | irq = platform_get_irq_optional(pdev, 1); |
Chris Packham | e07a4c7 | 2019-08-30 09:52:24 +1200 | [diff] [blame] | 621 | if (irq > 0) { |
| 622 | orion_wdt_info.options |= WDIOF_PRETIMEOUT; |
| 623 | ret = devm_request_irq(&pdev->dev, irq, orion_wdt_pre_irq, |
| 624 | 0, pdev->name, dev); |
| 625 | if (ret < 0) { |
| 626 | dev_err(&pdev->dev, "failed to request IRQ\n"); |
| 627 | goto disable_clk; |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 632 | watchdog_set_nowayout(&dev->wdt, nowayout); |
| 633 | ret = watchdog_register_device(&dev->wdt); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 634 | if (ret) |
| 635 | goto disable_clk; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 636 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 637 | pr_info("Initial timeout %d sec%s\n", |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 638 | dev->wdt.timeout, nowayout ? ", nowayout" : ""); |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 639 | return 0; |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 640 | |
| 641 | disable_clk: |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 642 | clk_disable_unprepare(dev->clk); |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 643 | clk_put(dev->clk); |
Ezequiel Garcia | bb02c66 | 2014-02-10 20:00:20 -0300 | [diff] [blame] | 644 | return ret; |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 645 | } |
| 646 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 647 | static int orion_wdt_remove(struct platform_device *pdev) |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 648 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 649 | struct watchdog_device *wdt_dev = platform_get_drvdata(pdev); |
| 650 | struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev); |
| 651 | |
| 652 | watchdog_unregister_device(wdt_dev); |
| 653 | clk_disable_unprepare(dev->clk); |
Ezequiel Garcia | 463f96e | 2014-02-10 20:00:31 -0300 | [diff] [blame] | 654 | clk_put(dev->clk); |
Axel Lin | 0dd6e48 | 2012-03-26 11:14:29 +0800 | [diff] [blame] | 655 | return 0; |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 656 | } |
| 657 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 658 | static void orion_wdt_shutdown(struct platform_device *pdev) |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 659 | { |
Ezequiel Garcia | b89a9c4 | 2014-02-10 20:00:27 -0300 | [diff] [blame] | 660 | struct watchdog_device *wdt_dev = platform_get_drvdata(pdev); |
| 661 | orion_wdt_stop(wdt_dev); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 662 | } |
| 663 | |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 664 | static struct platform_driver orion_wdt_driver = { |
| 665 | .probe = orion_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 666 | .remove = orion_wdt_remove, |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 667 | .shutdown = orion_wdt_shutdown, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 668 | .driver = { |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 669 | .name = "orion_wdt", |
Sachin Kamat | 85eee81 | 2013-09-30 10:12:51 +0530 | [diff] [blame] | 670 | .of_match_table = orion_wdt_of_match_table, |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 671 | }, |
| 672 | }; |
| 673 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 674 | module_platform_driver(orion_wdt_driver); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 675 | |
| 676 | MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>"); |
Nicolas Pitre | 3b937a7db | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 677 | MODULE_DESCRIPTION("Orion Processor Watchdog"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 678 | |
| 679 | module_param(heartbeat, int, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 680 | MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 681 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 682 | module_param(nowayout, bool, 0); |
Thomas Reitmayr | df6707b | 2009-02-20 19:44:59 +0100 | [diff] [blame] | 683 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 684 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Sylver Bruneau | 22ac923 | 2008-06-26 10:47:45 +0200 | [diff] [blame] | 685 | |
Uwe Kleine-König | ecd94a4 | 2017-03-29 17:34:24 +0200 | [diff] [blame] | 686 | MODULE_LICENSE("GPL v2"); |
Lubomir Rintel | f3ea733 | 2013-01-04 15:06:28 +0100 | [diff] [blame] | 687 | MODULE_ALIAS("platform:orion_wdt"); |