util: Add Picasso and Pollock platforms to spd_tools

PCO = Picasso
PLK = Pollock

BUG=b:162939176

Signed-off-by: Rob Barnes <robbarnes@google.com>
Change-Id: I43b74f68871062112f53fbbef8a170db53734b3e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44477
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Rob Barnes
2020-08-14 15:23:05 -06:00
committed by Furquan Shaikh
parent a2e431331c
commit 8cc80d5e50
2 changed files with 11 additions and 8 deletions

View File

@ -29,10 +29,14 @@ const (
SPDManifestFileName = "spd_manifest.generated.txt"
PlatformTGL = 0
PlatformPCO = 1
PlatformPLK = 2
)
var platformMap = map[string]int {
"TGL": PlatformTGL,
"PCO": PlatformPCO,
"PLK": PlatformPLK,
}
var currPlatform int