summaryrefslogtreecommitdiff
path: root/src/soc/intel/tigerlake/me.c
diff options
context:
space:
mode:
authorDinesh Gehlot <digehlot@google.com>2023-01-24 12:07:36 +0000
committerEric Lai <eric_lai@quanta.corp-partner.google.com>2023-02-04 00:49:23 +0000
commitab7b892ad1c0d1dee468b6d6ff3b9229a33bcbe5 (patch)
tree71b0c385de7ae92d81a1cded99c87e104467d169 /src/soc/intel/tigerlake/me.c
parent64e2ecb36fd1d7b289cd9671dcfae2e335528d81 (diff)
soc/intel/tgl: Move ME FSR structures to pertinent header
This patch moves ME host firmware status register structures to ME header file. It also marks unused structure fields to reserved. The idea here is to decouple ME specification defined structures from the source file `.c` and keep those into header files so that in future those spec defined header can move into common code. The current and future SoC platform will be able to select the correct ME spec header based on the applicable config. It might be also beneficial if two different SoC platforms would like to use the same ME specification and not necessarily share the same SoC directory. BUG=b:260309647 Test=Able to build and boot. Signed-off-by: Dinesh Gehlot <digehlot@google.com> Change-Id: Ib96fcb86fd2c3fe16f23c8f038f4930a832a5b01 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72416 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/intel/tigerlake/me.c')
-rw-r--r--src/soc/intel/tigerlake/me.c84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/soc/intel/tigerlake/me.c b/src/soc/intel/tigerlake/me.c
index 560464fac4..e953844481 100644
--- a/src/soc/intel/tigerlake/me.c
+++ b/src/soc/intel/tigerlake/me.c
@@ -6,90 +6,6 @@
#include <soc/me.h>
#include <types.h>
-/* Host Firmware Status Register 2 */
-union me_hfsts2 {
- uint32_t data;
- struct {
- uint32_t nftp_load_failure : 1;
- uint32_t icc_prog_status : 2;
- uint32_t invoke_mebx : 1;
- uint32_t cpu_replaced : 1;
- uint32_t rsvd0 : 1;
- uint32_t mfs_failure : 1;
- uint32_t warm_reset_rqst : 1;
- uint32_t cpu_replaced_valid : 1;
- uint32_t low_power_state : 1;
- uint32_t me_power_gate : 1;
- uint32_t ipu_needed : 1;
- uint32_t forced_safe_boot : 1;
- uint32_t rsvd1 : 2;
- uint32_t listener_change : 1;
- uint32_t status_data : 8;
- uint32_t current_pmevent : 4;
- uint32_t phase : 4;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 4 */
-union me_hfsts4 {
- uint32_t data;
- struct {
- uint32_t rsvd0 : 9;
- uint32_t enforcement_flow : 1;
- uint32_t sx_resume_type : 1;
- uint32_t rsvd1 : 1;
- uint32_t tpms_disconnected : 1;
- uint32_t rvsd2 : 1;
- uint32_t fwsts_valid : 1;
- uint32_t boot_guard_self_test : 1;
- uint32_t rsvd3 : 16;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 5 */
-union me_hfsts5 {
- uint32_t data;
- struct {
- uint32_t acm_active : 1;
- uint32_t valid : 1;
- uint32_t result_code_source : 1;
- uint32_t error_status_code : 5;
- uint32_t acm_done_sts : 1;
- uint32_t timeout_count : 7;
- uint32_t scrtm_indicator : 1;
- uint32_t inc_boot_guard_acm : 4;
- uint32_t inc_key_manifest : 4;
- uint32_t inc_boot_policy : 4;
- uint32_t rsvd0 : 2;
- uint32_t start_enforcement : 1;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 6 */
-union me_hfsts6 {
- uint32_t data;
- struct {
- uint32_t force_boot_guard_acm : 1;
- uint32_t cpu_debug_disable : 1;
- uint32_t bsp_init_disable : 1;
- uint32_t protect_bios_env : 1;
- uint32_t rsvd0 : 2;
- uint32_t error_enforce_policy : 2;
- uint32_t measured_boot : 1;
- uint32_t verified_boot : 1;
- uint32_t boot_guard_acmsvn : 4;
- uint32_t kmsvn : 4;
- uint32_t bpmsvn : 4;
- uint32_t key_manifest_id : 4;
- uint32_t boot_policy_status : 1;
- uint32_t error : 1;
- uint32_t boot_guard_disable : 1;
- uint32_t fpf_disable : 1;
- uint32_t fpf_soc_lock : 1;
- uint32_t txt_support : 1;
- } __packed fields;
-};
-
static void dump_me_status(void *unused)
{
union me_hfsts1 hfsts1;