at91_rstc.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * [origin: Linux kernel include/asm-arm/arch-at91/at91_rstc.h]
  3. *
  4. * Copyright (C) 2007 Andrew Victor
  5. * Copyright (C) 2007 Atmel Corporation.
  6. *
  7. * Reset Controller (RSTC) - System peripherals regsters.
  8. * Based on AT91SAM9261 datasheet revision D.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef AT91_RSTC_H
  13. #define AT91_RSTC_H
  14. #define AT91_ASM_RSTC_MR (ATMEL_BASE_RSTC + 0x08)
  15. #ifndef __ASSEMBLY__
  16. typedef struct at91_rstc {
  17. u32 cr; /* Reset Controller Control Register */
  18. u32 sr; /* Reset Controller Status Register */
  19. u32 mr; /* Reset Controller Mode Register */
  20. } at91_rstc_t;
  21. #endif /* __ASSEMBLY__ */
  22. #define AT91_RSTC_KEY 0xA5000000
  23. #define AT91_RSTC_CR_PROCRST 0x00000001
  24. #define AT91_RSTC_CR_PERRST 0x00000004
  25. #define AT91_RSTC_CR_EXTRST 0x00000008
  26. #define AT91_RSTC_MR_URSTEN 0x00000001
  27. #define AT91_RSTC_MR_URSTIEN 0x00000010
  28. #define AT91_RSTC_MR_ERSTL(x) ((x & 0xf) << 8)
  29. #define AT91_RSTC_MR_ERSTL_MASK 0x0000FF00
  30. #define AT91_RSTC_SR_NRSTL 0x00010000
  31. #define AT91_RSTC_RSTTYP (7 << 8) /* Reset Type */
  32. #define AT91_RSTC_RSTTYP_GENERAL (0 << 8)
  33. #define AT91_RSTC_RSTTYP_WAKEUP (1 << 8)
  34. #define AT91_RSTC_RSTTYP_WATCHDOG (2 << 8)
  35. #define AT91_RSTC_RSTTYP_SOFTWARE (3 << 8)
  36. #define AT91_RSTC_RSTTYP_USER (4 << 8)
  37. #endif