summaryrefslogtreecommitdiff
path: root/src/mainboard/tyan/s2882/failover.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/tyan/s2882/failover.c')
-rw-r--r--src/mainboard/tyan/s2882/failover.c27
1 files changed, 20 insertions, 7 deletions
diff --git a/src/mainboard/tyan/s2882/failover.c b/src/mainboard/tyan/s2882/failover.c
index 45315521ac..9164e7b091 100644
--- a/src/mainboard/tyan/s2882/failover.c
+++ b/src/mainboard/tyan/s2882/failover.c
@@ -11,16 +11,30 @@
#include "cpu/x86/lapic/boot_cpu.c"
#include "northbridge/amd/amdk8/reset_test.c"
+#if CONFIG_LOGICAL_CPUS==1
+#include "cpu/amd/dualcore/dualcore_id.c"
+#endif
+
+
static unsigned long main(unsigned long bist)
-{
+{
+#if CONFIG_LOGICAL_CPUS==1
+ struct node_core_id id;
+#else
unsigned nodeid;
+#endif
/* Make cerain my local apic is useable */
enable_lapic();
-
- nodeid = lapicid() & 0xf;
-
- /* Is this a cpu only reset? */
- if (cpu_init_detected(nodeid)) {
+
+#if CONFIG_LOGICAL_CPUS==1
+ id = get_node_core_id_x();
+ /* Is this a cpu only reset? */
+ if (cpu_init_detected(id.nodeid)) {
+#else
+ nodeid = lapicid();
+ /* Is this a cpu only reset? */
+ if (cpu_init_detected(nodeid)) {
+#endif
if (last_boot_normal()) {
goto normal_image;
} else {
@@ -35,7 +49,6 @@ static unsigned long main(unsigned long bist)
goto fallback_image;
}
}
-
/* Nothing special needs to be done to find bus 0 */
/* Allow the HT devices to be found */