1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <console/console.h>
5 #include <console/debug.h>
6 #include <cpu/x86/mp.h>
7 #include <cpu/x86/smm.h>
8 #include <device/pci.h>
9 #include <intelpch/lockdown.h>
11 #include <soc/pci_devs.h>
14 #include <soc/soc_util.h>
15 #include <smp/spinlock.h>
19 DECLARE_SPIN_LOCK(msr_ppin_lock
);
21 static void lock_msr_ppin_ctl(void *unused
)
25 msr
= rdmsr(MSR_PLATFORM_INFO
);
26 if ((msr
.lo
& MSR_PPIN_CAP
) == 0)
29 spin_lock(&msr_ppin_lock
);
31 msr
= rdmsr(MSR_PPIN_CTL
);
32 if (msr
.lo
& MSR_PPIN_CTL_LOCK
) {
33 spin_unlock(&msr_ppin_lock
);
37 /* Clear enable and lock it */
38 msr
.lo
&= ~MSR_PPIN_CTL_ENABLE
;
39 msr
.lo
|= MSR_PPIN_CTL_LOCK
;
40 wrmsr(MSR_PPIN_CTL
, msr
);
42 spin_unlock(&msr_ppin_lock
);
45 static void soc_finalize(void *unused
)
47 printk(BIOS_DEBUG
, "Finalizing chipset.\n");
50 * Disable ACPI PM timer based on Kconfig
52 * Disabling ACPI PM timer is necessary for XTAL OSC shutdown.
53 * Disabling ACPI PM timer also switches off TCO.
55 * Note: In contrast to other platforms supporting PM timer emulation,
56 * disabling the PM timer must be done *after* FSP has run on Xeon-SP,
57 * because FSP makes use of the PM timer.
59 if (!CONFIG(USE_PM_ACPI_TIMER
))
60 setbits8(pmc_mmio_regs() + PCH_PWRM_ACPI_TMR_CTL
, ACPI_TIM_DIS
);
62 apm_control(APM_CNT_FINALIZE
);
64 if (CONFIG_MAX_SOCKET
> 1) {
65 /* This MSR is package scope but run for all cpus for code simplicity */
66 if (mp_run_on_all_cpus(&lock_msr_ppin_ctl
, NULL
) != CB_SUCCESS
)
67 printk(BIOS_ERR
, "Lock PPIN CTL MSR failed\n");
69 lock_msr_ppin_ctl(NULL
);
72 post_code(POSTCODE_OS_BOOT
);
75 static void bios_done_finalize(void *unused
)
77 if (!CONFIG(SOC_INTEL_HAS_BIOS_DONE_MSR
))
80 printk(BIOS_DEBUG
, "Setting BIOS_DONE\n");
81 /* bios_done_msr() only defined for some Xeon-SP, such as SPR-SP */
82 if (mp_run_on_all_cpus(&bios_done_msr
, NULL
) != CB_SUCCESS
)
83 printk(BIOS_ERR
, "Fail to set BIOS_DONE MSR\n");
86 BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD
, BS_ON_ENTRY
, soc_finalize
, NULL
);
87 /* FSP programs certain registers via Notify phase ReadyToBoot that can only be programmed
88 before BIOS_DONE MSR is set, so coreboot sets BIOS_DONE as late as possible. */
89 BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT
, BS_ON_ENTRY
, bios_done_finalize
, NULL
);