summaryrefslogtreecommitdiff
path: root/src/mainboard/olpc/btest/failover.c
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2006-10-18 15:23:28 +0000
committerRonald G. Minnich <rminnich@gmail.com>2006-10-18 15:23:28 +0000
commit31101c9201a536146ac70429e1bd73502ad24527 (patch)
treee834a9860cecc42a107317b546842eb109905789 /src/mainboard/olpc/btest/failover.c
parent0a3f60775baa549d559b9b89c4777efd43e0c81c (diff)
downloadcoreboot-31101c9201a536146ac70429e1bd73502ad24527.tar.xz
add the btest mainboard
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2459 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/olpc/btest/failover.c')
-rw-r--r--src/mainboard/olpc/btest/failover.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/mainboard/olpc/btest/failover.c b/src/mainboard/olpc/btest/failover.c
new file mode 100644
index 0000000000..35317fc7b2
--- /dev/null
+++ b/src/mainboard/olpc/btest/failover.c
@@ -0,0 +1,34 @@
+#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"
+
+static unsigned long main(unsigned long bist)
+{
+#if 0
+ /* This is the primary cpu how should I boot? */
+ if (do_normal_boot()) {
+ goto normal_image;
+ }
+ else {
+ goto fallback_image;
+ }
+ normal_image:
+ asm volatile ("jmp __normal_image"
+ : /* outputs */
+ : "a" (bist) /* inputs */
+ : /* clobbers */
+ );
+ cpu_reset:
+ asm volatile ("jmp __cpu_reset"
+ : /* outputs */
+ : "a"(bist) /* inputs */
+ : /* clobbers */
+ );
+ fallback_image:
+#endif
+ return bist;
+}