1/*
2 * Copyright (c) 2021-2023 Laird Connectivity
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <nordic/nrf5340_cpunet_qkaa.dtsi>
8
9&gpiote {
10	status = "okay";
11};
12
13&gpio0 {
14	status = "okay";
15};
16
17&gpio1 {
18	status = "okay";
19};
20
21&timer0 {
22	status = "okay";
23};
24
25&timer1 {
26	status = "okay";
27};
28
29&timer2 {
30	status = "okay";
31};
32
33&flash1 {
34	/*
35	 * For more information, see:
36	 * http://docs.zephyrproject.org/latest/guides/dts/index.html#flash-partitions
37	 */
38	partitions {
39		compatible = "fixed-partitions";
40		#address-cells = <1>;
41		#size-cells = <1>;
42
43		/* 48K */
44		boot_partition: partition@0 {
45			label = "mcuboot";
46			reg = <0x00000000 0xc000>;
47		};
48		/* 88K */
49		slot0_partition: partition@c000 {
50			label = "image-0";
51			reg = <0x0000C000 0x16000>;
52		};
53		/* 88K */
54		slot1_partition: partition@22000 {
55			label = "image-1";
56			reg = <0x00022000 0x16000>;
57		};
58		/* 32K */
59		storage_partition: partition@38000 {
60			label = "storage";
61			reg = <0x00038000 0x8000>;
62		};
63	};
64};
65
66/* Include default shared RAM configuration file */
67#include <common/nordic/nrf5340_shared_sram_partition.dtsi>
68