summaryrefslogtreecommitdiff
path: root/src/soc/amd/genoa_poc
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/genoa_poc')
-rw-r--r--src/soc/amd/genoa_poc/Makefile.inc2
-rw-r--r--src/soc/amd/genoa_poc/romstage.c16
2 files changed, 0 insertions, 18 deletions
diff --git a/src/soc/amd/genoa_poc/Makefile.inc b/src/soc/amd/genoa_poc/Makefile.inc
index 7d54254436..01bbe7b8f9 100644
--- a/src/soc/amd/genoa_poc/Makefile.inc
+++ b/src/soc/amd/genoa_poc/Makefile.inc
@@ -11,8 +11,6 @@ all-y += uart.c
bootblock-y += early_fch.c
bootblock-y += aoac.c
-romstage-y += romstage.c
-
ramstage-y += acpi.c
ramstage-y += aoac.c
ramstage-y += chip.c
diff --git a/src/soc/amd/genoa_poc/romstage.c b/src/soc/amd/genoa_poc/romstage.c
deleted file mode 100644
index 66a2140c07..0000000000
--- 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();
-}