drivers/intel/fsp2_0: Add API to find FSP resource HOB by GUID

The API finds the FSP resource HOB for the given GUID.
Returns the pointer to the HOB if found, otherwise NULL

Change-Id: I4ebc9b7d214e5fc731ae45f28e7f5732a7635cbc
Signed-off-by: Pratikkumar Prajapati <pratikkumar.v.prajapati@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72721
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
This commit is contained in:
Pratikkumar Prajapati 2023-02-01 17:25:07 -08:00 committed by Felix Held
parent b0ddae6a5b
commit f5f756d507
2 changed files with 19 additions and 0 deletions

View File

@ -250,6 +250,20 @@ const void *fsp_find_extension_hob_by_guid(const uint8_t *guid, size_t *size)
return NULL;
}
const void *fsp_find_resource_hob_by_guid(const uint8_t *guid)
{
const struct hob_header *hob_iterator;
const struct hob_resource *res_hob;
if (fsp_hob_iterator_init(&hob_iterator) != CB_SUCCESS)
return NULL;
if (fsp_hob_iterator_get_next_guid_resource(&hob_iterator, guid, &res_hob) == CB_SUCCESS)
return res_hob;
return NULL;
}
static void display_fsp_version_info_hob(const void *hob)
{
#if CONFIG(DISPLAY_FSP_VERSION_INFO) || CONFIG(DISPLAY_FSP_VERSION_INFO_2)

View File

@ -145,6 +145,11 @@ void fsp_verify_upd_header_signature(uint64_t upd_signature, uint64_t expected_s
void lb_string_platform_blob_version(struct lb_header *header);
void report_fspt_output(void);
void soc_validate_fspm_header(const struct fsp_header *hdr);
/*
* This function finds the FSP resource HOB for the given GUID.
* Returns the pointer to the HOB if found, otherwise NULL
*/
const void *fsp_find_resource_hob_by_guid(const uint8_t *guid);
/* 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);