summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/genoa_poc/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/genoa_poc/romstage.c')
-rw-r--r--src/soc/amd/genoa_poc/romstage.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/soc/amd/genoa_poc/romstage.c b/src/soc/amd/genoa_poc/romstage.c
deleted file mode 100644
index 66a2140c07e2..000000000000
--- a/src/soc/amd/genoa_poc/romstage.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <amdblocks/post_codes.h>
-#include <amdblocks/memmap.h>
-#include <cbmem.h>
-#include <program_loading.h>
-#include <romstage_common.h>
-
-void __noreturn romstage_main(void)
-{
- post_code(POSTCODE_ROMSTAGE_MAIN);
-
- cbmem_initialize_empty();
- memmap_stash_early_dram_usage();
- run_ramstage();
-}