diff options
author | Shawn Chang <citypw@gmail.com> | 2017-09-03 12:07:38 +0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-06 04:35:02 +0000 |
commit | 027af74999b507c8c17f31e2edfbe1c5122881d4 (patch) | |
tree | 392a8228127610bb59d5a4808d139cdb5c2ac93a /util/intelmetool | |
parent | b40c72ae184a56b46703987086c2433c8c219e2b (diff) |
intelmetool: Add support for Sunrise Point-H
Tested on P10S-M WS.
Change-Id: I62f78fe5ca03bf70497939a12f0036bf247b2aa7
Signed-off-by: Shawn Chang <citypw@gmail.com>
Reviewed-on: https://review.coreboot.org/21301
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'util/intelmetool')
-rw-r--r-- | util/intelmetool/intelmetool.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/intelmetool/intelmetool.h b/util/intelmetool/intelmetool.h index 491ab5fb6f..d29289d48f 100644 --- a/util/intelmetool/intelmetool.h +++ b/util/intelmetool/intelmetool.h @@ -237,6 +237,8 @@ extern int debug; #define PCI_DEVICE_ID_INTEL_LYNXPOINT_4 0x9C3A /* Lynx Point LP */ #define PCI_DEVICE_ID_INTEL_WILDCAT_1 0x9CBA /* Wildcat Point LP */ #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_DEV_HAS_SUPPORTED_ME(x) ( \ ( (x) == PCI_DEVICE_ID_INTEL_COUGARPOINT_1 ) || \ @@ -277,4 +279,6 @@ extern int debug; ( (x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_3 ) || \ ( (x) == PCI_DEVICE_ID_INTEL_LYNXPOINT_4 ) || \ ( (x) == PCI_DEVICE_ID_INTEL_WILDCAT_1 ) || \ - ( (x) == PCI_DEVICE_ID_INTEL_WILDCAT_2)) + ( (x) == PCI_DEVICE_ID_INTEL_WILDCAT_2 ) || \ + ( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_H1 ) || \ + ( (x) == PCI_DEVICE_ID_INTEL_SUNRISE_H2)) |