blob: 8b4e34733138f35d98376bbbacfcc05f63d7a295 [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 Held199b10f2022-08-13 00:29:23 +02004#include <amdblocks/iomap.h>
Felix Heldf1093af2021-07-13 23:00:26 +02005#include <amdblocks/mca.h>
Felix Helda5cdf752021-03-10 15:47:00 +01006#include <amdblocks/reset.h>
Felix Held7aacdd12021-02-10 23:27:47 +01007#include <amdblocks/smm.h>
Felix Held79f705f2021-04-22 17:08:50 +02008#include <assert.h>
Felix Held060b8ad2021-02-05 22:51:33 +01009#include <console/console.h>
Raul E Rangel35dc4b02021-02-12 16:04:27 -070010#include <cpu/amd/microcode.h>
Arthur Heymans615818f2022-05-31 21:33:43 +020011#include <cpu/amd/mtrr.h>
Felix Held060b8ad2021-02-05 22:51:33 +010012#include <cpu/cpu.h>
Felix Held7aacdd12021-02-10 23:27:47 +010013#include <cpu/x86/mp.h>
14#include <cpu/x86/mtrr.h>
15#include <cpu/x86/smm.h>
Fred Reitberger8e3c6f82022-03-23 09:59:01 -040016#include <acpi/acpi.h>
Felix Held060b8ad2021-02-05 22:51:33 +010017#include <device/device.h>
18#include <soc/cpu.h>
Felix Held7aacdd12021-02-10 23:27:47 +010019#include <soc/iomap.h>
Felix Heldd27ef5b2021-10-20 20:18:12 +020020#include <types.h>
Felix Held7aacdd12021-02-10 23:27:47 +010021
Felix Held79f705f2021-04-22 17:08:50 +020022_Static_assert(CONFIG_MAX_CPUS == 16, "Do not override MAX_CPUS. To reduce the number of "
23 "available cores, use the downcore_mode and disable_smt devicetree settings instead.");
24
Felix Held7aacdd12021-02-10 23:27:47 +010025/* MP and SMM loading initialization */
26
27/*
28 * Do essential initialization tasks before APs can be fired up -
29 *
30 * 1. Prevent race condition in MTRR solution. Enable MTRRs on the BSP. This
31 * creates the MTRR solution that the APs will use. Otherwise APs will try to
32 * apply the incomplete solution as the BSP is calculating it.
33 */
34static void pre_mp_init(void)
35{
Arthur Heymans615818f2022-05-31 21:33:43 +020036 const msr_t syscfg = rdmsr(SYSCFG_MSR);
37 if (syscfg.lo & SYSCFG_MSR_TOM2WB)
38 x86_setup_mtrrs_with_detect_no_above_4gb();
39 else
40 x86_setup_mtrrs_with_detect();
Felix Held7aacdd12021-02-10 23:27:47 +010041 x86_mtrr_check();
42}
43
Felix Held7aacdd12021-02-10 23:27:47 +010044static const struct mp_ops mp_ops = {
45 .pre_mp_init = pre_mp_init,
46 .get_cpu_count = get_cpu_count,
47 .get_smm_info = get_smm_info,
48 .relocation_handler = smm_relocation_handler,
Arthur Heymansa19bc342022-05-31 21:25:53 +020049 .post_mp_init = global_smi_enable,
Felix Held7aacdd12021-02-10 23:27:47 +010050};
Felix Held060b8ad2021-02-05 22:51:33 +010051
Felix Heldb2d8a5c2021-02-10 16:17:13 +010052void mp_init_cpus(struct bus *cpu_bus)
53{
Felix Held28a0a142021-11-02 17:15:58 +010054 if (mp_init_with_smm(cpu_bus, &mp_ops) != CB_SUCCESS)
55 die_with_post_code(POST_HW_INIT_FAILURE,
56 "mp_init_with_smm failed. Halting.\n");
Felix Held7aacdd12021-02-10 23:27:47 +010057
58 /* pre_mp_init made the flash not cacheable. Reset to WP for performance. */
Felix Held199b10f2022-08-13 00:29:23 +020059 mtrr_use_temp_range(FLASH_BELOW_4GB_MAPPING_REGION_BASE,
60 FLASH_BELOW_4GB_MAPPING_REGION_SIZE, MTRR_TYPE_WRPROT);
Arthur Heymansa19bc342022-05-31 21:25:53 +020061
62 /* SMMINFO only needs to be set up when booting from S5 */
63 if (!acpi_is_wakeup_s3())
64 apm_control(APM_CNT_SMMINFO);
Felix Heldb2d8a5c2021-02-10 16:17:13 +010065}
66
Felix Held060b8ad2021-02-05 22:51:33 +010067static void zen_2_3_init(struct device *dev)
68{
Felix Helda24472a2021-07-13 18:21:27 +020069 check_mca();
Felix Heldaa77d132021-02-10 16:13:56 +010070 set_cstate_io_addr();
Raul E Rangel35dc4b02021-02-12 16:04:27 -070071
72 amd_update_microcode_from_cbfs();
Felix Held060b8ad2021-02-05 22:51:33 +010073}
74
75static struct device_operations cpu_dev_ops = {
76 .init = zen_2_3_init,
77};
78
79static struct cpu_device_id cpu_table[] = {
80 { X86_VENDOR_AMD, CEZANNE_A0_CPUID},
81 { 0, 0 },
82};
83
84static const struct cpu_driver zen_2_3 __cpu_driver = {
85 .ops = &cpu_dev_ops,
86 .id_table = cpu_table,
87};