diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-07-31 08:53:38 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2015-07-31 12:58:13 -0400 |
commit | 361a4069727b1f43583314470e877e1187b35505 (patch) | |
tree | 82c1e9e7ffbfdbe232ebe412178c29b9b2fac295 | |
parent | 4e627fba0511546ad92ad983f938a2d6d47c95f2 (diff) |
ARM: dts: sun8i: Enable USB DRC on Ippo Q8H-A33 tablet
Enable the otg/drc usb controller on the Ippo Q8H-A33 tablet, for now it
is enabled in host-only mode, because true OTG support requires support
for detecting and enabling Vbus through the axp221 pmic.
For this to work the Vbus on the port must be enabled by u-boot,
or a powered hub must be used.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r-- | arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts b/arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts index 8bb75ee736a9..a43897515fb6 100644 --- a/arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts +++ b/arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dts | |||
@@ -116,3 +116,18 @@ | |||
116 | pinctrl-0 = <&r_uart_pins_a>; | 116 | pinctrl-0 = <&r_uart_pins_a>; |
117 | status = "okay"; | 117 | status = "okay"; |
118 | }; | 118 | }; |
119 | |||
120 | /* | ||
121 | * FIXME for now we only support host mode and rely on u-boot to have | ||
122 | * turned on Vbus which is controlled by the axp223 pmic on the board. | ||
123 | * | ||
124 | * Once we have axp223 support we should switch to fully supporting otg. | ||
125 | */ | ||
126 | &usb_otg { | ||
127 | dr_mode = "host"; | ||
128 | status = "okay"; | ||
129 | }; | ||
130 | |||
131 | &usbphy { | ||
132 | status = "okay"; | ||
133 | }; | ||