qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 6/6] x86_iommu/amd: Enable Guest virtual APIC su


From: Peter Xu
Subject: Re: [Qemu-devel] [PATCH 6/6] x86_iommu/amd: Enable Guest virtual APIC support
Date: Thu, 13 Sep 2018 19:44:55 +0800
User-agent: Mutt/1.10.1 (2018-07-13)

On Thu, Sep 13, 2018 at 03:36:28PM +0700, Suravee Suthikulpanit wrote:
> Brijesh/Peter,
> 
> On 9/13/18 4:14 AM, Brijesh Singh wrote:
> > 
> > 
> > On 09/11/2018 11:52 PM, Peter Xu wrote:
> > ...
> > 
> > > > 
> > > > diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> > > > index 5c2c638..1cbc8ba 100644
> > > > --- a/hw/i386/acpi-build.c
> > > > +++ b/hw/i386/acpi-build.c
> > > > @@ -2565,7 +2565,8 @@ build_amd_iommu(GArray *table_data, BIOSLinker 
> > > > *linker)
> > > >       build_append_int_noprefix(table_data,
> > > >                                (48UL << 30) | /* HATS   */
> > > >                                (48UL << 28) | /* GATS   */
> > > > -                             (1UL << 2),    /* GTSup  */
> > > > +                             (1UL << 2)   | /* GTSup  */
> > > > +                             (1UL << 6),    /* GASup  */
> > > 
> > > Sorry if I misunderstood - is this for nested?
> > > 
> > > I'm a bit confused here... IIUC in your previous patches you didn't
> > > really implement guest_mode==1 case in IRTEs.  So if you have this set
> > > then the guest should be able to setup IRTEs with guest_mode==1?  How
> > > did it work?
> > > 
> > 
> > Yes, sometime spec can be confusing ;) let me see if I can explain it.
> > 
> > Suravee, please correct me if I misunderstood something
> > 
> > - A legacy interrupt remap support is available on all IOMMU versions.
> > 
> >    Guest OS makes the decision whether to use the feature. Guest OS
> >    sets the IV bit in DTE to indicate when there is a valid interrupt
> >    map (See Table 7 DTE definition).
> > 
> >    In this mode, IRTE is 32-bit. The field details are available
> >    in Table 20 - Section 2.2.5.2. The third patch in this series
> >    implements the support for this case.
> 
> This is correct.
> 
> > 
> > - When AVIC is used in the guest, the intr remap logic is different.
> > 
> >    Based on the guest_mode, IOMMU and AVIC may need to work together
> >    to remap the interrupts (IOMMU spec refers this as Guest Virtual APIC
> >    Enabled -- Section 2.2.5.3).
> > 
> >    The GASup bit in extended feature register and IVHD IOMMU feature
> >    reporting field in IVRS are used to tell whether the IOMMU supports
> >    intr remap when AVIC is enabled in the guest.
> > 
> >    In this mode, the IRTE is 128-bit.
> 
> GASup is a prereq for GAMSup and several other features in the future.
> 
> > 
> >    To make things interesting, there is a GAMSup bit in extended
> >    feature register. It is used by IOMMU to tell the AVIC supported
> >    modes:
> > 
> >    a) 0 = intr_remap only (i.e IOMMU can remap the interrupt on its own)
> >    b) 1 = Both guest AVIC and IOMMU will work together to remap the intr
> > 
> >    The patch 5 in the series implements the intr_remap (#a)
> > 
> >    I have not implemented the mode=1. I am not sure if its worth
> >    implementing this mode for the emulated IOMMU case.
> > 
> >    See Table 21 for control knobs from IOMMU. This patch series
> >    implements the first three rows.
> 
> GAMSup is guest virtual APIC mode (aka AVIC), and for vIOMMU case,
> would be used for nested VM. This is not currently supported for vIOMMU,

Hi, Brijesh, Suravee,

Thank you for the explanations.  Now with that I understand the states
and, yes, I agree that the patchset has implemented 128bits int remap
so you should have GASup set on both places (and keep GAMSup==0).
Then please take mine:

Reviewed-by: Peter Xu <address@hidden>

Actually I don't quite understand why these information needs to be
declared in two places (ACPI and MMIO region).  More interestingly, I
noticed that there is a note in the ACPI chapter 5:

        Software Implementation Note: Information conveyed in the IVRS
        overrides the corresponding information available through the
        IOMMU hardware registers. System software is required to honor
        the ACPI settings.

Does it mean that there could be chance where both data do not match?
I would be curious why not only declare the capabilities at one place?
AFAIU that's what Intel is doing, e.g., Intel ACPI DRHD structures do
not have the feature bit declarations but they are all in the
capability registers.

Thanks,

-- 
Peter Xu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]