mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
ed3f5a30a7
Add a simple TPM emulator for sandbox. It only supports a small subset of TPM operations. However, these are enough to perform common tasks. Note this is an initial commit to get this working, but it could use cleaning up (for example constants instead of open-coded values). Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
11 lines
366 B
Makefile
11 lines
366 B
Makefile
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# TODO: Merge tpm_tis_lpc.c with tpm.c
|
|
obj-$(CONFIG_TPM_ATMEL_TWI) += tpm_atmel_twi.o
|
|
obj-$(CONFIG_TPM_TIS_I2C) += tpm.o
|
|
obj-$(CONFIG_TPM_TIS_I2C) += tpm_tis_i2c.o
|
|
obj-$(CONFIG_TPM_TIS_LPC) += tpm_tis_lpc.o
|
|
obj-$(CONFIG_TPM_TIS_SANDBOX) += tpm_tis_sandbox.o
|