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
stm32f7_clock.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2022 STMicroelectronics
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F7_CLOCK_H_
7
#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F7_CLOCK_H_
8
12
#define STM32_CLOCK_BUS_AHB1 0x030
13
#define STM32_CLOCK_BUS_AHB2 0x034
14
#define STM32_CLOCK_BUS_AHB3 0x038
15
#define STM32_CLOCK_BUS_APB1 0x040
16
#define STM32_CLOCK_BUS_APB2 0x044
17
#define STM32_CLOCK_BUS_APB3 0x0A8
18
19
#define STM32_PERIPH_BUS_MIN STM32_CLOCK_BUS_AHB1
20
#define STM32_PERIPH_BUS_MAX STM32_CLOCK_BUS_APB3
21
23
/* RM0386, 0390, 0402, 0430 § Dedicated Clock configuration register (RCC_DCKCFGRx) */
24
26
#define STM32_SRC_PLL_P 0x001
27
#define STM32_SRC_PLL_Q 0x002
28
#define STM32_SRC_PLL_R 0x003
30
#define STM32_SRC_LSE 0x004
31
#define STM32_SRC_LSI 0x005
32
#define STM32_SRC_HSI 0x008
34
#define STM32_SRC_SYSCLK 0x006
36
#define STM32_SRC_PCLK 0x007
37
38
39
#define STM32_CLOCK_REG_MASK 0xFFU
40
#define STM32_CLOCK_REG_SHIFT 0U
41
#define STM32_CLOCK_SHIFT_MASK 0x1FU
42
#define STM32_CLOCK_SHIFT_SHIFT 8U
43
#define STM32_CLOCK_MASK_MASK 0x7U
44
#define STM32_CLOCK_MASK_SHIFT 13U
45
#define STM32_CLOCK_VAL_MASK 0x7U
46
#define STM32_CLOCK_VAL_SHIFT 16U
47
61
#define STM32_CLOCK(val, mask, shift, reg) \
62
((((reg) & STM32_CLOCK_REG_MASK) << STM32_CLOCK_REG_SHIFT) | \
63
(((shift) & STM32_CLOCK_SHIFT_MASK) << STM32_CLOCK_SHIFT_SHIFT) | \
64
(((mask) & STM32_CLOCK_MASK_MASK) << STM32_CLOCK_MASK_SHIFT) | \
65
(((val) & STM32_CLOCK_VAL_MASK) << STM32_CLOCK_VAL_SHIFT))
66
68
#define CFGR_REG 0x08
69
71
#define BDCR_REG 0x70
72
75
#define I2S_SEL(val) STM32_CLOCK(val, 1, 23, CFGR_REG)
77
#define RTC_SEL(val) STM32_CLOCK(val, 3, 8, BDCR_REG)
78
80
#define DCKCFGR1_REG 0x8C
81
#define DCKCFGR2_REG 0x90
82
85
#define USART1_SEL(val) STM32_CLOCK(val, 3, 0, DCKCFGR2_REG)
86
#define USART2_SEL(val) STM32_CLOCK(val, 3, 2, DCKCFGR2_REG)
87
#define USART3_SEL(val) STM32_CLOCK(val, 3, 4, DCKCFGR2_REG)
88
#define USART4_SEL(val) STM32_CLOCK(val, 3, 6, DCKCFGR2_REG)
89
#define USART5_SEL(val) STM32_CLOCK(val, 3, 8, DCKCFGR2_REG)
90
#define USART6_SEL(val) STM32_CLOCK(val, 3, 10, DCKCFGR2_REG)
91
#define USART7_SEL(val) STM32_CLOCK(val, 3, 12, DCKCFGR2_REG)
92
#define USART8_SEL(val) STM32_CLOCK(val, 3, 14, DCKCFGR2_REG)
93
#define I2C1_SEL(val) STM32_CLOCK(val, 3, 16, DCKCFGR2_REG)
94
#define I2C2_SEL(val) STM32_CLOCK(val, 3, 18, DCKCFGR2_REG)
95
#define I2C3_SEL(val) STM32_CLOCK(val, 3, 20, DCKCFGR2_REG)
96
#define I2C4_SEL(val) STM32_CLOCK(val, 3, 22, DCKCFGR2_REG)
97
#define LPTIM1_SEL(val) STM32_CLOCK(val, 3, 24, DCKCFGR2_REG)
98
#define CEC_SEL(val) STM32_CLOCK(val, 1, 26, DCKCFGR2_REG)
99
#define CK48M_SEL(val) STM32_CLOCK(val, 1, 27, DCKCFGR2_REG)
100
#define SDMMC1_SEL(val) STM32_CLOCK(val, 1, 28, DCKCFGR2_REG)
101
#define SDMMC2_SEL(val) STM32_CLOCK(val, 1, 29, DCKCFGR2_REG)
102
#define DSI_SEL(val) STM32_CLOCK(val, 1, 30, DCKCFGR2_REG)
104
#define NO_SEL 0xFF
105
106
#endif
/* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_STM32F7_CLOCK_H_ */
zephyr
dt-bindings
clock
stm32f7_clock.h
Generated on Fri Oct 20 2023 10:27:12 for Zephyr API Documentation by
1.9.6