519713ff023cb19b0947a55b6cfc8e8143d7f735
[coreboot.git] / src / mainboard / msi / ms9185 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2006 Tyan
5  * Copyright (C) 2006 AMD
6  * Written by Yinghai Lu <yinghailu@gmail.com> for Tyan and AMD.
7  *
8  * Copyright (C) 2006 MSI
9  * Written by bxshi <bingxunshi@gmail.com> for MSI.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
24  */
25
26 #define SET_NB_CFG_54 1
27
28 //used by raminit
29
30 //used by incoherent_ht
31 //#define K8_ALLOCATE_IO_RANGE 1
32
33 //used by init_cpus and fidvid
34 #define SET_FIDVID 1
35 //if we want to wait for core1 done before DQS training, set it to 0
36 #define SET_FIDVID_CORE0_ONLY 1
37
38 #include <stdint.h>
39 #include <string.h>
40 #include <device/pci_def.h>
41 #include <device/pci_ids.h>
42 #include <arch/io.h>
43 #include <device/pnp_def.h>
44 #include <arch/romcc_io.h>
45 #include <cpu/x86/lapic.h>
46 #include <pc80/mc146818rtc.h>
47 #include <console/console.h>
48
49 #include <cpu/amd/model_fxx_rev.h>
50 #include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
51 #include "southbridge/broadcom/bcm5785/bcm5785_enable_rom.c"
52 #include "northbridge/amd/amdk8/raminit.h"
53 #include "cpu/amd/model_fxx/apic_timer.c"
54 #include "lib/delay.c"
55 #include <reset.h>
56
57 #include "cpu/x86/lapic/boot_cpu.c"
58 #include "northbridge/amd/amdk8/reset_test.c"
59 #include "northbridge/amd/amdk8/debug.c"
60 #include "superio/nsc/pc87417/pc87417_early_serial.c"
61 #include "cpu/x86/mtrr/earlymtrr.c"
62 #include "cpu/x86/bist.h"
63
64 #include "northbridge/amd/amdk8/setup_resource_map.c"
65
66 #define SERIAL_DEV PNP_DEV(0x2e, PC87417_SP1)
67 #define RTC_DEV PNP_DEV(0x2e, PC87417_RTC)
68 #include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
69
70 static void memreset(int controllers, const struct mem_controller *ctrl)
71 {
72 }
73
74 static inline void activate_spd_rom(const struct mem_controller *ctrl)
75 {
76 #define SMBUS_SWITCH1 0x70
77 #define SMBUS_SWITCH2 0x72
78         unsigned device = (ctrl->channel0[0]) >> 8;
79         smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
80         smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
81 }
82
83 #if 0
84 static inline void change_i2c_mux(unsigned device)
85 {
86 #define SMBUS_SWITCH1 0x70
87 #define SMBUS_SWITCH2 0x72
88         smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
89         smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
90 }
91 #endif
92
93 static inline int spd_read_byte(unsigned device, unsigned address)
94 {
95         return smbus_read_byte(device, address);
96 }
97
98 #include "northbridge/amd/amdk8/amdk8_f.h"
99 #include "northbridge/amd/amdk8/incoherent_ht.c"
100 #include "northbridge/amd/amdk8/coherent_ht.c"
101 #include "northbridge/amd/amdk8/raminit_f.c"
102 #include "lib/generic_sdram.c"
103
104  /* msi does not want the default */
105 #include "resourcemap.c"
106
107 #include "cpu/amd/dualcore/dualcore.c"
108
109 #define RC0 (0x10<<8)
110 #define RC1 (0x01<<8)
111
112 #define DIMM0 0x50
113 #define DIMM1 0x51
114 #define DIMM2 0x52
115 #define DIMM3 0x53
116 #define DIMM4 0x54
117 #define DIMM5 0x55
118 #define DIMM6 0x56
119 #define DIMM7 0x57
120
121 #include "cpu/amd/car/post_cache_as_ram.c"
122
123 #include "cpu/amd/model_fxx/init_cpus.c"
124
125 #include "cpu/amd/model_fxx/fidvid.c"
126
127 #include "northbridge/amd/amdk8/early_ht.c"
128
129 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
130 {
131        static const uint16_t spd_addr[] = {
132                        //first node
133                         RC0|DIMM0, RC0|DIMM2, RC0|DIMM4, RC0|DIMM6,
134                         RC0|DIMM1, RC0|DIMM3, RC0|DIMM5, RC0|DIMM7,
135                        //second node
136                        RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
137                        RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
138        };
139
140         struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE +
141                 CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
142
143         int needs_reset;
144         unsigned bsp_apicid = 0;
145
146         if (!cpu_init_detectedx && boot_cpu()) {
147                 /* Nothing special needs to be done to find bus 0 */
148                 /* Allow the HT devices to be found */
149
150                 enumerate_ht_chain();
151
152                 bcm5785_enable_rom();
153
154                 bcm5785_enable_lpc();
155
156                 //enable RTC
157                 pc87417_enable_dev(RTC_DEV);
158         }
159
160         if (bist == 0) {
161                bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
162         }
163
164 //     post_code(0x32);
165
166        pc87417_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
167         uart_init();
168         console_init();
169
170 //     dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
171
172        /* Halt if there was a built in self test failure */
173        report_bist_failure(bist);
174
175         printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
176
177        setup_ms9185_resource_map();
178 #if 0
179         dump_pci_device(PCI_DEV(0, 0x18, 0));
180        dump_pci_device(PCI_DEV(0, 0x19, 0));
181 #endif
182
183        print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
184
185        setup_coherent_ht_domain();
186
187        wait_all_core0_started();
188 #if CONFIG_LOGICAL_CPUS==1
189         // It is said that we should start core1 after all core0 launched
190        /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
191         * So here need to make sure last core0 is started, esp for two way system,
192         * (there may be apic id conflicts in that case)
193         */
194         start_other_cores();
195 //bx_a010-     wait_all_other_cores_started(bsp_apicid);
196 #endif
197
198        /* it will set up chains and store link pair for optimization later */
199         ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
200
201        bcm5785_early_setup();
202
203 #if 0
204        //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
205         needs_reset = optimize_link_coherent_ht();
206         needs_reset |= optimize_link_incoherent_ht(sysinfo);
207 #endif
208
209 #if SET_FIDVID == 1
210
211         {
212                 msr_t msr;
213                 msr=rdmsr(0xc0010042);
214                 print_debug("begin msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
215
216         }
217
218        enable_fid_change();
219
220        enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
221
222         init_fidvid_bsp(bsp_apicid);
223
224         // show final fid and vid
225         {
226                 msr_t msr;
227                 msr=rdmsr(0xc0010042);
228                 print_debug("end   msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
229
230         }
231 #endif
232
233 #if 1
234        needs_reset = optimize_link_coherent_ht();
235        needs_reset |= optimize_link_incoherent_ht(sysinfo);
236
237         // fidvid change will issue one LDTSTOP and the HT change will be effective too
238         if (needs_reset) {
239                 print_info("ht reset -\n");
240                 soft_reset();
241         }
242 #endif
243        allow_all_aps_stop(bsp_apicid);
244
245         //It's the time to set ctrl in sysinfo now;
246        fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
247
248        enable_smbus();
249
250 #if 0
251        int i;
252        for(i=0;i<2;i++) {
253                activate_spd_rom(sysinfo->ctrl+i);
254                dump_smbus_registers();
255        }
256 #endif
257
258 #if 0
259        int i;
260         for(i=1;i<256;i<<=1) {
261                 change_i2c_mux(i);
262                 dump_smbus_registers();
263         }
264 #endif
265
266        //do we need apci timer, tsc...., only debug need it for better output
267         /* all ap stopped? */
268 //        init_timer(); // Need to use TMICT to synconize FID/VID
269
270        sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
271
272 #if 0
273         print_pci_devices();
274 #endif
275
276 #if 0
277 //        dump_pci_devices();
278         dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
279        dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
280 #endif
281
282        post_cache_as_ram();
283
284 }
285