stm32_periph.h 604 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
  3. * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __ASM_ARM_ARCH_PERIPH_H
  8. #define __ASM_ARM_ARCH_PERIPH_H
  9. /*
  10. * Peripherals required for pinmux configuration. List will
  11. * grow with support for more devices getting added.
  12. * Numbering based on interrupt table.
  13. *
  14. */
  15. enum periph_id {
  16. PERIPH_ID_USART1 = 37,
  17. PERIPH_ID_QUADSPI = 92,
  18. };
  19. enum periph_clock {
  20. SYSCFG_CLOCK_CFG,
  21. TIMER2_CLOCK_CFG,
  22. STMMAC_CLOCK_CFG,
  23. };
  24. #endif /* __ASM_ARM_ARCH_PERIPH_H */