blob: 084fc487fbdbdbd8ecbc4022d2d60bcf7942440d [file] [log] [blame]
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +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.
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000016 */
17
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000018#include <stdint.h>
Patrick Georgi12aba822009-04-30 07:07:22 +000019#include <string.h>
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000020#include <device/pci_def.h>
21#include <device/pci_ids.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Elyes HAOUASd2b9ec12018-10-27 09:41:02 +020023#include <arch/cpu.h>
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +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>
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +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'Callaghan81998092014-04-28 18:07:33 +100032#include <superio/winbond/common/winbond.h>
33#include <superio/winbond/w83627hf/w83627hf.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110034#include <cpu/x86/bist.h>
Nico Huber718c6fa2018-10-11 22:54:25 +020035#include <southbridge/amd/common/reset.h>
Damien Zammit75a3d1f2016-11-28 00:29:10 +110036#include <northbridge/amd/amdfam10/raminit.h>
37#include <northbridge/amd/amdht/ht_wrapper.h>
38#include <cpu/amd/family_10h-family_15h/init_cpus.h>
39#include <arch/early_variables.h>
40#include <cbmem.h>
Arthur Heymans11cf68c2017-02-24 14:37:57 +010041#include <southbridge/nvidia/mcp55/mcp55.h>
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000042
Damien Zammit75a3d1f2016-11-28 00:29:10 +110043#include "cpu/amd/quadcore/quadcore.c"
44
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000045#define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
46
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;
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +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)
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000054{
55 return smbus_read_byte(device, address);
56}
57
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000058#define MCP55_MB_SETUP \
Myles Watsona643ea32008-10-06 21:00:46 +000059 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+37, 0x00, 0x44,/* GPIO38 PCI_REQ3 */ \
60 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+38, 0x00, 0x44,/* GPIO39 PCI_GNT3 */ \
61 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+39, 0x00, 0x44,/* GPIO40 PCI_GNT2 */ \
62 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+40, 0x00, 0x44,/* GPIO41 PCI_REQ2 */ \
63 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+59, 0x00, 0x60,/* GPIP60 FANCTL0 */ \
64 RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+60, 0x00, 0x60,/* GPIO61 FANCTL1 */
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000065
Edward O'Callaghan77757c22015-01-04 21:33:39 +110066#include <southbridge/nvidia/mcp55/early_setup_ss.h>
stepan836ae292010-12-08 05:42:47 +000067#include "southbridge/nvidia/mcp55/early_setup_car.c"
Xavi Drudis Ferran4c28a6f2011-02-26 23:29:44 +000068
Damien Zammit75a3d1f2016-11-28 00:29:10 +110069unsigned get_sbdn(unsigned bus)
70{
71 pci_devfn_t dev;
72
73 /* Find the device. */
74 dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_NVIDIA,
75 PCI_DEVICE_ID_NVIDIA_MCP55_HT), bus);
76
77 return (dev >> 15) & 0x1f;
78}
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000079
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000080static void sio_setup(void)
81{
Myles Watsona643ea32008-10-06 21:00:46 +000082 uint32_t dword;
83 uint8_t byte;
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000084
Elyes HAOUASa342f392018-10-17 10:56:26 +020085 byte = pci_read_config8(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0x7b);
Myles Watsona643ea32008-10-06 21:00:46 +000086 byte |= 0x20;
Elyes HAOUASa342f392018-10-17 10:56:26 +020087 pci_write_config8(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0x7b, byte);
Myles Watsona643ea32008-10-06 21:00:46 +000088
Elyes HAOUASa342f392018-10-17 10:56:26 +020089 dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa0);
Myles Watsona643ea32008-10-06 21:00:46 +000090 /*serial 0 */
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060091 dword |= (1 << 0);
Elyes HAOUASa342f392018-10-17 10:56:26 +020092 pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa0, dword);
Myles Watsona643ea32008-10-06 21:00:46 +000093
Elyes HAOUASa342f392018-10-17 10:56:26 +020094 dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa4);
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060095 dword |= (1 << 16);
Elyes HAOUASa342f392018-10-17 10:56:26 +020096 pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE+1, 0), 0xa4, dword);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +000097}
98
Uwe Hermann26535d62010-11-20 20:36:40 +000099static const u8 spd_addr[] = {
100 //first node
101 RC00, DIMM0, DIMM2, 0, 0, DIMM1, DIMM3, 0, 0,
102#if CONFIG_MAX_PHYSICAL_CPUS > 1
103 //second node
104 RC00, DIMM4, DIMM6, 0, 0, DIMM5, DIMM7, 0, 0,
105#endif
Uwe Hermann86a57172010-11-21 10:26:04 +0000106};
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000107
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000108void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000109{
Patrick Georgibbc880e2012-11-20 18:20:56 +0100110 struct sys_info *sysinfo = &sysinfo_car;
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000111
Uwe Hermann7b997052010-11-21 22:47:22 +0000112 u32 bsp_apicid = 0, val, wants_reset;
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000113 msr_t msr;
Myles Watsona643ea32008-10-06 21:00:46 +0000114
Timothy Pearson91e9f672015-03-19 16:44:46 -0500115 timestamp_init(timestamp_get());
116 timestamp_add_now(TS_START_ROMSTAGE);
117
Patrick Georgi2bd91002010-03-18 16:46:50 +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();
Patrick Georgice6fb1e2010-03-17 22:44:39 +0000124 }
125
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000126 post_code(0x30);
127
Uwe Hermann7b997052010-11-21 22:47:22 +0000128 if (bist == 0)
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000129 bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000130
131 post_code(0x32);
132
Edward O'Callaghan81998092014-04-28 18:07:33 +1000133 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Myles Watsona643ea32008-10-06 21:00:46 +0000134 console_init();
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000135
136 /* Halt if there was a built in self test failure */
137 report_bist_failure(bist);
138
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000139 val = cpuid_eax(1);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000140 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
Myles Watson08e0fb82010-03-22 16:33:25 +0000141 printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000142 printk(BIOS_DEBUG, "bsp_apicid = %02x\n", bsp_apicid);
Myles Watson08e0fb82010-03-22 16:33:25 +0000143 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000144
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000145 /* Setup sysinfo defaults */
146 set_sysinfo_in_ram(0);
147
148 update_microcode(val);
Kyösti Mälkkif0a13ce2013-12-08 07:20:48 +0200149
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000150 post_code(0x33);
151
Timothy Pearson730a0432015-10-16 13:51:51 -0500152 cpuSetAMDMSR(0);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000153 post_code(0x34);
154
155 amd_ht_init(sysinfo);
156 post_code(0x35);
157
158 /* Setup nodes PCI space and start core 0 AP init. */
159 finalize_node_setup(sysinfo);
160
161 /* Setup any mainboard PCI settings etc. */
162 setup_mb_resource_map();
163 post_code(0x36);
164
165 /* wait for all the APs core0 started by finalize_node_setup. */
166 /* FIXME: A bunch of cores are going to start output to serial at once.
Myles Watsona643ea32008-10-06 21:00:46 +0000167 * It would be nice to fixup prink spinlocks for ROM XIP mode.
168 * I think it could be done by putting the spinlock flag in the cache
169 * of the BSP located right after sysinfo.
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000170 */
171 wait_all_core0_started();
172
Martin Roth43927ba2017-06-24 21:54:33 -0600173#if IS_ENABLED(CONFIG_LOGICAL_CPUS)
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000174 /* Core0 on each node is configured. Now setup any additional cores. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000175 printk(BIOS_DEBUG, "start_other_cores()\n");
Timothy Pearson0122afb2015-07-30 14:07:15 -0500176 start_other_cores(bsp_apicid);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000177 post_code(0x37);
178 wait_all_other_cores_started(bsp_apicid);
179#endif
180
181 post_code(0x38);
182
Martin Roth43927ba2017-06-24 21:54:33 -0600183#if IS_ENABLED(CONFIG_SET_FIDVID)
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200184 msr = rdmsr(MSR_COFVID_STS);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000185 printk(BIOS_DEBUG, "\nBegin FIDVID MSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000186
187 /* FIXME: The sb fid change may survive the warm reset and only
Myles Watsona643ea32008-10-06 21:00:46 +0000188 * need to be done once.*/
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000189 enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
190
191 post_code(0x39);
192
193 if (!warm_reset_detect(0)) { // BSP is node 0
194 init_fidvid_bsp(bsp_apicid, sysinfo->nodes);
195 } else {
196 init_fidvid_stage2(bsp_apicid, 0); // BSP is node 0
197 }
198
199 post_code(0x3A);
200
201 /* show final fid and vid */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200202 msr = rdmsr(MSR_COFVID_STS);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000203 printk(BIOS_DEBUG, "End FIDVIDMSR 0xc0010071 0x%08x 0x%08x\n", msr.hi, msr.lo);
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000204#endif
205
Paul Menzel4549e5a2014-02-02 22:05:48 +0100206 init_timer(); // Need to use TMICT to synchronize FID/VID
Stefan Reinauerbcb8c972010-04-25 18:06:32 +0000207
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000208 wants_reset = mcp55_early_setup_x();
209
210 /* Reset for HT, FIDVID, PLL and errata changes to take affect. */
211 if (!warm_reset_detect(0)) {
Stefan Reinauer069f4762015-01-05 13:02:32 -0800212 printk(BIOS_INFO, "...WARM RESET...\n\n\n");
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000213 soft_reset();
Jonathan Neuschäferec48c742017-09-29 02:45:31 +0200214 die("After soft_reset - shouldn't see this message!!!\n");
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000215 }
216
217 if (wants_reset)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000218 printk(BIOS_DEBUG, "mcp55_early_setup_x wanted additional reset!\n");
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000219
220 post_code(0x3B);
221
222 /* It's the time to set ctrl in sysinfo now; */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000223 printk(BIOS_DEBUG, "fill_mem_ctrl()\n");
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000224 fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
225 post_code(0x3D);
226
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000227 printk(BIOS_DEBUG, "enable_smbus()\n");
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000228 enable_smbus();
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000229
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000230 post_code(0x40);
231
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000232 raminit_amdmct(sysinfo);
Timothy Pearson91e9f672015-03-19 16:44:46 -0500233
Timothy Pearson86f4ca52015-03-13 13:27:58 -0500234 cbmem_initialize_empty();
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000235 post_code(0x41);
236
Timothy Pearson22564082015-03-27 22:49:18 -0500237 amdmct_cbmem_store_info(sysinfo);
238
Arne Georg Gleditsch33e6d5d2008-08-19 17:59:34 +0000239}
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000240
241/**
242 * BOOL AMD_CB_ManualBUIDSwapList(u8 Node, u8 Link, u8 **List)
243 * Description:
244 * This routine is called every time a non-coherent chain is processed.
245 * BUID assignment may be controlled explicitly on a non-coherent chain. Provide a
246 * swap list. The first part of the list controls the BUID assignment and the
247 * second part of the list provides the device to device linking. Device orientation
248 * can be detected automatically, or explicitly. See documentation for more details.
249 *
250 * Automatic non-coherent init assigns BUIDs starting at 1 and incrementing sequentially
251 * based on each device's unit count.
252 *
253 * Parameters:
Martin Rothc3fde7e2014-12-29 22:13:37 -0700254 * @param[in] node = The node on which this chain is located
255 * @param[in] link = The link on the host for this chain
256 * @param[out] List = supply a pointer to a list
Scott Duplichan314dd0b2011-03-08 23:01:46 +0000257 */
258BOOL AMD_CB_ManualBUIDSwapList (u8 node, u8 link, const u8 **List)
259{
260 static const u8 swaplist[] = { 0xFF, CONFIG_HT_CHAIN_UNITID_BASE, CONFIG_HT_CHAIN_END_UNITID_BASE, 0xFF };
261 /* If the BUID was adjusted in early_ht we need to do the manual override */
262 if ((CONFIG_HT_CHAIN_UNITID_BASE != 0) && (CONFIG_HT_CHAIN_END_UNITID_BASE != 0)) {
263 printk(BIOS_DEBUG, "AMD_CB_ManualBUIDSwapList()\n");
264 if ((node == 0) && (link == 0)) { /* BSP SB link */
265 *List = swaplist;
266 return 1;
267 }
268 }
269
270 return 0;
271}