mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
974c98f26c
We want to support nvdata in TPM2 as well. To avoid code duplicating the associated code, move it into a common file. Drop the special-case logic for the kernel space. This can be handled by the higher-level code now, i.e. in vboot itself. Signed-off-by: Simon Glass <sjg@chromium.org>
16 lines
691 B
Makefile
16 lines
691 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)TPM) += tpm-uclass.o
|
|
|
|
obj-$(CONFIG_TPM_ATMEL_TWI) += tpm_atmel_twi.o
|
|
obj-$(CONFIG_TPM_TIS_INFINEON) += tpm_tis_infineon.o
|
|
obj-$(CONFIG_TPM_TIS_LPC) += tpm_tis_lpc.o
|
|
obj-$(CONFIG_TPM_TIS_SANDBOX) += tpm_tis_sandbox.o sandbox_common.o
|
|
obj-$(CONFIG_TPM_ST33ZP24_I2C) += tpm_tis_st33zp24_i2c.o
|
|
obj-$(CONFIG_TPM_ST33ZP24_SPI) += tpm_tis_st33zp24_spi.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)TPM2_CR50_I2C) += cr50_i2c.o
|
|
obj-$(CONFIG_TPM2_TIS_SANDBOX) += tpm2_tis_sandbox.o sandbox_common.o
|
|
obj-$(CONFIG_TPM2_TIS_SPI) += tpm2_tis_spi.o
|
|
obj-$(CONFIG_TPM2_FTPM_TEE) += tpm2_ftpm_tee.o
|