diff options
author | Hans de Goede | 2014-11-07 14:51:12 +0100 |
---|---|---|
committer | Hans de Goede | 2014-11-13 14:49:02 +0100 |
commit | 76946dfe69359496aa0fd144d102068334974916 (patch) | |
tree | 87843406c39abea1f0be964cd1c951f8f42076cb /board | |
parent | 115200ceb0faad679bcc7d7dba4b63ff065606c5 (diff) |
sun6i: ehci: Add sun6i ehci support
Add support for the 2 ehci controllers found on the sun6i (A31) soc.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/sunxi/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index b2beea07e08..c3f865d2983 100644 --- a/board/sunxi/Kconfig +++ b/board/sunxi/Kconfig @@ -200,6 +200,7 @@ config MMC_SUNXI_SLOT_EXTRA config USB1_VBUS_PIN string "Vbus enable pin for usb1 (ehci0)" default "PH6" if MACH_SUN4I || MACH_SUN7I + default "PH27" if MACH_SUN6I ---help--- Set the Vbus enable pin for usb1 (ehci0, usb0 is the otg). This takes a string in the format understood by sunxi_name_to_gpio, e.g. @@ -208,6 +209,7 @@ config USB1_VBUS_PIN config USB2_VBUS_PIN string "Vbus enable pin for usb2 (ehci1)" default "PH3" if MACH_SUN4I || MACH_SUN7I + default "PH24" if MACH_SUN6I ---help--- See USB1_VBUS_PIN help text. |