xref: /linux/scripts/dtc/include-prefixes/arm/aspeed/openbmc-flash-layout-128-alt.dtsi (revision e65f4718a577fcc84d40431f022985898b6dbf2e)
1*62f0fd75SMarc Olberding// SPDX-License-Identifier: GPL-2.0+
2*62f0fd75SMarc Olberding
3*62f0fd75SMarc Olberdingpartitions {
4*62f0fd75SMarc Olberding	compatible = "fixed-partitions";
5*62f0fd75SMarc Olberding	#address-cells = <1>;
6*62f0fd75SMarc Olberding	#size-cells = <1>;
7*62f0fd75SMarc Olberding
8*62f0fd75SMarc Olberding	u-boot@0 {
9*62f0fd75SMarc Olberding		reg = <0x0 0xe0000>; // 896KB
10*62f0fd75SMarc Olberding		label = "alt-u-boot";
11*62f0fd75SMarc Olberding	};
12*62f0fd75SMarc Olberding
13*62f0fd75SMarc Olberding	u-boot-env@e0000 {
14*62f0fd75SMarc Olberding		reg = <0xe0000 0x20000>; // 128KB
15*62f0fd75SMarc Olberding		label = "alt-u-boot-env";
16*62f0fd75SMarc Olberding	};
17*62f0fd75SMarc Olberding
18*62f0fd75SMarc Olberding	kernel@100000 {
19*62f0fd75SMarc Olberding		reg = <0x100000 0x900000>; // 9MB
20*62f0fd75SMarc Olberding		label = "alt-kernel";
21*62f0fd75SMarc Olberding	};
22*62f0fd75SMarc Olberding
23*62f0fd75SMarc Olberding	rofs@a00000 {
24*62f0fd75SMarc Olberding		reg = <0xa00000 0x5600000>; // 86MB
25*62f0fd75SMarc Olberding		label = "alt-rofs";
26*62f0fd75SMarc Olberding	};
27*62f0fd75SMarc Olberding
28*62f0fd75SMarc Olberding	rwfs@6000000 {
29*62f0fd75SMarc Olberding		reg = <0x6000000 0x2000000>; // 32MB
30*62f0fd75SMarc Olberding		label = "alt-rwfs";
31*62f0fd75SMarc Olberding	};
32*62f0fd75SMarc Olberding};
33