mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git] / src / soc / intel / apollolake / heci.c
blob52dcca8de288f1f47a5a7991ff62d2d2eddc9609
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <device/device.h>
4 #include <device/pci_def.h>
5 #include <device/pci_ops.h>
6 #include <soc/heci.h>
7 #include <soc/pci_devs.h>
9 uint32_t heci_fw_sts(void)
11 return pci_read_config32(PCH_DEV_CSE, REG_SEC_FW_STS0);
14 bool heci_cse_normal(void)
16 return ((heci_fw_sts() & MASK_SEC_STATUS) == SEC_STATE_NORMAL);
19 bool heci_cse_done(void)
21 return (!!(heci_fw_sts() & MASK_SEC_FIRMWARE_COMPLETE));