Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #
  2. # TPM device configuration
  3. #
  4. menu "TPM devices"
  5. depends on HAS_IOMEM
  6. config TCG_TPM
  7. tristate "TPM Hardware Support"
  8. depends on EXPERIMENTAL
  9. ---help---
  10. If you have a TPM security chip in your system, which
  11. implements the Trusted Computing Group's specification,
  12. say Yes and it will be accessible from within Linux. For
  13. more information see <http://www.trustedcomputinggroup.org>.
  14. An implementation of the Trusted Software Stack (TSS), the
  15. userspace enablement piece of the specification, can be
  16. obtained at: <http://sourceforge.net/projects/trousers>. To
  17. compile this driver as a module, choose M here; the module
  18. will be called tpm. If unsure, say N.
  19. Note: For more TPM drivers enable CONFIG_PNP, CONFIG_ACPI
  20. and CONFIG_PNPACPI.
  21. config TCG_TIS
  22. tristate "TPM Interface Specification 1.2 Interface"
  23. depends on TCG_TPM && PNPACPI
  24. ---help---
  25. If you have a TPM security chip that is compliant with the
  26. TCG TIS 1.2 TPM specification say Yes and it will be accessible
  27. from within Linux. To compile this driver as a module, choose
  28. M here; the module will be called tpm_tis.
  29. config TCG_NSC
  30. tristate "National Semiconductor TPM Interface"
  31. depends on TCG_TPM && PNPACPI
  32. ---help---
  33. If you have a TPM security chip from National Semiconductor
  34. say Yes and it will be accessible from within Linux. To
  35. compile this driver as a module, choose M here; the module
  36. will be called tpm_nsc.
  37. config TCG_ATMEL
  38. tristate "Atmel TPM Interface"
  39. depends on TCG_TPM
  40. ---help---
  41. If you have a TPM security chip from Atmel say Yes and it
  42. will be accessible from within Linux. To compile this driver
  43. as a module, choose M here; the module will be called tpm_atmel.
  44. config TCG_INFINEON
  45. tristate "Infineon Technologies TPM Interface"
  46. depends on TCG_TPM && PNPACPI
  47. ---help---
  48. If you have a TPM security chip from Infineon Technologies
  49. (either SLD 9630 TT 1.1 or SLB 9635 TT 1.2) say Yes and it
  50. will be accessible from within Linux.
  51. To compile this driver as a module, choose M here; the module
  52. will be called tpm_infineon.
  53. Further information on this driver and the supported hardware
  54. can be found at http://www.prosec.rub.de/tpm
  55. endmenu