Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
3.5.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
stm32f3_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_STM32F3_CLOCK_H_
7
#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F3_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
18
/* RM0316, §9.4.13 Clock configuration register (RCC_CFGR3) */
19
21
#define STM32_SRC_HSI 0x001
22
#define STM32_SRC_LSE 0x002
23
#define STM32_SRC_LSI 0x007
24
/* #define STM32_SRC_HSI48 0x003 */
26
#define STM32_SRC_SYSCLK 0x004
28
#define STM32_SRC_PCLK 0x005
30
#define STM32_SRC_PLLCLK 0x006
31
32
#define STM32_CLOCK_REG_MASK 0xFFU
33
#define STM32_CLOCK_REG_SHIFT 0U
34
#define STM32_CLOCK_SHIFT_MASK 0x1FU
35
#define STM32_CLOCK_SHIFT_SHIFT 8U
36
#define STM32_CLOCK_MASK_MASK 0x7U
37
#define STM32_CLOCK_MASK_SHIFT 13U
38
#define STM32_CLOCK_VAL_MASK 0x7U
39
#define STM32_CLOCK_VAL_SHIFT 16U
40
54
#define STM32_CLOCK(val, mask, shift, reg) \
55
((((reg) & STM32_CLOCK_REG_MASK) << STM32_CLOCK_REG_SHIFT) | \
56
(((shift) & STM32_CLOCK_SHIFT_MASK) << STM32_CLOCK_SHIFT_SHIFT) | \
57
(((mask) & STM32_CLOCK_MASK_MASK) << STM32_CLOCK_MASK_SHIFT) | \
58
(((val) & STM32_CLOCK_VAL_MASK) << STM32_CLOCK_VAL_SHIFT))
59
61
#define CFGR_REG 0x04
62
#define CFGR3_REG 0x30
63
65
#define BDCR_REG 0x20
66
69
#define I2S_SEL(val) STM32_CLOCK(val, 1, 23, CFGR_REG)
71
#define USART1_SEL(val) STM32_CLOCK(val, 3, 0, CFGR3_REG)
72
#define I2C1_SEL(val) STM32_CLOCK(val, 1, 4, CFGR3_REG)
73
#define I2C2_SEL(val) STM32_CLOCK(val, 1, 5, CFGR3_REG)
74
#define I2C3_SEL(val) STM32_CLOCK(val, 1, 6, CFGR3_REG)
75
#define TIM1_SEL(val) STM32_CLOCK(val, 1, 8, CFGR3_REG)
76
#define TIM8_SEL(val) STM32_CLOCK(val, 1, 9, CFGR3_REG)
77
#define TIM15_SEL(val) STM32_CLOCK(val, 1, 10, CFGR3_REG)
78
#define TIM16_SEL(val) STM32_CLOCK(val, 1, 11, CFGR3_REG)
79
#define TIM17_SEL(val) STM32_CLOCK(val, 1, 13, CFGR3_REG)
80
#define TIM20_SEL(val) STM32_CLOCK(val, 1, 15, CFGR3_REG)
81
#define USART2_SEL(val) STM32_CLOCK(val, 3, 16, CFGR3_REG)
82
#define USART3_SEL(val) STM32_CLOCK(val, 3, 18, CFGR3_REG)
83
#define USART4_SEL(val) STM32_CLOCK(val, 3, 20, CFGR3_REG)
84
#define USART5_SEL(val) STM32_CLOCK(val, 3, 22, CFGR3_REG)
85
#define TIM2_SEL(val) STM32_CLOCK(val, 1, 24, CFGR3_REG)
86
#define TIM3_4_SEL(val) STM32_CLOCK(val, 1, 25, CFGR3_REG)
88
#define RTC_SEL(val) STM32_CLOCK(val, 3, 8, BDCR_REG)
90
#define NO_SEL 0xFF
91
92
#endif
/* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F3_CLOCK_H_ */
zephyr
dt-bindings
clock
stm32f3_clock.h
Generated on Fri Oct 20 2023 10:27:12 for Zephyr API Documentation by
1.9.6