From: David Gibson <david@gibson.dropbear.id.au>
To: Nicholas Piggin <npiggin@gmail.com>
Cc: "Cédric Le Goater" <clg@kaod.org>,
qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
"Benjamin Herrenschmidt" <benh@kernel.crashing.org>
Subject: Re: [Qemu-devel] [PATCH v2] ppc: allow certain HV interrupts to be delivered to guests
Date: Tue, 25 Oct 2016 12:23:42 +1100 [thread overview]
Message-ID: <20161025012342.GL11052@umbus.fritz.box> (raw)
In-Reply-To: <20161024175622.22076067@roar.ozlabs.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 5436 bytes --]
On Mon, Oct 24, 2016 at 05:56:22PM +1100, Nicholas Piggin wrote:
> On Mon, 24 Oct 2016 12:16:19 +1100
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > On Fri, Oct 21, 2016 at 03:35:43PM +1100, Nicholas Piggin wrote:
> > > On Fri, 21 Oct 2016 12:09:54 +1100
> > > David Gibson <david@gibson.dropbear.id.au> wrote:
> > >
> > > > On Fri, Oct 21, 2016 at 12:40:58AM +1100, Nicholas Piggin wrote:
> > > > > On Thu, 20 Oct 2016 15:08:07 +0200
> > > > > Cédric Le Goater <clg@kaod.org> wrote:
> > > > >
> > > > > > On 10/20/2016 08:59 AM, Nicholas Piggin wrote:
> > > > > > > Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> > > > > > > ---
> > > > > > > target-ppc/excp_helper.c | 8 ++++++--
> > > > > > > 1 file changed, 6 insertions(+), 2 deletions(-)
> > > > > > >
> > > > > > > diff --git a/target-ppc/excp_helper.c b/target-ppc/excp_helper.c
> > > > > > > index 53c4075..477af10 100644
> > > > > > > --- a/target-ppc/excp_helper.c
> > > > > > > +++ b/target-ppc/excp_helper.c
> > > > > > > @@ -390,9 +390,13 @@ static inline void powerpc_excp(PowerPCCPU *cpu, int excp_model, int excp)
> > > > > > > /* indicate that we resumed from power save mode */
> > > > > > > msr |= 0x10000;
> > > > > > > new_msr |= ((target_ulong)1 << MSR_ME);
> > > > > > > + new_msr |= (target_ulong)MSR_HVB;
> > > > > > > + } else {
> > > > > > > + /* The ISA specifies the HV bit is set when the hardware interrupt
> > > > > > > + * is raised, however when hypervisors deliver the exception to
> > > > > > > + * guests, it should not be set.
> > > > > > > + */
> > > > > > > }
> > > > > > > -
> > > > > > > - new_msr |= (target_ulong)MSR_HVB;
> > > > > > > ail = 0;
> > > > > > > break;
> > > > > > > case POWERPC_EXCP_DSEG: /* Data segment exception */
> > > > > > >
> > > > > >
> > > > > > should not that be cleared later on in powerpc_excp() by :
> > > > > >
> > > > > > env->msr = new_msr & env->msr_mask;
> > > > > >
> > > > > > ? but the routine is rather long so I might be missing a branch.
> > > > >
> > > > > No you're right, so it can't leak into the guest, phew!
> > > > >
> > > > > The problem I get is the interrupt code doing some things differently
> > > > > depending on on the HV bit. For example what I noticed is the guest
> > > > > losing its LE bit upon entry.
> > > > >
> > > > > Perhaps a cleaner way is for the system reset case to set new_msr
> > > > > according to the ISA, and then apply the msr_mask (or at least mask
> > > > > out HV) before calculating the exception model? Any preference?
> > > >
> > > > I think the proposed revision makes sense.
> > > >
> > >
> > > What do you think of this version? This fixes up machine check guest
> > > delivery as well. I'm sending this ahead of the new hcall patch, because
> > > it's a bugfix for existing code. I'll get around to the hcall again next
> > > week.
> > >
> > > Thanks,
> > > Nick
> > >
> > >
> > > ppc hypervisors have delivered system reset and machine check exception
> > > interrupts to guests in some situations (e.g., see FWNMI feature of LoPAPR,
> > > or NMI injection in QEMU).
> > >
> > > These exceptions are architected to set the HV bit in hardware, however
> > > when injected into a guest, the HV bit should be cleared. Current code
> > > masks off the HV bit before setting the new MSR, however this happens after
> > > the interrupt delivery model has calculated delivery mode for the exception.
> > > This can result in the guest's MSR LE bit being lost.
> > >
> > > Provide a new flag for HV exceptions to allow delivery to guests. The
> > > exception model masks out the HV bit.
> > >
> > > Also add another sanity check to ensure other such exceptions don't try
> > > to set HV in guest without setting guest_hv_excp
> > >
> > > Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> > > ---
> > > target-ppc/excp_helper.c | 25 ++++++++++++++++++++++---
> > > 1 file changed, 22 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/target-ppc/excp_helper.c b/target-ppc/excp_helper.c
> > > index 53c4075..1b18433 100644
> > > --- a/target-ppc/excp_helper.c
> > > +++ b/target-ppc/excp_helper.c
> > > @@ -77,7 +77,7 @@ static inline void powerpc_excp(PowerPCCPU *cpu, int excp_model, int excp)
> > > CPUState *cs = CPU(cpu);
> > > CPUPPCState *env = &cpu->env;
> > > target_ulong msr, new_msr, vector;
> > > - int srr0, srr1, asrr0, asrr1, lev, ail;
> > > + int srr0, srr1, asrr0, asrr1, lev, ail, guest_hv_excp;
> >
> > So, to clarify my understanding of this.
> >
> > The guest_hv_excp flag indicates that this is a normally-HV exception
> > which *could* be delivered to a guest with HV clear, *not* that we're
> > actually doing so in this instance. Yes?
>
> Correct.
Ok. Hmm. Could you please do a minor respin and:
- change the flag to a bool
- add a comment explaining this meaning
- if you can think of a name which makes the meaning more obvious (I
can't, quickly), change that too
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-10-25 2:50 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-20 6:59 [Qemu-devel] (no subject) Nicholas Piggin
2016-10-20 6:59 ` [Qemu-devel] [PATCH 1/3] ppc: fix MSR_ME handling for system reset interrupt Nicholas Piggin
2016-10-20 10:23 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2016-10-20 10:23 ` Cédric Le Goater
2016-10-21 1:09 ` [Qemu-devel] " David Gibson
2016-10-21 1:49 ` Nicholas Piggin
2016-10-20 6:59 ` [Qemu-devel] [PATCH 2/3] ppc: allow system reset interrupt to be delivered to guests Nicholas Piggin
2016-10-20 13:08 ` [Qemu-devel] [Qemu-ppc] " Cédric Le Goater
2016-10-20 13:40 ` Nicholas Piggin
2016-10-21 1:09 ` David Gibson
2016-10-21 4:35 ` [Qemu-devel] [PATCH v2] ppc: allow certain HV interrupts " Nicholas Piggin
2016-10-21 10:22 ` Cédric Le Goater
2016-10-24 1:16 ` David Gibson
2016-10-24 6:56 ` Nicholas Piggin
2016-10-25 1:23 ` David Gibson [this message]
2016-10-20 6:59 ` [Qemu-devel] [PATCH 3/3] ppc/spapr: implement H_SIGNAL_SYS_RESET Nicholas Piggin
2016-10-20 9:21 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
2016-10-20 13:25 ` Nicholas Piggin
2016-10-20 16:49 ` Greg Kurz
2016-10-21 0:56 ` Nicholas Piggin
2016-10-21 1:21 ` David Gibson
2016-10-20 11:49 ` [Qemu-devel] [Qemu-ppc] (no subject) Greg Kurz
2016-10-20 13:26 ` Nicholas Piggin
2016-10-20 13:19 ` Cédric Le Goater
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=20161025012342.GL11052@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=benh@kernel.crashing.org \
--cc=clg@kaod.org \
--cc=npiggin@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).