libpayload: add cse_*info pointer to lib_sysinfo
Set a pointer in lib_sysinfo for CSE_BP_INFO and CSE_INFO. BUG=b:343022317 TEST=Verified CBMEM data in depthcharge on Screebo Signed-off-by: Eran Mitrani <mitrani@google.com> Change-Id: I3aa64d1e439a0596e732a3c0608d60913cefd19f Reviewed-on: https://review.coreboot.org/c/coreboot/+/82790 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
This commit is contained in:
committed by
Martin Roth
parent
e9b741c2bd
commit
5fccf367b8
@ -114,6 +114,8 @@ struct sysinfo_t {
|
||||
uintptr_t acpi_cnvs;
|
||||
uintptr_t acpi_rsdp;
|
||||
uintptr_t smbios;
|
||||
uintptr_t cse_bp_info;
|
||||
uintptr_t cse_info;
|
||||
|
||||
#define UNDEFINED_STRAPPING_ID (~0)
|
||||
#define UNDEFINED_FW_CONFIG ~((uint64_t)0)
|
||||
|
@ -262,6 +262,12 @@ static void cb_parse_cbmem_entry(void *ptr, struct sysinfo_t *info)
|
||||
case CBMEM_ID_MEM_CHIP_INFO:
|
||||
info->mem_chip_base = cbmem_entry->address;
|
||||
break;
|
||||
case CBMEM_ID_CSE_BP_INFO:
|
||||
info->cse_bp_info = cbmem_entry->address;
|
||||
break;
|
||||
case CBMEM_ID_CSE_INFO:
|
||||
info->cse_info = cbmem_entry->address;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user