stm32mp1_shared_resources.h 853 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2017-2020, STMicroelectronics - All Rights Reserved
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef STM32MP1_SHARED_RESOURCES_H
  7. #define STM32MP1_SHARED_RESOURCES_H
  8. #include <stm32mp_shared_resources.h>
  9. #define STM32MP1_SHRES_GPIOZ(i) (STM32MP1_SHRES_GPIOZ_0 + (i))
  10. enum stm32mp_shres {
  11. STM32MP1_SHRES_CRYP1,
  12. STM32MP1_SHRES_GPIOZ_0,
  13. STM32MP1_SHRES_GPIOZ_1,
  14. STM32MP1_SHRES_GPIOZ_2,
  15. STM32MP1_SHRES_GPIOZ_3,
  16. STM32MP1_SHRES_GPIOZ_4,
  17. STM32MP1_SHRES_GPIOZ_5,
  18. STM32MP1_SHRES_GPIOZ_6,
  19. STM32MP1_SHRES_GPIOZ_7,
  20. STM32MP1_SHRES_HASH1,
  21. STM32MP1_SHRES_I2C4,
  22. STM32MP1_SHRES_I2C6,
  23. STM32MP1_SHRES_IWDG1,
  24. STM32MP1_SHRES_MCU,
  25. STM32MP1_SHRES_MDMA,
  26. STM32MP1_SHRES_PLL3,
  27. STM32MP1_SHRES_RNG1,
  28. STM32MP1_SHRES_RTC,
  29. STM32MP1_SHRES_SPI6,
  30. STM32MP1_SHRES_USART1,
  31. STM32MP1_SHRES_COUNT
  32. };
  33. #endif /* STM32MP1_SHARED_RESOURCES_H */