Skip to content
Merged
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
7 changes: 7 additions & 0 deletions dts/vendor/raspberrypi/partitions_4M_default.dtsi
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*
* Copyright (c) 2025 Beechwoods Software, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/

#include <raspberrypi/partitions_4M_storage.dtsi>
26 changes: 26 additions & 0 deletions dts/vendor/raspberrypi/partitions_4M_storage.dtsi
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright (c) 2025 Beechwoods Software, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/

&flash0 {
status = "okay";

partitions {
compatible = "fixed-partitions";
#address-cells = <0x1>;
#size-cells = <0x1>;

code_partition: partition@0 {
label = "code";
reg = <0x0 DT_SIZE_M(1)>;
read-only;
};

storage_partition: partition@100000 {
label = "storage";
reg = <0x100000 DT_SIZE_M(3)>;
};
};
};
35 changes: 35 additions & 0 deletions dts/vendor/raspberrypi/partitions_4M_sysbuild.dtsi
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (c) 2025 Beechwoods Software, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/

&flash0 {
status = "okay";

partitions {
compatible = "fixed-partitions";
#address-cells = <0x1>;
#size-cells = <0x1>;

boot_partition: partition@0 {
label = "mcuboot";
reg = <0x0 0x10000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x10000 0xd0000>;
};

slot1_partition: partition@e0000 {
label = "image-1";
reg = <0xe0000 0xd0000>;
};

storage_partition: partition@1b0000 {
label = "storage";
reg = <0x1b0000 0x250000>;
};
};
};