spear_smi.txt 788 B

12345678910111213141516171819202122232425262728293031
  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. - interrupt-parent: Should be the phandle for the interrupt controller
  8. that services interrupts for this device
  9. - interrupts: Should contain the STMMAC interrupts
  10. - clock-rate : Functional clock rate of SMI in Hz
  11. Optional properties:
  12. - st,smi-fast-mode : Flash supports read in fast mode
  13. Example:
  14. smi: flash@fc000000 {
  15. compatible = "st,spear600-smi";
  16. #address-cells = <1>;
  17. #size-cells = <1>;
  18. reg = <0xfc000000 0x1000>;
  19. interrupt-parent = <&vic1>;
  20. interrupts = <12>;
  21. clock-rate = <50000000>; /* 50MHz */
  22. flash@f8000000 {
  23. st,smi-fast-mode;
  24. ...
  25. };
  26. };