-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shawn Guo
committed
Jul 27, 2011
1 parent
6ce4d50
commit 9ebd781
Showing
3 changed files
with
104 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a4d2177f00a5252d825236c5124bc1e9918bdb41 | ||
refs/heads/master: abfafc2d10ee2ad217be9ef06181819ca5dd6960 |
34 changes: 34 additions & 0 deletions
34
trunk/Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
* 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. | ||
|
||
Required properties: | ||
- compatible : Should be "fsl,<chip>-esdhc" | ||
- reg : Should contain eSDHC registers location and length | ||
- interrupts : Should contain eSDHC interrupt | ||
|
||
Optional properties: | ||
- fsl,card-wired : Indicate the card is wired to host permanently | ||
- fsl,cd-internal : Indicate to use controller internal card detection | ||
- fsl,wp-internal : Indicate to use controller internal write protection | ||
- cd-gpios : Specify GPIOs for card detection | ||
- wp-gpios : Specify GPIOs for write protection | ||
|
||
Examples: | ||
|
||
esdhc@70004000 { | ||
compatible = "fsl,imx51-esdhc"; | ||
reg = <0x70004000 0x4000>; | ||
interrupts = <1>; | ||
fsl,cd-internal; | ||
fsl,wp-internal; | ||
}; | ||
|
||
esdhc@70008000 { | ||
compatible = "fsl,imx51-esdhc"; | ||
reg = <0x70008000 0x4000>; | ||
interrupts = <2>; | ||
cd-gpios = <&gpio0 6 0>; /* GPIO1_6 */ | ||
wp-gpios = <&gpio0 5 0>; /* GPIO1_5 */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters