Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-34
[coreboot.git] / src / mainboard / tyan / s2880 / failover.c
1 #define ASSEMBLY 1
2 #include <stdint.h>
3 #include <device/pci_def.h>
4 #include <device/pci_ids.h>
5 #include <arch/io.h>
6 #include <arch/romcc_io.h>
7 #include <cpu/x86/lapic.h>
8 #include "pc80/mc146818rtc_early.c"
9 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
10 #include "northbridge/amd/amdk8/early_ht.c"
11 #include "cpu/x86/lapic/boot_cpu.c"
12 #include "northbridge/amd/amdk8/reset_test.c"
13
14 #if CONFIG_LOGICAL_CPUS==1
15 #include "cpu/amd/dualcore/dualcore_id.c"
16 #endif  
17         
18                 
19 static unsigned long main(unsigned long bist)
20 {       
21 #if CONFIG_LOGICAL_CPUS==1
22         struct node_core_id id;
23 #else   
24         unsigned nodeid;
25 #endif          
26         /* Make cerain my local apic is useable */
27         enable_lapic();
28         
29 #if CONFIG_LOGICAL_CPUS==1
30         id = get_node_core_id_x();
31         /* Is this a cpu only reset? */
32         if (cpu_init_detected(id.nodeid)) {
33 #else
34         nodeid = lapicid();
35         /* Is this a cpu only reset? */
36         if (cpu_init_detected(nodeid)) {
37 #endif
38                 if (last_boot_normal()) {
39                         goto normal_image;
40                 } else {
41                         goto cpu_reset;
42                 }
43         }
44         /* Is this a secondary cpu? */
45         if (!boot_cpu()) {
46                 if (last_boot_normal()) {
47                         goto normal_image;
48                 } else {
49                         goto fallback_image;
50                 }
51         }
52
53         /* Nothing special needs to be done to find bus 0 */
54         /* Allow the HT devices to be found */
55         enumerate_ht_chain();
56         
57         /* Setup the 8111 */
58         amd8111_enable_rom();
59
60         /* Is this a deliberate reset by the bios */
61         if (bios_reset_detected() && last_boot_normal()) {
62                 goto normal_image;
63         }
64         /* This is the primary cpu how should I boot? */
65         else if (do_normal_boot()) {
66                 goto normal_image;
67         }
68         else {
69                 goto fallback_image;
70         }
71  normal_image:
72         asm volatile ("jmp __normal_image" 
73                 : /* outputs */ 
74                 : "a" (bist) /* inputs */
75                 : /* clobbers */
76                 );
77  cpu_reset:
78 #if 0
79         asm volatile ("jmp __cpu_reset"
80                 : /* outputs */ 
81                 : "a"(bist) /* inputs */
82                 : /* clobbers */
83                 );
84 #endif
85  fallback_image:
86         return bist;
87 }