1/* 2 * Copyright (c) 2017 Linaro Limited 3 * Copyright (c) 2018-2023 Nordic Semiconductor ASA 4 * Copyright (c) 2025 Ezurio LLC 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9/dts-v1/; 10#include "bl654_usb_common.dtsi" 11 12/* Flash partition table without support for the onboard USB bootloader */ 13 14&flash0 { 15 partitions { 16 compatible = "fixed-partitions"; 17 #address-cells = <1>; 18 #size-cells = <1>; 19 20 /* The size of this partition ensures that MCUBoot can be built 21 * with an RTT console, CDC ACM support, and w/o optimizations. 22 */ 23 boot_partition: partition@0 { 24 label = "mcuboot"; 25 reg = <0x00000000 0x00012000>; 26 }; 27 28 slot0_partition: partition@12000 { 29 label = "image-0"; 30 reg = <0x00012000 0x00075000>; 31 }; 32 33 slot1_partition: partition@87000 { 34 label = "image-1"; 35 reg = <0x00087000 0x00075000>; 36 }; 37 38 storage_partition: partition@fc000 { 39 label = "storage"; 40 reg = <0x000fc000 0x00004000>; 41 }; 42 }; 43}; 44