File tree Expand file tree Collapse file tree 6 files changed +109
-0
lines changed Expand file tree Collapse file tree 6 files changed +109
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 Harris Tomy
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ #include <mem.h>
8
+ #include <st/u5/stm32u535.dtsi>
9
+
10
+ / {
11
+ sram0: memory@20000000 {
12
+ /* SRAM1 + SRAM2 */
13
+ reg = <0x20000000 DT_SIZE_K(256)>;
14
+ };
15
+
16
+ sram1: memory@28000000 {
17
+ /* SRAM4, low-power background autonomous mode */
18
+ reg = <0x28000000 DT_SIZE_K(16)>;
19
+ };
20
+
21
+ soc {
22
+ flash-controller@40022000 {
23
+ flash0: flash@8000000 {
24
+ reg = <0x08000000 DT_SIZE_K(128)>;
25
+ };
26
+ };
27
+ };
28
+ };
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 Harris Tomy
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ #include <mem.h>
8
+ #include <st/u5/stm32u535.dtsi>
9
+
10
+ / {
11
+ sram0: memory@20000000 {
12
+ /* SRAM1 + SRAM2 */
13
+ reg = <0x20000000 DT_SIZE_K(256)>;
14
+ };
15
+
16
+ sram1: memory@28000000 {
17
+ /* SRAM4, low-power background autonomous mode */
18
+ reg = <0x28000000 DT_SIZE_K(16)>;
19
+ };
20
+
21
+ soc {
22
+ flash-controller@40022000 {
23
+ flash0: flash@8000000 {
24
+ reg = <0x08000000 DT_SIZE_K(256)>;
25
+ };
26
+ };
27
+ };
28
+ };
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 Harris Tomy
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ #include <mem.h>
7
+ #include <st/u5/stm32u575.dtsi>
8
+
9
+ / {
10
+ sram0: memory@20000000 {
11
+ /* SRAM1 + SRAM2 + SRAM3 */
12
+ reg = <0x20000000 DT_SIZE_K(768)>;
13
+ };
14
+
15
+ sram1: memory@28000000 {
16
+ /* SRAM4, low-power background autonomous mode */
17
+ reg = <0x28000000 DT_SIZE_K(16)>;
18
+ };
19
+
20
+ soc {
21
+ flash-controller@40022000 {
22
+ flash0: flash@8000000 {
23
+ reg = <0x08000000 DT_SIZE_M(1)>;
24
+ };
25
+ };
26
+ };
27
+ };
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 Harris Tomy
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ #include <mem.h>
7
+ #include <st/u5/stm32u599.dtsi>
8
+
9
+ / {
10
+ sram0: memory@20000000 {
11
+ /* SRAM1 + SRAM2 + SRAM3 + SRAM5 */
12
+ reg = <0x20000000 DT_SIZE_K(2496)>;
13
+ };
14
+ sram1: memory@28000000 {
15
+ /* SRAM4 */
16
+ reg = <0x28000000 DT_SIZE_K(16)>;
17
+ };
18
+
19
+ soc {
20
+ flash-controller@40022000 {
21
+ flash0: flash@8000000 {
22
+ reg = <0x08000000 DT_SIZE_M(2)>;
23
+ };
24
+ };
25
+ };
26
+ };
You can’t perform that action at this time.
0 commit comments