blob: 7e51154679a6f17d47ce198b77dd2eeade185dc6 [file] [log] [blame]
Grant Likely275173b2011-08-23 12:15:33 -06001* NVIDIA Tegra Secure Digital Host Controller
2
3This controller on Tegra family SoCs provides an interface for MMC, SD,
4and SDIO types of memory cards.
5
6Required properties:
7- compatible : Should be "nvidia,<chip>-sdhci"
Stephen Warren55cd65e2011-08-30 13:17:16 -06008- reg : Should contain SD/MMC registers location and length
9- interrupts : Should contain SD/MMC interrupt
Grant Likely275173b2011-08-23 12:15:33 -060010
11Optional properties:
12- cd-gpios : Specify GPIOs for card detection
13- wp-gpios : Specify GPIOs for write protection
14- power-gpios : Specify GPIOs for power control
Stephen Warren55cd65e2011-08-30 13:17:16 -060015- support-8bit : Boolean, indicates if 8-bit mode should be used.
Grant Likely275173b2011-08-23 12:15:33 -060016
17Example:
18
19sdhci@c8000200 {
20 compatible = "nvidia,tegra20-sdhci";
21 reg = <0xc8000200 0x200>;
22 interrupts = <47>;
23 cd-gpios = <&gpio 69 0>; /* gpio PI5 */
24 wp-gpios = <&gpio 57 0>; /* gpio PH1 */
25 power-gpios = <&gpio 155 0>; /* gpio PT3 */
Stephen Warren55cd65e2011-08-30 13:17:16 -060026 support-8bit;
Grant Likely275173b2011-08-23 12:15:33 -060027};