summaryrefslogtreecommitdiffstats
path: root/util/intelmetool
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-07-26 03:43:04 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-28 18:22:27 +0000
commitb82486496d8e1727b9cbb8a42e87cf09400ffe1c (patch)
treec6321bf1fdc925a8268fb64cc9d9ab169f8976dd /util/intelmetool
parent68eef53ead66451e2a50af7fe4b5b1759f3d6e29 (diff)
downloadcoreboot-b82486496d8e1727b9cbb8a42e87cf09400ffe1c.tar.gz
coreboot-b82486496d8e1727b9cbb8a42e87cf09400ffe1c.tar.bz2
coreboot-b82486496d8e1727b9cbb8a42e87cf09400ffe1c.zip
intelmetool: Add PCI ID for Bay Trail
Tested on a Dell Venue 8 Pro tablet Change-Id: Ic8f162ea82b910082af4b4e05fa1408fd24f2c88 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66141 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/intelmetool')
-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 d6dd3b2d1e0b..02c99884248d 100644
--- a/util/intelmetool/intelmetool.h
+++ b/util/intelmetool/intelmetool.h
@@ -437,6 +437,7 @@ extern int debug;
#define PCI_DEVICE_ID_INTEL_LEWISBURG_IE2 0xA1F9 /* IE Lewisburg #2 */
#define PCI_DEVICE_ID_INTEL_LEWISBURG_IE3 0xA1FC /* IE Lewisburg #3 */
#define PCI_DEVICE_ID_INTEL_CANNONLAKE 0xA360 /* Cannon Lake */
+#define PCI_DEVICE_ID_INTEL_BAYTRAIL 0x0F18 /* Bay Trail */
#define PCI_DEV_HAS_SUPPORTED_ME(x) ( \
((x) == PCI_DEVICE_ID_INTEL_COUGARPOINT_1) || \
@@ -491,4 +492,5 @@ extern int debug;
((x) == PCI_DEVICE_ID_INTEL_LEWISBURG_IE2) || \
((x) == PCI_DEVICE_ID_INTEL_LEWISBURG_IE3) || \
((x) == PCI_DEVICE_ID_INTEL_CANNONLAKE) || \
+ ((x) == PCI_DEVICE_ID_INTEL_BAYTRAIL) || \
0)