Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #
  2. # TPM device configuration
  3. #
  4. menuconfig TCG_TPM
  5. tristate "TPM Hardware Support"
  6. depends on HAS_IOMEM
  7. select SECURITYFS
  8. ---help---
  9. If you have a TPM security chip in your system, which
  10. implements the Trusted Computing Group's specification,
  11. say Yes and it will be accessible from within Linux. For
  12. more information see <http://www.trustedcomputinggroup.org>.
  13. An implementation of the Trusted Software Stack (TSS), the
  14. userspace enablement piece of the specification, can be
  15. obtained at: <http://sourceforge.net/projects/trousers>. To
  16. compile this driver as a module, choose M here; the module
  17. will be called tpm. If unsure, say N.
  18. Notes:
  19. 1) For more TPM drivers enable CONFIG_PNP, CONFIG_ACPI
  20. and CONFIG_PNPACPI.
  21. 2) Without ACPI enabled, the BIOS event log won't be accessible,
  22. which is required to validate the PCR 0-7 values.
  23. if TCG_TPM
  24. config TCG_TIS
  25. tristate "TPM Interface Specification 1.2 Interface / TPM 2.0 FIFO Interface"
  26. depends on X86
  27. ---help---
  28. If you have a TPM security chip that is compliant with the
  29. TCG TIS 1.2 TPM specification (TPM1.2) or the TCG PTP FIFO
  30. specification (TPM2.0) say Yes and it will be accessible from
  31. within Linux. To compile this driver as a module, choose M here;
  32. the module will be called tpm_tis.
  33. config TCG_TIS_I2C_ATMEL
  34. tristate "TPM Interface Specification 1.2 Interface (I2C - Atmel)"
  35. depends on I2C
  36. ---help---
  37. If you have an Atmel I2C TPM security chip say Yes and it will be
  38. accessible from within Linux.
  39. To compile this driver as a module, choose M here; the module will
  40. be called tpm_tis_i2c_atmel.
  41. config TCG_TIS_I2C_INFINEON
  42. tristate "TPM Interface Specification 1.2 Interface (I2C - Infineon)"
  43. depends on I2C
  44. ---help---
  45. If you have a TPM security chip that is compliant with the
  46. TCG TIS 1.2 TPM specification and Infineon's I2C Protocol Stack
  47. Specification 0.20 say Yes and it will be accessible from within
  48. Linux.
  49. To compile this driver as a module, choose M here; the module
  50. will be called tpm_i2c_infineon.
  51. config TCG_TIS_I2C_NUVOTON
  52. tristate "TPM Interface Specification 1.2 Interface (I2C - Nuvoton)"
  53. depends on I2C
  54. ---help---
  55. If you have a TPM security chip with an I2C interface from
  56. Nuvoton Technology Corp. say Yes and it will be accessible
  57. from within Linux.
  58. To compile this driver as a module, choose M here; the module
  59. will be called tpm_i2c_nuvoton.
  60. config TCG_NSC
  61. tristate "National Semiconductor TPM Interface"
  62. depends on X86
  63. ---help---
  64. If you have a TPM security chip from National Semiconductor
  65. say Yes and it will be accessible from within Linux. To
  66. compile this driver as a module, choose M here; the module
  67. will be called tpm_nsc.
  68. config TCG_ATMEL
  69. tristate "Atmel TPM Interface"
  70. depends on PPC64 || HAS_IOPORT_MAP
  71. ---help---
  72. If you have a TPM security chip from Atmel say Yes and it
  73. will be accessible from within Linux. To compile this driver
  74. as a module, choose M here; the module will be called tpm_atmel.
  75. config TCG_INFINEON
  76. tristate "Infineon Technologies TPM Interface"
  77. depends on PNP
  78. ---help---
  79. If you have a TPM security chip from Infineon Technologies
  80. (either SLD 9630 TT 1.1 or SLB 9635 TT 1.2) say Yes and it
  81. will be accessible from within Linux.
  82. To compile this driver as a module, choose M here; the module
  83. will be called tpm_infineon.
  84. Further information on this driver and the supported hardware
  85. can be found at http://www.trust.rub.de/projects/linux-device-driver-infineon-tpm/
  86. config TCG_IBMVTPM
  87. tristate "IBM VTPM Interface"
  88. depends on PPC_PSERIES
  89. ---help---
  90. If you have IBM virtual TPM (VTPM) support say Yes and it
  91. will be accessible from within Linux. To compile this driver
  92. as a module, choose M here; the module will be called tpm_ibmvtpm.
  93. config TCG_XEN
  94. tristate "XEN TPM Interface"
  95. depends on TCG_TPM && XEN
  96. select XEN_XENBUS_FRONTEND
  97. ---help---
  98. If you want to make TPM support available to a Xen user domain,
  99. say Yes and it will be accessible from within Linux. See
  100. the manpages for xl, xl.conf, and docs/misc/vtpm.txt in
  101. the Xen source repository for more details.
  102. To compile this driver as a module, choose M here; the module
  103. will be called xen-tpmfront.
  104. config TCG_CRB
  105. tristate "TPM 2.0 CRB Interface"
  106. depends on X86 && ACPI
  107. ---help---
  108. If you have a TPM security chip that is compliant with the
  109. TCG CRB 2.0 TPM specification say Yes and it will be accessible
  110. from within Linux. To compile this driver as a module, choose
  111. M here; the module will be called tpm_crb.
  112. source "drivers/char/tpm/st33zp24/Kconfig"
  113. endif # TCG_TPM