Zephyr Project API  3.2.0
A Scalable Open Source RTOS
stm32f0_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_STM32F0_CLOCK_H_
7#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F0_CLOCK_H_
8
10#define STM32_CLOCK_BUS_AHB1 0x014
11#define STM32_CLOCK_BUS_APB2 0x018
12#define STM32_CLOCK_BUS_APB1 0x01c
13
14#define STM32_PERIPH_BUS_MIN STM32_CLOCK_BUS_AHB1
15#define STM32_PERIPH_BUS_MAX STM32_CLOCK_BUS_APB1
16
20#define STM32_SRC_HSI 0x001
21#define STM32_SRC_LSE 0x002
22/* #define STM32_SRC_HSI48 0x003 */
24#define STM32_SRC_SYSCLK 0x004
26#define STM32_SRC_PCLK 0x005
28#define STM32_SRC_PLLCLK 0x006
29
44#define STM32_CLOCK_REG_MASK 0xFFU
45#define STM32_CLOCK_REG_SHIFT 0U
46#define STM32_CLOCK_SHIFT_MASK 0x1FU
47#define STM32_CLOCK_SHIFT_SHIFT 8U
48#define STM32_CLOCK_MASK_MASK 0x7U
49#define STM32_CLOCK_MASK_SHIFT 13U
50#define STM32_CLOCK_VAL_MASK 0x7U
51#define STM32_CLOCK_VAL_SHIFT 16U
52
53#define STM32_CLOCK(val, mask, shift, reg) \
54 ((((reg) & STM32_CLOCK_REG_MASK) << STM32_CLOCK_REG_SHIFT) | \
55 (((shift) & STM32_CLOCK_SHIFT_MASK) << STM32_CLOCK_SHIFT_SHIFT) | \
56 (((mask) & STM32_CLOCK_MASK_MASK) << STM32_CLOCK_MASK_SHIFT) | \
57 (((val) & STM32_CLOCK_VAL_MASK) << STM32_CLOCK_VAL_SHIFT))
58
60#define CFGR3_REG 0x30
61
64#define USART1_SEL(val) STM32_CLOCK(val, 3, 0, CFGR3_REG)
65#define I2C1_SEL(val) STM32_CLOCK(val, 1, 4, CFGR3_REG)
66#define CEC_SEL(val) STM32_CLOCK(val, 1, 6, CFGR3_REG)
67#define USB_SEL(val) STM32_CLOCK(val, 1, 7, CFGR3_REG)
68#define ADC_SEL(val) STM32_CLOCK(val, 1, 8, CFGR3_REG)
69#define USART2_SEL(val) STM32_CLOCK(val, 3, 16, CFGR3_REG)
70#define USART3_SEL(val) STM32_CLOCK(val, 3, 18, CFGR3_REG)
71
72#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F0_CLOCK_H_ */