falcon-sflash-16M.dtsi 640 B

12345678910111213141516171819202122232425262728293031323334353637
  1. &ebu_cs0 {
  2. #address-cells = <1>;
  3. #size-cells = <1>;
  4. compatible = "lantiq,sflash-falcon", "simple-bus";
  5. flash@0 {
  6. #address-cells = <1>;
  7. #size-cells = <1>;
  8. compatible = "spansion,s25fl129p0", "spansion,s25fl129p1";
  9. reg = <0 0>;
  10. linux,mtd-name = "sflash";
  11. spi-max-frequency = <80000000>;
  12. m25p,fast-read;
  13. partition@0 {
  14. reg = <0x0 0x40000>;
  15. label = "uboot";
  16. read-only;
  17. };
  18. partition@40000 {
  19. reg = <0x40000 0x80000>;
  20. label = "uboot_env";
  21. };
  22. partition@C0000 {
  23. reg = <0xC0000 0x740000>;
  24. label = "image0";
  25. };
  26. partition@800000 {
  27. reg = <0x800000 0x800000>;
  28. label = "image1";
  29. };
  30. };
  31. };