mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 17:23:11 +00:00
Add support for stm32mp1x RCC with Zephyr clock_control driver Signed-off-by: Yaël Boutreux <yael.boutreux@st.com> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com> Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
27 lines
803 B
C
27 lines
803 B
C
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32_CLOCK_H_
|
|
#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32_CLOCK_H_
|
|
|
|
/* clock bus references */
|
|
#define STM32_CLOCK_BUS_AHB1 0
|
|
#define STM32_CLOCK_BUS_AHB2 1
|
|
#define STM32_CLOCK_BUS_APB1 2
|
|
#define STM32_CLOCK_BUS_APB2 3
|
|
#define STM32_CLOCK_BUS_APB1_2 4
|
|
#define STM32_CLOCK_BUS_IOP 5
|
|
#define STM32_CLOCK_BUS_AHB3 6
|
|
#define STM32_CLOCK_BUS_AHB4 7
|
|
#define STM32_CLOCK_BUS_AHB5 8
|
|
#define STM32_CLOCK_BUS_AHB6 9
|
|
#define STM32_CLOCK_BUS_APB3 10
|
|
#define STM32_CLOCK_BUS_APB4 11
|
|
#define STM32_CLOCK_BUS_APB5 12
|
|
#define STM32_CLOCK_BUS_AXI 13
|
|
#define STM32_CLOCK_BUS_MLAHB 14
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32_CLOCK_H_ */
|