blob: edec2138805cdd1dd590913ded6faa88f636a035 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Peter Griffin0b491542015-07-30 18:55:20 +01002/*
3 * Copyright (C) 2015 Linaro
4 * Peter Griffin <peter.griffin@linaro.org>
Peter Griffin0b491542015-07-30 18:55:20 +01005 */
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 */
16enum 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 */