summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAndre Przywara <[email protected]>2020-04-27 19:18:03 +0100
committerTom Rini <[email protected]>2020-05-07 09:01:42 -0400
commit56e403d95fc00304e87565712f34e0f2107a33c4 (patch)
treefea2903a59f8f2d1c255dc7c897317ddddec1ccf /arch
parentbe0d09695d2bd689a3804eab82658d77eb495681 (diff)
arm: juno: enable USB
The Juno board features a standard compliant EHCI/OHCI USB host controller pair, which we can just enable. The platform data is taken from the device tree. This allows to use USB mass storage (the only storage on a Juno r0) for loading. At least on my board USB seems a bit flaky, I need two "usb reset" sequences after the "usb start" to detect an USB hard drive. Signed-off-by: Andre Przywara <[email protected]> Acked-by: Liviu Dudau <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 7c589121a05..0d463088a2e 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1169,6 +1169,10 @@ config TARGET_VEXPRESS64_JUNO
select DM_SERIAL
select ARM_PSCI_FW
select PSCI_RESET
+ select DM
+ select BLK
+ select USB
+ select DM_USB
config TARGET_LS2080A_EMU
bool "Support ls2080a_emu"