aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/imx23-evk.dts
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-06-27 23:44:59 -0400
committerShawn Guo <shawn.guo@linaro.org>2012-07-03 01:25:00 -0400
commit72beabae635b9485510ccf8093df319f59eb6688 (patch)
treee01b23031dbc4058b842fd9b47ced7f79931d2a4 /arch/arm/boot/dts/imx23-evk.dts
parentd54dbb5000fca9863e8a2cb0e6467a424a1eb6e0 (diff)
ARM: dts: imx23-evk: updates for mmc device
The 8-bit mode mmc has pin conflicts with display. Let's use 4-bit mode by default, so that display can be enabled together later. Also add vmmc-supply for mmc device. Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/boot/dts/imx23-evk.dts')
-rw-r--r--arch/arm/boot/dts/imx23-evk.dts17
1 files changed, 15 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx23-evk.dts b/arch/arm/boot/dts/imx23-evk.dts
index 6a0912b286a0..8321fa3f0cf2 100644
--- a/arch/arm/boot/dts/imx23-evk.dts
+++ b/arch/arm/boot/dts/imx23-evk.dts
@@ -25,9 +25,10 @@
25 ssp0: ssp@80010000 { 25 ssp0: ssp@80010000 {
26 compatible = "fsl,imx23-mmc"; 26 compatible = "fsl,imx23-mmc";
27 pinctrl-names = "default"; 27 pinctrl-names = "default";
28 pinctrl-0 = <&mmc0_8bit_pins_a &mmc0_pins_fixup>; 28 pinctrl-0 = <&mmc0_4bit_pins_a &mmc0_pins_fixup>;
29 bus-width = <8>; 29 bus-width = <4>;
30 wp-gpios = <&gpio1 30 0>; 30 wp-gpios = <&gpio1 30 0>;
31 vmmc-supply = <&reg_vddio_sd0>;
31 status = "okay"; 32 status = "okay";
32 }; 33 };
33 34
@@ -57,4 +58,16 @@
57 }; 58 };
58 }; 59 };
59 }; 60 };
61
62 regulators {
63 compatible = "simple-bus";
64
65 reg_vddio_sd0: vddio-sd0 {
66 compatible = "regulator-fixed";
67 regulator-name = "vddio-sd0";
68 regulator-min-microvolt = <3300000>;
69 regulator-max-microvolt = <3300000>;
70 gpio = <&gpio1 29 0>;
71 };
72 };
60}; 73};