fsl-imx-mmc.txt 621 B

123456789101112131415161718192021222324
  1. * Freescale Secure Digital Host Controller for i.MX2/3 series
  2. This file documents differences to the properties defined in mmc.txt.
  3. Required properties:
  4. - compatible : Should be "fsl,<chip>-mmc", chip can be imx21 or imx31
  5. Optional properties:
  6. - dmas: One DMA phandle with arguments as defined by the devicetree bindings
  7. of the used DMA controller.
  8. - dma-names: Has to be "rx-tx".
  9. Example:
  10. sdhci1: sdhci@10014000 {
  11. compatible = "fsl,imx27-mmc", "fsl,imx21-mmc";
  12. reg = <0x10014000 0x1000>;
  13. interrupts = <11>;
  14. dmas = <&dma 7>;
  15. dma-names = "rx-tx";
  16. bus-width = <4>;
  17. cd-gpios = <&gpio3 29>;
  18. status = "okay";
  19. };