diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/cezanne/romstage.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/romstage.c b/src/soc/amd/cezanne/romstage.c index c7e7e5cba4..773c6a97d5 100644 --- a/src/soc/amd/cezanne/romstage.c +++ b/src/soc/amd/cezanne/romstage.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <acpi/acpi.h> +#include <amdblocks/memmap.h> #include <arch/cpu.h> #include <console/console.h> #include <console/uart.h> @@ -33,5 +34,7 @@ asmlinkage void car_stage_entry(void) fsp_memory_init(acpi_is_wakeup_s3()); + memmap_stash_early_dram_usage(); + run_ramstage(); } |