File tree 3 files changed +52
-0
lines changed
3 files changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,26 @@ Default Zephyr Peripheral Mapping:
95
95
- USART_1_RX : PE6
96
96
- USART_2_TX : PD5
97
97
- 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
98
118
- XSPI2_NCS1 : PN1
99
119
- XSPI2_DQS0 : PN0
100
120
- XSPI2_CLK : PN6
Original file line number Diff line number Diff line change 23
23
led0 = &green_led_1;
24
24
};
25
25
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
+
26
33
leds: leds {
27
34
compatible = "gpio-leds";
28
35
159
166
status = "okay";
160
167
};
161
168
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
+
162
193
&xspi2 {
163
194
pinctrl-0 = <&xspim_p2_ncs1_pn1 &xspim_p2_dqs0_pn0 &xspim_p2_clk_pn6
164
195
&xspim_p2_io0_pn2 &xspim_p2_io1_pn3 &xspim_p2_io2_pn4
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ supported:
13
13
- dma
14
14
- i2c
15
15
- gpio
16
+ - memc
16
17
- spi
17
18
- uart
18
19
variants :
You can’t perform that action at this time.
0 commit comments