mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
b75fdc11eb
Add support for TPM ST33ZP24 spi. The ST33ZP24 does have a spi interface. The transport protocol is proprietary. For spi we are relying only on DM_SPI. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
13 lines
451 B
Makefile
13 lines
451 B
Makefile
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_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
|
|
obj-$(CONFIG_TPM_ST33ZP24_I2C) += tpm_tis_st33zp24_i2c.o
|
|
obj-$(CONFIG_TPM_ST33ZP24_SPI) += tpm_tis_st33zp24_spi.o
|