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
@ -42,7 +42,6 @@
|
||||
#include "northbridge/intel/haswell/raminit.h"
|
||||
#include "southbridge/intel/lynxpoint/pch.h"
|
||||
#include "southbridge/intel/lynxpoint/me.h"
|
||||
#include <security/tpm/tspi.h>
|
||||
#include <cpu/intel/romstage.h>
|
||||
|
||||
static inline void reset_system(void)
|
||||
@ -157,6 +156,4 @@ void romstage_common(const struct romstage_params *params)
|
||||
romstage_handoff_init(wake_from_s3);
|
||||
|
||||
post_code(0x3f);
|
||||
if (IS_ENABLED(CONFIG_TPM1) || IS_ENABLED(CONFIG_TPM2))
|
||||
tpm_setup(wake_from_s3);
|
||||
}
|
||||
|
Reference in New Issue
Block a user