John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify it |
| 3 | * under the terms of the GNU General Public License version 2 as published |
| 4 | * by the Free Software Foundation. |
| 5 | * |
John Crispin | f3519a6 | 2016-12-20 19:56:59 +0100 | [diff] [blame] | 6 | * Copyright (C) 2010 John Crispin <john@phrozen.org> |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 7 | * Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de> |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 8 | * Based on EP93xx wdt driver |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
Hauke Mehrtens | 1f59f8a | 2018-09-13 23:32:09 +0200 | [diff] [blame] | 12 | #include <linux/bitops.h> |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 13 | #include <linux/watchdog.h> |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 14 | #include <linux/of_platform.h> |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 15 | #include <linux/uaccess.h> |
| 16 | #include <linux/clk.h> |
| 17 | #include <linux/io.h> |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 18 | #include <linux/regmap.h> |
| 19 | #include <linux/mfd/syscon.h> |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 20 | |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 21 | #include <lantiq_soc.h> |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 22 | |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 23 | #define LTQ_XRX_RCU_RST_STAT 0x0014 |
| 24 | #define LTQ_XRX_RCU_RST_STAT_WDT BIT(31) |
| 25 | |
| 26 | /* CPU0 Reset Source Register */ |
| 27 | #define LTQ_FALCON_SYS1_CPU0RS 0x0060 |
| 28 | /* reset cause mask */ |
| 29 | #define LTQ_FALCON_SYS1_CPU0RS_MASK 0x0007 |
| 30 | #define LTQ_FALCON_SYS1_CPU0RS_WDT 0x02 |
| 31 | |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 32 | /* |
| 33 | * Section 3.4 of the datasheet |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 34 | * The password sequence protects the WDT control register from unintended |
| 35 | * write actions, which might cause malfunction of the WDT. |
| 36 | * |
| 37 | * essentially the following two magic passwords need to be written to allow |
| 38 | * IO access to the WDT core |
| 39 | */ |
Hauke Mehrtens | 1f59f8a | 2018-09-13 23:32:09 +0200 | [diff] [blame] | 40 | #define LTQ_WDT_CR_PW1 0x00BE0000 |
| 41 | #define LTQ_WDT_CR_PW2 0x00DC0000 |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 42 | |
Hauke Mehrtens | 1f59f8a | 2018-09-13 23:32:09 +0200 | [diff] [blame] | 43 | #define LTQ_WDT_CR 0x0 /* watchdog control register */ |
| 44 | #define LTQ_WDT_CR_GEN BIT(31) /* enable bit */ |
| 45 | /* Pre-warning limit set to 1/16 of max WDT period */ |
| 46 | #define LTQ_WDT_CR_PWL (0x3 << 26) |
| 47 | /* set clock divider to 0x40000 */ |
| 48 | #define LTQ_WDT_CR_CLKDIV (0x3 << 24) |
| 49 | #define LTQ_WDT_CR_PW_MASK GENMASK(23, 16) /* Password field */ |
| 50 | #define LTQ_WDT_CR_MAX_TIMEOUT ((1 << 16) - 1) /* The reload field is 16 bit */ |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 51 | #define LTQ_WDT_SR 0x8 /* watchdog status register */ |
| 52 | #define LTQ_WDT_SR_EN BIT(31) /* Enable */ |
Hauke Mehrtens | c99d9df | 2018-09-13 23:32:11 +0200 | [diff] [blame^] | 53 | #define LTQ_WDT_SR_VALUE_MASK GENMASK(15, 0) /* Timer value */ |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 54 | |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 55 | #define LTQ_WDT_DIVIDER 0x40000 |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 56 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 57 | static bool nowayout = WATCHDOG_NOWAYOUT; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 58 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 59 | struct ltq_wdt_hw { |
| 60 | int (*bootstatus_get)(struct device *dev); |
| 61 | }; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 62 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 63 | struct ltq_wdt_priv { |
| 64 | struct watchdog_device wdt; |
| 65 | void __iomem *membase; |
| 66 | unsigned long clk_rate; |
| 67 | }; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 68 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 69 | static u32 ltq_wdt_r32(struct ltq_wdt_priv *priv, u32 offset) |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 70 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 71 | return __raw_readl(priv->membase + offset); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 72 | } |
| 73 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 74 | static void ltq_wdt_w32(struct ltq_wdt_priv *priv, u32 val, u32 offset) |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 75 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 76 | __raw_writel(val, priv->membase + offset); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 77 | } |
| 78 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 79 | static void ltq_wdt_mask(struct ltq_wdt_priv *priv, u32 clear, u32 set, |
| 80 | u32 offset) |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 81 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 82 | u32 val = ltq_wdt_r32(priv, offset); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 83 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 84 | val &= ~(clear); |
| 85 | val |= set; |
| 86 | ltq_wdt_w32(priv, val, offset); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 87 | } |
| 88 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 89 | static struct ltq_wdt_priv *ltq_wdt_get_priv(struct watchdog_device *wdt) |
| 90 | { |
| 91 | return container_of(wdt, struct ltq_wdt_priv, wdt); |
| 92 | } |
| 93 | |
| 94 | static struct watchdog_info ltq_wdt_info = { |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 95 | .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 96 | WDIOF_CARDRESET, |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 97 | .identity = "ltq_wdt", |
| 98 | }; |
| 99 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 100 | static int ltq_wdt_start(struct watchdog_device *wdt) |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 101 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 102 | struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt); |
| 103 | u32 timeout; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 104 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 105 | timeout = wdt->timeout * priv->clk_rate; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 106 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 107 | ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR); |
| 108 | /* write the second magic plus the configuration and new timeout */ |
| 109 | ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT, |
| 110 | LTQ_WDT_CR_GEN | LTQ_WDT_CR_PWL | LTQ_WDT_CR_CLKDIV | |
| 111 | LTQ_WDT_CR_PW2 | timeout, |
| 112 | LTQ_WDT_CR); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 117 | static int ltq_wdt_stop(struct watchdog_device *wdt) |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 118 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 119 | struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt); |
| 120 | |
| 121 | ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR); |
| 122 | ltq_wdt_mask(priv, LTQ_WDT_CR_GEN | LTQ_WDT_CR_PW_MASK, |
| 123 | LTQ_WDT_CR_PW2, LTQ_WDT_CR); |
| 124 | |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static int ltq_wdt_ping(struct watchdog_device *wdt) |
| 129 | { |
| 130 | struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt); |
| 131 | u32 timeout; |
| 132 | |
| 133 | timeout = wdt->timeout * priv->clk_rate; |
| 134 | |
| 135 | ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR); |
| 136 | /* write the second magic plus the configuration and new timeout */ |
| 137 | ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT, |
| 138 | LTQ_WDT_CR_PW2 | timeout, LTQ_WDT_CR); |
| 139 | |
| 140 | return 0; |
| 141 | } |
| 142 | |
Hauke Mehrtens | c99d9df | 2018-09-13 23:32:11 +0200 | [diff] [blame^] | 143 | static unsigned int ltq_wdt_get_timeleft(struct watchdog_device *wdt) |
| 144 | { |
| 145 | struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt); |
| 146 | u64 timeout; |
| 147 | |
| 148 | timeout = ltq_wdt_r32(priv, LTQ_WDT_SR) & LTQ_WDT_SR_VALUE_MASK; |
| 149 | return do_div(timeout, priv->clk_rate); |
| 150 | } |
| 151 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 152 | static const struct watchdog_ops ltq_wdt_ops = { |
| 153 | .owner = THIS_MODULE, |
| 154 | .start = ltq_wdt_start, |
| 155 | .stop = ltq_wdt_stop, |
| 156 | .ping = ltq_wdt_ping, |
Hauke Mehrtens | c99d9df | 2018-09-13 23:32:11 +0200 | [diff] [blame^] | 157 | .get_timeleft = ltq_wdt_get_timeleft, |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | static int ltq_wdt_xrx_bootstatus_get(struct device *dev) |
| 161 | { |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 162 | struct regmap *rcu_regmap; |
| 163 | u32 val; |
| 164 | int err; |
| 165 | |
| 166 | rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node, "regmap"); |
| 167 | if (IS_ERR(rcu_regmap)) |
| 168 | return PTR_ERR(rcu_regmap); |
| 169 | |
| 170 | err = regmap_read(rcu_regmap, LTQ_XRX_RCU_RST_STAT, &val); |
| 171 | if (err) |
| 172 | return err; |
| 173 | |
| 174 | if (val & LTQ_XRX_RCU_RST_STAT_WDT) |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 175 | return WDIOF_CARDRESET; |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 180 | static int ltq_wdt_falcon_bootstatus_get(struct device *dev) |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 181 | { |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 182 | struct regmap *rcu_regmap; |
| 183 | u32 val; |
| 184 | int err; |
| 185 | |
| 186 | rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node, |
| 187 | "lantiq,rcu"); |
| 188 | if (IS_ERR(rcu_regmap)) |
| 189 | return PTR_ERR(rcu_regmap); |
| 190 | |
| 191 | err = regmap_read(rcu_regmap, LTQ_FALCON_SYS1_CPU0RS, &val); |
| 192 | if (err) |
| 193 | return err; |
| 194 | |
| 195 | if ((val & LTQ_FALCON_SYS1_CPU0RS_MASK) == LTQ_FALCON_SYS1_CPU0RS_WDT) |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 196 | return WDIOF_CARDRESET; |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 197 | |
| 198 | return 0; |
| 199 | } |
| 200 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 201 | static int ltq_wdt_probe(struct platform_device *pdev) |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 202 | { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 203 | struct device *dev = &pdev->dev; |
| 204 | struct ltq_wdt_priv *priv; |
| 205 | struct watchdog_device *wdt; |
| 206 | struct resource *res; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 207 | struct clk *clk; |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 208 | const struct ltq_wdt_hw *ltq_wdt_hw; |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 209 | int ret; |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 210 | u32 status; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 211 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 212 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
| 213 | if (!priv) |
| 214 | return -ENOMEM; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 215 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 216 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 217 | priv->membase = devm_ioremap_resource(dev, res); |
| 218 | if (IS_ERR(priv->membase)) |
| 219 | return PTR_ERR(priv->membase); |
Hauke Mehrtens | 710322b | 2017-08-20 00:18:11 +0200 | [diff] [blame] | 220 | |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 221 | /* we do not need to enable the clock as it is always running */ |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 222 | clk = clk_get_io(); |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 223 | priv->clk_rate = clk_get_rate(clk) / LTQ_WDT_DIVIDER; |
| 224 | if (!priv->clk_rate) { |
| 225 | dev_err(dev, "clock rate less than divider %i\n", |
| 226 | LTQ_WDT_DIVIDER); |
| 227 | return -EINVAL; |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 228 | } |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 229 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 230 | wdt = &priv->wdt; |
| 231 | wdt->info = <q_wdt_info; |
| 232 | wdt->ops = <q_wdt_ops; |
| 233 | wdt->min_timeout = 1; |
| 234 | wdt->max_timeout = LTQ_WDT_CR_MAX_TIMEOUT / priv->clk_rate; |
| 235 | wdt->timeout = wdt->max_timeout; |
| 236 | wdt->parent = dev; |
| 237 | |
| 238 | ltq_wdt_hw = of_device_get_match_data(dev); |
| 239 | if (ltq_wdt_hw && ltq_wdt_hw->bootstatus_get) { |
| 240 | ret = ltq_wdt_hw->bootstatus_get(dev); |
| 241 | if (ret >= 0) |
| 242 | wdt->bootstatus = ret; |
| 243 | } |
| 244 | |
| 245 | watchdog_set_nowayout(wdt, nowayout); |
| 246 | watchdog_init_timeout(wdt, 0, dev); |
| 247 | |
| 248 | status = ltq_wdt_r32(priv, LTQ_WDT_SR); |
| 249 | if (status & LTQ_WDT_SR_EN) { |
| 250 | /* |
| 251 | * If the watchdog is already running overwrite it with our |
| 252 | * new settings. Stop is not needed as the start call will |
| 253 | * replace all settings anyway. |
| 254 | */ |
| 255 | ltq_wdt_start(wdt); |
| 256 | set_bit(WDOG_HW_RUNNING, &wdt->status); |
| 257 | } |
| 258 | |
| 259 | return devm_watchdog_register_device(dev, wdt); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 262 | static const struct ltq_wdt_hw ltq_wdt_xrx100 = { |
| 263 | .bootstatus_get = ltq_wdt_xrx_bootstatus_get, |
| 264 | }; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 265 | |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 266 | static const struct ltq_wdt_hw ltq_wdt_falcon = { |
| 267 | .bootstatus_get = ltq_wdt_falcon_bootstatus_get, |
| 268 | }; |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 269 | |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 270 | static const struct of_device_id ltq_wdt_match[] = { |
Hauke Mehrtens | dcd7e04 | 2018-09-13 23:32:10 +0200 | [diff] [blame] | 271 | { .compatible = "lantiq,wdt", .data = NULL }, |
| 272 | { .compatible = "lantiq,xrx100-wdt", .data = <q_wdt_xrx100 }, |
| 273 | { .compatible = "lantiq,falcon-wdt", .data = <q_wdt_falcon }, |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 274 | {}, |
| 275 | }; |
| 276 | MODULE_DEVICE_TABLE(of, ltq_wdt_match); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 277 | |
| 278 | static struct platform_driver ltq_wdt_driver = { |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 279 | .probe = ltq_wdt_probe, |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 280 | .driver = { |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 281 | .name = "wdt", |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 282 | .of_match_table = ltq_wdt_match, |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 283 | }, |
| 284 | }; |
| 285 | |
John Crispin | cdb8612 | 2012-04-12 21:21:56 +0200 | [diff] [blame] | 286 | module_platform_driver(ltq_wdt_driver); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 287 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 288 | module_param(nowayout, bool, 0); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 289 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started"); |
John Crispin | f3519a6 | 2016-12-20 19:56:59 +0100 | [diff] [blame] | 290 | MODULE_AUTHOR("John Crispin <john@phrozen.org>"); |
John Crispin | 2f58b8d | 2011-05-05 23:00:23 +0200 | [diff] [blame] | 291 | MODULE_DESCRIPTION("Lantiq SoC Watchdog"); |
| 292 | MODULE_LICENSE("GPL"); |