xref: /qemu/hw/tpm/Kconfig (revision 834e8bf1)
1config TPMDEV
2    bool
3    depends on TPM
4
5config TPM_TIS
6    bool
7    depends on TPM && ISA_BUS
8    select TPMDEV
9
10config TPM_CRB
11    bool
12    depends on TPM && PC
13    select TPMDEV
14
15config TPM_PASSTHROUGH
16    bool
17    default y
18    # FIXME: should check for x86 host as well
19    depends on TPMDEV && LINUX
20
21config TPM_EMULATOR
22    bool
23    default y
24    depends on TPMDEV
25
26config TPM_SPAPR
27    bool
28    default y
29    depends on TPM && PSERIES
30    select TPMDEV
31