mxs-mmc.txt 797 B

123456789101112131415161718192021222324252627
  1. * Freescale MXS MMC controller
  2. The Freescale MXS Synchronous Serial Ports (SSP) can act as a MMC controller
  3. to support MMC, SD, and SDIO types of memory cards.
  4. This file documents differences between the core properties in mmc.txt
  5. and the properties used by the mxsmmc driver.
  6. Required properties:
  7. - compatible: Should be "fsl,<chip>-mmc". The supported chips include
  8. imx23 and imx28.
  9. - interrupts: Should contain ERROR interrupt number
  10. - dmas: DMA specifier, consisting of a phandle to DMA controller node
  11. and SSP DMA channel ID.
  12. Refer to dma.txt and fsl-mxs-dma.txt for details.
  13. - dma-names: Must be "rx-tx".
  14. Examples:
  15. ssp0: ssp@80010000 {
  16. compatible = "fsl,imx28-mmc";
  17. reg = <0x80010000 2000>;
  18. interrupts = <96>;
  19. dmas = <&dma_apbh 0>;
  20. dma-names = "rx-tx";
  21. bus-width = <8>;
  22. };