2 * Copyright (c) 2006, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Copyright (C) 2006-2008 Intel Corporation
18 * Copyright IBM Corporation, 2008
19 * Author: Allen M. Kay <allen.m.kay@intel.com>
20 * Author: Weidong Han <weidong.han@intel.com>
21 * Author: Ben-Ami Yassour <benami@il.ibm.com>
24 #include <linux/list.h>
25 #include <linux/kvm_host.h>
26 #include <linux/pci.h>
27 #include <linux/dmar.h>
28 #include <linux/iommu.h>
29 #include <linux/intel-iommu.h>
31 static int kvm_iommu_unmap_memslots(struct kvm *kvm);
32 static void kvm_iommu_put_pages(struct kvm *kvm,
33 gfn_t base_gfn, unsigned long npages);
35 int kvm_iommu_map_pages(struct kvm *kvm,
36 gfn_t base_gfn, unsigned long npages)
41 struct iommu_domain *domain = kvm->arch.iommu_domain;
44 /* check if iommu exists and in use */
48 flags = IOMMU_READ | IOMMU_WRITE;
49 if (kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)
52 for (i = 0; i < npages; i++) {
53 /* check if already mapped */
54 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn)))
57 pfn = gfn_to_pfn(kvm, gfn);
58 r = iommu_map_range(domain,
63 printk(KERN_ERR "kvm_iommu_map_address:"
64 "iommu failed to map pfn=%lx\n", pfn);
72 kvm_iommu_put_pages(kvm, base_gfn, i);
76 static int kvm_iommu_map_memslots(struct kvm *kvm)
80 for (i = 0; i < kvm->nmemslots; i++) {
81 r = kvm_iommu_map_pages(kvm, kvm->memslots[i].base_gfn,
82 kvm->memslots[i].npages);
90 int kvm_assign_device(struct kvm *kvm,
91 struct kvm_assigned_dev_kernel *assigned_dev)
93 struct pci_dev *pdev = NULL;
94 struct iommu_domain *domain = kvm->arch.iommu_domain;
97 /* check if iommu exists and in use */
101 pdev = assigned_dev->dev;
105 r = iommu_attach_device(domain, &pdev->dev);
107 printk(KERN_ERR "assign device %x:%x.%x failed",
109 PCI_SLOT(pdev->devfn),
110 PCI_FUNC(pdev->devfn));
114 last_flags = kvm->arch.iommu_flags;
115 if (iommu_domain_has_cap(kvm->arch.iommu_domain,
116 IOMMU_CAP_CACHE_COHERENCY))
117 kvm->arch.iommu_flags |= KVM_IOMMU_CACHE_COHERENCY;
119 /* Check if need to update IOMMU page table for guest memory */
120 if ((last_flags ^ kvm->arch.iommu_flags) ==
121 KVM_IOMMU_CACHE_COHERENCY) {
122 kvm_iommu_unmap_memslots(kvm);
123 r = kvm_iommu_map_memslots(kvm);
128 printk(KERN_DEBUG "assign device: host bdf = %x:%x:%x\n",
129 assigned_dev->host_busnr,
130 PCI_SLOT(assigned_dev->host_devfn),
131 PCI_FUNC(assigned_dev->host_devfn));
135 kvm_iommu_unmap_memslots(kvm);
139 int kvm_deassign_device(struct kvm *kvm,
140 struct kvm_assigned_dev_kernel *assigned_dev)
142 struct iommu_domain *domain = kvm->arch.iommu_domain;
143 struct pci_dev *pdev = NULL;
145 /* check if iommu exists and in use */
149 pdev = assigned_dev->dev;
153 iommu_detach_device(domain, &pdev->dev);
155 printk(KERN_DEBUG "deassign device: host bdf = %x:%x:%x\n",
156 assigned_dev->host_busnr,
157 PCI_SLOT(assigned_dev->host_devfn),
158 PCI_FUNC(assigned_dev->host_devfn));
163 int kvm_iommu_map_guest(struct kvm *kvm)
167 if (!iommu_found()) {
168 printk(KERN_ERR "%s: iommu not found\n", __func__);
172 kvm->arch.iommu_domain = iommu_domain_alloc();
173 if (!kvm->arch.iommu_domain)
176 r = kvm_iommu_map_memslots(kvm);
183 kvm_iommu_unmap_memslots(kvm);
187 static void kvm_iommu_put_pages(struct kvm *kvm,
188 gfn_t base_gfn, unsigned long npages)
190 gfn_t gfn = base_gfn;
192 struct iommu_domain *domain = kvm->arch.iommu_domain;
196 /* check if iommu exists and in use */
200 for (i = 0; i < npages; i++) {
201 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
202 pfn = phys >> PAGE_SHIFT;
203 kvm_release_pfn_clean(pfn);
207 iommu_unmap_range(domain, gfn_to_gpa(base_gfn), PAGE_SIZE * npages);
210 static int kvm_iommu_unmap_memslots(struct kvm *kvm)
214 for (i = 0; i < kvm->nmemslots; i++) {
215 kvm_iommu_put_pages(kvm, kvm->memslots[i].base_gfn,
216 kvm->memslots[i].npages);
222 int kvm_iommu_unmap_guest(struct kvm *kvm)
224 struct iommu_domain *domain = kvm->arch.iommu_domain;
226 /* check if iommu exists and in use */
230 kvm_iommu_unmap_memslots(kvm);
231 iommu_domain_free(domain);