1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/mmio.h>
5 #include <console/console.h>
6 #include <cpu/x86/smm.h>
7 #include <device/pci.h>
9 #include <intelblocks/cse.h>
10 #include <intelblocks/lpc_lib.h>
11 #include <intelblocks/pcr.h>
12 #include <intelblocks/pmclib.h>
13 #include <intelblocks/systemagent.h>
14 #include <intelblocks/tco.h>
15 #include <intelblocks/thermal.h>
16 #include <spi-generic.h>
17 #include <intelpch/lockdown.h>
19 #include <soc/pci_devs.h>
20 #include <soc/pcr_ids.h>
22 #include <soc/smbus.h>
23 #include <soc/soc_chip.h>
24 #include <soc/systemagent.h>
26 static void pch_handle_sideband(config_t
*config
)
30 static void pch_finalize(void)
32 config_t
*config
= config_of_soc();
37 /* TODO: Add Thermal Configuration */
39 pch_handle_sideband(config
);
41 pmc_clear_pmcon_sts();
44 static void tbt_finalize(void)
47 const struct device
*dev
;
49 /* Disable Thunderbolt PCIe root ports bus master */
50 for (i
= 0; i
< NUM_TBT_FUNCTIONS
; i
++) {
51 dev
= pcidev_path_on_root(PCI_DEVFN_TBT(i
));
53 pci_dev_disable_bus_master(dev
);
57 static void sa_finalize(void)
59 if (get_lockdown_config() == CHIPSET_LOCKDOWN_COREBOOT
)
63 static void heci_finalize(void)
66 if (CONFIG(DISABLE_HECI1_AT_PRE_BOOT
))
70 static void soc_finalize(void *unused
)
72 printk(BIOS_DEBUG
, "Finalizing chipset.\n");
75 apm_control(APM_CNT_FINALIZE
);
78 if (CONFIG(USE_FSP_NOTIFY_PHASE_READY_TO_BOOT
) &&
79 CONFIG(USE_FSP_NOTIFY_PHASE_END_OF_FIRMWARE
))
82 /* Indicate finalize step with post code */
83 post_code(POSTCODE_OS_BOOT
);
86 BOOT_STATE_INIT_ENTRY(BS_OS_RESUME
, BS_ON_ENTRY
, soc_finalize
, NULL
);
88 * The purpose of this change is to accommodate more time to push out sending
89 * CSE EOP messages at post.
91 BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT
, BS_ON_ENTRY
, soc_finalize
, NULL
);