aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2013-11-16 22:04:50 -0500
committerShawn Guo <shawn.guo@linaro.org>2014-02-09 08:32:46 -0500
commit64b07f0a66bf2ce736b065c5a85cd67fa811d3cb (patch)
tree67dd4533f7af3c50d46bd2c395c8561affe0d9da /arch/arm/boot
parent40b1708f72af8106f9418a8416fa77238ec29eb8 (diff)
ARM: dts: imx53: Add USB support for M53EVK
Add USB support for M53EVK. The configuration is such that USB Host1 port is used as Host and the USB OTG port is used as Peripheral thus far. Once OTG is properly fixed, the OTG will be further adjusted. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/dts/imx53-m53evk.dts22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx53-m53evk.dts b/arch/arm/boot/dts/imx53-m53evk.dts
index d466070e81ba..1a25387777fe 100644
--- a/arch/arm/boot/dts/imx53-m53evk.dts
+++ b/arch/arm/boot/dts/imx53-m53evk.dts
@@ -96,6 +96,15 @@
96 regulator-always-on; 96 regulator-always-on;
97 }; 97 };
98 98
99 reg_usbh1_vbus: regulator@3 {
100 compatible = "regulator-fixed";
101 reg = <3>;
102 regulator-name = "vbus";
103 regulator-min-microvolt = <5000000>;
104 regulator-max-microvolt = <5000000>;
105 gpio = <&gpio1 2 0>;
106 enable-active-low;
107 };
99 }; 108 };
100 109
101 sound { 110 sound {
@@ -222,6 +231,8 @@
222 MX53_PAD_GPIO_0__CCM_SSI_EXT1_CLK 0x80000000 231 MX53_PAD_GPIO_0__CCM_SSI_EXT1_CLK 0x80000000
223 MX53_PAD_EIM_EB3__GPIO2_31 0x80000000 232 MX53_PAD_EIM_EB3__GPIO2_31 0x80000000
224 MX53_PAD_PATA_DA_0__GPIO7_6 0x80000000 233 MX53_PAD_PATA_DA_0__GPIO7_6 0x80000000
234 MX53_PAD_GPIO_2__GPIO1_2 0x80000000
235 MX53_PAD_GPIO_3__USBOH3_USBH1_OC 0x80000000
225 >; 236 >;
226 }; 237 };
227 238
@@ -426,3 +437,14 @@
426 pinctrl-0 = <&pinctrl_uart3>; 437 pinctrl-0 = <&pinctrl_uart3>;
427 status = "okay"; 438 status = "okay";
428}; 439};
440
441&usbh1 {
442 vbus-supply = <&reg_usbh1_vbus>;
443 phy_type = "utmi";
444 status = "okay";
445};
446
447&usbotg {
448 dr_mode = "peripheral";
449 status = "okay";
450};