security/tpm: resolve conflicts in TSS implementations
No functional changes. Refactor code such that there won't be any compiler or linker errors if TSS 1.2 and TSS 2.0 were both compiled in. One might want to support both TPM families for example if TPM is pluggable, while currently one has to reflash firmware along with switching TPM device. Change-Id: Ia0ea5a917c46ada9fc3274f17240e12bca98db6a Ticket: https://ticket.coreboot.org/issues/433 Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69160 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
committed by
Martin L Roth
parent
febf9b9f24
commit
094a051732
@ -67,7 +67,7 @@ EFI_TCG2_EVENT_ALGORITHM_BITMAP tpm2_get_active_pcrs(void)
|
||||
*
|
||||
* Return the TPM PCR information.
|
||||
*
|
||||
* This function parses the data got from tlcl_get_capability and returns the
|
||||
* This function parses the data got from tlcl2_get_capability and returns the
|
||||
* PcrSelection.
|
||||
*
|
||||
* @param[out] Pcrs The Pcr Selection
|
||||
@ -81,7 +81,7 @@ tpm_result_t tpm2_get_capability_pcrs(TPML_PCR_SELECTION *Pcrs)
|
||||
tpm_result_t rc;
|
||||
int index;
|
||||
|
||||
rc = tlcl_get_capability(TPM_CAP_PCRS, 0, 1, &TpmCap);
|
||||
rc = tlcl2_get_capability(TPM_CAP_PCRS, 0, 1, &TpmCap);
|
||||
if (rc == TPM_SUCCESS) {
|
||||
Pcrs->count = TpmCap.data.assignedPCR.count;
|
||||
printk(BIOS_DEBUG, "Pcrs->count = %d\n", Pcrs->count);
|
||||
|
@ -22,7 +22,7 @@ static void disable_platform_hierarchy(void *unused)
|
||||
return;
|
||||
}
|
||||
|
||||
rc = tlcl_disable_platform_hierarchy();
|
||||
rc = tlcl2_disable_platform_hierarchy();
|
||||
if (rc != TPM_SUCCESS)
|
||||
printk(BIOS_ERR, "Platform hierarchy disablement failed: %#x\n",
|
||||
rc);
|
||||
|
Reference in New Issue
Block a user