zephyr/dts/common/espressif/partitions_0x0_amp_4M.dtsi

55 lines
1.1 KiB
Plaintext

/*
* Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
/* 4MB flash partition table */
&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
boot_partition: partition@0 {
label = "mcuboot";
reg = <0x0 DT_SIZE_K(64)>;
};
slot0_partition: partition@20000 {
label = "image-0";
reg = <0x20000 DT_SIZE_K(1344)>;
};
slot0_appcpu_partition: partition@170000 {
label = "image-0-appcpu";
reg = <0x170000 DT_SIZE_K(512)>;
};
slot1_partition: partition@1F0000 {
label = "image-1";
reg = <0x1F0000 DT_SIZE_K(1344)>;
};
slot1_appcpu_partition: partition@340000 {
label = "image-1-appcpu";
reg = <0x340000 DT_SIZE_K(512)>;
};
storage_partition: partition@3C0000 {
label = "storage";
reg = <0x3C0000 DT_SIZE_K(128)>;
};
scratch_partition: partition@3E0000 {
label = "image-scratch";
reg = <0x3E0000 DT_SIZE_K(64)>;
};
coredump_partition: partition@3F0000 {
label = "coredump-partition";
reg = <0x3F0000 DT_SIZE_K(4)>;
};
};
};