Zephyr API Documentation
4.1.99
A Scalable Open Source RTOS
4.1.99
Toggle main menu visibility
Main Page
Related Pages
Topics
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
u
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
▼
Zephyr API Documentation
►
Introduction
Deprecated List
►
Topics
►
Data Structures
▼
Files
▼
File List
►
doc
►
kernel
►
lib
►
modules
►
subsys
▼
zephyr
►
acpi
►
app_memory
►
arch
►
audio
►
bluetooth
►
canbus
►
console
►
crypto
►
data
►
debug
►
devicetree
►
dfu
►
display
►
drivers
►
dsp
▼
dt-bindings
►
acpi
►
adc
►
battery
►
clock
►
comparator
►
dac
►
dai
►
display
►
dma
►
espi
►
ethernet
►
flash_controller
►
gnss
►
gpio
►
i2c
►
input
►
inputmux
►
interrupt-controller
►
ipc_service
►
led
►
lora
►
lvgl
►
memory-attr
▼
memory-controller
►
adi-max32-hpb.h
►
nxp,flexram.h
►
renesas,ra-sdram.h
►
stm32-fmc-nor-psram.h
►
stm32-fmc-sdram.h
►
mfd
►
mipi_dbi
►
mipi_dsi
►
misc
►
pcie
►
pinctrl
►
power
►
pwm
►
qspi
►
rdc
►
regulator
►
reserved-memory
►
reset
►
sensor
►
spi
►
timer
►
usb
►
usb-c
►
video
dt-util.h
►
fs
►
input
►
internal
►
ipc
►
kernel
►
linker
►
llext
►
logging
►
lorawan
►
math
►
mem_mgmt
►
mgmt
►
misc
►
modbus
►
modem
►
multi_heap
►
net
►
platform
►
pm
►
pmci
►
portability
►
posix
►
psa
►
random
►
retention
►
rtio
►
sd
►
sensing
►
settings
►
shell
►
sip_svc
►
stats
►
storage
►
sys
►
task_wdt
►
timing
►
toolchain
►
tracing
►
usb
►
usb_c
►
video
►
virtio
►
xen
►
zbus
►
zvfs
►
bindesc.h
►
cache.h
►
device.h
►
devicetree.h
►
fatal.h
►
fatal_types.h
►
init.h
►
irq.h
►
irq_multilevel.h
►
irq_nextlevel.h
►
irq_offload.h
►
kernel.h
kernel_includes.h
►
kernel_structs.h
►
kernel_version.h
►
net_buf.h
►
shared_irq.h
►
smf.h
►
spinlock.h
►
sw_isr_table.h
►
sys_clock.h
►
syscall.h
►
toolchain.h
types.h
►
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
stm32-fmc-sdram.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2020 Teslabs Engineering S.L.
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_MEMORY_CONTROLLER_STM32_FMC_SDRAM_H_
8
#define ZEPHYR_INCLUDE_DT_BINDINGS_MEMORY_CONTROLLER_STM32_FMC_SDRAM_H_
9
10
/* Number of column address bits */
11
#define STM32_FMC_SDRAM_NC_8 0x00000000UL
12
#define STM32_FMC_SDRAM_NC_9 0x00000001UL
13
#define STM32_FMC_SDRAM_NC_10 0x00000002UL
14
#define STM32_FMC_SDRAM_NC_11 0x00000003UL
15
16
/* Number of row address bits */
17
#define STM32_FMC_SDRAM_NR_11 0x00000000UL
18
#define STM32_FMC_SDRAM_NR_12 0x00000004UL
19
#define STM32_FMC_SDRAM_NR_13 0x00000008UL
20
21
/* Memory data bus width. */
22
#define STM32_FMC_SDRAM_MWID_8 0x00000000UL
23
#define STM32_FMC_SDRAM_MWID_16 0x00000010UL
24
#define STM32_FMC_SDRAM_MWID_32 0x00000020UL
25
26
/* Number of internal banks */
27
#define STM32_FMC_SDRAM_NB_2 0x00000000UL
28
#define STM32_FMC_SDRAM_NB_4 0x00000040UL
29
30
/* CAS Latency */
31
#define STM32_FMC_SDRAM_CAS_1 0x00000080UL
32
#define STM32_FMC_SDRAM_CAS_2 0x00000100UL
33
#define STM32_FMC_SDRAM_CAS_3 0x00000180UL
34
35
/* SDRAM clock configuration */
36
#define STM32_FMC_SDRAM_SDCLK_DISABLE 0x00000000UL
37
#define STM32_FMC_SDRAM_SDCLK_PERIOD_2 0x00000800UL
38
#define STM32_FMC_SDRAM_SDCLK_PERIOD_3 0x00000C00UL
39
40
/* Burst read */
41
#define STM32_FMC_SDRAM_RBURST_DISABLE 0x00000000UL
42
#define STM32_FMC_SDRAM_RBURST_ENABLE 0x00001000UL
43
44
/* Read pipe */
45
#define STM32_FMC_SDRAM_RPIPE_0 0x00000000UL
46
#define STM32_FMC_SDRAM_RPIPE_1 0x00002000UL
47
#define STM32_FMC_SDRAM_RPIPE_2 0x00004000UL
48
49
#endif
zephyr
dt-bindings
memory-controller
stm32-fmc-sdram.h
Generated on Sat Jun 7 2025 03:26:06 for Zephyr API Documentation by
1.12.0