blob: bc697a66a8837aa382410028ca851be15b1d74ff [file] [log] [blame]
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03001/*
2 * Copyright (c) 2006, Intel Corporation.
3 *
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.
7 *
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.
12 *
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.
16 *
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>
22 */
23
24#include <linux/list.h>
25#include <linux/kvm_host.h>
26#include <linux/pci.h>
27#include <linux/dmar.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010028#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030029#include <linux/intel-iommu.h>
30
31static int kvm_iommu_unmap_memslots(struct kvm *kvm);
32static void kvm_iommu_put_pages(struct kvm *kvm,
33 gfn_t base_gfn, unsigned long npages);
34
35int kvm_iommu_map_pages(struct kvm *kvm,
36 gfn_t base_gfn, unsigned long npages)
37{
38 gfn_t gfn = base_gfn;
39 pfn_t pfn;
Weidong Hane5fcfc82008-09-25 23:32:02 +080040 int i, r = 0;
Joerg Roedel19de40a2008-12-03 14:43:34 +010041 struct iommu_domain *domain = kvm->arch.iommu_domain;
Sheng Yang522c68c2009-04-27 20:35:43 +080042 int flags;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030043
44 /* check if iommu exists and in use */
45 if (!domain)
46 return 0;
47
Sheng Yang522c68c2009-04-27 20:35:43 +080048 flags = IOMMU_READ | IOMMU_WRITE;
49 if (kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)
50 flags |= IOMMU_CACHE;
51
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030052 for (i = 0; i < npages; i++) {
53 /* check if already mapped */
Joerg Roedel19de40a2008-12-03 14:43:34 +010054 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn)))
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030055 continue;
56
57 pfn = gfn_to_pfn(kvm, gfn);
Joerg Roedel19de40a2008-12-03 14:43:34 +010058 r = iommu_map_range(domain,
59 gfn_to_gpa(gfn),
60 pfn_to_hpa(pfn),
Sheng Yang522c68c2009-04-27 20:35:43 +080061 PAGE_SIZE, flags);
Weidong Hane5fcfc82008-09-25 23:32:02 +080062 if (r) {
Weidong Han260782b2008-12-02 21:03:39 +080063 printk(KERN_ERR "kvm_iommu_map_address:"
Weidong Hane5fcfc82008-09-25 23:32:02 +080064 "iommu failed to map pfn=%lx\n", pfn);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030065 goto unmap_pages;
66 }
67 gfn++;
68 }
69 return 0;
70
71unmap_pages:
72 kvm_iommu_put_pages(kvm, base_gfn, i);
73 return r;
74}
75
76static int kvm_iommu_map_memslots(struct kvm *kvm)
77{
Joerg Roedel7398ca72009-01-03 16:37:53 +010078 int i, r = 0;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -020079 struct kvm_memslots *slots;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030080
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -020081 slots = kvm->memslots;
82
83 for (i = 0; i < slots->nmemslots; i++) {
84 r = kvm_iommu_map_pages(kvm, slots->memslots[i].base_gfn,
85 slots->memslots[i].npages);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030086 if (r)
87 break;
88 }
Mark McLoughlin682edb42009-02-05 18:23:46 +000089
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030090 return r;
91}
92
Weidong Han260782b2008-12-02 21:03:39 +080093int kvm_assign_device(struct kvm *kvm,
94 struct kvm_assigned_dev_kernel *assigned_dev)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030095{
96 struct pci_dev *pdev = NULL;
Joerg Roedel19de40a2008-12-03 14:43:34 +010097 struct iommu_domain *domain = kvm->arch.iommu_domain;
Sheng Yang522c68c2009-04-27 20:35:43 +080098 int r, last_flags;
Weidong Han260782b2008-12-02 21:03:39 +080099
100 /* check if iommu exists and in use */
101 if (!domain)
102 return 0;
103
104 pdev = assigned_dev->dev;
105 if (pdev == NULL)
106 return -ENODEV;
107
Joerg Roedel19de40a2008-12-03 14:43:34 +0100108 r = iommu_attach_device(domain, &pdev->dev);
Weidong Han260782b2008-12-02 21:03:39 +0800109 if (r) {
110 printk(KERN_ERR "assign device %x:%x.%x failed",
111 pdev->bus->number,
112 PCI_SLOT(pdev->devfn),
113 PCI_FUNC(pdev->devfn));
114 return r;
115 }
116
Sheng Yang522c68c2009-04-27 20:35:43 +0800117 last_flags = kvm->arch.iommu_flags;
118 if (iommu_domain_has_cap(kvm->arch.iommu_domain,
119 IOMMU_CAP_CACHE_COHERENCY))
120 kvm->arch.iommu_flags |= KVM_IOMMU_CACHE_COHERENCY;
121
122 /* Check if need to update IOMMU page table for guest memory */
123 if ((last_flags ^ kvm->arch.iommu_flags) ==
124 KVM_IOMMU_CACHE_COHERENCY) {
125 kvm_iommu_unmap_memslots(kvm);
126 r = kvm_iommu_map_memslots(kvm);
127 if (r)
128 goto out_unmap;
129 }
130
Weidong Han260782b2008-12-02 21:03:39 +0800131 printk(KERN_DEBUG "assign device: host bdf = %x:%x:%x\n",
132 assigned_dev->host_busnr,
133 PCI_SLOT(assigned_dev->host_devfn),
134 PCI_FUNC(assigned_dev->host_devfn));
135
136 return 0;
Sheng Yang522c68c2009-04-27 20:35:43 +0800137out_unmap:
138 kvm_iommu_unmap_memslots(kvm);
139 return r;
Weidong Han260782b2008-12-02 21:03:39 +0800140}
141
Weidong Han0a920352008-12-02 21:24:23 +0800142int kvm_deassign_device(struct kvm *kvm,
143 struct kvm_assigned_dev_kernel *assigned_dev)
144{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100145 struct iommu_domain *domain = kvm->arch.iommu_domain;
Weidong Han0a920352008-12-02 21:24:23 +0800146 struct pci_dev *pdev = NULL;
147
148 /* check if iommu exists and in use */
149 if (!domain)
150 return 0;
151
152 pdev = assigned_dev->dev;
153 if (pdev == NULL)
154 return -ENODEV;
155
Joerg Roedel19de40a2008-12-03 14:43:34 +0100156 iommu_detach_device(domain, &pdev->dev);
Weidong Han0a920352008-12-02 21:24:23 +0800157
158 printk(KERN_DEBUG "deassign device: host bdf = %x:%x:%x\n",
159 assigned_dev->host_busnr,
160 PCI_SLOT(assigned_dev->host_devfn),
161 PCI_FUNC(assigned_dev->host_devfn));
162
163 return 0;
164}
165
Weidong Han260782b2008-12-02 21:03:39 +0800166int kvm_iommu_map_guest(struct kvm *kvm)
167{
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300168 int r;
169
Joerg Roedel19de40a2008-12-03 14:43:34 +0100170 if (!iommu_found()) {
171 printk(KERN_ERR "%s: iommu not found\n", __func__);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300172 return -ENODEV;
173 }
174
Joerg Roedel19de40a2008-12-03 14:43:34 +0100175 kvm->arch.iommu_domain = iommu_domain_alloc();
176 if (!kvm->arch.iommu_domain)
Weidong Han260782b2008-12-02 21:03:39 +0800177 return -ENOMEM;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300178
179 r = kvm_iommu_map_memslots(kvm);
180 if (r)
181 goto out_unmap;
182
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300183 return 0;
184
185out_unmap:
186 kvm_iommu_unmap_memslots(kvm);
187 return r;
188}
189
190static void kvm_iommu_put_pages(struct kvm *kvm,
Weidong Han260782b2008-12-02 21:03:39 +0800191 gfn_t base_gfn, unsigned long npages)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300192{
193 gfn_t gfn = base_gfn;
194 pfn_t pfn;
Joerg Roedel19de40a2008-12-03 14:43:34 +0100195 struct iommu_domain *domain = kvm->arch.iommu_domain;
Weidong Han260782b2008-12-02 21:03:39 +0800196 unsigned long i;
197 u64 phys;
198
199 /* check if iommu exists and in use */
200 if (!domain)
201 return;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300202
203 for (i = 0; i < npages; i++) {
Joerg Roedel19de40a2008-12-03 14:43:34 +0100204 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
Weidong Han260782b2008-12-02 21:03:39 +0800205 pfn = phys >> PAGE_SHIFT;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300206 kvm_release_pfn_clean(pfn);
207 gfn++;
208 }
Weidong Han260782b2008-12-02 21:03:39 +0800209
Joerg Roedel19de40a2008-12-03 14:43:34 +0100210 iommu_unmap_range(domain, gfn_to_gpa(base_gfn), PAGE_SIZE * npages);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300211}
212
213static int kvm_iommu_unmap_memslots(struct kvm *kvm)
214{
215 int i;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200216 struct kvm_memslots *slots;
Mark McLoughlin682edb42009-02-05 18:23:46 +0000217
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200218 slots = kvm->memslots;
219
220 for (i = 0; i < slots->nmemslots; i++) {
221 kvm_iommu_put_pages(kvm, slots->memslots[i].base_gfn,
222 slots->memslots[i].npages);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300223 }
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300224
225 return 0;
226}
227
228int kvm_iommu_unmap_guest(struct kvm *kvm)
229{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100230 struct iommu_domain *domain = kvm->arch.iommu_domain;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300231
232 /* check if iommu exists and in use */
233 if (!domain)
234 return 0;
235
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300236 kvm_iommu_unmap_memslots(kvm);
Joerg Roedel19de40a2008-12-03 14:43:34 +0100237 iommu_domain_free(domain);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300238 return 0;
239}