drivers/tpm/Kconfig: Rename TPM_INIT to TPM_INIT_RAMSTAGE

Rename the Kconfig parameter to more accurately reflect what it does.
TPM can be initialised in a different stage too, for instance with
VBOOT it is done in verstage.

Change-Id: Ic0126b356e8430c04c7c9fd46d4e20022a648738
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52133
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
This commit is contained in:
Arthur Heymans 2021-04-06 13:54:56 +02:00 committed by Patrick Georgi
parent 935769398a
commit 474ed6b46f
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
config TPM_INIT config TPM_INIT_RAMSTAGE
bool bool
default y if TPM1 || TPM2 default y if TPM1 || TPM2
depends on !VBOOT && !VENDORCODE_ELTAN_VBOOT && !VENDORCODE_ELTAN_MBOOT depends on !VBOOT && !VENDORCODE_ELTAN_VBOOT && !VENDORCODE_ELTAN_MBOOT

View File

@ -1,4 +1,4 @@
ramstage-$(CONFIG_TPM_INIT) += tpm.c ramstage-$(CONFIG_TPM_INIT_RAMSTAGE) += tpm.c
ifeq ($(CONFIG_TPM_PPI),y) ifeq ($(CONFIG_TPM_PPI),y)
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += ppi.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += ppi.c

View File

@ -87,7 +87,7 @@ config SPI_FLASH_WINBOND
bool bool
default y default y
config TPM_INIT config TPM_INIT_RAMSTAGE
bool "TPM Setup in RAMSTAGE" bool "TPM Setup in RAMSTAGE"
default n default n