/openbmc/linux/drivers/watchdog/ |
H A D | acquirewdt.c | 87 static int wdt_start = 0x443; variable 88 module_param(wdt_start, int, 0); 89 MODULE_PARM_DESC(wdt_start, "Acquire WDT 'start' io port (default 0x443)"); 104 inb_p(wdt_start); in acq_keepalive() 243 if (wdt_stop != wdt_start) { in acq_probe() 251 if (!request_region(wdt_start, 1, WATCHDOG_NAME)) { in acq_probe() 252 pr_err("I/O address 0x%04x already in use\n", wdt_start); in acq_probe() 266 release_region(wdt_start, 1); in acq_probe() 268 if (wdt_stop != wdt_start) in acq_probe() 277 release_region(wdt_start, 1); in acq_remove() [all …]
|
H A D | wafer5823wdt.c | 58 static int wdt_start = 0x443; variable 77 inb_p(wdt_start); in wafwdt_ping() 84 outb_p(timeout, wdt_start); in wafwdt_start() 85 inb_p(wdt_start); in wafwdt_start() 265 if (wdt_stop != wdt_start) { in wafwdt_init() 273 if (!request_region(wdt_start, 1, "Wafer 5823 WDT")) { in wafwdt_init() 274 pr_err("I/O address 0x%04x already in use\n", wdt_start); in wafwdt_init() 299 release_region(wdt_start, 1); in wafwdt_init() 301 if (wdt_stop != wdt_start) in wafwdt_init() 311 if (wdt_stop != wdt_start) in wafwdt_exit() [all …]
|
H A D | advantechwdt.c | 66 static int wdt_start = 0x443; variable 67 module_param(wdt_start, int, 0); 68 MODULE_PARM_DESC(wdt_start, "Advantech WDT 'start' io port (default 0x443)"); 89 outb_p(timeout, wdt_start); in advwdt_ping() 242 if (wdt_stop != wdt_start) { in advwdt_probe() 251 if (!request_region(wdt_start, 1, WATCHDOG_NAME)) { in advwdt_probe() 252 pr_err("I/O address 0x%04x already in use\n", wdt_start); in advwdt_probe() 275 release_region(wdt_start, 1); in advwdt_probe() 277 if (wdt_stop != wdt_start) in advwdt_probe() 285 release_region(wdt_start, 1); in advwdt_remove() [all …]
|
H A D | sbc60xxwdt.c | 74 static int wdt_start = 0x443; variable 75 module_param(wdt_start, int, 0); 76 MODULE_PARM_DESC(wdt_start, "SBC60xx WDT 'start' io port (default 0x443)"); 126 inb_p(wdt_start); in wdt_timer_ping() 321 if ((wdt_stop != 0x45) && (wdt_stop != wdt_start)) in sbc60xxwdt_unload() 323 release_region(wdt_start, 1); in sbc60xxwdt_unload() 336 if (!request_region(wdt_start, 1, "SBC 60XX WDT")) { in sbc60xxwdt_init() 337 pr_err("I/O address 0x%04x already in use\n", wdt_start); in sbc60xxwdt_init() 343 if (wdt_stop != 0x45 && wdt_stop != wdt_start) { in sbc60xxwdt_init() 371 if (wdt_stop != 0x45 && wdt_stop != wdt_start) in sbc60xxwdt_init() [all …]
|
H A D | stmp3xxx_rtc_wdt.c | 27 static int wdt_start(struct watchdog_device *wdd) in wdt_start() function 48 return wdt_start(wdd); in wdt_set_timeout() 58 .start = wdt_start, 132 return wdt_start(wdd); in stmp3xxx_wdt_resume()
|
H A D | intel-mid_wdt.c | 51 static int wdt_start(struct watchdog_device *wd) in wdt_start() function 116 .start = wdt_start, 178 ret = wdt_start(wdt_dev); in mid_wdt_probe()
|
H A D | w83977f_wdt.c | 66 static int wdt_start(void) in wdt_start() function 295 wdt_start(); in wdt_open() 407 wdt_start(); in wdt_ioctl()
|
H A D | diag288_wdt.c | 108 static int wdt_start(struct watchdog_device *dev) in wdt_start() function 167 .start = wdt_start,
|
H A D | via_wdt.c | 108 static int wdt_start(struct watchdog_device *wdd) in wdt_start() function 145 .start = wdt_start,
|
H A D | it87_wdt.c | 210 static int wdt_start(struct watchdog_device *wdd) in wdt_start() function 268 .start = wdt_start,
|
H A D | w83627hf_wdt.c | 279 static int wdt_start(struct watchdog_device *wdog) in wdt_start() function 323 .start = wdt_start,
|
H A D | wdt.c | 117 static int wdt_start(void) in wdt_start() function 419 wdt_start(); in wdt_open()
|
/openbmc/u-boot/arch/arm/mach-exynos/include/mach/ |
H A D | watchdog.h | 37 void wdt_start(unsigned int timeout);
|
/openbmc/u-boot/arch/arm/mach-s5pc1xx/include/mach/ |
H A D | watchdog.h | 38 void wdt_start(unsigned int timeout);
|
/openbmc/u-boot/include/ |
H A D | wdt.h | 28 int wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags);
|
/openbmc/u-boot/drivers/watchdog/ |
H A D | s5p_wdt.c | 25 void wdt_start(unsigned int timeout) in wdt_start() function
|
H A D | wdt-uclass.c | 13 int wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags) in wdt_start() function
|
/openbmc/u-boot/board/xilinx/microblaze-generic/ |
H A D | microblaze-generic.c | 81 wdt_start(watchdog_dev, 0, 0); in board_late_init()
|
/openbmc/u-boot/test/dm/ |
H A D | wdt.c | 26 ut_assertok(wdt_start(dev, timeout, 0)); in dm_test_wdt_base()
|
/openbmc/u-boot/board/xilinx/zynq/ |
H A D | board.c | 43 wdt_start(watchdog_dev, 0, 0); in board_init()
|
/openbmc/u-boot/arch/mips/mach-mt7620/ |
H A D | cpu.c | 116 wdt_start(watchdog_dev, 60000, 0); /* 60 seconds */ in arch_misc_init()
|
/openbmc/u-boot/board/cssi/MCR3000/ |
H A D | MCR3000.c | 157 wdt_start(watchdog_dev, 0xffff, 0); in board_early_init_r()
|
/openbmc/linux/Documentation/watchdog/ |
H A D | watchdog-parameters.rst | 30 wdt_start: 41 wdt_start: 485 wdt_start:
|
/openbmc/u-boot/board/CZ.NIC/turris_omnia/ |
H A D | turris_omnia.c | 382 wdt_start(watchdog_dev, (u32) 25000000 * 120, 0); in board_init()
|
/openbmc/u-boot/board/xilinx/zynqmp/ |
H A D | zynqmp.c | 352 wdt_start(watchdog_dev, 0, 0); in board_init()
|