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:
parent
e44dad3096
commit
42df9af4c4
|
@ -109,7 +109,7 @@ void fsp_get_version(char *buf);
|
||||||
void fsp_verify_upd_header_signature(uint64_t upd_signature, uint64_t expected_signature);
|
void fsp_verify_upd_header_signature(uint64_t upd_signature, uint64_t expected_signature);
|
||||||
void lb_string_platform_blob_version(struct lb_header *header);
|
void lb_string_platform_blob_version(struct lb_header *header);
|
||||||
void report_fspt_output(void);
|
void report_fspt_output(void);
|
||||||
void soc_validate_fsp_version(const struct fsp_header *hdr);
|
void soc_validate_fspm_header(const struct fsp_header *hdr);
|
||||||
|
|
||||||
/* Fill in header and validate a loaded FSP component. */
|
/* Fill in header and validate a loaded FSP component. */
|
||||||
enum cb_err fsp_validate_component(struct fsp_header *hdr, void *fsp_blob, size_t size);
|
enum cb_err fsp_validate_component(struct fsp_header *hdr, void *fsp_blob, size_t size);
|
||||||
|
|
|
@ -98,7 +98,7 @@ enum cb_err fsp_validate_component(struct fsp_header *hdr, void *fsp_file, size_
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ENV_ROMSTAGE)
|
if (ENV_ROMSTAGE)
|
||||||
soc_validate_fsp_version(hdr);
|
soc_validate_fspm_header(hdr);
|
||||||
|
|
||||||
return CB_SUCCESS;
|
return CB_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -224,6 +224,6 @@ void lb_string_platform_blob_version(struct lb_header *header)
|
||||||
memcpy(rec->string, fsp_version, len+1);
|
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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue