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(64)>;
16		};
17		slot0_partition: partition@10000 {
18			label = "image-0";
19			reg = <0x00010000 DT_SIZE_M(3)>;
20		};
21		large_partition: partition@310000 {
22			label = "large";
23			reg = <0x00310000 DT_SIZE_M(3)>;
24		};
25		scratch_partition: partition@610000 {
26			label = "image-scratch";
27			reg = <0x00610000 DT_SIZE_K(128)>;
28		};
29		small_partition: partition@630000 {
30			label = "small";
31			reg = <0x00630000 DT_SIZE_K(64)>;
32		};
33		medium_partition: partition@640000 {
34			label = "medium";
35			reg = <0x00640000 DT_SIZE_K(960)>;
36		};
37	};
38};
39