summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@puri.sm>2020-10-01 15:31:46 -0500
committerPatrick Georgi <pgeorgi@google.com>2020-10-12 08:41:29 +0000
commitf81944f9c9357880a26594556d09da46db05103a (patch)
treeeb832cbde0ca49fa8298acad3ecacf0b554504b5 /util
parent60a208e43fada59ed9f2e342ebab84771b37968c (diff)
downloadcoreboot-f81944f9c9357880a26594556d09da46db05103a.tar.gz
coreboot-f81944f9c9357880a26594556d09da46db05103a.tar.bz2
coreboot-f81944f9c9357880a26594556d09da46db05103a.zip
intelmetool: Add PCI ID for Cometlake-U
Tested on out-of-tree CML-U Purism board Change-Id: I0371e913a75e47b8e6f5a3e4da47b1e401a72b5d Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45929 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/intelmetool/intelmetool.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/intelmetool/intelmetool.h b/util/intelmetool/intelmetool.h
index bab661f9ae7c..d6dd3b2d1e0b 100644
--- a/util/intelmetool/intelmetool.h
+++ b/util/intelmetool/intelmetool.h
@@ -426,6 +426,7 @@ extern int debug;
#define PCI_DEVICE_ID_INTEL_WILDCAT_2 0x9CBB /* Wildcat Point LP 2 */
#define PCI_DEVICE_ID_INTEL_SUNRISE_LP 0x9d3a /* SUNRISE Point-LP */
#define PCI_DEVICE_ID_INTEL_CANNONPOINT_LP 0x9de0 /* Cannon Point-LP */
+#define PCI_DEVICE_ID_INTEL_COMETPOINT_LP 0x02e0 /* Comet Point-LP (Cometlake-U) */
#define PCI_DEVICE_ID_INTEL_SUNRISE_H1_ME 0xa13a /* SUNRISE Point-H 1 */
#define PCI_DEVICE_ID_INTEL_SUNRISE_H2_ME 0xa13b /* SUNRISE Point-H 2 */
#define PCI_DEVICE_ID_INTEL_SUNRISE_H3_ME 0xA13E /* SUNRISE Point-H 3 */
@@ -479,6 +480,7 @@ extern int debug;
((x) == PCI_DEVICE_ID_INTEL_WILDCAT_2) || \
((x) == PCI_DEVICE_ID_INTEL_SUNRISE_LP) || \
((x) == PCI_DEVICE_ID_INTEL_CANNONPOINT_LP) || \
+ ((x) == PCI_DEVICE_ID_INTEL_COMETPOINT_LP) || \
((x) == PCI_DEVICE_ID_INTEL_SUNRISE_H1_ME) || \
((x) == PCI_DEVICE_ID_INTEL_SUNRISE_H2_ME) || \
((x) == PCI_DEVICE_ID_INTEL_SUNRISE_H3_ME) || \