blob: 1d1195a82c9fd4ba194afd9425e2822884b0968f [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.
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000022 */
23
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000024#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000025#include <string.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000026#include <device/pci_def.h>
27#include <device/pci_ids.h>
28#include <arch/io.h>
29#include <device/pnp_def.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000030#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000031#include <pc80/mc146818rtc.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000032#include <console/console.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000033#include <cpu/amd/model_fxx_rev.h>
stepan836ae292010-12-08 05:42:47 +000034#include "southbridge/broadcom/bcm5785/early_smbus.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110035#include <northbridge/amd/amdk8/raminit.h>
Edward O'Callaghanebe3a7a2015-01-05 00:27:54 +110036#include <delay.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110037#include <cpu/x86/lapic.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000038#include "northbridge/amd/amdk8/reset_test.c"
Edward O'Callaghanf18abab2014-03-31 21:53:32 +110039#include <superio/serverengines/pilot/pilot.h>
Edward O'Callaghanb8f05d42015-01-04 16:17:54 +110040#include <superio/nsc/pc87417/pc87417.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110041#include <cpu/x86/bist.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000042#include "northbridge/amd/amdk8/debug.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000043#include "northbridge/amd/amdk8/setup_resource_map.c"
stepan836ae292010-12-08 05:42:47 +000044#include "southbridge/broadcom/bcm5785/early_setup.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000045
46#define SERIAL_DEV PNP_DEV(0x2e, PILOT_SP1)
47#define RTC_DEV PNP_DEV(0x4e, PC87417_RTC)
48
Uwe Hermann7b997052010-11-21 22:47:22 +000049static void memreset(int controllers, const struct mem_controller *ctrl) { }
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000050
51static inline void activate_spd_rom(const struct mem_controller *ctrl)
52{
53#define SMBUS_SWITCH1 0x70
54#define SMBUS_SWITCH2 0x72
55 unsigned device = (ctrl->channel0[0]) >> 8;
56 smbus_send_byte(SMBUS_SWITCH1, device & 0x0f);
57 smbus_send_byte(SMBUS_SWITCH2, (device >> 4) & 0x0f );
58}
59
60static inline int spd_read_byte(unsigned device, unsigned address)
61{
62 return smbus_read_byte(device, address);
63}
64
Edward O'Callaghan77757c22015-01-04 21:33:39 +110065#include <northbridge/amd/amdk8/f.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000066#include "northbridge/amd/amdk8/incoherent_ht.c"
Stefan Reinauer23836e22010-04-15 12:39:29 +000067#include "northbridge/amd/amdk8/coherent_ht.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000068#include "northbridge/amd/amdk8/raminit_f.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000069#include "lib/generic_sdram.c"
Patrick Georgi9bd9a902010-11-20 10:31:00 +000070#include <spd.h>
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000071#include "cpu/amd/dualcore/dualcore.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000072#include "cpu/amd/model_fxx/init_cpus.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000073#include "cpu/amd/model_fxx/fidvid.c"
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000074#include "northbridge/amd/amdk8/early_ht.c"
75
76#if 0
77#include "ipmi.c"
78
79static void setup_early_ipmi_serial()
80{
81 unsigned char result;
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060082 char channel_access[]={0x06 << 2,0x40,0x04,0x80,0x05};
83 char serialmodem_conf[]={0x0c << 2,0x10,0x04,0x08,0x00,0x0f};
84 char serial_mux1[]={0x0c << 2,0x12,0x04,0x06};
85 char serial_mux2[]={0x0c << 2,0x12,0x04,0x03};
86 char serial_mux3[]={0x0c << 2,0x12,0x04,0x07};
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000087
88// earlydbg(0x0d);
89 //set channel access system only
90 ipmi_request(5,channel_access);
91// earlydbg(result);
92/*
93 //Set serial/modem config
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060094 result = ipmi_request(6,serialmodem_conf);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000095 earlydbg(result);
96
97 //Set serial mux 1
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060098 result = ipmi_request(4,serial_mux1);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +000099 earlydbg(result);
100
101 //Set serial mux 2
Elyes HAOUAS531b87a2016-09-19 09:46:33 -0600102 result = ipmi_request(4,serial_mux2);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000103 earlydbg(result);
104
105 //Set serial mux 3
Elyes HAOUAS531b87a2016-09-19 09:46:33 -0600106 result = ipmi_request(4,serial_mux3);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000107 earlydbg(result);
108*/
109// earlydbg(0x0e);
110
111}
112#endif
113
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000114void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000115{
116 static const uint16_t spd_addr[] = {
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000117 // first node
Uwe Hermann6dc92f02010-11-21 11:36:03 +0000118 DIMM0, DIMM2, 0, 0,
119 DIMM1, DIMM3, 0, 0,
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000120 // second node
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000121 DIMM4, DIMM6, 0, 0,
122 DIMM5, DIMM7, 0, 0,
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000123 };
124
Patrick Georgibbc880e2012-11-20 18:20:56 +0100125 struct sys_info *sysinfo = &sysinfo_car;
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000126 int needs_reset;
127 unsigned bsp_apicid = 0;
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000128
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000129 if (!cpu_init_detectedx && boot_cpu()) {
130 /* Nothing special needs to be done to find bus 0 */
131 /* Allow the HT devices to be found */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000132 enumerate_ht_chain();
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000133 bcm5785_enable_lpc();
Uwe Hermann7b997052010-11-21 22:47:22 +0000134 pc87417_enable_dev(RTC_DEV); /* Enable RTC */
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000135 }
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000136
Uwe Hermann7b997052010-11-21 22:47:22 +0000137 if (bist == 0)
Stefan Reinauer5d3dee82010-04-14 11:40:34 +0000138 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000139
Stefan Reinauer08670622009-06-30 15:17:49 +0000140 pilot_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000141
Stefan Reinauer42fa7fe2011-04-20 20:54:07 +0000142 console_init();
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000143
144 /* Halt if there was a built in self test failure */
145 report_bist_failure(bist);
146
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000147// setup_early_ipmi_serial();
148 pilot_early_init(SERIAL_DEV); //config port is being taken from SERIAL_DEV
Myles Watson08e0fb82010-03-22 16:33:25 +0000149 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000150 printk(BIOS_DEBUG, "bsp_apicid=%02x\n", bsp_apicid);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000151
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000152 set_sysinfo_in_ram(0); // in BSP so could hold all ap until sysinfo is in ram
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000153 setup_coherent_ht_domain();
154
155 wait_all_core0_started();
Patrick Georgie1667822012-05-05 15:29:32 +0200156#if CONFIG_LOGICAL_CPUS
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000157 // It is said that we should start core1 after all core0 launched
158 /* becase optimize_link_coherent_ht is moved out from setup_coherent_ht_domain,
159 * So here need to make sure last core0 is started, esp for two way system,
160 * (there may be apic id conflicts in that case)
161 */
162 start_other_cores();
163 wait_all_other_cores_started(bsp_apicid);
164#endif
165
166 /* it will set up chains and store link pair for optimization later */
167 ht_setup_chains_x(sysinfo); // it will init sblnk and sbbusn, nodes, sbdn
168 bcm5785_early_setup();
169
Patrick Georgi76e81522010-11-16 21:25:29 +0000170#if CONFIG_SET_FIDVID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000171 {
172 msr_t msr;
Elyes HAOUAS531b87a2016-09-19 09:46:33 -0600173 msr = rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000174 printk(BIOS_DEBUG, "begin msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000175 }
176 enable_fid_change();
177 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
178 init_fidvid_bsp(bsp_apicid);
179 // show final fid and vid
180 {
181 msr_t msr;
Elyes HAOUAS531b87a2016-09-19 09:46:33 -0600182 msr = rdmsr(0xc0010042);
Stefan Reinauerd6532112010-04-16 00:31:44 +0000183 printk(BIOS_DEBUG, "end msr fid, vid %08x %08x\n", msr.hi, msr.lo);
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000184 }
185#endif
186
187 needs_reset = optimize_link_coherent_ht();
188 needs_reset |= optimize_link_incoherent_ht(sysinfo);
189
190 // fidvid change will issue one LDTSTOP and the HT change will be effective too
191 if (needs_reset) {
Stefan Reinauerd6532112010-04-16 00:31:44 +0000192 printk(BIOS_INFO, "ht reset -\n");
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000193 soft_reset();
194 }
195
196 allow_all_aps_stop(bsp_apicid);
197
198 //It's the time to set ctrl in sysinfo now;
199 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
200 enable_smbus();
201
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000202 //do we need apci timer, tsc...., only debug need it for better output
203 /* all ap stopped? */
Paul Menzel4549e5a2014-02-02 22:05:48 +0100204 // init_timer(); // Need to use TMICT to synchronize FID/VID
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000205
206 sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
207
208 post_cache_as_ram();
Mondrian nuessle5b34bdd2009-04-22 20:34:05 +0000209}