drivers/tpm: Add TPM ramstage driver for devices without vboot.
Logic: If vboot is not used and the tpm is not initialized in the romstage makes use of the ramstage driver to initialize the TPM globally without having setup calls in lower SoC level implementations. * Add TPM driver in ramstage chip init which calls the tpm_setup function. * Purge all occurrences of TPM init code and headers. * Only compile TIS drivers into ramstage except for vboot usage. * Remove Google Urara/Rotor TPM support because of missing i2c driver in ramstage. Change-Id: I7536c9734732aeaa85ccc7916c12eecb9ca26b2e Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org> Reviewed-on: https://review.coreboot.org/24905 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Philipp Deppenwiese
parent
b009ac49c8
commit
db70f3bb4d
@@ -30,7 +30,6 @@
|
||||
#include <stage_cache.h>
|
||||
#include <string.h>
|
||||
#include <timestamp.h>
|
||||
#include <security/tpm/tspi.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <soc/gpio.h>
|
||||
#include <soc/iomap.h>
|
||||
@@ -228,9 +227,6 @@ void romstage_common(struct romstage_params *params)
|
||||
timestamp_add_now(TS_AFTER_INITRAM);
|
||||
|
||||
romstage_handoff_init(prev_sleep_state == ACPI_S3);
|
||||
|
||||
if (IS_ENABLED(CONFIG_TPM1) || IS_ENABLED(CONFIG_TPM2))
|
||||
tpm_setup(prev_sleep_state == ACPI_S3);
|
||||
}
|
||||
|
||||
void asmlinkage romstage_after_car(void)
|
||||
|
@@ -43,7 +43,6 @@
|
||||
#include <soc/romstage.h>
|
||||
#include <soc/smm.h>
|
||||
#include <soc/spi.h>
|
||||
#include <security/tpm/tspi.h>
|
||||
|
||||
void program_base_addresses(void)
|
||||
{
|
||||
|
@@ -26,7 +26,6 @@
|
||||
#include <cbmem.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <elog.h>
|
||||
#include <security/tpm/tspi.h>
|
||||
#include <program_loading.h>
|
||||
#include <romstage_handoff.h>
|
||||
#include <stage_cache.h>
|
||||
@@ -110,9 +109,6 @@ void romstage_common(struct romstage_params *params)
|
||||
timestamp_add_now(TS_AFTER_INITRAM);
|
||||
|
||||
romstage_handoff_init(params->power_state->prev_sleep_state == ACPI_S3);
|
||||
|
||||
if (IS_ENABLED(CONFIG_TPM1) || IS_ENABLED(CONFIG_TPM2))
|
||||
tpm_setup(params->power_state->prev_sleep_state == ACPI_S3);
|
||||
}
|
||||
|
||||
asmlinkage void romstage_after_car(void)
|
||||
|
Reference in New Issue
Block a user