]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
board: ks2_evm: Enable the USB clocks if DM_USB is used
authorJean-Jacques Hiblot <jjhiblot@ti.com>
Tue, 4 Dec 2018 10:12:57 +0000 (11:12 +0100)
committerMarek Vasut <marex@denx.de>
Fri, 14 Dec 2018 16:59:09 +0000 (17:59 +0100)
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
board/ti/ks2_evm/board.c

index 3e06800608ab36a5ef43de72a3085e0219665979..eed62e9cac233a460ebf4a1a8186e2d0a38e5ef6 100644 (file)
@@ -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;