diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-10-12 09:45:48 +0000 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2012-10-29 09:07:04 -0700 |
commit | 699c40e8789cfbb5c3ca4ef2849a4bd051ff79bb (patch) | |
tree | 9d25e97fc49d1a0cae8b7a3098ea6d2ffd0265f2 /board/nvidia/harmony | |
parent | 938176a48274361c0b86b237ff6c0953a08233b3 (diff) | |
download | u-boot-imx-699c40e8789cfbb5c3ca4ef2849a4bd051ff79bb.zip u-boot-imx-699c40e8789cfbb5c3ca4ef2849a4bd051ff79bb.tar.gz u-boot-imx-699c40e8789cfbb5c3ca4ef2849a4bd051ff79bb.tar.bz2 |
ARM: tegra: Harmony: enable ULPI USB port
The ULPI port is routed onto pins on the mini PCI Express connector. A
standard breakout board may be used to access the port.
* Add required DT entries to configure the ULPI port.
* Setup up the ULPI pinmux in the board code.
* Enable multiple USB controller and ULPI support in the board config.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/nvidia/harmony')
-rw-r--r-- | board/nvidia/harmony/harmony.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/nvidia/harmony/harmony.c b/board/nvidia/harmony/harmony.c index 32ed9bb..c7590ac 100644 --- a/board/nvidia/harmony/harmony.c +++ b/board/nvidia/harmony/harmony.c @@ -75,3 +75,12 @@ int board_mmc_init(bd_t *bd) return 0; } #endif + +void pin_mux_usb(void) +{ + funcmux_select(PERIPH_ID_USB2, FUNCMUX_USB2_ULPI); + pinmux_set_func(PINGRP_CDEV2, PMUX_FUNC_PLLP_OUT4); + pinmux_tristate_disable(PINGRP_CDEV2); + /* USB2 PHY reset GPIO */ + pinmux_tristate_disable(PINGRP_UAC); +} |