diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2018-04-20 18:44:52 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2018-04-20 18:44:52 +0000 |
commit | 29087c4e73c74afd082d107f4cdd648f5c3169ec (patch) | |
tree | 64e25ca30c2072519bf087c4f6d56b46644e62d2 /src/arm/openbmc-flash-layout.dtsi | |
parent | 16ae49e2bea5badc71c2265966ec2a9b0ba541dc (diff) |
Notes
Diffstat (limited to 'src/arm/openbmc-flash-layout.dtsi')
-rw-r--r-- | src/arm/openbmc-flash-layout.dtsi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/arm/openbmc-flash-layout.dtsi b/src/arm/openbmc-flash-layout.dtsi new file mode 100644 index 0000000000000..6c26524e93e11 --- /dev/null +++ b/src/arm/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"; + }; +}; |