Skip to content

Commit 859d7c1

Browse files
adamkondraciuknordicjm
authored andcommitted
[nrf fromlist] snippets: nordic: Add nRF54L09 FLPR
Add nrF54L09 FLPR core support. Upstream PR #: 85310 Signed-off-by: Adam Kondraciuk <adam.kondraciuk@nordicsemi.no>
1 parent 3b02030 commit 859d7c1

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

snippets/nordic-flpr/snippet.yml

+3
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ boards:
1212
/.*/nrf54l20/cpuapp/:
1313
append:
1414
EXTRA_DTC_OVERLAY_FILE: soc/nrf54l20_cpuapp.overlay
15+
/.*/nrf54l09/cpuapp/:
16+
append:
17+
EXTRA_DTC_OVERLAY_FILE: soc/nrf54l09_cpuapp.overlay
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
soc {
8+
reserved-memory {
9+
#address-cells = <1>;
10+
#size-cells = <1>;
11+
cpuflpr_code_partition: image@ee000 {
12+
/* FLPR core code partition */
13+
reg = <0xee000 DT_SIZE_K(48)>;
14+
};
15+
};
16+
17+
cpuflpr_sram_code_data: memory@20023c00 {
18+
compatible = "mmio-sram";
19+
reg = <0x20023c00 DT_SIZE_K(48)>;
20+
#address-cells = <1>;
21+
#size-cells = <1>;
22+
ranges = <0x0 0x20023c00 DT_SIZE_K(48)>;
23+
};
24+
};
25+
};
26+
27+
&uart30 {
28+
status = "reserved";
29+
};
30+
31+
&cpuflpr_vpr {
32+
execution-memory = <&cpuflpr_sram_code_data>;
33+
source-memory = <&cpuflpr_code_partition>;
34+
};
35+
36+
&cpuapp_vevif_tx {
37+
status = "okay";
38+
};

0 commit comments

Comments
 (0)