0001 // SPDX-License-Identifier: GPL-2.0
0002 / {
0003 soc {
0004 flash: flash@08000000 {
0005 #address-cells = <1>;
0006 #size-cells = <1>;
0007 compatible = "cfi-flash";
0008 reg = <0x08000000 0x01000000>;
0009 bank-width = <2>;
0010 device-width = <2>;
0011 partition@0 {
0012 label = "boot loader area";
0013 reg = <0x00000000 0x00400000>;
0014 };
0015 partition@400000 {
0016 label = "kernel image";
0017 reg = <0x00400000 0x00600000>;
0018 };
0019 partition@a00000 {
0020 label = "data";
0021 reg = <0x00a00000 0x005e0000>;
0022 };
0023 partition@fe0000 {
0024 label = "boot environment";
0025 reg = <0x00fe0000 0x00020000>;
0026 };
0027 };
0028 };
0029 };