Marc Jones has uploaded a new change for review. ( https://review.coreboot.org/19848 )
Change subject: google/kahlee: Enable TPM decode to SPI ......................................................................
google/kahlee: Enable TPM decode to SPI
Setup the TPM decode to SPI prior to verstage.
Change-Id: Iab92259ebeaa40937309fad05cc45d9ca6d41357 Signed-off-by: Marc Jones marcj303@gmail.com --- M src/mainboard/google/kahlee/bootblock.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/19848/1
diff --git a/src/mainboard/google/kahlee/bootblock.c b/src/mainboard/google/kahlee/bootblock.c index a6161e4..caa24d5 100644 --- a/src/mainboard/google/kahlee/bootblock.c +++ b/src/mainboard/google/kahlee/bootblock.c @@ -15,9 +15,13 @@
#include <bootblock_common.h> #include <ec.h> +#include <soc/hudson.h>
void bootblock_mainboard_init(void) { /* Enable the EC as soon as we have visibility */ mainboard_ec_init(); + + /* Setup TPM decode before verstage */ + hudson_tpm_decode_spi(); }