diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2004-08-23 20:25:17 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2004-08-23 20:25:17 +0000 |
commit | 55a6d461a6b71706cacefb9cbcdc86980b545815 (patch) | |
tree | 45d40d6695489a2055950afb59bf29ba2519369d /src/mainboard/densitron/dpx114/failover.c | |
parent | 03935036abaa25e8d248e4eb6bacc00cf0582525 (diff) | |
download | coreboot-55a6d461a6b71706cacefb9cbcdc86980b545815.tar.xz |
new mobo
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1630 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/densitron/dpx114/failover.c')
-rw-r--r-- | src/mainboard/densitron/dpx114/failover.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mainboard/densitron/dpx114/failover.c b/src/mainboard/densitron/dpx114/failover.c new file mode 100644 index 0000000000..bd0df4e89d --- /dev/null +++ b/src/mainboard/densitron/dpx114/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 +} |