2011-06-30 14:44:44 +07:00
|
|
|
* Freescale Enhanced Secure Digital Host Controller (eSDHC) for i.MX
|
|
|
|
|
|
|
|
The Enhanced Secure Digital Host Controller on Freescale i.MX family
|
|
|
|
provides an interface for MMC, SD, and SDIO types of memory cards.
|
|
|
|
|
2012-06-12 08:48:16 +07:00
|
|
|
This file documents differences between the core properties described
|
|
|
|
by mmc.txt and the properties used by the sdhci-esdhc-imx driver.
|
|
|
|
|
2011-06-30 14:44:44 +07:00
|
|
|
Required properties:
|
|
|
|
- compatible : Should be "fsl,<chip>-esdhc"
|
|
|
|
|
|
|
|
Optional properties:
|
2012-08-22 20:46:39 +07:00
|
|
|
- fsl,cd-controller : Indicate to use controller internal card detection
|
|
|
|
- fsl,wp-controller : Indicate to use controller internal write protection
|
2011-06-30 14:44:44 +07:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
esdhc@70004000 {
|
|
|
|
compatible = "fsl,imx51-esdhc";
|
|
|
|
reg = <0x70004000 0x4000>;
|
|
|
|
interrupts = <1>;
|
2012-08-22 20:46:39 +07:00
|
|
|
fsl,cd-controller;
|
|
|
|
fsl,wp-controller;
|
2011-06-30 14:44:44 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
esdhc@70008000 {
|
|
|
|
compatible = "fsl,imx51-esdhc";
|
|
|
|
reg = <0x70008000 0x4000>;
|
|
|
|
interrupts = <2>;
|
2012-06-11 00:24:07 +07:00
|
|
|
cd-gpios = <&gpio1 6 0>; /* GPIO1_6 */
|
|
|
|
wp-gpios = <&gpio1 5 0>; /* GPIO1_5 */
|
2011-06-30 14:44:44 +07:00
|
|
|
};
|