snippets: Remove nordic-ppr-ram
The `nordic-ppr` snippet can now be used instead, since RAM execution is default for PPR. Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>
This commit is contained in:
parent
6ff7ec220e
commit
13bebdbf3a
|
@ -1,11 +0,0 @@
|
|||
.. _nordic-ppr-ram:
|
||||
|
||||
Nordic boot PPR snippet with execution from RAM (nordic-ppr-ram)
|
||||
################################################################
|
||||
|
||||
Overview
|
||||
********
|
||||
|
||||
This snippet allows users to build Zephyr with the capability to boot Nordic PPR
|
||||
(Peripheral Processor) from another core. PPR code is executed from RAM. Note
|
||||
that PPR image must be built with :kconfig:option:`CONFIG_XIP` disabled.
|
|
@ -1,16 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2024 Nordic Semiconductor
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
&cpuppr_code_data {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&cpuppr_vpr {
|
||||
execution-memory = <&cpuppr_code_data>;
|
||||
};
|
||||
|
||||
&uart135 {
|
||||
status = "reserved";
|
||||
};
|
|
@ -1,15 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2024 Nordic Semiconductor
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/* code is sourced from cpuppr code partition */
|
||||
&cpuppr_vpr {
|
||||
status = "okay";
|
||||
source-memory = <&cpuppr_code_partition>;
|
||||
};
|
||||
|
||||
/* code partition size must match RAM size */
|
||||
&cpuppr_code_partition {
|
||||
reg = <0x126000 DT_SIZE_K(62)>;
|
||||
};
|
|
@ -1,8 +0,0 @@
|
|||
name: nordic-ppr-ram
|
||||
append:
|
||||
EXTRA_DTC_OVERLAY_FILE: nordic-ppr-ram.overlay
|
||||
|
||||
boards:
|
||||
nrf54h20dk/nrf54h20/cpuapp:
|
||||
append:
|
||||
EXTRA_DTC_OVERLAY_FILE: boards/nrf54h20dk_nrf54h20_cpuapp.overlay
|
Loading…
Reference in a new issue