-
Notifications
You must be signed in to change notification settings - Fork 645
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf fromlist] snippets: nordic: Add nRF54L09 FLPR
Add nrF54L09 FLPR core support. Upstream PR #: 85310 Signed-off-by: Adam Kondraciuk <[email protected]>
- Loading branch information
1 parent
54479ad
commit f7a5978
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2025 Nordic Semiconductor | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/ { | ||
soc { | ||
reserved-memory { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
cpuflpr_code_partition: image@ee000 { | ||
/* FLPR core code partition */ | ||
reg = <0xee000 DT_SIZE_K(48)>; | ||
}; | ||
}; | ||
|
||
cpuflpr_sram_code_data: memory@20023c00 { | ||
compatible = "mmio-sram"; | ||
reg = <0x20023c00 DT_SIZE_K(48)>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges = <0x0 0x20023c00 DT_SIZE_K(48)>; | ||
}; | ||
}; | ||
}; | ||
|
||
&uart30 { | ||
status = "reserved"; | ||
}; | ||
|
||
&cpuflpr_vpr { | ||
execution-memory = <&cpuflpr_sram_code_data>; | ||
source-memory = <&cpuflpr_code_partition>; | ||
}; | ||
|
||
&cpuapp_vevif_tx { | ||
status = "okay"; | ||
}; |