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