drivers/intel/fsp2_0: rename soc_validate_fsp_version

Rename soc_validate_fsp_version to soc_validate_fspm_header, since it
can not only be used to check the version info in the FSP-M binary's
header, but also to check every other field in the binary's header. This
is a preparation for a follow-up patch that implements this function to
check the FSP-M binary's size.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Suggested-by: Furquan Shaikh <furquan@google.com>
Change-Id: Ifadcfd1869bea0774dc17b69c5d1e1c241a45de1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57130
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
Felix Held
2021-08-24 19:26:56 +02:00
parent e44dad3096
commit 42df9af4c4
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ enum cb_err fsp_validate_component(struct fsp_header *hdr, void *fsp_file, size_
}
if (ENV_ROMSTAGE)
soc_validate_fsp_version(hdr);
soc_validate_fspm_header(hdr);
return CB_SUCCESS;
}
@ -224,6 +224,6 @@ void lb_string_platform_blob_version(struct lb_header *header)
memcpy(rec->string, fsp_version, len+1);
}
__weak void soc_validate_fsp_version(const struct fsp_header *hdr)
__weak void soc_validate_fspm_header(const struct fsp_header *hdr)
{
}