blob: a1af25cb5857e98d391ed69692ce7e2bfa8c7cdf [file] [log] [blame]
Vikas Manocha931a7a52016-01-26 18:12:20 -08001/*
2 * (C) Copyright 2016
3 * Vikas Manocha, ST Micoelectronics, vikas.manocha@st.com.
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 UART1_GPIOA_9_10 = 0,
19 UART2_GPIOD_5_6,
20};
21
22enum periph_clock {
23 USART1_CLOCK_CFG = 0,
24 USART2_CLOCK_CFG,
25};
26
27#endif /* __ASM_ARM_ARCH_PERIPH_H */