Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Peter Griffin | 0b49154 | 2015-07-30 18:55:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Linaro |
| 4 | * Peter Griffin <peter.griffin@linaro.org> |
Peter Griffin | 0b49154 | 2015-07-30 18:55:20 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_ARM_ARCH_PERIPH_H |
| 8 | #define __ASM_ARM_ARCH_PERIPH_H |
| 9 | |
| 10 | /* |
| 11 | * Peripherals required for pinmux configuration. List will |
| 12 | * grow with support for more devices getting added. |
| 13 | * Numbering based on interrupt table. |
| 14 | * |
| 15 | */ |
| 16 | enum periph_id { |
| 17 | PERIPH_ID_UART0 = 36, |
| 18 | PERIPH_ID_UART1, |
| 19 | PERIPH_ID_UART2, |
| 20 | PERIPH_ID_UART3, |
| 21 | PERIPH_ID_UART4, |
| 22 | PERIPH_ID_UART5, |
| 23 | PERIPH_ID_SDMMC0 = 72, |
| 24 | PERIPH_ID_SDMMC1, |
| 25 | |
| 26 | PERIPH_ID_NONE = -1, |
| 27 | }; |
| 28 | |
| 29 | #endif /* __ASM_ARM_ARCH_PERIPH_H */ |