blob: 43f9e7f285df524b9ec666602900666f17dd30c0 [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>
57#include "option_table.h"
58#include "pc80/mc146818rtc_early.c"
59
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000060#include "pc80/serial.c"
Stefan Reinauer5a1f5972010-03-31 14:34:40 +000061#include "console/console.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000062#include "lib/ramtest.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000063
64#include <cpu/amd/model_fxx_rev.h>
65
66#include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
67#include "northbridge/amd/amdk8/raminit.h"
68#include "cpu/amd/model_fxx/apic_timer.c"
69#include "lib/delay.c"
70
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000071#include "cpu/x86/lapic/boot_cpu.c"
72#include "northbridge/amd/amdk8/reset_test.c"
73
74#include "superio/serverengines/pilot/pilot_early_serial.c"
75#include "superio/serverengines/pilot/pilot_early_init.c"
76#include "superio/nsc/pc87417/pc87417_early_serial.c"
77
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000078#include "cpu/x86/bist.h"
79
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000080#include "northbridge/amd/amdk8/debug.c"
81
Stefan Reinauer5d3dee82010-04-14 11:40:34 +000082#include "cpu/x86/mtrr/earlymtrr.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000083
84#include "northbridge/amd/amdk8/setup_resource_map.c"
85
86#define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
87#define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
88
89#include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
90
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000091static void memreset(int controllers, const struct mem_controller *ctrl)
92{
93}
94
95static inline void activate_spd_rom(const struct mem_controller *ctrl)
96{
97#define SMBUS_SWITCH1 0x70
98#define SMBUS_SWITCH2 0x72
99 unsigned device = (ctrl->channel0[0]) >> 8;
100 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
101 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
102}
103
104static inline int spd_read_byte(unsigned device, unsigned address)
105{
106 return smbus_read_byte(device, address);
107}
108
109#include "northbridge/amd/amdk8/amdk8_f.h"
110#include "northbridge/amd/amdk8/coherent_ht.c"
111
112#include "northbridge/amd/amdk8/incoherent_ht.c"
113
114#include "northbridge/amd/amdk8/raminit_f.c"
115
Stefan Reinauerc13093b2009-09-23 18:51:03 +0000116#include "lib/generic_sdram.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000117
118//#include "resourcemap.c"
119
120#include "cpu/amd/dualcore/dualcore.c"
121
122//first node
123#define DIMM0 0x50
124#define DIMM1 0x51
125#define DIMM2 0x52
126#define DIMM3 0x53
127//second node
128#define DIMM4 0x54
129#define DIMM5 0x55
130#define DIMM6 0x56
131#define DIMM7 0x57
132
Stefan Reinauer853263b2010-04-09 10:43:49 +0000133
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000134
135#include "cpu/amd/car/post_cache_as_ram.c"
136
137#include "cpu/amd/model_fxx/init_cpus.c"
138
139#include "cpu/amd/model_fxx/fidvid.c"
140
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000141#include "northbridge/amd/amdk8/early_ht.c"
142
143#if 0
144#include "ipmi.c"
145
146static void setup_early_ipmi_serial()
147{
148 unsigned char result;
149 char channel_access[]={0x06<<2,0x40,0x04,0x80,0x05};
150 char serialmodem_conf[]={0x0c<<2,0x10,0x04,0x08,0x00,0x0f};
151 char serial_mux1[]={0x0c<<2,0x12,0x04,0x06};
152 char serial_mux2[]={0x0c<<2,0x12,0x04,0x03};
153 char serial_mux3[]={0x0c<<2,0x12,0x04,0x07};
154
155// earlydbg(0x0d);
156 //set channel access system only
157 ipmi_request(5,channel_access);
158// earlydbg(result);
159/*
160 //Set serial/modem config
161 result=ipmi_request(6,serialmodem_conf);
162 earlydbg(result);
163
164 //Set serial mux 1
165 result=ipmi_request(4,serial_mux1);
166 earlydbg(result);
167
168 //Set serial mux 2
169 result=ipmi_request(4,serial_mux2);
170 earlydbg(result);
171
172 //Set serial mux 3
173 result=ipmi_request(4,serial_mux3);
174 earlydbg(result);
175*/
176// earlydbg(0x0e);
177
178}
179#endif
180
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000181void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000182{
183 static const uint16_t spd_addr[] = {
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000184 // first node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000185 DIMM0, DIMM2, 0, 0,
186 DIMM1, DIMM3, 0, 0,
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000187
188 // second node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000189 DIMM4, DIMM6, 0, 0,
190 DIMM5, DIMM7, 0, 0,
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000191 };
192
Stefan Reinauer08670622009-06-30 15:17:49 +0000193 struct sys_info *sysinfo = (CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000194
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000195 int needs_reset;
196 unsigned bsp_apicid = 0;
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000197
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000198 if (!cpu_init_detectedx && boot_cpu()) {
199 /* Nothing special needs to be done to find bus 0 */
200 /* Allow the HT devices to be found */
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000201
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000202 enumerate_ht_chain();
203 bcm5785_enable_rom();
204 bcm5785_enable_lpc();
205 //enable RTC
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000206 pc87417_enable_dev(RTC_DEV);
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000207 }
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000208
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000209 if (bist == 0) {
210 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
211 }
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000212
Stefan Reinauer08670622009-06-30 15:17:49 +0000213 pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000214
215 //setup_mp_resource_map();
216
217 uart_init();
218
219 /* Halt if there was a built in self test failure */
220 report_bist_failure(bist);
221
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000222 console_init();
223// setup_early_ipmi_serial();
224 pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
Myles Watson08e0fb82010-03-22 16:33:25 +0000225 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000226
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000227 print_debug("bsp_apicid="); print_debug_hex8(bsp_apicid); print_debug("\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000228
Stefan Reinauer08670622009-06-30 15:17:49 +0000229#if CONFIG_MEM_TRAIN_SEQ == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000230 set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
231#endif
232 setup_coherent_ht_domain();
233
234 wait_all_core0_started();
235#if CONFIG_LOGICAL_CPUS==1
236 // It is said that we should start core1 after all core0 launched
237 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
238 * So here need to make sure last core0 is started, esp for two way system,
239 * (there may be apic id conflicts in that case)
240 */
241 start_other_cores();
242 wait_all_other_cores_started(bsp_apicid);
243#endif
244
245 /* it will set up chains and store link pair for optimization later */
246 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
247 bcm5785_early_setup();
248
Myles Watson9b43afd2010-04-08 15:09:53 +0000249#if SET_FIDVID == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000250 {
251 msr_t msr;
252 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000253 print_debug("begin msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000254 }
255 enable_fid_change();
256 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
257 init_fidvid_bsp(bsp_apicid);
258 // show final fid and vid
259 {
260 msr_t msr;
261 msr=rdmsr(0xc0010042);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000262 print_debug("end msr fid, vid "); print_debug_hex32( msr.hi ); print_debug_hex32(msr.lo); print_debug("\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000263 }
264#endif
265
266 needs_reset = optimize_link_coherent_ht();
267 needs_reset |= optimize_link_incoherent_ht(sysinfo);
268
269 // fidvid change will issue one LDTSTOP and the HT change will be effective too
270 if (needs_reset) {
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000271 print_info("ht reset -\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000272 soft_reset();
273 }
274
275 allow_all_aps_stop(bsp_apicid);
276
277 //It's the time to set ctrl in sysinfo now;
278 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
279 enable_smbus();
280
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000281 //do we need apci timer, tsc...., only debug need it for better output
282 /* all ap stopped? */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000283 // init_timer(); // Need to use TMICT to synconize FID/VID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000284
285 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
286
287 post_cache_as_ram();
288
289}
290