e825c6ce6b6b13ae500d44895e60e40606edf481
[coreboot.git] / src / mainboard / tyan / s2875 / cache_as_ram_auto.c
1 #define ASSEMBLY 1
2 #define __ROMCC__
3  
4 #include <stdint.h>
5 #include <device/pci_def.h>
6 #include <arch/io.h>
7 #include <device/pnp_def.h>
8 #include <arch/romcc_io.h>
9 #include <cpu/x86/lapic.h>
10 #include "option_table.h"
11 #include "pc80/mc146818rtc_early.c"
12 #include "pc80/serial.c"
13 #include "arch/i386/lib/console.c"
14 #include "ram/ramtest.c"
15
16 #include <cpu/amd/model_fxx_rev.h>
17 #include "northbridge/amd/amdk8/incoherent_ht.c"
18 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
19 #include "northbridge/amd/amdk8/raminit.h"
20 #include "cpu/amd/model_fxx/apic_timer.c"
21 #include "lib/delay.c"
22
23 #if CONFIG_USE_INIT == 0
24 #include "lib/memcpy.c"
25 #endif
26
27 #include "cpu/x86/lapic/boot_cpu.c"
28 #include "northbridge/amd/amdk8/reset_test.c"
29 #include "northbridge/amd/amdk8/debug.c"
30 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
31
32 #include "cpu/amd/mtrr/amd_earlymtrr.c"
33 #include "cpu/x86/bist.h"
34
35 #include "northbridge/amd/amdk8/setup_resource_map.c"
36
37 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
38
39 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
40
41 static void memreset_setup(void)
42 {
43    if (is_cpu_pre_c0()) {
44         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
45    }
46    else {
47         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
48    }
49         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
50 }
51
52 static void memreset(int controllers, const struct mem_controller *ctrl)
53 {
54    if (is_cpu_pre_c0()) {
55         udelay(800);
56         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
57         udelay(90);
58    }
59 }
60
61 static inline void activate_spd_rom(const struct mem_controller *ctrl)
62 {
63         /* nothing to do */
64 }
65
66 static inline int spd_read_byte(unsigned device, unsigned address)
67 {
68         return smbus_read_byte(device, address);
69 }
70
71 #define QRANK_DIMM_SUPPORT 1
72
73 #include "northbridge/amd/amdk8/raminit.c"
74 #include "northbridge/amd/amdk8/coherent_ht.c"
75 #include "sdram/generic_sdram.c"
76 #include "northbridge/amd/amdk8/resourcemap.c"
77
78 #if CONFIG_LOGICAL_CPUS==1
79 #define SET_NB_CFG_54 1
80 #endif
81 #include "cpu/amd/dualcore/dualcore.c"
82
83 #include "cpu/amd/car/copy_and_run.c"
84
85 #include "cpu/amd/car/post_cache_as_ram.c"
86
87 #include "cpu/amd/model_fxx/init_cpus.c"
88
89
90 #if USE_FALLBACK_IMAGE == 1
91
92 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
93 #include "northbridge/amd/amdk8/early_ht.c"
94
95 void failover_process(unsigned long bist, unsigned long cpu_init_detectedx)
96 {
97
98         unsigned last_boot_normal_x = last_boot_normal();
99
100         /* Is this a cpu only reset? or Is this a secondary cpu? */
101         if ((cpu_init_detectedx) || (!boot_cpu())) {
102                 if (last_boot_normal_x) {
103                         goto normal_image;
104                 } else {
105                         goto fallback_image;
106                 }
107         }
108
109         /* Nothing special needs to be done to find bus 0 */
110         /* Allow the HT devices to be found */
111
112         enumerate_ht_chain();
113
114         amd8111_enable_rom();
115
116         /* Is this a deliberate reset by the bios */
117         if (bios_reset_detected() && last_boot_normal_x) {
118                 goto normal_image;
119         }
120         /* This is the primary cpu how should I boot? */
121         else if (do_normal_boot()) {
122                 goto normal_image;
123         }
124         else {
125                 goto fallback_image;
126         }
127  normal_image:
128         __asm__ volatile ("jmp __normal_image"
129                 : /* outputs */
130                 : "a" (bist), "b" (cpu_init_detectedx)/* inputs */
131                 );
132
133  fallback_image:
134         ;
135 }
136 #endif
137
138 void real_main(unsigned long bist, unsigned long cpu_init_detectedx);
139
140 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
141 {
142
143 #if USE_FALLBACK_IMAGE == 1
144         failover_process(bist, cpu_init_detectedx);
145 #endif
146         real_main(bist, cpu_init_detectedx);
147
148 }
149
150 void real_main(unsigned long bist, unsigned long cpu_init_detectedx)
151 {
152         static const struct mem_controller cpu[] = {
153                 {
154                         .node_id = 0,
155                         .f0 = PCI_DEV(0, 0x18, 0),
156                         .f1 = PCI_DEV(0, 0x18, 1),
157                         .f2 = PCI_DEV(0, 0x18, 2),
158                         .f3 = PCI_DEV(0, 0x18, 3),
159                         .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
160                         .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
161                 },
162 #if CONFIG_MAX_PHYSICAL_CPUS > 1
163                 {
164                         .node_id = 1,
165                         .f0 = PCI_DEV(0, 0x19, 0),
166                         .f1 = PCI_DEV(0, 0x19, 1),
167                         .f2 = PCI_DEV(0, 0x19, 2),
168                         .f3 = PCI_DEV(0, 0x19, 3),
169                         .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
170                         .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
171                 },
172 #endif
173         };
174
175         int needs_reset;
176
177         if (bist == 0) {
178                 init_cpus(cpu_init_detectedx);
179         }
180
181         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
182         uart_init();
183         console_init();
184
185         /* Halt if there was a built in self test failure */
186         report_bist_failure(bist);
187
188         setup_default_resource_map();
189
190         needs_reset = setup_coherent_ht_domain();
191         
192 #if CONFIG_LOGICAL_CPUS==1
193         // It is said that we should start core1 after all core0 launched
194         start_other_cores();
195 #endif
196         needs_reset |= ht_setup_chains_x();
197
198         if (needs_reset) {
199                 print_info("ht reset -\r\n");
200                 soft_reset();
201         }
202
203         enable_smbus();
204
205         memreset_setup();
206         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
207
208         post_cache_as_ram();
209
210 }