diff options
Diffstat (limited to 'src/cpu/amd/agesa/family15')
-rw-r--r-- | src/cpu/amd/agesa/family15/romstage.c | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/src/cpu/amd/agesa/family15/romstage.c b/src/cpu/amd/agesa/family15/romstage.c index 1c2330839f..7b5c0bcfc6 100644 --- a/src/cpu/amd/agesa/family15/romstage.c +++ b/src/cpu/amd/agesa/family15/romstage.c @@ -16,8 +16,6 @@ #include <lib.h> #include <reset.h> -#include <arch/stages.h> -#include <cpu/amd/agesa/s3_resume.h> #include <console/console.h> #include <cpu/amd/car.h> @@ -73,17 +71,13 @@ void agesa_main(struct sysinfo *cb) post_code(0x40); agesawrapper_amdinitpost(); - post_code(0x41); - agesawrapper_amdinitenv(); - post_code(0x42); - - post_code(0x50); - print_debug("Disabling cache as ram "); - disable_cache_as_ram(); - print_debug("done\n"); + printk(BIOS_INFO, "Normal boot\n"); +} - post_code(0x51); - copy_and_run(); +void agesa_postcar(struct sysinfo *cb) +{ + printk(BIOS_INFO, "Normal boot postcar\n"); - /* Not reached */ + post_code(0x41); + agesawrapper_amdinitenv(); } |