spear_smi.txt 674 B

1234567891011121314151617181920212223242526272829
  1. * SPEAr SMI
  2. Required properties:
  3. - compatible : "st,spear600-smi"
  4. - reg : Address range of the mtd chip
  5. - #address-cells, #size-cells : Must be present if the device has sub-nodes
  6. representing partitions.
  7. - interrupts: Should contain the STMMAC interrupts
  8. - clock-rate : Functional clock rate of SMI in Hz
  9. Optional properties:
  10. - st,smi-fast-mode : Flash supports read in fast mode
  11. Example:
  12. smi: flash@fc000000 {
  13. compatible = "st,spear600-smi";
  14. #address-cells = <1>;
  15. #size-cells = <1>;
  16. reg = <0xfc000000 0x1000>;
  17. interrupt-parent = <&vic1>;
  18. interrupts = <12>;
  19. clock-rate = <50000000>; /* 50MHz */
  20. flash@f8000000 {
  21. st,smi-fast-mode;
  22. ...
  23. };
  24. };