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:
Philipp Deppenwiese
2018-02-27 22:18:11 +01:00
committed by Philipp Deppenwiese
parent b009ac49c8
commit db70f3bb4d
20 changed files with 43 additions and 48 deletions

7
src/drivers/tpm/Kconfig Normal file
View File

@@ -0,0 +1,7 @@
config TPM_INIT
bool
default y if TPM1 || TPM2
depends on !VBOOT
help
This driver automatically initializes the TPM if vboot is not used.
The TPM driver init is done during the ramstage chip init phase.

View File

@@ -0,0 +1 @@
ramstage-$(CONFIG_TPM_INIT) += tpm.c

35
src/drivers/tpm/tpm.c Normal file
View File

@@ -0,0 +1,35 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2018 Facebook Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <types.h>
#include <stddef.h>
#include <bootstate.h>
#include <security/tpm/tspi.h>
#if IS_ENABLED(CONFIG_ARCH_X86)
#include <arch/acpi.h>
#endif
static void init_tpm_dev(void *unused)
{
#if IS_ENABLED(CONFIG_ARCH_X86)
int s3resume = acpi_is_wakeup_s3();
tpm_setup(s3resume);
#else
tpm_setup(false);
#endif
}
BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, init_tpm_dev, NULL);