diff options
Diffstat (limited to 'src/cpu/amd/agesa/family12')
-rw-r--r-- | src/cpu/amd/agesa/family12/romstage.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/cpu/amd/agesa/family12/romstage.c b/src/cpu/amd/agesa/family12/romstage.c index 13b9f06359..8f4e81a9d9 100644 --- a/src/cpu/amd/agesa/family12/romstage.c +++ b/src/cpu/amd/agesa/family12/romstage.c @@ -14,8 +14,6 @@ * GNU General Public License for more details. */ -#include <arch/stages.h> - #include <console/console.h> #include <cpu/amd/car.h> @@ -49,8 +47,15 @@ void agesa_main(struct sysinfo *cb) post_code(0x37); agesawrapper_amdinitearly(); + printk(BIOS_INFO, "Normal boot\n"); + post_code(0x38); agesawrapper_amdinitpost(); +} + +void agesa_postcar(struct sysinfo *cb) +{ + printk(BIOS_INFO, "Normal boot postcar\n"); post_code(0x39); printk(BIOS_DEBUG, "sb_before_pci_init "); @@ -59,7 +64,4 @@ void agesa_main(struct sysinfo *cb) post_code(0x40); agesawrapper_amdinitenv(); - - post_code(0x43); - copy_and_run(); } |