File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 66 /.*/nrf54lm20a/cpuapp/ :
77 append :
88 EXTRA_DTC_OVERLAY_FILE : soc/nrf54lm20a_cpuapp.overlay
9+ /.*/nrf54lv10a/cpuapp/ :
10+ append :
11+ EXTRA_DTC_OVERLAY_FILE : soc/nrf54lv10a_cpuapp.overlay
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2025 Nordic Semiconductor
3+ * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
4+ */
5+
6+ / {
7+ soc {
8+ reserved-memory {
9+ #address-cells = <1>;
10+ #size-cells = <1>;
11+ cpuflpr_code_partition: image@ed000 {
12+ /* FLPR core code partition */
13+ reg = <0xed000 DT_SIZE_K(64)>;
14+ };
15+ };
16+
17+ cpuflpr_sram_code_data: memory@2001fc00 {
18+ compatible = "mmio-sram";
19+ reg = <0x2001fc00 DT_SIZE_K(64)>;
20+ #address-cells = <1>;
21+ #size-cells = <1>;
22+ ranges = <0x0 0x2001fc00 DT_SIZE_K(64)>;
23+ };
24+ };
25+ };
26+
27+ &cpuapp_sram {
28+ reg = <0x20000000 DT_SIZE_K(127)>;
29+ ranges = <0x0 0x20000000 DT_SIZE_K(127)>;
30+ };
31+
32+ &uart30 {
33+ status = "reserved";
34+ };
35+
36+ &cpuflpr_vpr {
37+ execution-memory = <&cpuflpr_sram_code_data>;
38+ source-memory = <&cpuflpr_code_partition>;
39+ };
40+
41+ &cpuapp_vevif_tx {
42+ status = "okay";
43+ };
You can’t perform that action at this time.
0 commit comments