]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
arm: am57xx: cl-som-am57x: invoke clock API to enable/disable clocks
authorUri Mashiach <uri.mashiach@compulab.co.il>
Thu, 23 Feb 2017 13:39:38 +0000 (15:39 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 8 May 2017 15:38:38 +0000 (11:38 -0400)
Invoke enable_usb_clocks during board_usb_init and disable_usb_clocks
during board_usb_exit to enable and disable clocks respectively.

Modifications:
* Enable USB clocks in the OMAP version of the function
  board_usb_init.
* Disable USB clocks in the OMAP version of the function
  board_usb_cleanup.

Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il>
Reviewed-by: Marek Vasut <marex@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
board/compulab/cl-som-am57x/cl-som-am57x.c
drivers/usb/host/xhci-omap.c

index fe1468f80b99f68a313bbed09e8848a73627e28e..4701b71102579b1f82de9275fc87cdaeb90650ba 100644 (file)
@@ -53,16 +53,6 @@ int board_mmc_init(bd_t *bis)
 }
 #endif /* CONFIG_GENERIC_MMC */
 
-#ifdef CONFIG_USB_XHCI_OMAP
-int omap_xhci_board_usb_init(int index, enum usb_init_type init)
-{
-       setbits_le32((*prcm)->cm_l3init_usb_otg_ss1_clkctrl,
-                    OTG_SS_CLKCTRL_MODULEMODE_HW | OPTFCLKEN_REFCLK960M);
-
-       return 0;
-}
-#endif /* CONFIG_USB_XHCI_OMAP */
-
 int misc_init_r(void)
 {
        cl_print_pcb_info();
index a1b4f2f05ccb2c4d7b4b96e073cdcd365579938e..d6c5744818404d30073bda0f3062b507c0284f9e 100644 (file)
@@ -29,6 +29,7 @@ static struct omap_xhci omap;
 
 __weak int omap_xhci_board_usb_init(int index, enum usb_init_type init)
 {
+       enable_usb_clocks(index);
        return 0;
 }
 
@@ -39,6 +40,7 @@ int board_usb_init(int index, enum usb_init_type init)
 
 __weak int omap_xhci_board_usb_cleanup(int index, enum usb_init_type init)
 {
+       disable_usb_clocks(index);
        return 0;
 }