diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-06-28 11:57:31 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-06-28 11:57:31 +0000 |
commit | 4a3bb76aa85ba720b607152d853bd7e1964a9f6c (patch) | |
tree | 0daabca0f3c90d2557bfe9c6d7e01102a6270b8f /src/mainboard/emulation/qemu-i386/failover.c | |
parent | bbf16821c000ad347bfd2681bdda383028cc011e (diff) |
commit initial qemu support (see http://fabrice.bellard.free.fr/qemu/)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1610 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/emulation/qemu-i386/failover.c')
-rw-r--r-- | src/mainboard/emulation/qemu-i386/failover.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mainboard/emulation/qemu-i386/failover.c b/src/mainboard/emulation/qemu-i386/failover.c new file mode 100644 index 0000000000..bd0df4e89d --- /dev/null +++ b/src/mainboard/emulation/qemu-i386/failover.c @@ -0,0 +1,29 @@ +#define ASSEMBLY 1 +#include <stdint.h> +#include <device/pci_def.h> +#include <device/pci_ids.h> +#include <arch/io.h> +#include "arch/romcc_io.h" +#include "pc80/mc146818rtc_early.c" +#include "cpu/p6/boot_cpu.c" + +static void main(void) +{ + /* for now, just always assume failure */ + +#if 0 + /* Is this a cpu reset? */ + if (cpu_init_detected()) { + if (last_boot_normal()) { + asm("jmp __normal_image"); + } else { + asm("jmp __cpu_reset"); + } + } + + /* This is the primary cpu how should I boot? */ + else if (do_normal_boot()) { + asm("jmp __normal_image"); + } +#endif +} |