blob: a7ee4d99b4d3a07f514ced53b38a7baf9caccebe [file] [log] [blame]
Arthur Heymansbab9e2e2021-05-29 07:30:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <arch/cpu.h>
4#include <console/console.h>
5#include <timestamp.h>
6#include <romstage_common.h>
7
8asmlinkage void car_stage_entry(void)
9{
10 timestamp_add_now(TS_ROMSTAGE_START);
11
12 /* Assumes the hardware was set up during the bootblock */
13 console_init();
14
15 romstage_main();
16}