blob: 60446882d5aa33231580157a655b2153655db1ca [file] [log] [blame]
Martin Roth5c354b92019-04-22 14:55:16 -06001/*
2 * This file is part of the coreboot project.
3 *
Martin Roth5c354b92019-04-22 14:55:16 -06004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <cpu/cpu.h>
16#include <cpu/x86/mp.h>
17#include <cpu/x86/mtrr.h>
18#include <cpu/x86/msr.h>
Kyösti Mälkkib2a5f0b2019-08-04 19:54:32 +030019#include <cpu/x86/smm.h>
Martin Roth5c354b92019-04-22 14:55:16 -060020#include <cpu/amd/msr.h>
Kyösti Mälkkie31ec292019-08-10 17:27:01 +030021#include <cpu/amd/amd64_save_state.h>
Martin Roth5c354b92019-04-22 14:55:16 -060022#include <cpu/x86/lapic.h>
23#include <device/device.h>
24#include <device/pci_ops.h>
25#include <soc/pci_devs.h>
26#include <soc/cpu.h>
27#include <soc/northbridge.h>
28#include <soc/smi.h>
29#include <soc/iomap.h>
30#include <console/console.h>
31
32/*
33 * MP and SMM loading initialization.
34 */
Kyösti Mälkki86997242019-08-06 01:44:58 +030035struct smm_relocation_params {
36 msr_t tseg_base;
37 msr_t tseg_mask;
Martin Roth5c354b92019-04-22 14:55:16 -060038};
39
Kyösti Mälkki86997242019-08-06 01:44:58 +030040static struct smm_relocation_params smm_reloc_params;
Martin Roth5c354b92019-04-22 14:55:16 -060041
42/*
43 * Do essential initialization tasks before APs can be fired up -
44 *
45 * 1. Prevent race condition in MTRR solution. Enable MTRRs on the BSP. This
46 * creates the MTRR solution that the APs will use. Otherwise APs will try to
47 * apply the incomplete solution as the BSP is calculating it.
48 */
49static void pre_mp_init(void)
50{
51 x86_setup_mtrrs_with_detect();
52 x86_mtrr_check();
53}
54
Marshall Dawson34c30562019-07-16 15:18:00 -060055int get_cpu_count(void)
Martin Roth5c354b92019-04-22 14:55:16 -060056{
Marshall Dawson34c30562019-07-16 15:18:00 -060057 return 1 + (cpuid_ecx(0x80000008) & 0xff);
Martin Roth5c354b92019-04-22 14:55:16 -060058}
59
Kyösti Mälkki86997242019-08-06 01:44:58 +030060static void fill_in_relocation_params(struct smm_relocation_params *params)
61{
62 uintptr_t tseg_base;
63 size_t tseg_size;
64
65 smm_region(&tseg_base, &tseg_size);
66
67 params->tseg_base.lo = ALIGN_DOWN(tseg_base, 128 * KiB);
68 params->tseg_base.hi = 0;
69 params->tseg_mask.lo = ALIGN_DOWN(~(tseg_size - 1), 128 * KiB);
70 params->tseg_mask.hi = ((1 << (cpu_phys_address_size() - 32)) - 1);
71
72 params->tseg_mask.lo |= SMM_TSEG_WB;
73}
74
Martin Roth5c354b92019-04-22 14:55:16 -060075static void get_smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
76 size_t *smm_save_state_size)
77{
Kyösti Mälkki86997242019-08-06 01:44:58 +030078 printk(BIOS_DEBUG, "Setting up SMI for CPU\n");
Martin Roth5c354b92019-04-22 14:55:16 -060079
Kyösti Mälkki86997242019-08-06 01:44:58 +030080 fill_in_relocation_params(&smm_reloc_params);
Martin Roth5c354b92019-04-22 14:55:16 -060081
Kyösti Mälkki86997242019-08-06 01:44:58 +030082 smm_subregion(SMM_SUBREGION_HANDLER, perm_smbase, perm_smsize);
Martin Roth5c354b92019-04-22 14:55:16 -060083 *smm_save_state_size = sizeof(amd64_smm_state_save_area_t);
84}
85
86static void relocation_handler(int cpu, uintptr_t curr_smbase,
87 uintptr_t staggered_smbase)
88{
Kyösti Mälkki86997242019-08-06 01:44:58 +030089 struct smm_relocation_params *relo_params = &smm_reloc_params;
Martin Roth5c354b92019-04-22 14:55:16 -060090 amd64_smm_state_save_area_t *smm_state;
91
Kyösti Mälkki86997242019-08-06 01:44:58 +030092 wrmsr(SMM_ADDR_MSR, relo_params->tseg_base);
93 wrmsr(SMM_MASK_MSR, relo_params->tseg_mask);
94
Martin Roth5c354b92019-04-22 14:55:16 -060095 smm_state = (void *)(SMM_AMD64_SAVE_STATE_OFFSET + curr_smbase);
96 smm_state->smbase = staggered_smbase;
97}
98
99static const struct mp_ops mp_ops = {
100 .pre_mp_init = pre_mp_init,
101 .get_cpu_count = get_cpu_count,
102 .get_smm_info = get_smm_info,
103 .relocation_handler = relocation_handler,
104 .post_mp_init = enable_smi_generation,
105};
106
Marshall Dawsonbc4c9032019-06-11 12:18:20 -0600107void picasso_init_cpus(struct device *dev)
Martin Roth5c354b92019-04-22 14:55:16 -0600108{
109 /* Clear for take-off */
110 if (mp_init_with_smm(dev->link_list, &mp_ops) < 0)
111 printk(BIOS_ERR, "MP initialization failure.\n");
112
113 /* The flash is now no longer cacheable. Reset to WP for performance. */
114 mtrr_use_temp_range(FLASH_BASE_ADDR, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT);
115
116 set_warm_reset_flag();
117}
118
Marshall Dawson34c30562019-07-16 15:18:00 -0600119static void model_17_init(struct device *dev)
Martin Roth5c354b92019-04-22 14:55:16 -0600120{
121 check_mca();
122 setup_lapic();
Martin Roth5c354b92019-04-22 14:55:16 -0600123}
124
125static struct device_operations cpu_dev_ops = {
Marshall Dawson34c30562019-07-16 15:18:00 -0600126 .init = model_17_init,
Martin Roth5c354b92019-04-22 14:55:16 -0600127};
128
129static struct cpu_device_id cpu_table[] = {
Marshall Dawson04b41772019-09-04 09:40:50 -0600130 { X86_VENDOR_AMD, 0x810f80 },
Martin Rotheb30e1a2019-12-10 21:50:10 -0700131 { X86_VENDOR_AMD, PICASSO_CPUID },
132 { X86_VENDOR_AMD, RAVEN2_CPUID },
Martin Roth5c354b92019-04-22 14:55:16 -0600133 { 0, 0 },
134};
135
Marshall Dawson34c30562019-07-16 15:18:00 -0600136static const struct cpu_driver model_17 __cpu_driver = {
Martin Roth5c354b92019-04-22 14:55:16 -0600137 .ops = &cpu_dev_ops,
138 .id_table = cpu_table,
139};