1/*
2 * Copyright (c) 2021 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&is25wp064 {
8	partitions {
9		compatible = "fixed-partitions";
10		#address-cells = <1>;
11		#size-cells = <1>;
12
13		boot_partition: partition@0 {
14			label = "mcuboot";
15			reg = <0x00000000 DT_SIZE_K(128)>;
16		};
17		slot0_partition: partition@20000 {
18			label = "image-0";
19			reg = <0x00020000 (DT_SIZE_M(3) + DT_SIZE_K(8))>;
20		};
21		large_partition: partition@322000 {
22			label = "large";
23			reg = <0x00322000 DT_SIZE_M(3)>;
24		};
25		medium_partition: partition@622000 {
26			label = "medium";
27			reg = <0x00622000 DT_SIZE_K(960)>;
28		};
29		small_partition: partition@712000 {
30			label = "small";
31			reg = <0x00712000 DT_SIZE_K(64)>;
32		};
33	};
34};
35