ti_qspi.txt 622 B

12345678910111213141516171819202122
  1. TI QSPI controller.
  2. Required properties:
  3. - compatible : should be "ti,dra7xxx-qspi" or "ti,am4372-qspi".
  4. - reg: Should contain QSPI registers location and length.
  5. - #address-cells, #size-cells : Must be present if the device has sub-nodes
  6. - ti,hwmods: Name of the hwmod associated to the QSPI
  7. Recommended properties:
  8. - spi-max-frequency: Definition as per
  9. Documentation/devicetree/bindings/spi/spi-bus.txt
  10. Example:
  11. qspi: qspi@4b300000 {
  12. compatible = "ti,dra7xxx-qspi";
  13. reg = <0x4b300000 0x100>;
  14. #address-cells = <1>;
  15. #size-cells = <0>;
  16. spi-max-frequency = <25000000>;
  17. ti,hwmods = "qspi";
  18. };