aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra124/verstage.c
blob: d85fc5c8cf648017b71a608b71a5a5dbffb05208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "verstage.h"
#include <vendorcode/google/chromeos/chromeos.h>

/**
 * Stage entry point
 */
void vboot_main(void)
{
	/* Stub to force arm_init_caches to the top, before any stack/memory
	 * accesses */
	asm volatile ("bl arm_init_caches"
		      ::: "r0","r1","r2","r3","r4","r5","ip");

	select_firmware();
}