From: Andi Shyti <andi.shyti@gmail.com>
To: Peter Huewe <peter.huewe@infineon.com>
Cc: Rajiv Andrade <srajiv@linux.vnet.ibm.com>,
tpmdd@selhorst.net, tpmdd-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org, Olof Johansson <olof@lixom.net>,
Luigi Semenzato <semenzato@google.com>,
Bryan Freed <bfreed@chromium.org>
Subject: Re: [PATCH] CHROMIUM: tpm: tpm_tis_i2c: Lock the I2C adapter for a sequence of requests.
Date: Wed, 2 May 2012 17:17:34 +0200 [thread overview]
Message-ID: <20120502151734.GD16981@andi> (raw)
In-Reply-To: <1335967416-7564-1-git-send-email-peter.huewe@infineon.com>
Hi again :),
On Wed, May 02, 2012 at 04:03:36PM +0200, Peter Huewe wrote:
> From: Bryan Freed <bfreed@chromium.org>
>
> This is derived from Peter Huewe's recommended fix:
>
> On some ChromeOS systems, a TPM sharing the I2C bus with another device
> gets confused when it sees I2C requests to that other device.
> This change locks the I2C adapter for the duration of the full sequence
> of I2C requests the TPM needs to complete.
>
> smbus_xfer is not supported, but SMBUS is not supported by the original
> driver, either.
>
> Signed-off-by: Bryan Freed <bfreed@chromium.org>
> Signed-off-by: Peter Huewe <peter.huewe@infineon.com>
> ---
> drivers/char/tpm/tpm_tis_i2c.c | 42 ++++++++++++++++++++++++++++++++++++---
> 1 files changed, 38 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/char/tpm/tpm_tis_i2c.c b/drivers/char/tpm/tpm_tis_i2c.c
> index 8975abf..e68f209 100644
> --- a/drivers/char/tpm/tpm_tis_i2c.c
> +++ b/drivers/char/tpm/tpm_tis_i2c.c
> @@ -61,6 +61,28 @@ static struct tpm_inf_dev tpm_dev;
>
>
> /*
> + * Copy i2c-core:i2c_transfer() as close as possible without the adapter locks
> + * and algorithm check. These are done by the caller for atomicity.
> + */
> +static int i2c_transfer_nolock(struct i2c_adapter *adap, struct i2c_msg *msgs,
> + int num)
> +{
> + unsigned long orig_jiffies;
> + int ret, try;
> +
> + /* Retry automatically on arbitration loss */
> + orig_jiffies = jiffies;
> + for (ret = 0, try = 0; try <= adap->retries; try++) {
> + ret = adap->algo->master_xfer(adap, msgs, num);
> + if (ret != -EAGAIN)
> + break;
> + if (time_after(jiffies, orig_jiffies + adap->timeout))
> + break;
> + }
> + return ret;
> +}
> +
> +/*
> * iic_tpm_read() - read from TPM register
> * @addr: register address to read from
> * @buffer: provided by caller
> @@ -83,8 +105,13 @@ static int iic_tpm_read(u8 addr, u8 *buffer, size_t len)
> int rc;
> int count;
>
> + /* Lock the adapter for the duration of the whole sequence. */
> + if (!tpm_dev.client->adapter->algo->master_xfer)
> + return -EOPNOTSUPP;
> + i2c_lock_adapter(tpm_dev.client->adapter);
> +
> for (count = 0; count < MAX_COUNT; count++) {
> - rc = i2c_transfer(tpm_dev.client->adapter, &msg1, 1);
> + rc = i2c_transfer_nolock(tpm_dev.client->adapter, &msg1, 1);
> if (rc > 0)
> break; /* break here to skip sleep */
>
> @@ -92,19 +119,21 @@ static int iic_tpm_read(u8 addr, u8 *buffer, size_t len)
> }
>
> if (rc <= 0)
> - return -EIO;
> + goto out;
>
> /* After the TPM has successfully received the register address it needs
> * some time, thus we're sleeping here again, before retrieving the data
> */
> for (count = 0; count < MAX_COUNT; count++) {
> usleep_range(SLEEP_DURATION_LOW, SLEEP_DURATION_HI);
> - rc = i2c_transfer(tpm_dev.client->adapter, &msg2, 1);
> + rc = i2c_transfer_nolock(tpm_dev.client->adapter, &msg2, 1);
> if (rc > 0)
> break;
>
> }
>
> +out:
> + i2c_unlock_adapter(tpm_dev.client->adapter);
> if (rc <= 0)
> return -EIO;
>
> @@ -121,17 +150,22 @@ static int iic_tpm_write_generic(u8 addr, u8 *buffer, size_t len,
>
> struct i2c_msg msg1 = { tpm_dev.client->addr, 0, len + 1, tpm_dev.buf };
>
> + if (!tpm_dev.client->adapter->algo->master_xfer)
> + return -EOPNOTSUPP;
> + i2c_lock_adapter(tpm_dev.client->adapter);
> +
> tpm_dev.buf[0] = addr;
> memcpy(&(tpm_dev.buf[1]), buffer, len);
>
> for (count = 0; count < max_count; count++) {
> - rc = i2c_transfer(tpm_dev.client->adapter, &msg1, 1);
> + rc = i2c_transfer_nolock(tpm_dev.client->adapter, &msg1, 1);
> if (rc > 0)
> break;
>
> usleep_range(sleep_low, sleep_hi);
> }
>
> + i2c_unlock_adapter(tpm_dev.client->adapter);
> if (rc <= 0)
> return -EIO;
>
try to have a look to the i2c_smbus* function, you could avoid
lot of code
Andi
> --
> 1.7.6.msysgit.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2012-05-02 15:17 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-02 14:01 [PATCH] char/tpm: Add new driver for Infineon I2C TIS TPM Peter Huewe
2012-05-02 14:03 ` [PATCH] CHROMIUM: tpm: tpm_tis_i2c: Lock the I2C adapter for a sequence of requests Peter Huewe
2012-05-02 15:17 ` Andi Shyti [this message]
2012-05-02 17:25 ` Bryan Freed
2012-05-02 18:14 ` Andi Shyti
2012-05-02 19:06 ` Bryan Freed
2012-05-02 20:18 ` Andi Shyti
2012-05-02 21:58 ` Bryan Freed
2012-05-02 20:54 ` Peter Hüwe
2012-05-02 15:15 ` [PATCH] char/tpm: Add new driver for Infineon I2C TIS TPM Andi Shyti
2012-05-03 11:18 ` Peter.Huewe
2012-05-10 6:49 ` Andi Shyti
-- strict thread matches above, loose matches on Subject: below --
2011-08-03 21:08 [PATCH] CHROMIUM: tpm: tpm_tis_i2c: Lock the I2C adapter for a sequence of requests Bryan Freed
2011-08-05 7:33 ` Huewe.external
2011-08-05 12:05 ` Huewe.external
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=20120502151734.GD16981@andi \
--to=andi.shyti@gmail.com \
--cc=bfreed@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=olof@lixom.net \
--cc=peter.huewe@infineon.com \
--cc=semenzato@google.com \
--cc=srajiv@linux.vnet.ibm.com \
--cc=tpmdd-devel@lists.sourceforge.net \
--cc=tpmdd@selhorst.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox