iommu.c 5.5 KB
Newer Older
B
Ben-Ami Yassour 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * 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
 * 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>
#include <linux/pci.h>
#include <linux/dmar.h>
J
Joerg Roedel 已提交
28
#include <linux/iommu.h>
B
Ben-Ami Yassour 已提交
29 30 31 32 33 34
#include <linux/intel-iommu.h>

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);

35
int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
B
Ben-Ami Yassour 已提交
36
{
37 38
	gfn_t gfn = slot->base_gfn;
	unsigned long npages = slot->npages;
B
Ben-Ami Yassour 已提交
39
	pfn_t pfn;
40
	int i, r = 0;
J
Joerg Roedel 已提交
41
	struct iommu_domain *domain = kvm->arch.iommu_domain;
42
	int flags;
B
Ben-Ami Yassour 已提交
43 44 45 46 47

	/* check if iommu exists and in use */
	if (!domain)
		return 0;

48 49 50 51
	flags = IOMMU_READ | IOMMU_WRITE;
	if (kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)
		flags |= IOMMU_CACHE;

B
Ben-Ami Yassour 已提交
52 53
	for (i = 0; i < npages; i++) {
		/* check if already mapped */
J
Joerg Roedel 已提交
54
		if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn)))
B
Ben-Ami Yassour 已提交
55 56
			continue;

57
		pfn = gfn_to_pfn_memslot(kvm, slot, gfn);
J
Joerg Roedel 已提交
58 59 60
		r = iommu_map_range(domain,
				    gfn_to_gpa(gfn),
				    pfn_to_hpa(pfn),
61
				    PAGE_SIZE, flags);
62
		if (r) {
W
Weidong Han 已提交
63
			printk(KERN_ERR "kvm_iommu_map_address:"
64
			       "iommu failed to map pfn=%lx\n", pfn);
B
Ben-Ami Yassour 已提交
65 66 67 68 69 70 71
			goto unmap_pages;
		}
		gfn++;
	}
	return 0;

unmap_pages:
72
	kvm_iommu_put_pages(kvm, slot->base_gfn, i);
B
Ben-Ami Yassour 已提交
73 74 75 76 77
	return r;
}

static int kvm_iommu_map_memslots(struct kvm *kvm)
{
J
Joerg Roedel 已提交
78
	int i, r = 0;
79
	struct kvm_memslots *slots;
B
Ben-Ami Yassour 已提交
80

81
	slots = rcu_dereference(kvm->memslots);
82 83

	for (i = 0; i < slots->nmemslots; i++) {
84
		r = kvm_iommu_map_pages(kvm, &slots->memslots[i]);
B
Ben-Ami Yassour 已提交
85 86 87
		if (r)
			break;
	}
88

B
Ben-Ami Yassour 已提交
89 90 91
	return r;
}

W
Weidong Han 已提交
92 93
int kvm_assign_device(struct kvm *kvm,
		      struct kvm_assigned_dev_kernel *assigned_dev)
B
Ben-Ami Yassour 已提交
94 95
{
	struct pci_dev *pdev = NULL;
J
Joerg Roedel 已提交
96
	struct iommu_domain *domain = kvm->arch.iommu_domain;
97
	int r, last_flags;
B
Ben-Ami Yassour 已提交
98

W
Weidong Han 已提交
99 100 101 102 103 104
	/* check if iommu exists and in use */
	if (!domain)
		return 0;

	pdev = assigned_dev->dev;
	if (pdev == NULL)
B
Ben-Ami Yassour 已提交
105
		return -ENODEV;
W
Weidong Han 已提交
106

J
Joerg Roedel 已提交
107
	r = iommu_attach_device(domain, &pdev->dev);
W
Weidong Han 已提交
108
	if (r) {
109 110
		printk(KERN_ERR "assign device %x:%x:%x.%x failed",
			pci_domain_nr(pdev->bus),
W
Weidong Han 已提交
111 112 113 114
			pdev->bus->number,
			PCI_SLOT(pdev->devfn),
			PCI_FUNC(pdev->devfn));
		return r;
B
Ben-Ami Yassour 已提交
115 116
	}

117 118 119 120 121 122 123 124 125 126 127 128 129 130
	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;
	}

131 132
	printk(KERN_DEBUG "assign device %x:%x:%x.%x\n",
		assigned_dev->host_segnr,
W
Weidong Han 已提交
133 134 135
		assigned_dev->host_busnr,
		PCI_SLOT(assigned_dev->host_devfn),
		PCI_FUNC(assigned_dev->host_devfn));
B
Ben-Ami Yassour 已提交
136

W
Weidong Han 已提交
137
	return 0;
138 139 140
out_unmap:
	kvm_iommu_unmap_memslots(kvm);
	return r;
W
Weidong Han 已提交
141
}
B
Ben-Ami Yassour 已提交
142

W
Weidong Han 已提交
143 144 145
int kvm_deassign_device(struct kvm *kvm,
			struct kvm_assigned_dev_kernel *assigned_dev)
{
J
Joerg Roedel 已提交
146
	struct iommu_domain *domain = kvm->arch.iommu_domain;
W
Weidong Han 已提交
147 148 149 150 151 152 153 154 155 156
	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;

J
Joerg Roedel 已提交
157
	iommu_detach_device(domain, &pdev->dev);
W
Weidong Han 已提交
158

159 160
	printk(KERN_DEBUG "deassign device %x:%x:%x.%x\n",
		assigned_dev->host_segnr,
W
Weidong Han 已提交
161 162 163 164 165 166 167
		assigned_dev->host_busnr,
		PCI_SLOT(assigned_dev->host_devfn),
		PCI_FUNC(assigned_dev->host_devfn));

	return 0;
}

W
Weidong Han 已提交
168 169 170 171
int kvm_iommu_map_guest(struct kvm *kvm)
{
	int r;

J
Joerg Roedel 已提交
172 173
	if (!iommu_found()) {
		printk(KERN_ERR "%s: iommu not found\n", __func__);
B
Ben-Ami Yassour 已提交
174 175 176
		return -ENODEV;
	}

J
Joerg Roedel 已提交
177 178
	kvm->arch.iommu_domain = iommu_domain_alloc();
	if (!kvm->arch.iommu_domain)
W
Weidong Han 已提交
179
		return -ENOMEM;
B
Ben-Ami Yassour 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192

	r = kvm_iommu_map_memslots(kvm);
	if (r)
		goto out_unmap;

	return 0;

out_unmap:
	kvm_iommu_unmap_memslots(kvm);
	return r;
}

static void kvm_iommu_put_pages(struct kvm *kvm,
W
Weidong Han 已提交
193
				gfn_t base_gfn, unsigned long npages)
B
Ben-Ami Yassour 已提交
194 195 196
{
	gfn_t gfn = base_gfn;
	pfn_t pfn;
J
Joerg Roedel 已提交
197
	struct iommu_domain *domain = kvm->arch.iommu_domain;
W
Weidong Han 已提交
198 199 200 201 202 203
	unsigned long i;
	u64 phys;

	/* check if iommu exists and in use */
	if (!domain)
		return;
B
Ben-Ami Yassour 已提交
204 205

	for (i = 0; i < npages; i++) {
J
Joerg Roedel 已提交
206
		phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
W
Weidong Han 已提交
207
		pfn = phys >> PAGE_SHIFT;
B
Ben-Ami Yassour 已提交
208 209 210
		kvm_release_pfn_clean(pfn);
		gfn++;
	}
W
Weidong Han 已提交
211

J
Joerg Roedel 已提交
212
	iommu_unmap_range(domain, gfn_to_gpa(base_gfn), PAGE_SIZE * npages);
B
Ben-Ami Yassour 已提交
213 214 215 216 217
}

static int kvm_iommu_unmap_memslots(struct kvm *kvm)
{
	int i;
218 219
	struct kvm_memslots *slots;

220
	slots = rcu_dereference(kvm->memslots);
221

222 223 224
	for (i = 0; i < slots->nmemslots; i++) {
		kvm_iommu_put_pages(kvm, slots->memslots[i].base_gfn,
				    slots->memslots[i].npages);
B
Ben-Ami Yassour 已提交
225 226 227 228 229 230 231
	}

	return 0;
}

int kvm_iommu_unmap_guest(struct kvm *kvm)
{
J
Joerg Roedel 已提交
232
	struct iommu_domain *domain = kvm->arch.iommu_domain;
B
Ben-Ami Yassour 已提交
233 234 235 236 237 238

	/* check if iommu exists and in use */
	if (!domain)
		return 0;

	kvm_iommu_unmap_memslots(kvm);
J
Joerg Roedel 已提交
239
	iommu_domain_free(domain);
B
Ben-Ami Yassour 已提交
240 241
	return 0;
}