moxa,moxart-mmc.txt 740 B

12345678910111213141516171819202122232425262728293031
  1. MOXA ART MMC Host Controller Interface
  2. Inherits from mmc binding[1].
  3. [1] Documentation/devicetree/bindings/mmc/mmc.txt
  4. Required properties:
  5. - compatible : Must be "moxa,moxart-mmc" or "faraday,ftsdc010"
  6. - reg : Should contain registers location and length
  7. - interrupts : Should contain the interrupt number
  8. - clocks : Should contain phandle for the clock feeding the MMC controller
  9. Optional properties:
  10. - dmas : Should contain two DMA channels, line request number must be 5 for
  11. both channels
  12. - dma-names : Must be "tx", "rx"
  13. Example:
  14. mmc: mmc@98e00000 {
  15. compatible = "moxa,moxart-mmc";
  16. reg = <0x98e00000 0x5C>;
  17. interrupts = <5 0>;
  18. clocks = <&clk_apb>;
  19. dmas = <&dma 5>,
  20. <&dma 5>;
  21. dma-names = "tx", "rx";
  22. };