From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: "Marc-André Lureau" <marcandre.lureau@gmail.com>
Cc: QEMU <qemu-devel@nongnu.org>,
Amarnath Valluri <amarnath.valluri@intel.com>
Subject: Re: [Qemu-devel] [PATCH v3 for-2.11 3/3] tpm_tis: Return 0 for every register in case of failure mode
Date: Tue, 14 Nov 2017 20:18:53 -0500 [thread overview]
Message-ID: <8f332ba7-87f3-2f7e-1549-ba2435e090d1@linux.vnet.ibm.com> (raw)
In-Reply-To: <CAJ+F1CLEUxM=BRnxOtni2-VU10Ho7mvzcSAMP3S2MLQtjwSbrA@mail.gmail.com>
On 11/14/2017 06:47 PM, Marc-André Lureau wrote:
> Hi
>
> On Tue, Nov 14, 2017 at 10:52 PM, Stefan Berger
> <stefanb@linux.vnet.ibm.com> wrote:
>> Rather than returning ~0, return 0 for every register in case of
>> failure mode. The '0' is better to indicate that there's no device
>> there.
> For most registers, 0 makes more sense. However, I wonder if we
> shouldn't just fail to start qemu in this case...
>
> Not convincing me this is 2.11 material either. Does this fix a specific bug?
Yes, SeaBIOS detects the ~0 when it probes and thinks there's a device
there. It then hangs trying to set flags and read registers to be able
to use the device.
Stefan
>
>> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
>> ---
>> hw/tpm/tpm_tis.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c
>> index fec2fc6..42d647d 100644
>> --- a/hw/tpm/tpm_tis.c
>> +++ b/hw/tpm/tpm_tis.c
>> @@ -545,7 +545,7 @@ static uint64_t tpm_tis_mmio_read(void *opaque, hwaddr addr,
>> uint8_t v;
>>
>> if (tpm_backend_had_startup_error(s->be_driver)) {
>> - return val;
>> + return 0;
>> }
>>
>> switch (offset) {
>> --
>> 2.5.5
>>
>
>
next prev parent reply other threads:[~2017-11-15 1:19 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-14 21:52 [Qemu-devel] [PATCH v3 for-2.11 0/3] tpm: a few fixes Stefan Berger
2017-11-14 21:52 ` [Qemu-devel] [PATCH v3 for-2.11 1/3] tpm_emulator: Add a caching layer for the TPM Established flag Stefan Berger
2017-11-14 23:40 ` Marc-André Lureau
2017-11-15 1:16 ` Stefan Berger
2017-11-15 3:47 ` Marc-André Lureau
2017-11-15 9:05 ` Valluri, Amarnath
2017-12-05 20:56 ` Stefan Berger
2017-11-15 12:18 ` Stefan Berger
2017-12-20 16:24 ` Marc-André Lureau
2017-11-14 21:52 ` [Qemu-devel] [PATCH v3 for-2.11 2/3] tpm_tis: Return TPM_VERSION_UNSPEC in case of BE failure Stefan Berger
2017-11-14 23:41 ` Marc-André Lureau
2017-11-14 21:52 ` [Qemu-devel] [PATCH v3 for-2.11 3/3] tpm_tis: Return 0 for every register in case of failure mode Stefan Berger
2017-11-14 23:47 ` Marc-André Lureau
2017-11-15 1:18 ` Stefan Berger [this message]
2017-11-15 3:45 ` Marc-André Lureau
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=8f332ba7-87f3-2f7e-1549-ba2435e090d1@linux.vnet.ibm.com \
--to=stefanb@linux.vnet.ibm.com \
--cc=amarnath.valluri@intel.com \
--cc=marcandre.lureau@gmail.com \
--cc=qemu-devel@nongnu.org \
/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;
as well as URLs for NNTP newsgroup(s).