blob: b5acf36c4654a581e1b7956904ce62f45fc07250 [file] [log] [blame]
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000016 */
17
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000018#include <stdint.h>
19#include <string.h>
20#include <device/pci_def.h>
21#include <device/pci_ids.h>
22#include <arch/io.h>
Elyes HAOUASd2b9ec12018-10-27 09:41:02 +020023#include <arch/cpu.h>
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000024#include <cpu/x86/lapic.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000025#include <console/console.h>
Timothy Pearson91e9f672015-03-19 16:44:46 -050026#include <timestamp.h>
Uwe Hermann26535d62010-11-20 20:36:40 +000027#include <spd.h>
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000028#include <cpu/amd/model_10xxx_rev.h>
Patrick Georgi82d9a312016-01-21 12:46:10 +010029#include <delay.h>
Damien Zammit75a3d1f2016-11-28 00:29:10 +110030#include <cpu/amd/car.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020031#include <cpu/amd/msr.h>
Edward O'Callaghan9e308b92014-04-27 23:28:31 +100032#include <superio/winbond/common/winbond.h>
Edward O'Callaghan793a4292014-04-03 14:30:58 +110033#include <superio/winbond/w83627ehg/w83627ehg.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110034#include <cpu/x86/bist.h>
Damien Zammit75a3d1f2016-11-28 00:29:10 +110035#include <northbridge/amd/amdfam10/raminit.h>
36#include <northbridge/amd/amdht/ht_wrapper.h>
37#include <cpu/amd/family_10h-family_15h/init_cpus.h>
38#include <arch/early_variables.h>
39#include <cbmem.h>
Nico Huber718c6fa2018-10-11 22:54:25 +020040#include <southbridge/amd/common/reset.h>
Arthur Heymans11cf68c2017-02-24 14:37:57 +010041#include <southbridge/nvidia/mcp55/mcp55.h>
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000042
Damien Zammit75a3d1f2016-11-28 00:29:10 +110043#include "cpu/amd/quadcore/quadcore.c"
44
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000045#define SERIAL_DEV PNP_DEV(0x2e, W83627EHG_SP1)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000046
Damien Zammit75a3d1f2016-11-28 00:29:10 +110047void activate_spd_rom(const struct mem_controller *ctrl);
Elyes HAOUASdd35e2c2018-09-20 17:33:50 +020048int spd_read_byte(unsigned int device, unsigned int address);
Damien Zammit75a3d1f2016-11-28 00:29:10 +110049extern struct sys_info sysinfo_car;
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000050
Damien Zammit75a3d1f2016-11-28 00:29:10 +110051void activate_spd_rom(const struct mem_controller *ctrl) { }
52
Elyes HAOUASdd35e2c2018-09-20 17:33:50 +020053inline int spd_read_byte(unsigned int device, unsigned int address)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000054{
55 return smbus_read_byte(device, address);
56}
57
Damien Zammit75a3d1f2016-11-28 00:29:10 +110058unsigned get_sbdn(unsigned bus)
59{
60 pci_devfn_t dev;
61
62 /* Find the device. */
63 dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_NVIDIA,
64 PCI_DEVICE_ID_NVIDIA_MCP55_HT), bus);
65
66 return (dev >> 15) & 0x1f;
67}
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000068
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000069#define MCP55_MB_SETUP \
70 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+37, 0x00, 0x44,/* GPIO38 PCI_REQ3 */ \
71 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+38, 0x00, 0x44,/* GPIO39 PCI_GNT3 */ \
72 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+39, 0x00, 0x44,/* GPIO40 PCI_GNT2 */ \
73 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+40, 0x00, 0x44,/* GPIO41 PCI_REQ2 */ \
74 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+59, 0x00, 0x60,/* GPIP60 FANCTL0 */ \
75 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+60, 0x00, 0x60,/* GPIO61 FANCTL1 */
76
Edward O'Callaghan77757c22015-01-04 21:33:39 +110077#include <southbridge/nvidia/mcp55/early_setup_ss.h>
stepan836ae292010-12-08 05:42:47 +000078#include "southbridge/nvidia/mcp55/early_setup_car.c"
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000079
80static void sio_setup(void)
81{
Stefan Reinauer8b547b12010-03-30 09:56:35 +000082 u32 dword;
83 u8 byte;
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000084
Elyes HAOUASa342f392018-10-17 10:56:26 +020085 byte = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0x7b);
Uwe Hermann5fa76e22010-03-01 20:16:38 +000086 byte |= 0x20;
Elyes HAOUASa342f392018-10-17 10:56:26 +020087 pci_write_config8(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0x7b, byte);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000088
Elyes HAOUASa342f392018-10-17 10:56:26 +020089 dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa0);
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060090 dword |= (1 << 0);
Elyes HAOUASa342f392018-10-17 10:56:26 +020091 pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa0, dword);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000092}
93
Uwe Hermann26535d62010-11-20 20:36:40 +000094static const u8 spd_addr[] = {
95 //first node
96 RC00, DIMM0, DIMM2, 0, 0, DIMM1, DIMM3, 0, 0,
97#if CONFIG_MAX_PHYSICAL_CPUS > 1
98 //second node
99 RC00, DIMM4, DIMM6, 0, 0, DIMM5, DIMM7, 0, 0,
100#endif
101};
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000102
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000103void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000104{
Patrick Georgibbc880e2012-11-20 18:20:56 +0100105 struct sys_info *sysinfo = &sysinfo_car;
Uwe Hermann7b997052010-11-21 22:47:22 +0000106 u32 bsp_apicid = 0, val, wants_reset;
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000107 u8 reg;
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000108 msr_t msr;
109
Timothy Pearson91e9f672015-03-19 16:44:46 -0500110 timestamp_init(timestamp_get());
111 timestamp_add_now(TS_START_ROMSTAGE);
112
Patrick Georgi2bd91002010-03-18 16:46:50 +0000113 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000114 /* Nothing special needs to be done to find bus 0 */
115 /* Allow the HT devices to be found */
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000116 set_bsp_node_CHtExtNodeCfgEn();
117 enumerate_ht_chain();
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000118 sio_setup();
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000119 }
120
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000121 post_code(0x30);
122
Uwe Hermann7b997052010-11-21 22:47:22 +0000123 if (bist == 0)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000124 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000125
126 post_code(0x32);
127
Keith Huibb73c982017-08-13 16:31:18 -0400128 pnp_enter_conf_state(SERIAL_DEV);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000129 /* We have 24MHz input. */
130 reg = pnp_read_config(SERIAL_DEV, 0x24);
131 pnp_write_config(SERIAL_DEV, 0x24, (reg & 0xbf));
Keith Huibb73c982017-08-13 16:31:18 -0400132 pnp_exit_conf_state(SERIAL_DEV);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000133
Edward O'Callaghan9e308b92014-04-27 23:28:31 +1000134 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000135 console_init();
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000136
137 /* Halt if there was a built in self test failure */
138 report_bist_failure(bist);
139
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000140 val = cpuid_eax(1);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000141 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
Myles Watson08e0fb82010-03-22 16:33:25 +0000142 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000143 printk(BIOS_DEBUG, "bsp_apicid = %02x\n", bsp_apicid);
Myles Watson08e0fb82010-03-22 16:33:25 +0000144 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000145
146 /* Setup sysinfo defaults */
147 set_sysinfo_in_ram(0);
148
149 update_microcode(val);
Kyösti Mälkkif0a13ce2013-12-08 07:20:48 +0200150
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000151 post_code(0x33);
152
Timothy Pearson730a0432015-10-16 13:51:51 -0500153 cpuSetAMDMSR(0);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000154 post_code(0x34);
155
156 amd_ht_init(sysinfo);
157 post_code(0x35);
158
159 /* Setup nodes PCI space and start core 0 AP init. */
160 finalize_node_setup(sysinfo);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000161 printk(BIOS_DEBUG, "finalize_node_setup done\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000162
163 /* Setup any mainboard PCI settings etc. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000164 printk(BIOS_DEBUG, "setup_mb_resource_map begin\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000165 setup_mb_resource_map();
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000166 printk(BIOS_DEBUG, "setup_mb_resource_map end\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000167 post_code(0x36);
168
169 /* wait for all the APs core0 started by finalize_node_setup. */
170 /* FIXME: A bunch of cores are going to start output to serial at once.
171 * It would be nice to fixup prink spinlocks for ROM XIP mode.
172 * I think it could be done by putting the spinlock flag in the cache
173 * of the BSP located right after sysinfo.
174 */
175 wait_all_core0_started();
176
Martin Roth43927ba2017-06-24 21:54:33 -0600177#if IS_ENABLED(CONFIG_LOGICAL_CPUS)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000178 /* Core0 on each node is configured. Now setup any additional cores. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000179 printk(BIOS_DEBUG, "start_other_cores()\n");
Timothy Pearson0122afb2015-07-30 14:07:15 -0500180 start_other_cores(bsp_apicid);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000181 post_code(0x37);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000182 printk(BIOS_DEBUG, "wait_all_other_cores_started()\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000183 wait_all_other_cores_started(bsp_apicid);
184#endif
185
186 post_code(0x38);
187
Martin Roth43927ba2017-06-24 21:54:33 -0600188#if IS_ENABLED(CONFIG_SET_FIDVID)
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200189 msr = rdmsr(MSR_COFVID_STS);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000190 printk(BIOS_DEBUG, "\nBegin FIDVID MSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000191
192 /* FIXME: The sb fid change may survive the warm reset and only
193 * need to be done once.*/
194 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
195
196 post_code(0x39);
197
198 if (!warm_reset_detect(0)) { // BSP is node 0
199 init_fidvid_bsp(bsp_apicid, sysinfo->nodes);
200 } else {
201 init_fidvid_stage2(bsp_apicid, 0); // BSP is node 0
202 }
203
204 post_code(0x3A);
205
206 /* show final fid and vid */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200207 msr = rdmsr(MSR_COFVID_STS);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000208 printk(BIOS_DEBUG, "End FIDVIDMSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000209#endif
Paul Menzel4549e5a2014-02-02 22:05:48 +0100210 init_timer(); /* Need to use TMICT to synchronize FID/VID. */
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000211
212 wants_reset = mcp55_early_setup_x();
213
214 /* Reset for HT, FIDVID, PLL and errata changes to take affect. */
215 if (!warm_reset_detect(0)) {
Stefan Reinauer069f4762015-01-05 13:02:32 -0800216 printk(BIOS_INFO, "...WARM RESET...\n\n\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000217 soft_reset();
Jonathan Neuschäferec48c742017-09-29 02:45:31 +0200218 die("After soft_reset - shouldn't see this message!!!\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000219 }
220
221 if (wants_reset)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000222 printk(BIOS_DEBUG, "mcp55_early_setup_x wanted additional reset!\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000223
224 post_code(0x3B);
225
226 /* It's the time to set ctrl in sysinfo now; */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000227 printk(BIOS_DEBUG, "fill_mem_ctrl()\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000228 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
229 post_code(0x3D);
230
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000231 printk(BIOS_DEBUG, "enable_smbus()\n");
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000232 enable_smbus();
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000233
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000234 post_code(0x40);
235
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000236 raminit_amdmct(sysinfo);
Timothy Pearson91e9f672015-03-19 16:44:46 -0500237
Timothy Pearson86f4ca52015-03-13 13:27:58 -0500238 cbmem_initialize_empty();
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000239 post_code(0x41);
240
Timothy Pearson22564082015-03-27 22:49:18 -0500241 amdmct_cbmem_store_info(sysinfo);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000242}
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000243
244/**
245 * BOOL AMD_CB_ManualBUIDSwapList(u8 Node, u8 Link, u8 **List)
246 * Description:
247 * This routine is called every time a non-coherent chain is processed.
248 * BUID assignment may be controlled explicitly on a non-coherent chain. Provide a
249 * swap list. The first part of the list controls the BUID assignment and the
250 * second part of the list provides the device to device linking. Device orientation
251 * can be detected automatically, or explicitly. See documentation for more details.
252 *
253 * Automatic non-coherent init assigns BUIDs starting at 1 and incrementing sequentially
254 * based on each device's unit count.
255 *
256 * Parameters:
Martin Rothc3fde7e2014-12-29 22:13:37 -0700257 * @param[in] node = The node on which this chain is located
258 * @param[in] link = The link on the host for this chain
259 * @param[out] List = supply a pointer to a list
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000260 */
261BOOL AMD_CB_ManualBUIDSwapList (u8 node, u8 link, const u8 **List)
262{
263 static const u8 swaplist[] = { 0xFF, CONFIG_HT_CHAIN_UNITID_BASE, CONFIG_HT_CHAIN_END_UNITID_BASE, 0xFF };
264 /* If the BUID was adjusted in early_ht we need to do the manual override */
265 if ((CONFIG_HT_CHAIN_UNITID_BASE != 0) && (CONFIG_HT_CHAIN_END_UNITID_BASE != 0)) {
266 printk(BIOS_DEBUG, "AMD_CB_ManualBUIDSwapList()\n");
267 if ((node == 0) && (link == 0)) { /* BSP SB link */
268 *List = swaplist;
269 return 1;
270 }
271 }
272
273 return 0;
274}