summaryrefslogtreecommitdiff
path: root/src/mainboard/google/trogdor/romstage.c
blob: 8b6f1dec8da8c65a36c35cc6a32ff68ba378e929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/stages.h>
#include <soc/usb.h>
#include <soc/qclib_common.h>
#include <soc/watchdog.h>

static void prepare_usb(void)
{
	/*
	 * Do DWC3 core and phy reset. Kick these resets
	 * off early so they get at least 1ms to settle.
	 */
	reset_usb0();
}

void platform_romstage_main(void)
{
	prepare_usb();

	check_wdog();

	/* QCLib: DDR init & train */
	qclib_load_and_run();
}