__PRE_RAM__ is now correctly specified in the Makefile. No need to hack it into
[coreboot.git] / src / mainboard / tyan / s2885 / romstage.c
1 #define ASSEMBLY 1
2
3  
4 #include <stdint.h>
5 #include <string.h>
6 #include <device/pci_def.h>
7 #include <arch/io.h>
8 #include <device/pnp_def.h>
9 #include <arch/romcc_io.h>
10 #include <cpu/x86/lapic.h>
11 #include "option_table.h"
12 #include "pc80/mc146818rtc_early.c"
13 #include "pc80/serial.c"
14 #include "arch/i386/lib/console.c"
15 #include "lib/ramtest.c"
16
17 #if 0
18 static void post_code(uint8_t value) {
19 #if 1
20         int i;
21         for(i=0;i<0x80000;i++) {
22                 outb(value, 0x80);
23         }
24 #endif
25 }
26 #endif
27
28 #include <cpu/amd/model_fxx_rev.h>
29
30 #include "northbridge/amd/amdk8/incoherent_ht.c"
31 #include "southbridge/amd/amd8111/amd8111_early_smbus.c"
32 #include "northbridge/amd/amdk8/raminit.h"
33 #include "cpu/amd/model_fxx/apic_timer.c"
34 #include "lib/delay.c"
35
36 #include "cpu/x86/lapic/boot_cpu.c"
37 #include "northbridge/amd/amdk8/reset_test.c"
38 #include "northbridge/amd/amdk8/debug.c"
39 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
40
41 #include "cpu/amd/mtrr/amd_earlymtrr.c"
42 #include "cpu/x86/bist.h"
43
44 #include "northbridge/amd/amdk8/setup_resource_map.c"
45
46 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
47
48 #include "southbridge/amd/amd8111/amd8111_early_ctrl.c"
49
50 static void memreset_setup(void)
51 {
52    if (is_cpu_pre_c0()) {
53         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=0
54    }
55    else {
56         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 16);  //REVC_MEMRST_EN=1
57    }
58         outb((0 << 7)|(0 << 6)|(0<<5)|(0<<4)|(1<<2)|(0<<0), SMBUS_IO_BASE + 0xc0 + 17);
59 }
60
61 static void memreset(int controllers, const struct mem_controller *ctrl)
62 {
63    if (is_cpu_pre_c0()) {
64         udelay(800);
65         outb((0<<7)|(0<<6)|(0<<5)|(0<<4)|(1<<2)|(1<<0), SMBUS_IO_BASE + 0xc0 + 17); //REVB_MEMRST_L=1
66         udelay(90);
67    }
68 }
69
70 static inline void activate_spd_rom(const struct mem_controller *ctrl)
71 {
72         /* nothing to do */
73 }
74
75 static inline int spd_read_byte(unsigned device, unsigned address)
76 {
77         return smbus_read_byte(device, address);
78 }
79
80 #define QRANK_DIMM_SUPPORT 1
81
82 #include "northbridge/amd/amdk8/raminit.c"
83 #include "northbridge/amd/amdk8/coherent_ht.c"
84 #include "lib/generic_sdram.c"
85
86  /* tyan does not want the default */
87 #include "resourcemap.c" 
88
89 #if CONFIG_LOGICAL_CPUS==1
90 #define SET_NB_CFG_54 1
91 #endif
92 #include "cpu/amd/dualcore/dualcore.c"
93
94
95 #include "cpu/amd/car/copy_and_run.c"
96
97 #include "cpu/amd/car/post_cache_as_ram.c"
98
99 #include "cpu/amd/model_fxx/init_cpus.c"
100
101 #include "southbridge/amd/amd8111/amd8111_enable_rom.c"
102 #include "northbridge/amd/amdk8/early_ht.c"
103
104 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
105 {
106         static const uint16_t spd_addr [] = {
107                         (0xa<<3)|0, (0xa<<3)|2, 0, 0,
108                         (0xa<<3)|1, (0xa<<3)|3, 0, 0,
109 #if CONFIG_MAX_PHYSICAL_CPUS > 1
110                         (0xa<<3)|4, (0xa<<3)|6, 0, 0,
111                         (0xa<<3)|5, (0xa<<3)|7, 0, 0,
112 #endif
113         };
114
115         int needs_reset;
116         unsigned bsp_apicid = 0;
117
118         struct mem_controller ctrl[8];
119         unsigned nodes;
120
121         if (!cpu_init_detectedx && boot_cpu()) {
122                 /* Nothing special needs to be done to find bus 0 */
123                 /* Allow the HT devices to be found */
124
125                 enumerate_ht_chain();
126
127                 /* Setup the amd8111 */
128                 amd8111_enable_rom();
129         }
130
131         if (bist == 0) {
132                 bsp_apicid = init_cpus(cpu_init_detectedx);
133         }
134
135 //      post_code(0x32);
136         
137         w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
138         uart_init();
139         console_init();
140
141 //      dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
142         
143         /* Halt if there was a built in self test failure */
144         report_bist_failure(bist);
145
146         setup_s2885_resource_map();
147 #if 0
148         dump_pci_device(PCI_DEV(0, 0x18, 0));
149         dump_pci_device(PCI_DEV(0, 0x19, 0));
150 #endif
151
152         needs_reset = setup_coherent_ht_domain();
153
154         wait_all_core0_started();
155 #if CONFIG_LOGICAL_CPUS==1
156         // It is said that we should start core1 after all core0 launched
157         start_other_cores();
158         wait_all_other_cores_started(bsp_apicid);
159 #endif
160
161         needs_reset |= ht_setup_chains_x();
162
163         if (needs_reset) {
164                 print_info("ht reset -\r\n");
165                 soft_reset();
166         }
167
168
169         allow_all_aps_stop(bsp_apicid);
170
171         nodes = get_nodes();
172         //It's the time to set ctrl now;
173         fill_mem_ctrl(nodes, ctrl, spd_addr);
174
175         enable_smbus();
176
177         memreset_setup();
178         sdram_initialize(nodes, ctrl);
179
180 #if 0
181         dump_pci_devices();
182 #endif
183
184         post_cache_as_ram();
185
186 }