stm32mp1_pwr.h 705 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2017-2018, STMicroelectronics - All Rights Reserved
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef STM32MP1_PWR_H
  7. #define STM32MP1_PWR_H
  8. #include <lib/utils_def.h>
  9. #define PWR_CR1 U(0x00)
  10. #define PWR_CR2 U(0x08)
  11. #define PWR_CR3 U(0x0C)
  12. #define PWR_MPUCR U(0x10)
  13. #define PWR_WKUPCR U(0x20)
  14. #define PWR_MPUWKUPENR U(0x28)
  15. #define PWR_CR1_LPDS BIT(0)
  16. #define PWR_CR1_LPCFG BIT(1)
  17. #define PWR_CR1_LVDS BIT(2)
  18. #define PWR_CR1_DBP BIT(8)
  19. #define PWR_CR3_DDRSREN BIT(10)
  20. #define PWR_CR3_DDRSRDIS BIT(11)
  21. #define PWR_CR3_DDRRETEN BIT(12)
  22. #define PWR_MPUCR_PDDS BIT(0)
  23. #define PWR_MPUCR_CSTDBYDIS BIT(3)
  24. #define PWR_MPUCR_CSSF BIT(9)
  25. #endif /* STM32MP1_PWR_H */