diff mbox

[v4,1/2] AMD IOMMU: Removing currently non-functioning guest iommu feature

Message ID 1464810780-1640-2-git-send-email-suravee.suthikulpanit@amd.com (mailing list archive)
State New, archived
Headers show

Commit Message

Suravee Suthikulpanit June 1, 2016, 7:52 p.m. UTC
From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>

The guest IOMMU feature is currently not functioning. However,
the current guest_iommu_init() is causing issue when it tries to
register mmio handler because the it is currently called by the
following code path:

  arch/x86/domain.c: arch_domain_create()
    ]- drivers/passthrough/iommu.c: iommu_domain_init()
      |- drivers/passthrough/amd/pci_amd_iommu.c: amd_iommu_domain_init();
        |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()

At this point, the hvm_domain_initialised() has not been called.
So register_mmio_handler() in guest_iommu_init() silently fails.

This patch removes the guest IOMMU feature for now until we can properly
support it.

Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
---
 xen/drivers/passthrough/amd/pci_amd_iommu.c | 4 ----
 1 file changed, 4 deletions(-)

Comments

Paul Durrant June 2, 2016, 8:01 a.m. UTC | #1
> -----Original Message-----
> From: suravee.suthikulpanit@amd.com
> [mailto:suravee.suthikulpanit@amd.com]
> Sent: 01 June 2016 20:53
> To: xen-devel@lists.xen.org; Paul Durrant; jbeulich@suse.com; George
> Dunlap
> Cc: Keir (Xen.org); Suravee Suthikulpanit; Suravee Suthikulpanit
> Subject: [PATCH v4 1/2] AMD IOMMU: Removing currently non-functioning
> guest iommu feature
> 
> From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> 
> The guest IOMMU feature is currently not functioning. However,
> the current guest_iommu_init() is causing issue when it tries to
> register mmio handler because the it is currently called by the
> following code path:
> 
>   arch/x86/domain.c: arch_domain_create()
>     ]- drivers/passthrough/iommu.c: iommu_domain_init()
>       |- drivers/passthrough/amd/pci_amd_iommu.c:
> amd_iommu_domain_init();
>         |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()
> 
> At this point, the hvm_domain_initialised() has not been called.
> So register_mmio_handler() in guest_iommu_init() silently fails.
> 
> This patch removes the guest IOMMU feature for now until we can properly
> support it.
> 
> Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>

Reviewed-by: Paul Durrant <paul.durrant@citrix.com>

> ---
>  xen/drivers/passthrough/amd/pci_amd_iommu.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/xen/drivers/passthrough/amd/pci_amd_iommu.c
> b/xen/drivers/passthrough/amd/pci_amd_iommu.c
> index 70b7475..fce9827 100644
> --- a/xen/drivers/passthrough/amd/pci_amd_iommu.c
> +++ b/xen/drivers/passthrough/amd/pci_amd_iommu.c
> @@ -272,9 +272,6 @@ static int amd_iommu_domain_init(struct domain *d)
>      hd->arch.paging_mode = is_hvm_domain(d) ?
>                        IOMMU_PAGING_MODE_LEVEL_2 :
>                        get_paging_mode(max_page);
> -
> -    guest_iommu_init(d);
> -
>      return 0;
>  }
> 
> @@ -474,7 +471,6 @@ static void deallocate_iommu_page_tables(struct
> domain *d)
> 
>  static void amd_iommu_domain_destroy(struct domain *d)
>  {
> -    guest_iommu_destroy(d);
>      deallocate_iommu_page_tables(d);
>      amd_iommu_flush_all_pages(d);
>  }
> --
> 1.9.1
Jan Beulich June 2, 2016, 9:55 a.m. UTC | #2
>>> On 01.06.16 at 21:52, <suravee.suthikulpanit@amd.com> wrote:
> From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> 
> The guest IOMMU feature is currently not functioning. However,
> the current guest_iommu_init() is causing issue when it tries to
> register mmio handler because the it is currently called by the
> following code path:
> 
>   arch/x86/domain.c: arch_domain_create()
>     ]- drivers/passthrough/iommu.c: iommu_domain_init()
>       |- drivers/passthrough/amd/pci_amd_iommu.c: amd_iommu_domain_init();
>         |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()
> 
> At this point, the hvm_domain_initialised() has not been called.
> So register_mmio_handler() in guest_iommu_init() silently fails.
> 
> This patch removes the guest IOMMU feature for now until we can properly
> support it.
> 
> Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>

Thanks, quite reasonable. And imo actually a 4.7 candidate. Wei?

Jan
Wei Liu June 2, 2016, 10:26 a.m. UTC | #3
On Thu, Jun 02, 2016 at 03:55:41AM -0600, Jan Beulich wrote:
> >>> On 01.06.16 at 21:52, <suravee.suthikulpanit@amd.com> wrote:
> > From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> > 
> > The guest IOMMU feature is currently not functioning. However,
> > the current guest_iommu_init() is causing issue when it tries to
> > register mmio handler because the it is currently called by the
> > following code path:
> > 
> >   arch/x86/domain.c: arch_domain_create()
> >     ]- drivers/passthrough/iommu.c: iommu_domain_init()
> >       |- drivers/passthrough/amd/pci_amd_iommu.c: amd_iommu_domain_init();
> >         |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()
> > 
> > At this point, the hvm_domain_initialised() has not been called.
> > So register_mmio_handler() in guest_iommu_init() silently fails.
> > 
> > This patch removes the guest IOMMU feature for now until we can properly
> > support it.
> > 
> > Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
> 
> Thanks, quite reasonable. And imo actually a 4.7 candidate. Wei?
> 

Release-acked-by: Wei Liu <wei.liu2@citrix.com>

Please apply this series within this week.

> Jan
>
Jan Beulich June 2, 2016, 10:43 a.m. UTC | #4
>>> On 02.06.16 at 12:26, <wei.liu2@citrix.com> wrote:
> On Thu, Jun 02, 2016 at 03:55:41AM -0600, Jan Beulich wrote:
>> >>> On 01.06.16 at 21:52, <suravee.suthikulpanit@amd.com> wrote:
>> > From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
>> > 
>> > The guest IOMMU feature is currently not functioning. However,
>> > the current guest_iommu_init() is causing issue when it tries to
>> > register mmio handler because the it is currently called by the
>> > following code path:
>> > 
>> >   arch/x86/domain.c: arch_domain_create()
>> >     ]- drivers/passthrough/iommu.c: iommu_domain_init()
>> >       |- drivers/passthrough/amd/pci_amd_iommu.c: amd_iommu_domain_init();
>> >         |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()
>> > 
>> > At this point, the hvm_domain_initialised() has not been called.
>> > So register_mmio_handler() in guest_iommu_init() silently fails.
>> > 
>> > This patch removes the guest IOMMU feature for now until we can properly
>> > support it.
>> > 
>> > Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
>> 
>> Thanks, quite reasonable. And imo actually a 4.7 candidate. Wei?
>> 
> 
> Release-acked-by: Wei Liu <wei.liu2@citrix.com>
> 
> Please apply this series within this week.

Series? Also the other one, which is pretty benign imo?

Jan
Wei Liu June 2, 2016, 10:49 a.m. UTC | #5
On Thu, Jun 02, 2016 at 04:43:32AM -0600, Jan Beulich wrote:
> >>> On 02.06.16 at 12:26, <wei.liu2@citrix.com> wrote:
> > On Thu, Jun 02, 2016 at 03:55:41AM -0600, Jan Beulich wrote:
> >> >>> On 01.06.16 at 21:52, <suravee.suthikulpanit@amd.com> wrote:
> >> > From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> >> > 
> >> > The guest IOMMU feature is currently not functioning. However,
> >> > the current guest_iommu_init() is causing issue when it tries to
> >> > register mmio handler because the it is currently called by the
> >> > following code path:
> >> > 
> >> >   arch/x86/domain.c: arch_domain_create()
> >> >     ]- drivers/passthrough/iommu.c: iommu_domain_init()
> >> >       |- drivers/passthrough/amd/pci_amd_iommu.c: amd_iommu_domain_init();
> >> >         |- drivers/passthrough/amd/iommu_guest.c: guest_iommu_init()
> >> > 
> >> > At this point, the hvm_domain_initialised() has not been called.
> >> > So register_mmio_handler() in guest_iommu_init() silently fails.
> >> > 
> >> > This patch removes the guest IOMMU feature for now until we can properly
> >> > support it.
> >> > 
> >> > Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
> >> 
> >> Thanks, quite reasonable. And imo actually a 4.7 candidate. Wei?
> >> 
> > 
> > Release-acked-by: Wei Liu <wei.liu2@citrix.com>
> > 
> > Please apply this series within this week.
> 
> Series? Also the other one, which is pretty benign imo?
> 

Yes, the other one as well. I thought it you wanted this whole series in.

But if you only want this one in, that's of course fine by me.

Wei.

> Jan
>
diff mbox

Patch

diff --git a/xen/drivers/passthrough/amd/pci_amd_iommu.c b/xen/drivers/passthrough/amd/pci_amd_iommu.c
index 70b7475..fce9827 100644
--- a/xen/drivers/passthrough/amd/pci_amd_iommu.c
+++ b/xen/drivers/passthrough/amd/pci_amd_iommu.c
@@ -272,9 +272,6 @@  static int amd_iommu_domain_init(struct domain *d)
     hd->arch.paging_mode = is_hvm_domain(d) ?
                       IOMMU_PAGING_MODE_LEVEL_2 :
                       get_paging_mode(max_page);
-
-    guest_iommu_init(d);
-
     return 0;
 }
 
@@ -474,7 +471,6 @@  static void deallocate_iommu_page_tables(struct domain *d)
 
 static void amd_iommu_domain_destroy(struct domain *d)
 {
-    guest_iommu_destroy(d);
     deallocate_iommu_page_tables(d);
     amd_iommu_flush_all_pages(d);
 }