/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include #include #include #include #include #include #include "chip.h" static void lock_pam0123(void) { const struct device *dev; if (get_lockdown_config() != CHIPSET_LOCKDOWN_COREBOOT) return; dev = pcidev_path_on_bus(get_stack_busno(1), PCI_DEVFN(SAD_ALL_DEV, SAD_ALL_FUNC)); pci_or_config32(dev, SAD_ALL_PAM0123_CSR, PAM_LOCK); } static void soc_finalize(void *unused) { printk(BIOS_DEBUG, "Finalizing chipset.\n"); /* * Disable ACPI PM timer based on Kconfig * * Disabling ACPI PM timer is necessary for XTAL OSC shutdown. * Disabling ACPI PM timer also switches off TCO. * * Note: In contrast to other platforms supporting PM timer emulation, * disabling the PM timer must be done *after* FSP has run on Xeon-SP, * because FSP makes use of the PM timer. */ if (!CONFIG(USE_PM_ACPI_TIMER)) setbits8(pmc_mmio_regs() + PCH_PWRM_ACPI_TMR_CTL, ACPI_TIM_DIS); apm_control(APM_CNT_FINALIZE); lock_pam0123(); post_code(POST_OS_BOOT); } BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_ENTRY, soc_finalize, NULL);