1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2016 IBM Corporation
5 * Joel Stanley <joel@jms.id.au>
8 #include <linux/bits.h>
9 #include <linux/delay.h>
10 #include <linux/interrupt.h>
12 #include <linux/kernel.h>
13 #include <linux/kstrtox.h>
14 #include <linux/module.h>
16 #include <linux/of_irq.h>
17 #include <linux/platform_device.h>
18 #include <linux/watchdog.h>
20 static bool nowayout = WATCHDOG_NOWAYOUT;
21 module_param(nowayout, bool, 0);
22 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
23 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
25 struct aspeed_wdt_config {
26 u32 ext_pulse_width_mask;
32 struct watchdog_device wdd;
35 const struct aspeed_wdt_config *cfg;
38 static const struct aspeed_wdt_config ast2400_config = {
39 .ext_pulse_width_mask = 0xff,
44 static const struct aspeed_wdt_config ast2500_config = {
45 .ext_pulse_width_mask = 0xfffff,
47 .irq_mask = GENMASK(31, 12),
50 static const struct aspeed_wdt_config ast2600_config = {
51 .ext_pulse_width_mask = 0xfffff,
53 .irq_mask = GENMASK(31, 10),
56 static const struct of_device_id aspeed_wdt_of_table[] = {
57 { .compatible = "aspeed,ast2400-wdt", .data = &ast2400_config },
58 { .compatible = "aspeed,ast2500-wdt", .data = &ast2500_config },
59 { .compatible = "aspeed,ast2600-wdt", .data = &ast2600_config },
62 MODULE_DEVICE_TABLE(of, aspeed_wdt_of_table);
64 #define WDT_STATUS 0x00
65 #define WDT_RELOAD_VALUE 0x04
66 #define WDT_RESTART 0x08
68 #define WDT_CTRL_BOOT_SECONDARY BIT(7)
69 #define WDT_CTRL_RESET_MODE_SOC (0x00 << 5)
70 #define WDT_CTRL_RESET_MODE_FULL_CHIP (0x01 << 5)
71 #define WDT_CTRL_RESET_MODE_ARM_CPU (0x10 << 5)
72 #define WDT_CTRL_1MHZ_CLK BIT(4)
73 #define WDT_CTRL_WDT_EXT BIT(3)
74 #define WDT_CTRL_WDT_INTR BIT(2)
75 #define WDT_CTRL_RESET_SYSTEM BIT(1)
76 #define WDT_CTRL_ENABLE BIT(0)
77 #define WDT_TIMEOUT_STATUS 0x10
78 #define WDT_TIMEOUT_STATUS_IRQ BIT(2)
79 #define WDT_TIMEOUT_STATUS_BOOT_SECONDARY BIT(1)
80 #define WDT_CLEAR_TIMEOUT_STATUS 0x14
81 #define WDT_CLEAR_TIMEOUT_AND_BOOT_CODE_SELECTION BIT(0)
84 * WDT_RESET_WIDTH controls the characteristics of the external pulse (if
85 * enabled), specifically:
88 * * Drive mode: push-pull vs open-drain
89 * * Polarity: Active high or active low
91 * Pulse duration configuration is available on both the AST2400 and AST2500,
92 * though the field changes between SoCs:
97 * This difference is captured in struct aspeed_wdt_config.
99 * The AST2500 exposes the drive mode and polarity options, but not in a
100 * regular fashion. For read purposes, bit 31 represents active high or low,
101 * and bit 30 represents push-pull or open-drain. With respect to write, magic
102 * values need to be written to the top byte to change the state of the drive
103 * mode and polarity bits. Any other value written to the top byte has no
104 * effect on the state of the drive mode or polarity bits. However, the pulse
105 * width value must be preserved (as desired) if written.
107 #define WDT_RESET_WIDTH 0x18
108 #define WDT_RESET_WIDTH_ACTIVE_HIGH BIT(31)
109 #define WDT_ACTIVE_HIGH_MAGIC (0xA5 << 24)
110 #define WDT_ACTIVE_LOW_MAGIC (0x5A << 24)
111 #define WDT_RESET_WIDTH_PUSH_PULL BIT(30)
112 #define WDT_PUSH_PULL_MAGIC (0xA8 << 24)
113 #define WDT_OPEN_DRAIN_MAGIC (0x8A << 24)
115 #define WDT_RESTART_MAGIC 0x4755
117 /* 32 bits at 1MHz, in milliseconds */
118 #define WDT_MAX_TIMEOUT_MS 4294967
119 #define WDT_DEFAULT_TIMEOUT 30
120 #define WDT_RATE_1MHZ 1000000
122 static struct aspeed_wdt *to_aspeed_wdt(struct watchdog_device *wdd)
124 return container_of(wdd, struct aspeed_wdt, wdd);
127 static void aspeed_wdt_enable(struct aspeed_wdt *wdt, int count)
129 wdt->ctrl |= WDT_CTRL_ENABLE;
131 writel(0, wdt->base + WDT_CTRL);
132 writel(count, wdt->base + WDT_RELOAD_VALUE);
133 writel(WDT_RESTART_MAGIC, wdt->base + WDT_RESTART);
134 writel(wdt->ctrl, wdt->base + WDT_CTRL);
137 static int aspeed_wdt_start(struct watchdog_device *wdd)
139 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
141 aspeed_wdt_enable(wdt, wdd->timeout * WDT_RATE_1MHZ);
146 static int aspeed_wdt_stop(struct watchdog_device *wdd)
148 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
150 wdt->ctrl &= ~WDT_CTRL_ENABLE;
151 writel(wdt->ctrl, wdt->base + WDT_CTRL);
156 static int aspeed_wdt_ping(struct watchdog_device *wdd)
158 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
160 writel(WDT_RESTART_MAGIC, wdt->base + WDT_RESTART);
165 static int aspeed_wdt_set_timeout(struct watchdog_device *wdd,
166 unsigned int timeout)
168 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
171 wdd->timeout = timeout;
173 actual = min(timeout, wdd->max_hw_heartbeat_ms / 1000);
175 writel(actual * WDT_RATE_1MHZ, wdt->base + WDT_RELOAD_VALUE);
176 writel(WDT_RESTART_MAGIC, wdt->base + WDT_RESTART);
181 static int aspeed_wdt_set_pretimeout(struct watchdog_device *wdd,
182 unsigned int pretimeout)
184 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
185 u32 actual = pretimeout * WDT_RATE_1MHZ;
186 u32 s = wdt->cfg->irq_shift;
187 u32 m = wdt->cfg->irq_mask;
189 wdd->pretimeout = pretimeout;
192 wdt->ctrl |= ((actual << s) & m) | WDT_CTRL_WDT_INTR;
194 wdt->ctrl &= ~WDT_CTRL_WDT_INTR;
196 writel(wdt->ctrl, wdt->base + WDT_CTRL);
201 static int aspeed_wdt_restart(struct watchdog_device *wdd,
202 unsigned long action, void *data)
204 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
206 wdt->ctrl &= ~WDT_CTRL_BOOT_SECONDARY;
207 aspeed_wdt_enable(wdt, 128 * WDT_RATE_1MHZ / 1000);
214 /* access_cs0 shows if cs0 is accessible, hence the reverted bit */
215 static ssize_t access_cs0_show(struct device *dev,
216 struct device_attribute *attr, char *buf)
218 struct aspeed_wdt *wdt = dev_get_drvdata(dev);
219 u32 status = readl(wdt->base + WDT_TIMEOUT_STATUS);
221 return sysfs_emit(buf, "%u\n",
222 !(status & WDT_TIMEOUT_STATUS_BOOT_SECONDARY));
225 static ssize_t access_cs0_store(struct device *dev,
226 struct device_attribute *attr, const char *buf,
229 struct aspeed_wdt *wdt = dev_get_drvdata(dev);
232 if (kstrtoul(buf, 10, &val))
236 writel(WDT_CLEAR_TIMEOUT_AND_BOOT_CODE_SELECTION,
237 wdt->base + WDT_CLEAR_TIMEOUT_STATUS);
243 * This attribute exists only if the system has booted from the alternate
244 * flash with 'alt-boot' option.
246 * At alternate flash the 'access_cs0' sysfs node provides:
247 * ast2400: a way to get access to the primary SPI flash chip at CS0
248 * after booting from the alternate chip at CS1.
249 * ast2500: a way to restore the normal address mapping from
250 * (CS0->CS1, CS1->CS0) to (CS0->CS0, CS1->CS1).
252 * Clearing the boot code selection and timeout counter also resets to the
253 * initial state the chip select line mapping. When the SoC is in normal
254 * mapping state (i.e. booted from CS0), clearing those bits does nothing for
255 * both versions of the SoC. For alternate boot mode (booted from CS1 due to
256 * wdt2 expiration) the behavior differs as described above.
258 * This option can be used with wdt2 (watchdog1) only.
260 static DEVICE_ATTR_RW(access_cs0);
262 static struct attribute *bswitch_attrs[] = {
263 &dev_attr_access_cs0.attr,
266 ATTRIBUTE_GROUPS(bswitch);
268 static const struct watchdog_ops aspeed_wdt_ops = {
269 .start = aspeed_wdt_start,
270 .stop = aspeed_wdt_stop,
271 .ping = aspeed_wdt_ping,
272 .set_timeout = aspeed_wdt_set_timeout,
273 .set_pretimeout = aspeed_wdt_set_pretimeout,
274 .restart = aspeed_wdt_restart,
275 .owner = THIS_MODULE,
278 static const struct watchdog_info aspeed_wdt_info = {
279 .options = WDIOF_KEEPALIVEPING
282 .identity = KBUILD_MODNAME,
285 static const struct watchdog_info aspeed_wdt_pretimeout_info = {
286 .options = WDIOF_KEEPALIVEPING
290 .identity = KBUILD_MODNAME,
293 static irqreturn_t aspeed_wdt_irq(int irq, void *arg)
295 struct watchdog_device *wdd = arg;
296 struct aspeed_wdt *wdt = to_aspeed_wdt(wdd);
297 u32 status = readl(wdt->base + WDT_TIMEOUT_STATUS);
299 if (status & WDT_TIMEOUT_STATUS_IRQ)
300 watchdog_notify_pretimeout(wdd);
305 static int aspeed_wdt_probe(struct platform_device *pdev)
307 struct device *dev = &pdev->dev;
308 const struct of_device_id *ofdid;
309 struct aspeed_wdt *wdt;
310 struct device_node *np;
311 const char *reset_type;
316 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
322 ofdid = of_match_node(aspeed_wdt_of_table, np);
325 wdt->cfg = ofdid->data;
327 wdt->base = devm_platform_ioremap_resource(pdev, 0);
328 if (IS_ERR(wdt->base))
329 return PTR_ERR(wdt->base);
331 wdt->wdd.info = &aspeed_wdt_info;
333 if (wdt->cfg->irq_mask) {
334 int irq = platform_get_irq_optional(pdev, 0);
337 ret = devm_request_irq(dev, irq, aspeed_wdt_irq,
338 IRQF_SHARED, dev_name(dev),
343 wdt->wdd.info = &aspeed_wdt_pretimeout_info;
347 wdt->wdd.ops = &aspeed_wdt_ops;
348 wdt->wdd.max_hw_heartbeat_ms = WDT_MAX_TIMEOUT_MS;
349 wdt->wdd.parent = dev;
351 wdt->wdd.timeout = WDT_DEFAULT_TIMEOUT;
352 watchdog_init_timeout(&wdt->wdd, 0, dev);
354 watchdog_set_nowayout(&wdt->wdd, nowayout);
358 * - ast2400 wdt can run at PCLK, or 1MHz
359 * - ast2500 only runs at 1MHz, hard coding bit 4 to 1
360 * - ast2600 always runs at 1MHz
362 * Set the ast2400 to run at 1MHz as it simplifies the driver.
364 if (of_device_is_compatible(np, "aspeed,ast2400-wdt"))
365 wdt->ctrl = WDT_CTRL_1MHZ_CLK;
368 * Control reset on a per-device basis to ensure the
369 * host is not affected by a BMC reboot
371 ret = of_property_read_string(np, "aspeed,reset-type", &reset_type);
373 wdt->ctrl |= WDT_CTRL_RESET_MODE_SOC | WDT_CTRL_RESET_SYSTEM;
375 if (!strcmp(reset_type, "cpu"))
376 wdt->ctrl |= WDT_CTRL_RESET_MODE_ARM_CPU |
377 WDT_CTRL_RESET_SYSTEM;
378 else if (!strcmp(reset_type, "soc"))
379 wdt->ctrl |= WDT_CTRL_RESET_MODE_SOC |
380 WDT_CTRL_RESET_SYSTEM;
381 else if (!strcmp(reset_type, "system"))
382 wdt->ctrl |= WDT_CTRL_RESET_MODE_FULL_CHIP |
383 WDT_CTRL_RESET_SYSTEM;
384 else if (strcmp(reset_type, "none"))
387 if (of_property_read_bool(np, "aspeed,external-signal"))
388 wdt->ctrl |= WDT_CTRL_WDT_EXT;
389 if (of_property_read_bool(np, "aspeed,alt-boot"))
390 wdt->ctrl |= WDT_CTRL_BOOT_SECONDARY;
392 if (readl(wdt->base + WDT_CTRL) & WDT_CTRL_ENABLE) {
394 * The watchdog is running, but invoke aspeed_wdt_start() to
395 * write wdt->ctrl to WDT_CTRL to ensure the watchdog's
396 * configuration conforms to the driver's expectations.
397 * Primarily, ensure we're using the 1MHz clock source.
399 aspeed_wdt_start(&wdt->wdd);
400 set_bit(WDOG_HW_RUNNING, &wdt->wdd.status);
403 if ((of_device_is_compatible(np, "aspeed,ast2500-wdt")) ||
404 (of_device_is_compatible(np, "aspeed,ast2600-wdt"))) {
405 u32 reg = readl(wdt->base + WDT_RESET_WIDTH);
407 reg &= wdt->cfg->ext_pulse_width_mask;
408 if (of_property_read_bool(np, "aspeed,ext-active-high"))
409 reg |= WDT_ACTIVE_HIGH_MAGIC;
411 reg |= WDT_ACTIVE_LOW_MAGIC;
413 writel(reg, wdt->base + WDT_RESET_WIDTH);
415 reg &= wdt->cfg->ext_pulse_width_mask;
416 if (of_property_read_bool(np, "aspeed,ext-push-pull"))
417 reg |= WDT_PUSH_PULL_MAGIC;
419 reg |= WDT_OPEN_DRAIN_MAGIC;
421 writel(reg, wdt->base + WDT_RESET_WIDTH);
424 if (!of_property_read_u32(np, "aspeed,ext-pulse-duration", &duration)) {
425 u32 max_duration = wdt->cfg->ext_pulse_width_mask + 1;
427 if (duration == 0 || duration > max_duration) {
428 dev_err(dev, "Invalid pulse duration: %uus\n",
430 duration = max(1U, min(max_duration, duration));
431 dev_info(dev, "Pulse duration set to %uus\n",
436 * The watchdog is always configured with a 1MHz source, so
437 * there is no need to scale the microsecond value. However we
438 * need to offset it - from the datasheet:
440 * "This register decides the asserting duration of wdt_ext and
441 * wdt_rstarm signal. The default value is 0xFF. It means the
442 * default asserting duration of wdt_ext and wdt_rstarm is
445 * This implies a value of 0 gives a 1us pulse.
447 writel(duration - 1, wdt->base + WDT_RESET_WIDTH);
450 status = readl(wdt->base + WDT_TIMEOUT_STATUS);
451 if (status & WDT_TIMEOUT_STATUS_BOOT_SECONDARY) {
452 wdt->wdd.bootstatus = WDIOF_CARDRESET;
454 if (of_device_is_compatible(np, "aspeed,ast2400-wdt") ||
455 of_device_is_compatible(np, "aspeed,ast2500-wdt"))
456 wdt->wdd.groups = bswitch_groups;
459 dev_set_drvdata(dev, wdt);
461 return devm_watchdog_register_device(dev, &wdt->wdd);
464 static struct platform_driver aspeed_watchdog_driver = {
465 .probe = aspeed_wdt_probe,
467 .name = KBUILD_MODNAME,
468 .of_match_table = aspeed_wdt_of_table,
472 static int __init aspeed_wdt_init(void)
474 return platform_driver_register(&aspeed_watchdog_driver);
476 arch_initcall(aspeed_wdt_init);
478 static void __exit aspeed_wdt_exit(void)
480 platform_driver_unregister(&aspeed_watchdog_driver);
482 module_exit(aspeed_wdt_exit);
484 MODULE_DESCRIPTION("Aspeed Watchdog Driver");
485 MODULE_LICENSE("GPL");