Skip to content

Commit e8d3d06

Browse files
committed
boards: st: stm32n6570_dk: enable xspi psram
Enables XSPI PSRAM on the STM32N6570-DK board. Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
1 parent a5efcd1 commit e8d3d06

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

boards/st/stm32n6570_dk/doc/index.rst

+20
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,26 @@ Default Zephyr Peripheral Mapping:
9595
- USART_1_RX : PE6
9696
- USART_2_TX : PD5
9797
- USART_2_RX : PF6
98+
- XSPI1_NCS1 : PO0
99+
- XSPI1_DQS0 : PO2
100+
- XSPI1_DQS1 : PO3
101+
- XSPI1_CLK : PO4
102+
- XSPI1_IO0 : PP0
103+
- XSPI1_IO1 : PP1
104+
- XSPI1_IO2 : PP2
105+
- XSPI1_IO3 : PP3
106+
- XSPI1_IO4 : PP4
107+
- XSPI1_IO5 : PP5
108+
- XSPI1_IO6 : PP6
109+
- XSPI1_IO7 : PP7
110+
- XSPI1_IO8 : PP8
111+
- XSPI1_IO9 : PP9
112+
- XSPI1_IO10 : PP10
113+
- XSPI1_IO11 : PP11
114+
- XSPI1_IO12 : PP12
115+
- XSPI1_IO13 : PP13
116+
- XSPI1_IO14 : PP14
117+
- XSPI1_IO15 : PP15
98118
- XSPI2_NCS1 : PN1
99119
- XSPI2_DQS0 : PN0
100120
- XSPI2_CLK : PN6

boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi

+31
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
led0 = &green_led_1;
2424
};
2525

26+
psram: memory@90000000 {
27+
compatible = "zephyr,memory-region";
28+
reg = <0x90000000 DT_SIZE_M(32)>;
29+
zephyr,memory-region = "PSRAM";
30+
zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM) )>;
31+
};
32+
2633
leds: leds {
2734
compatible = "gpio-leds";
2835

@@ -159,6 +166,30 @@
159166
status = "okay";
160167
};
161168

169+
&xspi1 {
170+
pinctrl-0 = <&xspim_p1_ncs1_po0 &xspim_p1_dqs0_po2
171+
&xspim_p1_dqs1_po3 &xspim_p1_clk_po4
172+
&xspim_p1_io0_pp0 &xspim_p1_io1_pp1 &xspim_p1_io2_pp2
173+
&xspim_p1_io3_pp3 &xspim_p1_io4_pp4 &xspim_p1_io5_pp5
174+
&xspim_p1_io6_pp6 &xspim_p1_io7_pp7 &xspim_p1_io8_pp8
175+
&xspim_p1_io9_pp9 &xspim_p1_io10_pp10 &xspim_p1_io11_pp11
176+
&xspim_p1_io12_pp12 &xspim_p1_io13_pp13 &xspim_p1_io14_pp14
177+
&xspim_p1_io15_pp15>;
178+
pinctrl-names = "default";
179+
status = "okay";
180+
181+
memc: aps256xxn_obr: memory@90000000 {
182+
compatible = "st,stm32-xspi-psram";
183+
reg = <0x90000000 DT_SIZE_M(32)>; /* 256 Mbits */
184+
fixed-latency;
185+
io-x16-mode;
186+
read-latency = <4>;
187+
write-latency = <1>;
188+
burst-length = <0>;
189+
status = "okay";
190+
};
191+
};
192+
162193
&xspi2 {
163194
pinctrl-0 = <&xspim_p2_ncs1_pn1 &xspim_p2_dqs0_pn0 &xspim_p2_clk_pn6
164195
&xspim_p2_io0_pn2 &xspim_p2_io1_pn3 &xspim_p2_io2_pn4

boards/st/stm32n6570_dk/twister.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ supported:
1313
- dma
1414
- i2c
1515
- gpio
16+
- memc
1617
- spi
1718
- uart
1819
variants:

0 commit comments

Comments
 (0)