blob: 0e0347d8c88daeeeceb075d78876a422b4a8f626 [file] [log] [blame]
Arne Georg Gleditsch9139e7b2010-09-24 17:35:32 +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
28#define RAMINIT_SYSINFO 1
29
30#define FAM10_SCAN_PCI_BUS 0
31#define FAM10_ALLOCATE_IO_RANGE 1
32
33#define QRANK_DIMM_SUPPORT 1
34
35#if CONFIG_LOGICAL_CPUS==1
36#define SET_NB_CFG_54 1
37#endif
38
39#define SET_FIDVID 1
40#define SET_FIDVID_CORE_RANGE 0
41
42#define DBGP_DEFAULT 7
43
44#include <stdint.h>
45#include <string.h>
46#include <device/pci_def.h>
47#include <device/pci_ids.h>
48#include <arch/io.h>
49#include <device/pnp_def.h>
50#include <arch/romcc_io.h>
51#include <cpu/x86/lapic.h>
52#include "option_table.h"
53#include <console/console.h>
54#include "lib/ramtest.c"
55#include <cpu/amd/model_10xxx_rev.h>
56#include "southbridge/broadcom/bcm5785/bcm5785_early_smbus.c"
57#include "northbridge/amd/amdfam10/raminit.h"
58#include "northbridge/amd/amdfam10/amdfam10.h"
59
60#include "cpu/amd/model_10xxx/apic_timer.c"
61#include "lib/delay.c"
62#include "cpu/x86/lapic/boot_cpu.c"
63#include "northbridge/amd/amdfam10/reset_test.c"
64
65#include "superio/serverengines/pilot/pilot_early_serial.c"
66#include "superio/serverengines/pilot/pilot_early_init.c"
67#include "superio/nsc/pc87417/pc87417_early_serial.c"
68
69#include "cpu/x86/bist.h"
70
71#include "northbridge/amd/amdfam10/debug.c"
72
73#include "cpu/x86/mtrr/earlymtrr.c"
74
75//#include "northbridge/amd/amdfam10/setup_resource_map.c"
76
77#define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
78#define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
79
80#include "southbridge/broadcom/bcm5785/bcm5785_early_setup.c"
81
82static inline void activate_spd_rom(const struct mem_controller *ctrl)
83{
84 u8 val;
85 outb(0x3d, 0x0cd6);
86 outb(0x87, 0x0cd7);
87
88 outb(0x44, 0xcd6);
89 val = inb(0xcd7);
90 outb((val & ~3) | ctrl->spd_switch_addr, 0xcd7);
91}
92
93static inline int spd_read_byte(unsigned device, unsigned address)
94{
95 return smbus_read_byte(device, address);
96}
97
98#include "northbridge/amd/amdfam10/amdfam10.h"
99
100#include "northbridge/amd/amdfam10/raminit_sysinfo_in_ram.c"
101#include "northbridge/amd/amdfam10/amdfam10_pci.c"
102
103#include "cpu/amd/quadcore/quadcore.c"
104
105#include "cpu/amd/car/post_cache_as_ram.c"
106
107#include "cpu/amd/microcode/microcode.c"
108#include "cpu/amd/model_10xxx/update_microcode.c"
109#include "cpu/amd/model_10xxx/init_cpus.c"
110
111#include "northbridge/amd/amdfam10/early_ht.c"
112
113#include "spd_addr.h"
114
115void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
116{
117 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
118
119
120 u32 bsp_apicid = 0;
121 u32 val;
122 msr_t msr;
123
124 if (!cpu_init_detectedx && boot_cpu()) {
125 /* Nothing special needs to be done to find bus 0 */
126 /* Allow the HT devices to be found */
127 /* mov bsp to bus 0xff when > 8 nodes */
128 set_bsp_node_CHtExtNodeCfgEn();
129 enumerate_ht_chain();
130
131 /* Setup the rom access for 4M */
132 bcm5785_enable_rom();
133 bcm5785_enable_lpc();
134 //enable RTC
135 pc87417_enable_dev(RTC_DEV);
136 }
137
138 post_code(0x30);
139
140 if (bist == 0) {
141 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
142 }
143
144 pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
145
146 uart_init();
147
148 /* Halt if there was a built in self test failure */
149 report_bist_failure(bist);
150
151 console_init();
152 pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
153
154 val = cpuid_eax(1);
155 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
156 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
157 printk(BIOS_DEBUG, "bsp_apicid = %02x\n", bsp_apicid);
158 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
159
160 /* Setup sysinfo defaults */
161 set_sysinfo_in_ram(0);
162
163 update_microcode(val);
164 post_code(0x33);
165
166 cpuSetAMDMSR();
167 post_code(0x34);
168
169 amd_ht_init(sysinfo);
170 post_code(0x35);
171
172 /* Setup nodes PCI space and start core 0 AP init. */
173 finalize_node_setup(sysinfo);
174
175 post_code(0x36);
176
177 /* wait for all the APs core0 started by finalize_node_setup. */
178 /* FIXME: A bunch of cores are going to start output to serial at once.
179 * It would be nice to fixup prink spinlocks for ROM XIP mode.
180 * I think it could be done by putting the spinlock flag in the cache
181 * of the BSP located right after sysinfo.
182 */
183
184 wait_all_core0_started();
185
186#if CONFIG_LOGICAL_CPUS==1
187 /* Core0 on each node is configured. Now setup any additional cores. */
188 printk(BIOS_DEBUG, "start_other_cores()\n");
189 start_other_cores();
190 post_code(0x37);
191 wait_all_other_cores_started(bsp_apicid);
192#endif
193
194#if SET_FIDVID == 1
195 msr = rdmsr(0xc0010071);
196 printk(BIOS_DEBUG, "\nBegin FIDVID MSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
197
198 /* FIXME: The sb fid change may survive the warm reset and only
199 * need to be done once.*/
200
201 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
202
203 post_code(0x39);
204
205 if (!warm_reset_detect(0)) { // BSP is node 0
206 init_fidvid_bsp(bsp_apicid, sysinfo->nodes);
207 } else {
208 init_fidvid_stage2(bsp_apicid, 0); // BSP is node 0
209 }
210
211 post_code(0x3A);
212
213 /* show final fid and vid */
214 msr=rdmsr(0xc0010071);
215 printk(BIOS_DEBUG, "End FIDVIDMSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
216#endif
217
218 init_timer();
219
220 /* Reset for HT, FIDVID, PLL and errata changes to take affect. */
221 if (!warm_reset_detect(0)) {
222 print_info("...WARM RESET...\n\n\n");
223 soft_reset();
224 die("After soft_reset_x - shouldn't see this message!!!\n");
225 }
226
227 /* It's the time to set ctrl in sysinfo now; */
228 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
229 enable_smbus();
230
231 //do we need apci timer, tsc...., only debug need it for better output
232 /* all ap stopped? */
233// init_timer(); // Need to use TMICT to synconize FID/VID
234
235 printk(BIOS_DEBUG, "raminit_amdmct()\n");
236 raminit_amdmct(sysinfo);
237 post_code(0x41);
238
239 bcm5785_early_setup();
240
241 post_cache_as_ram();
242}