mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 16:31:25 +01:00 
			
		
		
		
	This driver can emulate all the basic functionalities of a TPMv2.x chip and should behave like them during regular testing. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			546 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			546 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
 | |
| 
 | |
| 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
 | |
| 
 | |
| obj-$(CONFIG_TPM2_TIS_SANDBOX) += tpm2_tis_sandbox.o
 | |
| obj-$(CONFIG_TPM2_TIS_SPI) += tpm2_tis_spi.o
 |