bcm97xxx-nand-cs1-bch4.dtsi 413 B

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