1 /* SPDX-License-Identifier: GPL-2.0-only */
4 * This file is created based on Intel Tiger Lake Processor CPU Datasheet
5 * Document number: 575683
9 #include <device/pci.h>
10 #include <cpu/x86/mp.h>
11 #include <cpu/x86/msr.h>
12 #include <cpu/intel/smm_reloc.h>
13 #include <cpu/intel/turbo.h>
14 #include <cpu/intel/common/common.h>
16 #include <intelblocks/cpulib.h>
17 #include <intelblocks/mp_init.h>
18 #include <intelblocks/msr.h>
21 #include <soc/pci_devs.h>
22 #include <soc/soc_chip.h>
26 bool cpu_soc_is_in_untrusted_mode(void)
30 msr
= rdmsr(MSR_BIOS_DONE
);
31 return !!(msr
.lo
& ENABLE_IA_UNTRUSTED
);
34 void cpu_soc_bios_done(void)
38 msr
= rdmsr(MSR_BIOS_DONE
);
39 msr
.lo
|= ENABLE_IA_UNTRUSTED
;
40 wrmsr(MSR_BIOS_DONE
, msr
);
43 static void soc_fsp_load(void)
48 static void configure_misc(void)
52 config_t
*conf
= config_of_soc();
54 msr
= rdmsr(IA32_MISC_ENABLE
);
55 msr
.lo
|= (1 << 0); /* Fast String enable */
56 msr
.lo
|= (1 << 3); /* TM1/TM2/EMTTM enable */
57 wrmsr(IA32_MISC_ENABLE
, msr
);
60 cpu_set_eist(conf
->eist_enable
);
62 /* Disable Thermal interrupts */
65 wrmsr(IA32_THERM_INTERRUPT
, msr
);
67 /* Enable package critical interrupt only */
70 wrmsr(IA32_PACKAGE_THERM_INTERRUPT
, msr
);
73 msr
= rdmsr(MSR_POWER_CTL
);
74 msr
.lo
|= (1 << 0); /* Enable Bi-directional PROCHOT as an input */
75 msr
.lo
|= (1 << 23); /* Lock it */
76 wrmsr(MSR_POWER_CTL
, msr
);
79 /* All CPUs including BSP will run the following function. */
80 void soc_core_init(struct device
*cpu
)
82 /* Clear out pending MCEs */
83 /* TODO(adurbin): This should only be done on a cold boot. Also, some
84 * of these banks are core vs package scope. For now every CPU clears
90 /* Configure Enhanced SpeedStep and Thermal Sensors */
93 enable_pm_timer_emulation();
95 /* Enable Direct Cache Access */
98 /* Set energy policy */
99 set_energy_perf_bias(ENERGY_POLICY_NORMAL
);
105 static void per_cpu_smm_trigger(void)
107 /* Relocate the SMM handler. */
111 static void post_mp_init(void)
117 * 1. Now that all APs have been relocated as well as the BSP let SMIs
119 * 2. Skip enabling power button SMI and enable it after BS_CHIPS_INIT
120 * to avoid shutdown hang due to lack of init on certain IP in FSP-S.
122 global_smi_enable_no_pwrbtn();
125 static const struct mp_ops mp_ops
= {
127 * Skip Pre MP init MTRR programming as MTRRs are mirrored from BSP,
128 * that are set prior to ramstage.
129 * Real MTRRs programming are being done after resource allocation.
131 .pre_mp_init
= soc_fsp_load
,
132 .get_cpu_count
= get_cpu_count
,
133 .get_smm_info
= smm_info
,
134 .get_microcode_info
= get_microcode_info
,
135 .pre_mp_smm_init
= smm_initialize
,
136 .per_cpu_smm_trigger
= per_cpu_smm_trigger
,
137 .relocation_handler
= smm_relocation_handler
,
138 .post_mp_init
= post_mp_init
,
141 void mp_init_cpus(struct bus
*cpu_bus
)
143 /* TODO: Handle mp_init_with_smm failure? */
144 mp_init_with_smm(cpu_bus
, &mp_ops
);
146 /* Thermal throttle activation offset */
147 configure_tcc_thermal_target();