util/spd_tools: Remove PLK platform

Currently spd_tools treats PCO and PLK as separate platforms. This is
unnecessary since they have the same SPD requirements. Remove PLK, and
use PCO as the platform for all zork variants.

BUG=b:191776301
TEST=None

Signed-off-by: Reka Norman <rekanorman@google.com>
Change-Id: I7eeeab53fb3e0d92c3675fb80b4747297d4257ab
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57771
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
This commit is contained in:
Reka Norman 2021-09-17 15:51:02 +10:00 committed by Patrick Georgi
parent fe9fc6feed
commit 293a3e03dc
4 changed files with 1 additions and 5 deletions

View File

@ -3,4 +3,3 @@
TGL,set-0
PCO,set-0
PLK,set-0

View File

@ -39,7 +39,6 @@ var supportedPlatforms = [...]string{
"ADL",
"JSL",
"PCO",
"PLK",
"CZN",
}

View File

@ -241,7 +241,7 @@ const (
/* ------------------------------------------------------------------------------------------ */
var DDR4PlatformSetMap = map[int][]int{
0: {PlatformTGL, PlatformPCO, PlatformPLK},
0: {PlatformTGL, PlatformPCO},
}
var DDR4PartAttributeMap = map[string]DDR4MemAttributes{}

View File

@ -43,7 +43,6 @@ const (
PlatformADL
PlatformJSL
PlatformPCO
PlatformPLK
PlatformCZN
PlatformMax
)
@ -62,7 +61,6 @@ var platformNames = map[int]string{
PlatformADL: "ADL",
PlatformJSL: "JSL",
PlatformPCO: "PCO",
PlatformPLK: "PLK",
PlatformCZN: "CZN",
}