diff options
author | Omar Pakker <omarpakker+coreboot@gmail.com> | 2016-06-02 21:06:54 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-06-04 23:41:22 +0200 |
commit | a03609b49600f05ec37e1796676954a3dc14faa3 (patch) | |
tree | e5c8b02fb02d4790edb58c5012790b43d824288b | |
parent | 7afcfe0f9f78ef8d5029e90304a34caf07d14588 (diff) |
intelmetool: Add the X99 ISA Bridge device id
This adds the ISA bridge device id for the Intel C160/X99 series
chipset to the intelmetool.
Change-Id: I2e7db0fe1692985ebb167b9a44ab412a45a9f3bd
Signed-off-by: Omar Pakker <omarpakker+coreboot@gmail.com>
Reviewed-on: https://review.coreboot.org/15053
Tested-by: build bot (Jenkins)
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@googlemail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | util/intelmetool/intelmetool.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/intelmetool/intelmetool.h b/util/intelmetool/intelmetool.h index 22cff1a27b..4b9803bc55 100644 --- a/util/intelmetool/intelmetool.h +++ b/util/intelmetool/intelmetool.h @@ -114,6 +114,7 @@ extern int debug; #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_FULL 0x9c41 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_PREM 0x9c43 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_BASE 0x9c45 +#define PCI_DEVICE_ID_INTEL_X99 0x8d47 #define PCI_DEV_HAS_ME_DIFFICULT(x) ( \ ( (x) == PCI_DEVICE_ID_INTEL_ICH10R ) || \ @@ -168,7 +169,8 @@ extern int debug; ( (x) == PCI_DEVICE_ID_INTEL_DH89XXCC ) || \ ( (x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_FULL ) || \ ( (x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_PREM ) || \ - ( (x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_BASE )) + ((x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_BASE) || \ + ((x) == PCI_DEVICE_ID_INTEL_X99)) // Not sure if ME present, but should be able to disable it easily #define PCI_DEVICE_ID_INTEL_ICH8 0x2810 |