-
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
Grant Likely
authored and
Chris Ball
committed
Oct 26, 2011
1 parent
7358cbd
commit b74e5b6
Showing
3 changed files
with
66 additions
and
12 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: 08da834a24312157f512224691ad1fddd11c1073 | ||
refs/heads/master: 275173b225ae663e54d8dc5c93d79265aad19f89 |
25 changes: 25 additions & 0 deletions
25
trunk/Documentation/devicetree/bindings/mmc/nvidia-sdhci.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,25 @@ | ||
* NVIDIA Tegra Secure Digital Host Controller | ||
|
||
This controller on Tegra family SoCs provides an interface for MMC, SD, | ||
and SDIO types of memory cards. | ||
|
||
Required properties: | ||
- compatible : Should be "nvidia,<chip>-sdhci" | ||
- reg : Should contain eSDHC registers location and length | ||
- interrupts : Should contain eSDHC interrupt | ||
|
||
Optional properties: | ||
- cd-gpios : Specify GPIOs for card detection | ||
- wp-gpios : Specify GPIOs for write protection | ||
- power-gpios : Specify GPIOs for power control | ||
|
||
Example: | ||
|
||
sdhci@c8000200 { | ||
compatible = "nvidia,tegra20-sdhci"; | ||
reg = <0xc8000200 0x200>; | ||
interrupts = <47>; | ||
cd-gpios = <&gpio 69 0>; /* gpio PI5 */ | ||
wp-gpios = <&gpio 57 0>; /* gpio PH1 */ | ||
power-gpios = <&gpio 155 0>; /* gpio PT3 */ | ||
}; |
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