blob: ae0faef353d7d5efa8865fca5650bded421b3e13 [file] [log] [blame]
Vikas Manocha1b51c932016-02-11 15:47:20 -08001/*
Patrice Chotard789ee0e2017-10-23 09:53:58 +02002 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
3 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha1b51c932016-02-11 15:47:20 -08004 *
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 {
Michael Kurz337ff2a2017-01-22 16:04:30 +010018 PERIPH_ID_USART1 = 37,
19
20 PERIPH_ID_QUADSPI = 92,
Vikas Manocha1b51c932016-02-11 15:47:20 -080021};
22
23enum periph_clock {
Michael Kurz04bb8db2017-01-22 16:04:26 +010024 SYSCFG_CLOCK_CFG,
25 TIMER2_CLOCK_CFG,
Michael Kurz812962b2017-01-22 16:04:27 +010026 STMMAC_CLOCK_CFG,
Vikas Manocha1b51c932016-02-11 15:47:20 -080027};
28
29#endif /* __ASM_ARM_ARCH_PERIPH_H */