diff options
author | Mathias Leblanc <mathias.leblanc@st.com> | 2012-11-14 09:31:44 -0500 |
---|---|---|
committer | Kent Yoder <key@linux.vnet.ibm.com> | 2013-02-05 10:38:23 -0500 |
commit | 2bfee22f6c60e046f6b04f2d4855fddac1f67290 (patch) | |
tree | 48b52d280a63a57ad147ae55c9d1e01a52fd29fb /drivers/char | |
parent | 9da228ea0f5ab50032f77eaa0b2a02c04ceede1d (diff) |
TPM: STMicroelectronics ST33 I2C BUILD STUFF
* STMicroelectronics version 1.2.0, Copyright (C) 2010
* STMicroelectronics comes with ABSOLUTELY NO WARRANTY.
* This is free software, and you are welcome to redistribute it
* under certain conditions.
This is the driver for TPM chip from ST Microelectronics.
If you have a TPM security chip from STMicroelectronics working with
an I2C, in menuconfig or .config choose the tpm driver on
device --> tpm and activate the protocol of your choice before compiling
the kernel.
The driver will be accessible from within Linux.
Tested on linux x86/x64, beagleboard REV B & XM REV C and CHROMIUM OS
Signed-off-by: Mathias Leblanc <mathias.leblanc@st.com>
Signed-off-by: Kent Yoder <key@linux.vnet.ibm.com>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tpm/Kconfig | 10 | ||||
-rw-r--r-- | drivers/char/tpm/Makefile | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/char/tpm/Kconfig b/drivers/char/tpm/Kconfig index 915875e431d2..765d1c7e92b9 100644 --- a/drivers/char/tpm/Kconfig +++ b/drivers/char/tpm/Kconfig | |||
@@ -81,4 +81,14 @@ config TCG_IBMVTPM | |||
81 | will be accessible from within Linux. To compile this driver | 81 | will be accessible from within Linux. To compile this driver |
82 | as a module, choose M here; the module will be called tpm_ibmvtpm. | 82 | as a module, choose M here; the module will be called tpm_ibmvtpm. |
83 | 83 | ||
84 | config TCG_ST33_I2C | ||
85 | tristate "STMicroelectronics ST33 I2C TPM" | ||
86 | depends on I2C | ||
87 | depends on GPIOLIB | ||
88 | ---help--- | ||
89 | If you have a TPM security chip from STMicroelectronics working with | ||
90 | an I2C bus say Yes and it will be accessible from within Linux. | ||
91 | To compile this driver as a module, choose M here; the module will be | ||
92 | called tpm_stm_st33_i2c. | ||
93 | |||
84 | endif # TCG_TPM | 94 | endif # TCG_TPM |
diff --git a/drivers/char/tpm/Makefile b/drivers/char/tpm/Makefile index 5b3fc8bc6c13..a3736c97c65a 100644 --- a/drivers/char/tpm/Makefile +++ b/drivers/char/tpm/Makefile | |||
@@ -17,3 +17,4 @@ obj-$(CONFIG_TCG_NSC) += tpm_nsc.o | |||
17 | obj-$(CONFIG_TCG_ATMEL) += tpm_atmel.o | 17 | obj-$(CONFIG_TCG_ATMEL) += tpm_atmel.o |
18 | obj-$(CONFIG_TCG_INFINEON) += tpm_infineon.o | 18 | obj-$(CONFIG_TCG_INFINEON) += tpm_infineon.o |
19 | obj-$(CONFIG_TCG_IBMVTPM) += tpm_ibmvtpm.o | 19 | obj-$(CONFIG_TCG_IBMVTPM) += tpm_ibmvtpm.o |
20 | obj-$(CONFIG_TCG_ST33_I2C) += tpm_i2c_stm_st33.o | ||