Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
stm32wb_clock.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32WB_CLOCK_H_
7#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32WB_CLOCK_H_
8
10
12#define STM32_CLOCK_BUS_AHB1 0x048
13#define STM32_CLOCK_BUS_AHB2 0x04c
14#define STM32_CLOCK_BUS_AHB3 0x050
15#define STM32_CLOCK_BUS_APB1 0x058
16#define STM32_CLOCK_BUS_APB1_2 0x05c
17#define STM32_CLOCK_BUS_APB2 0x060
18
19#define STM32_PERIPH_BUS_MIN STM32_CLOCK_BUS_AHB1
20#define STM32_PERIPH_BUS_MAX STM32_CLOCK_BUS_APB2
21
23/* RM0434, ยง Clock configuration register (RCC_CCIPRx) */
24
26/* defined in stm32_common_clocks.h */
28/* Low speed clocks defined in stm32_common_clocks.h */
29#define STM32_SRC_HSI (STM32_SRC_LSI + 1)
30#define STM32_SRC_HSI48 (STM32_SRC_HSI + 1)
31#define STM32_SRC_MSI (STM32_SRC_HSI48 + 1)
32#define STM32_SRC_HSE (STM32_SRC_MSI + 1)
34#define STM32_SRC_PCLK (STM32_SRC_HSE + 1)
36#define STM32_SRC_PLL_P (STM32_SRC_PCLK + 1)
37#define STM32_SRC_PLL_Q (STM32_SRC_PLL_P + 1)
38#define STM32_SRC_PLL_R (STM32_SRC_PLL_Q + 1)
39/* TODO: PLLSAI clocks */
40
41#define STM32_CLOCK_REG_MASK 0xFFU
42#define STM32_CLOCK_REG_SHIFT 0U
43#define STM32_CLOCK_SHIFT_MASK 0x1FU
44#define STM32_CLOCK_SHIFT_SHIFT 8U
45#define STM32_CLOCK_MASK_MASK 0x7U
46#define STM32_CLOCK_MASK_SHIFT 13U
47#define STM32_CLOCK_VAL_MASK 0x7U
48#define STM32_CLOCK_VAL_SHIFT 16U
49
63#define STM32_CLOCK(val, mask, shift, reg) \
64 ((((reg) & STM32_CLOCK_REG_MASK) << STM32_CLOCK_REG_SHIFT) | \
65 (((shift) & STM32_CLOCK_SHIFT_MASK) << STM32_CLOCK_SHIFT_SHIFT) | \
66 (((mask) & STM32_CLOCK_MASK_MASK) << STM32_CLOCK_MASK_SHIFT) | \
67 (((val) & STM32_CLOCK_VAL_MASK) << STM32_CLOCK_VAL_SHIFT))
68
70#define CCIPR_REG 0x88
71
73#define BDCR_REG 0x90
74
76#define CSR_REG 0x94
77
80#define USART1_SEL(val) STM32_CLOCK(val, 3, 0, CCIPR_REG)
81#define LPUART1_SEL(val) STM32_CLOCK(val, 3, 10, CCIPR_REG)
82#define I2C1_SEL(val) STM32_CLOCK(val, 3, 12, CCIPR_REG)
83#define I2C3_SEL(val) STM32_CLOCK(val, 3, 16, CCIPR_REG)
84#define LPTIM1_SEL(val) STM32_CLOCK(val, 3, 18, CCIPR_REG)
85#define LPTIM2_SEL(val) STM32_CLOCK(val, 3, 20, CCIPR_REG)
86#define SAI1_SEL(val) STM32_CLOCK(val, 3, 22, CCIPR_REG)
87#define CLK48_SEL(val) STM32_CLOCK(val, 3, 26, CCIPR_REG)
88#define ADC_SEL(val) STM32_CLOCK(val, 3, 28, CCIPR_REG)
89#define RNG_SEL(val) STM32_CLOCK(val, 3, 30, CCIPR_REG)
91#define RTC_SEL(val) STM32_CLOCK(val, 3, 8, BDCR_REG)
93#define RFWKP_SEL(val) STM32_CLOCK(val, 3, 14, CSR_REG)
94
95#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32WB_CLOCK_H_ */