ext3: Add support for non-native signed/unsigned htree hash algorithms
[linux-2.6/libata-dev.git] / virt / kvm / iommu.c
blobe9693a29d00e2fe5b159632e301ca4cd0d08bb4d
1 /*
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
11 * more details.
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)
38 gfn_t gfn = base_gfn;
39 pfn_t pfn;
40 int i, r = 0;
41 struct iommu_domain *domain = kvm->arch.iommu_domain;
43 /* check if iommu exists and in use */
44 if (!domain)
45 return 0;
47 for (i = 0; i < npages; i++) {
48 /* check if already mapped */
49 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn)))
50 continue;
52 pfn = gfn_to_pfn(kvm, gfn);
53 r = iommu_map_range(domain,
54 gfn_to_gpa(gfn),
55 pfn_to_hpa(pfn),
56 PAGE_SIZE,
57 IOMMU_READ | IOMMU_WRITE);
58 if (r) {
59 printk(KERN_ERR "kvm_iommu_map_address:"
60 "iommu failed to map pfn=%lx\n", pfn);
61 goto unmap_pages;
63 gfn++;
65 return 0;
67 unmap_pages:
68 kvm_iommu_put_pages(kvm, base_gfn, i);
69 return r;
72 static int kvm_iommu_map_memslots(struct kvm *kvm)
74 int i, r = 0;
76 down_read(&kvm->slots_lock);
77 for (i = 0; i < kvm->nmemslots; i++) {
78 r = kvm_iommu_map_pages(kvm, kvm->memslots[i].base_gfn,
79 kvm->memslots[i].npages);
80 if (r)
81 break;
83 up_read(&kvm->slots_lock);
84 return r;
87 int kvm_assign_device(struct kvm *kvm,
88 struct kvm_assigned_dev_kernel *assigned_dev)
90 struct pci_dev *pdev = NULL;
91 struct iommu_domain *domain = kvm->arch.iommu_domain;
92 int r;
94 /* check if iommu exists and in use */
95 if (!domain)
96 return 0;
98 pdev = assigned_dev->dev;
99 if (pdev == NULL)
100 return -ENODEV;
102 r = iommu_attach_device(domain, &pdev->dev);
103 if (r) {
104 printk(KERN_ERR "assign device %x:%x.%x failed",
105 pdev->bus->number,
106 PCI_SLOT(pdev->devfn),
107 PCI_FUNC(pdev->devfn));
108 return r;
111 printk(KERN_DEBUG "assign device: host bdf = %x:%x:%x\n",
112 assigned_dev->host_busnr,
113 PCI_SLOT(assigned_dev->host_devfn),
114 PCI_FUNC(assigned_dev->host_devfn));
116 return 0;
119 int kvm_deassign_device(struct kvm *kvm,
120 struct kvm_assigned_dev_kernel *assigned_dev)
122 struct iommu_domain *domain = kvm->arch.iommu_domain;
123 struct pci_dev *pdev = NULL;
125 /* check if iommu exists and in use */
126 if (!domain)
127 return 0;
129 pdev = assigned_dev->dev;
130 if (pdev == NULL)
131 return -ENODEV;
133 iommu_detach_device(domain, &pdev->dev);
135 printk(KERN_DEBUG "deassign device: host bdf = %x:%x:%x\n",
136 assigned_dev->host_busnr,
137 PCI_SLOT(assigned_dev->host_devfn),
138 PCI_FUNC(assigned_dev->host_devfn));
140 return 0;
143 int kvm_iommu_map_guest(struct kvm *kvm)
145 int r;
147 if (!iommu_found()) {
148 printk(KERN_ERR "%s: iommu not found\n", __func__);
149 return -ENODEV;
152 kvm->arch.iommu_domain = iommu_domain_alloc();
153 if (!kvm->arch.iommu_domain)
154 return -ENOMEM;
156 r = kvm_iommu_map_memslots(kvm);
157 if (r)
158 goto out_unmap;
160 return 0;
162 out_unmap:
163 kvm_iommu_unmap_memslots(kvm);
164 return r;
167 static void kvm_iommu_put_pages(struct kvm *kvm,
168 gfn_t base_gfn, unsigned long npages)
170 gfn_t gfn = base_gfn;
171 pfn_t pfn;
172 struct iommu_domain *domain = kvm->arch.iommu_domain;
173 unsigned long i;
174 u64 phys;
176 /* check if iommu exists and in use */
177 if (!domain)
178 return;
180 for (i = 0; i < npages; i++) {
181 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
182 pfn = phys >> PAGE_SHIFT;
183 kvm_release_pfn_clean(pfn);
184 gfn++;
187 iommu_unmap_range(domain, gfn_to_gpa(base_gfn), PAGE_SIZE * npages);
190 static int kvm_iommu_unmap_memslots(struct kvm *kvm)
192 int i;
193 down_read(&kvm->slots_lock);
194 for (i = 0; i < kvm->nmemslots; i++) {
195 kvm_iommu_put_pages(kvm, kvm->memslots[i].base_gfn,
196 kvm->memslots[i].npages);
198 up_read(&kvm->slots_lock);
200 return 0;
203 int kvm_iommu_unmap_guest(struct kvm *kvm)
205 struct iommu_domain *domain = kvm->arch.iommu_domain;
207 /* check if iommu exists and in use */
208 if (!domain)
209 return 0;
211 kvm_iommu_unmap_memslots(kvm);
212 iommu_domain_free(domain);
213 return 0;