Searched refs:watchdog (Results 226 - 250 of 398) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/watchdog/
H A Dsbc7240_wdt.c29 #include <linux/watchdog.h>
52 MODULE_PARM_DESC(nowayout, "Disable watchdog when closing device file");
65 /* disable the watchdog */
75 /* enable the watchdog */
106 * /dev/watchdog handling
154 "Unexpected close, not stopping watchdog!\n");
233 .name = "watchdog",
255 printk(KERN_INFO SBC7240_PREFIX "Removing watchdog\n");
274 /* The IO port 0x043 used to disable the watchdog
H A Dsc520_wdt.c47 * drivers in that the driver will ping the watchdog by itself,
60 #include <linux/watchdog.h>
81 * We will program the SC520 watchdog for a timeout of 2.01s.
82 * If we reset the watchdog every ~250ms we should be safe.
90 * char to /dev/watchdog every 30 seconds.
155 "Heartbeat lost! Will not ping the watchdog\n");
187 /* Start the watchdog */
199 /* Stop the watchdog */
223 * /dev/watchdog handling
274 "Unexpected close, not stopping watchdog!\
[all...]
H A Dstmp3xxx_wdt.c13 #include <linux/watchdog.h>
199 .name = "watchdog",
223 printk(KERN_INFO "stmp3xxx watchdog: initialized, heartbeat %d sec\n",
H A Dtwl4030_wdt.c26 #include <linux/watchdog.h>
136 /* /dev/watchdog can only be opened once */
152 "Unexpected close, watchdog still running!\n");
187 wdt->miscdev.name = "watchdog";
H A Dtxx9wdt.c14 #include <linux/watchdog.h>
100 "Unexpected close, not stopping watchdog!\n");
179 .name = "watchdog",
H A Dw83627hf_wdt.c33 #include <linux/watchdog.h>
131 turning off watchdog */
137 watchdog */
271 "Unexpected close, not stopping watchdog!\n");
307 .name = "watchdog",
H A Dw83697hf_wdt.c32 #include <linux/watchdog.h>
313 "Unexpected close, not stopping watchdog!\n");
349 .name = "watchdog",
371 "Looking for watchdog at address 0x%x\n", wdt_io);
375 "watchdog found at address 0x%x\n", wdt_io);
382 printk(KERN_INFO PFX "watchdog not found at address 0x%x\n", wdt_io);
396 /* we will autodetect the W83697HF/HG watchdog */
417 "watchdog until userland kicks in\n");
H A Dw83697ug_wdt.c37 #include <linux/watchdog.h>
141 disable keyboard turning off watchdog */
290 "Unexpected close, not stopping watchdog!\n");
326 .name = "watchdog",
H A Dw83877f_wdt.c39 * drivers in that the driver will ping the watchdog by itself,
51 #include <linux/watchdog.h>
74 * EMACS PC-104 board I'm using). If we reset the watchdog every
82 * char to /dev/watchdog every 30 seconds.
130 "Heartbeat lost! Will not ping the watchdog\n");
149 /* enable watchdog */
188 * /dev/watchdog handling
317 .name = "watchdog",
414 MODULE_DESCRIPTION("Driver for watchdog timer in w83877f chip");
H A Dwafer5823wdt.c32 #include <linux/watchdog.h>
54 * port WDT_START, then read the port to start the watchdog. To pat
76 /* pat watchdog */
85 /* start up watchdog */
92 /* stop watchdog */
242 .name = "watchdog",
H A Dwdrtas.c4 * RTAS watchdog driver
7 * device driver to exploit watchdog RTAS functions
34 #include <linux/watchdog.h>
44 MODULE_DESCRIPTION("RTAS watchdog driver");
69 /*** watchdog access functions */
72 * wdrtas_set_interval - sets the watchdog interval
77 * wdrtas_set_interval sets the watchdog keepalive interval by calling the
93 printk(KERN_ERR "wdrtas: setting the watchdog to %i "
104 * wdrtas_get_interval - returns the current watchdog interval
109 * wdrtas_get_interval returns the current watchdog keepaliv
[all...]
H A Dwm8350_wdt.c18 #include <linux/watchdog.h>
257 "Unknown watchdog configuration: %x\n", reg);
278 .name = "watchdog",
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/kernel/
H A DMakefile81 obj-$(CONFIG_LOCKUP_DETECTOR) += watchdog.o
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/stmmac/
H A Dstmmac_main.c84 static int watchdog = TX_TIMEO; variable
85 module_param(watchdog, int, S_IRUGO | S_IWUSR);
86 MODULE_PARM_DESC(watchdog, "Transmit timeout in milliseconds");
158 if (unlikely(watchdog < 0))
159 watchdog = TX_TIMEO;
1508 dev->watchdog_timeo = msecs_to_jiffies(watchdog);
1971 else if (!strncmp(opt, "watchdog:", 9))
1972 strict_strtoul(opt + 9, 0, (unsigned long *)&watchdog);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/net/stmmac/
H A Dstmmac_main.c84 static int watchdog = TX_TIMEO; variable
85 module_param(watchdog, int, S_IRUGO | S_IWUSR);
86 MODULE_PARM_DESC(watchdog, "Transmit timeout in milliseconds");
158 if (unlikely(watchdog < 0))
159 watchdog = TX_TIMEO;
1508 dev->watchdog_timeo = msecs_to_jiffies(watchdog);
1971 else if (!strncmp(opt, "watchdog:", 9))
1972 strict_strtoul(opt + 9, 0, (unsigned long *)&watchdog);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/arm/
H A Dks8695net.c50 static int watchdog = 5000; variable
628 int reset_timeout = watchdog;
1545 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
1750 module_param(watchdog, int, 0400);
1751 MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/net/arm/
H A Dks8695net.c50 static int watchdog = 5000; variable
628 int reset_timeout = watchdog;
1545 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
1750 module_param(watchdog, int, 0400);
1751 MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/sched/
H A Dsch_htb.c151 struct qdisc_watchdog watchdog; member in struct:htb_sched
901 qdisc_watchdog_schedule(&q->watchdog, next_event);
955 qdisc_watchdog_cancel(&q->watchdog);
976 struct Qdisc *sch = q->watchdog.qdisc;
1014 qdisc_watchdog_init(&q->watchdog, sch);
1215 qdisc_watchdog_cancel(&q->watchdog);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/sched/
H A Dsch_htb.c151 struct qdisc_watchdog watchdog; member in struct:htb_sched
901 qdisc_watchdog_schedule(&q->watchdog, next_event);
955 qdisc_watchdog_cancel(&q->watchdog);
976 struct Qdisc *sch = q->watchdog.qdisc;
1014 qdisc_watchdog_init(&q->watchdog, sch);
1215 qdisc_watchdog_cancel(&q->watchdog);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/usb/host/
H A Doxu210hp.h418 struct timer_list watchdog; member in struct:oxu_hcd
436 #define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/watchdog/
H A Dadx_wdt.c17 #include <linux/watchdog.h>
220 .name = "watchdog",
259 /* disable watchdog and reboot on timeout */
H A Dat32ap700x_wdt.c13 * A watchdog timer event will, after reset, block writes to the WDT_CLEAR
31 #include <linux/watchdog.h>
89 * Disable the watchdog.
103 * Enable and reset the watchdog.
121 * Pat the watchdog timer.
131 * Watchdog device is opened, and watchdog starts running.
143 * Close the watchdog device.
151 "unexpected close, not stopping watchdog!\n");
160 * Change the watchdog time interval.
172 * Set new watchdog tim
[all...]
H A Di6300esb.c36 #include <linux/watchdog.h>
82 static unsigned short triggered; /* The status of the watchdog upon boot */
85 /* We can only use 1 card due to the /dev/watchdog restriction */
193 * /dev/watchdog handling
198 /* /dev/watchdog can only be opened once */
215 "Unexpected close, not stopping watchdog!\n");
328 .name = "watchdog",
387 * The watchdog has two timers, it can be setup so that the
400 /* Set the timer to watchdog mode and disable it for now */
403 /* Check if the watchdog wa
[all...]
H A Dmpcore_wdt.c2 * Watchdog driver for the mpcore watchdog timer
26 #include <linux/watchdog.h>
66 MODULE_PARM_DESC(mpcore_noboot, "MPcore watchdog action, "
82 /* Clear the interrupt on the watchdog */
123 dev_printk(KERN_INFO, wdt->dev, "enabling watchdog.\n");
129 /* Enable watchdog - prescale=256, watchdog mode=0, enable=1 */
132 /* Enable watchdog - prescale=256, watchdog mode=1, enable=1 */
147 * /dev/watchdog handlin
[all...]
H A Domap_wdt.c4 * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog
22 * 1. Modified to support OMAP1610 32-KHz watchdog timer
35 #include <linux/watchdog.h>
55 MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
91 /* Sequence to enable the watchdog */
105 /* sequence required to disable watchdog */
325 wdev->omap_wdt_miscdev.name = "watchdog";
403 * through sysfs rather than by stopping the watchdog daemon). Also, this

Completed in 242 milliseconds

1234567891011>>