All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wei Wang2 <wei.wang2@amd.com>
To: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: [PATCH 3/4] amd iommu: Large io page support - enablement
Date: Fri, 3 Dec 2010 17:03:44 +0100	[thread overview]
Message-ID: <201012031703.44942.wei.wang2@amd.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

Enable super iommu support on amd systems.
Thanks,
We
Signed-off-by: Wei Wang <wei.wang2@amd.com>
--
Legal Information:
Advanced Micro Devices GmbH
Sitz: Dornach, Gemeinde Aschheim, 
Landkreis München Registergericht München, 
HRB Nr. 43632
Geschäftsführer:
Alberto Bozzo, Andrew Bowd

[-- Attachment #2: iommu_spage_enable.patch --]
[-- Type: text/x-diff, Size: 2622 bytes --]

diff -r 81606e1d202e xen/arch/x86/mm/p2m.c
--- a/xen/arch/x86/mm/p2m.c	Wed Dec 01 16:13:30 2010 +0100
+++ b/xen/arch/x86/mm/p2m.c	Wed Dec 01 17:11:16 2010 +0100
@@ -1381,7 +1381,16 @@ p2m_set_entry(struct p2m_domain *p2m, un
          && (gfn + (1UL << page_order) - 1 > p2m->max_mapped_pfn) )
         p2m->max_mapped_pfn = gfn + (1UL << page_order) - 1;
 
-    if ( iommu_enabled && need_iommu(p2m->domain) )
+    if ( iommu_enabled && iommu_super_page )
+    {
+        if ( p2mt == p2m_ram_rw )
+            iommu_map_pages(p2m->domain, gfn, mfn_x(mfn),
+                            page_order, IOMMUF_readable|IOMMUF_writable);
+        else
+            iommu_unmap_pages(p2m->domain, gfn, page_order);
+    }
+
+    else if ( iommu_enabled && need_iommu(p2m->domain) )
     {
         if ( p2mt == p2m_ram_rw )
             for ( i = 0; i < (1UL << page_order); i++ )
diff -r 81606e1d202e xen/drivers/passthrough/iommu.c
--- a/xen/drivers/passthrough/iommu.c	Wed Dec 01 16:13:30 2010 +0100
+++ b/xen/drivers/passthrough/iommu.c	Wed Dec 01 17:11:16 2010 +0100
@@ -111,6 +111,9 @@ void __init iommu_dom0_init(struct domai
     if ( !iommu_enabled )
         return;
 
+    if ( hd->platform_ops->map_pages == NULL )
+        iommu_super_page = 0;
+
     d->need_iommu = !!iommu_dom0_strict;
     if ( need_iommu(d) )
     {
@@ -177,7 +180,11 @@ int assign_device(struct domain *d, u8 b
     if ( has_arch_pdevs(d) && !need_iommu(d) )
     {
         d->need_iommu = 1;
-        rc = iommu_populate_page_table(d);
+        /* Populate iommu page table when hardware does not
+        support super IO page */
+        if ( (hd->platform_ops->map_pages == NULL) ||
+             (!iommu_super_page) )
+            rc = iommu_populate_page_table(d);
         goto done;
     }
 done:    
@@ -420,6 +427,33 @@ void iommu_suspend()
         ops->suspend();
 }
 
+int iommu_map_pages(struct domain *d, unsigned long gfn,
+    unsigned long mfn, unsigned int order,  unsigned int flags)
+{
+    struct hvm_iommu *hd = domain_hvm_iommu(d);
+
+    if ( !iommu_enabled || !hd->platform_ops )
+        return 0;
+
+    if ( hd->platform_ops->map_pages != NULL )
+        return hd->platform_ops->map_pages(d, gfn, mfn, order, flags);
+
+    return 0;
+}
+
+int iommu_unmap_pages(struct domain *d, unsigned long gfn, unsigned int order)
+{
+    struct hvm_iommu *hd = domain_hvm_iommu(d);
+
+    if ( !iommu_enabled || !hd->platform_ops )
+        return 0;
+
+    if ( hd->platform_ops->map_pages != NULL )
+        return hd->platform_ops->unmap_pages(d, gfn, order);
+
+    return 0;
+}
+
 /*
  * Local variables:
  * mode: C

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

             reply	other threads:[~2010-12-03 16:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-03 16:03 Wei Wang2 [this message]
2010-12-03 16:24 ` [PATCH 3/4] amd iommu: Large io page support - enablement Keir Fraser
2010-12-03 16:45   ` Wei Wang2
2010-12-03 18:28     ` Keir Fraser
2010-12-06  9:47       ` Wei Wang2

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=201012031703.44942.wei.wang2@amd.com \
    --to=wei.wang2@amd.com \
    --cc=xen-devel@lists.xensource.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.