2020-12-04 01:15:15 +00:00
|
|
|
From ce401513ac08b0c5b121e0f9c4bb38ee6e99a47d Mon Sep 17 00:00:00 2001
|
2020-09-02 18:39:37 +00:00
|
|
|
From: Matt DeVillier <matt.devillier@puri.sm>
|
|
|
|
Date: Fri, 19 Jun 2020 17:02:22 -0500
|
|
|
|
Subject: [PATCH] soc/cannonlake/me.c: Always print ME status
|
|
|
|
|
|
|
|
Print the ME status even if the CSE device is disabled, so
|
|
|
|
we know which disabled state it's in.
|
|
|
|
|
|
|
|
Change-Id: I939333199aa699039fec727beb094e4eb2ad7149
|
|
|
|
Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
|
|
|
|
---
|
|
|
|
src/soc/intel/cannonlake/me.c | 3 ---
|
|
|
|
1 file changed, 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/src/soc/intel/cannonlake/me.c b/src/soc/intel/cannonlake/me.c
|
2020-12-04 01:15:15 +00:00
|
|
|
index 7bbe1ae730..4fe5a96ade 100644
|
2020-09-02 18:39:37 +00:00
|
|
|
--- a/src/soc/intel/cannonlake/me.c
|
|
|
|
+++ b/src/soc/intel/cannonlake/me.c
|
|
|
|
@@ -103,9 +103,6 @@ void dump_me_status(void *unused)
|
|
|
|
union me_hfsts5 hfsts5;
|
|
|
|
union me_hfsts6 hfsts6;
|
|
|
|
|
|
|
|
- if (!is_cse_enabled())
|
|
|
|
- return;
|
|
|
|
-
|
|
|
|
hfsts1.data = me_read_config32(PCI_ME_HFSTS1);
|
2020-12-04 01:15:15 +00:00
|
|
|
hfsts2.data = me_read_config32(PCI_ME_HFSTS2);
|
2020-09-02 18:39:37 +00:00
|
|
|
hfsts3.data = me_read_config32(PCI_ME_HFSTS3);
|
|
|
|
--
|
|
|
|
2.20.1
|
|
|
|
|