1## SPDX-License-Identifier: GPL-2.0-only 2 3config I2C_TPM 4 bool 5 help 6 I2C TPM driver is enabled! 7 8config DRIVER_TIS_DEFAULT 9 bool 10 depends on I2C_TPM 11 default n if TPM_ATMEL 12 default y 13 14config DRIVER_TPM_I2C_BUS 15 hex 16 default 0x9 # FIXME, workaround for Kconfig BS 17 depends on I2C_TPM 18 19config DRIVER_TPM_I2C_ADDR 20 hex 21 default 0x2 # FIXME, workaround for Kconfig BS 22 depends on I2C_TPM 23 24config DRIVER_I2C_TPM_ACPI 25 bool "Generate I2C TPM ACPI device" if I2C_TPM 26 default y if ARCH_X86 && I2C_TPM 27 default n 28 29config DRIVER_TPM_DISPLAY_TIS_BYTES 30 bool "TPM: Display the TIS transactions to I2C TPM chip" 31 default n 32 depends on I2C_TPM 33 34config TPM_ATMEL 35 bool 36 default n 37 help 38 The mainboard has an Atmel TPM chip. 39