blob: fb0d5eb5d5a3ea74ea97a16d4ecafce5accfa7b2 [file] [log] [blame]
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +00001/*
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) 2007 University of Mannheim
9 * Written by Philipp Degler <pdegler@rumms.uni-mannheim.de> for University of Mannheim
10 * Copyright (C) 2009 University of Heidelberg
11 * Written by Mondrian Nuessle <nuessle@uni-heidelberg.de> for University of Heidelberg
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000028#define RAMINIT_SYSINFO 1
29
30#define K8_ALLOCATE_IO_RANGE 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000031
32#define QRANK_DIMM_SUPPORT 1
33
34#if CONFIG_LOGICAL_CPUS==1
35#define SET_NB_CFG_54 1
36#endif
37
38//used by init_cpus and fidvid
Myles Watson9b43afd2010-04-08 15:09:53 +000039#define SET_FIDVID 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000040//if we want to wait for core1 done before DQS training, set it to 0
Myles Watson9b43afd2010-04-08 15:09:53 +000041#define SET_FIDVID_CORE0_ONLY 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000042
Stefan Reinauer08670622009-06-30 15:17:49 +000043#if CONFIG_K8_REV_F_SUPPORT == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000044#define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
45#endif
46
47#define DBGP_DEFAULT 7
48
49#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000050#include <string.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000051#include <device/pci_def.h>
52#include <device/pci_ids.h>
53#include <arch/io.h>
54#include <device/pnp_def.h>
55#include <arch/romcc_io.h>
56#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000057#include <pc80/mc146818rtc.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000058
Patrick Georgi12584e22010-05-08 09:14:51 +000059#include <console/console.h>
Stefan Reinauerc13093b2009-09-23 18:51:03 +000060#include "lib/ramtest.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000061
62#include <cpu/amd/model_fxx_rev.h>
63
64#include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
65#include "northbridge/amd/amdk8/raminit.h"
66#include "cpu/amd/model_fxx/apic_timer.c"
67#include "lib/delay.c"
68
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000069#include "cpu/x86/lapic/boot_cpu.c"
70#include "northbridge/amd/amdk8/reset_test.c"
71
72#include "superio/serverengines/pilot/pilot_early_serial.c"
73#include "superio/serverengines/pilot/pilot_early_init.c"
74#include "superio/nsc/pc87417/pc87417_early_serial.c"
75
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000076#include "cpu/x86/bist.h"
77
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000078#include "northbridge/amd/amdk8/debug.c"
79
Stefan Reinauer5d3dee82010-04-14 11:40:34 +000080#include "cpu/x86/mtrr/earlymtrr.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000081
82#include "northbridge/amd/amdk8/setup_resource_map.c"
83
84#define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
85#define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
86
87#include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
88
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000089static void memreset(int controllers, const struct mem_controller *ctrl)
90{
91}
92
93static inline void activate_spd_rom(const struct mem_controller *ctrl)
94{
95#define SMBUS_SWITCH1 0x70
96#define SMBUS_SWITCH2 0x72
97 unsigned device = (ctrl->channel0[0]) >> 8;
98 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
99 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
100}
101
102static inline int spd_read_byte(unsigned device, unsigned address)
103{
104 return smbus_read_byte(device, address);
105}
106
107#include "northbridge/amd/amdk8/amdk8_f.h"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000108#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +0000109#include "northbridge/amd/amdk8/coherent_ht.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000110#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +0000111#include "lib/generic_sdram.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000112
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000113#include "cpu/amd/dualcore/dualcore.c"
114
115//first node
116#define DIMM0 0x50
117#define DIMM1 0x51
118#define DIMM2 0x52
119#define DIMM3 0x53
120//second node
121#define DIMM4 0x54
122#define DIMM5 0x55
123#define DIMM6 0x56
124#define DIMM7 0x57
125
Stefan Reinauer853263b2010-04-09 10:43:49 +0000126
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000127
128#include "cpu/amd/car/post_cache_as_ram.c"
129
130#include "cpu/amd/model_fxx/init_cpus.c"
131
132#include "cpu/amd/model_fxx/fidvid.c"
133
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000134#include "northbridge/amd/amdk8/early_ht.c"
135
136#if 0
137#include "ipmi.c"
138
139static void setup_early_ipmi_serial()
140{
141 unsigned char result;
142 char channel_access[]={0x06<<2,0x40,0x04,0x80,0x05};
143 char serialmodem_conf[]={0x0c<<2,0x10,0x04,0x08,0x00,0x0f};
144 char serial_mux1[]={0x0c<<2,0x12,0x04,0x06};
145 char serial_mux2[]={0x0c<<2,0x12,0x04,0x03};
146 char serial_mux3[]={0x0c<<2,0x12,0x04,0x07};
147
148// earlydbg(0x0d);
149 //set channel access system only
150 ipmi_request(5,channel_access);
151// earlydbg(result);
152/*
153 //Set serial/modem config
154 result=ipmi_request(6,serialmodem_conf);
155 earlydbg(result);
156
157 //Set serial mux 1
158 result=ipmi_request(4,serial_mux1);
159 earlydbg(result);
160
161 //Set serial mux 2
162 result=ipmi_request(4,serial_mux2);
163 earlydbg(result);
164
165 //Set serial mux 3
166 result=ipmi_request(4,serial_mux3);
167 earlydbg(result);
168*/
169// earlydbg(0x0e);
170
171}
172#endif
173
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000174void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000175{
176 static const uint16_t spd_addr[] = {
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000177 // first node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000178 DIMM0, DIMM2, 0, 0,
179 DIMM1, DIMM3, 0, 0,
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000180
181 // second node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000182 DIMM4, DIMM6, 0, 0,
183 DIMM5, DIMM7, 0, 0,
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000184 };
185
Stefan Reinauer14e22772010-04-27 06:56:47 +0000186 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE
Stefan Reinauerd6532112010-04-16 00:31:44 +0000187 + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000188
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000189 int needs_reset;
190 unsigned bsp_apicid = 0;
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000191
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000192 if (!cpu_init_detectedx && boot_cpu()) {
193 /* Nothing special needs to be done to find bus 0 */
194 /* Allow the HT devices to be found */
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000195
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000196 enumerate_ht_chain();
197 bcm5785_enable_rom();
198 bcm5785_enable_lpc();
199 //enable RTC
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000200 pc87417_enable_dev(RTC_DEV);
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000201 }
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000202
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000203 if (bist == 0) {
204 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
205 }
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000206
Stefan Reinauer08670622009-06-30 15:17:49 +0000207 pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000208
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000209 uart_init();
210
211 /* Halt if there was a built in self test failure */
212 report_bist_failure(bist);
213
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000214 console_init();
215// setup_early_ipmi_serial();
216 pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
Myles Watson08e0fb82010-03-22 16:33:25 +0000217 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000218 printk(BIOS_DEBUG, "bsp_apicid=%02x\n", bsp_apicid);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000219
Stefan Reinauer08670622009-06-30 15:17:49 +0000220#if CONFIG_MEM_TRAIN_SEQ == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000221 set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
222#endif
223 setup_coherent_ht_domain();
224
225 wait_all_core0_started();
226#if CONFIG_LOGICAL_CPUS==1
227 // It is said that we should start core1 after all core0 launched
228 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
229 * So here need to make sure last core0 is started, esp for two way system,
230 * (there may be apic id conflicts in that case)
231 */
232 start_other_cores();
233 wait_all_other_cores_started(bsp_apicid);
234#endif
235
236 /* it will set up chains and store link pair for optimization later */
237 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
238 bcm5785_early_setup();
239
Myles Watson9b43afd2010-04-08 15:09:53 +0000240#if SET_FIDVID == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000241 {
242 msr_t msr;
243 msr=rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000244 printk(BIOS_DEBUG, "begin msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000245 }
246 enable_fid_change();
247 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
248 init_fidvid_bsp(bsp_apicid);
249 // show final fid and vid
250 {
251 msr_t msr;
252 msr=rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000253 printk(BIOS_DEBUG, "end msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000254 }
255#endif
256
257 needs_reset = optimize_link_coherent_ht();
258 needs_reset |= optimize_link_incoherent_ht(sysinfo);
259
260 // fidvid change will issue one LDTSTOP and the HT change will be effective too
261 if (needs_reset) {
Stefan Reinauerd6532112010-04-16 00:31:44 +0000262 printk(BIOS_INFO, "ht reset -\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000263 soft_reset();
264 }
265
266 allow_all_aps_stop(bsp_apicid);
267
268 //It's the time to set ctrl in sysinfo now;
269 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
270 enable_smbus();
271
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000272 //do we need apci timer, tsc...., only debug need it for better output
273 /* all ap stopped? */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000274 // init_timer(); // Need to use TMICT to synconize FID/VID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000275
276 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
277
278 post_cache_as_ram();
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000279}
280