e7d46d2187cb744890e4a8e0c55177db3249a64c
[coreboot.git] / src / mainboard / tyan / s4882 / auto.c
1 #define ASSEMBLY 1
2
3 #include <stdint.h>
4 #include <device/pci_def.h>
5 #include <arch/io.h>
6 #include <device/pnp_def.h>
7 #include <arch/romcc_io.h>
8 #include <cpu/x86/lapic.h>
9 #include <arch/cpu.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 #include "northbridge/amd/amdk8/incoherent_ht.c"
16 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
17 #include "northbridge/amd/amdk8/raminit.h"
18 #include "cpu/amd/model_fxx/apic_timer.c"
19 #include "lib/delay.c"
20 #include "cpu/x86/lapic/boot_cpu.c"
21 #include "northbridge/amd/amdk8/reset_test.c"
22 #include "northbridge/amd/amdk8/debug.c"
23 #include "northbridge/amd/amdk8/cpu_rev.c"
24 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
25 #include "cpu/amd/mtrr/amd_earlymtrr.c"
26 #include "cpu/x86/bist.h"
27
28 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
29
30 static void hard_reset(void)
31 {
32         set_bios_reset();
33
34         /* enable cf9 */
35         pci_write_config8(PCI_DEV(0, 0x04, 3), 0x41, 0xf1);
36         /* reset */
37         outb(0x0e, 0x0cf9);
38 }
39
40 static void soft_reset(void)
41 {
42         set_bios_reset();
43         pci_write_config8(PCI_DEV(0, 0x04, 0), 0x47, 1);
44 }
45
46 static void soft2_reset(void)
47 {  
48         set_bios_reset();
49         pci_write_config8(PCI_DEV(3, 0x04, 0), 0x47, 1);
50 }
51
52 static void memreset_setup(void)
53 {
54    if (is_cpu_pre_c0()) {
55         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
56    }
57    else {
58         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
59    }
60         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17); 
61 }
62
63 static void memreset(int controllers, const struct mem_controller *ctrl)
64 {
65    if (is_cpu_pre_c0()) {
66         udelay(800);
67         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
68         udelay(90);
69    }
70 }
71
72 static unsigned int generate_row(uint8_t node, uint8_t row, uint8_t maxnodes)
73 {
74         /* Routing Table Node i 
75          *
76          * F0: 0x40, 0x44, 0x48, 0x4c, 0x50, 0x54, 0x58, 0x5c 
77          *  i:    0,    1,    2,    3,    4,    5,    6,    7
78          *
79          * [ 0: 3] Request Route
80          *     [0] Route to this node
81          *     [1] Route to Link 0
82          *     [2] Route to Link 1
83          *     [3] Route to Link 2
84          * [11: 8] Response Route
85          *     [0] Route to this node
86          *     [1] Route to Link 0
87          *     [2] Route to Link 1
88          *     [3] Route to Link 2
89          * [19:16] Broadcast route
90          *     [0] Route to this node
91          *     [1] Route to Link 0
92          *     [2] Route to Link 1
93          *     [3] Route to Link 2
94          */
95         uint32_t ret=0x00010101; /* default row entry */
96
97 /*
98             (L2)       (L1)     
99         CPU3-------------CPU1
100      (L0)|                |(L0)
101          |                |
102          |                |
103          |                |
104          |                |
105      (L0)|                |(L0)
106         CPU2-------------CPU0---------8131----------8111
107             (L1)       (L2)  (L1)       
108 */
109
110         /* Link0 of CPU0 to Link0 of CPU1 */
111         /* Link2 of CPU0 to Link1 of CPU2 */
112         /* Link1 of CPU1 to Link2 of CPU3 */
113         /* Link0 of CPU2 to Link0 of CPU3 */
114
115         static const unsigned int rows_4p[4][4] = {
116                 { 0x000b0101, 0x00010202, 0x00030808, 0x00010208 },
117                 { 0x00010202, 0x00070101, 0x00010204, 0x00030404 },
118                 { 0x00030404, 0x00010204, 0x00070101, 0x00010202 },
119                 { 0x00010208, 0x00030808, 0x00010202, 0x000b0101 }
120         };
121         
122         if (!(node>=maxnodes || row>=maxnodes)) {
123                 ret=rows_4p[node][row];
124         }
125
126         return ret;
127 }
128
129 static inline void activate_spd_rom(const struct mem_controller *ctrl)
130 {
131 #define SMBUS_HUB 0x18
132         unsigned device=(ctrl->channel0[0])>>8;
133         smbus_write_byte(SMBUS_HUB , 0x01, device);
134         smbus_write_byte(SMBUS_HUB , 0x03, 0);
135 }
136 #if 0
137 static inline void change_i2c_mux(unsigned device)
138 {
139 #define SMBUS_HUB 0x18
140         smbus_write_byte(SMBUS_HUB , 0x01, device);
141         smbus_write_byte(SMBUS_HUB , 0x03, 0);
142 }
143 #endif
144
145 static inline int spd_read_byte(unsigned device, unsigned address)
146 {
147         return smbus_read_byte(device, address);
148 }
149
150 //#include "northbridge/amd/amdk8/setup_resource_map.c"
151 #include "northbridge/amd/amdk8/raminit.c"
152
153 #if 1
154         #define ENABLE_APIC_EXT_ID 1
155         #define APIC_ID_OFFSET 0x10
156 #else
157         #define ENABLE_APIC_EXT_ID 0
158 #endif
159
160 #include "northbridge/amd/amdk8/coherent_ht.c"
161 #include "sdram/generic_sdram.c"
162
163  /* tyan does not want the default */
164 #include "resourcemap.c"
165
166 #define FIRST_CPU  1
167 #define SECOND_CPU 1
168
169 #define THIRD_CPU  1 
170 #define FOURTH_CPU 1 
171
172 #define TOTAL_CPUS (FIRST_CPU + SECOND_CPU + THIRD_CPU + FOURTH_CPU)
173
174 #define RC0 ((1<<1)<<8)
175 #define RC1 ((1<<2)<<8)
176 #define RC2 ((1<<3)<<8)
177 #define RC3 ((1<<4)<<8)
178
179 #define DIMM0 0x50
180 #define DIMM1 0x51
181 #define DIMM2 0x52
182 #define DIMM3 0x53
183         
184 static void main(unsigned long bist)
185 {
186         static const struct mem_controller cpu[] = {
187 #if FIRST_CPU
188                 {
189                         .node_id = 0,
190                         .f0 = PCI_DEV(0, 0x18, 0),
191                         .f1 = PCI_DEV(0, 0x18, 1),
192                         .f2 = PCI_DEV(0, 0x18, 2),
193                         .f3 = PCI_DEV(0, 0x18, 3),
194                         .channel0 = { RC0|DIMM0, RC0|DIMM2, 0, 0 },
195                         .channel1 = { RC0|DIMM1, RC0|DIMM3, 0, 0 },
196                 },
197 #endif
198 #if SECOND_CPU
199                 {
200                         .node_id = 1,
201                         .f0 = PCI_DEV(0, 0x19, 0),
202                         .f1 = PCI_DEV(0, 0x19, 1),
203                         .f2 = PCI_DEV(0, 0x19, 2),
204                         .f3 = PCI_DEV(0, 0x19, 3),
205                         .channel0 = { RC1|DIMM0, RC1|DIMM2 , 0, 0 },
206                         .channel1 = { RC1|DIMM1, RC1|DIMM3 , 0, 0 },
207
208                 },
209 #endif
210
211 #if THIRD_CPU
212                 {
213                         .node_id = 2,
214                         .f0 = PCI_DEV(0, 0x1a, 0),
215                         .f1 = PCI_DEV(0, 0x1a, 1),
216                         .f2 = PCI_DEV(0, 0x1a, 2),
217                         .f3 = PCI_DEV(0, 0x1a, 3),
218                         .channel0 = { RC2|DIMM0, RC2|DIMM2, 0, 0 },
219                         .channel1 = { RC2|DIMM1, RC2|DIMM3, 0, 0 },
220
221                 },
222 #endif
223 #if FOURTH_CPU
224                 {
225                         .node_id = 3,
226                         .f0 = PCI_DEV(0, 0x1b, 0),
227                         .f1 = PCI_DEV(0, 0x1b, 1),
228                         .f2 = PCI_DEV(0, 0x1b, 2),
229                         .f3 = PCI_DEV(0, 0x1b, 3),
230                         .channel0 = { RC3|DIMM0, RC3|DIMM2, 0, 0 },
231                         .channel1 = { RC3|DIMM1, RC3|DIMM3, 0, 0 },
232
233                 },
234 #endif
235         };
236         int i;
237         int needs_reset;
238         unsigned nodeid;
239         if (bist == 0) {
240                 /* Skip this if there was a built in self test failure */
241                 amd_early_mtrr_init();
242                 enable_lapic();
243                 init_timer();
244                 nodeid = lapicid() & 0xf;
245         #if ENABLE_APIC_EXT_ID == 1
246                 enable_apic_ext_id(nodeid);
247                 if(nodeid != 0) {
248                         lapic_write(LAPIC_ID, ( lapic_read(LAPIC_ID) | (APIC_ID_OFFSET<<24) ) ); // CPU apicid is from 0x10
249                 }
250         #endif
251                 if (cpu_init_detected(nodeid)) {
252                         asm volatile ("jmp __cpu_reset");
253                 }
254                 distinguish_cpu_resets(nodeid);
255
256                 if (!boot_cpu()) {
257                         stop_this_cpu();
258                 }       
259         }               
260                         
261         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
262         uart_init();    
263         console_init(); 
264                 
265         /* Halt if there was a built in self test failure */
266         report_bist_failure(bist);
267
268         setup_s4882_resource_map();
269         needs_reset = setup_coherent_ht_domain();
270 #if 0
271         needs_reset |= ht_setup_chain(PCI_DEV(0, 0x18, 0), 0xa0);
272 #else
273         // automatically set that for you, but you might meet tight space
274         needs_reset |= ht_setup_chains_x();
275 #endif
276         if (needs_reset) {
277                 print_info("ht reset -\r\n");
278                 soft_reset();
279         }
280         
281 #if 0
282         dump_pci_devices();
283 #endif
284         enable_smbus();
285 #if 0
286
287 //      activate_spd_rom(&cpu[0]); 
288 //      dump_spd_registers(&cpu[0]);
289
290 //      for(i=0;i<4;i++) {
291 //              activate_spd_rom(&cpu[i]); 
292 //              dump_smbus_registers();
293 //      }
294         for(i=1;i<256;i=i*2) {
295                 change_i2c_mux(i);
296                 dump_smbus_registers();
297         }
298
299 #endif
300         memreset_setup();
301         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
302
303 #if 0
304         dump_pci_devices();
305 #endif
306 #if 0
307         dump_pci_device(PCI_DEV(0, 0x18, 1));
308 #endif
309
310         /* Check all of memory */
311 #if 0
312         msr_t msr;
313         msr = rdmsr(TOP_MEM2);
314         print_debug("TOP_MEM2: ");
315         print_debug_hex32(msr.hi);
316         print_debug_hex32(msr.lo);
317         print_debug("\r\n");
318 #endif
319 /*
320 #if  0
321         ram_check(0x00000000, msr.lo+(msr.hi<<32));
322 #else
323 #if TOTAL_CPUS < 2
324         // Check 16MB of memory @ 0
325         ram_check(0x00000000, 0x01000000);
326 #else
327         // Check 16MB of memory @ 2GB 
328         ram_check(0x80000000, 0x81000000);
329 #endif
330 #endif
331 */
332 }