/Linux-v6.1/Documentation/devicetree/bindings/watchdog/ |
D | xlnx,xps-timebase-wdt.yaml | 1 # SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/watchdog/xlnx,xps-timebase-wdt.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com> 11 - Srinivas Neeli <srinivas.neeli@xilinx.com> 14 The Timebase watchdog timer(WDT) is a free-running 32 bit counter. 15 WDT uses a dual-expiration architecture. After one expiration of 16 the timeout interval, an interrupt is generated and the WDT state 19 expiration of the timeout interval, a WDT reset is generated. [all …]
|
/Linux-v6.1/drivers/watchdog/ |
D | rzn1_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0 4 * This is a 12-bit timer driver from a (62.5/16384) MHz clock. It can't even 53 struct rzn1_watchdog *wdt = watchdog_get_drvdata(w); in rzn1_wdt_ping() local 56 writel(0, wdt->base + RZN1_WDT_RETRIGGER); in rzn1_wdt_ping() 63 struct rzn1_watchdog *wdt = watchdog_get_drvdata(w); in rzn1_wdt_start() local 67 * The hardware allows you to write to this reg only once. in rzn1_wdt_start() 69 * timeout once started. Also note that the WDT clock is half the bus in rzn1_wdt_start() 71 * the WDT is started, the WDT interval will be wrong. in rzn1_wdt_start() 76 val |= compute_reload_value(w->max_hw_heartbeat_ms, wdt->clk_rate_khz); in rzn1_wdt_start() 77 writel(val, wdt->base + RZN1_WDT_RETRIGGER); in rzn1_wdt_start() [all …]
|
D | of_xilinx_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * (C) Copyright 2013 - 2014 Xilinx, Inc. 22 /* Register offsets for the Wdt device */ 30 #define XWT_CSR0_EWDT1_MASK BIT(1) /* Enable bit 1 */ 33 #define XWT_CSRX_EWDT2_MASK BIT(0) /* Enable bit 2 */ 55 ret = clk_enable(xdev->clk); in xilinx_wdt_start() 57 dev_err(wdd->parent, "Failed to enable clock\n"); in xilinx_wdt_start() 61 spin_lock(&xdev->spinlock); in xilinx_wdt_start() 63 /* Clean previous status and enable the watchdog timer */ in xilinx_wdt_start() 64 control_status_reg = ioread32(xdev->base + XWT_TWCSR0_OFFSET); in xilinx_wdt_start() [all …]
|
D | rn5t618_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 14 #define DRIVER_NAME "rn5t618-wdt" 23 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 50 struct rn5t618_wdt *wdt = watchdog_get_drvdata(wdt_dev); in rn5t618_wdt_set_timeout() local 59 return -EINVAL; in rn5t618_wdt_set_timeout() 61 ret = regmap_update_bits(wdt->rn5t618->regmap, RN5T618_WATCHDOG, in rn5t618_wdt_set_timeout() 65 wdt_dev->timeout = rn5t618_wdt_map[i].time; in rn5t618_wdt_set_timeout() 72 struct rn5t618_wdt *wdt = watchdog_get_drvdata(wdt_dev); in rn5t618_wdt_start() local 75 ret = rn5t618_wdt_set_timeout(wdt_dev, wdt_dev->timeout); in rn5t618_wdt_start() 79 /* enable repower-on */ in rn5t618_wdt_start() [all …]
|
D | lantiq_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 5 * Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de> 6 * Based on EP93xx wdt driver 32 * The password sequence protects the WDT control register from unintended 33 * write actions, which might cause malfunction of the WDT. 36 * IO access to the WDT core 42 #define LTQ_WDT_CR_GEN BIT(31) /* enable bit */ 43 /* Pre-warning limit set to 1/16 of max WDT period */ 48 #define LTQ_WDT_CR_MAX_TIMEOUT ((1 << 16) - 1) /* The reload field is 16 bit */ 50 #define LTQ_WDT_SR_EN BIT(31) /* Enable */ [all …]
|
D | imx7ulp_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0 53 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 77 return -ETIMEDOUT; in imx7ulp_wdt_wait_ulk() 82 static int imx7ulp_wdt_wait_rcs(struct imx7ulp_wdt_device *wdt) in imx7ulp_wdt_wait_rcs() argument 85 u32 val = readl(wdt->base + WDOG_CS); in imx7ulp_wdt_wait_rcs() 92 readl_poll_timeout(wdt->base + WDOG_CS, val, val & WDOG_CS_RCS, 100, in imx7ulp_wdt_wait_rcs() 94 ret = -ETIMEDOUT; in imx7ulp_wdt_wait_rcs() 97 if (wdt->post_rcs_wait) in imx7ulp_wdt_wait_rcs() 103 static int _imx7ulp_wdt_enable(struct imx7ulp_wdt_device *wdt, bool enable) in _imx7ulp_wdt_enable() argument 105 u32 val = readl(wdt->base + WDOG_CS); in _imx7ulp_wdt_enable() [all …]
|
D | mpc8xxx_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface 12 * Note: it appears that you can only actually ENABLE or DISABLE the thing 13 * once after POR. Once enabled, you cannot disable, and vice versa. 34 #define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */ 69 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " 74 /* Ping the WDT */ in mpc8xxx_wdt_keepalive() 75 spin_lock(&ddata->lock); in mpc8xxx_wdt_keepalive() 76 out_be16(&ddata->base->swsrr, 0x556c); in mpc8xxx_wdt_keepalive() 77 out_be16(&ddata->base->swsrr, 0xaa39); in mpc8xxx_wdt_keepalive() [all …]
|
D | max77620_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 27 * struct max77620_variant - Data specific to a chip variant 34 * @cnfg_glbl2_cfg_bits: configuration bits to enable in CNFG_GLBL2 register 58 /* Set WDT clear in OFF and sleep mode */ 68 /* Set WDT clear in sleep mode (there is no WDTOFFC on MAX77714) */ 74 struct max77620_wdt *wdt = watchdog_get_drvdata(wdt_dev); in max77620_wdt_start() local 76 return regmap_update_bits(wdt->rmap, wdt->drv_data->reg_cnfg_glbl2, in max77620_wdt_start() 82 struct max77620_wdt *wdt = watchdog_get_drvdata(wdt_dev); in max77620_wdt_stop() local 84 return regmap_update_bits(wdt->rmap, wdt->drv_data->reg_cnfg_glbl2, in max77620_wdt_stop() 90 struct max77620_wdt *wdt = watchdog_get_drvdata(wdt_dev); in max77620_wdt_ping() local [all …]
|
D | cadence_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * Cadence WDT driver - Used by Xilinx Zynq 5 * Copyright (C) 2010 - 2014 Xilinx, Inc. 21 /* Supports 1 - 516 sec */ 59 "Watchdog cannot be stopped once started (default=" 63 * struct cdns_wdt - Watchdog device structure 85 static inline void cdns_wdt_writereg(struct cdns_wdt *wdt, u32 offset, u32 val) in cdns_wdt_writereg() argument 87 writel_relaxed(val, wdt->regs + offset); in cdns_wdt_writereg() 92 /* Register Offsets for the WDT */ 99 * Zero Mode Register - This register controls how the time out is indicated [all …]
|
D | at91sam9_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Copyright (C) 2008 Renaud CERRATO r.cerrato@til-technologies.fr 10 * The Watchdog Timer Mode Register can be only written to once. If the 40 #define wdt_read(wdt, field) \ argument 41 readl_relaxed((wdt)->base + (field)) 43 writel_relaxed((val), (wdt)->base + (field)) 52 #define secs_to_ticks(s) ((s) ? (((s) << 8) - 1) : 0) 77 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " 88 unsigned long heartbeat; /* WDT heartbeat in jiffies */ 98 struct at91wdt *wdt = (struct at91wdt *)dev_id; in wdt_interrupt() local [all …]
|
D | smsc37b787_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 9 * any of this software. This material is provided "AS-IS" in 12 * (C) Copyright 2003-2006 Sven Anders <anders@anduras.de> 15 * 2003 - Created version 1.0 for Linux 2.4.x. 16 * 2006 - Ported to Linux 2.6, added nowayout and MAGICCLOSE 21 * A Watchdog Timer (WDT) is a hardware circuit that can 25 * Usually a userspace daemon will notify the kernel WDT driver 38 * For an example userspace keep-alive daemon, see: 39 * Documentation/watchdog/wdt.rst 60 /* enable support for minutes as units? */ [all …]
|
D | s3c2410_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 72 * DOC: Quirk flags for different Samsung watchdog IP-cores 77 * differences in both watchdog and PMU IP-cores should be accounted for. Quirk 83 * clear the interrupt once the interrupt service routine is complete. It's 84 * write-only, writing any values to this register clears the interrupt, but 88 * WDT reset request. On old SoCs it's usually called MASK_WDT_RESET_REQUEST, 98 * register. If 'mask_bit' bit is set, PMU will disable WDT reset when 102 * with "watchdog counter enable" bit. That bit should be set to make watchdog 131 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 136 * struct s3c2410_wdt_variant - Per-variant config data [all …]
|
D | imgpdc_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 11 * ----- 25 * The following table shows how the user-configured timeout relates 29 * ----------------------------------- 79 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " 91 struct pdc_wdt_dev *wdt = watchdog_get_drvdata(wdt_dev); in pdc_wdt_keepalive() local 93 writel(PDC_WDT_TICKLE1_MAGIC, wdt->base + PDC_WDT_TICKLE1); in pdc_wdt_keepalive() 94 writel(PDC_WDT_TICKLE2_MAGIC, wdt->base + PDC_WDT_TICKLE2); in pdc_wdt_keepalive() 102 struct pdc_wdt_dev *wdt = watchdog_get_drvdata(wdt_dev); in pdc_wdt_stop() local 104 val = readl(wdt->base + PDC_WDT_CONFIG); in pdc_wdt_stop() [all …]
|
D | meson_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 38 unsigned int enable; member 44 .enable = BIT(22), 50 .enable = BIT(19), 67 tc_reboot |= meson_wdt->data->enable; in meson_wdt_restart() 70 writel(tc_reboot, meson_wdt->wdt_base + MESON_WDT_TC); in meson_wdt_restart() 81 writel(0, meson_wdt->wdt_base + MESON_WDT_RESET); in meson_wdt_ping() 92 reg = readl(meson_wdt->wdt_base + MESON_WDT_TC); in meson_wdt_change_timeout() 93 reg &= ~meson_wdt->data->terminal_count_mask; in meson_wdt_change_timeout() 94 reg |= MESON_SEC_TO_TC(timeout, meson_wdt->data->count_unit); in meson_wdt_change_timeout() [all …]
|
D | pc87413_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * NS pc87413-wdt Watchdog Timer driver for Linux 2.6.x.x 5 * This code is based on wdt.c with original copyright. 12 * This material is provided "AS-IS" and at no charge. 41 #define MODNAME "pc87413 WDT" 42 #define DPFX MODNAME " - DEBUG: " 48 #define WDCTL 0x10 /* Watchdog-Timer-Control-Register */ 55 static int swc_base_addr = -1; 66 /* -- Low level function ----------------------------------------*/ 74 /* Step 1: Select multiple pin,pin55,as WDT output */ in pc87413_select_wdt_out() [all …]
|
D | keembay_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Watchdog driver for Intel Keem Bay non-secure watchdog. 8 #include <linux/arm-smccc.h> 20 /* Non-secure watchdog register offsets */ 47 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default = " 59 static inline u32 keembay_wdt_readl(struct keembay_wdt *wdt, u32 offset) in keembay_wdt_readl() argument 61 return readl(wdt->base + offset); in keembay_wdt_readl() 64 static inline void keembay_wdt_writel(struct keembay_wdt *wdt, u32 offset, u32 val) in keembay_wdt_writel() argument 66 writel(WDT_UNLOCK, wdt->base + TIM_SAFE); in keembay_wdt_writel() 67 writel(val, wdt->base + offset); in keembay_wdt_writel() [all …]
|
D | i6300esb.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 8 * based on i810-tco.c which is in turn based on softdog.c 12 * 6300ESB chip : document number 300641-004 46 #define ESB_LOCK_REG 0x68 /* WDT lock register */ 49 #define ESB_TIMER1_REG(w) ((w)->base + 0x00)/* Timer1 value after each reset */ 50 #define ESB_TIMER2_REG(w) ((w)->base + 0x04)/* Timer2 value after each reset */ 51 #define ESB_GINTSR_REG(w) ((w)->base + 0x08)/* General Interrupt Status Reg */ 52 #define ESB_RELOAD_REG(w) ((w)->base + 0x0c)/* Reload register */ 56 #define ESB_WDT_ENABLE (0x01 << 1) /* Enable WDT */ 60 #define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */ [all …]
|
D | bd9576_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 10 #include <linux/mfd/rohm-bd957x.h> 20 "Watchdog cannot be stopped once started (default=\"false\")"); 38 gpiod_set_value_cansleep(priv->gpiod_en, 0); in bd9576_wdt_disable() 46 gpiod_set_value_cansleep(priv->gpiod_ping, 1); in bd9576_wdt_ping() 47 gpiod_set_value_cansleep(priv->gpiod_ping, 0); in bd9576_wdt_ping() 56 gpiod_set_value_cansleep(priv->gpiod_en, 1); in bd9576_wdt_start() 65 if (!priv->always_running) in bd9576_wdt_stop() 68 set_bit(WDOG_HW_RUNNING, &wdd->status); in bd9576_wdt_stop() 101 return -EINVAL; in find_closest_fast() [all …]
|
D | wafer5823wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * ICP Wafer 5823 Single Board Computer WDT driver 7 * (c) Copyright 2002 Justin Cormack <justin@street-vision.com> 11 * Based on advantechwdt.c which is based on wdt.c. 14 * (c) Copyright 1996-1997 Alan Cox <alan@lxorguk.ukuu.org.uk>, 19 * "AS-IS" and at no charge. 40 #define WATCHDOG_NAME "Wafer 5823 WDT" 49 * You must set these - there is no sane way to probe for this board. 51 * To enable, write the timeout value in seconds (1 to 255) to I/O 69 "Watchdog cannot be stopped once started (default=" [all …]
|
D | imx2_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0 14 * ---- ----- 15 * Registers: 32-bit 16-bit 17 * Need to enable clk: No Yes 34 #define DRIVER_NAME "imx2-wdt" 37 #define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */ 38 #define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */ 39 #define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */ 40 #define IMX2_WDT_WCR_WRE BIT(3) /* -> WDOG Reset Enable */ 41 #define IMX2_WDT_WCR_WDE BIT(2) /* -> Watchdog Enable */ [all …]
|
D | orion_wdt.c | 32 #define INTERNAL_REGS_MASK ~(SZ_1M - 1) 72 struct watchdog_device wdt; member 86 dev->clk = clk_get(&pdev->dev, NULL); in orion_wdt_clock_init() 87 if (IS_ERR(dev->clk)) in orion_wdt_clock_init() 88 return PTR_ERR(dev->clk); in orion_wdt_clock_init() 89 ret = clk_prepare_enable(dev->clk); in orion_wdt_clock_init() 91 clk_put(dev->clk); in orion_wdt_clock_init() 95 dev->clk_rate = clk_get_rate(dev->clk); in orion_wdt_clock_init() 104 dev->clk = clk_get(&pdev->dev, NULL); in armada370_wdt_clock_init() 105 if (IS_ERR(dev->clk)) in armada370_wdt_clock_init() [all …]
|
D | armada_37xx_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 36 * Counters ID 2 and 3 are enabled by default even before U-Boot loads, 73 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 77 struct watchdog_device wdt; member 90 * when low is read, high is latched into flip-flops so that it can be in get_counter_value() 93 val = readl(dev->reg + CNTR_COUNT_LOW(id)); in get_counter_value() 94 val |= ((u64)readl(dev->reg + CNTR_COUNT_HIGH(id))) << 32; in get_counter_value() 101 writel(val & 0xffffffff, dev->reg + CNTR_COUNT_LOW(id)); in set_counter_value() 102 writel(val >> 32, dev->reg + CNTR_COUNT_HIGH(id)); in set_counter_value() 109 reg = readl(dev->reg + CNTR_CTRL(id)); in counter_enable() [all …]
|
D | uniphier_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0 18 /* WDT timer setting register */ 23 /* WDT reset selection register */ 29 /* WDT control register */ 62 ret = regmap_write_bits(wdev->regmap, WDTCTRL, in uniphier_watchdog_ping() 69 ret = regmap_read_poll_timeout(wdev->regmap, WDTCTRL, val, in uniphier_watchdog_ping() 93 /* Enable and clear watchdog */ in __uniphier_watchdog_start() 129 tmp_timeout = roundup_pow_of_two(w->timeout); in uniphier_watchdog_start() 131 return __uniphier_watchdog_start(wdev->regmap, tmp_timeout); in uniphier_watchdog_start() 138 return __uniphier_watchdog_stop(wdev->regmap); in uniphier_watchdog_stop() [all …]
|
D | acquirewdt.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Based on wdt.c. Original copyright messages: 12 * "AS-IS" and at no charge. 16 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com> 18 * Can't add timeout - driver doesn't allow changing value 23 * The Watch-Dog Timer is provided to ensure that standalone 28 * reset (cold boot) or a non-maskable interrupt (NMI) to bring the 31 * The Watch-Dog Timer is controlled by two I/O Ports. 32 * 443 hex - Read - Enable or refresh the Watch-Dog Timer 33 * 043 hex - Read - Disable the Watch-Dog Timer [all …]
|
D | sc520_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 9 * any of this software. This material is provided "AS-IS" in 13 * 9/27 - 2001 [Initial release] 16 * - Fixed formatting 17 * - Removed debug printks 18 * - Fixed SMP built kernel deadlock 19 * - Switched to private locks not lock_kernel 20 * - Used ioremap/writew/readw 21 * - Added NOWAYOUT support 22 * 4/12 - 2002 Changes by Rob Radez <rob@osinvestor.com> [all …]
|