From: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
To: Stefan Berger <stefanb@linux.vnet.ibm.com>
Cc: "tpmdd-devel@lists.sourceforge.net"
<tpmdd-devel@lists.sourceforge.net>,
James Morris <jmorris@namei.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
m.selhorst@sirrix.com, a.miskiewicz@gmail.com
Subject: Re: [PATCH] Refuse activation of tpm_tis driver if TPM is not working correctly
Date: Mon, 10 Oct 2011 10:04:32 -0300 [thread overview]
Message-ID: <4E92ED60.8080909@linux.vnet.ibm.com> (raw)
In-Reply-To: <1318249005.5482.5.camel@d941e-10>
On 10/10/11 09:16, Stefan Berger wrote:
> Refuse activation of tpm_tis driver if the TPM is found not to be
> working correctly. This prevents suspend/resume problems for me on
> Lenovo W500 and T61p.
>
> Signed-off-by: Stefan Berger<stefanb@linux.vnet.ibm.com>
Testing and trying to reproduce it here.
Rajiv
>
> ---
> drivers/char/tpm/tpm_tis.c | 13 +++++++++++++
> 1 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c
> index 3f4051a..7f2761d 100644
> --- a/drivers/char/tpm/tpm_tis.c
> +++ b/drivers/char/tpm/tpm_tis.c
> @@ -549,6 +549,7 @@ static int tpm_tis_init(struct device *dev, resource_size_t start,
> u32 vendor, intfcaps, intmask;
> int rc, i, irq_s, irq_e;
> struct tpm_chip *chip;
> + u8 digest[TPM_DIGEST_SIZE];
>
> if (!(chip = tpm_register_hardware(dev,&tpm_tis)))
> return -ENODEV;
> @@ -616,6 +617,18 @@ static int tpm_tis_init(struct device *dev, resource_size_t start,
> /* get the timeouts before testing for irqs */
> tpm_get_timeouts(chip);
>
> + /* test for correctly working TPM; refuse driver if not working
> + to prevent suspend/resume problems */
> + rc = tpm_pcr_read(chip->dev_num, 0, digest);
> + if (rc != 0) {
> + dev_err(dev, "Could not read PCR 0. "
> + "TPM is not working correctly.\n");
> + dev_err(dev, "Was machine previously suspended without TPM "
> + "driver present?\n");
> + rc = -ENODEV;
> + goto out_err;
> + }
> +
> /* INTERRUPT Setup */
> init_waitqueue_head(&chip->vendor.read_queue);
> init_waitqueue_head(&chip->vendor.int_queue);
next prev parent reply other threads:[~2011-10-10 13:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-10 12:16 [PATCH] Refuse activation of tpm_tis driver if TPM is not working correctly Stefan Berger
2011-10-10 13:04 ` Rajiv Andrade [this message]
2011-10-10 15:07 ` [tpmdd-devel] " Rajiv Andrade
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E92ED60.8080909@linux.vnet.ibm.com \
--to=srajiv@linux.vnet.ibm.com \
--cc=a.miskiewicz@gmail.com \
--cc=jmorris@namei.org \
--cc=linux-kernel@vger.kernel.org \
--cc=m.selhorst@sirrix.com \
--cc=stefanb@linux.vnet.ibm.com \
--cc=tpmdd-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.