Lines Matching defs:wdt_mem
68 static void __iomem *wdt_mem;
77 unsigned int ctl = readl(wdt_mem);
79 writel(ctl | VIA_WDT_TRIGGER, wdt_mem);
110 unsigned int ctl = readl(wdt_mem);
112 writel(wdd->timeout, wdt_mem + VIA_WDT_COUNT);
113 writel(ctl | VIA_WDT_RUNNING | VIA_WDT_TRIGGER, wdt_mem);
121 unsigned int ctl = readl(wdt_mem);
123 writel(ctl & ~VIA_WDT_RUNNING, wdt_mem);
130 writel(new_timeout, wdt_mem + VIA_WDT_COUNT);
199 wdt_mem = ioremap(mmio, VIA_WDT_MMIO_LEN);
200 if (wdt_mem == NULL) {
211 if (readl(wdt_mem) & VIA_WDT_FIRED)
223 iounmap(wdt_mem);
237 iounmap(wdt_mem);