ichspi: Add Intel Wildcat Lake support
Looks the same as Panther Lake except no 80 MHz options in the
SPI guide nor the MFIT tool.
Change-Id: I9d922687e5995ed34c9e8aee298554e976adfe0a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.sourcearcade.org/c/flashprog/+/403
diff --git a/ich_descriptors.c b/ich_descriptors.c
index 932ab49..91aa267 100644
--- a/ich_descriptors.c
+++ b/ich_descriptors.c
@@ -140,7 +140,7 @@
"C620 series Lewisburg", "300/400 series Cannon/Comet Point",
"500/600 series Tiger/Alder Point", "Apollo Lake", "Gemini Lake", "Elkhart Lake",
"C740 series Emmitsburg", "Snow Ridge", "Meteor Lake", "Lunar Lake",
- "800 series Arrow Lake", "Panther Lake",
+ "800 series Arrow Lake", "Panther/Wildcat Lake",
};
if (cs < CHIPSET_ICH8 || cs - CHIPSET_ICH8 + 1 >= ARRAY_SIZE(chipset_names))
cs = 0;
@@ -1123,7 +1123,7 @@
if (content->CSSO == 0x58) {
return CHIPSET_ELKHART_LAKE;
} else if (content->CSSO == 0x60) {
- if (content->ISL == 0x9a)
+ if (content->ISL == 0x9a || content->ISL == 0x78)
return CHIPSET_PANTHER_LAKE;
warn_peculiar_desc("Panther Lake");
return CHIPSET_PANTHER_LAKE;