From: Jarkko Sakkinen <jarkko@kernel.org>
To: wanghongzhe <wanghongzhe@huawei.com>
Cc: peterhuewe@gmx.de, jgg@ziepe.ca, linux-integrity@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] tpm_tis_spi_main: set cs_change = 0 when timesout
Date: Mon, 8 Feb 2021 01:42:08 +0200 [thread overview]
Message-ID: <YCB60CRpdhb7/HZ+@kernel.org> (raw)
In-Reply-To: <1612507325-2621-1-git-send-email-wanghongzhe@huawei.com>
On Fri, Feb 05, 2021 at 02:42:05PM +0800, wanghongzhe wrote:
> when i reach TPM_RETRY, the cs cannot change back to 'high'.
> So the TPM chips thinks this communication is not over.
> And next times communication cannot be effective because
> the communications mixed up with the last time.
>
> Signed-off-by: wanghongzhe <wanghongzhe@huawei.com>
~~~~~~~~~~~
Firstname Lastname
Please write legit sentences starting with capital letters etc.
Please write the commit message in imperative form. E.g. "Do x because y
..". I presume that *you* are not an actor in the sequence.
You also would need to have a fixes tag and preferably some description
of the failing sequence if possible.
/Jarkko
> ---
> drivers/char/tpm/tpm_tis_spi_main.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/char/tpm/tpm_tis_spi_main.c b/drivers/char/tpm/tpm_tis_spi_main.c
> index 3856f6ebcb34..6c52cbb28881 100644
> --- a/drivers/char/tpm/tpm_tis_spi_main.c
> +++ b/drivers/char/tpm/tpm_tis_spi_main.c
> @@ -64,8 +64,18 @@ static int tpm_tis_spi_flow_control(struct tpm_tis_spi_phy *phy,
> break;
> }
>
> - if (i == TPM_RETRY)
> + if (i == TPM_RETRY) {
> + /* change back to 'high',
> + * So the TPM chips thinks the last communication
> + * is done.
> + */
> + spi_xfer.cs_change = 0;
> + spi_xfer->len = 1;
> + spi_message_init(&m);
> + spi_message_add_tail(spi_xfer, &m);
> + ret = spi_sync_locked(phy->spi_device, &m);
> return -ETIMEDOUT;
> + }
> }
>
> return 0;
> --
> 2.19.1
>
>
next prev parent reply other threads:[~2021-02-07 23:43 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-05 6:42 [PATCH v1] tpm_tis_spi_main: set cs_change = 0 when timesout wanghongzhe
2021-02-05 7:50 ` kernel test robot
2021-02-05 7:50 ` kernel test robot
2021-02-07 23:42 ` Jarkko Sakkinen [this message]
2021-02-08 2:43 ` [PATCH v2] " wanghongzhe
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=YCB60CRpdhb7/HZ+@kernel.org \
--to=jarkko@kernel.org \
--cc=jgg@ziepe.ca \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=peterhuewe@gmx.de \
--cc=wanghongzhe@huawei.com \
/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.