blob: bc49b121c667a796c9b6c36c8e834e5ec9d31b24 [file] [log] [blame]
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001/*
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 *
mark gross98bcef52008-02-23 15:23:35 -080017 * Copyright (C) 2006-2008 Intel Corporation
18 * Author: Ashok Raj <ashok.raj@intel.com>
19 * Author: Shaohua Li <shaohua.li@intel.com>
20 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Fenghua Yu5b6985c2008-10-16 18:02:32 -070021 * Author: Fenghua Yu <fenghua.yu@intel.com>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070022 */
23
24#include <linux/init.h>
25#include <linux/bitmap.h>
mark gross5e0d2a62008-03-04 15:22:08 -080026#include <linux/debugfs.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070027#include <linux/slab.h>
28#include <linux/irq.h>
29#include <linux/interrupt.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070030#include <linux/spinlock.h>
31#include <linux/pci.h>
32#include <linux/dmar.h>
33#include <linux/dma-mapping.h>
34#include <linux/mempool.h>
mark gross5e0d2a62008-03-04 15:22:08 -080035#include <linux/timer.h>
Kay, Allen M38717942008-09-09 18:37:29 +030036#include <linux/iova.h>
Joerg Roedel5d450802008-12-03 14:52:32 +010037#include <linux/iommu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030038#include <linux/intel-iommu.h>
Fenghua Yuf59c7b62009-03-27 14:22:42 -070039#include <linux/sysdev.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070040#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090041#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070042#include "pci.h"
43
Fenghua Yu5b6985c2008-10-16 18:02:32 -070044#define ROOT_SIZE VTD_PAGE_SIZE
45#define CONTEXT_SIZE VTD_PAGE_SIZE
46
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070047#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
48#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
49
50#define IOAPIC_RANGE_START (0xfee00000)
51#define IOAPIC_RANGE_END (0xfeefffff)
52#define IOVA_START_ADDR (0x1000)
53
54#define DEFAULT_DOMAIN_ADDRESS_WIDTH 48
55
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070056#define MAX_AGAW_WIDTH 64
57
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070058#define DOMAIN_MAX_ADDR(gaw) ((((u64)1) << gaw) - 1)
David Woodhouse595badf2009-06-27 22:09:11 +010059#define DOMAIN_MAX_PFN(gaw) ((((u64)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070060
Mark McLoughlinf27be032008-11-20 15:49:43 +000061#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
Yang Hongyang284901a2009-04-06 19:01:15 -070062#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
Yang Hongyang6a355282009-04-06 19:01:13 -070063#define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64))
mark gross5e0d2a62008-03-04 15:22:08 -080064
David Woodhousefd18de52009-05-10 23:57:41 +010065#ifndef PHYSICAL_PAGE_MASK
66#define PHYSICAL_PAGE_MASK PAGE_MASK
67#endif
68
David Woodhousedd4e8312009-06-27 16:21:20 +010069/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
70 are never going to work. */
71static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
72{
73 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
74}
75
76static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
77{
78 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
79}
80static inline unsigned long page_to_dma_pfn(struct page *pg)
81{
82 return mm_to_dma_pfn(page_to_pfn(pg));
83}
84static inline unsigned long virt_to_dma_pfn(void *p)
85{
86 return page_to_dma_pfn(virt_to_page(p));
87}
88
Weidong Hand9630fe2008-12-08 11:06:32 +080089/* global iommu list, set NULL for ignored DMAR units */
90static struct intel_iommu **g_iommus;
91
David Woodhouse9af88142009-02-13 23:18:03 +000092static int rwbf_quirk;
93
Mark McLoughlin46b08e12008-11-20 15:49:44 +000094/*
95 * 0: Present
96 * 1-11: Reserved
97 * 12-63: Context Ptr (12 - (haw-1))
98 * 64-127: Reserved
99 */
100struct root_entry {
101 u64 val;
102 u64 rsvd1;
103};
104#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
105static inline bool root_present(struct root_entry *root)
106{
107 return (root->val & 1);
108}
109static inline void set_root_present(struct root_entry *root)
110{
111 root->val |= 1;
112}
113static inline void set_root_value(struct root_entry *root, unsigned long value)
114{
115 root->val |= value & VTD_PAGE_MASK;
116}
117
118static inline struct context_entry *
119get_context_addr_from_root(struct root_entry *root)
120{
121 return (struct context_entry *)
122 (root_present(root)?phys_to_virt(
123 root->val & VTD_PAGE_MASK) :
124 NULL);
125}
126
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000127/*
128 * low 64 bits:
129 * 0: present
130 * 1: fault processing disable
131 * 2-3: translation type
132 * 12-63: address space root
133 * high 64 bits:
134 * 0-2: address width
135 * 3-6: aval
136 * 8-23: domain id
137 */
138struct context_entry {
139 u64 lo;
140 u64 hi;
141};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000142
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000143static inline bool context_present(struct context_entry *context)
144{
145 return (context->lo & 1);
146}
147static inline void context_set_present(struct context_entry *context)
148{
149 context->lo |= 1;
150}
151
152static inline void context_set_fault_enable(struct context_entry *context)
153{
154 context->lo &= (((u64)-1) << 2) | 1;
155}
156
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000157static inline void context_set_translation_type(struct context_entry *context,
158 unsigned long value)
159{
160 context->lo &= (((u64)-1) << 4) | 3;
161 context->lo |= (value & 3) << 2;
162}
163
164static inline void context_set_address_root(struct context_entry *context,
165 unsigned long value)
166{
167 context->lo |= value & VTD_PAGE_MASK;
168}
169
170static inline void context_set_address_width(struct context_entry *context,
171 unsigned long value)
172{
173 context->hi |= value & 7;
174}
175
176static inline void context_set_domain_id(struct context_entry *context,
177 unsigned long value)
178{
179 context->hi |= (value & ((1 << 16) - 1)) << 8;
180}
181
182static inline void context_clear_entry(struct context_entry *context)
183{
184 context->lo = 0;
185 context->hi = 0;
186}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000187
Mark McLoughlin622ba122008-11-20 15:49:46 +0000188/*
189 * 0: readable
190 * 1: writable
191 * 2-6: reserved
192 * 7: super page
Sheng Yang9cf066972009-03-18 15:33:07 +0800193 * 8-10: available
194 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000195 * 12-63: Host physcial address
196 */
197struct dma_pte {
198 u64 val;
199};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000200
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000201static inline void dma_clear_pte(struct dma_pte *pte)
202{
203 pte->val = 0;
204}
205
206static inline void dma_set_pte_readable(struct dma_pte *pte)
207{
208 pte->val |= DMA_PTE_READ;
209}
210
211static inline void dma_set_pte_writable(struct dma_pte *pte)
212{
213 pte->val |= DMA_PTE_WRITE;
214}
215
Sheng Yang9cf066972009-03-18 15:33:07 +0800216static inline void dma_set_pte_snp(struct dma_pte *pte)
217{
218 pte->val |= DMA_PTE_SNP;
219}
220
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000221static inline void dma_set_pte_prot(struct dma_pte *pte, unsigned long prot)
222{
223 pte->val = (pte->val & ~3) | (prot & 3);
224}
225
226static inline u64 dma_pte_addr(struct dma_pte *pte)
227{
228 return (pte->val & VTD_PAGE_MASK);
229}
230
David Woodhousedd4e8312009-06-27 16:21:20 +0100231static inline void dma_set_pte_pfn(struct dma_pte *pte, unsigned long pfn)
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000232{
David Woodhousedd4e8312009-06-27 16:21:20 +0100233 pte->val |= (uint64_t)pfn << VTD_PAGE_SHIFT;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000234}
235
236static inline bool dma_pte_present(struct dma_pte *pte)
237{
238 return (pte->val & 3) != 0;
239}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000240
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700241/*
242 * This domain is a statically identity mapping domain.
243 * 1. This domain creats a static 1:1 mapping to all usable memory.
244 * 2. It maps to each iommu if successful.
245 * 3. Each iommu mapps to this domain if successful.
246 */
247struct dmar_domain *si_domain;
248
Weidong Han3b5410e2008-12-08 09:17:15 +0800249/* devices under the same p2p bridge are owned in one domain */
Mike Daycdc7b832008-12-12 17:16:30 +0100250#define DOMAIN_FLAG_P2P_MULTIPLE_DEVICES (1 << 0)
Weidong Han3b5410e2008-12-08 09:17:15 +0800251
Weidong Han1ce28fe2008-12-08 16:35:39 +0800252/* domain represents a virtual machine, more than one devices
253 * across iommus may be owned in one domain, e.g. kvm guest.
254 */
255#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 1)
256
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700257/* si_domain contains mulitple devices */
258#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 2)
259
Mark McLoughlin99126f72008-11-20 15:49:47 +0000260struct dmar_domain {
261 int id; /* domain id */
Weidong Han8c11e792008-12-08 15:29:22 +0800262 unsigned long iommu_bmp; /* bitmap of iommus this domain uses*/
Mark McLoughlin99126f72008-11-20 15:49:47 +0000263
264 struct list_head devices; /* all devices' list */
265 struct iova_domain iovad; /* iova's that belong to this domain */
266
267 struct dma_pte *pgd; /* virtual address */
268 spinlock_t mapping_lock; /* page table lock */
269 int gaw; /* max guest address width */
270
271 /* adjusted guest address width, 0 is level 2 30-bit */
272 int agaw;
273
Weidong Han3b5410e2008-12-08 09:17:15 +0800274 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800275
276 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800277 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800278 int iommu_count; /* reference count of iommu */
279 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800280 u64 max_addr; /* maximum mapped address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000281};
282
Mark McLoughlina647dac2008-11-20 15:49:48 +0000283/* PCI domain-device relationship */
284struct device_domain_info {
285 struct list_head link; /* link to domain siblings */
286 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100287 int segment; /* PCI domain */
288 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000289 u8 devfn; /* PCI devfn number */
290 struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800291 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000292 struct dmar_domain *domain; /* pointer to domain */
293};
294
mark gross5e0d2a62008-03-04 15:22:08 -0800295static void flush_unmaps_timeout(unsigned long data);
296
297DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
298
mark gross80b20dd2008-04-18 13:53:58 -0700299#define HIGH_WATER_MARK 250
300struct deferred_flush_tables {
301 int next;
302 struct iova *iova[HIGH_WATER_MARK];
303 struct dmar_domain *domain[HIGH_WATER_MARK];
304};
305
306static struct deferred_flush_tables *deferred_flush;
307
mark gross5e0d2a62008-03-04 15:22:08 -0800308/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800309static int g_num_of_iommus;
310
311static DEFINE_SPINLOCK(async_umap_flush_lock);
312static LIST_HEAD(unmaps_to_do);
313
314static int timer_on;
315static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800316
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700317static void domain_remove_dev_info(struct dmar_domain *domain);
318
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800319#ifdef CONFIG_DMAR_DEFAULT_ON
320int dmar_disabled = 0;
321#else
322int dmar_disabled = 1;
323#endif /*CONFIG_DMAR_DEFAULT_ON*/
324
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700325static int __initdata dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700326static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800327static int intel_iommu_strict;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700328
329#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
330static DEFINE_SPINLOCK(device_domain_lock);
331static LIST_HEAD(device_domain_list);
332
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100333static struct iommu_ops intel_iommu_ops;
334
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700335static int __init intel_iommu_setup(char *str)
336{
337 if (!str)
338 return -EINVAL;
339 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800340 if (!strncmp(str, "on", 2)) {
341 dmar_disabled = 0;
342 printk(KERN_INFO "Intel-IOMMU: enabled\n");
343 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700344 dmar_disabled = 1;
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800345 printk(KERN_INFO "Intel-IOMMU: disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700346 } else if (!strncmp(str, "igfx_off", 8)) {
347 dmar_map_gfx = 0;
348 printk(KERN_INFO
349 "Intel-IOMMU: disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700350 } else if (!strncmp(str, "forcedac", 8)) {
mark gross5e0d2a62008-03-04 15:22:08 -0800351 printk(KERN_INFO
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700352 "Intel-IOMMU: Forcing DAC for PCI devices\n");
353 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800354 } else if (!strncmp(str, "strict", 6)) {
355 printk(KERN_INFO
356 "Intel-IOMMU: disable batched IOTLB flush\n");
357 intel_iommu_strict = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700358 }
359
360 str += strcspn(str, ",");
361 while (*str == ',')
362 str++;
363 }
364 return 0;
365}
366__setup("intel_iommu=", intel_iommu_setup);
367
368static struct kmem_cache *iommu_domain_cache;
369static struct kmem_cache *iommu_devinfo_cache;
370static struct kmem_cache *iommu_iova_cache;
371
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700372static inline void *iommu_kmem_cache_alloc(struct kmem_cache *cachep)
373{
374 unsigned int flags;
375 void *vaddr;
376
377 /* trying to avoid low memory issues */
378 flags = current->flags & PF_MEMALLOC;
379 current->flags |= PF_MEMALLOC;
380 vaddr = kmem_cache_alloc(cachep, GFP_ATOMIC);
381 current->flags &= (~PF_MEMALLOC | flags);
382 return vaddr;
383}
384
385
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700386static inline void *alloc_pgtable_page(void)
387{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700388 unsigned int flags;
389 void *vaddr;
390
391 /* trying to avoid low memory issues */
392 flags = current->flags & PF_MEMALLOC;
393 current->flags |= PF_MEMALLOC;
394 vaddr = (void *)get_zeroed_page(GFP_ATOMIC);
395 current->flags &= (~PF_MEMALLOC | flags);
396 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700397}
398
399static inline void free_pgtable_page(void *vaddr)
400{
401 free_page((unsigned long)vaddr);
402}
403
404static inline void *alloc_domain_mem(void)
405{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700406 return iommu_kmem_cache_alloc(iommu_domain_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700407}
408
Kay, Allen M38717942008-09-09 18:37:29 +0300409static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700410{
411 kmem_cache_free(iommu_domain_cache, vaddr);
412}
413
414static inline void * alloc_devinfo_mem(void)
415{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700416 return iommu_kmem_cache_alloc(iommu_devinfo_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700417}
418
419static inline void free_devinfo_mem(void *vaddr)
420{
421 kmem_cache_free(iommu_devinfo_cache, vaddr);
422}
423
424struct iova *alloc_iova_mem(void)
425{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700426 return iommu_kmem_cache_alloc(iommu_iova_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700427}
428
429void free_iova_mem(struct iova *iova)
430{
431 kmem_cache_free(iommu_iova_cache, iova);
432}
433
Weidong Han1b573682008-12-08 15:34:06 +0800434
435static inline int width_to_agaw(int width);
436
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700437static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800438{
439 unsigned long sagaw;
440 int agaw = -1;
441
442 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700443 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800444 agaw >= 0; agaw--) {
445 if (test_bit(agaw, &sagaw))
446 break;
447 }
448
449 return agaw;
450}
451
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700452/*
453 * Calculate max SAGAW for each iommu.
454 */
455int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
456{
457 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
458}
459
460/*
461 * calculate agaw for each iommu.
462 * "SAGAW" may be different across iommus, use a default agaw, and
463 * get a supported less agaw for iommus that don't support the default agaw.
464 */
465int iommu_calculate_agaw(struct intel_iommu *iommu)
466{
467 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
468}
469
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700470/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800471static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
472{
473 int iommu_id;
474
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700475 /* si_domain and vm domain should not get here. */
Weidong Han1ce28fe2008-12-08 16:35:39 +0800476 BUG_ON(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700477 BUG_ON(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY);
Weidong Han1ce28fe2008-12-08 16:35:39 +0800478
Weidong Han8c11e792008-12-08 15:29:22 +0800479 iommu_id = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
480 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
481 return NULL;
482
483 return g_iommus[iommu_id];
484}
485
Weidong Han8e6040972008-12-08 15:49:06 +0800486static void domain_update_iommu_coherency(struct dmar_domain *domain)
487{
488 int i;
489
490 domain->iommu_coherency = 1;
491
492 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
493 for (; i < g_num_of_iommus; ) {
494 if (!ecap_coherent(g_iommus[i]->ecap)) {
495 domain->iommu_coherency = 0;
496 break;
497 }
498 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
499 }
500}
501
Sheng Yang58c610b2009-03-18 15:33:05 +0800502static void domain_update_iommu_snooping(struct dmar_domain *domain)
503{
504 int i;
505
506 domain->iommu_snooping = 1;
507
508 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
509 for (; i < g_num_of_iommus; ) {
510 if (!ecap_sc_support(g_iommus[i]->ecap)) {
511 domain->iommu_snooping = 0;
512 break;
513 }
514 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
515 }
516}
517
518/* Some capabilities may be different across iommus */
519static void domain_update_iommu_cap(struct dmar_domain *domain)
520{
521 domain_update_iommu_coherency(domain);
522 domain_update_iommu_snooping(domain);
523}
524
David Woodhouse276dbf992009-04-04 01:45:37 +0100525static struct intel_iommu *device_to_iommu(int segment, u8 bus, u8 devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800526{
527 struct dmar_drhd_unit *drhd = NULL;
528 int i;
529
530 for_each_drhd_unit(drhd) {
531 if (drhd->ignored)
532 continue;
David Woodhouse276dbf992009-04-04 01:45:37 +0100533 if (segment != drhd->segment)
534 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800535
David Woodhouse924b6232009-04-04 00:39:25 +0100536 for (i = 0; i < drhd->devices_cnt; i++) {
Dirk Hohndel288e4872009-01-11 15:33:51 +0000537 if (drhd->devices[i] &&
538 drhd->devices[i]->bus->number == bus &&
Weidong Hanc7151a82008-12-08 22:51:37 +0800539 drhd->devices[i]->devfn == devfn)
540 return drhd->iommu;
David Woodhouse4958c5d2009-04-06 13:30:01 -0700541 if (drhd->devices[i] &&
542 drhd->devices[i]->subordinate &&
David Woodhouse924b6232009-04-04 00:39:25 +0100543 drhd->devices[i]->subordinate->number <= bus &&
544 drhd->devices[i]->subordinate->subordinate >= bus)
545 return drhd->iommu;
546 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800547
548 if (drhd->include_all)
549 return drhd->iommu;
550 }
551
552 return NULL;
553}
554
Weidong Han5331fe62008-12-08 23:00:00 +0800555static void domain_flush_cache(struct dmar_domain *domain,
556 void *addr, int size)
557{
558 if (!domain->iommu_coherency)
559 clflush_cache_range(addr, size);
560}
561
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700562/* Gets context entry for a given bus and devfn */
563static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
564 u8 bus, u8 devfn)
565{
566 struct root_entry *root;
567 struct context_entry *context;
568 unsigned long phy_addr;
569 unsigned long flags;
570
571 spin_lock_irqsave(&iommu->lock, flags);
572 root = &iommu->root_entry[bus];
573 context = get_context_addr_from_root(root);
574 if (!context) {
575 context = (struct context_entry *)alloc_pgtable_page();
576 if (!context) {
577 spin_unlock_irqrestore(&iommu->lock, flags);
578 return NULL;
579 }
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700580 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700581 phy_addr = virt_to_phys((void *)context);
582 set_root_value(root, phy_addr);
583 set_root_present(root);
584 __iommu_flush_cache(iommu, root, sizeof(*root));
585 }
586 spin_unlock_irqrestore(&iommu->lock, flags);
587 return &context[devfn];
588}
589
590static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
591{
592 struct root_entry *root;
593 struct context_entry *context;
594 int ret;
595 unsigned long flags;
596
597 spin_lock_irqsave(&iommu->lock, flags);
598 root = &iommu->root_entry[bus];
599 context = get_context_addr_from_root(root);
600 if (!context) {
601 ret = 0;
602 goto out;
603 }
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000604 ret = context_present(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700605out:
606 spin_unlock_irqrestore(&iommu->lock, flags);
607 return ret;
608}
609
610static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
611{
612 struct root_entry *root;
613 struct context_entry *context;
614 unsigned long flags;
615
616 spin_lock_irqsave(&iommu->lock, flags);
617 root = &iommu->root_entry[bus];
618 context = get_context_addr_from_root(root);
619 if (context) {
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000620 context_clear_entry(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700621 __iommu_flush_cache(iommu, &context[devfn], \
622 sizeof(*context));
623 }
624 spin_unlock_irqrestore(&iommu->lock, flags);
625}
626
627static void free_context_table(struct intel_iommu *iommu)
628{
629 struct root_entry *root;
630 int i;
631 unsigned long flags;
632 struct context_entry *context;
633
634 spin_lock_irqsave(&iommu->lock, flags);
635 if (!iommu->root_entry) {
636 goto out;
637 }
638 for (i = 0; i < ROOT_ENTRY_NR; i++) {
639 root = &iommu->root_entry[i];
640 context = get_context_addr_from_root(root);
641 if (context)
642 free_pgtable_page(context);
643 }
644 free_pgtable_page(iommu->root_entry);
645 iommu->root_entry = NULL;
646out:
647 spin_unlock_irqrestore(&iommu->lock, flags);
648}
649
650/* page table handling */
651#define LEVEL_STRIDE (9)
652#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
653
654static inline int agaw_to_level(int agaw)
655{
656 return agaw + 2;
657}
658
659static inline int agaw_to_width(int agaw)
660{
661 return 30 + agaw * LEVEL_STRIDE;
662
663}
664
665static inline int width_to_agaw(int width)
666{
667 return (width - 30) / LEVEL_STRIDE;
668}
669
670static inline unsigned int level_to_offset_bits(int level)
671{
David Woodhouse6660c632009-06-27 22:41:00 +0100672 return (level - 1) * LEVEL_STRIDE;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700673}
674
David Woodhouse77dfa562009-06-27 16:40:08 +0100675static inline int pfn_level_offset(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700676{
David Woodhouse6660c632009-06-27 22:41:00 +0100677 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700678}
679
David Woodhouse6660c632009-06-27 22:41:00 +0100680static inline unsigned long level_mask(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700681{
David Woodhouse6660c632009-06-27 22:41:00 +0100682 return -1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700683}
684
David Woodhouse6660c632009-06-27 22:41:00 +0100685static inline unsigned long level_size(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700686{
David Woodhouse6660c632009-06-27 22:41:00 +0100687 return 1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700688}
689
David Woodhouse6660c632009-06-27 22:41:00 +0100690static inline unsigned long align_to_level(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700691{
David Woodhouse6660c632009-06-27 22:41:00 +0100692 return (pfn + level_size(level) - 1) & level_mask(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700693}
694
David Woodhouseb026fd22009-06-28 10:37:25 +0100695static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
696 unsigned long pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700697{
David Woodhouseb026fd22009-06-28 10:37:25 +0100698 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700699 struct dma_pte *parent, *pte = NULL;
700 int level = agaw_to_level(domain->agaw);
701 int offset;
702 unsigned long flags;
703
704 BUG_ON(!domain->pgd);
David Woodhouseb026fd22009-06-28 10:37:25 +0100705 BUG_ON(addr_width < BITS_PER_LONG && pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700706 parent = domain->pgd;
707
708 spin_lock_irqsave(&domain->mapping_lock, flags);
709 while (level > 0) {
710 void *tmp_page;
711
David Woodhouseb026fd22009-06-28 10:37:25 +0100712 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700713 pte = &parent[offset];
714 if (level == 1)
715 break;
716
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000717 if (!dma_pte_present(pte)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700718 tmp_page = alloc_pgtable_page();
719
720 if (!tmp_page) {
721 spin_unlock_irqrestore(&domain->mapping_lock,
722 flags);
723 return NULL;
724 }
Weidong Han5331fe62008-12-08 23:00:00 +0800725 domain_flush_cache(domain, tmp_page, PAGE_SIZE);
David Woodhousedd4e8312009-06-27 16:21:20 +0100726 dma_set_pte_pfn(pte, virt_to_dma_pfn(tmp_page));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700727 /*
728 * high level table always sets r/w, last level page
729 * table control read/write
730 */
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000731 dma_set_pte_readable(pte);
732 dma_set_pte_writable(pte);
Weidong Han5331fe62008-12-08 23:00:00 +0800733 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700734 }
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000735 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700736 level--;
737 }
738
739 spin_unlock_irqrestore(&domain->mapping_lock, flags);
740 return pte;
741}
742
743/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100744static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
745 unsigned long pfn,
746 int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700747{
748 struct dma_pte *parent, *pte = NULL;
749 int total = agaw_to_level(domain->agaw);
750 int offset;
751
752 parent = domain->pgd;
753 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100754 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700755 pte = &parent[offset];
756 if (level == total)
757 return pte;
758
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000759 if (!dma_pte_present(pte))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700760 break;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000761 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700762 total--;
763 }
764 return NULL;
765}
766
767/* clear one page's page table */
David Woodhousea75f7cf2009-06-27 17:44:39 +0100768static void dma_pte_clear_one(struct dmar_domain *domain, unsigned long pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700769{
770 struct dma_pte *pte = NULL;
771
772 /* get last level pte */
David Woodhousea75f7cf2009-06-27 17:44:39 +0100773 pte = dma_pfn_level_pte(domain, pfn, 1);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700774
775 if (pte) {
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000776 dma_clear_pte(pte);
Weidong Han5331fe62008-12-08 23:00:00 +0800777 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700778 }
779}
780
781/* clear last level pte, a tlb flush should be followed */
David Woodhouse595badf2009-06-27 22:09:11 +0100782static void dma_pte_clear_range(struct dmar_domain *domain,
783 unsigned long start_pfn,
784 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700785{
David Woodhouse04b18e62009-06-27 19:15:01 +0100786 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700787
David Woodhouse04b18e62009-06-27 19:15:01 +0100788 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
David Woodhouse595badf2009-06-27 22:09:11 +0100789 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse66eae842009-06-27 19:00:32 +0100790
David Woodhouse04b18e62009-06-27 19:15:01 +0100791 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse595badf2009-06-27 22:09:11 +0100792 while (start_pfn <= last_pfn) {
David Woodhouse04b18e62009-06-27 19:15:01 +0100793 dma_pte_clear_one(domain, start_pfn);
794 start_pfn++;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700795 }
796}
797
798/* free page table pages. last level pte should already be cleared */
799static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +0100800 unsigned long start_pfn,
801 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700802{
David Woodhouse6660c632009-06-27 22:41:00 +0100803 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700804 struct dma_pte *pte;
805 int total = agaw_to_level(domain->agaw);
806 int level;
David Woodhouse6660c632009-06-27 22:41:00 +0100807 unsigned long tmp;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700808
David Woodhouse6660c632009-06-27 22:41:00 +0100809 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
810 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700811
812 /* we don't need lock here, nobody else touches the iova range */
813 level = 2;
814 while (level <= total) {
David Woodhouse6660c632009-06-27 22:41:00 +0100815 tmp = align_to_level(start_pfn, level);
816
817 /* Only clear this pte/pmd if we're asked to clear its
818 _whole_ range */
819 if (tmp + level_size(level) - 1 > last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700820 return;
821
David Woodhouse6660c632009-06-27 22:41:00 +0100822 while (tmp <= last_pfn) {
823 pte = dma_pfn_level_pte(domain, tmp, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700824 if (pte) {
825 free_pgtable_page(
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000826 phys_to_virt(dma_pte_addr(pte)));
827 dma_clear_pte(pte);
Weidong Han5331fe62008-12-08 23:00:00 +0800828 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700829 }
830 tmp += level_size(level);
831 }
832 level++;
833 }
834 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +0100835 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700836 free_pgtable_page(domain->pgd);
837 domain->pgd = NULL;
838 }
839}
840
841/* iommu handling */
842static int iommu_alloc_root_entry(struct intel_iommu *iommu)
843{
844 struct root_entry *root;
845 unsigned long flags;
846
847 root = (struct root_entry *)alloc_pgtable_page();
848 if (!root)
849 return -ENOMEM;
850
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700851 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700852
853 spin_lock_irqsave(&iommu->lock, flags);
854 iommu->root_entry = root;
855 spin_unlock_irqrestore(&iommu->lock, flags);
856
857 return 0;
858}
859
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700860static void iommu_set_root_entry(struct intel_iommu *iommu)
861{
862 void *addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100863 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700864 unsigned long flag;
865
866 addr = iommu->root_entry;
867
868 spin_lock_irqsave(&iommu->register_lock, flag);
869 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, virt_to_phys(addr));
870
David Woodhousec416daa2009-05-10 20:30:58 +0100871 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700872
873 /* Make sure hardware complete it */
874 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100875 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700876
877 spin_unlock_irqrestore(&iommu->register_lock, flag);
878}
879
880static void iommu_flush_write_buffer(struct intel_iommu *iommu)
881{
882 u32 val;
883 unsigned long flag;
884
David Woodhouse9af88142009-02-13 23:18:03 +0000885 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700886 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700887
888 spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +0100889 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700890
891 /* Make sure hardware complete it */
892 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100893 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700894
895 spin_unlock_irqrestore(&iommu->register_lock, flag);
896}
897
898/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +0100899static void __iommu_flush_context(struct intel_iommu *iommu,
900 u16 did, u16 source_id, u8 function_mask,
901 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700902{
903 u64 val = 0;
904 unsigned long flag;
905
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700906 switch (type) {
907 case DMA_CCMD_GLOBAL_INVL:
908 val = DMA_CCMD_GLOBAL_INVL;
909 break;
910 case DMA_CCMD_DOMAIN_INVL:
911 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
912 break;
913 case DMA_CCMD_DEVICE_INVL:
914 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
915 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
916 break;
917 default:
918 BUG();
919 }
920 val |= DMA_CCMD_ICC;
921
922 spin_lock_irqsave(&iommu->register_lock, flag);
923 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
924
925 /* Make sure hardware complete it */
926 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
927 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
928
929 spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700930}
931
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700932/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +0100933static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
934 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700935{
936 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
937 u64 val = 0, val_iva = 0;
938 unsigned long flag;
939
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700940 switch (type) {
941 case DMA_TLB_GLOBAL_FLUSH:
942 /* global flush doesn't need set IVA_REG */
943 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
944 break;
945 case DMA_TLB_DSI_FLUSH:
946 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
947 break;
948 case DMA_TLB_PSI_FLUSH:
949 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
950 /* Note: always flush non-leaf currently */
951 val_iva = size_order | addr;
952 break;
953 default:
954 BUG();
955 }
956 /* Note: set drain read/write */
957#if 0
958 /*
959 * This is probably to be super secure.. Looks like we can
960 * ignore it without any impact.
961 */
962 if (cap_read_drain(iommu->cap))
963 val |= DMA_TLB_READ_DRAIN;
964#endif
965 if (cap_write_drain(iommu->cap))
966 val |= DMA_TLB_WRITE_DRAIN;
967
968 spin_lock_irqsave(&iommu->register_lock, flag);
969 /* Note: Only uses first TLB reg currently */
970 if (val_iva)
971 dmar_writeq(iommu->reg + tlb_offset, val_iva);
972 dmar_writeq(iommu->reg + tlb_offset + 8, val);
973
974 /* Make sure hardware complete it */
975 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
976 dmar_readq, (!(val & DMA_TLB_IVT)), val);
977
978 spin_unlock_irqrestore(&iommu->register_lock, flag);
979
980 /* check IOTLB invalidation granularity */
981 if (DMA_TLB_IAIG(val) == 0)
982 printk(KERN_ERR"IOMMU: flush IOTLB failed\n");
983 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
984 pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700985 (unsigned long long)DMA_TLB_IIRG(type),
986 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700987}
988
Yu Zhao93a23a72009-05-18 13:51:37 +0800989static struct device_domain_info *iommu_support_dev_iotlb(
990 struct dmar_domain *domain, int segment, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700991{
Yu Zhao93a23a72009-05-18 13:51:37 +0800992 int found = 0;
993 unsigned long flags;
994 struct device_domain_info *info;
995 struct intel_iommu *iommu = device_to_iommu(segment, bus, devfn);
996
997 if (!ecap_dev_iotlb_support(iommu->ecap))
998 return NULL;
999
1000 if (!iommu->qi)
1001 return NULL;
1002
1003 spin_lock_irqsave(&device_domain_lock, flags);
1004 list_for_each_entry(info, &domain->devices, link)
1005 if (info->bus == bus && info->devfn == devfn) {
1006 found = 1;
1007 break;
1008 }
1009 spin_unlock_irqrestore(&device_domain_lock, flags);
1010
1011 if (!found || !info->dev)
1012 return NULL;
1013
1014 if (!pci_find_ext_capability(info->dev, PCI_EXT_CAP_ID_ATS))
1015 return NULL;
1016
1017 if (!dmar_find_matched_atsr_unit(info->dev))
1018 return NULL;
1019
1020 info->iommu = iommu;
1021
1022 return info;
1023}
1024
1025static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1026{
1027 if (!info)
1028 return;
1029
1030 pci_enable_ats(info->dev, VTD_PAGE_SHIFT);
1031}
1032
1033static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1034{
1035 if (!info->dev || !pci_ats_enabled(info->dev))
1036 return;
1037
1038 pci_disable_ats(info->dev);
1039}
1040
1041static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1042 u64 addr, unsigned mask)
1043{
1044 u16 sid, qdep;
1045 unsigned long flags;
1046 struct device_domain_info *info;
1047
1048 spin_lock_irqsave(&device_domain_lock, flags);
1049 list_for_each_entry(info, &domain->devices, link) {
1050 if (!info->dev || !pci_ats_enabled(info->dev))
1051 continue;
1052
1053 sid = info->bus << 8 | info->devfn;
1054 qdep = pci_ats_queue_depth(info->dev);
1055 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1056 }
1057 spin_unlock_irqrestore(&device_domain_lock, flags);
1058}
1059
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001060static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did,
1061 u64 addr, unsigned int pages)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001062{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001063 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001064
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001065 BUG_ON(addr & (~VTD_PAGE_MASK));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001066 BUG_ON(pages == 0);
1067
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001068 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001069 * Fallback to domain selective flush if no PSI support or the size is
1070 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001071 * PSI requires page size to be 2 ^ x, and the base address is naturally
1072 * aligned to the size
1073 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001074 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1075 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001076 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001077 else
1078 iommu->flush.flush_iotlb(iommu, did, addr, mask,
1079 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001080
1081 /*
1082 * In caching mode, domain ID 0 is reserved for non-present to present
1083 * mapping flush. Device IOTLB doesn't need to be flushed in this case.
1084 */
1085 if (!cap_caching_mode(iommu->cap) || did)
Yu Zhao93a23a72009-05-18 13:51:37 +08001086 iommu_flush_dev_iotlb(iommu->domains[did], addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001087}
1088
mark grossf8bab732008-02-08 04:18:38 -08001089static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1090{
1091 u32 pmen;
1092 unsigned long flags;
1093
1094 spin_lock_irqsave(&iommu->register_lock, flags);
1095 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1096 pmen &= ~DMA_PMEN_EPM;
1097 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1098
1099 /* wait for the protected region status bit to clear */
1100 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1101 readl, !(pmen & DMA_PMEN_PRS), pmen);
1102
1103 spin_unlock_irqrestore(&iommu->register_lock, flags);
1104}
1105
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001106static int iommu_enable_translation(struct intel_iommu *iommu)
1107{
1108 u32 sts;
1109 unsigned long flags;
1110
1111 spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001112 iommu->gcmd |= DMA_GCMD_TE;
1113 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001114
1115 /* Make sure hardware complete it */
1116 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001117 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001118
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001119 spin_unlock_irqrestore(&iommu->register_lock, flags);
1120 return 0;
1121}
1122
1123static int iommu_disable_translation(struct intel_iommu *iommu)
1124{
1125 u32 sts;
1126 unsigned long flag;
1127
1128 spin_lock_irqsave(&iommu->register_lock, flag);
1129 iommu->gcmd &= ~DMA_GCMD_TE;
1130 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1131
1132 /* Make sure hardware complete it */
1133 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001134 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001135
1136 spin_unlock_irqrestore(&iommu->register_lock, flag);
1137 return 0;
1138}
1139
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001140
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001141static int iommu_init_domains(struct intel_iommu *iommu)
1142{
1143 unsigned long ndomains;
1144 unsigned long nlongs;
1145
1146 ndomains = cap_ndoms(iommu->cap);
1147 pr_debug("Number of Domains supportd <%ld>\n", ndomains);
1148 nlongs = BITS_TO_LONGS(ndomains);
1149
1150 /* TBD: there might be 64K domains,
1151 * consider other allocation for future chip
1152 */
1153 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1154 if (!iommu->domain_ids) {
1155 printk(KERN_ERR "Allocating domain id array failed\n");
1156 return -ENOMEM;
1157 }
1158 iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *),
1159 GFP_KERNEL);
1160 if (!iommu->domains) {
1161 printk(KERN_ERR "Allocating domain array failed\n");
1162 kfree(iommu->domain_ids);
1163 return -ENOMEM;
1164 }
1165
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001166 spin_lock_init(&iommu->lock);
1167
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001168 /*
1169 * if Caching mode is set, then invalid translations are tagged
1170 * with domainid 0. Hence we need to pre-allocate it.
1171 */
1172 if (cap_caching_mode(iommu->cap))
1173 set_bit(0, iommu->domain_ids);
1174 return 0;
1175}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001176
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001177
1178static void domain_exit(struct dmar_domain *domain);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001179static void vm_domain_exit(struct dmar_domain *domain);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001180
1181void free_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001182{
1183 struct dmar_domain *domain;
1184 int i;
Weidong Hanc7151a82008-12-08 22:51:37 +08001185 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001186
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001187 i = find_first_bit(iommu->domain_ids, cap_ndoms(iommu->cap));
1188 for (; i < cap_ndoms(iommu->cap); ) {
1189 domain = iommu->domains[i];
1190 clear_bit(i, iommu->domain_ids);
Weidong Hanc7151a82008-12-08 22:51:37 +08001191
1192 spin_lock_irqsave(&domain->iommu_lock, flags);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001193 if (--domain->iommu_count == 0) {
1194 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE)
1195 vm_domain_exit(domain);
1196 else
1197 domain_exit(domain);
1198 }
Weidong Hanc7151a82008-12-08 22:51:37 +08001199 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1200
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001201 i = find_next_bit(iommu->domain_ids,
1202 cap_ndoms(iommu->cap), i+1);
1203 }
1204
1205 if (iommu->gcmd & DMA_GCMD_TE)
1206 iommu_disable_translation(iommu);
1207
1208 if (iommu->irq) {
1209 set_irq_data(iommu->irq, NULL);
1210 /* This will mask the irq */
1211 free_irq(iommu->irq, iommu);
1212 destroy_irq(iommu->irq);
1213 }
1214
1215 kfree(iommu->domains);
1216 kfree(iommu->domain_ids);
1217
Weidong Hand9630fe2008-12-08 11:06:32 +08001218 g_iommus[iommu->seq_id] = NULL;
1219
1220 /* if all iommus are freed, free g_iommus */
1221 for (i = 0; i < g_num_of_iommus; i++) {
1222 if (g_iommus[i])
1223 break;
1224 }
1225
1226 if (i == g_num_of_iommus)
1227 kfree(g_iommus);
1228
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001229 /* free context mapping */
1230 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001231}
1232
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001233static struct dmar_domain *alloc_domain(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001234{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001235 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001236
1237 domain = alloc_domain_mem();
1238 if (!domain)
1239 return NULL;
1240
Weidong Han8c11e792008-12-08 15:29:22 +08001241 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
Weidong Hand71a2f32008-12-07 21:13:41 +08001242 domain->flags = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001243
1244 return domain;
1245}
1246
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001247static int iommu_attach_domain(struct dmar_domain *domain,
1248 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001249{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001250 int num;
1251 unsigned long ndomains;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001252 unsigned long flags;
1253
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001254 ndomains = cap_ndoms(iommu->cap);
Weidong Han8c11e792008-12-08 15:29:22 +08001255
1256 spin_lock_irqsave(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001257
1258 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1259 if (num >= ndomains) {
1260 spin_unlock_irqrestore(&iommu->lock, flags);
1261 printk(KERN_ERR "IOMMU: no free domain ids\n");
1262 return -ENOMEM;
1263 }
1264
1265 domain->id = num;
1266 set_bit(num, iommu->domain_ids);
1267 set_bit(iommu->seq_id, &domain->iommu_bmp);
1268 iommu->domains[num] = domain;
1269 spin_unlock_irqrestore(&iommu->lock, flags);
1270
1271 return 0;
1272}
1273
1274static void iommu_detach_domain(struct dmar_domain *domain,
1275 struct intel_iommu *iommu)
1276{
1277 unsigned long flags;
1278 int num, ndomains;
1279 int found = 0;
1280
1281 spin_lock_irqsave(&iommu->lock, flags);
1282 ndomains = cap_ndoms(iommu->cap);
1283 num = find_first_bit(iommu->domain_ids, ndomains);
1284 for (; num < ndomains; ) {
1285 if (iommu->domains[num] == domain) {
1286 found = 1;
1287 break;
1288 }
1289 num = find_next_bit(iommu->domain_ids,
1290 cap_ndoms(iommu->cap), num+1);
1291 }
1292
1293 if (found) {
1294 clear_bit(num, iommu->domain_ids);
1295 clear_bit(iommu->seq_id, &domain->iommu_bmp);
1296 iommu->domains[num] = NULL;
1297 }
Weidong Han8c11e792008-12-08 15:29:22 +08001298 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001299}
1300
1301static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001302static struct lock_class_key reserved_alloc_key;
1303static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001304
1305static void dmar_init_reserved_ranges(void)
1306{
1307 struct pci_dev *pdev = NULL;
1308 struct iova *iova;
1309 int i;
1310 u64 addr, size;
1311
David Millerf6611972008-02-06 01:36:23 -08001312 init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001313
Mark Gross8a443df2008-03-04 14:59:31 -08001314 lockdep_set_class(&reserved_iova_list.iova_alloc_lock,
1315 &reserved_alloc_key);
1316 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1317 &reserved_rbtree_key);
1318
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001319 /* IOAPIC ranges shouldn't be accessed by DMA */
1320 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1321 IOVA_PFN(IOAPIC_RANGE_END));
1322 if (!iova)
1323 printk(KERN_ERR "Reserve IOAPIC range failed\n");
1324
1325 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1326 for_each_pci_dev(pdev) {
1327 struct resource *r;
1328
1329 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1330 r = &pdev->resource[i];
1331 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1332 continue;
1333 addr = r->start;
David Woodhousefd18de52009-05-10 23:57:41 +01001334 addr &= PHYSICAL_PAGE_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001335 size = r->end - addr;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001336 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001337 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(addr),
1338 IOVA_PFN(size + addr) - 1);
1339 if (!iova)
1340 printk(KERN_ERR "Reserve iova failed\n");
1341 }
1342 }
1343
1344}
1345
1346static void domain_reserve_special_ranges(struct dmar_domain *domain)
1347{
1348 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1349}
1350
1351static inline int guestwidth_to_adjustwidth(int gaw)
1352{
1353 int agaw;
1354 int r = (gaw - 12) % 9;
1355
1356 if (r == 0)
1357 agaw = gaw;
1358 else
1359 agaw = gaw + 9 - r;
1360 if (agaw > 64)
1361 agaw = 64;
1362 return agaw;
1363}
1364
1365static int domain_init(struct dmar_domain *domain, int guest_width)
1366{
1367 struct intel_iommu *iommu;
1368 int adjust_width, agaw;
1369 unsigned long sagaw;
1370
David Millerf6611972008-02-06 01:36:23 -08001371 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001372 spin_lock_init(&domain->mapping_lock);
Weidong Hanc7151a82008-12-08 22:51:37 +08001373 spin_lock_init(&domain->iommu_lock);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001374
1375 domain_reserve_special_ranges(domain);
1376
1377 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001378 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001379 if (guest_width > cap_mgaw(iommu->cap))
1380 guest_width = cap_mgaw(iommu->cap);
1381 domain->gaw = guest_width;
1382 adjust_width = guestwidth_to_adjustwidth(guest_width);
1383 agaw = width_to_agaw(adjust_width);
1384 sagaw = cap_sagaw(iommu->cap);
1385 if (!test_bit(agaw, &sagaw)) {
1386 /* hardware doesn't support it, choose a bigger one */
1387 pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw);
1388 agaw = find_next_bit(&sagaw, 5, agaw);
1389 if (agaw >= 5)
1390 return -ENODEV;
1391 }
1392 domain->agaw = agaw;
1393 INIT_LIST_HEAD(&domain->devices);
1394
Weidong Han8e6040972008-12-08 15:49:06 +08001395 if (ecap_coherent(iommu->ecap))
1396 domain->iommu_coherency = 1;
1397 else
1398 domain->iommu_coherency = 0;
1399
Sheng Yang58c610b2009-03-18 15:33:05 +08001400 if (ecap_sc_support(iommu->ecap))
1401 domain->iommu_snooping = 1;
1402 else
1403 domain->iommu_snooping = 0;
1404
Weidong Hanc7151a82008-12-08 22:51:37 +08001405 domain->iommu_count = 1;
1406
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001407 /* always allocate the top pgd */
1408 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
1409 if (!domain->pgd)
1410 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001411 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001412 return 0;
1413}
1414
1415static void domain_exit(struct dmar_domain *domain)
1416{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001417 struct dmar_drhd_unit *drhd;
1418 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001419
1420 /* Domain 0 is reserved, so dont process it */
1421 if (!domain)
1422 return;
1423
1424 domain_remove_dev_info(domain);
1425 /* destroy iovas */
1426 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001427
1428 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01001429 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001430
1431 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01001432 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001433
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001434 for_each_active_iommu(iommu, drhd)
1435 if (test_bit(iommu->seq_id, &domain->iommu_bmp))
1436 iommu_detach_domain(domain, iommu);
1437
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001438 free_domain_mem(domain);
1439}
1440
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001441static int domain_context_mapping_one(struct dmar_domain *domain, int segment,
1442 u8 bus, u8 devfn, int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001443{
1444 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001445 unsigned long flags;
Weidong Han5331fe62008-12-08 23:00:00 +08001446 struct intel_iommu *iommu;
Weidong Hanea6606b2008-12-08 23:08:15 +08001447 struct dma_pte *pgd;
1448 unsigned long num;
1449 unsigned long ndomains;
1450 int id;
1451 int agaw;
Yu Zhao93a23a72009-05-18 13:51:37 +08001452 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001453
1454 pr_debug("Set context mapping for %02x:%02x.%d\n",
1455 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001456
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001457 BUG_ON(!domain->pgd);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001458 BUG_ON(translation != CONTEXT_TT_PASS_THROUGH &&
1459 translation != CONTEXT_TT_MULTI_LEVEL);
Weidong Han5331fe62008-12-08 23:00:00 +08001460
David Woodhouse276dbf992009-04-04 01:45:37 +01001461 iommu = device_to_iommu(segment, bus, devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001462 if (!iommu)
1463 return -ENODEV;
1464
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001465 context = device_to_context_entry(iommu, bus, devfn);
1466 if (!context)
1467 return -ENOMEM;
1468 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001469 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001470 spin_unlock_irqrestore(&iommu->lock, flags);
1471 return 0;
1472 }
1473
Weidong Hanea6606b2008-12-08 23:08:15 +08001474 id = domain->id;
1475 pgd = domain->pgd;
1476
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001477 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1478 domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001479 int found = 0;
1480
1481 /* find an available domain id for this device in iommu */
1482 ndomains = cap_ndoms(iommu->cap);
1483 num = find_first_bit(iommu->domain_ids, ndomains);
1484 for (; num < ndomains; ) {
1485 if (iommu->domains[num] == domain) {
1486 id = num;
1487 found = 1;
1488 break;
1489 }
1490 num = find_next_bit(iommu->domain_ids,
1491 cap_ndoms(iommu->cap), num+1);
1492 }
1493
1494 if (found == 0) {
1495 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1496 if (num >= ndomains) {
1497 spin_unlock_irqrestore(&iommu->lock, flags);
1498 printk(KERN_ERR "IOMMU: no free domain ids\n");
1499 return -EFAULT;
1500 }
1501
1502 set_bit(num, iommu->domain_ids);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001503 set_bit(iommu->seq_id, &domain->iommu_bmp);
Weidong Hanea6606b2008-12-08 23:08:15 +08001504 iommu->domains[num] = domain;
1505 id = num;
1506 }
1507
1508 /* Skip top levels of page tables for
1509 * iommu which has less agaw than default.
1510 */
1511 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1512 pgd = phys_to_virt(dma_pte_addr(pgd));
1513 if (!dma_pte_present(pgd)) {
1514 spin_unlock_irqrestore(&iommu->lock, flags);
1515 return -ENOMEM;
1516 }
1517 }
1518 }
1519
1520 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001521
Yu Zhao93a23a72009-05-18 13:51:37 +08001522 if (translation != CONTEXT_TT_PASS_THROUGH) {
1523 info = iommu_support_dev_iotlb(domain, segment, bus, devfn);
1524 translation = info ? CONTEXT_TT_DEV_IOTLB :
1525 CONTEXT_TT_MULTI_LEVEL;
1526 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001527 /*
1528 * In pass through mode, AW must be programmed to indicate the largest
1529 * AGAW value supported by hardware. And ASR is ignored by hardware.
1530 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001531 if (unlikely(translation == CONTEXT_TT_PASS_THROUGH))
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001532 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001533 else {
1534 context_set_address_root(context, virt_to_phys(pgd));
1535 context_set_address_width(context, iommu->agaw);
1536 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001537
1538 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001539 context_set_fault_enable(context);
1540 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001541 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001542
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001543 /*
1544 * It's a non-present to present mapping. If hardware doesn't cache
1545 * non-present entry we only need to flush the write-buffer. If the
1546 * _does_ cache non-present entries, then it does so in the special
1547 * domain #0, which we have to flush:
1548 */
1549 if (cap_caching_mode(iommu->cap)) {
1550 iommu->flush.flush_context(iommu, 0,
1551 (((u16)bus) << 8) | devfn,
1552 DMA_CCMD_MASK_NOBIT,
1553 DMA_CCMD_DEVICE_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001554 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001555 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001556 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001557 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001558 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001559 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001560
1561 spin_lock_irqsave(&domain->iommu_lock, flags);
1562 if (!test_and_set_bit(iommu->seq_id, &domain->iommu_bmp)) {
1563 domain->iommu_count++;
Sheng Yang58c610b2009-03-18 15:33:05 +08001564 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08001565 }
1566 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001567 return 0;
1568}
1569
1570static int
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001571domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev,
1572 int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001573{
1574 int ret;
1575 struct pci_dev *tmp, *parent;
1576
David Woodhouse276dbf992009-04-04 01:45:37 +01001577 ret = domain_context_mapping_one(domain, pci_domain_nr(pdev->bus),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001578 pdev->bus->number, pdev->devfn,
1579 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001580 if (ret)
1581 return ret;
1582
1583 /* dependent device mapping */
1584 tmp = pci_find_upstream_pcie_bridge(pdev);
1585 if (!tmp)
1586 return 0;
1587 /* Secondary interface's bus number and devfn 0 */
1588 parent = pdev->bus->self;
1589 while (parent != tmp) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001590 ret = domain_context_mapping_one(domain,
1591 pci_domain_nr(parent->bus),
1592 parent->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001593 parent->devfn, translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001594 if (ret)
1595 return ret;
1596 parent = parent->bus->self;
1597 }
1598 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
1599 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001600 pci_domain_nr(tmp->subordinate),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001601 tmp->subordinate->number, 0,
1602 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001603 else /* this is a legacy PCI bridge */
1604 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001605 pci_domain_nr(tmp->bus),
1606 tmp->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001607 tmp->devfn,
1608 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001609}
1610
Weidong Han5331fe62008-12-08 23:00:00 +08001611static int domain_context_mapped(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001612{
1613 int ret;
1614 struct pci_dev *tmp, *parent;
Weidong Han5331fe62008-12-08 23:00:00 +08001615 struct intel_iommu *iommu;
1616
David Woodhouse276dbf992009-04-04 01:45:37 +01001617 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
1618 pdev->devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001619 if (!iommu)
1620 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001621
David Woodhouse276dbf992009-04-04 01:45:37 +01001622 ret = device_context_mapped(iommu, pdev->bus->number, pdev->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001623 if (!ret)
1624 return ret;
1625 /* dependent device mapping */
1626 tmp = pci_find_upstream_pcie_bridge(pdev);
1627 if (!tmp)
1628 return ret;
1629 /* Secondary interface's bus number and devfn 0 */
1630 parent = pdev->bus->self;
1631 while (parent != tmp) {
Weidong Han8c11e792008-12-08 15:29:22 +08001632 ret = device_context_mapped(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01001633 parent->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001634 if (!ret)
1635 return ret;
1636 parent = parent->bus->self;
1637 }
1638 if (tmp->is_pcie)
David Woodhouse276dbf992009-04-04 01:45:37 +01001639 return device_context_mapped(iommu, tmp->subordinate->number,
1640 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001641 else
David Woodhouse276dbf992009-04-04 01:45:37 +01001642 return device_context_mapped(iommu, tmp->bus->number,
1643 tmp->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001644}
1645
David Woodhouse61df7442009-06-28 11:55:58 +01001646static int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1647 unsigned long phys_pfn, unsigned long nr_pages,
1648 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001649{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001650 struct dma_pte *pte;
David Woodhouse1c5a46e2009-06-28 10:53:37 +01001651 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001652
David Woodhouse61df7442009-06-28 11:55:58 +01001653 BUG_ON(addr_width < BITS_PER_LONG && (iov_pfn + nr_pages - 1) >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001654
1655 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
1656 return -EINVAL;
David Woodhouse1c5a46e2009-06-28 10:53:37 +01001657
David Woodhouse61df7442009-06-28 11:55:58 +01001658 while (nr_pages--) {
1659 pte = pfn_to_dma_pte(domain, iov_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001660 if (!pte)
1661 return -ENOMEM;
1662 /* We don't need lock here, nobody else
1663 * touches the iova range
1664 */
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001665 BUG_ON(dma_pte_addr(pte));
David Woodhouse61df7442009-06-28 11:55:58 +01001666 dma_set_pte_pfn(pte, phys_pfn);
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001667 dma_set_pte_prot(pte, prot);
Sheng Yang9cf066972009-03-18 15:33:07 +08001668 if (prot & DMA_PTE_SNP)
1669 dma_set_pte_snp(pte);
Weidong Han5331fe62008-12-08 23:00:00 +08001670 domain_flush_cache(domain, pte, sizeof(*pte));
David Woodhouse61df7442009-06-28 11:55:58 +01001671 iov_pfn++;
1672 phys_pfn++;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001673 }
1674 return 0;
1675}
1676
Weidong Hanc7151a82008-12-08 22:51:37 +08001677static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001678{
Weidong Hanc7151a82008-12-08 22:51:37 +08001679 if (!iommu)
1680 return;
Weidong Han8c11e792008-12-08 15:29:22 +08001681
1682 clear_context_table(iommu, bus, devfn);
1683 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001684 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001685 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001686}
1687
1688static void domain_remove_dev_info(struct dmar_domain *domain)
1689{
1690 struct device_domain_info *info;
1691 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08001692 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001693
1694 spin_lock_irqsave(&device_domain_lock, flags);
1695 while (!list_empty(&domain->devices)) {
1696 info = list_entry(domain->devices.next,
1697 struct device_domain_info, link);
1698 list_del(&info->link);
1699 list_del(&info->global);
1700 if (info->dev)
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001701 info->dev->dev.archdata.iommu = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001702 spin_unlock_irqrestore(&device_domain_lock, flags);
1703
Yu Zhao93a23a72009-05-18 13:51:37 +08001704 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01001705 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08001706 iommu_detach_dev(iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001707 free_devinfo_mem(info);
1708
1709 spin_lock_irqsave(&device_domain_lock, flags);
1710 }
1711 spin_unlock_irqrestore(&device_domain_lock, flags);
1712}
1713
1714/*
1715 * find_domain
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001716 * Note: we use struct pci_dev->dev.archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001717 */
Kay, Allen M38717942008-09-09 18:37:29 +03001718static struct dmar_domain *
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001719find_domain(struct pci_dev *pdev)
1720{
1721 struct device_domain_info *info;
1722
1723 /* No lock here, assumes no domain exit in normal case */
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001724 info = pdev->dev.archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001725 if (info)
1726 return info->domain;
1727 return NULL;
1728}
1729
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001730/* domain is initialized */
1731static struct dmar_domain *get_domain_for_dev(struct pci_dev *pdev, int gaw)
1732{
1733 struct dmar_domain *domain, *found = NULL;
1734 struct intel_iommu *iommu;
1735 struct dmar_drhd_unit *drhd;
1736 struct device_domain_info *info, *tmp;
1737 struct pci_dev *dev_tmp;
1738 unsigned long flags;
1739 int bus = 0, devfn = 0;
David Woodhouse276dbf992009-04-04 01:45:37 +01001740 int segment;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001741 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001742
1743 domain = find_domain(pdev);
1744 if (domain)
1745 return domain;
1746
David Woodhouse276dbf992009-04-04 01:45:37 +01001747 segment = pci_domain_nr(pdev->bus);
1748
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001749 dev_tmp = pci_find_upstream_pcie_bridge(pdev);
1750 if (dev_tmp) {
1751 if (dev_tmp->is_pcie) {
1752 bus = dev_tmp->subordinate->number;
1753 devfn = 0;
1754 } else {
1755 bus = dev_tmp->bus->number;
1756 devfn = dev_tmp->devfn;
1757 }
1758 spin_lock_irqsave(&device_domain_lock, flags);
1759 list_for_each_entry(info, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001760 if (info->segment == segment &&
1761 info->bus == bus && info->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001762 found = info->domain;
1763 break;
1764 }
1765 }
1766 spin_unlock_irqrestore(&device_domain_lock, flags);
1767 /* pcie-pci bridge already has a domain, uses it */
1768 if (found) {
1769 domain = found;
1770 goto found_domain;
1771 }
1772 }
1773
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001774 domain = alloc_domain();
1775 if (!domain)
1776 goto error;
1777
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001778 /* Allocate new domain for the device */
1779 drhd = dmar_find_matched_drhd_unit(pdev);
1780 if (!drhd) {
1781 printk(KERN_ERR "IOMMU: can't find DMAR for device %s\n",
1782 pci_name(pdev));
1783 return NULL;
1784 }
1785 iommu = drhd->iommu;
1786
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001787 ret = iommu_attach_domain(domain, iommu);
1788 if (ret) {
1789 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001790 goto error;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001791 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001792
1793 if (domain_init(domain, gaw)) {
1794 domain_exit(domain);
1795 goto error;
1796 }
1797
1798 /* register pcie-to-pci device */
1799 if (dev_tmp) {
1800 info = alloc_devinfo_mem();
1801 if (!info) {
1802 domain_exit(domain);
1803 goto error;
1804 }
David Woodhouse276dbf992009-04-04 01:45:37 +01001805 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001806 info->bus = bus;
1807 info->devfn = devfn;
1808 info->dev = NULL;
1809 info->domain = domain;
1810 /* This domain is shared by devices under p2p bridge */
Weidong Han3b5410e2008-12-08 09:17:15 +08001811 domain->flags |= DOMAIN_FLAG_P2P_MULTIPLE_DEVICES;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001812
1813 /* pcie-to-pci bridge already has a domain, uses it */
1814 found = NULL;
1815 spin_lock_irqsave(&device_domain_lock, flags);
1816 list_for_each_entry(tmp, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001817 if (tmp->segment == segment &&
1818 tmp->bus == bus && tmp->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001819 found = tmp->domain;
1820 break;
1821 }
1822 }
1823 if (found) {
1824 free_devinfo_mem(info);
1825 domain_exit(domain);
1826 domain = found;
1827 } else {
1828 list_add(&info->link, &domain->devices);
1829 list_add(&info->global, &device_domain_list);
1830 }
1831 spin_unlock_irqrestore(&device_domain_lock, flags);
1832 }
1833
1834found_domain:
1835 info = alloc_devinfo_mem();
1836 if (!info)
1837 goto error;
David Woodhouse276dbf992009-04-04 01:45:37 +01001838 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001839 info->bus = pdev->bus->number;
1840 info->devfn = pdev->devfn;
1841 info->dev = pdev;
1842 info->domain = domain;
1843 spin_lock_irqsave(&device_domain_lock, flags);
1844 /* somebody is fast */
1845 found = find_domain(pdev);
1846 if (found != NULL) {
1847 spin_unlock_irqrestore(&device_domain_lock, flags);
1848 if (found != domain) {
1849 domain_exit(domain);
1850 domain = found;
1851 }
1852 free_devinfo_mem(info);
1853 return domain;
1854 }
1855 list_add(&info->link, &domain->devices);
1856 list_add(&info->global, &device_domain_list);
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001857 pdev->dev.archdata.iommu = info;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001858 spin_unlock_irqrestore(&device_domain_lock, flags);
1859 return domain;
1860error:
1861 /* recheck it here, maybe others set it */
1862 return find_domain(pdev);
1863}
1864
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001865static int iommu_identity_mapping;
1866
David Woodhouseb2132032009-06-26 18:50:28 +01001867static int iommu_domain_identity_map(struct dmar_domain *domain,
1868 unsigned long long start,
1869 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001870{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001871 unsigned long size;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001872 unsigned long long base;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001873
1874 /* The address might not be aligned */
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001875 base = start & PAGE_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001876 size = end - base;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001877 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001878 if (!reserve_iova(&domain->iovad, IOVA_PFN(base),
1879 IOVA_PFN(base + size) - 1)) {
1880 printk(KERN_ERR "IOMMU: reserve iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01001881 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001882 }
1883
David Woodhouseb2132032009-06-26 18:50:28 +01001884 pr_debug("Mapping reserved region %lx@%llx for domain %d\n",
1885 size, base, domain->id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001886 /*
1887 * RMRR range might have overlap with physical memory range,
1888 * clear it first
1889 */
David Woodhouse595badf2009-06-27 22:09:11 +01001890 dma_pte_clear_range(domain, base >> VTD_PAGE_SHIFT,
1891 (base + size - 1) >> VTD_PAGE_SHIFT);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001892
David Woodhouse61df7442009-06-28 11:55:58 +01001893 return domain_pfn_mapping(domain, base >> VTD_PAGE_SHIFT,
1894 base >> VTD_PAGE_SHIFT,
1895 size >> VTD_PAGE_SHIFT,
1896 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01001897}
1898
1899static int iommu_prepare_identity_map(struct pci_dev *pdev,
1900 unsigned long long start,
1901 unsigned long long end)
1902{
1903 struct dmar_domain *domain;
1904 int ret;
1905
1906 printk(KERN_INFO
1907 "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
1908 pci_name(pdev), start, end);
1909
David Woodhousec7ab48d2009-06-26 19:10:36 +01001910 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01001911 if (!domain)
1912 return -ENOMEM;
1913
1914 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001915 if (ret)
1916 goto error;
1917
1918 /* context entry init */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001919 ret = domain_context_mapping(domain, pdev, CONTEXT_TT_MULTI_LEVEL);
David Woodhouseb2132032009-06-26 18:50:28 +01001920 if (ret)
1921 goto error;
1922
1923 return 0;
1924
1925 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001926 domain_exit(domain);
1927 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001928}
1929
1930static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
1931 struct pci_dev *pdev)
1932{
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001933 if (pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001934 return 0;
1935 return iommu_prepare_identity_map(pdev, rmrr->base_address,
1936 rmrr->end_address + 1);
1937}
1938
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001939#ifdef CONFIG_DMAR_FLOPPY_WA
1940static inline void iommu_prepare_isa(void)
1941{
1942 struct pci_dev *pdev;
1943 int ret;
1944
1945 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
1946 if (!pdev)
1947 return;
1948
David Woodhousec7ab48d2009-06-26 19:10:36 +01001949 printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001950 ret = iommu_prepare_identity_map(pdev, 0, 16*1024*1024);
1951
1952 if (ret)
David Woodhousec7ab48d2009-06-26 19:10:36 +01001953 printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; "
1954 "floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001955
1956}
1957#else
1958static inline void iommu_prepare_isa(void)
1959{
1960 return;
1961}
1962#endif /* !CONFIG_DMAR_FLPY_WA */
1963
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001964/* Initialize each context entry as pass through.*/
1965static int __init init_context_pass_through(void)
1966{
1967 struct pci_dev *pdev = NULL;
1968 struct dmar_domain *domain;
1969 int ret;
1970
1971 for_each_pci_dev(pdev) {
1972 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
1973 ret = domain_context_mapping(domain, pdev,
1974 CONTEXT_TT_PASS_THROUGH);
1975 if (ret)
1976 return ret;
1977 }
1978 return 0;
1979}
1980
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001981static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01001982
1983static int __init si_domain_work_fn(unsigned long start_pfn,
1984 unsigned long end_pfn, void *datax)
1985{
1986 int *ret = datax;
1987
1988 *ret = iommu_domain_identity_map(si_domain,
1989 (uint64_t)start_pfn << PAGE_SHIFT,
1990 (uint64_t)end_pfn << PAGE_SHIFT);
1991 return *ret;
1992
1993}
1994
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001995static int si_domain_init(void)
1996{
1997 struct dmar_drhd_unit *drhd;
1998 struct intel_iommu *iommu;
David Woodhousec7ab48d2009-06-26 19:10:36 +01001999 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002000
2001 si_domain = alloc_domain();
2002 if (!si_domain)
2003 return -EFAULT;
2004
David Woodhousec7ab48d2009-06-26 19:10:36 +01002005 pr_debug("Identity mapping domain is domain %d\n", si_domain->id);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002006
2007 for_each_active_iommu(iommu, drhd) {
2008 ret = iommu_attach_domain(si_domain, iommu);
2009 if (ret) {
2010 domain_exit(si_domain);
2011 return -EFAULT;
2012 }
2013 }
2014
2015 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2016 domain_exit(si_domain);
2017 return -EFAULT;
2018 }
2019
2020 si_domain->flags = DOMAIN_FLAG_STATIC_IDENTITY;
2021
David Woodhousec7ab48d2009-06-26 19:10:36 +01002022 for_each_online_node(nid) {
2023 work_with_active_regions(nid, si_domain_work_fn, &ret);
2024 if (ret)
2025 return ret;
2026 }
2027
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002028 return 0;
2029}
2030
2031static void domain_remove_one_dev_info(struct dmar_domain *domain,
2032 struct pci_dev *pdev);
2033static int identity_mapping(struct pci_dev *pdev)
2034{
2035 struct device_domain_info *info;
2036
2037 if (likely(!iommu_identity_mapping))
2038 return 0;
2039
2040
2041 list_for_each_entry(info, &si_domain->devices, link)
2042 if (info->dev == pdev)
2043 return 1;
2044 return 0;
2045}
2046
2047static int domain_add_dev_info(struct dmar_domain *domain,
2048 struct pci_dev *pdev)
2049{
2050 struct device_domain_info *info;
2051 unsigned long flags;
2052
2053 info = alloc_devinfo_mem();
2054 if (!info)
2055 return -ENOMEM;
2056
2057 info->segment = pci_domain_nr(pdev->bus);
2058 info->bus = pdev->bus->number;
2059 info->devfn = pdev->devfn;
2060 info->dev = pdev;
2061 info->domain = domain;
2062
2063 spin_lock_irqsave(&device_domain_lock, flags);
2064 list_add(&info->link, &domain->devices);
2065 list_add(&info->global, &device_domain_list);
2066 pdev->dev.archdata.iommu = info;
2067 spin_unlock_irqrestore(&device_domain_lock, flags);
2068
2069 return 0;
2070}
2071
2072static int iommu_prepare_static_identity_mapping(void)
2073{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002074 struct pci_dev *pdev = NULL;
2075 int ret;
2076
2077 ret = si_domain_init();
2078 if (ret)
2079 return -EFAULT;
2080
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002081 for_each_pci_dev(pdev) {
David Woodhousec7ab48d2009-06-26 19:10:36 +01002082 printk(KERN_INFO "IOMMU: identity mapping for device %s\n",
2083 pci_name(pdev));
2084
2085 ret = domain_context_mapping(si_domain, pdev,
2086 CONTEXT_TT_MULTI_LEVEL);
2087 if (ret)
2088 return ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002089 ret = domain_add_dev_info(si_domain, pdev);
2090 if (ret)
2091 return ret;
2092 }
2093
2094 return 0;
2095}
2096
2097int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002098{
2099 struct dmar_drhd_unit *drhd;
2100 struct dmar_rmrr_unit *rmrr;
2101 struct pci_dev *pdev;
2102 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002103 int i, ret;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002104 int pass_through = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002105
2106 /*
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002107 * In case pass through can not be enabled, iommu tries to use identity
2108 * mapping.
2109 */
2110 if (iommu_pass_through)
2111 iommu_identity_mapping = 1;
2112
2113 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002114 * for each drhd
2115 * allocate root
2116 * initialize and program root entry to not present
2117 * endfor
2118 */
2119 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002120 g_num_of_iommus++;
2121 /*
2122 * lock not needed as this is only incremented in the single
2123 * threaded kernel __init code path all other access are read
2124 * only
2125 */
2126 }
2127
Weidong Hand9630fe2008-12-08 11:06:32 +08002128 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
2129 GFP_KERNEL);
2130 if (!g_iommus) {
2131 printk(KERN_ERR "Allocating global iommu array failed\n");
2132 ret = -ENOMEM;
2133 goto error;
2134 }
2135
mark gross80b20dd2008-04-18 13:53:58 -07002136 deferred_flush = kzalloc(g_num_of_iommus *
2137 sizeof(struct deferred_flush_tables), GFP_KERNEL);
2138 if (!deferred_flush) {
Weidong Hand9630fe2008-12-08 11:06:32 +08002139 kfree(g_iommus);
mark gross5e0d2a62008-03-04 15:22:08 -08002140 ret = -ENOMEM;
2141 goto error;
2142 }
2143
mark gross5e0d2a62008-03-04 15:22:08 -08002144 for_each_drhd_unit(drhd) {
2145 if (drhd->ignored)
2146 continue;
Suresh Siddha1886e8a2008-07-10 11:16:37 -07002147
2148 iommu = drhd->iommu;
Weidong Hand9630fe2008-12-08 11:06:32 +08002149 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002150
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002151 ret = iommu_init_domains(iommu);
2152 if (ret)
2153 goto error;
2154
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002155 /*
2156 * TBD:
2157 * we could share the same root & context tables
2158 * amoung all IOMMU's. Need to Split it later.
2159 */
2160 ret = iommu_alloc_root_entry(iommu);
2161 if (ret) {
2162 printk(KERN_ERR "IOMMU: allocate root entry failed\n");
2163 goto error;
2164 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002165 if (!ecap_pass_through(iommu->ecap))
2166 pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002167 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002168 if (iommu_pass_through)
2169 if (!pass_through) {
2170 printk(KERN_INFO
2171 "Pass Through is not supported by hardware.\n");
2172 iommu_pass_through = 0;
2173 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002174
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002175 /*
2176 * Start from the sane iommu hardware state.
2177 */
Youquan Songa77b67d2008-10-16 16:31:56 -07002178 for_each_drhd_unit(drhd) {
2179 if (drhd->ignored)
2180 continue;
2181
2182 iommu = drhd->iommu;
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002183
2184 /*
2185 * If the queued invalidation is already initialized by us
2186 * (for example, while enabling interrupt-remapping) then
2187 * we got the things already rolling from a sane state.
2188 */
2189 if (iommu->qi)
2190 continue;
2191
2192 /*
2193 * Clear any previous faults.
2194 */
2195 dmar_fault(-1, iommu);
2196 /*
2197 * Disable queued invalidation if supported and already enabled
2198 * before OS handover.
2199 */
2200 dmar_disable_qi(iommu);
2201 }
2202
2203 for_each_drhd_unit(drhd) {
2204 if (drhd->ignored)
2205 continue;
2206
2207 iommu = drhd->iommu;
2208
Youquan Songa77b67d2008-10-16 16:31:56 -07002209 if (dmar_enable_qi(iommu)) {
2210 /*
2211 * Queued Invalidate not enabled, use Register Based
2212 * Invalidate
2213 */
2214 iommu->flush.flush_context = __iommu_flush_context;
2215 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
2216 printk(KERN_INFO "IOMMU 0x%Lx: using Register based "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002217 "invalidation\n",
2218 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002219 } else {
2220 iommu->flush.flush_context = qi_flush_context;
2221 iommu->flush.flush_iotlb = qi_flush_iotlb;
2222 printk(KERN_INFO "IOMMU 0x%Lx: using Queued "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002223 "invalidation\n",
2224 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002225 }
2226 }
2227
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002228 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002229 * If pass through is set and enabled, context entries of all pci
2230 * devices are intialized by pass through translation type.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002231 */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002232 if (iommu_pass_through) {
2233 ret = init_context_pass_through();
2234 if (ret) {
2235 printk(KERN_ERR "IOMMU: Pass through init failed.\n");
2236 iommu_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002237 }
2238 }
2239
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002240 /*
2241 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002242 * identity mappings for rmrr, gfx, and isa and may fall back to static
2243 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002244 */
2245 if (!iommu_pass_through) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002246 if (iommu_identity_mapping)
2247 iommu_prepare_static_identity_mapping();
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002248 /*
2249 * For each rmrr
2250 * for each dev attached to rmrr
2251 * do
2252 * locate drhd for dev, alloc domain for dev
2253 * allocate free domain
2254 * allocate page table entries for rmrr
2255 * if context not allocated for bus
2256 * allocate and init context
2257 * set present in root table for this bus
2258 * init context with domain, translation etc
2259 * endfor
2260 * endfor
2261 */
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002262 printk(KERN_INFO "IOMMU: Setting RMRR:\n");
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002263 for_each_rmrr_units(rmrr) {
2264 for (i = 0; i < rmrr->devices_cnt; i++) {
2265 pdev = rmrr->devices[i];
2266 /*
2267 * some BIOS lists non-exist devices in DMAR
2268 * table.
2269 */
2270 if (!pdev)
2271 continue;
2272 ret = iommu_prepare_rmrr_dev(rmrr, pdev);
2273 if (ret)
2274 printk(KERN_ERR
2275 "IOMMU: mapping reserved region failed\n");
2276 }
2277 }
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07002278
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002279 iommu_prepare_isa();
2280 }
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002281
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002282 /*
2283 * for each drhd
2284 * enable fault log
2285 * global invalidate context cache
2286 * global invalidate iotlb
2287 * enable translation
2288 */
2289 for_each_drhd_unit(drhd) {
2290 if (drhd->ignored)
2291 continue;
2292 iommu = drhd->iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002293
2294 iommu_flush_write_buffer(iommu);
2295
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002296 ret = dmar_set_interrupt(iommu);
2297 if (ret)
2298 goto error;
2299
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002300 iommu_set_root_entry(iommu);
2301
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002302 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002303 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
mark grossf8bab732008-02-08 04:18:38 -08002304 iommu_disable_protect_mem_regions(iommu);
2305
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002306 ret = iommu_enable_translation(iommu);
2307 if (ret)
2308 goto error;
2309 }
2310
2311 return 0;
2312error:
2313 for_each_drhd_unit(drhd) {
2314 if (drhd->ignored)
2315 continue;
2316 iommu = drhd->iommu;
2317 free_iommu(iommu);
2318 }
Weidong Hand9630fe2008-12-08 11:06:32 +08002319 kfree(g_iommus);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002320 return ret;
2321}
2322
2323static inline u64 aligned_size(u64 host_addr, size_t size)
2324{
2325 u64 addr;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002326 addr = (host_addr & (~PAGE_MASK)) + size;
2327 return PAGE_ALIGN(addr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002328}
2329
2330struct iova *
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002331iommu_alloc_iova(struct dmar_domain *domain, size_t size, u64 end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002332{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002333 struct iova *piova;
2334
2335 /* Make sure it's in range */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002336 end = min_t(u64, DOMAIN_MAX_ADDR(domain->gaw), end);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002337 if (!size || (IOVA_START_ADDR + size > end))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002338 return NULL;
2339
2340 piova = alloc_iova(&domain->iovad,
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002341 size >> PAGE_SHIFT, IOVA_PFN(end), 1);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002342 return piova;
2343}
2344
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002345static struct iova *
2346__intel_alloc_iova(struct device *dev, struct dmar_domain *domain,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002347 size_t size, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002348{
2349 struct pci_dev *pdev = to_pci_dev(dev);
2350 struct iova *iova = NULL;
2351
Yang Hongyang284901a2009-04-06 19:01:15 -07002352 if (dma_mask <= DMA_BIT_MASK(32) || dmar_forcedac)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002353 iova = iommu_alloc_iova(domain, size, dma_mask);
2354 else {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002355 /*
2356 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07002357 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08002358 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002359 */
Yang Hongyang284901a2009-04-06 19:01:15 -07002360 iova = iommu_alloc_iova(domain, size, DMA_BIT_MASK(32));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002361 if (!iova)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002362 iova = iommu_alloc_iova(domain, size, dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002363 }
2364
2365 if (!iova) {
2366 printk(KERN_ERR"Allocating iova for %s failed", pci_name(pdev));
2367 return NULL;
2368 }
2369
2370 return iova;
2371}
2372
2373static struct dmar_domain *
2374get_valid_domain_for_dev(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002375{
2376 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002377 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002378
2379 domain = get_domain_for_dev(pdev,
2380 DEFAULT_DOMAIN_ADDRESS_WIDTH);
2381 if (!domain) {
2382 printk(KERN_ERR
2383 "Allocating domain for %s failed", pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002384 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002385 }
2386
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002387 /* make sure context mapping is ok */
Weidong Han5331fe62008-12-08 23:00:00 +08002388 if (unlikely(!domain_context_mapped(pdev))) {
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002389 ret = domain_context_mapping(domain, pdev,
2390 CONTEXT_TT_MULTI_LEVEL);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002391 if (ret) {
2392 printk(KERN_ERR
2393 "Domain context map for %s failed",
2394 pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002395 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002396 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002397 }
2398
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002399 return domain;
2400}
2401
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002402static int iommu_dummy(struct pci_dev *pdev)
2403{
2404 return pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
2405}
2406
2407/* Check if the pdev needs to go through non-identity map and unmap process.*/
2408static int iommu_no_mapping(struct pci_dev *pdev)
2409{
2410 int found;
2411
2412 if (!iommu_identity_mapping)
2413 return iommu_dummy(pdev);
2414
2415 found = identity_mapping(pdev);
2416 if (found) {
2417 if (pdev->dma_mask > DMA_BIT_MASK(32))
2418 return 1;
2419 else {
2420 /*
2421 * 32 bit DMA is removed from si_domain and fall back
2422 * to non-identity mapping.
2423 */
2424 domain_remove_one_dev_info(si_domain, pdev);
2425 printk(KERN_INFO "32bit %s uses non-identity mapping\n",
2426 pci_name(pdev));
2427 return 0;
2428 }
2429 } else {
2430 /*
2431 * In case of a detached 64 bit DMA device from vm, the device
2432 * is put into si_domain for identity mapping.
2433 */
2434 if (pdev->dma_mask > DMA_BIT_MASK(32)) {
2435 int ret;
2436 ret = domain_add_dev_info(si_domain, pdev);
2437 if (!ret) {
2438 printk(KERN_INFO "64bit %s uses identity mapping\n",
2439 pci_name(pdev));
2440 return 1;
2441 }
2442 }
2443 }
2444
2445 return iommu_dummy(pdev);
2446}
2447
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002448static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
2449 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002450{
2451 struct pci_dev *pdev = to_pci_dev(hwdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002452 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002453 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002454 struct iova *iova;
2455 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002456 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08002457 struct intel_iommu *iommu;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002458
2459 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002460
2461 if (iommu_no_mapping(pdev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002462 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002463
2464 domain = get_valid_domain_for_dev(pdev);
2465 if (!domain)
2466 return 0;
2467
Weidong Han8c11e792008-12-08 15:29:22 +08002468 iommu = domain_get_iommu(domain);
David Woodhouse0ab36de2009-06-28 14:01:43 +01002469 size = aligned_size(paddr, size) >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002470
David Woodhouse0ab36de2009-06-28 14:01:43 +01002471 iova = __intel_alloc_iova(hwdev, domain, size << VTD_PAGE_SHIFT, pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002472 if (!iova)
2473 goto error;
2474
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002475 /*
2476 * Check if DMAR supports zero-length reads on write only
2477 * mappings..
2478 */
2479 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002480 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002481 prot |= DMA_PTE_READ;
2482 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2483 prot |= DMA_PTE_WRITE;
2484 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002485 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002486 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002487 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002488 * is not a big problem
2489 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01002490 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
2491 paddr >> VTD_PAGE_SHIFT, size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002492 if (ret)
2493 goto error;
2494
David Woodhouse0ab36de2009-06-28 14:01:43 +01002495 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
2496
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002497 /* it's a non-present to present mapping. Only flush if caching mode */
2498 if (cap_caching_mode(iommu->cap))
David Woodhouse0ab36de2009-06-28 14:01:43 +01002499 iommu_flush_iotlb_psi(iommu, 0, start_paddr, size);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002500 else
Weidong Han8c11e792008-12-08 15:29:22 +08002501 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002502
David Woodhouse0ab36de2009-06-28 14:01:43 +01002503 return start_paddr + (paddr & (~PAGE_MASK));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002504
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002505error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002506 if (iova)
2507 __free_iova(&domain->iovad, iova);
David Woodhouse4cf2e752009-02-11 17:23:43 +00002508 printk(KERN_ERR"Device %s request: %zx@%llx dir %d --- failed\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002509 pci_name(pdev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002510 return 0;
2511}
2512
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002513static dma_addr_t intel_map_page(struct device *dev, struct page *page,
2514 unsigned long offset, size_t size,
2515 enum dma_data_direction dir,
2516 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002517{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002518 return __intel_map_single(dev, page_to_phys(page) + offset, size,
2519 dir, to_pci_dev(dev)->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002520}
2521
mark gross5e0d2a62008-03-04 15:22:08 -08002522static void flush_unmaps(void)
2523{
mark gross80b20dd2008-04-18 13:53:58 -07002524 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08002525
mark gross5e0d2a62008-03-04 15:22:08 -08002526 timer_on = 0;
2527
2528 /* just flush them all */
2529 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08002530 struct intel_iommu *iommu = g_iommus[i];
2531 if (!iommu)
2532 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002533
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002534 if (!deferred_flush[i].next)
2535 continue;
2536
2537 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08002538 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002539 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08002540 unsigned long mask;
2541 struct iova *iova = deferred_flush[i].iova[j];
2542
2543 mask = (iova->pfn_hi - iova->pfn_lo + 1) << PAGE_SHIFT;
2544 mask = ilog2(mask >> VTD_PAGE_SHIFT);
2545 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
2546 iova->pfn_lo << PAGE_SHIFT, mask);
2547 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
mark gross80b20dd2008-04-18 13:53:58 -07002548 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002549 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002550 }
2551
mark gross5e0d2a62008-03-04 15:22:08 -08002552 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002553}
2554
2555static void flush_unmaps_timeout(unsigned long data)
2556{
mark gross80b20dd2008-04-18 13:53:58 -07002557 unsigned long flags;
2558
2559 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002560 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07002561 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002562}
2563
2564static void add_unmap(struct dmar_domain *dom, struct iova *iova)
2565{
2566 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07002567 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08002568 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08002569
2570 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07002571 if (list_size == HIGH_WATER_MARK)
2572 flush_unmaps();
2573
Weidong Han8c11e792008-12-08 15:29:22 +08002574 iommu = domain_get_iommu(dom);
2575 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002576
mark gross80b20dd2008-04-18 13:53:58 -07002577 next = deferred_flush[iommu_id].next;
2578 deferred_flush[iommu_id].domain[next] = dom;
2579 deferred_flush[iommu_id].iova[next] = iova;
2580 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08002581
2582 if (!timer_on) {
2583 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
2584 timer_on = 1;
2585 }
2586 list_size++;
2587 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
2588}
2589
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002590static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
2591 size_t size, enum dma_data_direction dir,
2592 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002593{
2594 struct pci_dev *pdev = to_pci_dev(dev);
2595 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002596 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002597 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002598 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002599
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002600 if (iommu_no_mapping(pdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002601 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002602
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002603 domain = find_domain(pdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002604 BUG_ON(!domain);
2605
Weidong Han8c11e792008-12-08 15:29:22 +08002606 iommu = domain_get_iommu(domain);
2607
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002608 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
2609 if (!iova)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002610 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002611
David Woodhoused794dc92009-06-28 00:27:49 +01002612 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2613 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002614
David Woodhoused794dc92009-06-28 00:27:49 +01002615 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
2616 pci_name(pdev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002617
2618 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002619 dma_pte_clear_range(domain, start_pfn, last_pfn);
2620
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002621 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01002622 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2623
mark gross5e0d2a62008-03-04 15:22:08 -08002624 if (intel_iommu_strict) {
David Woodhoused794dc92009-06-28 00:27:49 +01002625 iommu_flush_iotlb_psi(iommu, domain->id,
2626 start_pfn << VTD_PAGE_SHIFT,
2627 last_pfn - start_pfn + 1);
mark gross5e0d2a62008-03-04 15:22:08 -08002628 /* free iova */
2629 __free_iova(&domain->iovad, iova);
2630 } else {
2631 add_unmap(domain, iova);
2632 /*
2633 * queue up the release of the unmap to save the 1/6th of the
2634 * cpu used up by the iotlb flush operation...
2635 */
mark gross5e0d2a62008-03-04 15:22:08 -08002636 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002637}
2638
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002639static void intel_unmap_single(struct device *dev, dma_addr_t dev_addr, size_t size,
2640 int dir)
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002641{
2642 intel_unmap_page(dev, dev_addr, size, dir, NULL);
2643}
2644
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002645static void *intel_alloc_coherent(struct device *hwdev, size_t size,
2646 dma_addr_t *dma_handle, gfp_t flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002647{
2648 void *vaddr;
2649 int order;
2650
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002651 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002652 order = get_order(size);
2653 flags &= ~(GFP_DMA | GFP_DMA32);
2654
2655 vaddr = (void *)__get_free_pages(flags, order);
2656 if (!vaddr)
2657 return NULL;
2658 memset(vaddr, 0, size);
2659
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002660 *dma_handle = __intel_map_single(hwdev, virt_to_bus(vaddr), size,
2661 DMA_BIDIRECTIONAL,
2662 hwdev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002663 if (*dma_handle)
2664 return vaddr;
2665 free_pages((unsigned long)vaddr, order);
2666 return NULL;
2667}
2668
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002669static void intel_free_coherent(struct device *hwdev, size_t size, void *vaddr,
2670 dma_addr_t dma_handle)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002671{
2672 int order;
2673
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002674 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002675 order = get_order(size);
2676
2677 intel_unmap_single(hwdev, dma_handle, size, DMA_BIDIRECTIONAL);
2678 free_pages((unsigned long)vaddr, order);
2679}
2680
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002681static void intel_unmap_sg(struct device *hwdev, struct scatterlist *sglist,
2682 int nelems, enum dma_data_direction dir,
2683 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002684{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002685 struct pci_dev *pdev = to_pci_dev(hwdev);
2686 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002687 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002688 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002689 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002690
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002691 if (iommu_no_mapping(pdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002692 return;
2693
2694 domain = find_domain(pdev);
Weidong Han8c11e792008-12-08 15:29:22 +08002695 BUG_ON(!domain);
2696
2697 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002698
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002699 iova = find_iova(&domain->iovad, IOVA_PFN(sglist[0].dma_address));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002700 if (!iova)
2701 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002702
David Woodhoused794dc92009-06-28 00:27:49 +01002703 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2704 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002705
2706 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002707 dma_pte_clear_range(domain, start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002708
David Woodhoused794dc92009-06-28 00:27:49 +01002709 /* free page tables */
2710 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2711
2712 iommu_flush_iotlb_psi(iommu, domain->id,
2713 start_pfn << VTD_PAGE_SHIFT,
2714 (last_pfn - start_pfn + 1));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002715
2716 /* free iova */
2717 __free_iova(&domain->iovad, iova);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002718}
2719
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002720static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002721 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002722{
2723 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002724 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002725
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002726 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02002727 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00002728 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002729 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002730 }
2731 return nelems;
2732}
2733
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002734static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int nelems,
2735 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002736{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002737 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002738 struct pci_dev *pdev = to_pci_dev(hwdev);
2739 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002740 size_t size = 0;
2741 int prot = 0;
David Woodhouseb536d242009-06-28 14:49:31 +01002742 size_t offset_pfn = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002743 struct iova *iova = NULL;
2744 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002745 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01002746 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08002747 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002748
2749 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002750 if (iommu_no_mapping(pdev))
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002751 return intel_nontranslate_map_sg(hwdev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002752
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002753 domain = get_valid_domain_for_dev(pdev);
2754 if (!domain)
2755 return 0;
2756
Weidong Han8c11e792008-12-08 15:29:22 +08002757 iommu = domain_get_iommu(domain);
2758
David Woodhouseb536d242009-06-28 14:49:31 +01002759 for_each_sg(sglist, sg, nelems, i)
2760 size += aligned_size(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002761
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002762 iova = __intel_alloc_iova(hwdev, domain, size, pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002763 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002764 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002765 return 0;
2766 }
2767
2768 /*
2769 * Check if DMAR supports zero-length reads on write only
2770 * mappings..
2771 */
2772 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002773 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002774 prot |= DMA_PTE_READ;
2775 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2776 prot |= DMA_PTE_WRITE;
2777
David Woodhouseb536d242009-06-28 14:49:31 +01002778 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
2779 offset_pfn = 0;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002780 for_each_sg(sglist, sg, nelems, i) {
David Woodhouseb536d242009-06-28 14:49:31 +01002781 int nr_pages = aligned_size(sg->offset, sg->length) >> VTD_PAGE_SHIFT;
2782 ret = domain_pfn_mapping(domain, start_vpfn + offset_pfn,
2783 page_to_dma_pfn(sg_page(sg)),
2784 nr_pages, prot);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002785 if (ret) {
2786 /* clear the page */
David Woodhouseb536d242009-06-28 14:49:31 +01002787 dma_pte_clear_range(domain, start_vpfn,
2788 start_vpfn + offset_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002789 /* free page tables */
David Woodhouseb536d242009-06-28 14:49:31 +01002790 dma_pte_free_pagetable(domain, start_vpfn,
2791 start_vpfn + offset_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002792 /* free iova */
2793 __free_iova(&domain->iovad, iova);
2794 return 0;
2795 }
David Woodhouseb536d242009-06-28 14:49:31 +01002796 sg->dma_address = ((dma_addr_t)(start_vpfn + offset_pfn)
2797 << VTD_PAGE_SHIFT) + sg->offset;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002798 sg->dma_length = sg->length;
David Woodhouseb536d242009-06-28 14:49:31 +01002799 offset_pfn += nr_pages;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002800 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002801
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002802 /* it's a non-present to present mapping. Only flush if caching mode */
2803 if (cap_caching_mode(iommu->cap))
David Woodhouseb536d242009-06-28 14:49:31 +01002804 iommu_flush_iotlb_psi(iommu, 0, start_vpfn << VTD_PAGE_SHIFT,
2805 offset_pfn);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002806 else
Weidong Han8c11e792008-12-08 15:29:22 +08002807 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002808
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002809 return nelems;
2810}
2811
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002812static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
2813{
2814 return !dma_addr;
2815}
2816
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002817struct dma_map_ops intel_dma_ops = {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002818 .alloc_coherent = intel_alloc_coherent,
2819 .free_coherent = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002820 .map_sg = intel_map_sg,
2821 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002822 .map_page = intel_map_page,
2823 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002824 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002825};
2826
2827static inline int iommu_domain_cache_init(void)
2828{
2829 int ret = 0;
2830
2831 iommu_domain_cache = kmem_cache_create("iommu_domain",
2832 sizeof(struct dmar_domain),
2833 0,
2834 SLAB_HWCACHE_ALIGN,
2835
2836 NULL);
2837 if (!iommu_domain_cache) {
2838 printk(KERN_ERR "Couldn't create iommu_domain cache\n");
2839 ret = -ENOMEM;
2840 }
2841
2842 return ret;
2843}
2844
2845static inline int iommu_devinfo_cache_init(void)
2846{
2847 int ret = 0;
2848
2849 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
2850 sizeof(struct device_domain_info),
2851 0,
2852 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002853 NULL);
2854 if (!iommu_devinfo_cache) {
2855 printk(KERN_ERR "Couldn't create devinfo cache\n");
2856 ret = -ENOMEM;
2857 }
2858
2859 return ret;
2860}
2861
2862static inline int iommu_iova_cache_init(void)
2863{
2864 int ret = 0;
2865
2866 iommu_iova_cache = kmem_cache_create("iommu_iova",
2867 sizeof(struct iova),
2868 0,
2869 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002870 NULL);
2871 if (!iommu_iova_cache) {
2872 printk(KERN_ERR "Couldn't create iova cache\n");
2873 ret = -ENOMEM;
2874 }
2875
2876 return ret;
2877}
2878
2879static int __init iommu_init_mempool(void)
2880{
2881 int ret;
2882 ret = iommu_iova_cache_init();
2883 if (ret)
2884 return ret;
2885
2886 ret = iommu_domain_cache_init();
2887 if (ret)
2888 goto domain_error;
2889
2890 ret = iommu_devinfo_cache_init();
2891 if (!ret)
2892 return ret;
2893
2894 kmem_cache_destroy(iommu_domain_cache);
2895domain_error:
2896 kmem_cache_destroy(iommu_iova_cache);
2897
2898 return -ENOMEM;
2899}
2900
2901static void __init iommu_exit_mempool(void)
2902{
2903 kmem_cache_destroy(iommu_devinfo_cache);
2904 kmem_cache_destroy(iommu_domain_cache);
2905 kmem_cache_destroy(iommu_iova_cache);
2906
2907}
2908
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002909static void __init init_no_remapping_devices(void)
2910{
2911 struct dmar_drhd_unit *drhd;
2912
2913 for_each_drhd_unit(drhd) {
2914 if (!drhd->include_all) {
2915 int i;
2916 for (i = 0; i < drhd->devices_cnt; i++)
2917 if (drhd->devices[i] != NULL)
2918 break;
2919 /* ignore DMAR unit if no pci devices exist */
2920 if (i == drhd->devices_cnt)
2921 drhd->ignored = 1;
2922 }
2923 }
2924
2925 if (dmar_map_gfx)
2926 return;
2927
2928 for_each_drhd_unit(drhd) {
2929 int i;
2930 if (drhd->ignored || drhd->include_all)
2931 continue;
2932
2933 for (i = 0; i < drhd->devices_cnt; i++)
2934 if (drhd->devices[i] &&
2935 !IS_GFX_DEVICE(drhd->devices[i]))
2936 break;
2937
2938 if (i < drhd->devices_cnt)
2939 continue;
2940
2941 /* bypass IOMMU if it is just for gfx devices */
2942 drhd->ignored = 1;
2943 for (i = 0; i < drhd->devices_cnt; i++) {
2944 if (!drhd->devices[i])
2945 continue;
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07002946 drhd->devices[i]->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002947 }
2948 }
2949}
2950
Fenghua Yuf59c7b62009-03-27 14:22:42 -07002951#ifdef CONFIG_SUSPEND
2952static int init_iommu_hw(void)
2953{
2954 struct dmar_drhd_unit *drhd;
2955 struct intel_iommu *iommu = NULL;
2956
2957 for_each_active_iommu(iommu, drhd)
2958 if (iommu->qi)
2959 dmar_reenable_qi(iommu);
2960
2961 for_each_active_iommu(iommu, drhd) {
2962 iommu_flush_write_buffer(iommu);
2963
2964 iommu_set_root_entry(iommu);
2965
2966 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002967 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07002968 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002969 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07002970 iommu_disable_protect_mem_regions(iommu);
2971 iommu_enable_translation(iommu);
2972 }
2973
2974 return 0;
2975}
2976
2977static void iommu_flush_all(void)
2978{
2979 struct dmar_drhd_unit *drhd;
2980 struct intel_iommu *iommu;
2981
2982 for_each_active_iommu(iommu, drhd) {
2983 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002984 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07002985 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002986 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07002987 }
2988}
2989
2990static int iommu_suspend(struct sys_device *dev, pm_message_t state)
2991{
2992 struct dmar_drhd_unit *drhd;
2993 struct intel_iommu *iommu = NULL;
2994 unsigned long flag;
2995
2996 for_each_active_iommu(iommu, drhd) {
2997 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
2998 GFP_ATOMIC);
2999 if (!iommu->iommu_state)
3000 goto nomem;
3001 }
3002
3003 iommu_flush_all();
3004
3005 for_each_active_iommu(iommu, drhd) {
3006 iommu_disable_translation(iommu);
3007
3008 spin_lock_irqsave(&iommu->register_lock, flag);
3009
3010 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3011 readl(iommu->reg + DMAR_FECTL_REG);
3012 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3013 readl(iommu->reg + DMAR_FEDATA_REG);
3014 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3015 readl(iommu->reg + DMAR_FEADDR_REG);
3016 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3017 readl(iommu->reg + DMAR_FEUADDR_REG);
3018
3019 spin_unlock_irqrestore(&iommu->register_lock, flag);
3020 }
3021 return 0;
3022
3023nomem:
3024 for_each_active_iommu(iommu, drhd)
3025 kfree(iommu->iommu_state);
3026
3027 return -ENOMEM;
3028}
3029
3030static int iommu_resume(struct sys_device *dev)
3031{
3032 struct dmar_drhd_unit *drhd;
3033 struct intel_iommu *iommu = NULL;
3034 unsigned long flag;
3035
3036 if (init_iommu_hw()) {
3037 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
3038 return -EIO;
3039 }
3040
3041 for_each_active_iommu(iommu, drhd) {
3042
3043 spin_lock_irqsave(&iommu->register_lock, flag);
3044
3045 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3046 iommu->reg + DMAR_FECTL_REG);
3047 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3048 iommu->reg + DMAR_FEDATA_REG);
3049 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3050 iommu->reg + DMAR_FEADDR_REG);
3051 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3052 iommu->reg + DMAR_FEUADDR_REG);
3053
3054 spin_unlock_irqrestore(&iommu->register_lock, flag);
3055 }
3056
3057 for_each_active_iommu(iommu, drhd)
3058 kfree(iommu->iommu_state);
3059
3060 return 0;
3061}
3062
3063static struct sysdev_class iommu_sysclass = {
3064 .name = "iommu",
3065 .resume = iommu_resume,
3066 .suspend = iommu_suspend,
3067};
3068
3069static struct sys_device device_iommu = {
3070 .cls = &iommu_sysclass,
3071};
3072
3073static int __init init_iommu_sysfs(void)
3074{
3075 int error;
3076
3077 error = sysdev_class_register(&iommu_sysclass);
3078 if (error)
3079 return error;
3080
3081 error = sysdev_register(&device_iommu);
3082 if (error)
3083 sysdev_class_unregister(&iommu_sysclass);
3084
3085 return error;
3086}
3087
3088#else
3089static int __init init_iommu_sysfs(void)
3090{
3091 return 0;
3092}
3093#endif /* CONFIG_PM */
3094
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003095int __init intel_iommu_init(void)
3096{
3097 int ret = 0;
3098
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003099 if (dmar_table_init())
3100 return -ENODEV;
3101
Suresh Siddha1886e8a2008-07-10 11:16:37 -07003102 if (dmar_dev_scope_init())
3103 return -ENODEV;
3104
Suresh Siddha2ae21012008-07-10 11:16:43 -07003105 /*
3106 * Check the need for DMA-remapping initialization now.
3107 * Above initialization will also be used by Interrupt-remapping.
3108 */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003109 if (no_iommu || (swiotlb && !iommu_pass_through) || dmar_disabled)
Suresh Siddha2ae21012008-07-10 11:16:43 -07003110 return -ENODEV;
3111
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003112 iommu_init_mempool();
3113 dmar_init_reserved_ranges();
3114
3115 init_no_remapping_devices();
3116
3117 ret = init_dmars();
3118 if (ret) {
3119 printk(KERN_ERR "IOMMU: dmar init failed\n");
3120 put_iova_domain(&reserved_iova_list);
3121 iommu_exit_mempool();
3122 return ret;
3123 }
3124 printk(KERN_INFO
3125 "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n");
3126
mark gross5e0d2a62008-03-04 15:22:08 -08003127 init_timer(&unmap_timer);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003128 force_iommu = 1;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003129
3130 if (!iommu_pass_through) {
3131 printk(KERN_INFO
3132 "Multi-level page-table translation for DMAR.\n");
3133 dma_ops = &intel_dma_ops;
3134 } else
3135 printk(KERN_INFO
3136 "DMAR: Pass through translation for DMAR.\n");
3137
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003138 init_iommu_sysfs();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003139
3140 register_iommu(&intel_iommu_ops);
3141
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003142 return 0;
3143}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07003144
Han, Weidong3199aa62009-02-26 17:31:12 +08003145static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
3146 struct pci_dev *pdev)
3147{
3148 struct pci_dev *tmp, *parent;
3149
3150 if (!iommu || !pdev)
3151 return;
3152
3153 /* dependent device detach */
3154 tmp = pci_find_upstream_pcie_bridge(pdev);
3155 /* Secondary interface's bus number and devfn 0 */
3156 if (tmp) {
3157 parent = pdev->bus->self;
3158 while (parent != tmp) {
3159 iommu_detach_dev(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01003160 parent->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003161 parent = parent->bus->self;
3162 }
3163 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
3164 iommu_detach_dev(iommu,
3165 tmp->subordinate->number, 0);
3166 else /* this is a legacy PCI bridge */
David Woodhouse276dbf992009-04-04 01:45:37 +01003167 iommu_detach_dev(iommu, tmp->bus->number,
3168 tmp->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003169 }
3170}
3171
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003172static void domain_remove_one_dev_info(struct dmar_domain *domain,
Weidong Hanc7151a82008-12-08 22:51:37 +08003173 struct pci_dev *pdev)
3174{
3175 struct device_domain_info *info;
3176 struct intel_iommu *iommu;
3177 unsigned long flags;
3178 int found = 0;
3179 struct list_head *entry, *tmp;
3180
David Woodhouse276dbf992009-04-04 01:45:37 +01003181 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3182 pdev->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003183 if (!iommu)
3184 return;
3185
3186 spin_lock_irqsave(&device_domain_lock, flags);
3187 list_for_each_safe(entry, tmp, &domain->devices) {
3188 info = list_entry(entry, struct device_domain_info, link);
David Woodhouse276dbf992009-04-04 01:45:37 +01003189 /* No need to compare PCI domain; it has to be the same */
Weidong Hanc7151a82008-12-08 22:51:37 +08003190 if (info->bus == pdev->bus->number &&
3191 info->devfn == pdev->devfn) {
3192 list_del(&info->link);
3193 list_del(&info->global);
3194 if (info->dev)
3195 info->dev->dev.archdata.iommu = NULL;
3196 spin_unlock_irqrestore(&device_domain_lock, flags);
3197
Yu Zhao93a23a72009-05-18 13:51:37 +08003198 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08003199 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003200 iommu_detach_dependent_devices(iommu, pdev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003201 free_devinfo_mem(info);
3202
3203 spin_lock_irqsave(&device_domain_lock, flags);
3204
3205 if (found)
3206 break;
3207 else
3208 continue;
3209 }
3210
3211 /* if there is no other devices under the same iommu
3212 * owned by this domain, clear this iommu in iommu_bmp
3213 * update iommu count and coherency
3214 */
David Woodhouse276dbf992009-04-04 01:45:37 +01003215 if (iommu == device_to_iommu(info->segment, info->bus,
3216 info->devfn))
Weidong Hanc7151a82008-12-08 22:51:37 +08003217 found = 1;
3218 }
3219
3220 if (found == 0) {
3221 unsigned long tmp_flags;
3222 spin_lock_irqsave(&domain->iommu_lock, tmp_flags);
3223 clear_bit(iommu->seq_id, &domain->iommu_bmp);
3224 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003225 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003226 spin_unlock_irqrestore(&domain->iommu_lock, tmp_flags);
3227 }
3228
3229 spin_unlock_irqrestore(&device_domain_lock, flags);
3230}
3231
3232static void vm_domain_remove_all_dev_info(struct dmar_domain *domain)
3233{
3234 struct device_domain_info *info;
3235 struct intel_iommu *iommu;
3236 unsigned long flags1, flags2;
3237
3238 spin_lock_irqsave(&device_domain_lock, flags1);
3239 while (!list_empty(&domain->devices)) {
3240 info = list_entry(domain->devices.next,
3241 struct device_domain_info, link);
3242 list_del(&info->link);
3243 list_del(&info->global);
3244 if (info->dev)
3245 info->dev->dev.archdata.iommu = NULL;
3246
3247 spin_unlock_irqrestore(&device_domain_lock, flags1);
3248
Yu Zhao93a23a72009-05-18 13:51:37 +08003249 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01003250 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003251 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003252 iommu_detach_dependent_devices(iommu, info->dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003253
3254 /* clear this iommu in iommu_bmp, update iommu count
Sheng Yang58c610b2009-03-18 15:33:05 +08003255 * and capabilities
Weidong Hanc7151a82008-12-08 22:51:37 +08003256 */
3257 spin_lock_irqsave(&domain->iommu_lock, flags2);
3258 if (test_and_clear_bit(iommu->seq_id,
3259 &domain->iommu_bmp)) {
3260 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003261 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003262 }
3263 spin_unlock_irqrestore(&domain->iommu_lock, flags2);
3264
3265 free_devinfo_mem(info);
3266 spin_lock_irqsave(&device_domain_lock, flags1);
3267 }
3268 spin_unlock_irqrestore(&device_domain_lock, flags1);
3269}
3270
Weidong Han5e98c4b2008-12-08 23:03:27 +08003271/* domain id for virtual machine, it won't be set in context */
3272static unsigned long vm_domid;
3273
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003274static int vm_domain_min_agaw(struct dmar_domain *domain)
3275{
3276 int i;
3277 int min_agaw = domain->agaw;
3278
3279 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
3280 for (; i < g_num_of_iommus; ) {
3281 if (min_agaw > g_iommus[i]->agaw)
3282 min_agaw = g_iommus[i]->agaw;
3283
3284 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
3285 }
3286
3287 return min_agaw;
3288}
3289
Weidong Han5e98c4b2008-12-08 23:03:27 +08003290static struct dmar_domain *iommu_alloc_vm_domain(void)
3291{
3292 struct dmar_domain *domain;
3293
3294 domain = alloc_domain_mem();
3295 if (!domain)
3296 return NULL;
3297
3298 domain->id = vm_domid++;
3299 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
3300 domain->flags = DOMAIN_FLAG_VIRTUAL_MACHINE;
3301
3302 return domain;
3303}
3304
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003305static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08003306{
3307 int adjust_width;
3308
3309 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
3310 spin_lock_init(&domain->mapping_lock);
3311 spin_lock_init(&domain->iommu_lock);
3312
3313 domain_reserve_special_ranges(domain);
3314
3315 /* calculate AGAW */
3316 domain->gaw = guest_width;
3317 adjust_width = guestwidth_to_adjustwidth(guest_width);
3318 domain->agaw = width_to_agaw(adjust_width);
3319
3320 INIT_LIST_HEAD(&domain->devices);
3321
3322 domain->iommu_count = 0;
3323 domain->iommu_coherency = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003324 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08003325
3326 /* always allocate the top pgd */
3327 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
3328 if (!domain->pgd)
3329 return -ENOMEM;
3330 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
3331 return 0;
3332}
3333
3334static void iommu_free_vm_domain(struct dmar_domain *domain)
3335{
3336 unsigned long flags;
3337 struct dmar_drhd_unit *drhd;
3338 struct intel_iommu *iommu;
3339 unsigned long i;
3340 unsigned long ndomains;
3341
3342 for_each_drhd_unit(drhd) {
3343 if (drhd->ignored)
3344 continue;
3345 iommu = drhd->iommu;
3346
3347 ndomains = cap_ndoms(iommu->cap);
3348 i = find_first_bit(iommu->domain_ids, ndomains);
3349 for (; i < ndomains; ) {
3350 if (iommu->domains[i] == domain) {
3351 spin_lock_irqsave(&iommu->lock, flags);
3352 clear_bit(i, iommu->domain_ids);
3353 iommu->domains[i] = NULL;
3354 spin_unlock_irqrestore(&iommu->lock, flags);
3355 break;
3356 }
3357 i = find_next_bit(iommu->domain_ids, ndomains, i+1);
3358 }
3359 }
3360}
3361
3362static void vm_domain_exit(struct dmar_domain *domain)
3363{
Weidong Han5e98c4b2008-12-08 23:03:27 +08003364 /* Domain 0 is reserved, so dont process it */
3365 if (!domain)
3366 return;
3367
3368 vm_domain_remove_all_dev_info(domain);
3369 /* destroy iovas */
3370 put_iova_domain(&domain->iovad);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003371
3372 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01003373 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003374
3375 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01003376 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003377
3378 iommu_free_vm_domain(domain);
3379 free_domain_mem(domain);
3380}
3381
Joerg Roedel5d450802008-12-03 14:52:32 +01003382static int intel_iommu_domain_init(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003383{
Joerg Roedel5d450802008-12-03 14:52:32 +01003384 struct dmar_domain *dmar_domain;
Kay, Allen M38717942008-09-09 18:37:29 +03003385
Joerg Roedel5d450802008-12-03 14:52:32 +01003386 dmar_domain = iommu_alloc_vm_domain();
3387 if (!dmar_domain) {
Kay, Allen M38717942008-09-09 18:37:29 +03003388 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003389 "intel_iommu_domain_init: dmar_domain == NULL\n");
3390 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003391 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003392 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Kay, Allen M38717942008-09-09 18:37:29 +03003393 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003394 "intel_iommu_domain_init() failed\n");
3395 vm_domain_exit(dmar_domain);
3396 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003397 }
Joerg Roedel5d450802008-12-03 14:52:32 +01003398 domain->priv = dmar_domain;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003399
Joerg Roedel5d450802008-12-03 14:52:32 +01003400 return 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003401}
Kay, Allen M38717942008-09-09 18:37:29 +03003402
Joerg Roedel5d450802008-12-03 14:52:32 +01003403static void intel_iommu_domain_destroy(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003404{
Joerg Roedel5d450802008-12-03 14:52:32 +01003405 struct dmar_domain *dmar_domain = domain->priv;
3406
3407 domain->priv = NULL;
3408 vm_domain_exit(dmar_domain);
Kay, Allen M38717942008-09-09 18:37:29 +03003409}
Kay, Allen M38717942008-09-09 18:37:29 +03003410
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003411static int intel_iommu_attach_device(struct iommu_domain *domain,
3412 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003413{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003414 struct dmar_domain *dmar_domain = domain->priv;
3415 struct pci_dev *pdev = to_pci_dev(dev);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003416 struct intel_iommu *iommu;
3417 int addr_width;
3418 u64 end;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003419 int ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003420
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003421 /* normally pdev is not mapped */
3422 if (unlikely(domain_context_mapped(pdev))) {
3423 struct dmar_domain *old_domain;
3424
3425 old_domain = find_domain(pdev);
3426 if (old_domain) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003427 if (dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
3428 dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)
3429 domain_remove_one_dev_info(old_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003430 else
3431 domain_remove_dev_info(old_domain);
3432 }
3433 }
3434
David Woodhouse276dbf992009-04-04 01:45:37 +01003435 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3436 pdev->devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003437 if (!iommu)
3438 return -ENODEV;
3439
3440 /* check if this iommu agaw is sufficient for max mapped address */
3441 addr_width = agaw_to_width(iommu->agaw);
3442 end = DOMAIN_MAX_ADDR(addr_width);
3443 end = end & VTD_PAGE_MASK;
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003444 if (end < dmar_domain->max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003445 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3446 "sufficient for the mapped address (%llx)\n",
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003447 __func__, iommu->agaw, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003448 return -EFAULT;
3449 }
3450
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003451 ret = domain_add_dev_info(dmar_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003452 if (ret)
3453 return ret;
3454
Yu Zhao93a23a72009-05-18 13:51:37 +08003455 ret = domain_context_mapping(dmar_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003456 return ret;
3457}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003458
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003459static void intel_iommu_detach_device(struct iommu_domain *domain,
3460 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003461{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003462 struct dmar_domain *dmar_domain = domain->priv;
3463 struct pci_dev *pdev = to_pci_dev(dev);
3464
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003465 domain_remove_one_dev_info(dmar_domain, pdev);
Kay, Allen M38717942008-09-09 18:37:29 +03003466}
Kay, Allen M38717942008-09-09 18:37:29 +03003467
Joerg Roedeldde57a22008-12-03 15:04:09 +01003468static int intel_iommu_map_range(struct iommu_domain *domain,
3469 unsigned long iova, phys_addr_t hpa,
3470 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03003471{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003472 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003473 u64 max_addr;
3474 int addr_width;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003475 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003476 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003477
Joerg Roedeldde57a22008-12-03 15:04:09 +01003478 if (iommu_prot & IOMMU_READ)
3479 prot |= DMA_PTE_READ;
3480 if (iommu_prot & IOMMU_WRITE)
3481 prot |= DMA_PTE_WRITE;
Sheng Yang9cf066972009-03-18 15:33:07 +08003482 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
3483 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003484
David Woodhouse163cc522009-06-28 00:51:17 +01003485 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003486 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003487 int min_agaw;
3488 u64 end;
3489
3490 /* check if minimum agaw is sufficient for mapped address */
Joerg Roedeldde57a22008-12-03 15:04:09 +01003491 min_agaw = vm_domain_min_agaw(dmar_domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003492 addr_width = agaw_to_width(min_agaw);
3493 end = DOMAIN_MAX_ADDR(addr_width);
3494 end = end & VTD_PAGE_MASK;
3495 if (end < max_addr) {
3496 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3497 "sufficient for the mapped address (%llx)\n",
3498 __func__, min_agaw, max_addr);
3499 return -EFAULT;
3500 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01003501 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003502 }
David Woodhousead051222009-06-28 14:22:28 +01003503 /* Round up size to next multiple of PAGE_SIZE, if it and
3504 the low bits of hpa would take us onto the next page */
3505 size = aligned_size(hpa, size) >> VTD_PAGE_SHIFT;
3506 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
3507 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003508 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003509}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003510
Joerg Roedeldde57a22008-12-03 15:04:09 +01003511static void intel_iommu_unmap_range(struct iommu_domain *domain,
3512 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003513{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003514 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003515
David Woodhouse163cc522009-06-28 00:51:17 +01003516 dma_pte_clear_range(dmar_domain, iova >> VTD_PAGE_SHIFT,
3517 (iova + size - 1) >> VTD_PAGE_SHIFT);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003518
David Woodhouse163cc522009-06-28 00:51:17 +01003519 if (dmar_domain->max_addr == iova + size)
3520 dmar_domain->max_addr = iova;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003521}
Kay, Allen M38717942008-09-09 18:37:29 +03003522
Joerg Roedeld14d6572008-12-03 15:06:57 +01003523static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
3524 unsigned long iova)
Kay, Allen M38717942008-09-09 18:37:29 +03003525{
Joerg Roedeld14d6572008-12-03 15:06:57 +01003526 struct dmar_domain *dmar_domain = domain->priv;
Kay, Allen M38717942008-09-09 18:37:29 +03003527 struct dma_pte *pte;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003528 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003529
David Woodhouseb026fd22009-06-28 10:37:25 +01003530 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT);
Kay, Allen M38717942008-09-09 18:37:29 +03003531 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003532 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03003533
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003534 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03003535}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003536
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003537static int intel_iommu_domain_has_cap(struct iommu_domain *domain,
3538 unsigned long cap)
3539{
3540 struct dmar_domain *dmar_domain = domain->priv;
3541
3542 if (cap == IOMMU_CAP_CACHE_COHERENCY)
3543 return dmar_domain->iommu_snooping;
3544
3545 return 0;
3546}
3547
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003548static struct iommu_ops intel_iommu_ops = {
3549 .domain_init = intel_iommu_domain_init,
3550 .domain_destroy = intel_iommu_domain_destroy,
3551 .attach_dev = intel_iommu_attach_device,
3552 .detach_dev = intel_iommu_detach_device,
3553 .map = intel_iommu_map_range,
3554 .unmap = intel_iommu_unmap_range,
3555 .iova_to_phys = intel_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003556 .domain_has_cap = intel_iommu_domain_has_cap,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003557};
David Woodhouse9af88142009-02-13 23:18:03 +00003558
3559static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
3560{
3561 /*
3562 * Mobile 4 Series Chipset neglects to set RWBF capability,
3563 * but needs it:
3564 */
3565 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
3566 rwbf_quirk = 1;
3567}
3568
3569DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);