mxs-mmc.txt 659 B

1234567891011121314151617181920212223
  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 and DMA interrupts
  10. - fsl,ssp-dma-channel: APBH DMA channel for the SSP
  11. Examples:
  12. ssp0: ssp@80010000 {
  13. compatible = "fsl,imx28-mmc";
  14. reg = <0x80010000 2000>;
  15. interrupts = <96 82>;
  16. fsl,ssp-dma-channel = <0>;
  17. bus-width = <8>;
  18. };