blob: 134cbe7c5ac59e1f81da8ca6a53ba9ee72e4c5a9 [file] [log] [blame]
bxshifaea4c52006-11-02 16:02:33 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
bxshifaea4c52006-11-02 16:02:33 +00003 *
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
bxshifaea4c52006-11-02 16:02:33 +000026#define RAMINIT_SYSINFO 1
27#define CACHE_AS_RAM_ADDRESS_DEBUG 0
28
29#define SET_NB_CFG_54 1
30
31//used by raminit
32#define QRANK_DIMM_SUPPORT 1
33
34//used by incoherent_ht
bxshifaea4c52006-11-02 16:02:33 +000035//#define K8_ALLOCATE_IO_RANGE 1
36
bxshifaea4c52006-11-02 16:02:33 +000037//used by init_cpus and fidvid
Myles Watson9b43afd2010-04-08 15:09:53 +000038#define SET_FIDVID 1
bxshifaea4c52006-11-02 16:02:33 +000039//if we want to wait for core1 done before DQS training, set it to 0
Myles Watson9b43afd2010-04-08 15:09:53 +000040#define SET_FIDVID_CORE0_ONLY 1
bxshifaea4c52006-11-02 16:02:33 +000041
bxshifaea4c52006-11-02 16:02:33 +000042#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000043#include <string.h>
bxshifaea4c52006-11-02 16:02:33 +000044#include <device/pci_def.h>
45#include <device/pci_ids.h>
46#include <arch/io.h>
47#include <device/pnp_def.h>
48#include <arch/romcc_io.h>
49#include <cpu/x86/lapic.h>
50#include "option_table.h"
51#include "pc80/mc146818rtc_early.c"
Patrick Georgi12584e22010-05-08 09:14:51 +000052#include <console/console.h>
bxshifaea4c52006-11-02 16:02:33 +000053
bxshifaea4c52006-11-02 16:02:33 +000054#include <cpu/amd/model_fxx_rev.h>
55#include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
56#include "northbridge/amd/amdk8/raminit.h"
57#include "cpu/amd/model_fxx/apic_timer.c"
58#include "lib/delay.c"
Stefan Reinauerc51dc442010-04-07 01:44:04 +000059#include <reset.h>
bxshifaea4c52006-11-02 16:02:33 +000060
bxshifaea4c52006-11-02 16:02:33 +000061#include "cpu/x86/lapic/boot_cpu.c"
62#include "northbridge/amd/amdk8/reset_test.c"
63#include "northbridge/amd/amdk8/debug.c"
64#include "superio/nsc/pc87417/pc87417_early_serial.c"
Stefan Reinauer5d3dee82010-04-14 11:40:34 +000065#include "cpu/x86/mtrr/earlymtrr.c"
bxshifaea4c52006-11-02 16:02:33 +000066#include "cpu/x86/bist.h"
67
68#include "northbridge/amd/amdk8/setup_resource_map.c"
69
70#define SERIAL_DEV PNP_DEV(0x2e, PC87417_SP1)
71#define RTC_DEV PNP_DEV(0x2e, PC87417_RTC)
72#include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
bxshifaea4c52006-11-02 16:02:33 +000073
74static void memreset(int controllers, const struct mem_controller *ctrl)
75{
76}
77
78static inline void activate_spd_rom(const struct mem_controller *ctrl)
79{
80#define SMBUS_SWITCH1 0x70
81#define SMBUS_SWITCH2 0x72
82 unsigned device = (ctrl->channel0[0]) >> 8;
83 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
84 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
85}
86
87#if 0
88static inline void change_i2c_mux(unsigned device)
89{
90#define SMBUS_SWITCH1 0x70
91#define SMBUS_SWITCH2 0x72
92 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
93 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
94}
95#endif
96
bxshifaea4c52006-11-02 16:02:33 +000097static inline int spd_read_byte(unsigned device, unsigned address)
98{
99 return smbus_read_byte(device, address);
100}
101
102#include "northbridge/amd/amdk8/amdk8_f.h"
bxshifaea4c52006-11-02 16:02:33 +0000103#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +0000104#include "northbridge/amd/amdk8/coherent_ht.c"
bxshifaea4c52006-11-02 16:02:33 +0000105#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +0000106#include "lib/generic_sdram.c"
bxshifaea4c52006-11-02 16:02:33 +0000107
108 /* msi does not want the default */
109#include "resourcemap.c"
110
111#include "cpu/amd/dualcore/dualcore.c"
112
113#define RC0 (0x10<<8)
114#define RC1 (0x01<<8)
115
116#define DIMM0 0x50
117#define DIMM1 0x51
118#define DIMM2 0x52
119#define DIMM3 0x53
120#define DIMM4 0x54
121#define DIMM5 0x55
122#define DIMM6 0x56
123#define DIMM7 0x57
124
bxshifaea4c52006-11-02 16:02:33 +0000125#include "cpu/amd/car/post_cache_as_ram.c"
126
127#include "cpu/amd/model_fxx/init_cpus.c"
128
129#include "cpu/amd/model_fxx/fidvid.c"
130
bxshifaea4c52006-11-02 16:02:33 +0000131#include "northbridge/amd/amdk8/early_ht.c"
132
bxshifaea4c52006-11-02 16:02:33 +0000133void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
134{
bxshifaea4c52006-11-02 16:02:33 +0000135 static const uint16_t spd_addr[] = {
136 //first node
137 RC0|DIMM0, RC0|DIMM2, RC0|DIMM4, RC0|DIMM6,
138 RC0|DIMM1, RC0|DIMM3, RC0|DIMM5, RC0|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +0000139 //second node
140 RC1|DIMM0, RC1|DIMM2, RC1|DIMM4, RC1|DIMM6,
141 RC1|DIMM1, RC1|DIMM3, RC1|DIMM5, RC1|DIMM7,
bxshifaea4c52006-11-02 16:02:33 +0000142 };
143
Stefan Reinauerc51dc442010-04-07 01:44:04 +0000144 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE +
145 CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
bxshifaea4c52006-11-02 16:02:33 +0000146
147 int needs_reset;
148 unsigned bsp_apicid = 0;
149
Patrick Georgi2bd91002010-03-18 16:46:50 +0000150 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgi776b85b2010-03-18 16:18:58 +0000151 /* Nothing special needs to be done to find bus 0 */
152 /* Allow the HT devices to be found */
153
154 enumerate_ht_chain();
155
156 bcm5785_enable_rom();
157
158 bcm5785_enable_lpc();
159
160 //enable RTC
161 pc87417_enable_dev(RTC_DEV);
162 }
163
bxshifaea4c52006-11-02 16:02:33 +0000164 if (bist == 0) {
165 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
166 }
167
168// post_code(0x32);
169
Stefan Reinauer08670622009-06-30 15:17:49 +0000170 pc87417_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
bxshifaea4c52006-11-02 16:02:33 +0000171 uart_init();
172 console_init();
173
Stefan Reinauer08670622009-06-30 15:17:49 +0000174// dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x200, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE);
bxshifaea4c52006-11-02 16:02:33 +0000175
176 /* Halt if there was a built in self test failure */
177 report_bist_failure(bist);
178
Myles Watson08e0fb82010-03-22 16:33:25 +0000179 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
bxshifaea4c52006-11-02 16:02:33 +0000180
181 setup_ms9185_resource_map();
182#if 0
183 dump_pci_device(PCI_DEV(0, 0x18, 0));
184 dump_pci_device(PCI_DEV(0, 0x19, 0));
185#endif
186
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000187 print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000188
189 setup_coherent_ht_domain();
190
191 wait_all_core0_started();
192#if CONFIG_LOGICAL_CPUS==1
193 // It is said that we should start core1 after all core0 launched
194 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
195 * So here need to make sure last core0 is started, esp for two way system,
196 * (there may be apic id conflicts in that case)
197 */
198 start_other_cores();
199//bx_a010- wait_all_other_cores_started(bsp_apicid);
200#endif
201
202 /* it will set up chains and store link pair for optimization later */
203 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
204
205 bcm5785_early_setup();
206
bxshifaea4c52006-11-02 16:02:33 +0000207#if 0
208 //it your CPU min fid is 1G, you can change HT to 1G and FID to max one time.
209 needs_reset = optimize_link_coherent_ht();
210 needs_reset |= optimize_link_incoherent_ht(sysinfo);
211#endif
212
Myles Watson9b43afd2010-04-08 15:09:53 +0000213#if SET_FIDVID == 1
bxshifaea4c52006-11-02 16:02:33 +0000214
215 {
216 msr_t msr;
217 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000218 print_debug("begin msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000219
220 }
221
222 enable_fid_change();
223
224 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
225
226 init_fidvid_bsp(bsp_apicid);
227
228 // show final fid and vid
229 {
230 msr_t msr;
231 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000232 print_debug("end msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
bxshifaea4c52006-11-02 16:02:33 +0000233
234 }
235#endif
236
237#if 1
238 needs_reset = optimize_link_coherent_ht();
239 needs_reset |= optimize_link_incoherent_ht(sysinfo);
240
241 // fidvid change will issue one LDTSTOP and the HT change will be effective too
242 if (needs_reset) {
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000243 print_info("ht reset -\n");
bxshifaea4c52006-11-02 16:02:33 +0000244 soft_reset();
245 }
246#endif
247 allow_all_aps_stop(bsp_apicid);
248
249 //It's the time to set ctrl in sysinfo now;
250 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
251
252 enable_smbus();
253
254#if 0
255 int i;
256 for(i=0;i<2;i++) {
257 activate_spd_rom(sysinfo->ctrl+i);
258 dump_smbus_registers();
259 }
260#endif
261
262#if 0
263 int i;
264 for(i=1;i<256;i<<=1) {
265 change_i2c_mux(i);
266 dump_smbus_registers();
267 }
268#endif
269
bxshifaea4c52006-11-02 16:02:33 +0000270 //do we need apci timer, tsc...., only debug need it for better output
271 /* all ap stopped? */
272// init_timer(); // Need to use TMICT to synconize FID/VID
273
274 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
275
276#if 0
277 print_pci_devices();
278#endif
279
280#if 0
281// dump_pci_devices();
282 dump_pci_device_index_wait(PCI_DEV(0, 0x18, 2), 0x98);
283 dump_pci_device_index_wait(PCI_DEV(0, 0x19, 2), 0x98);
284#endif
285
286 post_cache_as_ram();
287
bxshifaea4c52006-11-02 16:02:33 +0000288}
Stefan Reinauer798ef282010-03-29 22:08:01 +0000289