openrc@posteo.de has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85867?usp=email )
Change subject: util/intelmetool: Add Ice Lake support ......................................................................
util/intelmetool: Add Ice Lake support
Change-Id: I11045c6456e73057719a9811f5bb4e4ca4fb4543 Signed-off-by: libreandre openrc@posteo.de --- M util/intelmetool/intelmetool.h 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/85867/1
diff --git a/util/intelmetool/intelmetool.h b/util/intelmetool/intelmetool.h index 3946f95..e4d012a 100644 --- a/util/intelmetool/intelmetool.h +++ b/util/intelmetool/intelmetool.h @@ -457,6 +457,7 @@ #define PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI1 0xA2BA /* Union Point MEI #1 */ #define PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI2 0xA2BB /* Union Point MEI #2 */ #define PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI3 0xA2BE /* Union Point MEI #3 */ +#define PCI_DEVICE_ID_INTEL_ICELAKE 0x34E0 /* Ice Lake */
#define PCI_DEV_HAS_SUPPORTED_ME(x) ( \ ((x) == PCI_DEVICE_ID_INTEL_COUGARPOINT_1) || \ @@ -515,4 +516,5 @@ ((x) == PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI1) || \ ((x) == PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI2) || \ ((x) == PCI_DEVICE_ID_INTEL_UNIONPOINT_MEI3) || \ + ((x) == PCI_DEVICE_ID_INTEL_ICELAKE) || \ 0)