blob: a22b369024d51942430febee7d36915bc4dbbc83 [file] [log] [blame]
Felix Held060b8ad2021-02-05 22:51:33 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2
Felix Heldaa77d132021-02-10 16:13:56 +01003#include <amdblocks/cpu.h>
Felix Heldf1093af2021-07-13 23:00:26 +02004#include <amdblocks/mca.h>
Felix Helda5cdf752021-03-10 15:47:00 +01005#include <amdblocks/reset.h>
Felix Held7aacdd12021-02-10 23:27:47 +01006#include <amdblocks/smm.h>
Felix Held79f705f2021-04-22 17:08:50 +02007#include <assert.h>
Felix Held060b8ad2021-02-05 22:51:33 +01008#include <console/console.h>
Raul E Rangel35dc4b02021-02-12 16:04:27 -07009#include <cpu/amd/microcode.h>
Arthur Heymans615818f2022-05-31 21:33:43 +020010#include <cpu/amd/mtrr.h>
Felix Held060b8ad2021-02-05 22:51:33 +010011#include <cpu/cpu.h>
Felix Held7aacdd12021-02-10 23:27:47 +010012#include <cpu/x86/mp.h>
13#include <cpu/x86/mtrr.h>
14#include <cpu/x86/smm.h>
Fred Reitberger8e3c6f82022-03-23 09:59:01 -040015#include <acpi/acpi.h>
Felix Held060b8ad2021-02-05 22:51:33 +010016#include <device/device.h>
17#include <soc/cpu.h>
Felix Held7aacdd12021-02-10 23:27:47 +010018#include <soc/iomap.h>
Felix Heldd27ef5b2021-10-20 20:18:12 +020019#include <types.h>
Felix Held7aacdd12021-02-10 23:27:47 +010020
Felix Held79f705f2021-04-22 17:08:50 +020021_Static_assert(CONFIG_MAX_CPUS == 16, "Do not override MAX_CPUS. To reduce the number of "
22 "available cores, use the downcore_mode and disable_smt devicetree settings instead.");
23
Felix Held7aacdd12021-02-10 23:27:47 +010024/* MP and SMM loading initialization */
25
26/*
27 * Do essential initialization tasks before APs can be fired up -
28 *
29 * 1. Prevent race condition in MTRR solution. Enable MTRRs on the BSP. This
30 * creates the MTRR solution that the APs will use. Otherwise APs will try to
31 * apply the incomplete solution as the BSP is calculating it.
32 */
33static void pre_mp_init(void)
34{
Arthur Heymans615818f2022-05-31 21:33:43 +020035 const msr_t syscfg = rdmsr(SYSCFG_MSR);
36 if (syscfg.lo & SYSCFG_MSR_TOM2WB)
37 x86_setup_mtrrs_with_detect_no_above_4gb();
38 else
39 x86_setup_mtrrs_with_detect();
Felix Held7aacdd12021-02-10 23:27:47 +010040 x86_mtrr_check();
41}
42
Felix Held7aacdd12021-02-10 23:27:47 +010043static const struct mp_ops mp_ops = {
44 .pre_mp_init = pre_mp_init,
45 .get_cpu_count = get_cpu_count,
46 .get_smm_info = get_smm_info,
47 .relocation_handler = smm_relocation_handler,
Arthur Heymansa19bc342022-05-31 21:25:53 +020048 .post_mp_init = global_smi_enable,
Felix Held7aacdd12021-02-10 23:27:47 +010049};
Felix Held060b8ad2021-02-05 22:51:33 +010050
Felix Heldb2d8a5c2021-02-10 16:17:13 +010051void mp_init_cpus(struct bus *cpu_bus)
52{
Felix Held28a0a142021-11-02 17:15:58 +010053 if (mp_init_with_smm(cpu_bus, &mp_ops) != CB_SUCCESS)
54 die_with_post_code(POST_HW_INIT_FAILURE,
55 "mp_init_with_smm failed. Halting.\n");
Felix Held7aacdd12021-02-10 23:27:47 +010056
57 /* pre_mp_init made the flash not cacheable. Reset to WP for performance. */
58 mtrr_use_temp_range(FLASH_BASE_ADDR, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT);
Arthur Heymansa19bc342022-05-31 21:25:53 +020059
60 /* SMMINFO only needs to be set up when booting from S5 */
61 if (!acpi_is_wakeup_s3())
62 apm_control(APM_CNT_SMMINFO);
Felix Heldb2d8a5c2021-02-10 16:17:13 +010063}
64
Felix Held060b8ad2021-02-05 22:51:33 +010065static void zen_2_3_init(struct device *dev)
66{
Felix Helda24472a2021-07-13 18:21:27 +020067 check_mca();
Felix Heldaa77d132021-02-10 16:13:56 +010068 set_cstate_io_addr();
Raul E Rangel35dc4b02021-02-12 16:04:27 -070069
70 amd_update_microcode_from_cbfs();
Felix Held060b8ad2021-02-05 22:51:33 +010071}
72
73static struct device_operations cpu_dev_ops = {
74 .init = zen_2_3_init,
75};
76
77static struct cpu_device_id cpu_table[] = {
78 { X86_VENDOR_AMD, CEZANNE_A0_CPUID},
79 { 0, 0 },
80};
81
82static const struct cpu_driver zen_2_3 __cpu_driver = {
83 .ops = &cpu_dev_ops,
84 .id_table = cpu_table,
85};