mirror of
https://review.coreboot.org/flashrom.git
synced 2025-11-14 03:30:41 +01:00
util/ich_descriptors_tool: Add Wildcat Lake SoC to supported chipsets
TEST=ich_descriptors_tool is able to detect "wildcat" chipset and show
below information:
> ./util/ich_descriptors_tool/ich_descriptors_tool
Need the file name of a descriptor image to read from.
usage: './util/ich_descriptors_tool/ich_descriptors_tool -f
<image file name> [-c <chipset name>] [-d]'
...
...
To also print the data stored in the descriptor straps you have to
indicate the chipset series with the '-c' parameter and one of the
possible arguments:
- "ich8",
- "ich9",
- "ich10",
- "apollo" for Intel's Apollo Lake SoC.
- "gemini" for Intel's Gemini Lake SoC.
- "jasper" for Intel's Jasper Lake SoC.
- "meteor" for Intel's Meteor Lake SoC.
- "panther" for Intel's Panther Lake SoC.
- "wildcat" for Intel's Wildcat Lake SoC.
...
...
- "300" or "cannon" for Intel's 300 series chipsets.
- "400" or "comet" for Intel's 400 series chipsets.
- "500" or "tiger" for Intel's 500 series chipsets.
- "600" or "alder" for Intel's 600 series chipsets.
Change-Id: I2957eab19d8b8fdd2479f7d1b50ecdb48f491954
Signed-off-by: Varun Upadhyay <varun.upadhyay@intel.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/88049
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Anastasia Klimchuk
parent
446af8ae1c
commit
44df54b5e4
@@ -130,6 +130,7 @@ static void usage(char *argv[], const char *error)
|
|||||||
"\t- \"jasper\" for Intel's Jasper Lake SoC.\n"
|
"\t- \"jasper\" for Intel's Jasper Lake SoC.\n"
|
||||||
"\t- \"meteor\" for Intel's Meteor Lake SoC.\n"
|
"\t- \"meteor\" for Intel's Meteor Lake SoC.\n"
|
||||||
"\t- \"panther\" for Intel's Panther Lake SoC.\n"
|
"\t- \"panther\" for Intel's Panther Lake SoC.\n"
|
||||||
|
"\t- \"wildcat\" for Intel's Wildcat Lake SoC.\n"
|
||||||
"\t- \"5\" or \"ibex\" for Intel's 5 series chipsets,\n"
|
"\t- \"5\" or \"ibex\" for Intel's 5 series chipsets,\n"
|
||||||
"\t- \"6\" or \"cougar\" for Intel's 6 series chipsets,\n"
|
"\t- \"6\" or \"cougar\" for Intel's 6 series chipsets,\n"
|
||||||
"\t- \"7\" or \"panther\" for Intel's 7 series chipsets.\n"
|
"\t- \"7\" or \"panther\" for Intel's 7 series chipsets.\n"
|
||||||
@@ -256,6 +257,8 @@ int main(int argc, char *argv[])
|
|||||||
cs = CHIPSET_METEOR_LAKE;
|
cs = CHIPSET_METEOR_LAKE;
|
||||||
else if (strcmp(csn, "panther") == 0)
|
else if (strcmp(csn, "panther") == 0)
|
||||||
cs = CHIPSET_PANTHER_LAKE;
|
cs = CHIPSET_PANTHER_LAKE;
|
||||||
|
else if (strcmp(csn, "wildcat") == 0)
|
||||||
|
cs = CHIPSET_WILDCAT_LAKE;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = read_ich_descriptors_from_dump(buf, len, &cs, &desc);
|
ret = read_ich_descriptors_from_dump(buf, len, &cs, &desc);
|
||||||
|
|||||||
Reference in New Issue
Block a user