summaryrefslogtreecommitdiff
path: root/util/intelmetool
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@puri.sm>2017-09-29 17:02:05 -0400
committerMartin Roth <martinroth@google.com>2017-10-22 01:49:04 +0000
commit5b8f2c7823729a0185a25fd90f5741374a0dfe10 (patch)
treea8f8709b37b61fa260f10ef14db1c1bcd6252603 /util/intelmetool
parente0603e318389986a4f388bf8d3f7bca6d53d7956 (diff)
downloadcoreboot-5b8f2c7823729a0185a25fd90f5741374a0dfe10.tar.xz
intelmetool: Add support for Sunrise Point LP
This was tested on Librem 13 v2. Change-Id: I4b56ed8a8a394da2ac5e4bfde6916aa1d39b2654 Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm> Reviewed-on: https://review.coreboot.org/21961 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/intelmetool')
-rw-r--r--util/intelmetool/intelmetool.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/intelmetool/intelmetool.h b/util/intelmetool/intelmetool.h
index d29289d48f..a8d04678bb 100644
--- a/util/intelmetool/intelmetool.h
+++ b/util/intelmetool/intelmetool.h
@@ -239,6 +239,7 @@ extern int debug;
#define PCI_DEVICE_ID_INTEL_WILDCAT_2 0x9CBB /* Wildcat Point LP 2 */
#define PCI_DEVICE_ID_INTEL_SUNRISE_H1 0xa13a /* SUNRISE Point-H 1 */
#define PCI_DEVICE_ID_INTEL_SUNRISE_H2 0xa13b /* SUNRISE Point-H 2 */
+#define PCI_DEVICE_ID_INTEL_SUNRISE_LP 0x9d3a /* SUNRISE Point-LP */
#define PCI_DEV_HAS_SUPPORTED_ME(x) ( \
( (x) == PCI_DEVICE_ID_INTEL_COUGARPOINT_1 ) || \
@@ -281,4 +282,5 @@ extern int debug;
( (x) == PCI_DEVICE_ID_INTEL_WILDCAT_1 ) || \
( (x) == PCI_DEVICE_ID_INTEL_WILDCAT_2 ) || \
( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_H1 ) || \
- ( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_H2))
+ ( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_H2 ) || \
+ ( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_LP))