blob: 147b3b960b619c6e6c9c21f155729f5c473f08b3 [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
David Woodhousedd4e8312009-06-27 16:21:20 +010066/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
67 are never going to work. */
68static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
69{
70 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
71}
72
73static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
74{
75 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
76}
77static inline unsigned long page_to_dma_pfn(struct page *pg)
78{
79 return mm_to_dma_pfn(page_to_pfn(pg));
80}
81static inline unsigned long virt_to_dma_pfn(void *p)
82{
83 return page_to_dma_pfn(virt_to_page(p));
84}
85
Weidong Hand9630fe2008-12-08 11:06:32 +080086/* global iommu list, set NULL for ignored DMAR units */
87static struct intel_iommu **g_iommus;
88
David Woodhouse9af88142009-02-13 23:18:03 +000089static int rwbf_quirk;
90
Mark McLoughlin46b08e12008-11-20 15:49:44 +000091/*
92 * 0: Present
93 * 1-11: Reserved
94 * 12-63: Context Ptr (12 - (haw-1))
95 * 64-127: Reserved
96 */
97struct root_entry {
98 u64 val;
99 u64 rsvd1;
100};
101#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
102static inline bool root_present(struct root_entry *root)
103{
104 return (root->val & 1);
105}
106static inline void set_root_present(struct root_entry *root)
107{
108 root->val |= 1;
109}
110static inline void set_root_value(struct root_entry *root, unsigned long value)
111{
112 root->val |= value & VTD_PAGE_MASK;
113}
114
115static inline struct context_entry *
116get_context_addr_from_root(struct root_entry *root)
117{
118 return (struct context_entry *)
119 (root_present(root)?phys_to_virt(
120 root->val & VTD_PAGE_MASK) :
121 NULL);
122}
123
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000124/*
125 * low 64 bits:
126 * 0: present
127 * 1: fault processing disable
128 * 2-3: translation type
129 * 12-63: address space root
130 * high 64 bits:
131 * 0-2: address width
132 * 3-6: aval
133 * 8-23: domain id
134 */
135struct context_entry {
136 u64 lo;
137 u64 hi;
138};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000139
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000140static inline bool context_present(struct context_entry *context)
141{
142 return (context->lo & 1);
143}
144static inline void context_set_present(struct context_entry *context)
145{
146 context->lo |= 1;
147}
148
149static inline void context_set_fault_enable(struct context_entry *context)
150{
151 context->lo &= (((u64)-1) << 2) | 1;
152}
153
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000154static inline void context_set_translation_type(struct context_entry *context,
155 unsigned long value)
156{
157 context->lo &= (((u64)-1) << 4) | 3;
158 context->lo |= (value & 3) << 2;
159}
160
161static inline void context_set_address_root(struct context_entry *context,
162 unsigned long value)
163{
164 context->lo |= value & VTD_PAGE_MASK;
165}
166
167static inline void context_set_address_width(struct context_entry *context,
168 unsigned long value)
169{
170 context->hi |= value & 7;
171}
172
173static inline void context_set_domain_id(struct context_entry *context,
174 unsigned long value)
175{
176 context->hi |= (value & ((1 << 16) - 1)) << 8;
177}
178
179static inline void context_clear_entry(struct context_entry *context)
180{
181 context->lo = 0;
182 context->hi = 0;
183}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000184
Mark McLoughlin622ba122008-11-20 15:49:46 +0000185/*
186 * 0: readable
187 * 1: writable
188 * 2-6: reserved
189 * 7: super page
Sheng Yang9cf06692009-03-18 15:33:07 +0800190 * 8-10: available
191 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000192 * 12-63: Host physcial address
193 */
194struct dma_pte {
195 u64 val;
196};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000197
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000198static inline void dma_clear_pte(struct dma_pte *pte)
199{
200 pte->val = 0;
201}
202
203static inline void dma_set_pte_readable(struct dma_pte *pte)
204{
205 pte->val |= DMA_PTE_READ;
206}
207
208static inline void dma_set_pte_writable(struct dma_pte *pte)
209{
210 pte->val |= DMA_PTE_WRITE;
211}
212
Sheng Yang9cf06692009-03-18 15:33:07 +0800213static inline void dma_set_pte_snp(struct dma_pte *pte)
214{
215 pte->val |= DMA_PTE_SNP;
216}
217
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000218static inline void dma_set_pte_prot(struct dma_pte *pte, unsigned long prot)
219{
220 pte->val = (pte->val & ~3) | (prot & 3);
221}
222
223static inline u64 dma_pte_addr(struct dma_pte *pte)
224{
David Woodhousec85994e2009-07-01 19:21:24 +0100225#ifdef CONFIG_64BIT
226 return pte->val & VTD_PAGE_MASK;
227#else
228 /* Must have a full atomic 64-bit read */
229 return __cmpxchg64(pte, 0ULL, 0ULL) & VTD_PAGE_MASK;
230#endif
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000231}
232
David Woodhousedd4e8312009-06-27 16:21:20 +0100233static inline void dma_set_pte_pfn(struct dma_pte *pte, unsigned long pfn)
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000234{
David Woodhousedd4e8312009-06-27 16:21:20 +0100235 pte->val |= (uint64_t)pfn << VTD_PAGE_SHIFT;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000236}
237
238static inline bool dma_pte_present(struct dma_pte *pte)
239{
240 return (pte->val & 3) != 0;
241}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000242
David Woodhouse75e6bf92009-07-02 11:21:16 +0100243static inline int first_pte_in_page(struct dma_pte *pte)
244{
245 return !((unsigned long)pte & ~VTD_PAGE_MASK);
246}
247
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700248/*
249 * This domain is a statically identity mapping domain.
250 * 1. This domain creats a static 1:1 mapping to all usable memory.
251 * 2. It maps to each iommu if successful.
252 * 3. Each iommu mapps to this domain if successful.
253 */
David Woodhouse19943b02009-08-04 16:19:20 +0100254static struct dmar_domain *si_domain;
255static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700256
Weidong Han3b5410e2008-12-08 09:17:15 +0800257/* devices under the same p2p bridge are owned in one domain */
Mike Daycdc7b832008-12-12 17:16:30 +0100258#define DOMAIN_FLAG_P2P_MULTIPLE_DEVICES (1 << 0)
Weidong Han3b5410e2008-12-08 09:17:15 +0800259
Weidong Han1ce28fe2008-12-08 16:35:39 +0800260/* domain represents a virtual machine, more than one devices
261 * across iommus may be owned in one domain, e.g. kvm guest.
262 */
263#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 1)
264
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700265/* si_domain contains mulitple devices */
266#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 2)
267
Mark McLoughlin99126f72008-11-20 15:49:47 +0000268struct dmar_domain {
269 int id; /* domain id */
Weidong Han8c11e792008-12-08 15:29:22 +0800270 unsigned long iommu_bmp; /* bitmap of iommus this domain uses*/
Mark McLoughlin99126f72008-11-20 15:49:47 +0000271
272 struct list_head devices; /* all devices' list */
273 struct iova_domain iovad; /* iova's that belong to this domain */
274
275 struct dma_pte *pgd; /* virtual address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000276 int gaw; /* max guest address width */
277
278 /* adjusted guest address width, 0 is level 2 30-bit */
279 int agaw;
280
Weidong Han3b5410e2008-12-08 09:17:15 +0800281 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800282
283 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800284 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800285 int iommu_count; /* reference count of iommu */
286 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800287 u64 max_addr; /* maximum mapped address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000288};
289
Mark McLoughlina647dac2008-11-20 15:49:48 +0000290/* PCI domain-device relationship */
291struct device_domain_info {
292 struct list_head link; /* link to domain siblings */
293 struct list_head global; /* link to global list */
David Woodhouse276dbf92009-04-04 01:45:37 +0100294 int segment; /* PCI domain */
295 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000296 u8 devfn; /* PCI devfn number */
297 struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800298 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000299 struct dmar_domain *domain; /* pointer to domain */
300};
301
mark gross5e0d2a62008-03-04 15:22:08 -0800302static void flush_unmaps_timeout(unsigned long data);
303
304DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
305
mark gross80b20dd2008-04-18 13:53:58 -0700306#define HIGH_WATER_MARK 250
307struct deferred_flush_tables {
308 int next;
309 struct iova *iova[HIGH_WATER_MARK];
310 struct dmar_domain *domain[HIGH_WATER_MARK];
311};
312
313static struct deferred_flush_tables *deferred_flush;
314
mark gross5e0d2a62008-03-04 15:22:08 -0800315/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800316static int g_num_of_iommus;
317
318static DEFINE_SPINLOCK(async_umap_flush_lock);
319static LIST_HEAD(unmaps_to_do);
320
321static int timer_on;
322static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800323
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700324static void domain_remove_dev_info(struct dmar_domain *domain);
325
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800326#ifdef CONFIG_DMAR_DEFAULT_ON
327int dmar_disabled = 0;
328#else
329int dmar_disabled = 1;
330#endif /*CONFIG_DMAR_DEFAULT_ON*/
331
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700332static int __initdata dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700333static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800334static int intel_iommu_strict;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700335
336#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
337static DEFINE_SPINLOCK(device_domain_lock);
338static LIST_HEAD(device_domain_list);
339
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100340static struct iommu_ops intel_iommu_ops;
341
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700342static int __init intel_iommu_setup(char *str)
343{
344 if (!str)
345 return -EINVAL;
346 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800347 if (!strncmp(str, "on", 2)) {
348 dmar_disabled = 0;
349 printk(KERN_INFO "Intel-IOMMU: enabled\n");
350 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700351 dmar_disabled = 1;
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800352 printk(KERN_INFO "Intel-IOMMU: disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700353 } else if (!strncmp(str, "igfx_off", 8)) {
354 dmar_map_gfx = 0;
355 printk(KERN_INFO
356 "Intel-IOMMU: disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700357 } else if (!strncmp(str, "forcedac", 8)) {
mark gross5e0d2a62008-03-04 15:22:08 -0800358 printk(KERN_INFO
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700359 "Intel-IOMMU: Forcing DAC for PCI devices\n");
360 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800361 } else if (!strncmp(str, "strict", 6)) {
362 printk(KERN_INFO
363 "Intel-IOMMU: disable batched IOTLB flush\n");
364 intel_iommu_strict = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700365 }
366
367 str += strcspn(str, ",");
368 while (*str == ',')
369 str++;
370 }
371 return 0;
372}
373__setup("intel_iommu=", intel_iommu_setup);
374
375static struct kmem_cache *iommu_domain_cache;
376static struct kmem_cache *iommu_devinfo_cache;
377static struct kmem_cache *iommu_iova_cache;
378
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700379static inline void *iommu_kmem_cache_alloc(struct kmem_cache *cachep)
380{
381 unsigned int flags;
382 void *vaddr;
383
384 /* trying to avoid low memory issues */
385 flags = current->flags & PF_MEMALLOC;
386 current->flags |= PF_MEMALLOC;
387 vaddr = kmem_cache_alloc(cachep, GFP_ATOMIC);
388 current->flags &= (~PF_MEMALLOC | flags);
389 return vaddr;
390}
391
392
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700393static inline void *alloc_pgtable_page(void)
394{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700395 unsigned int flags;
396 void *vaddr;
397
398 /* trying to avoid low memory issues */
399 flags = current->flags & PF_MEMALLOC;
400 current->flags |= PF_MEMALLOC;
401 vaddr = (void *)get_zeroed_page(GFP_ATOMIC);
402 current->flags &= (~PF_MEMALLOC | flags);
403 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700404}
405
406static inline void free_pgtable_page(void *vaddr)
407{
408 free_page((unsigned long)vaddr);
409}
410
411static inline void *alloc_domain_mem(void)
412{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700413 return iommu_kmem_cache_alloc(iommu_domain_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700414}
415
Kay, Allen M38717942008-09-09 18:37:29 +0300416static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700417{
418 kmem_cache_free(iommu_domain_cache, vaddr);
419}
420
421static inline void * alloc_devinfo_mem(void)
422{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700423 return iommu_kmem_cache_alloc(iommu_devinfo_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700424}
425
426static inline void free_devinfo_mem(void *vaddr)
427{
428 kmem_cache_free(iommu_devinfo_cache, vaddr);
429}
430
431struct iova *alloc_iova_mem(void)
432{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700433 return iommu_kmem_cache_alloc(iommu_iova_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700434}
435
436void free_iova_mem(struct iova *iova)
437{
438 kmem_cache_free(iommu_iova_cache, iova);
439}
440
Weidong Han1b573682008-12-08 15:34:06 +0800441
442static inline int width_to_agaw(int width);
443
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700444static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800445{
446 unsigned long sagaw;
447 int agaw = -1;
448
449 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700450 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800451 agaw >= 0; agaw--) {
452 if (test_bit(agaw, &sagaw))
453 break;
454 }
455
456 return agaw;
457}
458
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700459/*
460 * Calculate max SAGAW for each iommu.
461 */
462int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
463{
464 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
465}
466
467/*
468 * calculate agaw for each iommu.
469 * "SAGAW" may be different across iommus, use a default agaw, and
470 * get a supported less agaw for iommus that don't support the default agaw.
471 */
472int iommu_calculate_agaw(struct intel_iommu *iommu)
473{
474 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
475}
476
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700477/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800478static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
479{
480 int iommu_id;
481
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700482 /* si_domain and vm domain should not get here. */
Weidong Han1ce28fe2008-12-08 16:35:39 +0800483 BUG_ON(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700484 BUG_ON(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY);
Weidong Han1ce28fe2008-12-08 16:35:39 +0800485
Weidong Han8c11e792008-12-08 15:29:22 +0800486 iommu_id = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
487 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
488 return NULL;
489
490 return g_iommus[iommu_id];
491}
492
Weidong Han8e6040972008-12-08 15:49:06 +0800493static void domain_update_iommu_coherency(struct dmar_domain *domain)
494{
495 int i;
496
497 domain->iommu_coherency = 1;
498
499 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
500 for (; i < g_num_of_iommus; ) {
501 if (!ecap_coherent(g_iommus[i]->ecap)) {
502 domain->iommu_coherency = 0;
503 break;
504 }
505 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
506 }
507}
508
Sheng Yang58c610b2009-03-18 15:33:05 +0800509static void domain_update_iommu_snooping(struct dmar_domain *domain)
510{
511 int i;
512
513 domain->iommu_snooping = 1;
514
515 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
516 for (; i < g_num_of_iommus; ) {
517 if (!ecap_sc_support(g_iommus[i]->ecap)) {
518 domain->iommu_snooping = 0;
519 break;
520 }
521 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
522 }
523}
524
525/* Some capabilities may be different across iommus */
526static void domain_update_iommu_cap(struct dmar_domain *domain)
527{
528 domain_update_iommu_coherency(domain);
529 domain_update_iommu_snooping(domain);
530}
531
David Woodhouse276dbf92009-04-04 01:45:37 +0100532static struct intel_iommu *device_to_iommu(int segment, u8 bus, u8 devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800533{
534 struct dmar_drhd_unit *drhd = NULL;
535 int i;
536
537 for_each_drhd_unit(drhd) {
538 if (drhd->ignored)
539 continue;
David Woodhouse276dbf92009-04-04 01:45:37 +0100540 if (segment != drhd->segment)
541 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800542
David Woodhouse924b6232009-04-04 00:39:25 +0100543 for (i = 0; i < drhd->devices_cnt; i++) {
Dirk Hohndel288e4872009-01-11 15:33:51 +0000544 if (drhd->devices[i] &&
545 drhd->devices[i]->bus->number == bus &&
Weidong Hanc7151a82008-12-08 22:51:37 +0800546 drhd->devices[i]->devfn == devfn)
547 return drhd->iommu;
David Woodhouse4958c5d2009-04-06 13:30:01 -0700548 if (drhd->devices[i] &&
549 drhd->devices[i]->subordinate &&
David Woodhouse924b6232009-04-04 00:39:25 +0100550 drhd->devices[i]->subordinate->number <= bus &&
551 drhd->devices[i]->subordinate->subordinate >= bus)
552 return drhd->iommu;
553 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800554
555 if (drhd->include_all)
556 return drhd->iommu;
557 }
558
559 return NULL;
560}
561
Weidong Han5331fe62008-12-08 23:00:00 +0800562static void domain_flush_cache(struct dmar_domain *domain,
563 void *addr, int size)
564{
565 if (!domain->iommu_coherency)
566 clflush_cache_range(addr, size);
567}
568
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700569/* Gets context entry for a given bus and devfn */
570static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
571 u8 bus, u8 devfn)
572{
573 struct root_entry *root;
574 struct context_entry *context;
575 unsigned long phy_addr;
576 unsigned long flags;
577
578 spin_lock_irqsave(&iommu->lock, flags);
579 root = &iommu->root_entry[bus];
580 context = get_context_addr_from_root(root);
581 if (!context) {
582 context = (struct context_entry *)alloc_pgtable_page();
583 if (!context) {
584 spin_unlock_irqrestore(&iommu->lock, flags);
585 return NULL;
586 }
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700587 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700588 phy_addr = virt_to_phys((void *)context);
589 set_root_value(root, phy_addr);
590 set_root_present(root);
591 __iommu_flush_cache(iommu, root, sizeof(*root));
592 }
593 spin_unlock_irqrestore(&iommu->lock, flags);
594 return &context[devfn];
595}
596
597static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
598{
599 struct root_entry *root;
600 struct context_entry *context;
601 int ret;
602 unsigned long flags;
603
604 spin_lock_irqsave(&iommu->lock, flags);
605 root = &iommu->root_entry[bus];
606 context = get_context_addr_from_root(root);
607 if (!context) {
608 ret = 0;
609 goto out;
610 }
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000611 ret = context_present(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700612out:
613 spin_unlock_irqrestore(&iommu->lock, flags);
614 return ret;
615}
616
617static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
618{
619 struct root_entry *root;
620 struct context_entry *context;
621 unsigned long flags;
622
623 spin_lock_irqsave(&iommu->lock, flags);
624 root = &iommu->root_entry[bus];
625 context = get_context_addr_from_root(root);
626 if (context) {
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000627 context_clear_entry(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700628 __iommu_flush_cache(iommu, &context[devfn], \
629 sizeof(*context));
630 }
631 spin_unlock_irqrestore(&iommu->lock, flags);
632}
633
634static void free_context_table(struct intel_iommu *iommu)
635{
636 struct root_entry *root;
637 int i;
638 unsigned long flags;
639 struct context_entry *context;
640
641 spin_lock_irqsave(&iommu->lock, flags);
642 if (!iommu->root_entry) {
643 goto out;
644 }
645 for (i = 0; i < ROOT_ENTRY_NR; i++) {
646 root = &iommu->root_entry[i];
647 context = get_context_addr_from_root(root);
648 if (context)
649 free_pgtable_page(context);
650 }
651 free_pgtable_page(iommu->root_entry);
652 iommu->root_entry = NULL;
653out:
654 spin_unlock_irqrestore(&iommu->lock, flags);
655}
656
657/* page table handling */
658#define LEVEL_STRIDE (9)
659#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
660
661static inline int agaw_to_level(int agaw)
662{
663 return agaw + 2;
664}
665
666static inline int agaw_to_width(int agaw)
667{
668 return 30 + agaw * LEVEL_STRIDE;
669
670}
671
672static inline int width_to_agaw(int width)
673{
674 return (width - 30) / LEVEL_STRIDE;
675}
676
677static inline unsigned int level_to_offset_bits(int level)
678{
David Woodhouse6660c632009-06-27 22:41:00 +0100679 return (level - 1) * LEVEL_STRIDE;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700680}
681
David Woodhouse77dfa562009-06-27 16:40:08 +0100682static inline int pfn_level_offset(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700683{
David Woodhouse6660c632009-06-27 22:41:00 +0100684 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700685}
686
David Woodhouse6660c632009-06-27 22:41:00 +0100687static inline unsigned long level_mask(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700688{
David Woodhouse6660c632009-06-27 22:41:00 +0100689 return -1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700690}
691
David Woodhouse6660c632009-06-27 22:41:00 +0100692static inline unsigned long level_size(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700693{
David Woodhouse6660c632009-06-27 22:41:00 +0100694 return 1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700695}
696
David Woodhouse6660c632009-06-27 22:41:00 +0100697static inline unsigned long align_to_level(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700698{
David Woodhouse6660c632009-06-27 22:41:00 +0100699 return (pfn + level_size(level) - 1) & level_mask(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700700}
701
David Woodhouseb026fd22009-06-28 10:37:25 +0100702static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
703 unsigned long pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700704{
David Woodhouseb026fd22009-06-28 10:37:25 +0100705 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700706 struct dma_pte *parent, *pte = NULL;
707 int level = agaw_to_level(domain->agaw);
708 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700709
710 BUG_ON(!domain->pgd);
David Woodhouseb026fd22009-06-28 10:37:25 +0100711 BUG_ON(addr_width < BITS_PER_LONG && pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700712 parent = domain->pgd;
713
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700714 while (level > 0) {
715 void *tmp_page;
716
David Woodhouseb026fd22009-06-28 10:37:25 +0100717 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700718 pte = &parent[offset];
719 if (level == 1)
720 break;
721
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000722 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100723 uint64_t pteval;
724
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700725 tmp_page = alloc_pgtable_page();
726
David Woodhouse206a73c2009-07-01 19:30:28 +0100727 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700728 return NULL;
David Woodhouse206a73c2009-07-01 19:30:28 +0100729
David Woodhousec85994e2009-07-01 19:21:24 +0100730 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
731 pteval = (virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
732 if (cmpxchg64(&pte->val, 0ULL, pteval)) {
733 /* Someone else set it while we were thinking; use theirs. */
734 free_pgtable_page(tmp_page);
735 } else {
736 dma_pte_addr(pte);
737 domain_flush_cache(domain, pte, sizeof(*pte));
738 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700739 }
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000740 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700741 level--;
742 }
743
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700744 return pte;
745}
746
747/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100748static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
749 unsigned long pfn,
750 int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700751{
752 struct dma_pte *parent, *pte = NULL;
753 int total = agaw_to_level(domain->agaw);
754 int offset;
755
756 parent = domain->pgd;
757 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100758 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700759 pte = &parent[offset];
760 if (level == total)
761 return pte;
762
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000763 if (!dma_pte_present(pte))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700764 break;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000765 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700766 total--;
767 }
768 return NULL;
769}
770
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700771/* clear last level pte, a tlb flush should be followed */
David Woodhouse595badf2009-06-27 22:09:11 +0100772static void dma_pte_clear_range(struct dmar_domain *domain,
773 unsigned long start_pfn,
774 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700775{
David Woodhouse04b18e62009-06-27 19:15:01 +0100776 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse310a5ab2009-06-28 18:52:20 +0100777 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700778
David Woodhouse04b18e62009-06-27 19:15:01 +0100779 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
David Woodhouse595badf2009-06-27 22:09:11 +0100780 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse66eae842009-06-27 19:00:32 +0100781
David Woodhouse04b18e62009-06-27 19:15:01 +0100782 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse595badf2009-06-27 22:09:11 +0100783 while (start_pfn <= last_pfn) {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100784 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1);
785 if (!pte) {
786 start_pfn = align_to_level(start_pfn + 1, 2);
787 continue;
788 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100789 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100790 dma_clear_pte(pte);
791 start_pfn++;
792 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +0100793 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
794
David Woodhouse310a5ab2009-06-28 18:52:20 +0100795 domain_flush_cache(domain, first_pte,
796 (void *)pte - (void *)first_pte);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700797 }
798}
799
800/* free page table pages. last level pte should already be cleared */
801static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +0100802 unsigned long start_pfn,
803 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700804{
David Woodhouse6660c632009-06-27 22:41:00 +0100805 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhousef3a0a522009-06-30 03:40:07 +0100806 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700807 int total = agaw_to_level(domain->agaw);
808 int level;
David Woodhouse6660c632009-06-27 22:41:00 +0100809 unsigned long tmp;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700810
David Woodhouse6660c632009-06-27 22:41:00 +0100811 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
812 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700813
David Woodhousef3a0a522009-06-30 03:40:07 +0100814 /* We don't need lock here; nobody else touches the iova range */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700815 level = 2;
816 while (level <= total) {
David Woodhouse6660c632009-06-27 22:41:00 +0100817 tmp = align_to_level(start_pfn, level);
818
David Woodhousef3a0a522009-06-30 03:40:07 +0100819 /* If we can't even clear one PTE at this level, we're done */
David Woodhouse6660c632009-06-27 22:41:00 +0100820 if (tmp + level_size(level) - 1 > last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700821 return;
822
David Woodhouse3d7b0e42009-06-30 03:38:09 +0100823 while (tmp + level_size(level) - 1 <= last_pfn) {
David Woodhousef3a0a522009-06-30 03:40:07 +0100824 first_pte = pte = dma_pfn_level_pte(domain, tmp, level);
825 if (!pte) {
826 tmp = align_to_level(tmp + 1, level + 1);
827 continue;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700828 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100829 do {
David Woodhouse6a43e572009-07-02 12:02:34 +0100830 if (dma_pte_present(pte)) {
831 free_pgtable_page(phys_to_virt(dma_pte_addr(pte)));
832 dma_clear_pte(pte);
833 }
David Woodhousef3a0a522009-06-30 03:40:07 +0100834 pte++;
835 tmp += level_size(level);
David Woodhouse75e6bf92009-07-02 11:21:16 +0100836 } while (!first_pte_in_page(pte) &&
837 tmp + level_size(level) - 1 <= last_pfn);
838
David Woodhousef3a0a522009-06-30 03:40:07 +0100839 domain_flush_cache(domain, first_pte,
840 (void *)pte - (void *)first_pte);
841
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700842 }
843 level++;
844 }
845 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +0100846 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700847 free_pgtable_page(domain->pgd);
848 domain->pgd = NULL;
849 }
850}
851
852/* iommu handling */
853static int iommu_alloc_root_entry(struct intel_iommu *iommu)
854{
855 struct root_entry *root;
856 unsigned long flags;
857
858 root = (struct root_entry *)alloc_pgtable_page();
859 if (!root)
860 return -ENOMEM;
861
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700862 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700863
864 spin_lock_irqsave(&iommu->lock, flags);
865 iommu->root_entry = root;
866 spin_unlock_irqrestore(&iommu->lock, flags);
867
868 return 0;
869}
870
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700871static void iommu_set_root_entry(struct intel_iommu *iommu)
872{
873 void *addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100874 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700875 unsigned long flag;
876
877 addr = iommu->root_entry;
878
879 spin_lock_irqsave(&iommu->register_lock, flag);
880 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, virt_to_phys(addr));
881
David Woodhousec416daa2009-05-10 20:30:58 +0100882 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700883
884 /* Make sure hardware complete it */
885 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100886 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700887
888 spin_unlock_irqrestore(&iommu->register_lock, flag);
889}
890
891static void iommu_flush_write_buffer(struct intel_iommu *iommu)
892{
893 u32 val;
894 unsigned long flag;
895
David Woodhouse9af88142009-02-13 23:18:03 +0000896 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700897 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700898
899 spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +0100900 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700901
902 /* Make sure hardware complete it */
903 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100904 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700905
906 spin_unlock_irqrestore(&iommu->register_lock, flag);
907}
908
909/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +0100910static void __iommu_flush_context(struct intel_iommu *iommu,
911 u16 did, u16 source_id, u8 function_mask,
912 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700913{
914 u64 val = 0;
915 unsigned long flag;
916
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700917 switch (type) {
918 case DMA_CCMD_GLOBAL_INVL:
919 val = DMA_CCMD_GLOBAL_INVL;
920 break;
921 case DMA_CCMD_DOMAIN_INVL:
922 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
923 break;
924 case DMA_CCMD_DEVICE_INVL:
925 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
926 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
927 break;
928 default:
929 BUG();
930 }
931 val |= DMA_CCMD_ICC;
932
933 spin_lock_irqsave(&iommu->register_lock, flag);
934 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
935
936 /* Make sure hardware complete it */
937 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
938 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
939
940 spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700941}
942
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700943/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +0100944static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
945 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700946{
947 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
948 u64 val = 0, val_iva = 0;
949 unsigned long flag;
950
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700951 switch (type) {
952 case DMA_TLB_GLOBAL_FLUSH:
953 /* global flush doesn't need set IVA_REG */
954 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
955 break;
956 case DMA_TLB_DSI_FLUSH:
957 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
958 break;
959 case DMA_TLB_PSI_FLUSH:
960 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
961 /* Note: always flush non-leaf currently */
962 val_iva = size_order | addr;
963 break;
964 default:
965 BUG();
966 }
967 /* Note: set drain read/write */
968#if 0
969 /*
970 * This is probably to be super secure.. Looks like we can
971 * ignore it without any impact.
972 */
973 if (cap_read_drain(iommu->cap))
974 val |= DMA_TLB_READ_DRAIN;
975#endif
976 if (cap_write_drain(iommu->cap))
977 val |= DMA_TLB_WRITE_DRAIN;
978
979 spin_lock_irqsave(&iommu->register_lock, flag);
980 /* Note: Only uses first TLB reg currently */
981 if (val_iva)
982 dmar_writeq(iommu->reg + tlb_offset, val_iva);
983 dmar_writeq(iommu->reg + tlb_offset + 8, val);
984
985 /* Make sure hardware complete it */
986 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
987 dmar_readq, (!(val & DMA_TLB_IVT)), val);
988
989 spin_unlock_irqrestore(&iommu->register_lock, flag);
990
991 /* check IOTLB invalidation granularity */
992 if (DMA_TLB_IAIG(val) == 0)
993 printk(KERN_ERR"IOMMU: flush IOTLB failed\n");
994 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
995 pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700996 (unsigned long long)DMA_TLB_IIRG(type),
997 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700998}
999
Yu Zhao93a23a72009-05-18 13:51:37 +08001000static struct device_domain_info *iommu_support_dev_iotlb(
1001 struct dmar_domain *domain, int segment, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001002{
Yu Zhao93a23a72009-05-18 13:51:37 +08001003 int found = 0;
1004 unsigned long flags;
1005 struct device_domain_info *info;
1006 struct intel_iommu *iommu = device_to_iommu(segment, bus, devfn);
1007
1008 if (!ecap_dev_iotlb_support(iommu->ecap))
1009 return NULL;
1010
1011 if (!iommu->qi)
1012 return NULL;
1013
1014 spin_lock_irqsave(&device_domain_lock, flags);
1015 list_for_each_entry(info, &domain->devices, link)
1016 if (info->bus == bus && info->devfn == devfn) {
1017 found = 1;
1018 break;
1019 }
1020 spin_unlock_irqrestore(&device_domain_lock, flags);
1021
1022 if (!found || !info->dev)
1023 return NULL;
1024
1025 if (!pci_find_ext_capability(info->dev, PCI_EXT_CAP_ID_ATS))
1026 return NULL;
1027
1028 if (!dmar_find_matched_atsr_unit(info->dev))
1029 return NULL;
1030
1031 info->iommu = iommu;
1032
1033 return info;
1034}
1035
1036static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1037{
1038 if (!info)
1039 return;
1040
1041 pci_enable_ats(info->dev, VTD_PAGE_SHIFT);
1042}
1043
1044static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1045{
1046 if (!info->dev || !pci_ats_enabled(info->dev))
1047 return;
1048
1049 pci_disable_ats(info->dev);
1050}
1051
1052static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1053 u64 addr, unsigned mask)
1054{
1055 u16 sid, qdep;
1056 unsigned long flags;
1057 struct device_domain_info *info;
1058
1059 spin_lock_irqsave(&device_domain_lock, flags);
1060 list_for_each_entry(info, &domain->devices, link) {
1061 if (!info->dev || !pci_ats_enabled(info->dev))
1062 continue;
1063
1064 sid = info->bus << 8 | info->devfn;
1065 qdep = pci_ats_queue_depth(info->dev);
1066 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1067 }
1068 spin_unlock_irqrestore(&device_domain_lock, flags);
1069}
1070
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001071static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did,
David Woodhouse03d6a242009-06-28 15:33:46 +01001072 unsigned long pfn, unsigned int pages)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001073{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001074 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001075 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001076
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001077 BUG_ON(pages == 0);
1078
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001079 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001080 * Fallback to domain selective flush if no PSI support or the size is
1081 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001082 * PSI requires page size to be 2 ^ x, and the base address is naturally
1083 * aligned to the size
1084 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001085 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1086 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001087 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001088 else
1089 iommu->flush.flush_iotlb(iommu, did, addr, mask,
1090 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001091
1092 /*
1093 * In caching mode, domain ID 0 is reserved for non-present to present
1094 * mapping flush. Device IOTLB doesn't need to be flushed in this case.
1095 */
1096 if (!cap_caching_mode(iommu->cap) || did)
Yu Zhao93a23a72009-05-18 13:51:37 +08001097 iommu_flush_dev_iotlb(iommu->domains[did], addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001098}
1099
mark grossf8bab732008-02-08 04:18:38 -08001100static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1101{
1102 u32 pmen;
1103 unsigned long flags;
1104
1105 spin_lock_irqsave(&iommu->register_lock, flags);
1106 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1107 pmen &= ~DMA_PMEN_EPM;
1108 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1109
1110 /* wait for the protected region status bit to clear */
1111 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1112 readl, !(pmen & DMA_PMEN_PRS), pmen);
1113
1114 spin_unlock_irqrestore(&iommu->register_lock, flags);
1115}
1116
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001117static int iommu_enable_translation(struct intel_iommu *iommu)
1118{
1119 u32 sts;
1120 unsigned long flags;
1121
1122 spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001123 iommu->gcmd |= DMA_GCMD_TE;
1124 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001125
1126 /* Make sure hardware complete it */
1127 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001128 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001129
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001130 spin_unlock_irqrestore(&iommu->register_lock, flags);
1131 return 0;
1132}
1133
1134static int iommu_disable_translation(struct intel_iommu *iommu)
1135{
1136 u32 sts;
1137 unsigned long flag;
1138
1139 spin_lock_irqsave(&iommu->register_lock, flag);
1140 iommu->gcmd &= ~DMA_GCMD_TE;
1141 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1142
1143 /* Make sure hardware complete it */
1144 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001145 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001146
1147 spin_unlock_irqrestore(&iommu->register_lock, flag);
1148 return 0;
1149}
1150
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001151
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001152static int iommu_init_domains(struct intel_iommu *iommu)
1153{
1154 unsigned long ndomains;
1155 unsigned long nlongs;
1156
1157 ndomains = cap_ndoms(iommu->cap);
1158 pr_debug("Number of Domains supportd <%ld>\n", ndomains);
1159 nlongs = BITS_TO_LONGS(ndomains);
1160
1161 /* TBD: there might be 64K domains,
1162 * consider other allocation for future chip
1163 */
1164 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1165 if (!iommu->domain_ids) {
1166 printk(KERN_ERR "Allocating domain id array failed\n");
1167 return -ENOMEM;
1168 }
1169 iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *),
1170 GFP_KERNEL);
1171 if (!iommu->domains) {
1172 printk(KERN_ERR "Allocating domain array failed\n");
1173 kfree(iommu->domain_ids);
1174 return -ENOMEM;
1175 }
1176
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001177 spin_lock_init(&iommu->lock);
1178
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001179 /*
1180 * if Caching mode is set, then invalid translations are tagged
1181 * with domainid 0. Hence we need to pre-allocate it.
1182 */
1183 if (cap_caching_mode(iommu->cap))
1184 set_bit(0, iommu->domain_ids);
1185 return 0;
1186}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001187
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001188
1189static void domain_exit(struct dmar_domain *domain);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001190static void vm_domain_exit(struct dmar_domain *domain);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001191
1192void free_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001193{
1194 struct dmar_domain *domain;
1195 int i;
Weidong Hanc7151a82008-12-08 22:51:37 +08001196 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001197
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001198 i = find_first_bit(iommu->domain_ids, cap_ndoms(iommu->cap));
1199 for (; i < cap_ndoms(iommu->cap); ) {
1200 domain = iommu->domains[i];
1201 clear_bit(i, iommu->domain_ids);
Weidong Hanc7151a82008-12-08 22:51:37 +08001202
1203 spin_lock_irqsave(&domain->iommu_lock, flags);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001204 if (--domain->iommu_count == 0) {
1205 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE)
1206 vm_domain_exit(domain);
1207 else
1208 domain_exit(domain);
1209 }
Weidong Hanc7151a82008-12-08 22:51:37 +08001210 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1211
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001212 i = find_next_bit(iommu->domain_ids,
1213 cap_ndoms(iommu->cap), i+1);
1214 }
1215
1216 if (iommu->gcmd & DMA_GCMD_TE)
1217 iommu_disable_translation(iommu);
1218
1219 if (iommu->irq) {
1220 set_irq_data(iommu->irq, NULL);
1221 /* This will mask the irq */
1222 free_irq(iommu->irq, iommu);
1223 destroy_irq(iommu->irq);
1224 }
1225
1226 kfree(iommu->domains);
1227 kfree(iommu->domain_ids);
1228
Weidong Hand9630fe2008-12-08 11:06:32 +08001229 g_iommus[iommu->seq_id] = NULL;
1230
1231 /* if all iommus are freed, free g_iommus */
1232 for (i = 0; i < g_num_of_iommus; i++) {
1233 if (g_iommus[i])
1234 break;
1235 }
1236
1237 if (i == g_num_of_iommus)
1238 kfree(g_iommus);
1239
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001240 /* free context mapping */
1241 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001242}
1243
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001244static struct dmar_domain *alloc_domain(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001245{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001246 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001247
1248 domain = alloc_domain_mem();
1249 if (!domain)
1250 return NULL;
1251
Weidong Han8c11e792008-12-08 15:29:22 +08001252 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
Weidong Hand71a2f32008-12-07 21:13:41 +08001253 domain->flags = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001254
1255 return domain;
1256}
1257
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001258static int iommu_attach_domain(struct dmar_domain *domain,
1259 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001260{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001261 int num;
1262 unsigned long ndomains;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001263 unsigned long flags;
1264
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001265 ndomains = cap_ndoms(iommu->cap);
Weidong Han8c11e792008-12-08 15:29:22 +08001266
1267 spin_lock_irqsave(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001268
1269 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1270 if (num >= ndomains) {
1271 spin_unlock_irqrestore(&iommu->lock, flags);
1272 printk(KERN_ERR "IOMMU: no free domain ids\n");
1273 return -ENOMEM;
1274 }
1275
1276 domain->id = num;
1277 set_bit(num, iommu->domain_ids);
1278 set_bit(iommu->seq_id, &domain->iommu_bmp);
1279 iommu->domains[num] = domain;
1280 spin_unlock_irqrestore(&iommu->lock, flags);
1281
1282 return 0;
1283}
1284
1285static void iommu_detach_domain(struct dmar_domain *domain,
1286 struct intel_iommu *iommu)
1287{
1288 unsigned long flags;
1289 int num, ndomains;
1290 int found = 0;
1291
1292 spin_lock_irqsave(&iommu->lock, flags);
1293 ndomains = cap_ndoms(iommu->cap);
1294 num = find_first_bit(iommu->domain_ids, ndomains);
1295 for (; num < ndomains; ) {
1296 if (iommu->domains[num] == domain) {
1297 found = 1;
1298 break;
1299 }
1300 num = find_next_bit(iommu->domain_ids,
1301 cap_ndoms(iommu->cap), num+1);
1302 }
1303
1304 if (found) {
1305 clear_bit(num, iommu->domain_ids);
1306 clear_bit(iommu->seq_id, &domain->iommu_bmp);
1307 iommu->domains[num] = NULL;
1308 }
Weidong Han8c11e792008-12-08 15:29:22 +08001309 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001310}
1311
1312static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001313static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001314
1315static void dmar_init_reserved_ranges(void)
1316{
1317 struct pci_dev *pdev = NULL;
1318 struct iova *iova;
1319 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001320
David Millerf6611972008-02-06 01:36:23 -08001321 init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001322
Mark Gross8a443df2008-03-04 14:59:31 -08001323 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1324 &reserved_rbtree_key);
1325
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001326 /* IOAPIC ranges shouldn't be accessed by DMA */
1327 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1328 IOVA_PFN(IOAPIC_RANGE_END));
1329 if (!iova)
1330 printk(KERN_ERR "Reserve IOAPIC range failed\n");
1331
1332 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1333 for_each_pci_dev(pdev) {
1334 struct resource *r;
1335
1336 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1337 r = &pdev->resource[i];
1338 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1339 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001340 iova = reserve_iova(&reserved_iova_list,
1341 IOVA_PFN(r->start),
1342 IOVA_PFN(r->end));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001343 if (!iova)
1344 printk(KERN_ERR "Reserve iova failed\n");
1345 }
1346 }
1347
1348}
1349
1350static void domain_reserve_special_ranges(struct dmar_domain *domain)
1351{
1352 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1353}
1354
1355static inline int guestwidth_to_adjustwidth(int gaw)
1356{
1357 int agaw;
1358 int r = (gaw - 12) % 9;
1359
1360 if (r == 0)
1361 agaw = gaw;
1362 else
1363 agaw = gaw + 9 - r;
1364 if (agaw > 64)
1365 agaw = 64;
1366 return agaw;
1367}
1368
1369static int domain_init(struct dmar_domain *domain, int guest_width)
1370{
1371 struct intel_iommu *iommu;
1372 int adjust_width, agaw;
1373 unsigned long sagaw;
1374
David Millerf6611972008-02-06 01:36:23 -08001375 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Hanc7151a82008-12-08 22:51:37 +08001376 spin_lock_init(&domain->iommu_lock);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001377
1378 domain_reserve_special_ranges(domain);
1379
1380 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001381 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001382 if (guest_width > cap_mgaw(iommu->cap))
1383 guest_width = cap_mgaw(iommu->cap);
1384 domain->gaw = guest_width;
1385 adjust_width = guestwidth_to_adjustwidth(guest_width);
1386 agaw = width_to_agaw(adjust_width);
1387 sagaw = cap_sagaw(iommu->cap);
1388 if (!test_bit(agaw, &sagaw)) {
1389 /* hardware doesn't support it, choose a bigger one */
1390 pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw);
1391 agaw = find_next_bit(&sagaw, 5, agaw);
1392 if (agaw >= 5)
1393 return -ENODEV;
1394 }
1395 domain->agaw = agaw;
1396 INIT_LIST_HEAD(&domain->devices);
1397
Weidong Han8e6040972008-12-08 15:49:06 +08001398 if (ecap_coherent(iommu->ecap))
1399 domain->iommu_coherency = 1;
1400 else
1401 domain->iommu_coherency = 0;
1402
Sheng Yang58c610b2009-03-18 15:33:05 +08001403 if (ecap_sc_support(iommu->ecap))
1404 domain->iommu_snooping = 1;
1405 else
1406 domain->iommu_snooping = 0;
1407
Weidong Hanc7151a82008-12-08 22:51:37 +08001408 domain->iommu_count = 1;
1409
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001410 /* always allocate the top pgd */
1411 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
1412 if (!domain->pgd)
1413 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001414 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001415 return 0;
1416}
1417
1418static void domain_exit(struct dmar_domain *domain)
1419{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001420 struct dmar_drhd_unit *drhd;
1421 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001422
1423 /* Domain 0 is reserved, so dont process it */
1424 if (!domain)
1425 return;
1426
1427 domain_remove_dev_info(domain);
1428 /* destroy iovas */
1429 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001430
1431 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01001432 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001433
1434 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01001435 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001436
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001437 for_each_active_iommu(iommu, drhd)
1438 if (test_bit(iommu->seq_id, &domain->iommu_bmp))
1439 iommu_detach_domain(domain, iommu);
1440
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001441 free_domain_mem(domain);
1442}
1443
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001444static int domain_context_mapping_one(struct dmar_domain *domain, int segment,
1445 u8 bus, u8 devfn, int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001446{
1447 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001448 unsigned long flags;
Weidong Han5331fe62008-12-08 23:00:00 +08001449 struct intel_iommu *iommu;
Weidong Hanea6606b2008-12-08 23:08:15 +08001450 struct dma_pte *pgd;
1451 unsigned long num;
1452 unsigned long ndomains;
1453 int id;
1454 int agaw;
Yu Zhao93a23a72009-05-18 13:51:37 +08001455 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001456
1457 pr_debug("Set context mapping for %02x:%02x.%d\n",
1458 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001459
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001460 BUG_ON(!domain->pgd);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001461 BUG_ON(translation != CONTEXT_TT_PASS_THROUGH &&
1462 translation != CONTEXT_TT_MULTI_LEVEL);
Weidong Han5331fe62008-12-08 23:00:00 +08001463
David Woodhouse276dbf92009-04-04 01:45:37 +01001464 iommu = device_to_iommu(segment, bus, devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001465 if (!iommu)
1466 return -ENODEV;
1467
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001468 context = device_to_context_entry(iommu, bus, devfn);
1469 if (!context)
1470 return -ENOMEM;
1471 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001472 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001473 spin_unlock_irqrestore(&iommu->lock, flags);
1474 return 0;
1475 }
1476
Weidong Hanea6606b2008-12-08 23:08:15 +08001477 id = domain->id;
1478 pgd = domain->pgd;
1479
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001480 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1481 domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001482 int found = 0;
1483
1484 /* find an available domain id for this device in iommu */
1485 ndomains = cap_ndoms(iommu->cap);
1486 num = find_first_bit(iommu->domain_ids, ndomains);
1487 for (; num < ndomains; ) {
1488 if (iommu->domains[num] == domain) {
1489 id = num;
1490 found = 1;
1491 break;
1492 }
1493 num = find_next_bit(iommu->domain_ids,
1494 cap_ndoms(iommu->cap), num+1);
1495 }
1496
1497 if (found == 0) {
1498 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1499 if (num >= ndomains) {
1500 spin_unlock_irqrestore(&iommu->lock, flags);
1501 printk(KERN_ERR "IOMMU: no free domain ids\n");
1502 return -EFAULT;
1503 }
1504
1505 set_bit(num, iommu->domain_ids);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001506 set_bit(iommu->seq_id, &domain->iommu_bmp);
Weidong Hanea6606b2008-12-08 23:08:15 +08001507 iommu->domains[num] = domain;
1508 id = num;
1509 }
1510
1511 /* Skip top levels of page tables for
1512 * iommu which has less agaw than default.
1513 */
1514 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1515 pgd = phys_to_virt(dma_pte_addr(pgd));
1516 if (!dma_pte_present(pgd)) {
1517 spin_unlock_irqrestore(&iommu->lock, flags);
1518 return -ENOMEM;
1519 }
1520 }
1521 }
1522
1523 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001524
Yu Zhao93a23a72009-05-18 13:51:37 +08001525 if (translation != CONTEXT_TT_PASS_THROUGH) {
1526 info = iommu_support_dev_iotlb(domain, segment, bus, devfn);
1527 translation = info ? CONTEXT_TT_DEV_IOTLB :
1528 CONTEXT_TT_MULTI_LEVEL;
1529 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001530 /*
1531 * In pass through mode, AW must be programmed to indicate the largest
1532 * AGAW value supported by hardware. And ASR is ignored by hardware.
1533 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001534 if (unlikely(translation == CONTEXT_TT_PASS_THROUGH))
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001535 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001536 else {
1537 context_set_address_root(context, virt_to_phys(pgd));
1538 context_set_address_width(context, iommu->agaw);
1539 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001540
1541 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001542 context_set_fault_enable(context);
1543 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001544 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001545
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001546 /*
1547 * It's a non-present to present mapping. If hardware doesn't cache
1548 * non-present entry we only need to flush the write-buffer. If the
1549 * _does_ cache non-present entries, then it does so in the special
1550 * domain #0, which we have to flush:
1551 */
1552 if (cap_caching_mode(iommu->cap)) {
1553 iommu->flush.flush_context(iommu, 0,
1554 (((u16)bus) << 8) | devfn,
1555 DMA_CCMD_MASK_NOBIT,
1556 DMA_CCMD_DEVICE_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001557 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001558 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001559 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001560 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001561 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001562 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001563
1564 spin_lock_irqsave(&domain->iommu_lock, flags);
1565 if (!test_and_set_bit(iommu->seq_id, &domain->iommu_bmp)) {
1566 domain->iommu_count++;
Sheng Yang58c610b2009-03-18 15:33:05 +08001567 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08001568 }
1569 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001570 return 0;
1571}
1572
1573static int
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001574domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev,
1575 int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001576{
1577 int ret;
1578 struct pci_dev *tmp, *parent;
1579
David Woodhouse276dbf92009-04-04 01:45:37 +01001580 ret = domain_context_mapping_one(domain, pci_domain_nr(pdev->bus),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001581 pdev->bus->number, pdev->devfn,
1582 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001583 if (ret)
1584 return ret;
1585
1586 /* dependent device mapping */
1587 tmp = pci_find_upstream_pcie_bridge(pdev);
1588 if (!tmp)
1589 return 0;
1590 /* Secondary interface's bus number and devfn 0 */
1591 parent = pdev->bus->self;
1592 while (parent != tmp) {
David Woodhouse276dbf92009-04-04 01:45:37 +01001593 ret = domain_context_mapping_one(domain,
1594 pci_domain_nr(parent->bus),
1595 parent->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001596 parent->devfn, translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001597 if (ret)
1598 return ret;
1599 parent = parent->bus->self;
1600 }
1601 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
1602 return domain_context_mapping_one(domain,
David Woodhouse276dbf92009-04-04 01:45:37 +01001603 pci_domain_nr(tmp->subordinate),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001604 tmp->subordinate->number, 0,
1605 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001606 else /* this is a legacy PCI bridge */
1607 return domain_context_mapping_one(domain,
David Woodhouse276dbf92009-04-04 01:45:37 +01001608 pci_domain_nr(tmp->bus),
1609 tmp->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001610 tmp->devfn,
1611 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001612}
1613
Weidong Han5331fe62008-12-08 23:00:00 +08001614static int domain_context_mapped(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001615{
1616 int ret;
1617 struct pci_dev *tmp, *parent;
Weidong Han5331fe62008-12-08 23:00:00 +08001618 struct intel_iommu *iommu;
1619
David Woodhouse276dbf92009-04-04 01:45:37 +01001620 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
1621 pdev->devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001622 if (!iommu)
1623 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001624
David Woodhouse276dbf92009-04-04 01:45:37 +01001625 ret = device_context_mapped(iommu, pdev->bus->number, pdev->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001626 if (!ret)
1627 return ret;
1628 /* dependent device mapping */
1629 tmp = pci_find_upstream_pcie_bridge(pdev);
1630 if (!tmp)
1631 return ret;
1632 /* Secondary interface's bus number and devfn 0 */
1633 parent = pdev->bus->self;
1634 while (parent != tmp) {
Weidong Han8c11e792008-12-08 15:29:22 +08001635 ret = device_context_mapped(iommu, parent->bus->number,
David Woodhouse276dbf92009-04-04 01:45:37 +01001636 parent->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001637 if (!ret)
1638 return ret;
1639 parent = parent->bus->self;
1640 }
1641 if (tmp->is_pcie)
David Woodhouse276dbf92009-04-04 01:45:37 +01001642 return device_context_mapped(iommu, tmp->subordinate->number,
1643 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001644 else
David Woodhouse276dbf92009-04-04 01:45:37 +01001645 return device_context_mapped(iommu, tmp->bus->number,
1646 tmp->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001647}
1648
David Woodhouse9051aa02009-06-29 12:30:54 +01001649static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1650 struct scatterlist *sg, unsigned long phys_pfn,
1651 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01001652{
1653 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01001654 phys_addr_t uninitialized_var(pteval);
David Woodhousee1605492009-06-29 11:17:38 +01001655 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse9051aa02009-06-29 12:30:54 +01001656 unsigned long sg_res;
David Woodhousee1605492009-06-29 11:17:38 +01001657
1658 BUG_ON(addr_width < BITS_PER_LONG && (iov_pfn + nr_pages - 1) >> addr_width);
1659
1660 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
1661 return -EINVAL;
1662
1663 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
1664
David Woodhouse9051aa02009-06-29 12:30:54 +01001665 if (sg)
1666 sg_res = 0;
1667 else {
1668 sg_res = nr_pages + 1;
1669 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
1670 }
1671
David Woodhousee1605492009-06-29 11:17:38 +01001672 while (nr_pages--) {
David Woodhousec85994e2009-07-01 19:21:24 +01001673 uint64_t tmp;
1674
David Woodhousee1605492009-06-29 11:17:38 +01001675 if (!sg_res) {
1676 sg_res = (sg->offset + sg->length + VTD_PAGE_SIZE - 1) >> VTD_PAGE_SHIFT;
1677 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
1678 sg->dma_length = sg->length;
1679 pteval = page_to_phys(sg_page(sg)) | prot;
1680 }
1681 if (!pte) {
1682 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn);
1683 if (!pte)
1684 return -ENOMEM;
1685 }
1686 /* We don't need lock here, nobody else
1687 * touches the iova range
1688 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01001689 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01001690 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01001691 static int dumps = 5;
David Woodhousec85994e2009-07-01 19:21:24 +01001692 printk(KERN_CRIT "ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
1693 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01001694 if (dumps) {
1695 dumps--;
1696 debug_dma_dump_mappings(NULL);
1697 }
1698 WARN_ON(1);
1699 }
David Woodhousee1605492009-06-29 11:17:38 +01001700 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +01001701 if (!nr_pages || first_pte_in_page(pte)) {
David Woodhousee1605492009-06-29 11:17:38 +01001702 domain_flush_cache(domain, first_pte,
1703 (void *)pte - (void *)first_pte);
1704 pte = NULL;
1705 }
1706 iov_pfn++;
1707 pteval += VTD_PAGE_SIZE;
1708 sg_res--;
1709 if (!sg_res)
1710 sg = sg_next(sg);
1711 }
1712 return 0;
1713}
1714
David Woodhouse9051aa02009-06-29 12:30:54 +01001715static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1716 struct scatterlist *sg, unsigned long nr_pages,
1717 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001718{
David Woodhouse9051aa02009-06-29 12:30:54 +01001719 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
1720}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001721
David Woodhouse9051aa02009-06-29 12:30:54 +01001722static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1723 unsigned long phys_pfn, unsigned long nr_pages,
1724 int prot)
1725{
1726 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001727}
1728
Weidong Hanc7151a82008-12-08 22:51:37 +08001729static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001730{
Weidong Hanc7151a82008-12-08 22:51:37 +08001731 if (!iommu)
1732 return;
Weidong Han8c11e792008-12-08 15:29:22 +08001733
1734 clear_context_table(iommu, bus, devfn);
1735 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001736 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001737 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001738}
1739
1740static void domain_remove_dev_info(struct dmar_domain *domain)
1741{
1742 struct device_domain_info *info;
1743 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08001744 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001745
1746 spin_lock_irqsave(&device_domain_lock, flags);
1747 while (!list_empty(&domain->devices)) {
1748 info = list_entry(domain->devices.next,
1749 struct device_domain_info, link);
1750 list_del(&info->link);
1751 list_del(&info->global);
1752 if (info->dev)
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001753 info->dev->dev.archdata.iommu = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001754 spin_unlock_irqrestore(&device_domain_lock, flags);
1755
Yu Zhao93a23a72009-05-18 13:51:37 +08001756 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf92009-04-04 01:45:37 +01001757 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08001758 iommu_detach_dev(iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001759 free_devinfo_mem(info);
1760
1761 spin_lock_irqsave(&device_domain_lock, flags);
1762 }
1763 spin_unlock_irqrestore(&device_domain_lock, flags);
1764}
1765
1766/*
1767 * find_domain
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001768 * Note: we use struct pci_dev->dev.archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001769 */
Kay, Allen M38717942008-09-09 18:37:29 +03001770static struct dmar_domain *
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001771find_domain(struct pci_dev *pdev)
1772{
1773 struct device_domain_info *info;
1774
1775 /* No lock here, assumes no domain exit in normal case */
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001776 info = pdev->dev.archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001777 if (info)
1778 return info->domain;
1779 return NULL;
1780}
1781
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001782/* domain is initialized */
1783static struct dmar_domain *get_domain_for_dev(struct pci_dev *pdev, int gaw)
1784{
1785 struct dmar_domain *domain, *found = NULL;
1786 struct intel_iommu *iommu;
1787 struct dmar_drhd_unit *drhd;
1788 struct device_domain_info *info, *tmp;
1789 struct pci_dev *dev_tmp;
1790 unsigned long flags;
1791 int bus = 0, devfn = 0;
David Woodhouse276dbf92009-04-04 01:45:37 +01001792 int segment;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001793 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001794
1795 domain = find_domain(pdev);
1796 if (domain)
1797 return domain;
1798
David Woodhouse276dbf92009-04-04 01:45:37 +01001799 segment = pci_domain_nr(pdev->bus);
1800
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001801 dev_tmp = pci_find_upstream_pcie_bridge(pdev);
1802 if (dev_tmp) {
1803 if (dev_tmp->is_pcie) {
1804 bus = dev_tmp->subordinate->number;
1805 devfn = 0;
1806 } else {
1807 bus = dev_tmp->bus->number;
1808 devfn = dev_tmp->devfn;
1809 }
1810 spin_lock_irqsave(&device_domain_lock, flags);
1811 list_for_each_entry(info, &device_domain_list, global) {
David Woodhouse276dbf92009-04-04 01:45:37 +01001812 if (info->segment == segment &&
1813 info->bus == bus && info->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001814 found = info->domain;
1815 break;
1816 }
1817 }
1818 spin_unlock_irqrestore(&device_domain_lock, flags);
1819 /* pcie-pci bridge already has a domain, uses it */
1820 if (found) {
1821 domain = found;
1822 goto found_domain;
1823 }
1824 }
1825
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001826 domain = alloc_domain();
1827 if (!domain)
1828 goto error;
1829
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001830 /* Allocate new domain for the device */
1831 drhd = dmar_find_matched_drhd_unit(pdev);
1832 if (!drhd) {
1833 printk(KERN_ERR "IOMMU: can't find DMAR for device %s\n",
1834 pci_name(pdev));
1835 return NULL;
1836 }
1837 iommu = drhd->iommu;
1838
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001839 ret = iommu_attach_domain(domain, iommu);
1840 if (ret) {
1841 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001842 goto error;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001843 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001844
1845 if (domain_init(domain, gaw)) {
1846 domain_exit(domain);
1847 goto error;
1848 }
1849
1850 /* register pcie-to-pci device */
1851 if (dev_tmp) {
1852 info = alloc_devinfo_mem();
1853 if (!info) {
1854 domain_exit(domain);
1855 goto error;
1856 }
David Woodhouse276dbf92009-04-04 01:45:37 +01001857 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001858 info->bus = bus;
1859 info->devfn = devfn;
1860 info->dev = NULL;
1861 info->domain = domain;
1862 /* This domain is shared by devices under p2p bridge */
Weidong Han3b5410e2008-12-08 09:17:15 +08001863 domain->flags |= DOMAIN_FLAG_P2P_MULTIPLE_DEVICES;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001864
1865 /* pcie-to-pci bridge already has a domain, uses it */
1866 found = NULL;
1867 spin_lock_irqsave(&device_domain_lock, flags);
1868 list_for_each_entry(tmp, &device_domain_list, global) {
David Woodhouse276dbf92009-04-04 01:45:37 +01001869 if (tmp->segment == segment &&
1870 tmp->bus == bus && tmp->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001871 found = tmp->domain;
1872 break;
1873 }
1874 }
1875 if (found) {
1876 free_devinfo_mem(info);
1877 domain_exit(domain);
1878 domain = found;
1879 } else {
1880 list_add(&info->link, &domain->devices);
1881 list_add(&info->global, &device_domain_list);
1882 }
1883 spin_unlock_irqrestore(&device_domain_lock, flags);
1884 }
1885
1886found_domain:
1887 info = alloc_devinfo_mem();
1888 if (!info)
1889 goto error;
David Woodhouse276dbf92009-04-04 01:45:37 +01001890 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001891 info->bus = pdev->bus->number;
1892 info->devfn = pdev->devfn;
1893 info->dev = pdev;
1894 info->domain = domain;
1895 spin_lock_irqsave(&device_domain_lock, flags);
1896 /* somebody is fast */
1897 found = find_domain(pdev);
1898 if (found != NULL) {
1899 spin_unlock_irqrestore(&device_domain_lock, flags);
1900 if (found != domain) {
1901 domain_exit(domain);
1902 domain = found;
1903 }
1904 free_devinfo_mem(info);
1905 return domain;
1906 }
1907 list_add(&info->link, &domain->devices);
1908 list_add(&info->global, &device_domain_list);
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001909 pdev->dev.archdata.iommu = info;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001910 spin_unlock_irqrestore(&device_domain_lock, flags);
1911 return domain;
1912error:
1913 /* recheck it here, maybe others set it */
1914 return find_domain(pdev);
1915}
1916
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001917static int iommu_identity_mapping;
1918
David Woodhouseb2132032009-06-26 18:50:28 +01001919static int iommu_domain_identity_map(struct dmar_domain *domain,
1920 unsigned long long start,
1921 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001922{
David Woodhousec5395d52009-06-28 16:35:56 +01001923 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
1924 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001925
David Woodhousec5395d52009-06-28 16:35:56 +01001926 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
1927 dma_to_mm_pfn(last_vpfn))) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001928 printk(KERN_ERR "IOMMU: reserve iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01001929 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001930 }
1931
David Woodhousec5395d52009-06-28 16:35:56 +01001932 pr_debug("Mapping reserved region %llx-%llx for domain %d\n",
1933 start, end, domain->id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001934 /*
1935 * RMRR range might have overlap with physical memory range,
1936 * clear it first
1937 */
David Woodhousec5395d52009-06-28 16:35:56 +01001938 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001939
David Woodhousec5395d52009-06-28 16:35:56 +01001940 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
1941 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01001942 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01001943}
1944
1945static int iommu_prepare_identity_map(struct pci_dev *pdev,
1946 unsigned long long start,
1947 unsigned long long end)
1948{
1949 struct dmar_domain *domain;
1950 int ret;
1951
David Woodhousec7ab48d2009-06-26 19:10:36 +01001952 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01001953 if (!domain)
1954 return -ENOMEM;
1955
David Woodhouse19943b02009-08-04 16:19:20 +01001956 /* For _hardware_ passthrough, don't bother. But for software
1957 passthrough, we do it anyway -- it may indicate a memory
1958 range which is reserved in E820, so which didn't get set
1959 up to start with in si_domain */
1960 if (domain == si_domain && hw_pass_through) {
1961 printk("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
1962 pci_name(pdev), start, end);
1963 return 0;
1964 }
1965
1966 printk(KERN_INFO
1967 "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
1968 pci_name(pdev), start, end);
1969
David Woodhouseb2132032009-06-26 18:50:28 +01001970 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001971 if (ret)
1972 goto error;
1973
1974 /* context entry init */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001975 ret = domain_context_mapping(domain, pdev, CONTEXT_TT_MULTI_LEVEL);
David Woodhouseb2132032009-06-26 18:50:28 +01001976 if (ret)
1977 goto error;
1978
1979 return 0;
1980
1981 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001982 domain_exit(domain);
1983 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001984}
1985
1986static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
1987 struct pci_dev *pdev)
1988{
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001989 if (pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001990 return 0;
1991 return iommu_prepare_identity_map(pdev, rmrr->base_address,
1992 rmrr->end_address + 1);
1993}
1994
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001995#ifdef CONFIG_DMAR_FLOPPY_WA
1996static inline void iommu_prepare_isa(void)
1997{
1998 struct pci_dev *pdev;
1999 int ret;
2000
2001 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2002 if (!pdev)
2003 return;
2004
David Woodhousec7ab48d2009-06-26 19:10:36 +01002005 printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002006 ret = iommu_prepare_identity_map(pdev, 0, 16*1024*1024);
2007
2008 if (ret)
David Woodhousec7ab48d2009-06-26 19:10:36 +01002009 printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; "
2010 "floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002011
2012}
2013#else
2014static inline void iommu_prepare_isa(void)
2015{
2016 return;
2017}
2018#endif /* !CONFIG_DMAR_FLPY_WA */
2019
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002020static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002021
2022static int __init si_domain_work_fn(unsigned long start_pfn,
2023 unsigned long end_pfn, void *datax)
2024{
2025 int *ret = datax;
2026
2027 *ret = iommu_domain_identity_map(si_domain,
2028 (uint64_t)start_pfn << PAGE_SHIFT,
2029 (uint64_t)end_pfn << PAGE_SHIFT);
2030 return *ret;
2031
2032}
2033
David Woodhouse19943b02009-08-04 16:19:20 +01002034static int si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002035{
2036 struct dmar_drhd_unit *drhd;
2037 struct intel_iommu *iommu;
David Woodhousec7ab48d2009-06-26 19:10:36 +01002038 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002039
2040 si_domain = alloc_domain();
2041 if (!si_domain)
2042 return -EFAULT;
2043
David Woodhousec7ab48d2009-06-26 19:10:36 +01002044 pr_debug("Identity mapping domain is domain %d\n", si_domain->id);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002045
2046 for_each_active_iommu(iommu, drhd) {
2047 ret = iommu_attach_domain(si_domain, iommu);
2048 if (ret) {
2049 domain_exit(si_domain);
2050 return -EFAULT;
2051 }
2052 }
2053
2054 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2055 domain_exit(si_domain);
2056 return -EFAULT;
2057 }
2058
2059 si_domain->flags = DOMAIN_FLAG_STATIC_IDENTITY;
2060
David Woodhouse19943b02009-08-04 16:19:20 +01002061 if (hw)
2062 return 0;
2063
David Woodhousec7ab48d2009-06-26 19:10:36 +01002064 for_each_online_node(nid) {
2065 work_with_active_regions(nid, si_domain_work_fn, &ret);
2066 if (ret)
2067 return ret;
2068 }
2069
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002070 return 0;
2071}
2072
2073static void domain_remove_one_dev_info(struct dmar_domain *domain,
2074 struct pci_dev *pdev);
2075static int identity_mapping(struct pci_dev *pdev)
2076{
2077 struct device_domain_info *info;
2078
2079 if (likely(!iommu_identity_mapping))
2080 return 0;
2081
2082
2083 list_for_each_entry(info, &si_domain->devices, link)
2084 if (info->dev == pdev)
2085 return 1;
2086 return 0;
2087}
2088
2089static int domain_add_dev_info(struct dmar_domain *domain,
2090 struct pci_dev *pdev)
2091{
2092 struct device_domain_info *info;
2093 unsigned long flags;
2094
2095 info = alloc_devinfo_mem();
2096 if (!info)
2097 return -ENOMEM;
2098
2099 info->segment = pci_domain_nr(pdev->bus);
2100 info->bus = pdev->bus->number;
2101 info->devfn = pdev->devfn;
2102 info->dev = pdev;
2103 info->domain = domain;
2104
2105 spin_lock_irqsave(&device_domain_lock, flags);
2106 list_add(&info->link, &domain->devices);
2107 list_add(&info->global, &device_domain_list);
2108 pdev->dev.archdata.iommu = info;
2109 spin_unlock_irqrestore(&device_domain_lock, flags);
2110
2111 return 0;
2112}
2113
David Woodhouse6941af22009-07-04 18:24:27 +01002114static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
2115{
2116 if (iommu_identity_mapping == 2)
2117 return IS_GFX_DEVICE(pdev);
2118
David Woodhouse3dfc8132009-07-04 19:11:08 +01002119 /*
2120 * We want to start off with all devices in the 1:1 domain, and
2121 * take them out later if we find they can't access all of memory.
2122 *
2123 * However, we can't do this for PCI devices behind bridges,
2124 * because all PCI devices behind the same bridge will end up
2125 * with the same source-id on their transactions.
2126 *
2127 * Practically speaking, we can't change things around for these
2128 * devices at run-time, because we can't be sure there'll be no
2129 * DMA transactions in flight for any of their siblings.
2130 *
2131 * So PCI devices (unless they're on the root bus) as well as
2132 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2133 * the 1:1 domain, just in _case_ one of their siblings turns out
2134 * not to be able to map all of memory.
2135 */
2136 if (!pdev->is_pcie) {
2137 if (!pci_is_root_bus(pdev->bus))
2138 return 0;
2139 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2140 return 0;
2141 } else if (pdev->pcie_type == PCI_EXP_TYPE_PCI_BRIDGE)
2142 return 0;
2143
2144 /*
2145 * At boot time, we don't yet know if devices will be 64-bit capable.
2146 * Assume that they will -- if they turn out not to be, then we can
2147 * take them out of the 1:1 domain later.
2148 */
David Woodhouse6941af22009-07-04 18:24:27 +01002149 if (!startup)
2150 return pdev->dma_mask > DMA_BIT_MASK(32);
2151
2152 return 1;
2153}
2154
David Woodhouse19943b02009-08-04 16:19:20 +01002155static int iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002156{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002157 struct pci_dev *pdev = NULL;
2158 int ret;
2159
David Woodhouse19943b02009-08-04 16:19:20 +01002160 ret = si_domain_init(hw);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002161 if (ret)
2162 return -EFAULT;
2163
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002164 for_each_pci_dev(pdev) {
David Woodhouse6941af22009-07-04 18:24:27 +01002165 if (iommu_should_identity_map(pdev, 1)) {
David Woodhouse19943b02009-08-04 16:19:20 +01002166 printk(KERN_INFO "IOMMU: %s identity mapping for device %s\n",
2167 hw ? "hardware" : "software", pci_name(pdev));
David Woodhousec7ab48d2009-06-26 19:10:36 +01002168
David Woodhouse62edf5d2009-07-04 10:59:46 +01002169 ret = domain_context_mapping(si_domain, pdev,
David Woodhouse19943b02009-08-04 16:19:20 +01002170 hw ? CONTEXT_TT_PASS_THROUGH :
David Woodhouse62edf5d2009-07-04 10:59:46 +01002171 CONTEXT_TT_MULTI_LEVEL);
2172 if (ret)
2173 return ret;
David Woodhouse19943b02009-08-04 16:19:20 +01002174
David Woodhouse62edf5d2009-07-04 10:59:46 +01002175 ret = domain_add_dev_info(si_domain, pdev);
2176 if (ret)
2177 return ret;
2178 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002179 }
2180
2181 return 0;
2182}
2183
2184int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002185{
2186 struct dmar_drhd_unit *drhd;
2187 struct dmar_rmrr_unit *rmrr;
2188 struct pci_dev *pdev;
2189 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002190 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002191
2192 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002193 * for each drhd
2194 * allocate root
2195 * initialize and program root entry to not present
2196 * endfor
2197 */
2198 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002199 g_num_of_iommus++;
2200 /*
2201 * lock not needed as this is only incremented in the single
2202 * threaded kernel __init code path all other access are read
2203 * only
2204 */
2205 }
2206
Weidong Hand9630fe2008-12-08 11:06:32 +08002207 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
2208 GFP_KERNEL);
2209 if (!g_iommus) {
2210 printk(KERN_ERR "Allocating global iommu array failed\n");
2211 ret = -ENOMEM;
2212 goto error;
2213 }
2214
mark gross80b20dd2008-04-18 13:53:58 -07002215 deferred_flush = kzalloc(g_num_of_iommus *
2216 sizeof(struct deferred_flush_tables), GFP_KERNEL);
2217 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08002218 ret = -ENOMEM;
2219 goto error;
2220 }
2221
mark gross5e0d2a62008-03-04 15:22:08 -08002222 for_each_drhd_unit(drhd) {
2223 if (drhd->ignored)
2224 continue;
Suresh Siddha1886e8a2008-07-10 11:16:37 -07002225
2226 iommu = drhd->iommu;
Weidong Hand9630fe2008-12-08 11:06:32 +08002227 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002228
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002229 ret = iommu_init_domains(iommu);
2230 if (ret)
2231 goto error;
2232
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002233 /*
2234 * TBD:
2235 * we could share the same root & context tables
2236 * amoung all IOMMU's. Need to Split it later.
2237 */
2238 ret = iommu_alloc_root_entry(iommu);
2239 if (ret) {
2240 printk(KERN_ERR "IOMMU: allocate root entry failed\n");
2241 goto error;
2242 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002243 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01002244 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002245 }
2246
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002247 /*
2248 * Start from the sane iommu hardware state.
2249 */
Youquan Songa77b67d2008-10-16 16:31:56 -07002250 for_each_drhd_unit(drhd) {
2251 if (drhd->ignored)
2252 continue;
2253
2254 iommu = drhd->iommu;
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002255
2256 /*
2257 * If the queued invalidation is already initialized by us
2258 * (for example, while enabling interrupt-remapping) then
2259 * we got the things already rolling from a sane state.
2260 */
2261 if (iommu->qi)
2262 continue;
2263
2264 /*
2265 * Clear any previous faults.
2266 */
2267 dmar_fault(-1, iommu);
2268 /*
2269 * Disable queued invalidation if supported and already enabled
2270 * before OS handover.
2271 */
2272 dmar_disable_qi(iommu);
2273 }
2274
2275 for_each_drhd_unit(drhd) {
2276 if (drhd->ignored)
2277 continue;
2278
2279 iommu = drhd->iommu;
2280
Youquan Songa77b67d2008-10-16 16:31:56 -07002281 if (dmar_enable_qi(iommu)) {
2282 /*
2283 * Queued Invalidate not enabled, use Register Based
2284 * Invalidate
2285 */
2286 iommu->flush.flush_context = __iommu_flush_context;
2287 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
2288 printk(KERN_INFO "IOMMU 0x%Lx: using Register based "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002289 "invalidation\n",
2290 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002291 } else {
2292 iommu->flush.flush_context = qi_flush_context;
2293 iommu->flush.flush_iotlb = qi_flush_iotlb;
2294 printk(KERN_INFO "IOMMU 0x%Lx: using Queued "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002295 "invalidation\n",
2296 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002297 }
2298 }
2299
David Woodhouse19943b02009-08-04 16:19:20 +01002300 if (iommu_pass_through)
2301 iommu_identity_mapping = 1;
2302#ifdef CONFIG_DMAR_BROKEN_GFX_WA
2303 else
2304 iommu_identity_mapping = 2;
2305#endif
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002306 /*
2307 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002308 * identity mappings for rmrr, gfx, and isa and may fall back to static
2309 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002310 */
David Woodhouse19943b02009-08-04 16:19:20 +01002311 if (iommu_identity_mapping) {
2312 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
2313 if (ret) {
2314 printk(KERN_CRIT "Failed to setup IOMMU pass-through\n");
2315 goto error;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002316 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002317 }
David Woodhouse19943b02009-08-04 16:19:20 +01002318 /*
2319 * For each rmrr
2320 * for each dev attached to rmrr
2321 * do
2322 * locate drhd for dev, alloc domain for dev
2323 * allocate free domain
2324 * allocate page table entries for rmrr
2325 * if context not allocated for bus
2326 * allocate and init context
2327 * set present in root table for this bus
2328 * init context with domain, translation etc
2329 * endfor
2330 * endfor
2331 */
2332 printk(KERN_INFO "IOMMU: Setting RMRR:\n");
2333 for_each_rmrr_units(rmrr) {
2334 for (i = 0; i < rmrr->devices_cnt; i++) {
2335 pdev = rmrr->devices[i];
2336 /*
2337 * some BIOS lists non-exist devices in DMAR
2338 * table.
2339 */
2340 if (!pdev)
2341 continue;
2342 ret = iommu_prepare_rmrr_dev(rmrr, pdev);
2343 if (ret)
2344 printk(KERN_ERR
2345 "IOMMU: mapping reserved region failed\n");
2346 }
2347 }
2348
2349 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002350
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002351 /*
2352 * for each drhd
2353 * enable fault log
2354 * global invalidate context cache
2355 * global invalidate iotlb
2356 * enable translation
2357 */
2358 for_each_drhd_unit(drhd) {
2359 if (drhd->ignored)
2360 continue;
2361 iommu = drhd->iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002362
2363 iommu_flush_write_buffer(iommu);
2364
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002365 ret = dmar_set_interrupt(iommu);
2366 if (ret)
2367 goto error;
2368
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002369 iommu_set_root_entry(iommu);
2370
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002371 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002372 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
mark grossf8bab732008-02-08 04:18:38 -08002373 iommu_disable_protect_mem_regions(iommu);
2374
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002375 ret = iommu_enable_translation(iommu);
2376 if (ret)
2377 goto error;
2378 }
2379
2380 return 0;
2381error:
2382 for_each_drhd_unit(drhd) {
2383 if (drhd->ignored)
2384 continue;
2385 iommu = drhd->iommu;
2386 free_iommu(iommu);
2387 }
Weidong Hand9630fe2008-12-08 11:06:32 +08002388 kfree(g_iommus);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002389 return ret;
2390}
2391
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002392/* Returns a number of VTD pages, but aligned to MM page size */
David Woodhouse88cb6a72009-06-28 15:03:06 +01002393static inline unsigned long aligned_nrpages(unsigned long host_addr,
2394 size_t size)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002395{
David Woodhouse88cb6a72009-06-28 15:03:06 +01002396 host_addr &= ~PAGE_MASK;
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002397 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002398}
2399
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002400/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01002401static struct iova *intel_alloc_iova(struct device *dev,
2402 struct dmar_domain *domain,
2403 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002404{
2405 struct pci_dev *pdev = to_pci_dev(dev);
2406 struct iova *iova = NULL;
2407
David Woodhouse875764d2009-06-28 21:20:51 +01002408 /* Restrict dma_mask to the width that the iommu can handle */
2409 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
2410
2411 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002412 /*
2413 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07002414 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08002415 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002416 */
David Woodhouse875764d2009-06-28 21:20:51 +01002417 iova = alloc_iova(&domain->iovad, nrpages,
2418 IOVA_PFN(DMA_BIT_MASK(32)), 1);
2419 if (iova)
2420 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002421 }
David Woodhouse875764d2009-06-28 21:20:51 +01002422 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
2423 if (unlikely(!iova)) {
2424 printk(KERN_ERR "Allocating %ld-page iova for %s failed",
2425 nrpages, pci_name(pdev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002426 return NULL;
2427 }
2428
2429 return iova;
2430}
2431
David Woodhouse147202a2009-07-07 19:43:20 +01002432static struct dmar_domain *__get_valid_domain_for_dev(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002433{
2434 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002435 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002436
2437 domain = get_domain_for_dev(pdev,
2438 DEFAULT_DOMAIN_ADDRESS_WIDTH);
2439 if (!domain) {
2440 printk(KERN_ERR
2441 "Allocating domain for %s failed", pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002442 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002443 }
2444
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002445 /* make sure context mapping is ok */
Weidong Han5331fe62008-12-08 23:00:00 +08002446 if (unlikely(!domain_context_mapped(pdev))) {
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002447 ret = domain_context_mapping(domain, pdev,
2448 CONTEXT_TT_MULTI_LEVEL);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002449 if (ret) {
2450 printk(KERN_ERR
2451 "Domain context map for %s failed",
2452 pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002453 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002454 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002455 }
2456
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002457 return domain;
2458}
2459
David Woodhouse147202a2009-07-07 19:43:20 +01002460static inline struct dmar_domain *get_valid_domain_for_dev(struct pci_dev *dev)
2461{
2462 struct device_domain_info *info;
2463
2464 /* No lock here, assumes no domain exit in normal case */
2465 info = dev->dev.archdata.iommu;
2466 if (likely(info))
2467 return info->domain;
2468
2469 return __get_valid_domain_for_dev(dev);
2470}
2471
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002472static int iommu_dummy(struct pci_dev *pdev)
2473{
2474 return pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
2475}
2476
2477/* Check if the pdev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01002478static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002479{
David Woodhouse73676832009-07-04 14:08:36 +01002480 struct pci_dev *pdev;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002481 int found;
2482
David Woodhouse73676832009-07-04 14:08:36 +01002483 if (unlikely(dev->bus != &pci_bus_type))
2484 return 1;
2485
2486 pdev = to_pci_dev(dev);
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002487 if (iommu_dummy(pdev))
2488 return 1;
2489
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002490 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002491 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002492
2493 found = identity_mapping(pdev);
2494 if (found) {
David Woodhouse6941af22009-07-04 18:24:27 +01002495 if (iommu_should_identity_map(pdev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002496 return 1;
2497 else {
2498 /*
2499 * 32 bit DMA is removed from si_domain and fall back
2500 * to non-identity mapping.
2501 */
2502 domain_remove_one_dev_info(si_domain, pdev);
2503 printk(KERN_INFO "32bit %s uses non-identity mapping\n",
2504 pci_name(pdev));
2505 return 0;
2506 }
2507 } else {
2508 /*
2509 * In case of a detached 64 bit DMA device from vm, the device
2510 * is put into si_domain for identity mapping.
2511 */
David Woodhouse6941af22009-07-04 18:24:27 +01002512 if (iommu_should_identity_map(pdev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002513 int ret;
2514 ret = domain_add_dev_info(si_domain, pdev);
David Woodhouse1b7bc0a2009-07-04 10:49:46 +01002515 if (ret)
2516 return 0;
David Woodhouse19943b02009-08-04 16:19:20 +01002517 ret = domain_context_mapping(si_domain, pdev,
2518 hw_pass_through ?
2519 CONTEXT_TT_PASS_THROUGH :
2520 CONTEXT_TT_MULTI_LEVEL);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002521 if (!ret) {
2522 printk(KERN_INFO "64bit %s uses identity mapping\n",
2523 pci_name(pdev));
2524 return 1;
2525 }
2526 }
2527 }
2528
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002529 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002530}
2531
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002532static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
2533 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002534{
2535 struct pci_dev *pdev = to_pci_dev(hwdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002536 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002537 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002538 struct iova *iova;
2539 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002540 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08002541 struct intel_iommu *iommu;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002542
2543 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002544
David Woodhouse73676832009-07-04 14:08:36 +01002545 if (iommu_no_mapping(hwdev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002546 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002547
2548 domain = get_valid_domain_for_dev(pdev);
2549 if (!domain)
2550 return 0;
2551
Weidong Han8c11e792008-12-08 15:29:22 +08002552 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01002553 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002554
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002555 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
2556 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002557 if (!iova)
2558 goto error;
2559
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002560 /*
2561 * Check if DMAR supports zero-length reads on write only
2562 * mappings..
2563 */
2564 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002565 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002566 prot |= DMA_PTE_READ;
2567 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2568 prot |= DMA_PTE_WRITE;
2569 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002570 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002571 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002572 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002573 * is not a big problem
2574 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01002575 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
2576 paddr >> VTD_PAGE_SHIFT, size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002577 if (ret)
2578 goto error;
2579
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002580 /* it's a non-present to present mapping. Only flush if caching mode */
2581 if (cap_caching_mode(iommu->cap))
David Woodhouse03d6a242009-06-28 15:33:46 +01002582 iommu_flush_iotlb_psi(iommu, 0, mm_to_dma_pfn(iova->pfn_lo), size);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002583 else
Weidong Han8c11e792008-12-08 15:29:22 +08002584 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002585
David Woodhouse03d6a242009-06-28 15:33:46 +01002586 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
2587 start_paddr += paddr & ~PAGE_MASK;
2588 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002589
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002590error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002591 if (iova)
2592 __free_iova(&domain->iovad, iova);
David Woodhouse4cf2e752009-02-11 17:23:43 +00002593 printk(KERN_ERR"Device %s request: %zx@%llx dir %d --- failed\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002594 pci_name(pdev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002595 return 0;
2596}
2597
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002598static dma_addr_t intel_map_page(struct device *dev, struct page *page,
2599 unsigned long offset, size_t size,
2600 enum dma_data_direction dir,
2601 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002602{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002603 return __intel_map_single(dev, page_to_phys(page) + offset, size,
2604 dir, to_pci_dev(dev)->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002605}
2606
mark gross5e0d2a62008-03-04 15:22:08 -08002607static void flush_unmaps(void)
2608{
mark gross80b20dd2008-04-18 13:53:58 -07002609 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08002610
mark gross5e0d2a62008-03-04 15:22:08 -08002611 timer_on = 0;
2612
2613 /* just flush them all */
2614 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08002615 struct intel_iommu *iommu = g_iommus[i];
2616 if (!iommu)
2617 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002618
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002619 if (!deferred_flush[i].next)
2620 continue;
2621
2622 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08002623 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002624 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08002625 unsigned long mask;
2626 struct iova *iova = deferred_flush[i].iova[j];
2627
2628 mask = (iova->pfn_hi - iova->pfn_lo + 1) << PAGE_SHIFT;
2629 mask = ilog2(mask >> VTD_PAGE_SHIFT);
2630 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
2631 iova->pfn_lo << PAGE_SHIFT, mask);
2632 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
mark gross80b20dd2008-04-18 13:53:58 -07002633 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002634 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002635 }
2636
mark gross5e0d2a62008-03-04 15:22:08 -08002637 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002638}
2639
2640static void flush_unmaps_timeout(unsigned long data)
2641{
mark gross80b20dd2008-04-18 13:53:58 -07002642 unsigned long flags;
2643
2644 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002645 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07002646 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002647}
2648
2649static void add_unmap(struct dmar_domain *dom, struct iova *iova)
2650{
2651 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07002652 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08002653 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08002654
2655 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07002656 if (list_size == HIGH_WATER_MARK)
2657 flush_unmaps();
2658
Weidong Han8c11e792008-12-08 15:29:22 +08002659 iommu = domain_get_iommu(dom);
2660 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002661
mark gross80b20dd2008-04-18 13:53:58 -07002662 next = deferred_flush[iommu_id].next;
2663 deferred_flush[iommu_id].domain[next] = dom;
2664 deferred_flush[iommu_id].iova[next] = iova;
2665 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08002666
2667 if (!timer_on) {
2668 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
2669 timer_on = 1;
2670 }
2671 list_size++;
2672 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
2673}
2674
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002675static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
2676 size_t size, enum dma_data_direction dir,
2677 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002678{
2679 struct pci_dev *pdev = to_pci_dev(dev);
2680 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002681 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002682 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002683 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002684
David Woodhouse73676832009-07-04 14:08:36 +01002685 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002686 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002687
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002688 domain = find_domain(pdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002689 BUG_ON(!domain);
2690
Weidong Han8c11e792008-12-08 15:29:22 +08002691 iommu = domain_get_iommu(domain);
2692
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002693 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01002694 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
2695 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002696 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002697
David Woodhoused794dc92009-06-28 00:27:49 +01002698 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2699 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002700
David Woodhoused794dc92009-06-28 00:27:49 +01002701 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
2702 pci_name(pdev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002703
2704 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002705 dma_pte_clear_range(domain, start_pfn, last_pfn);
2706
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002707 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01002708 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2709
mark gross5e0d2a62008-03-04 15:22:08 -08002710 if (intel_iommu_strict) {
David Woodhouse03d6a242009-06-28 15:33:46 +01002711 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
David Woodhoused794dc92009-06-28 00:27:49 +01002712 last_pfn - start_pfn + 1);
mark gross5e0d2a62008-03-04 15:22:08 -08002713 /* free iova */
2714 __free_iova(&domain->iovad, iova);
2715 } else {
2716 add_unmap(domain, iova);
2717 /*
2718 * queue up the release of the unmap to save the 1/6th of the
2719 * cpu used up by the iotlb flush operation...
2720 */
mark gross5e0d2a62008-03-04 15:22:08 -08002721 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002722}
2723
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002724static void *intel_alloc_coherent(struct device *hwdev, size_t size,
2725 dma_addr_t *dma_handle, gfp_t flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002726{
2727 void *vaddr;
2728 int order;
2729
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002730 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002731 order = get_order(size);
2732 flags &= ~(GFP_DMA | GFP_DMA32);
2733
2734 vaddr = (void *)__get_free_pages(flags, order);
2735 if (!vaddr)
2736 return NULL;
2737 memset(vaddr, 0, size);
2738
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002739 *dma_handle = __intel_map_single(hwdev, virt_to_bus(vaddr), size,
2740 DMA_BIDIRECTIONAL,
2741 hwdev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002742 if (*dma_handle)
2743 return vaddr;
2744 free_pages((unsigned long)vaddr, order);
2745 return NULL;
2746}
2747
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002748static void intel_free_coherent(struct device *hwdev, size_t size, void *vaddr,
2749 dma_addr_t dma_handle)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002750{
2751 int order;
2752
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002753 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002754 order = get_order(size);
2755
David Woodhouse0db9b7a2009-07-14 02:01:57 +01002756 intel_unmap_page(hwdev, dma_handle, size, DMA_BIDIRECTIONAL, NULL);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002757 free_pages((unsigned long)vaddr, order);
2758}
2759
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002760static void intel_unmap_sg(struct device *hwdev, struct scatterlist *sglist,
2761 int nelems, enum dma_data_direction dir,
2762 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002763{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002764 struct pci_dev *pdev = to_pci_dev(hwdev);
2765 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002766 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002767 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002768 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002769
David Woodhouse73676832009-07-04 14:08:36 +01002770 if (iommu_no_mapping(hwdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002771 return;
2772
2773 domain = find_domain(pdev);
Weidong Han8c11e792008-12-08 15:29:22 +08002774 BUG_ON(!domain);
2775
2776 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002777
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002778 iova = find_iova(&domain->iovad, IOVA_PFN(sglist[0].dma_address));
David Woodhouse85b98272009-07-01 19:27:53 +01002779 if (WARN_ONCE(!iova, "Driver unmaps unmatched sglist at PFN %llx\n",
2780 (unsigned long long)sglist[0].dma_address))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002781 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002782
David Woodhoused794dc92009-06-28 00:27:49 +01002783 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2784 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002785
2786 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002787 dma_pte_clear_range(domain, start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002788
David Woodhoused794dc92009-06-28 00:27:49 +01002789 /* free page tables */
2790 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2791
David Woodhouseacea0012009-07-14 01:55:11 +01002792 if (intel_iommu_strict) {
2793 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
2794 last_pfn - start_pfn + 1);
2795 /* free iova */
2796 __free_iova(&domain->iovad, iova);
2797 } else {
2798 add_unmap(domain, iova);
2799 /*
2800 * queue up the release of the unmap to save the 1/6th of the
2801 * cpu used up by the iotlb flush operation...
2802 */
2803 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002804}
2805
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002806static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002807 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002808{
2809 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002810 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002811
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002812 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02002813 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00002814 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002815 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002816 }
2817 return nelems;
2818}
2819
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002820static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int nelems,
2821 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002822{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002823 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002824 struct pci_dev *pdev = to_pci_dev(hwdev);
2825 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002826 size_t size = 0;
2827 int prot = 0;
David Woodhouseb536d242009-06-28 14:49:31 +01002828 size_t offset_pfn = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002829 struct iova *iova = NULL;
2830 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002831 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01002832 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08002833 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002834
2835 BUG_ON(dir == DMA_NONE);
David Woodhouse73676832009-07-04 14:08:36 +01002836 if (iommu_no_mapping(hwdev))
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002837 return intel_nontranslate_map_sg(hwdev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002838
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002839 domain = get_valid_domain_for_dev(pdev);
2840 if (!domain)
2841 return 0;
2842
Weidong Han8c11e792008-12-08 15:29:22 +08002843 iommu = domain_get_iommu(domain);
2844
David Woodhouseb536d242009-06-28 14:49:31 +01002845 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01002846 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002847
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002848 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
2849 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002850 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002851 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002852 return 0;
2853 }
2854
2855 /*
2856 * Check if DMAR supports zero-length reads on write only
2857 * mappings..
2858 */
2859 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002860 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002861 prot |= DMA_PTE_READ;
2862 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2863 prot |= DMA_PTE_WRITE;
2864
David Woodhouseb536d242009-06-28 14:49:31 +01002865 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01002866
2867 ret = domain_sg_mapping(domain, start_vpfn, sglist, mm_to_dma_pfn(size), prot);
2868 if (unlikely(ret)) {
2869 /* clear the page */
2870 dma_pte_clear_range(domain, start_vpfn,
2871 start_vpfn + size - 1);
2872 /* free page tables */
2873 dma_pte_free_pagetable(domain, start_vpfn,
2874 start_vpfn + size - 1);
2875 /* free iova */
2876 __free_iova(&domain->iovad, iova);
2877 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002878 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002879
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002880 /* it's a non-present to present mapping. Only flush if caching mode */
2881 if (cap_caching_mode(iommu->cap))
David Woodhouse03d6a242009-06-28 15:33:46 +01002882 iommu_flush_iotlb_psi(iommu, 0, start_vpfn, offset_pfn);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002883 else
Weidong Han8c11e792008-12-08 15:29:22 +08002884 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002885
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002886 return nelems;
2887}
2888
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002889static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
2890{
2891 return !dma_addr;
2892}
2893
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002894struct dma_map_ops intel_dma_ops = {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002895 .alloc_coherent = intel_alloc_coherent,
2896 .free_coherent = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002897 .map_sg = intel_map_sg,
2898 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002899 .map_page = intel_map_page,
2900 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002901 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002902};
2903
2904static inline int iommu_domain_cache_init(void)
2905{
2906 int ret = 0;
2907
2908 iommu_domain_cache = kmem_cache_create("iommu_domain",
2909 sizeof(struct dmar_domain),
2910 0,
2911 SLAB_HWCACHE_ALIGN,
2912
2913 NULL);
2914 if (!iommu_domain_cache) {
2915 printk(KERN_ERR "Couldn't create iommu_domain cache\n");
2916 ret = -ENOMEM;
2917 }
2918
2919 return ret;
2920}
2921
2922static inline int iommu_devinfo_cache_init(void)
2923{
2924 int ret = 0;
2925
2926 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
2927 sizeof(struct device_domain_info),
2928 0,
2929 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002930 NULL);
2931 if (!iommu_devinfo_cache) {
2932 printk(KERN_ERR "Couldn't create devinfo cache\n");
2933 ret = -ENOMEM;
2934 }
2935
2936 return ret;
2937}
2938
2939static inline int iommu_iova_cache_init(void)
2940{
2941 int ret = 0;
2942
2943 iommu_iova_cache = kmem_cache_create("iommu_iova",
2944 sizeof(struct iova),
2945 0,
2946 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002947 NULL);
2948 if (!iommu_iova_cache) {
2949 printk(KERN_ERR "Couldn't create iova cache\n");
2950 ret = -ENOMEM;
2951 }
2952
2953 return ret;
2954}
2955
2956static int __init iommu_init_mempool(void)
2957{
2958 int ret;
2959 ret = iommu_iova_cache_init();
2960 if (ret)
2961 return ret;
2962
2963 ret = iommu_domain_cache_init();
2964 if (ret)
2965 goto domain_error;
2966
2967 ret = iommu_devinfo_cache_init();
2968 if (!ret)
2969 return ret;
2970
2971 kmem_cache_destroy(iommu_domain_cache);
2972domain_error:
2973 kmem_cache_destroy(iommu_iova_cache);
2974
2975 return -ENOMEM;
2976}
2977
2978static void __init iommu_exit_mempool(void)
2979{
2980 kmem_cache_destroy(iommu_devinfo_cache);
2981 kmem_cache_destroy(iommu_domain_cache);
2982 kmem_cache_destroy(iommu_iova_cache);
2983
2984}
2985
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002986static void __init init_no_remapping_devices(void)
2987{
2988 struct dmar_drhd_unit *drhd;
2989
2990 for_each_drhd_unit(drhd) {
2991 if (!drhd->include_all) {
2992 int i;
2993 for (i = 0; i < drhd->devices_cnt; i++)
2994 if (drhd->devices[i] != NULL)
2995 break;
2996 /* ignore DMAR unit if no pci devices exist */
2997 if (i == drhd->devices_cnt)
2998 drhd->ignored = 1;
2999 }
3000 }
3001
3002 if (dmar_map_gfx)
3003 return;
3004
3005 for_each_drhd_unit(drhd) {
3006 int i;
3007 if (drhd->ignored || drhd->include_all)
3008 continue;
3009
3010 for (i = 0; i < drhd->devices_cnt; i++)
3011 if (drhd->devices[i] &&
3012 !IS_GFX_DEVICE(drhd->devices[i]))
3013 break;
3014
3015 if (i < drhd->devices_cnt)
3016 continue;
3017
3018 /* bypass IOMMU if it is just for gfx devices */
3019 drhd->ignored = 1;
3020 for (i = 0; i < drhd->devices_cnt; i++) {
3021 if (!drhd->devices[i])
3022 continue;
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07003023 drhd->devices[i]->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003024 }
3025 }
3026}
3027
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003028#ifdef CONFIG_SUSPEND
3029static int init_iommu_hw(void)
3030{
3031 struct dmar_drhd_unit *drhd;
3032 struct intel_iommu *iommu = NULL;
3033
3034 for_each_active_iommu(iommu, drhd)
3035 if (iommu->qi)
3036 dmar_reenable_qi(iommu);
3037
3038 for_each_active_iommu(iommu, drhd) {
3039 iommu_flush_write_buffer(iommu);
3040
3041 iommu_set_root_entry(iommu);
3042
3043 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003044 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003045 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003046 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003047 iommu_disable_protect_mem_regions(iommu);
3048 iommu_enable_translation(iommu);
3049 }
3050
3051 return 0;
3052}
3053
3054static void iommu_flush_all(void)
3055{
3056 struct dmar_drhd_unit *drhd;
3057 struct intel_iommu *iommu;
3058
3059 for_each_active_iommu(iommu, drhd) {
3060 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003061 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003062 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003063 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003064 }
3065}
3066
3067static int iommu_suspend(struct sys_device *dev, pm_message_t state)
3068{
3069 struct dmar_drhd_unit *drhd;
3070 struct intel_iommu *iommu = NULL;
3071 unsigned long flag;
3072
3073 for_each_active_iommu(iommu, drhd) {
3074 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3075 GFP_ATOMIC);
3076 if (!iommu->iommu_state)
3077 goto nomem;
3078 }
3079
3080 iommu_flush_all();
3081
3082 for_each_active_iommu(iommu, drhd) {
3083 iommu_disable_translation(iommu);
3084
3085 spin_lock_irqsave(&iommu->register_lock, flag);
3086
3087 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3088 readl(iommu->reg + DMAR_FECTL_REG);
3089 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3090 readl(iommu->reg + DMAR_FEDATA_REG);
3091 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3092 readl(iommu->reg + DMAR_FEADDR_REG);
3093 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3094 readl(iommu->reg + DMAR_FEUADDR_REG);
3095
3096 spin_unlock_irqrestore(&iommu->register_lock, flag);
3097 }
3098 return 0;
3099
3100nomem:
3101 for_each_active_iommu(iommu, drhd)
3102 kfree(iommu->iommu_state);
3103
3104 return -ENOMEM;
3105}
3106
3107static int iommu_resume(struct sys_device *dev)
3108{
3109 struct dmar_drhd_unit *drhd;
3110 struct intel_iommu *iommu = NULL;
3111 unsigned long flag;
3112
3113 if (init_iommu_hw()) {
3114 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
3115 return -EIO;
3116 }
3117
3118 for_each_active_iommu(iommu, drhd) {
3119
3120 spin_lock_irqsave(&iommu->register_lock, flag);
3121
3122 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3123 iommu->reg + DMAR_FECTL_REG);
3124 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3125 iommu->reg + DMAR_FEDATA_REG);
3126 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3127 iommu->reg + DMAR_FEADDR_REG);
3128 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3129 iommu->reg + DMAR_FEUADDR_REG);
3130
3131 spin_unlock_irqrestore(&iommu->register_lock, flag);
3132 }
3133
3134 for_each_active_iommu(iommu, drhd)
3135 kfree(iommu->iommu_state);
3136
3137 return 0;
3138}
3139
3140static struct sysdev_class iommu_sysclass = {
3141 .name = "iommu",
3142 .resume = iommu_resume,
3143 .suspend = iommu_suspend,
3144};
3145
3146static struct sys_device device_iommu = {
3147 .cls = &iommu_sysclass,
3148};
3149
3150static int __init init_iommu_sysfs(void)
3151{
3152 int error;
3153
3154 error = sysdev_class_register(&iommu_sysclass);
3155 if (error)
3156 return error;
3157
3158 error = sysdev_register(&device_iommu);
3159 if (error)
3160 sysdev_class_unregister(&iommu_sysclass);
3161
3162 return error;
3163}
3164
3165#else
3166static int __init init_iommu_sysfs(void)
3167{
3168 return 0;
3169}
3170#endif /* CONFIG_PM */
3171
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003172int __init intel_iommu_init(void)
3173{
3174 int ret = 0;
3175
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003176 if (dmar_table_init())
3177 return -ENODEV;
3178
Suresh Siddha1886e8a2008-07-10 11:16:37 -07003179 if (dmar_dev_scope_init())
3180 return -ENODEV;
3181
Suresh Siddha2ae21012008-07-10 11:16:43 -07003182 /*
3183 * Check the need for DMA-remapping initialization now.
3184 * Above initialization will also be used by Interrupt-remapping.
3185 */
David Woodhouse19943b02009-08-04 16:19:20 +01003186 if (no_iommu || swiotlb || dmar_disabled)
Suresh Siddha2ae21012008-07-10 11:16:43 -07003187 return -ENODEV;
3188
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003189 iommu_init_mempool();
3190 dmar_init_reserved_ranges();
3191
3192 init_no_remapping_devices();
3193
3194 ret = init_dmars();
3195 if (ret) {
3196 printk(KERN_ERR "IOMMU: dmar init failed\n");
3197 put_iova_domain(&reserved_iova_list);
3198 iommu_exit_mempool();
3199 return ret;
3200 }
3201 printk(KERN_INFO
3202 "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n");
3203
mark gross5e0d2a62008-03-04 15:22:08 -08003204 init_timer(&unmap_timer);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003205 force_iommu = 1;
David Woodhouse19943b02009-08-04 16:19:20 +01003206 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003207
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003208 init_iommu_sysfs();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003209
3210 register_iommu(&intel_iommu_ops);
3211
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003212 return 0;
3213}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07003214
Han, Weidong3199aa62009-02-26 17:31:12 +08003215static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
3216 struct pci_dev *pdev)
3217{
3218 struct pci_dev *tmp, *parent;
3219
3220 if (!iommu || !pdev)
3221 return;
3222
3223 /* dependent device detach */
3224 tmp = pci_find_upstream_pcie_bridge(pdev);
3225 /* Secondary interface's bus number and devfn 0 */
3226 if (tmp) {
3227 parent = pdev->bus->self;
3228 while (parent != tmp) {
3229 iommu_detach_dev(iommu, parent->bus->number,
David Woodhouse276dbf92009-04-04 01:45:37 +01003230 parent->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003231 parent = parent->bus->self;
3232 }
3233 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
3234 iommu_detach_dev(iommu,
3235 tmp->subordinate->number, 0);
3236 else /* this is a legacy PCI bridge */
David Woodhouse276dbf92009-04-04 01:45:37 +01003237 iommu_detach_dev(iommu, tmp->bus->number,
3238 tmp->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003239 }
3240}
3241
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003242static void domain_remove_one_dev_info(struct dmar_domain *domain,
Weidong Hanc7151a82008-12-08 22:51:37 +08003243 struct pci_dev *pdev)
3244{
3245 struct device_domain_info *info;
3246 struct intel_iommu *iommu;
3247 unsigned long flags;
3248 int found = 0;
3249 struct list_head *entry, *tmp;
3250
David Woodhouse276dbf92009-04-04 01:45:37 +01003251 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3252 pdev->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003253 if (!iommu)
3254 return;
3255
3256 spin_lock_irqsave(&device_domain_lock, flags);
3257 list_for_each_safe(entry, tmp, &domain->devices) {
3258 info = list_entry(entry, struct device_domain_info, link);
David Woodhouse276dbf92009-04-04 01:45:37 +01003259 /* No need to compare PCI domain; it has to be the same */
Weidong Hanc7151a82008-12-08 22:51:37 +08003260 if (info->bus == pdev->bus->number &&
3261 info->devfn == pdev->devfn) {
3262 list_del(&info->link);
3263 list_del(&info->global);
3264 if (info->dev)
3265 info->dev->dev.archdata.iommu = NULL;
3266 spin_unlock_irqrestore(&device_domain_lock, flags);
3267
Yu Zhao93a23a72009-05-18 13:51:37 +08003268 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08003269 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003270 iommu_detach_dependent_devices(iommu, pdev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003271 free_devinfo_mem(info);
3272
3273 spin_lock_irqsave(&device_domain_lock, flags);
3274
3275 if (found)
3276 break;
3277 else
3278 continue;
3279 }
3280
3281 /* if there is no other devices under the same iommu
3282 * owned by this domain, clear this iommu in iommu_bmp
3283 * update iommu count and coherency
3284 */
David Woodhouse276dbf92009-04-04 01:45:37 +01003285 if (iommu == device_to_iommu(info->segment, info->bus,
3286 info->devfn))
Weidong Hanc7151a82008-12-08 22:51:37 +08003287 found = 1;
3288 }
3289
3290 if (found == 0) {
3291 unsigned long tmp_flags;
3292 spin_lock_irqsave(&domain->iommu_lock, tmp_flags);
3293 clear_bit(iommu->seq_id, &domain->iommu_bmp);
3294 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003295 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003296 spin_unlock_irqrestore(&domain->iommu_lock, tmp_flags);
3297 }
3298
3299 spin_unlock_irqrestore(&device_domain_lock, flags);
3300}
3301
3302static void vm_domain_remove_all_dev_info(struct dmar_domain *domain)
3303{
3304 struct device_domain_info *info;
3305 struct intel_iommu *iommu;
3306 unsigned long flags1, flags2;
3307
3308 spin_lock_irqsave(&device_domain_lock, flags1);
3309 while (!list_empty(&domain->devices)) {
3310 info = list_entry(domain->devices.next,
3311 struct device_domain_info, link);
3312 list_del(&info->link);
3313 list_del(&info->global);
3314 if (info->dev)
3315 info->dev->dev.archdata.iommu = NULL;
3316
3317 spin_unlock_irqrestore(&device_domain_lock, flags1);
3318
Yu Zhao93a23a72009-05-18 13:51:37 +08003319 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf92009-04-04 01:45:37 +01003320 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003321 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003322 iommu_detach_dependent_devices(iommu, info->dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003323
3324 /* clear this iommu in iommu_bmp, update iommu count
Sheng Yang58c610b2009-03-18 15:33:05 +08003325 * and capabilities
Weidong Hanc7151a82008-12-08 22:51:37 +08003326 */
3327 spin_lock_irqsave(&domain->iommu_lock, flags2);
3328 if (test_and_clear_bit(iommu->seq_id,
3329 &domain->iommu_bmp)) {
3330 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003331 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003332 }
3333 spin_unlock_irqrestore(&domain->iommu_lock, flags2);
3334
3335 free_devinfo_mem(info);
3336 spin_lock_irqsave(&device_domain_lock, flags1);
3337 }
3338 spin_unlock_irqrestore(&device_domain_lock, flags1);
3339}
3340
Weidong Han5e98c4b2008-12-08 23:03:27 +08003341/* domain id for virtual machine, it won't be set in context */
3342static unsigned long vm_domid;
3343
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003344static int vm_domain_min_agaw(struct dmar_domain *domain)
3345{
3346 int i;
3347 int min_agaw = domain->agaw;
3348
3349 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
3350 for (; i < g_num_of_iommus; ) {
3351 if (min_agaw > g_iommus[i]->agaw)
3352 min_agaw = g_iommus[i]->agaw;
3353
3354 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
3355 }
3356
3357 return min_agaw;
3358}
3359
Weidong Han5e98c4b2008-12-08 23:03:27 +08003360static struct dmar_domain *iommu_alloc_vm_domain(void)
3361{
3362 struct dmar_domain *domain;
3363
3364 domain = alloc_domain_mem();
3365 if (!domain)
3366 return NULL;
3367
3368 domain->id = vm_domid++;
3369 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
3370 domain->flags = DOMAIN_FLAG_VIRTUAL_MACHINE;
3371
3372 return domain;
3373}
3374
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003375static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08003376{
3377 int adjust_width;
3378
3379 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003380 spin_lock_init(&domain->iommu_lock);
3381
3382 domain_reserve_special_ranges(domain);
3383
3384 /* calculate AGAW */
3385 domain->gaw = guest_width;
3386 adjust_width = guestwidth_to_adjustwidth(guest_width);
3387 domain->agaw = width_to_agaw(adjust_width);
3388
3389 INIT_LIST_HEAD(&domain->devices);
3390
3391 domain->iommu_count = 0;
3392 domain->iommu_coherency = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003393 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08003394
3395 /* always allocate the top pgd */
3396 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
3397 if (!domain->pgd)
3398 return -ENOMEM;
3399 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
3400 return 0;
3401}
3402
3403static void iommu_free_vm_domain(struct dmar_domain *domain)
3404{
3405 unsigned long flags;
3406 struct dmar_drhd_unit *drhd;
3407 struct intel_iommu *iommu;
3408 unsigned long i;
3409 unsigned long ndomains;
3410
3411 for_each_drhd_unit(drhd) {
3412 if (drhd->ignored)
3413 continue;
3414 iommu = drhd->iommu;
3415
3416 ndomains = cap_ndoms(iommu->cap);
3417 i = find_first_bit(iommu->domain_ids, ndomains);
3418 for (; i < ndomains; ) {
3419 if (iommu->domains[i] == domain) {
3420 spin_lock_irqsave(&iommu->lock, flags);
3421 clear_bit(i, iommu->domain_ids);
3422 iommu->domains[i] = NULL;
3423 spin_unlock_irqrestore(&iommu->lock, flags);
3424 break;
3425 }
3426 i = find_next_bit(iommu->domain_ids, ndomains, i+1);
3427 }
3428 }
3429}
3430
3431static void vm_domain_exit(struct dmar_domain *domain)
3432{
Weidong Han5e98c4b2008-12-08 23:03:27 +08003433 /* Domain 0 is reserved, so dont process it */
3434 if (!domain)
3435 return;
3436
3437 vm_domain_remove_all_dev_info(domain);
3438 /* destroy iovas */
3439 put_iova_domain(&domain->iovad);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003440
3441 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01003442 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003443
3444 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01003445 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003446
3447 iommu_free_vm_domain(domain);
3448 free_domain_mem(domain);
3449}
3450
Joerg Roedel5d450802008-12-03 14:52:32 +01003451static int intel_iommu_domain_init(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003452{
Joerg Roedel5d450802008-12-03 14:52:32 +01003453 struct dmar_domain *dmar_domain;
Kay, Allen M38717942008-09-09 18:37:29 +03003454
Joerg Roedel5d450802008-12-03 14:52:32 +01003455 dmar_domain = iommu_alloc_vm_domain();
3456 if (!dmar_domain) {
Kay, Allen M38717942008-09-09 18:37:29 +03003457 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003458 "intel_iommu_domain_init: dmar_domain == NULL\n");
3459 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003460 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003461 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Kay, Allen M38717942008-09-09 18:37:29 +03003462 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003463 "intel_iommu_domain_init() failed\n");
3464 vm_domain_exit(dmar_domain);
3465 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003466 }
Joerg Roedel5d450802008-12-03 14:52:32 +01003467 domain->priv = dmar_domain;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003468
Joerg Roedel5d450802008-12-03 14:52:32 +01003469 return 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003470}
Kay, Allen M38717942008-09-09 18:37:29 +03003471
Joerg Roedel5d450802008-12-03 14:52:32 +01003472static void intel_iommu_domain_destroy(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003473{
Joerg Roedel5d450802008-12-03 14:52:32 +01003474 struct dmar_domain *dmar_domain = domain->priv;
3475
3476 domain->priv = NULL;
3477 vm_domain_exit(dmar_domain);
Kay, Allen M38717942008-09-09 18:37:29 +03003478}
Kay, Allen M38717942008-09-09 18:37:29 +03003479
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003480static int intel_iommu_attach_device(struct iommu_domain *domain,
3481 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003482{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003483 struct dmar_domain *dmar_domain = domain->priv;
3484 struct pci_dev *pdev = to_pci_dev(dev);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003485 struct intel_iommu *iommu;
3486 int addr_width;
3487 u64 end;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003488 int ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003489
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003490 /* normally pdev is not mapped */
3491 if (unlikely(domain_context_mapped(pdev))) {
3492 struct dmar_domain *old_domain;
3493
3494 old_domain = find_domain(pdev);
3495 if (old_domain) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003496 if (dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
3497 dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)
3498 domain_remove_one_dev_info(old_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003499 else
3500 domain_remove_dev_info(old_domain);
3501 }
3502 }
3503
David Woodhouse276dbf92009-04-04 01:45:37 +01003504 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3505 pdev->devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003506 if (!iommu)
3507 return -ENODEV;
3508
3509 /* check if this iommu agaw is sufficient for max mapped address */
3510 addr_width = agaw_to_width(iommu->agaw);
3511 end = DOMAIN_MAX_ADDR(addr_width);
3512 end = end & VTD_PAGE_MASK;
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003513 if (end < dmar_domain->max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003514 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3515 "sufficient for the mapped address (%llx)\n",
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003516 __func__, iommu->agaw, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003517 return -EFAULT;
3518 }
3519
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003520 ret = domain_add_dev_info(dmar_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003521 if (ret)
3522 return ret;
3523
Yu Zhao93a23a72009-05-18 13:51:37 +08003524 ret = domain_context_mapping(dmar_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003525 return ret;
3526}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003527
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003528static void intel_iommu_detach_device(struct iommu_domain *domain,
3529 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003530{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003531 struct dmar_domain *dmar_domain = domain->priv;
3532 struct pci_dev *pdev = to_pci_dev(dev);
3533
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003534 domain_remove_one_dev_info(dmar_domain, pdev);
Kay, Allen M38717942008-09-09 18:37:29 +03003535}
Kay, Allen M38717942008-09-09 18:37:29 +03003536
Joerg Roedeldde57a22008-12-03 15:04:09 +01003537static int intel_iommu_map_range(struct iommu_domain *domain,
3538 unsigned long iova, phys_addr_t hpa,
3539 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03003540{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003541 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003542 u64 max_addr;
3543 int addr_width;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003544 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003545 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003546
Joerg Roedeldde57a22008-12-03 15:04:09 +01003547 if (iommu_prot & IOMMU_READ)
3548 prot |= DMA_PTE_READ;
3549 if (iommu_prot & IOMMU_WRITE)
3550 prot |= DMA_PTE_WRITE;
Sheng Yang9cf06692009-03-18 15:33:07 +08003551 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
3552 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003553
David Woodhouse163cc522009-06-28 00:51:17 +01003554 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003555 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003556 int min_agaw;
3557 u64 end;
3558
3559 /* check if minimum agaw is sufficient for mapped address */
Joerg Roedeldde57a22008-12-03 15:04:09 +01003560 min_agaw = vm_domain_min_agaw(dmar_domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003561 addr_width = agaw_to_width(min_agaw);
3562 end = DOMAIN_MAX_ADDR(addr_width);
3563 end = end & VTD_PAGE_MASK;
3564 if (end < max_addr) {
3565 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3566 "sufficient for the mapped address (%llx)\n",
3567 __func__, min_agaw, max_addr);
3568 return -EFAULT;
3569 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01003570 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003571 }
David Woodhousead051222009-06-28 14:22:28 +01003572 /* Round up size to next multiple of PAGE_SIZE, if it and
3573 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01003574 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01003575 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
3576 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003577 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003578}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003579
Joerg Roedeldde57a22008-12-03 15:04:09 +01003580static void intel_iommu_unmap_range(struct iommu_domain *domain,
3581 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003582{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003583 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003584
David Woodhouse163cc522009-06-28 00:51:17 +01003585 dma_pte_clear_range(dmar_domain, iova >> VTD_PAGE_SHIFT,
3586 (iova + size - 1) >> VTD_PAGE_SHIFT);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003587
David Woodhouse163cc522009-06-28 00:51:17 +01003588 if (dmar_domain->max_addr == iova + size)
3589 dmar_domain->max_addr = iova;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003590}
Kay, Allen M38717942008-09-09 18:37:29 +03003591
Joerg Roedeld14d6572008-12-03 15:06:57 +01003592static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
3593 unsigned long iova)
Kay, Allen M38717942008-09-09 18:37:29 +03003594{
Joerg Roedeld14d6572008-12-03 15:06:57 +01003595 struct dmar_domain *dmar_domain = domain->priv;
Kay, Allen M38717942008-09-09 18:37:29 +03003596 struct dma_pte *pte;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003597 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003598
David Woodhouseb026fd22009-06-28 10:37:25 +01003599 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT);
Kay, Allen M38717942008-09-09 18:37:29 +03003600 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003601 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03003602
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003603 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03003604}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003605
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003606static int intel_iommu_domain_has_cap(struct iommu_domain *domain,
3607 unsigned long cap)
3608{
3609 struct dmar_domain *dmar_domain = domain->priv;
3610
3611 if (cap == IOMMU_CAP_CACHE_COHERENCY)
3612 return dmar_domain->iommu_snooping;
3613
3614 return 0;
3615}
3616
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003617static struct iommu_ops intel_iommu_ops = {
3618 .domain_init = intel_iommu_domain_init,
3619 .domain_destroy = intel_iommu_domain_destroy,
3620 .attach_dev = intel_iommu_attach_device,
3621 .detach_dev = intel_iommu_detach_device,
3622 .map = intel_iommu_map_range,
3623 .unmap = intel_iommu_unmap_range,
3624 .iova_to_phys = intel_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003625 .domain_has_cap = intel_iommu_domain_has_cap,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003626};
David Woodhouse9af88142009-02-13 23:18:03 +00003627
3628static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
3629{
3630 /*
3631 * Mobile 4 Series Chipset neglects to set RWBF capability,
3632 * but needs it:
3633 */
3634 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
3635 rwbf_quirk = 1;
3636}
3637
3638DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);