S2885 winbond Superio all resource set
[coreboot.git] / src / mainboard / tyan / s2885 / 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 static void soft2_reset(void)
46 {  
47         set_bios_reset();
48         pci_write_config8(PCI_DEV(3, 0x04, 0), 0x47, 1);
49 }
50
51 static void memreset_setup(void)
52 {
53 #if 0
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 #endif
59         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
60 #if 0
61    }
62 #endif
63         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
64 }
65
66 static void memreset(int controllers, const struct mem_controller *ctrl)
67 {
68 #if 0
69    if (is_cpu_pre_c0()) {
70         udelay(800);
71         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
72         udelay(90);
73    }
74 #endif
75 }
76
77 static unsigned int generate_row(uint8_t node, uint8_t row, uint8_t maxnodes)
78 {
79         /* Routing Table Node i 
80          *
81          * F0: 0x40, 0x44, 0x48, 0x4c, 0x50, 0x54, 0x58, 0x5c 
82          *  i:    0,    1,    2,    3,    4,    5,    6,    7
83          *
84          * [ 0: 3] Request 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          * [11: 8] Response 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          * [19:16] Broadcast route
95          *     [0] Route to this node
96          *     [1] Route to Link 0
97          *     [2] Route to Link 1
98          *     [3] Route to Link 2
99          */
100
101         uint32_t ret=0x00010101; /* default row entry */
102 /*
103             (L1)       (L1)  (L2)   
104         CPU1-------------CPU0--------8131------8111
105                           |(L0)
106                           |
107                           |
108                           |
109                           |
110                           |
111                         8151 
112 */
113         /* Link1 of CPU0 to Link1 of CPU1 */
114         static const unsigned int rows_2p[2][2] = {
115                 { 0x00050101, 0x00010404 },
116                 { 0x00010404, 0x00050101 }
117         };
118
119         if(maxnodes>2) {
120 //              print_debug("this mainboard is only designed for 2 cpus\r\n");
121                 maxnodes=2;
122         }
123
124
125         if (!(node>=maxnodes || row>=maxnodes)) {
126                 ret=rows_2p[node][row];
127         }
128
129         return ret;
130 }
131
132 static inline void activate_spd_rom(const struct mem_controller *ctrl)
133 {
134         /* nothing to do */
135 }
136
137 static inline int spd_read_byte(unsigned device, unsigned address)
138 {
139         return smbus_read_byte(device, address);
140 }
141
142 //#include "northbridge/amd/amdk8/setup_resource_map.c"
143 #include "northbridge/amd/amdk8/raminit.c"
144 #include "northbridge/amd/amdk8/coherent_ht.c"
145 #include "sdram/generic_sdram.c"
146
147 #include "resourcemap.c" /* tyan does not want the default */
148
149 #define FIRST_CPU  1
150 #define SECOND_CPU 1
151 #define TOTAL_CPUS (FIRST_CPU + SECOND_CPU)
152 static void main(unsigned long bist)
153 {
154         static const struct mem_controller cpu[] = {
155 #if FIRST_CPU
156                 {
157                         .node_id = 0,
158                         .f0 = PCI_DEV(0, 0x18, 0),
159                         .f1 = PCI_DEV(0, 0x18, 1),
160                         .f2 = PCI_DEV(0, 0x18, 2),
161                         .f3 = PCI_DEV(0, 0x18, 3),
162                         .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
163                         .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
164                 },
165 #endif
166 #if SECOND_CPU
167                 {
168                         .node_id = 1,
169                         .f0 = PCI_DEV(0, 0x19, 0),
170                         .f1 = PCI_DEV(0, 0x19, 1),
171                         .f2 = PCI_DEV(0, 0x19, 2),
172                         .f3 = PCI_DEV(0, 0x19, 3),
173                         .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
174                         .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
175                 },
176 #endif
177         };
178
179 #if 1
180         static const struct ht_chain ht_c[] = {
181                 { /* Link 2 of CPU0 */
182                         .udev = PCI_DEV(0, 0x18, 0),
183                         .upos = 0xc0,
184                         .devreg = 0xe0,  /* Preset bus num in resource map */
185                 }, 
186                 { /* Link 0 of CPU0 */
187                         .udev = PCI_DEV(0, 0x18, 0),
188                         .upos = 0x80,
189                         .devreg = 0xe4,  /* Preset bus num in resource map */
190                 },
191         };
192 #endif
193
194         int needs_reset;
195         if (bist == 0) {
196                 /* Skip this if there was a built in self test failure */
197                 amd_early_mtrr_init();
198                 enable_lapic();
199                 init_timer();
200         
201                 if (cpu_init_detected()) {
202 #if 0
203                         asm volatile ("jmp __cpu_reset");
204 #else           
205                 /* cpu reset also reset the memtroller ????
206                         need soft_reset to reset all except keep HT link freq and width */
207                         distinguish_cpu_resets();
208                         soft2_reset();
209 #endif  
210                 }
211                 distinguish_cpu_resets();
212                 if (!boot_cpu()) {
213                         stop_this_cpu();
214                 }
215         }
216         
217         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
218         uart_init();
219         console_init();
220
221         /* Halt if there was a built in self test failure */
222 //      report_bist_failure(bist);
223         
224         setup_s2885_resource_map();
225         needs_reset = setup_coherent_ht_domain();
226 #if 0
227         needs_reset |= ht_setup_chain(PCI_DEV(0, 0x18, 0), 0xc0);
228 #else
229         needs_reset |= ht_setup_chains(ht_c, sizeof(ht_c)/sizeof(ht_c[0]));
230 #endif
231         if (needs_reset) {
232                 print_info("ht reset -\r\n");
233                 soft_reset();
234         }
235
236         enable_smbus();
237 #if 0
238         dump_spd_registers(&cpu[0]);
239 #endif
240         memreset_setup();
241         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
242
243 #if 0
244         dump_pci_devices();
245 #endif
246 #if 0
247         dump_pci_device(PCI_DEV(0, 0x18, 1));
248 #endif
249         /* Check all of memory */
250 #if 0
251         msr_t msr;
252         msr = rdmsr(TOP_MEM2);
253         print_debug("TOP_MEM2: ");
254         print_debug_hex32(msr.hi);
255         print_debug_hex32(msr.lo);
256         print_debug("\r\n");
257         
258         ram_check(0x00000000, msr.lo+(msr.hi<<32));
259
260 #endif
261
262 #if 0 
263
264 //#if TOTAL_CPUS < 2
265         // Check 16MB of memory @ 0
266         ram_check(0x00000000, 0x00100000);
267 //#else
268         // Check 16MB of memory @ 2GB 
269 //      ram_check(0x80000000, 0x80100000);
270 //#endif
271 #endif
272
273
274 }