blob: 440b5ba28b9b1d95937b2707eb6c167bcd7de5ca [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>
Felix Held060b8ad2021-02-05 22:51:33 +010010#include <cpu/cpu.h>
Felix Heldaa77d132021-02-10 16:13:56 +010011#include <cpu/x86/lapic.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>
Felix Held060b8ad2021-02-05 22:51:33 +010015#include <device/device.h>
16#include <soc/cpu.h>
Felix Held7aacdd12021-02-10 23:27:47 +010017#include <soc/iomap.h>
Felix Heldd27ef5b2021-10-20 20:18:12 +020018#include <types.h>
Felix Held7aacdd12021-02-10 23:27:47 +010019
Felix Held79f705f2021-04-22 17:08:50 +020020_Static_assert(CONFIG_MAX_CPUS == 16, "Do not override MAX_CPUS. To reduce the number of "
21 "available cores, use the downcore_mode and disable_smt devicetree settings instead.");
22
Felix Held7aacdd12021-02-10 23:27:47 +010023/* MP and SMM loading initialization */
24
25/*
26 * Do essential initialization tasks before APs can be fired up -
27 *
28 * 1. Prevent race condition in MTRR solution. Enable MTRRs on the BSP. This
29 * creates the MTRR solution that the APs will use. Otherwise APs will try to
30 * apply the incomplete solution as the BSP is calculating it.
31 */
32static void pre_mp_init(void)
33{
34 x86_setup_mtrrs_with_detect_no_above_4gb();
35 x86_mtrr_check();
36}
37
38static void post_mp_init(void)
39{
40 global_smi_enable();
41 apm_control(APM_CNT_SMMINFO);
42}
43
44static 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,
49 .post_mp_init = post_mp_init,
50};
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. */
59 mtrr_use_temp_range(FLASH_BASE_ADDR, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT);
Felix Heldb2d8a5c2021-02-10 16:17:13 +010060}
61
Felix Held060b8ad2021-02-05 22:51:33 +010062static void zen_2_3_init(struct device *dev)
63{
Felix Helda24472a2021-07-13 18:21:27 +020064 check_mca();
Felix Heldaa77d132021-02-10 16:13:56 +010065 setup_lapic();
66 set_cstate_io_addr();
Raul E Rangel35dc4b02021-02-12 16:04:27 -070067
68 amd_update_microcode_from_cbfs();
Felix Held060b8ad2021-02-05 22:51:33 +010069}
70
71static struct device_operations cpu_dev_ops = {
72 .init = zen_2_3_init,
73};
74
75static struct cpu_device_id cpu_table[] = {
76 { X86_VENDOR_AMD, CEZANNE_A0_CPUID},
77 { 0, 0 },
78};
79
80static const struct cpu_driver zen_2_3 __cpu_driver = {
81 .ops = &cpu_dev_ops,
82 .id_table = cpu_table,
83};