diff options
| author | Roger Meier <[email protected]> | 2013-11-04 07:40:44 +0100 |
|---|---|---|
| committer | Andreas Bießmann <[email protected]> | 2013-11-04 20:32:39 +0100 |
| commit | c12f941bece9ed79efccfe9e4a9fd977da6975f9 (patch) | |
| tree | e6d75f9c6181645864814b6e29732d811f4918d4 | |
| parent | f89a6ee3557bc67f20f75e64d5eb62fde58fd3ba (diff) | |
at91: add defines for reset type
Signed-off-by: Roger Meier <[email protected]>
Acked-by: Bo Shen <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Cc: Andreas Bießmann <[email protected]>
Signed-off-by: Andreas Bießmann <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-at91/at91_rstc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-at91/at91_rstc.h b/arch/arm/include/asm/arch-at91/at91_rstc.h index 423cf515d97..a9423428e75 100644 --- a/arch/arm/include/asm/arch-at91/at91_rstc.h +++ b/arch/arm/include/asm/arch-at91/at91_rstc.h @@ -38,4 +38,11 @@ typedef struct at91_rstc { #define AT91_RSTC_SR_NRSTL 0x00010000 +#define AT91_RSTC_RSTTYP (7 << 8) /* Reset Type */ +#define AT91_RSTC_RSTTYP_GENERAL (0 << 8) +#define AT91_RSTC_RSTTYP_WAKEUP (1 << 8) +#define AT91_RSTC_RSTTYP_WATCHDOG (2 << 8) +#define AT91_RSTC_RSTTYP_SOFTWARE (3 << 8) +#define AT91_RSTC_RSTTYP_USER (4 << 8) + #endif |
