blob: 54949f6faedebf3ba54825bd62fb1a1ab254cf95 [file] [log] [blame]
Shawn Guo6de4d812012-05-06 13:30:44 +08001* Freescale MXS MMC controller
2
3The Freescale MXS Synchronous Serial Ports (SSP) can act as a MMC controller
4to support MMC, SD, and SDIO types of memory cards.
5
Chris Ball4efafee2012-06-11 21:48:16 -04006This file documents differences between the core properties in mmc.txt
7and the properties used by the mxsmmc driver.
8
Shawn Guo6de4d812012-05-06 13:30:44 +08009Required properties:
10- compatible: Should be "fsl,<chip>-mmc". The supported chips include
11 imx23 and imx28.
Shawn Guo6de4d812012-05-06 13:30:44 +080012- interrupts: Should contain ERROR and DMA interrupts
13- fsl,ssp-dma-channel: APBH DMA channel for the SSP
Shawn Guo6de4d812012-05-06 13:30:44 +080014
15Examples:
16
17ssp0: ssp@80010000 {
18 compatible = "fsl,imx28-mmc";
19 reg = <0x80010000 2000>;
20 interrupts = <96 82>;
21 fsl,ssp-dma-channel = <0>;
22 bus-width = <8>;
23};