bcm97xxx-nand-cs1-bch4.dtsi 449 B

123456789101112131415161718192021222324252627
  1. // SPDX-License-Identifier: GPL-2.0
  2. &nand {
  3. nandcs@1 {
  4. compatible = "brcm,nandcs";
  5. reg = <1>;
  6. nand-on-flash-bbt;
  7. nand-ecc-strength = <4>;
  8. nand-ecc-step-size = <512>;
  9. brcm,nand-oob-sector-size = <16>;
  10. partitions {
  11. compatible = "fixed-partitions";
  12. #address-cells = <1>;
  13. #size-cells = <1>;
  14. flash1.rootfs@0 {
  15. reg = <0x0 0x10000000>;
  16. };
  17. flash1.kernel@10000000 {
  18. reg = <0x10000000 0x400000>;
  19. };
  20. };
  21. };
  22. };