0001 // SPDX-License-Identifier: GPL-2.0
0002 &nand {
0003 nandcs@1 {
0004 compatible = "brcm,nandcs";
0005 reg = <1>;
0006 nand-on-flash-bbt;
0007
0008 nand-ecc-strength = <4>;
0009 nand-ecc-step-size = <512>;
0010 brcm,nand-oob-sector-size = <16>;
0011
0012 partitions {
0013 compatible = "fixed-partitions";
0014 #address-cells = <1>;
0015 #size-cells = <1>;
0016
0017 flash1.rootfs@0 {
0018 reg = <0x0 0x10000000>;
0019 };
0020
0021 flash1.kernel@10000000 {
0022 reg = <0x10000000 0x400000>;
0023 };
0024 };
0025 };
0026 };