Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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"
  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 say Yes and it will be accessible
  30. from within Linux. To compile this driver as a module, choose
  31. M here; the module will be called tpm_tis.
  32. config TCG_NSC
  33. tristate "National Semiconductor TPM Interface"
  34. depends on X86
  35. ---help---
  36. If you have a TPM security chip from National Semiconductor
  37. say Yes and it will be accessible from within Linux. To
  38. compile this driver as a module, choose M here; the module
  39. will be called tpm_nsc.
  40. config TCG_ATMEL
  41. tristate "Atmel TPM Interface"
  42. depends on PPC64 || HAS_IOPORT
  43. ---help---
  44. If you have a TPM security chip from Atmel say Yes and it
  45. will be accessible from within Linux. To compile this driver
  46. as a module, choose M here; the module will be called tpm_atmel.
  47. config TCG_INFINEON
  48. tristate "Infineon Technologies TPM Interface"
  49. depends on PNP
  50. ---help---
  51. If you have a TPM security chip from Infineon Technologies
  52. (either SLD 9630 TT 1.1 or SLB 9635 TT 1.2) say Yes and it
  53. will be accessible from within Linux.
  54. To compile this driver as a module, choose M here; the module
  55. will be called tpm_infineon.
  56. Further information on this driver and the supported hardware
  57. can be found at http://www.trust.rub.de/projects/linux-device-driver-infineon-tpm/
  58. endif # TCG_TPM