upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
557 B
14 lines
557 B
# 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
|
|
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
|
|
|