board: ks2_evm: Enable the USB clocks if DM_USB is used
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
1c03ade328
commit
c9d5220693
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user