stm32_periph.h 566 B

123456789101112131415161718192021222324252627
  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. TIMER2_CLOCK_CFG,
  21. };
  22. #endif /* __ASM_ARM_ARCH_PERIPH_H */