diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-05-15 11:57:21 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-25 20:12:59 -0400 |
commit | eb46910b4bf03e2651533473dd75267704a6c659 (patch) | |
tree | b47f29dc5a0c380c68ce629cda672e8b8111c514 /drivers/tpm/Makefile | |
parent | b9dd4fabbeed0fcb8bb1811044266d13df8d379f (diff) | |
download | u-boot-eb46910b4bf03e2651533473dd75267704a6c659.tar.gz |
tpm: add support for TPMv2.x SPI modules
Add the tpm2_tis_spi driver that should support any TPMv2 compliant
(SPI) module.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/tpm/Makefile')
-rw-r--r-- | drivers/tpm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tpm/Makefile b/drivers/tpm/Makefile index e5fc86ff95..e4b57615be 100644 --- a/drivers/tpm/Makefile +++ b/drivers/tpm/Makefile @@ -9,3 +9,5 @@ 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 + +obj-$(CONFIG_TPM2_TIS_SPI) += tpm2_tis_spi.o |