effac5b021
When we build Zephyr as Secure image on nRF340 Application MCU and nRF9160 SoC we would like to pass the information about the reserved memory area allocated to the Non-Secure images. The information may be needed to apply proper security configuration. We add a "chosen" node in board .dts file for this purpose. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
20 lines
397 B
Plaintext
20 lines
397 B
Plaintext
/*
|
|
* Copyright (c) 2018-2020 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf9160_sica.dtsi>
|
|
#include "nrf9160dk_nrf9160_common.dts"
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,sram = &sram0_s;
|
|
zephyr,flash = &flash0;
|
|
zephyr,code-partition = &slot0_partition;
|
|
zephyr,sram-secure-partition = &sram0_s;
|
|
zephyr,sram-non-secure-partition = &sram0_ns;
|
|
};
|
|
};
|