blob: d5506dfa423167f84bc0baf467eb46d3d24e32a1 [file] [log] [blame]
Ward Vandewege2583dd22009-09-30 14:46:43 +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.
Ward Vandewege2583dd22009-09-30 14:46:43 +000016 */
17
Ward Vandewege2583dd22009-09-30 14:46:43 +000018#define FAM10_SCAN_PCI_BUS 0
19#define FAM10_ALLOCATE_IO_RANGE 1
20
Ward Vandewege2583dd22009-09-30 14:46:43 +000021#include <stdint.h>
22#include <string.h>
23#include <device/pci_def.h>
24#include <device/pci_ids.h>
25#include <arch/io.h>
26#include <device/pnp_def.h>
Ward Vandewege2583dd22009-09-30 14:46:43 +000027#include <cpu/x86/lapic.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000028#include <console/console.h>
Timothy Pearson91e9f672015-03-19 16:44:46 -050029#include <timestamp.h>
Patrick Georgid0835952010-10-05 09:07:10 +000030#include <lib.h>
Uwe Hermann26535d62010-11-20 20:36:40 +000031#include <spd.h>
Ward Vandewege2583dd22009-09-30 14:46:43 +000032#include <cpu/amd/model_10xxx_rev.h>
Patrick Georgi82d9a312016-01-21 12:46:10 +010033#include <delay.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110034#include <cpu/x86/lapic.h>
Edward O'Callaghanbeb0f262014-04-29 13:09:50 +100035#include <superio/winbond/common/winbond.h>
36#include <superio/winbond/w83627hf/w83627hf.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110037#include <cpu/x86/bist.h>
Damien Zammit75a3d1f2016-11-28 00:29:10 +110038#include <cpu/amd/car.h>
39#include <northbridge/amd/amdfam10/raminit.h>
40#include <northbridge/amd/amdht/ht_wrapper.h>
41#include <cpu/amd/family_10h-family_15h/init_cpus.h>
42#include <arch/early_variables.h>
43#include <cbmem.h>
44
Arthur Heymans11cf68c2017-02-24 14:37:57 +010045#include <southbridge/nvidia/mcp55/mcp55.h> // for enable the FAN
Ward Vandewege2583dd22009-09-30 14:46:43 +000046
Stefan Reinauerbcb8c972010-04-25 18:06:32 +000047#include "resourcemap.c"
Ward Vandewege2583dd22009-09-30 14:46:43 +000048#include "cpu/amd/quadcore/quadcore.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110049#include <southbridge/nvidia/mcp55/early_setup_ss.h>
stepan836ae292010-12-08 05:42:47 +000050#include "southbridge/nvidia/mcp55/early_setup_car.c"
Xavi Drudis Ferran4c28a6f2011-02-26 23:29:44 +000051
Damien Zammit75a3d1f2016-11-28 00:29:10 +110052#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020053#define SUPERIO_DEV PNP_DEV(0x2e, 0)
Damien Zammit75a3d1f2016-11-28 00:29:10 +110054
55void activate_spd_rom(const struct mem_controller *ctrl);
Elyes HAOUASdd35e2c2018-09-20 17:33:50 +020056int spd_read_byte(unsigned int device, unsigned int address);
Damien Zammit75a3d1f2016-11-28 00:29:10 +110057extern struct sys_info sysinfo_car;
58
59void activate_spd_rom(const struct mem_controller *ctrl) { }
60
Elyes HAOUASdd35e2c2018-09-20 17:33:50 +020061inline int spd_read_byte(unsigned int device, unsigned int address)
Damien Zammit75a3d1f2016-11-28 00:29:10 +110062{
63 return smbus_read_byte(device, address);
64}
65
66unsigned get_sbdn(unsigned bus)
67{
68 pci_devfn_t dev;
69
70 /* Find the device. */
71 dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_NVIDIA,
72 PCI_DEVICE_ID_NVIDIA_MCP55_HT), bus);
73
74 return (dev >> 15) & 0x1f;
75}
Ward Vandewege2583dd22009-09-30 14:46:43 +000076
Ward Vandewege2583dd22009-09-30 14:46:43 +000077static void sio_setup(void)
78{
Stefan Reinauerbcb8c972010-04-25 18:06:32 +000079 uint32_t dword;
80 uint8_t byte;
Ward Vandewege2583dd22009-09-30 14:46:43 +000081
Stefan Reinauerbcb8c972010-04-25 18:06:32 +000082 enable_smbus();
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060083 // smbusx_write_byte(1, (0x58 >> 1), 0, 0x80); /* select bank0 */
Stefan Reinauerbcb8c972010-04-25 18:06:32 +000084 /* set FAN ctrl to DC mode */
85 smbusx_write_byte(1, (0x58 >> 1), 0xb1, 0xff);
86
87 byte = pci_read_config8(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0x7b);
88 byte |= 0x20;
89 pci_write_config8(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0x7b, byte);
90
91 dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0xa0);
92 dword |= (1 << 0);
93 pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0xa0, dword);
94
95 dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0xa4);
96 dword |= (1 << 16);
97 pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE + 1, 0), 0xa4, dword);
Ward Vandewege2583dd22009-09-30 14:46:43 +000098}
99
Uwe Hermann26535d62010-11-20 20:36:40 +0000100static const u8 spd_addr[] = {
101 //first node
102 RC00, DIMM0, DIMM2, 0, 0, DIMM1, DIMM3, 0, 0,
103#if CONFIG_MAX_PHYSICAL_CPUS > 1
104 //second node
105 RC00, DIMM4, DIMM6, 0, 0, DIMM5, DIMM7, 0, 0,
106#endif
107};
Ward Vandewege2583dd22009-09-30 14:46:43 +0000108
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000109void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Ward Vandewege2583dd22009-09-30 14:46:43 +0000110{
Patrick Georgibbc880e2012-11-20 18:20:56 +0100111 struct sys_info *sysinfo = &sysinfo_car;
Uwe Hermann7b997052010-11-21 22:47:22 +0000112 u32 bsp_apicid = 0, val, wants_reset;
Ward Vandewege2583dd22009-09-30 14:46:43 +0000113 msr_t msr;
114
Timothy Pearson91e9f672015-03-19 16:44:46 -0500115 timestamp_init(timestamp_get());
116 timestamp_add_now(TS_START_ROMSTAGE);
117
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000118 if (!cpu_init_detectedx && boot_cpu()) {
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000119 /* Nothing special needs to be done to find bus 0 */
120 /* Allow the HT devices to be found */
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000121 set_bsp_node_CHtExtNodeCfgEn();
122 enumerate_ht_chain();
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000123 sio_setup();
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000124 }
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000125
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000126 post_code(0x30);
127
Uwe Hermann7b997052010-11-21 22:47:22 +0000128 if (bist == 0)
Ward Vandewege2583dd22009-09-30 14:46:43 +0000129 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000130
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000131 post_code(0x32);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000132
Elyes HAOUASf5f1b382018-04-26 09:43:03 +0200133 winbond_set_clksel_48(SUPERIO_DEV);
Edward O'Callaghanbeb0f262014-04-29 13:09:50 +1000134 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000135
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000136 console_init();
Ward Vandewege2583dd22009-09-30 14:46:43 +0000137
Ward Vandewege2583dd22009-09-30 14:46:43 +0000138 /* Halt if there was a built in self test failure */
139 report_bist_failure(bist);
140
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000141 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +0200142 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000143 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n", sysinfo, sysinfo + 1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +0200144 printk(BIOS_DEBUG, "bsp_apicid = %02x\n", bsp_apicid);
145 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000146
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000147 /* Setup sysinfo defaults */
148 set_sysinfo_in_ram(0);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000149
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000150 update_microcode(val);
Kyösti Mälkkif0a13ce2013-12-08 07:20:48 +0200151
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000152 post_code(0x33);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000153
Timothy Pearson730a0432015-10-16 13:51:51 -0500154 cpuSetAMDMSR(0);
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000155 post_code(0x34);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000156
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000157 amd_ht_init(sysinfo);
158 post_code(0x35);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000159
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000160 /* Setup nodes PCI space and start core 0 AP init. */
161 finalize_node_setup(sysinfo);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000162
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000163 /* Setup any mainboard PCI settings etc. */
164 setup_mb_resource_map();
165 post_code(0x36);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000166
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000167 /* wait for all the APs core0 started by finalize_node_setup. */
Ward Vandewege2583dd22009-09-30 14:46:43 +0000168
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000169 /* FIXME: A bunch of cores are going to start output to serial at once.
170 * It would be nice to fixup prink spinlocks for ROM XIP mode.
171 * I think it could be done by putting the spinlock flag in the cache
172 * of the BSP located right after sysinfo.
173 */
174
175 wait_all_core0_started();
Martin Roth43927ba2017-06-24 21:54:33 -0600176#if IS_ENABLED(CONFIG_LOGICAL_CPUS)
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000177 /* Core0 on each node is configured. Now setup any additional cores. */
178 printk(BIOS_DEBUG, "start_other_cores()\n");
Timothy Pearson0122afb2015-07-30 14:07:15 -0500179 start_other_cores(bsp_apicid);
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000180 post_code(0x37);
181 wait_all_other_cores_started(bsp_apicid);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000182#endif
183
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000184 post_code(0x38);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000185
Martin Roth43927ba2017-06-24 21:54:33 -0600186#if IS_ENABLED(CONFIG_SET_FIDVID)
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000187 msr = rdmsr(0xc0010071);
Elyes HAOUASaedcc102014-07-21 08:07:19 +0200188 printk(BIOS_DEBUG, "\nBegin FIDVID MSR 0xc0010071 0x%08x 0x%08x\n",
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000189 msr.hi, msr.lo);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000190
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000191 /* FIXME: The sb fid change may survive the warm reset and only
192 * need to be done once.*/
Ward Vandewege2583dd22009-09-30 14:46:43 +0000193
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000194 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
195 post_code(0x39);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000196
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000197 if (!warm_reset_detect(0)) { // BSP is node 0
198 init_fidvid_bsp(bsp_apicid, sysinfo->nodes);
199 } else {
200 init_fidvid_stage2(bsp_apicid, 0); // BSP is node 0
201 }
Ward Vandewege2583dd22009-09-30 14:46:43 +0000202
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000203 post_code(0x3A);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000204
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000205 /* show final fid and vid */
206 msr = rdmsr(0xc0010071);
Elyes HAOUASaedcc102014-07-21 08:07:19 +0200207 printk(BIOS_DEBUG, "End FIDVIDMSR 0xc0010071 0x%08x 0x%08x\n",
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000208 msr.hi, msr.lo);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000209#endif
210
Paul Menzel4549e5a2014-02-02 22:05:48 +0100211 init_timer(); // Need to use TMICT to synchronize FID/VID
Ward Vandewege2583dd22009-09-30 14:46:43 +0000212
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000213 wants_reset = mcp55_early_setup_x();
Ward Vandewege2583dd22009-09-30 14:46:43 +0000214
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000215 /* Reset for HT, FIDVID, PLL and errata changes to take affect. */
216 if (!warm_reset_detect(0)) {
Stefan Reinauer069f4762015-01-05 13:02:32 -0800217 printk(BIOS_INFO, "...WARM RESET...\n\n\n");
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000218 soft_reset();
Jonathan Neuschäferec48c742017-09-29 02:45:31 +0200219 die("After soft_reset - shouldn't see this message!!!\n");
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000220 }
Ward Vandewege2583dd22009-09-30 14:46:43 +0000221
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000222 if (wants_reset)
223 printk(BIOS_DEBUG, "mcp55_early_setup_x wants additional reset!\n");
Ward Vandewege2583dd22009-09-30 14:46:43 +0000224
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000225 post_code(0x3B);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000226
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000227 /* It's the time to set ctrl in sysinfo now; */
228 printk(BIOS_DEBUG, "fill_mem_ctrl()\n");
229 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000230
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000231 post_code(0x3D);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000232
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000233 // printk(BIOS_DEBUG, "enable_smbus()\n");
234 // enable_smbus(); /* enable in sio_setup */
Ward Vandewege2583dd22009-09-30 14:46:43 +0000235
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000236 post_code(0x40);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000237
Timothy Pearson91e9f672015-03-19 16:44:46 -0500238 timestamp_add_now(TS_BEFORE_INITRAM);
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000239 printk(BIOS_DEBUG, "raminit_amdmct()\n");
240 raminit_amdmct(sysinfo);
Timothy Pearson91e9f672015-03-19 16:44:46 -0500241 timestamp_add_now(TS_AFTER_INITRAM);
242
Timothy Pearson86f4ca52015-03-13 13:27:58 -0500243 cbmem_initialize_empty();
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000244 post_code(0x41);
Ward Vandewege2583dd22009-09-30 14:46:43 +0000245
Timothy Pearson22564082015-03-27 22:49:18 -0500246 amdmct_cbmem_store_info(sysinfo);
247
Ward Vandewege2583dd22009-09-30 14:46:43 +0000248}
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000249
250/**
251 * BOOL AMD_CB_ManualBUIDSwapList(u8 Node, u8 Link, u8 **List)
252 * Description:
253 * This routine is called every time a non-coherent chain is processed.
254 * BUID assignment may be controlled explicitly on a non-coherent chain. Provide a
255 * swap list. The first part of the list controls the BUID assignment and the
256 * second part of the list provides the device to device linking. Device orientation
257 * can be detected automatically, or explicitly. See documentation for more details.
258 *
259 * Automatic non-coherent init assigns BUIDs starting at 1 and incrementing sequentially
260 * based on each device's unit count.
261 *
262 * Parameters:
Martin Rothc3fde7e2014-12-29 22:13:37 -0700263 * @param[in] node = The node on which this chain is located
264 * @param[in] link = The link on the host for this chain
265 * @param[out] List = supply a pointer to a list
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000266 */
267BOOL AMD_CB_ManualBUIDSwapList (u8 node, u8 link, const u8 **List)
268{
269 static const u8 swaplist[] = { 0xFF, CONFIG_HT_CHAIN_UNITID_BASE, CONFIG_HT_CHAIN_END_UNITID_BASE, 0xFF };
270 /* If the BUID was adjusted in early_ht we need to do the manual override */
271 if ((CONFIG_HT_CHAIN_UNITID_BASE != 0) && (CONFIG_HT_CHAIN_END_UNITID_BASE != 0)) {
272 printk(BIOS_DEBUG, "AMD_CB_ManualBUIDSwapList()\n");
273 if ((node == 0) && (link == 0)) { /* BSP SB link */
274 *List = swaplist;
275 return 1;
276 }
277 }
278
279 return 0;
280}