diff options
Diffstat (limited to 'src/include/bootblock_common.h')
-rw-r--r-- | src/include/bootblock_common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/bootblock_common.h b/src/include/bootblock_common.h index 0985241590..04fc0cbfd5 100644 --- a/src/include/bootblock_common.h +++ b/src/include/bootblock_common.h @@ -29,6 +29,12 @@ void bootblock_mainboard_early_init(void); void bootblock_mainboard_init(void); void bootblock_soc_early_init(void); void bootblock_soc_init(void); + +/* + * C code entry point for the boot block. + */ +void asmlinkage bootblock_c_entry(uint64_t base_timestamp); + /* * This is a the same as the bootblock main(), with the difference that it does * not collect a timestamp. Instead it accepts the first timestamp as an |