diff options
author | Jonathan Zhang <jonzhang@fb.com> | 2021-05-03 14:06:22 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-05-10 14:13:10 +0000 |
commit | 4caa05e4ce566473d408831f06d958789f55c245 (patch) | |
tree | ca26f9c556c8a421361f10a933e355853cf59fee | |
parent | b18e194257c6bb5ffd0d18d3c4a5900286f5397a (diff) | |
download | coreboot-4caa05e4ce566473d408831f06d958789f55c245.tar.xz |
inteltool: add initial support for Emmits Burg PCH
Signed-off-by: Jonathan Zhang <jonzhang@fb.com>
Change-Id: I6a4027bf51b3a189e64211e77621b3dd6c80b00d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52864
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Maxim Polyakov <max.senia.poliak@gmail.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
-rw-r--r-- | util/inteltool/inteltool.c | 1 | ||||
-rw-r--r-- | util/inteltool/inteltool.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c index e807cb148d..7cff80f754 100644 --- a/util/inteltool/inteltool.c +++ b/util/inteltool/inteltool.c @@ -292,6 +292,7 @@ static const struct { { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_C621_SUPER, "C621 Super SKU" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_C627_SUPER_2, "C627 Super SKU" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_C628_SUPER, "C628 Super SKU" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EBG, "Emmits Burg" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_H310, "H310" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_H370, "H370" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_Z390, "Z390" }, diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index c362550fa5..678aa47871 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -183,6 +183,8 @@ static inline uint32_t inl(unsigned port) #define PCI_DEVICE_ID_INTEL_C627A_SUPER 0xa24b #define PCI_DEVICE_ID_INTEL_C629A_SUPER 0xa24c +#define PCI_DEVICE_ID_INTEL_EBG 0x1b81 + #define PCI_DEVICE_ID_INTEL_H310 0xa303 #define PCI_DEVICE_ID_INTEL_H370 0xa304 #define PCI_DEVICE_ID_INTEL_Z390 0xa305 |