68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright (c) 2021-2023 Laird Connectivity
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <nordic/nrf5340_cpunet_qkaa.dtsi>
|
|
|
|
&gpiote {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&timer0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&timer1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&timer2 {
|
|
status = "okay";
|
|
};
|
|
|
|
&flash1 {
|
|
/*
|
|
* For more information, see:
|
|
* http://docs.zephyrproject.org/latest/guides/dts/index.html#flash-partitions
|
|
*/
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
/* 48K */
|
|
boot_partition: partition@0 {
|
|
label = "mcuboot";
|
|
reg = <0x00000000 0xc000>;
|
|
};
|
|
/* 88K */
|
|
slot0_partition: partition@c000 {
|
|
label = "image-0";
|
|
reg = <0x0000C000 0x16000>;
|
|
};
|
|
/* 88K */
|
|
slot1_partition: partition@22000 {
|
|
label = "image-1";
|
|
reg = <0x00022000 0x16000>;
|
|
};
|
|
/* 32K */
|
|
storage_partition: partition@38000 {
|
|
label = "storage";
|
|
reg = <0x00038000 0x8000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
/* Include default shared RAM configuration file */
|
|
#include <common/nordic/nrf5340_shared_sram_partition.dtsi>
|