From: Jean-Jacques Hiblot Date: Tue, 4 Dec 2018 10:12:57 +0000 (+0100) Subject: board: ks2_evm: Enable the USB clocks if DM_USB is used X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=c9d52206939f7489e719c3c1c429c912d622fc42;p=u-boot.git board: ks2_evm: Enable the USB clocks if DM_USB is used Signed-off-by: Jean-Jacques Hiblot Reviewed-by: Tom Rini --- diff --git a/board/ti/ks2_evm/board.c b/board/ti/ks2_evm/board.c index 3e06800608..eed62e9cac 100644 --- a/board/ti/ks2_evm/board.c +++ b/board/ti/ks2_evm/board.c @@ -66,6 +66,18 @@ struct image_header *spl_get_load_buffer(ssize_t offset, size_t size) int board_init(void) { +#if CONFIG_IS_ENABLED(DM_USB) + int rc = psc_enable_module(KS2_LPSC_USB); + + if (rc) + puts("Cannot enable USB0 module"); +#ifdef KS2_LPSC_USB_1 + rc = psc_enable_module(KS2_LPSC_USB_1); + if (rc) + puts("Cannot enable USB1 module"); +#endif +#endif + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; return 0;