]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/asm-blackfin/mach-common/bits/watchdog.h
Replace "#include <asm-$ARCH/$FILE>" with "#include <asm/$FILE>"
[karo-tx-uboot.git] / include / asm-blackfin / mach-common / bits / watchdog.h
1 /*
2  * Watchdog Masks
3  */
4
5 #ifndef __BFIN_PERIPHERAL_WATCHDOG__
6 #define __BFIN_PERIPHERAL_WATCHDOG__
7
8 /* Watchdog Timer WDOG_CTL Register Masks */
9
10 #define WDEV                    0x0006  /* event generated on roll over */
11 #define WDEV_RESET              0x0000  /* generate reset event on roll over */
12 #define WDEV_NMI                0x0002  /* generate NMI event on roll over */
13 #define WDEV_GPI                0x0004  /* generate GP IRQ on roll over */
14 #define WDEV_NONE               0x0006  /* no event on roll over */
15 #define WDEN                    0x0FF0  /* enable watchdog */
16 #define WDDIS                   0x0AD0  /* disable watchdog */
17 #define WDRO                    0x8000  /* watchdog rolled over latch */
18
19 #endif