## SPDX-License-Identifier: GPL-2.0-only subdirs-$(CONFIG_TPM_GOOGLE) += tss/vendor/cr50 ## TSS ifeq ($(CONFIG_TPM1),y) ramstage-y += tss/tcg-1.2/tss.c romstage-y += tss/tcg-1.2/tss.c bootblock-y += tss/tcg-1.2/tss.c verstage-y += tss/tcg-1.2/tss.c postcar-y += tss/tcg-1.2/tss.c ## TSPI ramstage-y += tspi/tspi.c romstage-y += tspi/tspi.c bootblock-y += tspi/tspi.c verstage-y += tspi/tspi.c postcar-y += tspi/tspi.c endif # CONFIG_TPM1 ifeq ($(CONFIG_TPM2),y) ramstage-y += tss/tcg-2.0/tss_marshaling.c ramstage-y += tss/tcg-2.0/tss.c romstage-y += tss/tcg-2.0/tss_marshaling.c romstage-y += tss/tcg-2.0/tss.c verstage-$(CONFIG_VBOOT) += tss/tcg-2.0/tss_marshaling.c verstage-$(CONFIG_VBOOT) += tss/tcg-2.0/tss.c postcar-y += tss/tcg-2.0/tss_marshaling.c postcar-y += tss/tcg-2.0/tss.c bootblock-y += tss/tcg-2.0/tss_marshaling.c bootblock-y += tss/tcg-2.0/tss.c ## TSPI ramstage-y += tspi/tspi.c romstage-y += tspi/tspi.c bootblock-y += tspi/tspi.c verstage-$(CONFIG_VBOOT) += tspi/tspi.c postcar-y += tspi/tspi.c endif # CONFIG_TPM2 ifeq ($(CONFIG_TPM_MEASURED_BOOT),y) bootblock-y += tspi/crtm.c verstage-y += tspi/crtm.c romstage-y += tspi/crtm.c ramstage-y += tspi/crtm.c postcar-y += tspi/crtm.c ramstage-$(CONFIG_TPM_LOG_CB) += tspi/log.c romstage-$(CONFIG_TPM_LOG_CB) += tspi/log.c verstage-$(CONFIG_TPM_LOG_CB) += tspi/log.c postcar-$(CONFIG_TPM_LOG_CB) += tspi/log.c bootblock-$(CONFIG_TPM_LOG_CB) += tspi/log.c ramstage-$(CONFIG_TPM_LOG_TPM1) += tspi/log-tpm1.c romstage-$(CONFIG_TPM_LOG_TPM1) += tspi/log-tpm1.c verstage-$(CONFIG_TPM_LOG_TPM1) += tspi/log-tpm1.c postcar-$(CONFIG_TPM_LOG_TPM1) += tspi/log-tpm1.c bootblock-$(CONFIG_TPM_LOG_TPM1) += tspi/log-tpm1.c ramstage-$(CONFIG_TPM_LOG_TPM2) += tspi/log-tpm2.c romstage-$(CONFIG_TPM_LOG_TPM2) += tspi/log-tpm2.c verstage-$(CONFIG_TPM_LOG_TPM2) += tspi/log-tpm2.c postcar-$(CONFIG_TPM_LOG_TPM2) += tspi/log-tpm2.c bootblock-$(CONFIG_TPM_LOG_TPM2) += tspi/log-tpm2.c endif # CONFIG_TPM_MEASURED_BOOT