Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion boards/adi/max32655evkit/max32655evkit_max32655_m4.dts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,sram = &sram2;
zephyr,flash = &flash0;
zephyr,flash = &code_partition;
};

leds {
Expand Down Expand Up @@ -168,3 +168,20 @@
status = "okay";
};
};

&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;

code_partition: partition@10000000 {
label = "image-m4";
reg = <0x10000000 DT_SIZE_K(448)>;
};
storage_partition: partition@70000 {
label = "storage";
reg = <0x70000 DT_SIZE_K(64)>;
};
Comment on lines +178 to +185
Copy link
Contributor

@ozersa ozersa Oct 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the offset is different for code_partition (0x10000000) and storage_partition (0x00)?

};
};
19 changes: 18 additions & 1 deletion boards/adi/max32655fthr/max32655fthr_max32655_m4.dts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,sram = &sram2;
zephyr,flash = &flash0;
zephyr,flash = &code_partition;
};

leds {
Expand Down Expand Up @@ -199,3 +199,20 @@
status = "okay";
};
};

&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;

code_partition: partition@10000000 {
label = "image-m4";
reg = <0x10000000 DT_SIZE_K(448)>;
};
storage_partition: partition@70000 {
label = "storage";
reg = <0x70000 DT_SIZE_K(64)>;
};
};
};

This file was deleted.

23 changes: 0 additions & 23 deletions tests/drivers/flash/common/boards/max32655fthr_max32655_m4.overlay

This file was deleted.