blob: 872a3377fbfa72bae5720e23481fa42fba41022a [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
Patrick Georgie1667822012-05-05 15:29:32 +020028#if CONFIG_K8_REV_F_SUPPORT
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000029#define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
30#endif
31
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000032#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000033#include <string.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000034#include <device/pci_def.h>
35#include <device/pci_ids.h>
36#include <arch/io.h>
37#include <device/pnp_def.h>
38#include <arch/romcc_io.h>
39#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000040#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000041#include <console/console.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000042#include <cpu/amd/model_fxx_rev.h>
stepan836ae292010-12-08 05:42:47 +000043#include "southbridge/broadcom/bcm5785/early_smbus.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000044#include "northbridge/amd/amdk8/raminit.h"
45#include "cpu/amd/model_fxx/apic_timer.c"
46#include "lib/delay.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000047#include "cpu/x86/lapic/boot_cpu.c"
48#include "northbridge/amd/amdk8/reset_test.c"
stepan8301d832010-12-08 07:07:33 +000049#include "superio/serverengines/pilot/early_serial.c"
50#include "superio/serverengines/pilot/early_init.c"
51#include "superio/nsc/pc87417/early_serial.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000052#include "cpu/x86/bist.h"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000053#include "northbridge/amd/amdk8/debug.c"
Stefan Reinauer5d3dee82010-04-14 11:40:34 +000054#include "cpu/x86/mtrr/earlymtrr.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000055#include "northbridge/amd/amdk8/setup_resource_map.c"
stepan836ae292010-12-08 05:42:47 +000056#include "southbridge/broadcom/bcm5785/early_setup.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000057
58#define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
59#define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
60
Uwe Hermann7b997052010-11-21 22:47:22 +000061static void memreset(int controllers, const struct mem_controller *ctrl) { }
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000062
63static inline void activate_spd_rom(const struct mem_controller *ctrl)
64{
65#define SMBUS_SWITCH1 0x70
66#define SMBUS_SWITCH2 0x72
67 unsigned device = (ctrl->channel0[0]) >> 8;
68 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
69 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
70}
71
72static inline int spd_read_byte(unsigned device, unsigned address)
73{
74 return smbus_read_byte(device, address);
75}
76
stepan8301d832010-12-08 07:07:33 +000077#include "northbridge/amd/amdk8/f.h"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000078#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000079#include "northbridge/amd/amdk8/coherent_ht.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000080#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000081#include "lib/generic_sdram.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000082#include <spd.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000083#include "cpu/amd/dualcore/dualcore.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000084#include "cpu/amd/car/post_cache_as_ram.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000085#include "cpu/amd/model_fxx/init_cpus.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000086#include "cpu/amd/model_fxx/fidvid.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000087#include "northbridge/amd/amdk8/early_ht.c"
88
89#if 0
90#include "ipmi.c"
91
92static void setup_early_ipmi_serial()
93{
94 unsigned char result;
95 char channel_access[]={0x06<<2,0x40,0x04,0x80,0x05};
96 char serialmodem_conf[]={0x0c<<2,0x10,0x04,0x08,0x00,0x0f};
97 char serial_mux1[]={0x0c<<2,0x12,0x04,0x06};
98 char serial_mux2[]={0x0c<<2,0x12,0x04,0x03};
99 char serial_mux3[]={0x0c<<2,0x12,0x04,0x07};
100
101// earlydbg(0x0d);
102 //set channel access system only
103 ipmi_request(5,channel_access);
104// earlydbg(result);
105/*
106 //Set serial/modem config
107 result=ipmi_request(6,serialmodem_conf);
108 earlydbg(result);
109
110 //Set serial mux 1
111 result=ipmi_request(4,serial_mux1);
112 earlydbg(result);
113
114 //Set serial mux 2
115 result=ipmi_request(4,serial_mux2);
116 earlydbg(result);
117
118 //Set serial mux 3
119 result=ipmi_request(4,serial_mux3);
120 earlydbg(result);
121*/
122// earlydbg(0x0e);
123
124}
125#endif
126
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000127void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000128{
129 static const uint16_t spd_addr[] = {
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000130 // first node
Uwe Hermann6dc92f02010-11-21 11:36:03 +0000131 DIMM0, DIMM2, 0, 0,
132 DIMM1, DIMM3, 0, 0,
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000133 // second node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000134 DIMM4, DIMM6, 0, 0,
135 DIMM5, DIMM7, 0, 0,
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000136 };
137
Stefan Reinauer14e22772010-04-27 06:56:47 +0000138 struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE
Stefan Reinauerd6532112010-04-16 00:31:44 +0000139 + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000140 int needs_reset;
141 unsigned bsp_apicid = 0;
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000142
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000143 if (!cpu_init_detectedx && boot_cpu()) {
144 /* Nothing special needs to be done to find bus 0 */
145 /* Allow the HT devices to be found */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000146 enumerate_ht_chain();
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000147 bcm5785_enable_lpc();
Uwe Hermann7b997052010-11-21 22:47:22 +0000148 pc87417_enable_dev(RTC_DEV); /* Enable RTC */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000149 }
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000150
Uwe Hermann7b997052010-11-21 22:47:22 +0000151 if (bist == 0)
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000152 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000153
Stefan Reinauer08670622009-06-30 15:17:49 +0000154 pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000155
Stefan Reinauer42fa7fe2011-04-20 20:54:07 +0000156 console_init();
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000157
158 /* Halt if there was a built in self test failure */
159 report_bist_failure(bist);
160
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000161// setup_early_ipmi_serial();
162 pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
Myles Watson08e0fb82010-03-22 16:33:25 +0000163 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000164 printk(BIOS_DEBUG, "bsp_apicid=%02x\n", bsp_apicid);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000165
Stefan Reinauer08670622009-06-30 15:17:49 +0000166#if CONFIG_MEM_TRAIN_SEQ == 1
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000167 set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
168#endif
169 setup_coherent_ht_domain();
170
171 wait_all_core0_started();
Patrick Georgie1667822012-05-05 15:29:32 +0200172#if CONFIG_LOGICAL_CPUS
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000173 // It is said that we should start core1 after all core0 launched
174 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
175 * So here need to make sure last core0 is started, esp for two way system,
176 * (there may be apic id conflicts in that case)
177 */
178 start_other_cores();
179 wait_all_other_cores_started(bsp_apicid);
180#endif
181
182 /* it will set up chains and store link pair for optimization later */
183 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
184 bcm5785_early_setup();
185
Patrick Georgi76e81522010-11-16 21:25:29 +0000186#if CONFIG_SET_FIDVID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000187 {
188 msr_t msr;
189 msr=rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000190 printk(BIOS_DEBUG, "begin msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000191 }
192 enable_fid_change();
193 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
194 init_fidvid_bsp(bsp_apicid);
195 // show final fid and vid
196 {
197 msr_t msr;
198 msr=rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000199 printk(BIOS_DEBUG, "end msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000200 }
201#endif
202
203 needs_reset = optimize_link_coherent_ht();
204 needs_reset |= optimize_link_incoherent_ht(sysinfo);
205
206 // fidvid change will issue one LDTSTOP and the HT change will be effective too
207 if (needs_reset) {
Stefan Reinauerd6532112010-04-16 00:31:44 +0000208 printk(BIOS_INFO, "ht reset -\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000209 soft_reset();
210 }
211
212 allow_all_aps_stop(bsp_apicid);
213
214 //It's the time to set ctrl in sysinfo now;
215 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
216 enable_smbus();
217
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000218 //do we need apci timer, tsc...., only debug need it for better output
219 /* all ap stopped? */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000220 // init_timer(); // Need to use TMICT to synconize FID/VID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000221
222 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
223
224 post_cache_as_ram();
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000225}