periph.h 585 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015 Linaro
  4. * Peter Griffin <peter.griffin@linaro.org>
  5. */
  6. #ifndef __ASM_ARM_ARCH_PERIPH_H
  7. #define __ASM_ARM_ARCH_PERIPH_H
  8. /*
  9. * Peripherals required for pinmux configuration. List will
  10. * grow with support for more devices getting added.
  11. * Numbering based on interrupt table.
  12. *
  13. */
  14. enum periph_id {
  15. PERIPH_ID_UART0 = 36,
  16. PERIPH_ID_UART1,
  17. PERIPH_ID_UART2,
  18. PERIPH_ID_UART3,
  19. PERIPH_ID_UART4,
  20. PERIPH_ID_UART5,
  21. PERIPH_ID_SDMMC0 = 72,
  22. PERIPH_ID_SDMMC1,
  23. PERIPH_ID_NONE = -1,
  24. };
  25. #endif /* __ASM_ARM_ARCH_PERIPH_H */