mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-24 23:26:44 +00:00
268fb90623
* patches/coreboot-4.12: Add patch for Cannonlake ME status Add patch print ME status regardless of enablement state Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * modules: add purism-blobs module Rather than require users to manually run a script to download the required blobs to build Purism Librem boards, automate it so the correct version is automatically downloaded/extracted. Restrict to coreboot 4.12 for now since 4.8.1 still needs FSP blobs, which are not in module. Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * configs/linux-librem13v2: unset CONFIG_RETPOLINE Fixes compilation issue with newer kernels, ignored by older ones which don't need it Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * Add new board: Librem Mini Add Librem Mini board patch for coreboot 4.12, board config and coreboot config. Continue reusing existing librem13v2 Linux config, same as all other Librem boards currently. Use new purism-blobs module. Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * board/librem*: rename for consistency Use 'librem_<board>' notation for consistency across all models. Rename linux config file since used by multiple Librem models. Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * CircleCI: add librem_mini board to test Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
32 lines
986 B
Diff
32 lines
986 B
Diff
From 32e60b698d33eec419bf0e4865ece7b86ea1355a Mon Sep 17 00:00:00 2001
|
|
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
|
|
index a51b702e6a..3fae0bf534 100644
|
|
--- 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);
|
|
hfsts2.raw = me_read_config32(PCI_ME_HFSTS2);
|
|
hfsts3.data = me_read_config32(PCI_ME_HFSTS3);
|
|
--
|
|
2.20.1
|
|
|