blob: ada0e92fab7ec4bf3822cae54eddb601460437cc [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
43static void post_mp_init(void)
44{
45 global_smi_enable();
Fred Reitberger8e3c6f82022-03-23 09:59:01 -040046
47 /* SMMINFO only needs to be set up when booting from S5 */
48 if (!acpi_is_wakeup_s3())
49 apm_control(APM_CNT_SMMINFO);
Felix Held7aacdd12021-02-10 23:27:47 +010050}
51
52static const struct mp_ops mp_ops = {
53 .pre_mp_init = pre_mp_init,
54 .get_cpu_count = get_cpu_count,
55 .get_smm_info = get_smm_info,
56 .relocation_handler = smm_relocation_handler,
57 .post_mp_init = post_mp_init,
58};
Felix Held060b8ad2021-02-05 22:51:33 +010059
Felix Heldb2d8a5c2021-02-10 16:17:13 +010060void mp_init_cpus(struct bus *cpu_bus)
61{
Felix Held28a0a142021-11-02 17:15:58 +010062 if (mp_init_with_smm(cpu_bus, &mp_ops) != CB_SUCCESS)
63 die_with_post_code(POST_HW_INIT_FAILURE,
64 "mp_init_with_smm failed. Halting.\n");
Felix Held7aacdd12021-02-10 23:27:47 +010065
66 /* pre_mp_init made the flash not cacheable. Reset to WP for performance. */
67 mtrr_use_temp_range(FLASH_BASE_ADDR, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT);
Felix Heldb2d8a5c2021-02-10 16:17:13 +010068}
69
Felix Held060b8ad2021-02-05 22:51:33 +010070static void zen_2_3_init(struct device *dev)
71{
Felix Helda24472a2021-07-13 18:21:27 +020072 check_mca();
Felix Heldaa77d132021-02-10 16:13:56 +010073 set_cstate_io_addr();
Raul E Rangel35dc4b02021-02-12 16:04:27 -070074
75 amd_update_microcode_from_cbfs();
Felix Held060b8ad2021-02-05 22:51:33 +010076}
77
78static struct device_operations cpu_dev_ops = {
79 .init = zen_2_3_init,
80};
81
82static struct cpu_device_id cpu_table[] = {
83 { X86_VENDOR_AMD, CEZANNE_A0_CPUID},
84 { 0, 0 },
85};
86
87static const struct cpu_driver zen_2_3 __cpu_driver = {
88 .ops = &cpu_dev_ops,
89 .id_table = cpu_table,
90};