blob: d7823934d6b97ac7bbadf2585b911aaca6e3b785 [file] [log] [blame]
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015-2016 Intel Corp.
5 * Copyright (C) 2017 Advanced Micro Devices, Inc.
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; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Marshall Dawsonb6172112017-09-13 17:47:31 -060017#include <cpu/cpu.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060018#include <cpu/x86/mp.h>
19#include <cpu/x86/mtrr.h>
Marshall Dawsonb6172112017-09-13 17:47:31 -060020#include <cpu/x86/msr.h>
Kyösti Mälkkib2a5f0b2019-08-04 19:54:32 +030021#include <cpu/x86/smm.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020022#include <cpu/amd/msr.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030023#include <cpu/amd/amd64_save_state.h>
Marshall Dawson178e65d2017-10-20 13:20:25 -060024#include <cpu/x86/lapic.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060025#include <device/device.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020026#include <device/pci_ops.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060027#include <soc/pci_devs.h>
28#include <soc/cpu.h>
29#include <soc/northbridge.h>
Marshall Dawsonb6172112017-09-13 17:47:31 -060030#include <soc/smi.h>
Marshall Dawson0814b122018-01-10 11:35:24 -070031#include <soc/iomap.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060032#include <console/console.h>
33
34/*
Marshall Dawsonb6172112017-09-13 17:47:31 -060035 * MP and SMM loading initialization.
36 */
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030037struct smm_relocation_params {
38 msr_t tseg_base;
39 msr_t tseg_mask;
Marshall Dawsonb6172112017-09-13 17:47:31 -060040};
41
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030042static struct smm_relocation_params smm_reloc_params;
Marshall Dawsonb6172112017-09-13 17:47:31 -060043
44/*
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060045 * Do essential initialization tasks before APs can be fired up -
46 *
47 * 1. Prevent race condition in MTRR solution. Enable MTRRs on the BSP. This
48 * creates the MTRR solution that the APs will use. Otherwise APs will try to
49 * apply the incomplete solution as the BSP is calculating it.
50 */
51static void pre_mp_init(void)
52{
53 x86_setup_mtrrs_with_detect();
54 x86_mtrr_check();
55}
56
57static int get_cpu_count(void)
58{
Martin Roth1956a002018-10-30 22:31:40 -060059 return (pci_read_config16(SOC_HT_DEV, D18F0_CPU_CNT) & CPU_CNT_MASK)
Richard Spiegel41baf0c2018-10-22 13:57:18 -070060 + 1;
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060061}
62
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030063static void fill_in_relocation_params(struct smm_relocation_params *params)
64{
65 uintptr_t tseg_base;
66 size_t tseg_size;
67
68 smm_region(&tseg_base, &tseg_size);
69
70 params->tseg_base.lo = ALIGN_DOWN(tseg_base, 128 * KiB);
71 params->tseg_base.hi = 0;
72 params->tseg_mask.lo = ALIGN_DOWN(~(tseg_size - 1), 128 * KiB);
73 params->tseg_mask.hi = ((1 << (cpu_phys_address_size() - 32)) - 1);
74
75 params->tseg_mask.lo |= SMM_TSEG_WB;
76}
77
Marshall Dawsonb6172112017-09-13 17:47:31 -060078static void get_smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
79 size_t *smm_save_state_size)
80{
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030081 printk(BIOS_DEBUG, "Setting up SMI for CPU\n");
Marshall Dawsonb6172112017-09-13 17:47:31 -060082
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030083 fill_in_relocation_params(&smm_reloc_params);
Marshall Dawsonb6172112017-09-13 17:47:31 -060084
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030085 smm_subregion(SMM_SUBREGION_HANDLER, perm_smbase, perm_smsize);
Marshall Dawsonb6172112017-09-13 17:47:31 -060086 *smm_save_state_size = sizeof(amd64_smm_state_save_area_t);
87}
88
89static void relocation_handler(int cpu, uintptr_t curr_smbase,
90 uintptr_t staggered_smbase)
91{
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030092 struct smm_relocation_params *relo_params = &smm_reloc_params;
Marshall Dawsonb6172112017-09-13 17:47:31 -060093 amd64_smm_state_save_area_t *smm_state;
94
Kyösti Mälkki0d4d09c2019-08-06 01:44:58 +030095 wrmsr(SMM_ADDR_MSR, relo_params->tseg_base);
96 wrmsr(SMM_MASK_MSR, relo_params->tseg_mask);
97
Marshall Dawsonb6172112017-09-13 17:47:31 -060098 smm_state = (void *)(SMM_AMD64_SAVE_STATE_OFFSET + curr_smbase);
99 smm_state->smbase = staggered_smbase;
100}
101
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -0600102static const struct mp_ops mp_ops = {
103 .pre_mp_init = pre_mp_init,
104 .get_cpu_count = get_cpu_count,
Marshall Dawsonb6172112017-09-13 17:47:31 -0600105 .get_smm_info = get_smm_info,
106 .relocation_handler = relocation_handler,
107 .post_mp_init = enable_smi_generation,
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -0600108};
109
110void stoney_init_cpus(struct device *dev)
111{
112 /* Clear for take-off */
113 if (mp_init_with_smm(dev->link_list, &mp_ops) < 0)
114 printk(BIOS_ERR, "MP initialization failure.\n");
Marshall Dawson8f031d82018-04-09 22:15:06 -0600115
116 /* The flash is now no longer cacheable. Reset to WP for performance. */
117 mtrr_use_temp_range(FLASH_BASE_ADDR, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT);
Marshall Dawson2e49cf122018-08-03 17:05:22 -0600118
119 set_warm_reset_flag();
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -0600120}
Marshall Dawson178e65d2017-10-20 13:20:25 -0600121
Marshall Dawson74473ec2018-08-05 10:42:17 -0600122static void model_15_init(struct device *dev)
123{
124 check_mca();
Marshall Dawson178e65d2017-10-20 13:20:25 -0600125 setup_lapic();
Marshall Dawson638bd132018-09-14 10:16:40 -0600126
127 /*
128 * Per AMD, sync an undocumented MSR with the PSP base address.
129 * Experiments showed that if you write to the MSR after it has
130 * been previously programmed, it causes a general protection fault.
131 * Also, the MSR survives warm reset and S3 cycles, so we need to
132 * test if it was previously written before writing to it.
133 */
134 msr_t psp_msr;
135 uint32_t psp_bar; /* Note: NDA BKDG names this 32-bit register BAR3 */
136 psp_bar = pci_read_config32(SOC_PSP_DEV, PCI_BASE_ADDRESS_4);
137 psp_bar &= ~PCI_BASE_ADDRESS_MEM_ATTR_MASK;
138 psp_msr = rdmsr(0xc00110a2);
139 if (psp_msr.lo == 0) {
140 psp_msr.lo = psp_bar;
141 wrmsr(0xc00110a2, psp_msr);
142 }
Marshall Dawson178e65d2017-10-20 13:20:25 -0600143}
144
145static struct device_operations cpu_dev_ops = {
146 .init = model_15_init,
147};
148
149static struct cpu_device_id cpu_table[] = {
Richard Spiegel9247e862019-06-28 09:18:47 -0700150 { X86_VENDOR_AMD, 0x660f01 },
Marshall Dawson178e65d2017-10-20 13:20:25 -0600151 { X86_VENDOR_AMD, 0x670f00 },
152 { 0, 0 },
153};
154
155static const struct cpu_driver model_15 __cpu_driver = {
156 .ops = &cpu_dev_ops,
157 .id_table = cpu_table,
158};