iommu.c 4.7 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 35 36 37 38 39
#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);

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

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

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

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

unmap_pages:
	kvm_iommu_put_pages(kvm, base_gfn, i);
	return r;
}

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

	for (i = 0; i < kvm->nmemslots; i++) {
		r = kvm_iommu_map_pages(kvm, kvm->memslots[i].base_gfn,
					kvm->memslots[i].npages);
		if (r)
			break;
	}
82

B
Ben-Ami Yassour 已提交
83 84 85
	return r;
}

W
Weidong Han 已提交
86 87
int kvm_assign_device(struct kvm *kvm,
		      struct kvm_assigned_dev_kernel *assigned_dev)
B
Ben-Ami Yassour 已提交
88 89
{
	struct pci_dev *pdev = NULL;
J
Joerg Roedel 已提交
90
	struct iommu_domain *domain = kvm->arch.iommu_domain;
B
Ben-Ami Yassour 已提交
91 92
	int r;

W
Weidong Han 已提交
93 94 95 96 97 98
	/* check if iommu exists and in use */
	if (!domain)
		return 0;

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

J
Joerg Roedel 已提交
101
	r = iommu_attach_device(domain, &pdev->dev);
W
Weidong Han 已提交
102 103 104 105 106 107
	if (r) {
		printk(KERN_ERR "assign device %x:%x.%x failed",
			pdev->bus->number,
			PCI_SLOT(pdev->devfn),
			PCI_FUNC(pdev->devfn));
		return r;
B
Ben-Ami Yassour 已提交
108 109
	}

W
Weidong Han 已提交
110 111 112 113
	printk(KERN_DEBUG "assign device: host bdf = %x:%x:%x\n",
		assigned_dev->host_busnr,
		PCI_SLOT(assigned_dev->host_devfn),
		PCI_FUNC(assigned_dev->host_devfn));
B
Ben-Ami Yassour 已提交
114

W
Weidong Han 已提交
115 116
	return 0;
}
B
Ben-Ami Yassour 已提交
117

W
Weidong Han 已提交
118 119 120
int kvm_deassign_device(struct kvm *kvm,
			struct kvm_assigned_dev_kernel *assigned_dev)
{
J
Joerg Roedel 已提交
121
	struct iommu_domain *domain = kvm->arch.iommu_domain;
W
Weidong Han 已提交
122 123 124 125 126 127 128 129 130 131
	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 已提交
132
	iommu_detach_device(domain, &pdev->dev);
W
Weidong Han 已提交
133 134 135 136 137 138 139 140 141

	printk(KERN_DEBUG "deassign device: host bdf = %x:%x:%x\n",
		assigned_dev->host_busnr,
		PCI_SLOT(assigned_dev->host_devfn),
		PCI_FUNC(assigned_dev->host_devfn));

	return 0;
}

W
Weidong Han 已提交
142 143 144 145
int kvm_iommu_map_guest(struct kvm *kvm)
{
	int r;

J
Joerg Roedel 已提交
146 147
	if (!iommu_found()) {
		printk(KERN_ERR "%s: iommu not found\n", __func__);
B
Ben-Ami Yassour 已提交
148 149 150
		return -ENODEV;
	}

J
Joerg Roedel 已提交
151 152
	kvm->arch.iommu_domain = iommu_domain_alloc();
	if (!kvm->arch.iommu_domain)
W
Weidong Han 已提交
153
		return -ENOMEM;
B
Ben-Ami Yassour 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166

	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 已提交
167
				gfn_t base_gfn, unsigned long npages)
B
Ben-Ami Yassour 已提交
168 169 170
{
	gfn_t gfn = base_gfn;
	pfn_t pfn;
J
Joerg Roedel 已提交
171
	struct iommu_domain *domain = kvm->arch.iommu_domain;
W
Weidong Han 已提交
172 173 174 175 176 177
	unsigned long i;
	u64 phys;

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

	for (i = 0; i < npages; i++) {
J
Joerg Roedel 已提交
180
		phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
W
Weidong Han 已提交
181
		pfn = phys >> PAGE_SHIFT;
B
Ben-Ami Yassour 已提交
182 183 184
		kvm_release_pfn_clean(pfn);
		gfn++;
	}
W
Weidong Han 已提交
185

J
Joerg Roedel 已提交
186
	iommu_unmap_range(domain, gfn_to_gpa(base_gfn), PAGE_SIZE * npages);
B
Ben-Ami Yassour 已提交
187 188 189 190 191
}

static int kvm_iommu_unmap_memslots(struct kvm *kvm)
{
	int i;
192

B
Ben-Ami Yassour 已提交
193 194 195 196 197 198 199 200 201 202
	for (i = 0; i < kvm->nmemslots; i++) {
		kvm_iommu_put_pages(kvm, kvm->memslots[i].base_gfn,
				    kvm->memslots[i].npages);
	}

	return 0;
}

int kvm_iommu_unmap_guest(struct kvm *kvm)
{
J
Joerg Roedel 已提交
203
	struct iommu_domain *domain = kvm->arch.iommu_domain;
B
Ben-Ami Yassour 已提交
204 205 206 207 208 209

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

	kvm_iommu_unmap_memslots(kvm);
J
Joerg Roedel 已提交
210
	iommu_domain_free(domain);
B
Ben-Ami Yassour 已提交
211 212
	return 0;
}