diff options
author | Joel Stanley <joel@jms.id.au> | 2017-12-11 11:42:14 +1030 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2017-12-21 14:03:19 +1030 |
commit | 529022738c8e56d733cd16aa14517c55b41e174b (patch) | |
tree | 9450865af536bd4cfa85b2a21552ab400eaadc1c /arch/arm/boot/dts/openbmc-flash-layout.dtsi | |
parent | eb323ad0ef1ed45e237dca3eb9585df2a327e766 (diff) | |
download | lwn-529022738c8e56d733cd16aa14517c55b41e174b.tar.gz lwn-529022738c8e56d733cd16aa14517c55b41e174b.zip |
ARM: dts: Add OpenBMC flash layout
This is a layout used by OpenBMC systems. It describes the fixed flash
layout of a 32MB mtd device.
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch/arm/boot/dts/openbmc-flash-layout.dtsi')
-rw-r--r-- | arch/arm/boot/dts/openbmc-flash-layout.dtsi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/openbmc-flash-layout.dtsi b/arch/arm/boot/dts/openbmc-flash-layout.dtsi new file mode 100644 index 000000000000..6c26524e93e1 --- /dev/null +++ b/arch/arm/boot/dts/openbmc-flash-layout.dtsi @@ -0,0 +1,32 @@ +// SPDX-License-Identifier: GPL-2.0+ + +partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + u-boot@0 { + reg = <0x0 0x60000>; + label = "u-boot"; + }; + + u-boot-env@60000 { + reg = <0x60000 0x20000>; + label = "u-boot-env"; + }; + + kernel@80000 { + reg = <0x80000 0x440000>; + label = "kernel"; + }; + + rofs@c0000 { + reg = <0x4c0000 0x1740000>; + label = "rofs"; + }; + + rwfs@1c00000 { + reg = <0x1c00000 0x400000>; + label = "rwfs"; + }; +}; |