Home
last modified time | relevance | path

Searched refs:wtcon (Results 1 – 1 of 1) sorted by relevance

/Linux-v6.6/drivers/watchdog/
Ds3c2410_wdt.c392 unsigned long wtcon; in __s3c2410wdt_stop() local
394 wtcon = readl(wdt->reg_base + S3C2410_WTCON); in __s3c2410wdt_stop()
395 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN); in __s3c2410wdt_stop()
396 writel(wtcon, wdt->reg_base + S3C2410_WTCON); in __s3c2410wdt_stop()
413 unsigned long wtcon; in s3c2410wdt_start() local
421 wtcon = readl(wdt->reg_base + S3C2410_WTCON); in s3c2410wdt_start()
422 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128; in s3c2410wdt_start()
425 wtcon |= S3C2410_WTCON_INTEN; in s3c2410wdt_start()
426 wtcon &= ~S3C2410_WTCON_RSTEN; in s3c2410wdt_start()
428 wtcon &= ~S3C2410_WTCON_INTEN; in s3c2410wdt_start()
[all …]