diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2015-08-19 16:16:27 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-08-28 12:33:22 -0400 |
commit | 6f1af1e358b7a3fbae91af5ba3c8b0999bc1189f (patch) | |
tree | 2b294180574d06fc40972b7c14adb5e69d37c44f /board/ti/beagle_x15 | |
parent | 09cc14f4bcbf9df264cc3d23ee19a7233357945f (diff) | |
download | u-boot-imx-6f1af1e358b7a3fbae91af5ba3c8b0999bc1189f.zip u-boot-imx-6f1af1e358b7a3fbae91af5ba3c8b0999bc1189f.tar.gz u-boot-imx-6f1af1e358b7a3fbae91af5ba3c8b0999bc1189f.tar.bz2 |
board: ti: invoke clock API to enable and disable clocks
invoke enable_usb_clocks during board_usb_init and disable_usb_clocks
during board_usb_exit to enable and disable clocks respectively.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti/beagle_x15')
-rw-r--r-- | board/ti/beagle_x15/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/ti/beagle_x15/board.c b/board/ti/beagle_x15/board.c index bcf8cf2..042f9ab 100644 --- a/board/ti/beagle_x15/board.c +++ b/board/ti/beagle_x15/board.c @@ -356,10 +356,12 @@ static struct ti_usb_phy_device usb_phy2_device = { int board_usb_init(int index, enum usb_init_type init) { + enable_usb_clocks(index); switch (index) { case 0: if (init == USB_INIT_DEVICE) { printf("port %d can't be used as device\n", index); + disable_usb_clocks(index); return -EINVAL; } else { usb_otg_ss1.dr_mode = USB_DR_MODE_HOST; @@ -379,6 +381,7 @@ int board_usb_init(int index, enum usb_init_type init) usb_otg_ss2_glue.vbus_id_status = OMAP_DWC3_VBUS_VALID; } else { printf("port %d can't be used as host\n", index); + disable_usb_clocks(index); return -EINVAL; } @@ -405,6 +408,7 @@ int board_usb_cleanup(int index, enum usb_init_type init) default: printf("Invalid Controller Index\n"); } + disable_usb_clocks(index); return 0; } |