diff options
author | David Hendricks <dhendricks@fb.com> | 2017-08-08 20:02:22 -0700 |
---|---|---|
committer | David Hendricks <david.hendricks@gmail.com> | 2017-09-01 20:34:44 +0000 |
commit | a5216367d5640f07d58a6549fa6df86d91daff1a (patch) | |
tree | 72cb2a7ba167ed6d6e0509ad8292ea7283932e7a /util | |
parent | aa91d5c16858cb400cc61e8a759838f645e3f314 (diff) | |
download | flashrom-a5216367d5640f07d58a6549fa6df86d91daff1a.tar.gz flashrom-a5216367d5640f07d58a6549fa6df86d91daff1a.tar.bz2 flashrom-a5216367d5640f07d58a6549fa6df86d91daff1a.zip |
chipset_enable: Add support for C620-series Lewisburg PCH
This adds PCI IDs for C620-series PCHs and adds
CHIPSET_C620_SERIES_LEWISBURG as a new entry in the ich_chipset enum.
Lewisburg is very similar to Sunrise Point for Flashrom's purposes,
however one important difference is the way the "number of masters" is
interpreted from the flash descriptor (0-based vs. 1-based). There are
also new flash regions defined.
Change-Id: I96c89bc28bdfcd953229c17679f2c28f8b874d0b
Signed-off-by: David Hendricks <dhendricks@fb.com>
Reviewed-on: https://review.coreboot.org/20922
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/ich_descriptors_tool/ich_descriptors_tool.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/ich_descriptors_tool/ich_descriptors_tool.c b/util/ich_descriptors_tool/ich_descriptors_tool.c index 82c74bd9c..5ab946fdd 100644 --- a/util/ich_descriptors_tool/ich_descriptors_tool.c +++ b/util/ich_descriptors_tool/ich_descriptors_tool.c @@ -42,7 +42,9 @@ static const char *const region_names[] = { "Descriptor", "BIOS", "ME", "GbE", "Platform", - "Region5", "Region6", "Region7", "EC", "Region9", + "Region5", "BIOS2", "Region7", "EC/BMC", "Region9", + "IE", "10GbE", "Region12", "Region13", "Region14", + "Region15" }; static void dump_file(const char *prefix, const uint32_t *dump, unsigned int len, |