at91_shdwc.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2011-01-13 weety first version
  9. */
  10. #ifndef AT91_SHDWC_H
  11. #define AT91_SHDWC_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #define AT91_SHDW_CR (AT91_SHDWC + 0x00) /* Shut Down Control Register */
  16. #define AT91_SHDW_SHDW (1 << 0) /* Shut Down command */
  17. #define AT91_SHDW_KEY (0xa5 << 24) /* KEY Password */
  18. #define AT91_SHDW_MR (AT91_SHDWC + 0x04) /* Shut Down Mode Register */
  19. #define AT91_SHDW_WKMODE0 (3 << 0) /* Wake-up 0 Mode Selection */
  20. #define AT91_SHDW_WKMODE0_NONE 0
  21. #define AT91_SHDW_WKMODE0_HIGH 1
  22. #define AT91_SHDW_WKMODE0_LOW 2
  23. #define AT91_SHDW_WKMODE0_ANYLEVEL 3
  24. #define AT91_SHDW_CPTWK0 (0xf << 4) /* Counter On Wake Up 0 */
  25. #define AT91_SHDW_CPTWK0_(x) ((x) << 4)
  26. #define AT91_SHDW_RTTWKEN (1 << 16) /* Real Time Timer Wake-up Enable */
  27. #define AT91_SHDW_SR (AT91_SHDWC + 0x08) /* Shut Down Status Register */
  28. #define AT91_SHDW_WAKEUP0 (1 << 0) /* Wake-up 0 Status */
  29. #define AT91_SHDW_RTTWK (1 << 16) /* Real-time Timer Wake-up */
  30. #define AT91_SHDW_RTCWK (1 << 17) /* Real-time Clock Wake-up [SAM9RL] */
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif