diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2011-10-11 14:46:25 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-30 02:04:20 +0200 |
commit | 3008bbadcbbb64dab0472e1724744c37b4094aa9 (patch) | |
tree | b2a1150fa9e739e7de47fb88a6635fce55b7f665 /src/Kconfig | |
parent | b89a761a637996e730432a3a8383aaf636abe5c5 (diff) |
Add TPM support to coreboot
and initialize the TPM on S3 resume
This patch integrates the TPM driver and runs TPM resume upon an ACPI S3
resume without including any other parts of vboot.
We could link against vboot_fw.a but it is compiled with u-boot's CFLAGS
(that are incompatible with coreboot's) and it does a lot more than we
want it to do.
Change-Id: I000d4322ef313e931e23c56defaa17e3a4d7f8cf
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/731
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index ba1af089cd..f7180a98c0 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -254,6 +254,10 @@ config IOAPIC bool default n +config TPM + bool + default n + # TODO: Can probably be removed once all chipsets have kconfig options for it. config VIDEO_MB int |