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