2008-09-14 08:48:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006, Intel Corporation.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
* Place - Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2008 Intel Corporation
|
|
|
|
* Copyright IBM Corporation, 2008
|
2010-05-23 23:37:00 +08:00
|
|
|
* Copyright 2010 Red Hat, Inc. and/or its affiliates.
|
|
|
|
*
|
2008-09-14 08:48:28 +08:00
|
|
|
* Author: Allen M. Kay <allen.m.kay@intel.com>
|
|
|
|
* Author: Weidong Han <weidong.han@intel.com>
|
|
|
|
* Author: Ben-Ami Yassour <benami@il.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/kvm_host.h>
|
2011-07-28 09:25:05 +08:00
|
|
|
#include <linux/module.h>
|
2008-09-14 08:48:28 +08:00
|
|
|
#include <linux/pci.h>
|
2011-07-28 09:17:59 +08:00
|
|
|
#include <linux/stat.h>
|
2008-09-14 08:48:28 +08:00
|
|
|
#include <linux/dmar.h>
|
2008-12-03 21:43:34 +08:00
|
|
|
#include <linux/iommu.h>
|
2008-09-14 08:48:28 +08:00
|
|
|
#include <linux/intel-iommu.h>
|
|
|
|
|
2012-01-13 07:02:20 +08:00
|
|
|
static bool allow_unsafe_assigned_interrupts;
|
2011-07-15 03:27:03 +08:00
|
|
|
module_param_named(allow_unsafe_assigned_interrupts,
|
|
|
|
allow_unsafe_assigned_interrupts, bool, S_IRUGO | S_IWUSR);
|
|
|
|
MODULE_PARM_DESC(allow_unsafe_assigned_interrupts,
|
|
|
|
"Enable device assignment on platforms without interrupt remapping support.");
|
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
static int kvm_iommu_unmap_memslots(struct kvm *kvm);
|
|
|
|
static void kvm_iommu_put_pages(struct kvm *kvm,
|
|
|
|
gfn_t base_gfn, unsigned long npages);
|
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
static pfn_t kvm_pin_pages(struct kvm *kvm, struct kvm_memory_slot *slot,
|
|
|
|
gfn_t gfn, unsigned long size)
|
|
|
|
{
|
|
|
|
gfn_t end_gfn;
|
|
|
|
pfn_t pfn;
|
|
|
|
|
|
|
|
pfn = gfn_to_pfn_memslot(kvm, slot, gfn);
|
|
|
|
end_gfn = gfn + (size >> PAGE_SHIFT);
|
|
|
|
gfn += 1;
|
|
|
|
|
|
|
|
if (is_error_pfn(pfn))
|
|
|
|
return pfn;
|
|
|
|
|
|
|
|
while (gfn < end_gfn)
|
|
|
|
gfn_to_pfn_memslot(kvm, slot, gfn++);
|
|
|
|
|
|
|
|
return pfn;
|
|
|
|
}
|
|
|
|
|
2009-12-24 00:35:20 +08:00
|
|
|
int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
|
2008-09-14 08:48:28 +08:00
|
|
|
{
|
2010-01-11 23:38:18 +08:00
|
|
|
gfn_t gfn, end_gfn;
|
2008-09-14 08:48:28 +08:00
|
|
|
pfn_t pfn;
|
2010-01-11 23:38:18 +08:00
|
|
|
int r = 0;
|
2008-12-03 21:43:34 +08:00
|
|
|
struct iommu_domain *domain = kvm->arch.iommu_domain;
|
2009-04-27 20:35:43 +08:00
|
|
|
int flags;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
|
|
|
/* check if iommu exists and in use */
|
|
|
|
if (!domain)
|
|
|
|
return 0;
|
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
gfn = slot->base_gfn;
|
|
|
|
end_gfn = gfn + slot->npages;
|
|
|
|
|
2009-04-27 20:35:43 +08:00
|
|
|
flags = IOMMU_READ | IOMMU_WRITE;
|
|
|
|
if (kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)
|
|
|
|
flags |= IOMMU_CACHE;
|
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
|
|
|
|
while (gfn < end_gfn) {
|
|
|
|
unsigned long page_size;
|
|
|
|
|
|
|
|
/* Check if already mapped */
|
|
|
|
if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn))) {
|
|
|
|
gfn += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the page size we could use to map */
|
|
|
|
page_size = kvm_host_page_size(kvm, gfn);
|
|
|
|
|
|
|
|
/* Make sure the page_size does not exceed the memslot */
|
|
|
|
while ((gfn + (page_size >> PAGE_SHIFT)) > end_gfn)
|
|
|
|
page_size >>= 1;
|
|
|
|
|
|
|
|
/* Make sure gfn is aligned to the page size we want to map */
|
|
|
|
while ((gfn << PAGE_SHIFT) & (page_size - 1))
|
|
|
|
page_size >>= 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pin all pages we are about to map in memory. This is
|
|
|
|
* important because we unmap and unpin in 4kb steps later.
|
|
|
|
*/
|
|
|
|
pfn = kvm_pin_pages(kvm, slot, gfn, page_size);
|
|
|
|
if (is_error_pfn(pfn)) {
|
|
|
|
gfn += 1;
|
2008-09-14 08:48:28 +08:00
|
|
|
continue;
|
2010-01-11 23:38:18 +08:00
|
|
|
}
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
/* Map into IO address space */
|
|
|
|
r = iommu_map(domain, gfn_to_gpa(gfn), pfn_to_hpa(pfn),
|
iommu/core: split mapping to page sizes as supported by the hardware
When mapping a memory region, split it to page sizes as supported
by the iommu hardware. Always prefer bigger pages, when possible,
in order to reduce the TLB pressure.
The logic to do that is now added to the IOMMU core, so neither the iommu
drivers themselves nor users of the IOMMU API have to duplicate it.
This allows a more lenient granularity of mappings; traditionally the
IOMMU API took 'order' (of a page) as a mapping size, and directly let
the low level iommu drivers handle the mapping, but now that the IOMMU
core can split arbitrary memory regions into pages, we can remove this
limitation, so users don't have to split those regions by themselves.
Currently the supported page sizes are advertised once and they then
remain static. That works well for OMAP and MSM but it would probably
not fly well with intel's hardware, where the page size capabilities
seem to have the potential to be different between several DMA
remapping devices.
register_iommu() currently sets a default pgsize behavior, so we can convert
the IOMMU drivers in subsequent patches. After all the drivers
are converted, the temporary default settings will be removed.
Mainline users of the IOMMU API (kvm and omap-iovmm) are adopted
to deal with bytes instead of page order.
Many thanks to Joerg Roedel <Joerg.Roedel@amd.com> for significant review!
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Cc: David Brown <davidb@codeaurora.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Joerg Roedel <Joerg.Roedel@amd.com>
Cc: Stepan Moskovchenko <stepanm@codeaurora.org>
Cc: KyongHo Cho <pullip.cho@samsung.com>
Cc: Hiroshi DOYU <hdoyu@nvidia.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: kvm@vger.kernel.org
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
2011-11-10 17:32:26 +08:00
|
|
|
page_size, flags);
|
2008-09-25 23:32:02 +08:00
|
|
|
if (r) {
|
2008-12-02 21:03:39 +08:00
|
|
|
printk(KERN_ERR "kvm_iommu_map_address:"
|
2010-07-01 22:00:12 +08:00
|
|
|
"iommu failed to map pfn=%llx\n", pfn);
|
2008-09-14 08:48:28 +08:00
|
|
|
goto unmap_pages;
|
|
|
|
}
|
2010-01-11 23:38:18 +08:00
|
|
|
|
|
|
|
gfn += page_size >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
}
|
2010-01-11 23:38:18 +08:00
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
unmap_pages:
|
2010-01-11 23:38:18 +08:00
|
|
|
kvm_iommu_put_pages(kvm, slot->base_gfn, gfn);
|
2008-09-14 08:48:28 +08:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kvm_iommu_map_memslots(struct kvm *kvm)
|
|
|
|
{
|
2011-11-24 17:39:18 +08:00
|
|
|
int idx, r = 0;
|
2009-12-24 00:35:16 +08:00
|
|
|
struct kvm_memslots *slots;
|
2011-11-24 17:39:18 +08:00
|
|
|
struct kvm_memory_slot *memslot;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2010-07-01 15:00:50 +08:00
|
|
|
idx = srcu_read_lock(&kvm->srcu);
|
2010-04-19 17:41:23 +08:00
|
|
|
slots = kvm_memslots(kvm);
|
2009-12-24 00:35:16 +08:00
|
|
|
|
2011-11-24 17:39:18 +08:00
|
|
|
kvm_for_each_memslot(memslot, slots) {
|
|
|
|
r = kvm_iommu_map_pages(kvm, memslot);
|
2008-09-14 08:48:28 +08:00
|
|
|
if (r)
|
|
|
|
break;
|
|
|
|
}
|
2010-07-01 15:00:50 +08:00
|
|
|
srcu_read_unlock(&kvm->srcu, idx);
|
2009-02-06 02:23:46 +08:00
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-12-02 21:03:39 +08:00
|
|
|
int kvm_assign_device(struct kvm *kvm,
|
|
|
|
struct kvm_assigned_dev_kernel *assigned_dev)
|
2008-09-14 08:48:28 +08:00
|
|
|
{
|
|
|
|
struct pci_dev *pdev = NULL;
|
2008-12-03 21:43:34 +08:00
|
|
|
struct iommu_domain *domain = kvm->arch.iommu_domain;
|
2009-04-27 20:35:43 +08:00
|
|
|
int r, last_flags;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2008-12-02 21:03:39 +08:00
|
|
|
/* check if iommu exists and in use */
|
|
|
|
if (!domain)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pdev = assigned_dev->dev;
|
|
|
|
if (pdev == NULL)
|
2008-09-14 08:48:28 +08:00
|
|
|
return -ENODEV;
|
2008-12-02 21:03:39 +08:00
|
|
|
|
2008-12-03 21:43:34 +08:00
|
|
|
r = iommu_attach_device(domain, &pdev->dev);
|
2008-12-02 21:03:39 +08:00
|
|
|
if (r) {
|
2010-01-29 14:38:44 +08:00
|
|
|
printk(KERN_ERR "assign device %x:%x:%x.%x failed",
|
|
|
|
pci_domain_nr(pdev->bus),
|
2008-12-02 21:03:39 +08:00
|
|
|
pdev->bus->number,
|
|
|
|
PCI_SLOT(pdev->devfn),
|
|
|
|
PCI_FUNC(pdev->devfn));
|
|
|
|
return r;
|
2008-09-14 08:48:28 +08:00
|
|
|
}
|
|
|
|
|
2009-04-27 20:35:43 +08:00
|
|
|
last_flags = kvm->arch.iommu_flags;
|
|
|
|
if (iommu_domain_has_cap(kvm->arch.iommu_domain,
|
|
|
|
IOMMU_CAP_CACHE_COHERENCY))
|
|
|
|
kvm->arch.iommu_flags |= KVM_IOMMU_CACHE_COHERENCY;
|
|
|
|
|
|
|
|
/* Check if need to update IOMMU page table for guest memory */
|
|
|
|
if ((last_flags ^ kvm->arch.iommu_flags) ==
|
|
|
|
KVM_IOMMU_CACHE_COHERENCY) {
|
|
|
|
kvm_iommu_unmap_memslots(kvm);
|
|
|
|
r = kvm_iommu_map_memslots(kvm);
|
|
|
|
if (r)
|
|
|
|
goto out_unmap;
|
|
|
|
}
|
|
|
|
|
2011-07-22 13:46:07 +08:00
|
|
|
pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
|
|
|
|
|
2010-01-29 14:38:44 +08:00
|
|
|
printk(KERN_DEBUG "assign device %x:%x:%x.%x\n",
|
|
|
|
assigned_dev->host_segnr,
|
2008-12-02 21:03:39 +08:00
|
|
|
assigned_dev->host_busnr,
|
|
|
|
PCI_SLOT(assigned_dev->host_devfn),
|
|
|
|
PCI_FUNC(assigned_dev->host_devfn));
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2008-12-02 21:03:39 +08:00
|
|
|
return 0;
|
2009-04-27 20:35:43 +08:00
|
|
|
out_unmap:
|
|
|
|
kvm_iommu_unmap_memslots(kvm);
|
|
|
|
return r;
|
2008-12-02 21:03:39 +08:00
|
|
|
}
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2008-12-02 21:24:23 +08:00
|
|
|
int kvm_deassign_device(struct kvm *kvm,
|
|
|
|
struct kvm_assigned_dev_kernel *assigned_dev)
|
|
|
|
{
|
2008-12-03 21:43:34 +08:00
|
|
|
struct iommu_domain *domain = kvm->arch.iommu_domain;
|
2008-12-02 21:24:23 +08:00
|
|
|
struct pci_dev *pdev = NULL;
|
|
|
|
|
|
|
|
/* check if iommu exists and in use */
|
|
|
|
if (!domain)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pdev = assigned_dev->dev;
|
|
|
|
if (pdev == NULL)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2008-12-03 21:43:34 +08:00
|
|
|
iommu_detach_device(domain, &pdev->dev);
|
2008-12-02 21:24:23 +08:00
|
|
|
|
2011-07-22 13:46:07 +08:00
|
|
|
pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
|
|
|
|
|
2010-01-29 14:38:44 +08:00
|
|
|
printk(KERN_DEBUG "deassign device %x:%x:%x.%x\n",
|
|
|
|
assigned_dev->host_segnr,
|
2008-12-02 21:24:23 +08:00
|
|
|
assigned_dev->host_busnr,
|
|
|
|
PCI_SLOT(assigned_dev->host_devfn),
|
|
|
|
PCI_FUNC(assigned_dev->host_devfn));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-02 21:03:39 +08:00
|
|
|
int kvm_iommu_map_guest(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
2011-09-07 00:46:34 +08:00
|
|
|
if (!iommu_present(&pci_bus_type)) {
|
2008-12-03 21:43:34 +08:00
|
|
|
printk(KERN_ERR "%s: iommu not found\n", __func__);
|
2008-09-14 08:48:28 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2011-09-06 22:03:26 +08:00
|
|
|
kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type);
|
2008-12-03 21:43:34 +08:00
|
|
|
if (!kvm->arch.iommu_domain)
|
2008-12-02 21:03:39 +08:00
|
|
|
return -ENOMEM;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2011-07-15 03:27:03 +08:00
|
|
|
if (!allow_unsafe_assigned_interrupts &&
|
|
|
|
!iommu_domain_has_cap(kvm->arch.iommu_domain,
|
|
|
|
IOMMU_CAP_INTR_REMAP)) {
|
|
|
|
printk(KERN_WARNING "%s: No interrupt remapping support,"
|
|
|
|
" disallowing device assignment."
|
|
|
|
" Re-enble with \"allow_unsafe_assigned_interrupts=1\""
|
|
|
|
" module option.\n", __func__);
|
|
|
|
iommu_domain_free(kvm->arch.iommu_domain);
|
|
|
|
kvm->arch.iommu_domain = NULL;
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
r = kvm_iommu_map_memslots(kvm);
|
|
|
|
if (r)
|
|
|
|
goto out_unmap;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_unmap:
|
|
|
|
kvm_iommu_unmap_memslots(kvm);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
static void kvm_unpin_pages(struct kvm *kvm, pfn_t pfn, unsigned long npages)
|
|
|
|
{
|
|
|
|
unsigned long i;
|
|
|
|
|
|
|
|
for (i = 0; i < npages; ++i)
|
|
|
|
kvm_release_pfn_clean(pfn + i);
|
|
|
|
}
|
|
|
|
|
2008-09-14 08:48:28 +08:00
|
|
|
static void kvm_iommu_put_pages(struct kvm *kvm,
|
2008-12-02 21:03:39 +08:00
|
|
|
gfn_t base_gfn, unsigned long npages)
|
2008-09-14 08:48:28 +08:00
|
|
|
{
|
2010-01-11 23:38:18 +08:00
|
|
|
struct iommu_domain *domain;
|
|
|
|
gfn_t end_gfn, gfn;
|
2008-09-14 08:48:28 +08:00
|
|
|
pfn_t pfn;
|
2008-12-02 21:03:39 +08:00
|
|
|
u64 phys;
|
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
domain = kvm->arch.iommu_domain;
|
|
|
|
end_gfn = base_gfn + npages;
|
|
|
|
gfn = base_gfn;
|
|
|
|
|
2008-12-02 21:03:39 +08:00
|
|
|
/* check if iommu exists and in use */
|
|
|
|
if (!domain)
|
|
|
|
return;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
while (gfn < end_gfn) {
|
|
|
|
unsigned long unmap_pages;
|
iommu/core: split mapping to page sizes as supported by the hardware
When mapping a memory region, split it to page sizes as supported
by the iommu hardware. Always prefer bigger pages, when possible,
in order to reduce the TLB pressure.
The logic to do that is now added to the IOMMU core, so neither the iommu
drivers themselves nor users of the IOMMU API have to duplicate it.
This allows a more lenient granularity of mappings; traditionally the
IOMMU API took 'order' (of a page) as a mapping size, and directly let
the low level iommu drivers handle the mapping, but now that the IOMMU
core can split arbitrary memory regions into pages, we can remove this
limitation, so users don't have to split those regions by themselves.
Currently the supported page sizes are advertised once and they then
remain static. That works well for OMAP and MSM but it would probably
not fly well with intel's hardware, where the page size capabilities
seem to have the potential to be different between several DMA
remapping devices.
register_iommu() currently sets a default pgsize behavior, so we can convert
the IOMMU drivers in subsequent patches. After all the drivers
are converted, the temporary default settings will be removed.
Mainline users of the IOMMU API (kvm and omap-iovmm) are adopted
to deal with bytes instead of page order.
Many thanks to Joerg Roedel <Joerg.Roedel@amd.com> for significant review!
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Cc: David Brown <davidb@codeaurora.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Joerg Roedel <Joerg.Roedel@amd.com>
Cc: Stepan Moskovchenko <stepanm@codeaurora.org>
Cc: KyongHo Cho <pullip.cho@samsung.com>
Cc: Hiroshi DOYU <hdoyu@nvidia.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: kvm@vger.kernel.org
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
2011-11-10 17:32:26 +08:00
|
|
|
size_t size;
|
2010-01-11 23:38:18 +08:00
|
|
|
|
|
|
|
/* Get physical address */
|
2008-12-03 21:43:34 +08:00
|
|
|
phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
|
2010-01-11 23:38:18 +08:00
|
|
|
pfn = phys >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
/* Unmap address from IO address space */
|
iommu/core: split mapping to page sizes as supported by the hardware
When mapping a memory region, split it to page sizes as supported
by the iommu hardware. Always prefer bigger pages, when possible,
in order to reduce the TLB pressure.
The logic to do that is now added to the IOMMU core, so neither the iommu
drivers themselves nor users of the IOMMU API have to duplicate it.
This allows a more lenient granularity of mappings; traditionally the
IOMMU API took 'order' (of a page) as a mapping size, and directly let
the low level iommu drivers handle the mapping, but now that the IOMMU
core can split arbitrary memory regions into pages, we can remove this
limitation, so users don't have to split those regions by themselves.
Currently the supported page sizes are advertised once and they then
remain static. That works well for OMAP and MSM but it would probably
not fly well with intel's hardware, where the page size capabilities
seem to have the potential to be different between several DMA
remapping devices.
register_iommu() currently sets a default pgsize behavior, so we can convert
the IOMMU drivers in subsequent patches. After all the drivers
are converted, the temporary default settings will be removed.
Mainline users of the IOMMU API (kvm and omap-iovmm) are adopted
to deal with bytes instead of page order.
Many thanks to Joerg Roedel <Joerg.Roedel@amd.com> for significant review!
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Cc: David Brown <davidb@codeaurora.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Joerg Roedel <Joerg.Roedel@amd.com>
Cc: Stepan Moskovchenko <stepanm@codeaurora.org>
Cc: KyongHo Cho <pullip.cho@samsung.com>
Cc: Hiroshi DOYU <hdoyu@nvidia.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: kvm@vger.kernel.org
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
2011-11-10 17:32:26 +08:00
|
|
|
size = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
|
|
|
|
unmap_pages = 1ULL << get_order(size);
|
2008-12-02 21:03:39 +08:00
|
|
|
|
2010-01-11 23:38:18 +08:00
|
|
|
/* Unpin all pages we just unmapped to not leak any memory */
|
|
|
|
kvm_unpin_pages(kvm, pfn, unmap_pages);
|
|
|
|
|
|
|
|
gfn += unmap_pages;
|
|
|
|
}
|
2008-09-14 08:48:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int kvm_iommu_unmap_memslots(struct kvm *kvm)
|
|
|
|
{
|
2011-11-24 17:39:18 +08:00
|
|
|
int idx;
|
2009-12-24 00:35:16 +08:00
|
|
|
struct kvm_memslots *slots;
|
2011-11-24 17:39:18 +08:00
|
|
|
struct kvm_memory_slot *memslot;
|
2009-12-24 00:35:16 +08:00
|
|
|
|
2010-07-01 15:00:50 +08:00
|
|
|
idx = srcu_read_lock(&kvm->srcu);
|
2010-04-19 17:41:23 +08:00
|
|
|
slots = kvm_memslots(kvm);
|
2009-02-06 02:23:46 +08:00
|
|
|
|
2011-11-24 17:39:18 +08:00
|
|
|
kvm_for_each_memslot(memslot, slots)
|
|
|
|
kvm_iommu_put_pages(kvm, memslot->base_gfn, memslot->npages);
|
|
|
|
|
2010-07-01 15:00:50 +08:00
|
|
|
srcu_read_unlock(&kvm->srcu, idx);
|
2008-09-14 08:48:28 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int kvm_iommu_unmap_guest(struct kvm *kvm)
|
|
|
|
{
|
2008-12-03 21:43:34 +08:00
|
|
|
struct iommu_domain *domain = kvm->arch.iommu_domain;
|
2008-09-14 08:48:28 +08:00
|
|
|
|
|
|
|
/* check if iommu exists and in use */
|
|
|
|
if (!domain)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
kvm_iommu_unmap_memslots(kvm);
|
2008-12-03 21:43:34 +08:00
|
|
|
iommu_domain_free(domain);
|
2008-09-14 08:48:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|