/* SPDX-License-Identifier: GPL-2.0-or-later */ #include #include #include #include #include uint32_t heci_fw_sts(void) { return pci_read_config32(PCH_DEV_CSE, REG_SEC_FW_STS0); } bool heci_cse_normal(void) { return ((heci_fw_sts() & MASK_SEC_STATUS) == SEC_STATE_NORMAL); } bool heci_cse_done(void) { return (!!(heci_fw_sts() & MASK_SEC_FIRMWARE_COMPLETE)); }