1/*
2 * Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7 /* 8MB flash partition table */
8&flash0 {
9	partitions {
10		compatible = "fixed-partitions";
11		#address-cells = <1>;
12		#size-cells = <1>;
13
14		boot_partition: partition@0 {
15			label = "mcuboot";
16			reg = <0x0 DT_SIZE_K(64)>;
17		};
18
19		slot0_partition: partition@20000 {
20			label = "image-0";
21			reg = <0x20000 DT_SIZE_K(3904)>;
22		};
23
24		slot1_partition: partition@3F0000 {
25			label = "image-1";
26			reg = <0x3F0000 DT_SIZE_K(3904)>;
27		};
28
29		storage_partition: partition@7C0000 {
30			label = "storage";
31			reg = <0x7C0000 DT_SIZE_K(128)>;
32		};
33
34		scratch_partition: partition@7E0000 {
35			   label = "image-scratch";
36			   reg = <0x7E0000 DT_SIZE_K(64)>;
37		};
38
39		coredump_partition: partition@7F0000 {
40			label = "coredump-partition";
41			reg = <0x7F0000 DT_SIZE_K(4)>;
42		};
43	};
44};
45