- Adding nRF5340 Application (CPU APP) common (Secure/Non-Secure) peripheral DTS representation. - Adding nrf5340 Application (CPU APP) default (Secure) .dtsi headers - Adding nrf5340 Application (CPU APP) Non-Secure .dtsi headers - Added nRF53 flash controller binding Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
22 lines
369 B
Text
22 lines
369 B
Text
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <nordic/nrf5340_cpuappns.dtsi>
|
|
|
|
&flash0 {
|
|
reg = <0x00000000 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
&sram0 {
|
|
reg = <0x20000000 DT_SIZE_K(512)>;
|
|
};
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "nordic,nRF5340-CPU0-QKAA", "nordic,nRF5340-CPU0", "nordic,nRF53", "simple-bus";
|
|
};
|
|
};
|