Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 1 | /* |
Patrice Chotard | 789ee0e | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 2 | * Copyright (C) 2016, STMicroelectronics - All Rights Reserved |
| 3 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 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 | */ |
| 17 | enum periph_id { |
Michael Kurz | 337ff2a | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 18 | PERIPH_ID_USART1 = 37, |
| 19 | |
| 20 | PERIPH_ID_QUADSPI = 92, |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 21 | }; |
| 22 | |
| 23 | enum periph_clock { |
Michael Kurz | 04bb8db | 2017-01-22 16:04:26 +0100 | [diff] [blame] | 24 | TIMER2_CLOCK_CFG, |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | #endif /* __ASM_ARM_ARCH_PERIPH_H */ |