41dce71397d75a4a0ddc005d58aab0eb04ebed6e
[coreboot.git] / src / mainboard / tyan / s2881 / auto.c
1 #define ASSEMBLY 1
2 #include <stdint.h>
3 #include <device/pci_def.h> 
4 #include <arch/io.h>
5 #include <device/pnp_def.h>
6 #include <arch/romcc_io.h>
7 #include <arch/smp/lapic.h>
8 #include "option_table.h"
9 #include "pc80/mc146818rtc_early.c"
10 #include "pc80/serial.c"
11 #include "arch/i386/lib/console.c"
12 #include "ram/ramtest.c"
13 #include "northbridge/amd/amdk8/incoherent_ht.c"
14 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
15 #include "northbridge/amd/amdk8/raminit.h"
16 #include "cpu/k8/apic_timer.c"
17 #include "lib/delay.c"
18 #include "cpu/p6/boot_cpu.c"
19 #include "northbridge/amd/amdk8/reset_test.c"
20 #include "northbridge/amd/amdk8/debug.c"
21 #include "northbridge/amd/amdk8/cpu_rev.c"
22 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
23
24 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
25
26 static void hard_reset(void)
27 {
28         set_bios_reset();
29
30         /* enable cf9 */
31         pci_write_config8(PCI_DEV(0, 0x04, 3), 0x41, 0xf1);
32         /* reset */
33         outb(0x0e, 0x0cf9);
34 }
35
36 static void soft_reset(void)
37 {
38         set_bios_reset();
39         pci_write_config8(PCI_DEV(0, 0x04, 0), 0x47, 1);
40 }
41
42 static void memreset_setup(void)
43 {
44    if (is_cpu_pre_c0()) {
45         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
46    }
47    else {
48         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
49    }
50         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17); 
51 }
52
53 static void memreset(int controllers, const struct mem_controller *ctrl)
54 {
55    if (is_cpu_pre_c0()) {
56         udelay(800);
57         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
58         udelay(90);
59    }
60 }
61
62 static unsigned int generate_row(uint8_t node, uint8_t row, uint8_t maxnodes)
63 {
64         /* Routing Table Node i 
65          *
66          * F0: 0x40, 0x44, 0x48, 0x4c, 0x50, 0x54, 0x58, 0x5c 
67          *  i:    0,    1,    2,    3,    4,    5,    6,    7
68          *
69          * [ 0: 3] Request Route
70          *     [0] Route to this node
71          *     [1] Route to Link 0
72          *     [2] Route to Link 1
73          *     [3] Route to Link 2
74          * [11: 8] Response Route
75          *     [0] Route to this node
76          *     [1] Route to Link 0
77          *     [2] Route to Link 1
78          *     [3] Route to Link 2
79          * [19:16] Broadcast 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          */
85
86         uint32_t ret=0x00010101; /* default row entry */
87
88         static const unsigned int rows_2p[2][2] = {
89                 { 0x00030101, 0x00010202 },
90                 { 0x00010202, 0x00030101 }
91         };
92
93         if(maxnodes>2) {
94                 print_debug("this mainboard is only designed for 2 cpus\r\n");
95                 maxnodes=2;
96         }
97
98
99         if (!(node>=maxnodes || row>=maxnodes)) {
100                 ret=rows_2p[node][row];
101         }
102
103         return ret;
104 }
105
106 static inline void activate_spd_rom(const struct mem_controller *ctrl)
107 {
108         /* nothing to do */
109 }
110
111 static inline int spd_read_byte(unsigned device, unsigned address)
112 {
113         return smbus_read_byte(device, address);
114 }
115
116 #include "northbridge/amd/amdk8/raminit.c"
117 #include "northbridge/amd/amdk8/coherent_ht.c"
118 #include "sdram/generic_sdram.c"
119
120 #include "resourcemap.c" /* tyan does not want the default */
121
122 #define FIRST_CPU  1
123 #define SECOND_CPU 1
124 #define TOTAL_CPUS (FIRST_CPU + SECOND_CPU)
125 static void main(void)
126 {
127         static const struct mem_controller cpu[] = {
128 #if FIRST_CPU
129                 {
130                         .node_id = 0,
131                         .f0 = PCI_DEV(0, 0x18, 0),
132                         .f1 = PCI_DEV(0, 0x18, 1),
133                         .f2 = PCI_DEV(0, 0x18, 2),
134                         .f3 = PCI_DEV(0, 0x18, 3),
135                         .channel0 = { (0xa<<3)|0, (0xa<<3)|2, 0, 0 },
136                         .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 },
137                 },
138 #endif
139 #if SECOND_CPU
140                 {
141                         .node_id = 1,
142                         .f0 = PCI_DEV(0, 0x19, 0),
143                         .f1 = PCI_DEV(0, 0x19, 1),
144                         .f2 = PCI_DEV(0, 0x19, 2),
145                         .f3 = PCI_DEV(0, 0x19, 3),
146                         .channel0 = { (0xa<<3)|4, (0xa<<3)|6, 0, 0 },
147                         .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 },
148                 },
149 #endif
150         };
151         int needs_reset;
152         enable_lapic();
153         init_timer();
154         if (cpu_init_detected()) {
155                 asm("jmp __cpu_reset");
156         }
157         distinguish_cpu_resets();
158         if (!boot_cpu()) {
159                 stop_this_cpu();
160         }
161         w83627hf_enable_serial(SERIAL_DEV, TTYS0_BASE);
162         uart_init();
163         console_init();
164         setup_s2881_resource_map();
165         needs_reset = setup_coherent_ht_domain();
166         needs_reset |= ht_setup_chain(PCI_DEV(0, 0x18, 0), 0xc0);
167         if (needs_reset) {
168                 print_info("ht reset -\r\n");
169                 soft_reset();
170         }
171         
172 #if 0
173         print_pci_devices();
174 #endif
175         enable_smbus();
176 #if 0
177         dump_spd_registers(&cpu[0]);
178 #endif
179         memreset_setup();
180         sdram_initialize(sizeof(cpu)/sizeof(cpu[0]), cpu);
181
182 #if 0
183         dump_pci_devices();
184 #endif
185 #if 0
186         dump_pci_device(PCI_DEV(0, 0x18, 1));
187 #endif
188
189         /* Check all of memory */
190 #if 0
191         msr_t msr;
192         msr = rdmsr(TOP_MEM2);
193         print_debug("TOP_MEM2: ");
194         print_debug_hex32(msr.hi);
195         print_debug_hex32(msr.lo);
196         print_debug("\r\n");
197 #endif
198 /*
199 #if  0
200         ram_check(0x00000000, msr.lo+(msr.hi<<32));
201 #else
202 #if TOTAL_CPUS < 2
203         // Check 16MB of memory @ 0
204         ram_check(0x00000000, 0x01000000);
205 #else
206         // Check 16MB of memory @ 2GB 
207         ram_check(0x80000000, 0x81000000);
208 #endif
209 #endif
210 */
211 }