Browse Source
This replacement for the `nordic-ppr-ram` snippet does the opposite: enable PPR execution in place from MRAM. Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>pull/70393/head
4 changed files with 45 additions and 0 deletions
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
.. _nordic-ppr-xip: |
||||
|
||||
Nordic boot PPR snippet with execution in place (nordic-ppr-xip) |
||||
################################################################ |
||||
|
||||
Overview |
||||
******** |
||||
|
||||
This snippet allows users to build Zephyr with the capability to boot Nordic PPR |
||||
(Peripheral Processor) from another core. PPR code is to be executed from MRAM, |
||||
so the PPR image must be built for the ``xip`` board variant, or with |
||||
:kconfig:option:`CONFIG_XIP` enabled. |
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
/* |
||||
* Copyright (c) 2024 Nordic Semiconductor |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
&cpuppr_ram3x_region { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&cpuppr_vpr { |
||||
execution-memory = <&cpuppr_code_partition>; |
||||
/delete-property/ source-memory; |
||||
}; |
||||
|
||||
&uart135 { |
||||
status = "reserved"; |
||||
}; |
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
/* |
||||
* Copyright (c) 2024 Nordic Semiconductor |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
&cpuppr_vpr { |
||||
status = "okay"; |
||||
}; |
Loading…
Reference in new issue