1/* 2 * Copyright (c) 2023 Raytac Corporation 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 partitions { 36 compatible = "fixed-partitions"; 37 #address-cells = <1>; 38 #size-cells = <1>; 39 40 boot_partition: partition@0 { 41 label = "mcuboot"; 42 reg = <0x00000000 0xc000>; 43 }; 44 slot0_partition: partition@c000 { 45 label = "image-0"; 46 reg = <0x0000C000 0x17000>; 47 }; 48 slot1_partition: partition@23000 { 49 label = "image-1"; 50 reg = <0x00023000 0x17000>; 51 }; 52 storage_partition: partition@3a000 { 53 label = "storage"; 54 reg = <0x0003a000 0x6000>; 55 }; 56 }; 57}; 58 59/* Include default shared RAM configuration file */ 60#include <common/nordic/nrf5340_shared_sram_partition.dtsi> 61