summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/quartet/failover.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2003-10-24 14:45:21 +0000
committerStefan Reinauer <stepan@openbios.org>2003-10-24 14:45:21 +0000
commit888df97971271655a2b3cacf96d509dadf15fd85 (patch)
tree6df45cfd0f5ea283b993d2d14f65848eaee2e335 /src/mainboard/amd/quartet/failover.c
parente4436bd7f640170c03798914baa2c47690df5e61 (diff)
merge latest quartet changes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1231 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/quartet/failover.c')
-rw-r--r--src/mainboard/amd/quartet/failover.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/amd/quartet/failover.c b/src/mainboard/amd/quartet/failover.c
index 8eeeaef7e1..bd9c17020e 100644
--- a/src/mainboard/amd/quartet/failover.c
+++ b/src/mainboard/amd/quartet/failover.c
@@ -27,6 +27,10 @@ static void main(void)
asm("jmp __cpu_reset");
}
}
+ /* Is this a deliberate reset by the bios */
+ else if (bios_reset_detected() && last_boot_normal()) {
+ asm("jmp __normal_image");
+ }
/* Is this a secondary cpu? */
else if (!boot_cpu() && last_boot_normal()) {
asm("jmp __normal_image");