blob: 1816dafc4aa4e2ce345df6e90b3e7351fb378b9f [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/stages.h>
#include <soc/usb.h>
static void prepare_usb(void)
{
/*
* Do DWC3 core and phy reset. Kick these resets off early
* so they get atleast 1msec to settle.
*/
reset_usb(HSUSB_HS_PORT_1);
}
void platform_romstage_main(void)
{
prepare_usb();
}