blob: c5f7c73cbb5512d4cf58fe202723f119617d1aea [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 Yang9cf066972009-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 Yang9cf066972009-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 */
254struct dmar_domain *si_domain;
255
Weidong Han3b5410e2008-12-08 09:17:15 +0800256/* devices under the same p2p bridge are owned in one domain */
Mike Daycdc7b832008-12-12 17:16:30 +0100257#define DOMAIN_FLAG_P2P_MULTIPLE_DEVICES (1 << 0)
Weidong Han3b5410e2008-12-08 09:17:15 +0800258
Weidong Han1ce28fe2008-12-08 16:35:39 +0800259/* domain represents a virtual machine, more than one devices
260 * across iommus may be owned in one domain, e.g. kvm guest.
261 */
262#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 1)
263
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700264/* si_domain contains mulitple devices */
265#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 2)
266
Mark McLoughlin99126f72008-11-20 15:49:47 +0000267struct dmar_domain {
268 int id; /* domain id */
Weidong Han8c11e792008-12-08 15:29:22 +0800269 unsigned long iommu_bmp; /* bitmap of iommus this domain uses*/
Mark McLoughlin99126f72008-11-20 15:49:47 +0000270
271 struct list_head devices; /* all devices' list */
272 struct iova_domain iovad; /* iova's that belong to this domain */
273
274 struct dma_pte *pgd; /* virtual address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000275 int gaw; /* max guest address width */
276
277 /* adjusted guest address width, 0 is level 2 30-bit */
278 int agaw;
279
Weidong Han3b5410e2008-12-08 09:17:15 +0800280 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800281
282 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800283 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800284 int iommu_count; /* reference count of iommu */
285 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800286 u64 max_addr; /* maximum mapped address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000287};
288
Mark McLoughlina647dac2008-11-20 15:49:48 +0000289/* PCI domain-device relationship */
290struct device_domain_info {
291 struct list_head link; /* link to domain siblings */
292 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100293 int segment; /* PCI domain */
294 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000295 u8 devfn; /* PCI devfn number */
296 struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800297 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000298 struct dmar_domain *domain; /* pointer to domain */
299};
300
mark gross5e0d2a62008-03-04 15:22:08 -0800301static void flush_unmaps_timeout(unsigned long data);
302
303DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
304
mark gross80b20dd2008-04-18 13:53:58 -0700305#define HIGH_WATER_MARK 250
306struct deferred_flush_tables {
307 int next;
308 struct iova *iova[HIGH_WATER_MARK];
309 struct dmar_domain *domain[HIGH_WATER_MARK];
310};
311
312static struct deferred_flush_tables *deferred_flush;
313
mark gross5e0d2a62008-03-04 15:22:08 -0800314/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800315static int g_num_of_iommus;
316
317static DEFINE_SPINLOCK(async_umap_flush_lock);
318static LIST_HEAD(unmaps_to_do);
319
320static int timer_on;
321static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800322
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700323static void domain_remove_dev_info(struct dmar_domain *domain);
324
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800325#ifdef CONFIG_DMAR_DEFAULT_ON
326int dmar_disabled = 0;
327#else
328int dmar_disabled = 1;
329#endif /*CONFIG_DMAR_DEFAULT_ON*/
330
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700331static int __initdata dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700332static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800333static int intel_iommu_strict;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700334
335#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
336static DEFINE_SPINLOCK(device_domain_lock);
337static LIST_HEAD(device_domain_list);
338
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100339static struct iommu_ops intel_iommu_ops;
340
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700341static int __init intel_iommu_setup(char *str)
342{
343 if (!str)
344 return -EINVAL;
345 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800346 if (!strncmp(str, "on", 2)) {
347 dmar_disabled = 0;
348 printk(KERN_INFO "Intel-IOMMU: enabled\n");
349 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700350 dmar_disabled = 1;
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800351 printk(KERN_INFO "Intel-IOMMU: disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700352 } else if (!strncmp(str, "igfx_off", 8)) {
353 dmar_map_gfx = 0;
354 printk(KERN_INFO
355 "Intel-IOMMU: disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700356 } else if (!strncmp(str, "forcedac", 8)) {
mark gross5e0d2a62008-03-04 15:22:08 -0800357 printk(KERN_INFO
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700358 "Intel-IOMMU: Forcing DAC for PCI devices\n");
359 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800360 } else if (!strncmp(str, "strict", 6)) {
361 printk(KERN_INFO
362 "Intel-IOMMU: disable batched IOTLB flush\n");
363 intel_iommu_strict = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700364 }
365
366 str += strcspn(str, ",");
367 while (*str == ',')
368 str++;
369 }
370 return 0;
371}
372__setup("intel_iommu=", intel_iommu_setup);
373
374static struct kmem_cache *iommu_domain_cache;
375static struct kmem_cache *iommu_devinfo_cache;
376static struct kmem_cache *iommu_iova_cache;
377
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700378static inline void *iommu_kmem_cache_alloc(struct kmem_cache *cachep)
379{
380 unsigned int flags;
381 void *vaddr;
382
383 /* trying to avoid low memory issues */
384 flags = current->flags & PF_MEMALLOC;
385 current->flags |= PF_MEMALLOC;
386 vaddr = kmem_cache_alloc(cachep, GFP_ATOMIC);
387 current->flags &= (~PF_MEMALLOC | flags);
388 return vaddr;
389}
390
391
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700392static inline void *alloc_pgtable_page(void)
393{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700394 unsigned int flags;
395 void *vaddr;
396
397 /* trying to avoid low memory issues */
398 flags = current->flags & PF_MEMALLOC;
399 current->flags |= PF_MEMALLOC;
400 vaddr = (void *)get_zeroed_page(GFP_ATOMIC);
401 current->flags &= (~PF_MEMALLOC | flags);
402 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700403}
404
405static inline void free_pgtable_page(void *vaddr)
406{
407 free_page((unsigned long)vaddr);
408}
409
410static inline void *alloc_domain_mem(void)
411{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700412 return iommu_kmem_cache_alloc(iommu_domain_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700413}
414
Kay, Allen M38717942008-09-09 18:37:29 +0300415static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700416{
417 kmem_cache_free(iommu_domain_cache, vaddr);
418}
419
420static inline void * alloc_devinfo_mem(void)
421{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700422 return iommu_kmem_cache_alloc(iommu_devinfo_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700423}
424
425static inline void free_devinfo_mem(void *vaddr)
426{
427 kmem_cache_free(iommu_devinfo_cache, vaddr);
428}
429
430struct iova *alloc_iova_mem(void)
431{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700432 return iommu_kmem_cache_alloc(iommu_iova_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700433}
434
435void free_iova_mem(struct iova *iova)
436{
437 kmem_cache_free(iommu_iova_cache, iova);
438}
439
Weidong Han1b573682008-12-08 15:34:06 +0800440
441static inline int width_to_agaw(int width);
442
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700443static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800444{
445 unsigned long sagaw;
446 int agaw = -1;
447
448 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700449 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800450 agaw >= 0; agaw--) {
451 if (test_bit(agaw, &sagaw))
452 break;
453 }
454
455 return agaw;
456}
457
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700458/*
459 * Calculate max SAGAW for each iommu.
460 */
461int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
462{
463 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
464}
465
466/*
467 * calculate agaw for each iommu.
468 * "SAGAW" may be different across iommus, use a default agaw, and
469 * get a supported less agaw for iommus that don't support the default agaw.
470 */
471int iommu_calculate_agaw(struct intel_iommu *iommu)
472{
473 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
474}
475
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700476/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800477static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
478{
479 int iommu_id;
480
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700481 /* si_domain and vm domain should not get here. */
Weidong Han1ce28fe2008-12-08 16:35:39 +0800482 BUG_ON(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700483 BUG_ON(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY);
Weidong Han1ce28fe2008-12-08 16:35:39 +0800484
Weidong Han8c11e792008-12-08 15:29:22 +0800485 iommu_id = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
486 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
487 return NULL;
488
489 return g_iommus[iommu_id];
490}
491
Weidong Han8e6040972008-12-08 15:49:06 +0800492static void domain_update_iommu_coherency(struct dmar_domain *domain)
493{
494 int i;
495
496 domain->iommu_coherency = 1;
497
498 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
499 for (; i < g_num_of_iommus; ) {
500 if (!ecap_coherent(g_iommus[i]->ecap)) {
501 domain->iommu_coherency = 0;
502 break;
503 }
504 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
505 }
506}
507
Sheng Yang58c610b2009-03-18 15:33:05 +0800508static void domain_update_iommu_snooping(struct dmar_domain *domain)
509{
510 int i;
511
512 domain->iommu_snooping = 1;
513
514 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
515 for (; i < g_num_of_iommus; ) {
516 if (!ecap_sc_support(g_iommus[i]->ecap)) {
517 domain->iommu_snooping = 0;
518 break;
519 }
520 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
521 }
522}
523
524/* Some capabilities may be different across iommus */
525static void domain_update_iommu_cap(struct dmar_domain *domain)
526{
527 domain_update_iommu_coherency(domain);
528 domain_update_iommu_snooping(domain);
529}
530
David Woodhouse276dbf992009-04-04 01:45:37 +0100531static struct intel_iommu *device_to_iommu(int segment, u8 bus, u8 devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800532{
533 struct dmar_drhd_unit *drhd = NULL;
534 int i;
535
536 for_each_drhd_unit(drhd) {
537 if (drhd->ignored)
538 continue;
David Woodhouse276dbf992009-04-04 01:45:37 +0100539 if (segment != drhd->segment)
540 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800541
David Woodhouse924b6232009-04-04 00:39:25 +0100542 for (i = 0; i < drhd->devices_cnt; i++) {
Dirk Hohndel288e4872009-01-11 15:33:51 +0000543 if (drhd->devices[i] &&
544 drhd->devices[i]->bus->number == bus &&
Weidong Hanc7151a82008-12-08 22:51:37 +0800545 drhd->devices[i]->devfn == devfn)
546 return drhd->iommu;
David Woodhouse4958c5d2009-04-06 13:30:01 -0700547 if (drhd->devices[i] &&
548 drhd->devices[i]->subordinate &&
David Woodhouse924b6232009-04-04 00:39:25 +0100549 drhd->devices[i]->subordinate->number <= bus &&
550 drhd->devices[i]->subordinate->subordinate >= bus)
551 return drhd->iommu;
552 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800553
554 if (drhd->include_all)
555 return drhd->iommu;
556 }
557
558 return NULL;
559}
560
Weidong Han5331fe62008-12-08 23:00:00 +0800561static void domain_flush_cache(struct dmar_domain *domain,
562 void *addr, int size)
563{
564 if (!domain->iommu_coherency)
565 clflush_cache_range(addr, size);
566}
567
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700568/* Gets context entry for a given bus and devfn */
569static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
570 u8 bus, u8 devfn)
571{
572 struct root_entry *root;
573 struct context_entry *context;
574 unsigned long phy_addr;
575 unsigned long flags;
576
577 spin_lock_irqsave(&iommu->lock, flags);
578 root = &iommu->root_entry[bus];
579 context = get_context_addr_from_root(root);
580 if (!context) {
581 context = (struct context_entry *)alloc_pgtable_page();
582 if (!context) {
583 spin_unlock_irqrestore(&iommu->lock, flags);
584 return NULL;
585 }
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700586 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700587 phy_addr = virt_to_phys((void *)context);
588 set_root_value(root, phy_addr);
589 set_root_present(root);
590 __iommu_flush_cache(iommu, root, sizeof(*root));
591 }
592 spin_unlock_irqrestore(&iommu->lock, flags);
593 return &context[devfn];
594}
595
596static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
597{
598 struct root_entry *root;
599 struct context_entry *context;
600 int ret;
601 unsigned long flags;
602
603 spin_lock_irqsave(&iommu->lock, flags);
604 root = &iommu->root_entry[bus];
605 context = get_context_addr_from_root(root);
606 if (!context) {
607 ret = 0;
608 goto out;
609 }
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000610 ret = context_present(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700611out:
612 spin_unlock_irqrestore(&iommu->lock, flags);
613 return ret;
614}
615
616static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
617{
618 struct root_entry *root;
619 struct context_entry *context;
620 unsigned long flags;
621
622 spin_lock_irqsave(&iommu->lock, flags);
623 root = &iommu->root_entry[bus];
624 context = get_context_addr_from_root(root);
625 if (context) {
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000626 context_clear_entry(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700627 __iommu_flush_cache(iommu, &context[devfn], \
628 sizeof(*context));
629 }
630 spin_unlock_irqrestore(&iommu->lock, flags);
631}
632
633static void free_context_table(struct intel_iommu *iommu)
634{
635 struct root_entry *root;
636 int i;
637 unsigned long flags;
638 struct context_entry *context;
639
640 spin_lock_irqsave(&iommu->lock, flags);
641 if (!iommu->root_entry) {
642 goto out;
643 }
644 for (i = 0; i < ROOT_ENTRY_NR; i++) {
645 root = &iommu->root_entry[i];
646 context = get_context_addr_from_root(root);
647 if (context)
648 free_pgtable_page(context);
649 }
650 free_pgtable_page(iommu->root_entry);
651 iommu->root_entry = NULL;
652out:
653 spin_unlock_irqrestore(&iommu->lock, flags);
654}
655
656/* page table handling */
657#define LEVEL_STRIDE (9)
658#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
659
660static inline int agaw_to_level(int agaw)
661{
662 return agaw + 2;
663}
664
665static inline int agaw_to_width(int agaw)
666{
667 return 30 + agaw * LEVEL_STRIDE;
668
669}
670
671static inline int width_to_agaw(int width)
672{
673 return (width - 30) / LEVEL_STRIDE;
674}
675
676static inline unsigned int level_to_offset_bits(int level)
677{
David Woodhouse6660c632009-06-27 22:41:00 +0100678 return (level - 1) * LEVEL_STRIDE;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700679}
680
David Woodhouse77dfa562009-06-27 16:40:08 +0100681static inline int pfn_level_offset(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700682{
David Woodhouse6660c632009-06-27 22:41:00 +0100683 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700684}
685
David Woodhouse6660c632009-06-27 22:41:00 +0100686static inline unsigned long level_mask(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700687{
David Woodhouse6660c632009-06-27 22:41:00 +0100688 return -1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700689}
690
David Woodhouse6660c632009-06-27 22:41:00 +0100691static inline unsigned long level_size(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700692{
David Woodhouse6660c632009-06-27 22:41:00 +0100693 return 1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700694}
695
David Woodhouse6660c632009-06-27 22:41:00 +0100696static inline unsigned long align_to_level(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700697{
David Woodhouse6660c632009-06-27 22:41:00 +0100698 return (pfn + level_size(level) - 1) & level_mask(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700699}
700
David Woodhouseb026fd22009-06-28 10:37:25 +0100701static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
702 unsigned long pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700703{
David Woodhouseb026fd22009-06-28 10:37:25 +0100704 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700705 struct dma_pte *parent, *pte = NULL;
706 int level = agaw_to_level(domain->agaw);
707 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700708
709 BUG_ON(!domain->pgd);
David Woodhouseb026fd22009-06-28 10:37:25 +0100710 BUG_ON(addr_width < BITS_PER_LONG && pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700711 parent = domain->pgd;
712
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700713 while (level > 0) {
714 void *tmp_page;
715
David Woodhouseb026fd22009-06-28 10:37:25 +0100716 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700717 pte = &parent[offset];
718 if (level == 1)
719 break;
720
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000721 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100722 uint64_t pteval;
723
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700724 tmp_page = alloc_pgtable_page();
725
David Woodhouse206a73c12009-07-01 19:30:28 +0100726 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700727 return NULL;
David Woodhouse206a73c12009-07-01 19:30:28 +0100728
David Woodhousec85994e2009-07-01 19:21:24 +0100729 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
730 pteval = (virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
731 if (cmpxchg64(&pte->val, 0ULL, pteval)) {
732 /* Someone else set it while we were thinking; use theirs. */
733 free_pgtable_page(tmp_page);
734 } else {
735 dma_pte_addr(pte);
736 domain_flush_cache(domain, pte, sizeof(*pte));
737 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700738 }
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000739 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700740 level--;
741 }
742
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700743 return pte;
744}
745
746/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100747static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
748 unsigned long pfn,
749 int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700750{
751 struct dma_pte *parent, *pte = NULL;
752 int total = agaw_to_level(domain->agaw);
753 int offset;
754
755 parent = domain->pgd;
756 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100757 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700758 pte = &parent[offset];
759 if (level == total)
760 return pte;
761
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000762 if (!dma_pte_present(pte))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700763 break;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000764 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700765 total--;
766 }
767 return NULL;
768}
769
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700770/* clear last level pte, a tlb flush should be followed */
David Woodhouse595badf2009-06-27 22:09:11 +0100771static void dma_pte_clear_range(struct dmar_domain *domain,
772 unsigned long start_pfn,
773 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700774{
David Woodhouse04b18e62009-06-27 19:15:01 +0100775 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse310a5ab2009-06-28 18:52:20 +0100776 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700777
David Woodhouse04b18e62009-06-27 19:15:01 +0100778 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
David Woodhouse595badf2009-06-27 22:09:11 +0100779 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse66eae842009-06-27 19:00:32 +0100780
David Woodhouse04b18e62009-06-27 19:15:01 +0100781 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse595badf2009-06-27 22:09:11 +0100782 while (start_pfn <= last_pfn) {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100783 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1);
784 if (!pte) {
785 start_pfn = align_to_level(start_pfn + 1, 2);
786 continue;
787 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100788 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100789 dma_clear_pte(pte);
790 start_pfn++;
791 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +0100792 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
793
David Woodhouse310a5ab2009-06-28 18:52:20 +0100794 domain_flush_cache(domain, first_pte,
795 (void *)pte - (void *)first_pte);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700796 }
797}
798
799/* free page table pages. last level pte should already be cleared */
800static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +0100801 unsigned long start_pfn,
802 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700803{
David Woodhouse6660c632009-06-27 22:41:00 +0100804 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhousef3a0a522009-06-30 03:40:07 +0100805 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700806 int total = agaw_to_level(domain->agaw);
807 int level;
David Woodhouse6660c632009-06-27 22:41:00 +0100808 unsigned long tmp;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700809
David Woodhouse6660c632009-06-27 22:41:00 +0100810 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
811 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700812
David Woodhousef3a0a522009-06-30 03:40:07 +0100813 /* We don't need lock here; nobody else touches the iova range */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700814 level = 2;
815 while (level <= total) {
David Woodhouse6660c632009-06-27 22:41:00 +0100816 tmp = align_to_level(start_pfn, level);
817
David Woodhousef3a0a522009-06-30 03:40:07 +0100818 /* If we can't even clear one PTE at this level, we're done */
David Woodhouse6660c632009-06-27 22:41:00 +0100819 if (tmp + level_size(level) - 1 > last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700820 return;
821
David Woodhouse3d7b0e42009-06-30 03:38:09 +0100822 while (tmp + level_size(level) - 1 <= last_pfn) {
David Woodhousef3a0a522009-06-30 03:40:07 +0100823 first_pte = pte = dma_pfn_level_pte(domain, tmp, level);
824 if (!pte) {
825 tmp = align_to_level(tmp + 1, level + 1);
826 continue;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700827 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100828 do {
David Woodhouse6a43e572009-07-02 12:02:34 +0100829 if (dma_pte_present(pte)) {
830 free_pgtable_page(phys_to_virt(dma_pte_addr(pte)));
831 dma_clear_pte(pte);
832 }
David Woodhousef3a0a522009-06-30 03:40:07 +0100833 pte++;
834 tmp += level_size(level);
David Woodhouse75e6bf92009-07-02 11:21:16 +0100835 } while (!first_pte_in_page(pte) &&
836 tmp + level_size(level) - 1 <= last_pfn);
837
David Woodhousef3a0a522009-06-30 03:40:07 +0100838 domain_flush_cache(domain, first_pte,
839 (void *)pte - (void *)first_pte);
840
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700841 }
842 level++;
843 }
844 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +0100845 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700846 free_pgtable_page(domain->pgd);
847 domain->pgd = NULL;
848 }
849}
850
851/* iommu handling */
852static int iommu_alloc_root_entry(struct intel_iommu *iommu)
853{
854 struct root_entry *root;
855 unsigned long flags;
856
857 root = (struct root_entry *)alloc_pgtable_page();
858 if (!root)
859 return -ENOMEM;
860
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700861 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700862
863 spin_lock_irqsave(&iommu->lock, flags);
864 iommu->root_entry = root;
865 spin_unlock_irqrestore(&iommu->lock, flags);
866
867 return 0;
868}
869
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700870static void iommu_set_root_entry(struct intel_iommu *iommu)
871{
872 void *addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100873 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700874 unsigned long flag;
875
876 addr = iommu->root_entry;
877
878 spin_lock_irqsave(&iommu->register_lock, flag);
879 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, virt_to_phys(addr));
880
David Woodhousec416daa2009-05-10 20:30:58 +0100881 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700882
883 /* Make sure hardware complete it */
884 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100885 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700886
887 spin_unlock_irqrestore(&iommu->register_lock, flag);
888}
889
890static void iommu_flush_write_buffer(struct intel_iommu *iommu)
891{
892 u32 val;
893 unsigned long flag;
894
David Woodhouse9af88142009-02-13 23:18:03 +0000895 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700896 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700897
898 spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +0100899 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700900
901 /* Make sure hardware complete it */
902 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100903 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700904
905 spin_unlock_irqrestore(&iommu->register_lock, flag);
906}
907
908/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +0100909static void __iommu_flush_context(struct intel_iommu *iommu,
910 u16 did, u16 source_id, u8 function_mask,
911 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700912{
913 u64 val = 0;
914 unsigned long flag;
915
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700916 switch (type) {
917 case DMA_CCMD_GLOBAL_INVL:
918 val = DMA_CCMD_GLOBAL_INVL;
919 break;
920 case DMA_CCMD_DOMAIN_INVL:
921 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
922 break;
923 case DMA_CCMD_DEVICE_INVL:
924 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
925 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
926 break;
927 default:
928 BUG();
929 }
930 val |= DMA_CCMD_ICC;
931
932 spin_lock_irqsave(&iommu->register_lock, flag);
933 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
934
935 /* Make sure hardware complete it */
936 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
937 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
938
939 spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700940}
941
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700942/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +0100943static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
944 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700945{
946 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
947 u64 val = 0, val_iva = 0;
948 unsigned long flag;
949
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700950 switch (type) {
951 case DMA_TLB_GLOBAL_FLUSH:
952 /* global flush doesn't need set IVA_REG */
953 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
954 break;
955 case DMA_TLB_DSI_FLUSH:
956 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
957 break;
958 case DMA_TLB_PSI_FLUSH:
959 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
960 /* Note: always flush non-leaf currently */
961 val_iva = size_order | addr;
962 break;
963 default:
964 BUG();
965 }
966 /* Note: set drain read/write */
967#if 0
968 /*
969 * This is probably to be super secure.. Looks like we can
970 * ignore it without any impact.
971 */
972 if (cap_read_drain(iommu->cap))
973 val |= DMA_TLB_READ_DRAIN;
974#endif
975 if (cap_write_drain(iommu->cap))
976 val |= DMA_TLB_WRITE_DRAIN;
977
978 spin_lock_irqsave(&iommu->register_lock, flag);
979 /* Note: Only uses first TLB reg currently */
980 if (val_iva)
981 dmar_writeq(iommu->reg + tlb_offset, val_iva);
982 dmar_writeq(iommu->reg + tlb_offset + 8, val);
983
984 /* Make sure hardware complete it */
985 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
986 dmar_readq, (!(val & DMA_TLB_IVT)), val);
987
988 spin_unlock_irqrestore(&iommu->register_lock, flag);
989
990 /* check IOTLB invalidation granularity */
991 if (DMA_TLB_IAIG(val) == 0)
992 printk(KERN_ERR"IOMMU: flush IOTLB failed\n");
993 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
994 pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700995 (unsigned long long)DMA_TLB_IIRG(type),
996 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700997}
998
Yu Zhao93a23a72009-05-18 13:51:37 +0800999static struct device_domain_info *iommu_support_dev_iotlb(
1000 struct dmar_domain *domain, int segment, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001001{
Yu Zhao93a23a72009-05-18 13:51:37 +08001002 int found = 0;
1003 unsigned long flags;
1004 struct device_domain_info *info;
1005 struct intel_iommu *iommu = device_to_iommu(segment, bus, devfn);
1006
1007 if (!ecap_dev_iotlb_support(iommu->ecap))
1008 return NULL;
1009
1010 if (!iommu->qi)
1011 return NULL;
1012
1013 spin_lock_irqsave(&device_domain_lock, flags);
1014 list_for_each_entry(info, &domain->devices, link)
1015 if (info->bus == bus && info->devfn == devfn) {
1016 found = 1;
1017 break;
1018 }
1019 spin_unlock_irqrestore(&device_domain_lock, flags);
1020
1021 if (!found || !info->dev)
1022 return NULL;
1023
1024 if (!pci_find_ext_capability(info->dev, PCI_EXT_CAP_ID_ATS))
1025 return NULL;
1026
1027 if (!dmar_find_matched_atsr_unit(info->dev))
1028 return NULL;
1029
1030 info->iommu = iommu;
1031
1032 return info;
1033}
1034
1035static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1036{
1037 if (!info)
1038 return;
1039
1040 pci_enable_ats(info->dev, VTD_PAGE_SHIFT);
1041}
1042
1043static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1044{
1045 if (!info->dev || !pci_ats_enabled(info->dev))
1046 return;
1047
1048 pci_disable_ats(info->dev);
1049}
1050
1051static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1052 u64 addr, unsigned mask)
1053{
1054 u16 sid, qdep;
1055 unsigned long flags;
1056 struct device_domain_info *info;
1057
1058 spin_lock_irqsave(&device_domain_lock, flags);
1059 list_for_each_entry(info, &domain->devices, link) {
1060 if (!info->dev || !pci_ats_enabled(info->dev))
1061 continue;
1062
1063 sid = info->bus << 8 | info->devfn;
1064 qdep = pci_ats_queue_depth(info->dev);
1065 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1066 }
1067 spin_unlock_irqrestore(&device_domain_lock, flags);
1068}
1069
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001070static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did,
David Woodhouse03d6a242009-06-28 15:33:46 +01001071 unsigned long pfn, unsigned int pages)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001072{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001073 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001074 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001075
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001076 BUG_ON(pages == 0);
1077
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001078 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001079 * Fallback to domain selective flush if no PSI support or the size is
1080 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001081 * PSI requires page size to be 2 ^ x, and the base address is naturally
1082 * aligned to the size
1083 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001084 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1085 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001086 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001087 else
1088 iommu->flush.flush_iotlb(iommu, did, addr, mask,
1089 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001090
1091 /*
1092 * In caching mode, domain ID 0 is reserved for non-present to present
1093 * mapping flush. Device IOTLB doesn't need to be flushed in this case.
1094 */
1095 if (!cap_caching_mode(iommu->cap) || did)
Yu Zhao93a23a72009-05-18 13:51:37 +08001096 iommu_flush_dev_iotlb(iommu->domains[did], addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001097}
1098
mark grossf8bab732008-02-08 04:18:38 -08001099static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1100{
1101 u32 pmen;
1102 unsigned long flags;
1103
1104 spin_lock_irqsave(&iommu->register_lock, flags);
1105 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1106 pmen &= ~DMA_PMEN_EPM;
1107 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1108
1109 /* wait for the protected region status bit to clear */
1110 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1111 readl, !(pmen & DMA_PMEN_PRS), pmen);
1112
1113 spin_unlock_irqrestore(&iommu->register_lock, flags);
1114}
1115
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001116static int iommu_enable_translation(struct intel_iommu *iommu)
1117{
1118 u32 sts;
1119 unsigned long flags;
1120
1121 spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001122 iommu->gcmd |= DMA_GCMD_TE;
1123 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001124
1125 /* Make sure hardware complete it */
1126 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001127 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001128
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001129 spin_unlock_irqrestore(&iommu->register_lock, flags);
1130 return 0;
1131}
1132
1133static int iommu_disable_translation(struct intel_iommu *iommu)
1134{
1135 u32 sts;
1136 unsigned long flag;
1137
1138 spin_lock_irqsave(&iommu->register_lock, flag);
1139 iommu->gcmd &= ~DMA_GCMD_TE;
1140 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1141
1142 /* Make sure hardware complete it */
1143 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001144 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001145
1146 spin_unlock_irqrestore(&iommu->register_lock, flag);
1147 return 0;
1148}
1149
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001150
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001151static int iommu_init_domains(struct intel_iommu *iommu)
1152{
1153 unsigned long ndomains;
1154 unsigned long nlongs;
1155
1156 ndomains = cap_ndoms(iommu->cap);
1157 pr_debug("Number of Domains supportd <%ld>\n", ndomains);
1158 nlongs = BITS_TO_LONGS(ndomains);
1159
1160 /* TBD: there might be 64K domains,
1161 * consider other allocation for future chip
1162 */
1163 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1164 if (!iommu->domain_ids) {
1165 printk(KERN_ERR "Allocating domain id array failed\n");
1166 return -ENOMEM;
1167 }
1168 iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *),
1169 GFP_KERNEL);
1170 if (!iommu->domains) {
1171 printk(KERN_ERR "Allocating domain array failed\n");
1172 kfree(iommu->domain_ids);
1173 return -ENOMEM;
1174 }
1175
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001176 spin_lock_init(&iommu->lock);
1177
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001178 /*
1179 * if Caching mode is set, then invalid translations are tagged
1180 * with domainid 0. Hence we need to pre-allocate it.
1181 */
1182 if (cap_caching_mode(iommu->cap))
1183 set_bit(0, iommu->domain_ids);
1184 return 0;
1185}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001186
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001187
1188static void domain_exit(struct dmar_domain *domain);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001189static void vm_domain_exit(struct dmar_domain *domain);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001190
1191void free_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001192{
1193 struct dmar_domain *domain;
1194 int i;
Weidong Hanc7151a82008-12-08 22:51:37 +08001195 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001196
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001197 i = find_first_bit(iommu->domain_ids, cap_ndoms(iommu->cap));
1198 for (; i < cap_ndoms(iommu->cap); ) {
1199 domain = iommu->domains[i];
1200 clear_bit(i, iommu->domain_ids);
Weidong Hanc7151a82008-12-08 22:51:37 +08001201
1202 spin_lock_irqsave(&domain->iommu_lock, flags);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001203 if (--domain->iommu_count == 0) {
1204 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE)
1205 vm_domain_exit(domain);
1206 else
1207 domain_exit(domain);
1208 }
Weidong Hanc7151a82008-12-08 22:51:37 +08001209 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1210
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001211 i = find_next_bit(iommu->domain_ids,
1212 cap_ndoms(iommu->cap), i+1);
1213 }
1214
1215 if (iommu->gcmd & DMA_GCMD_TE)
1216 iommu_disable_translation(iommu);
1217
1218 if (iommu->irq) {
1219 set_irq_data(iommu->irq, NULL);
1220 /* This will mask the irq */
1221 free_irq(iommu->irq, iommu);
1222 destroy_irq(iommu->irq);
1223 }
1224
1225 kfree(iommu->domains);
1226 kfree(iommu->domain_ids);
1227
Weidong Hand9630fe2008-12-08 11:06:32 +08001228 g_iommus[iommu->seq_id] = NULL;
1229
1230 /* if all iommus are freed, free g_iommus */
1231 for (i = 0; i < g_num_of_iommus; i++) {
1232 if (g_iommus[i])
1233 break;
1234 }
1235
1236 if (i == g_num_of_iommus)
1237 kfree(g_iommus);
1238
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001239 /* free context mapping */
1240 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001241}
1242
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001243static struct dmar_domain *alloc_domain(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001244{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001245 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001246
1247 domain = alloc_domain_mem();
1248 if (!domain)
1249 return NULL;
1250
Weidong Han8c11e792008-12-08 15:29:22 +08001251 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
Weidong Hand71a2f32008-12-07 21:13:41 +08001252 domain->flags = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001253
1254 return domain;
1255}
1256
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001257static int iommu_attach_domain(struct dmar_domain *domain,
1258 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001259{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001260 int num;
1261 unsigned long ndomains;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001262 unsigned long flags;
1263
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001264 ndomains = cap_ndoms(iommu->cap);
Weidong Han8c11e792008-12-08 15:29:22 +08001265
1266 spin_lock_irqsave(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001267
1268 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1269 if (num >= ndomains) {
1270 spin_unlock_irqrestore(&iommu->lock, flags);
1271 printk(KERN_ERR "IOMMU: no free domain ids\n");
1272 return -ENOMEM;
1273 }
1274
1275 domain->id = num;
1276 set_bit(num, iommu->domain_ids);
1277 set_bit(iommu->seq_id, &domain->iommu_bmp);
1278 iommu->domains[num] = domain;
1279 spin_unlock_irqrestore(&iommu->lock, flags);
1280
1281 return 0;
1282}
1283
1284static void iommu_detach_domain(struct dmar_domain *domain,
1285 struct intel_iommu *iommu)
1286{
1287 unsigned long flags;
1288 int num, ndomains;
1289 int found = 0;
1290
1291 spin_lock_irqsave(&iommu->lock, flags);
1292 ndomains = cap_ndoms(iommu->cap);
1293 num = find_first_bit(iommu->domain_ids, ndomains);
1294 for (; num < ndomains; ) {
1295 if (iommu->domains[num] == domain) {
1296 found = 1;
1297 break;
1298 }
1299 num = find_next_bit(iommu->domain_ids,
1300 cap_ndoms(iommu->cap), num+1);
1301 }
1302
1303 if (found) {
1304 clear_bit(num, iommu->domain_ids);
1305 clear_bit(iommu->seq_id, &domain->iommu_bmp);
1306 iommu->domains[num] = NULL;
1307 }
Weidong Han8c11e792008-12-08 15:29:22 +08001308 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001309}
1310
1311static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001312static struct lock_class_key reserved_alloc_key;
1313static 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_alloc_lock,
1324 &reserved_alloc_key);
1325 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1326 &reserved_rbtree_key);
1327
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001328 /* IOAPIC ranges shouldn't be accessed by DMA */
1329 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1330 IOVA_PFN(IOAPIC_RANGE_END));
1331 if (!iova)
1332 printk(KERN_ERR "Reserve IOAPIC range failed\n");
1333
1334 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1335 for_each_pci_dev(pdev) {
1336 struct resource *r;
1337
1338 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1339 r = &pdev->resource[i];
1340 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1341 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001342 iova = reserve_iova(&reserved_iova_list,
1343 IOVA_PFN(r->start),
1344 IOVA_PFN(r->end));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001345 if (!iova)
1346 printk(KERN_ERR "Reserve iova failed\n");
1347 }
1348 }
1349
1350}
1351
1352static void domain_reserve_special_ranges(struct dmar_domain *domain)
1353{
1354 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1355}
1356
1357static inline int guestwidth_to_adjustwidth(int gaw)
1358{
1359 int agaw;
1360 int r = (gaw - 12) % 9;
1361
1362 if (r == 0)
1363 agaw = gaw;
1364 else
1365 agaw = gaw + 9 - r;
1366 if (agaw > 64)
1367 agaw = 64;
1368 return agaw;
1369}
1370
1371static int domain_init(struct dmar_domain *domain, int guest_width)
1372{
1373 struct intel_iommu *iommu;
1374 int adjust_width, agaw;
1375 unsigned long sagaw;
1376
David Millerf6611972008-02-06 01:36:23 -08001377 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Hanc7151a82008-12-08 22:51:37 +08001378 spin_lock_init(&domain->iommu_lock);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001379
1380 domain_reserve_special_ranges(domain);
1381
1382 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001383 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001384 if (guest_width > cap_mgaw(iommu->cap))
1385 guest_width = cap_mgaw(iommu->cap);
1386 domain->gaw = guest_width;
1387 adjust_width = guestwidth_to_adjustwidth(guest_width);
1388 agaw = width_to_agaw(adjust_width);
1389 sagaw = cap_sagaw(iommu->cap);
1390 if (!test_bit(agaw, &sagaw)) {
1391 /* hardware doesn't support it, choose a bigger one */
1392 pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw);
1393 agaw = find_next_bit(&sagaw, 5, agaw);
1394 if (agaw >= 5)
1395 return -ENODEV;
1396 }
1397 domain->agaw = agaw;
1398 INIT_LIST_HEAD(&domain->devices);
1399
Weidong Han8e6040972008-12-08 15:49:06 +08001400 if (ecap_coherent(iommu->ecap))
1401 domain->iommu_coherency = 1;
1402 else
1403 domain->iommu_coherency = 0;
1404
Sheng Yang58c610b2009-03-18 15:33:05 +08001405 if (ecap_sc_support(iommu->ecap))
1406 domain->iommu_snooping = 1;
1407 else
1408 domain->iommu_snooping = 0;
1409
Weidong Hanc7151a82008-12-08 22:51:37 +08001410 domain->iommu_count = 1;
1411
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001412 /* always allocate the top pgd */
1413 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
1414 if (!domain->pgd)
1415 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001416 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001417 return 0;
1418}
1419
1420static void domain_exit(struct dmar_domain *domain)
1421{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001422 struct dmar_drhd_unit *drhd;
1423 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001424
1425 /* Domain 0 is reserved, so dont process it */
1426 if (!domain)
1427 return;
1428
1429 domain_remove_dev_info(domain);
1430 /* destroy iovas */
1431 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001432
1433 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01001434 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001435
1436 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01001437 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001438
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001439 for_each_active_iommu(iommu, drhd)
1440 if (test_bit(iommu->seq_id, &domain->iommu_bmp))
1441 iommu_detach_domain(domain, iommu);
1442
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001443 free_domain_mem(domain);
1444}
1445
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001446static int domain_context_mapping_one(struct dmar_domain *domain, int segment,
1447 u8 bus, u8 devfn, int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001448{
1449 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001450 unsigned long flags;
Weidong Han5331fe62008-12-08 23:00:00 +08001451 struct intel_iommu *iommu;
Weidong Hanea6606b2008-12-08 23:08:15 +08001452 struct dma_pte *pgd;
1453 unsigned long num;
1454 unsigned long ndomains;
1455 int id;
1456 int agaw;
Yu Zhao93a23a72009-05-18 13:51:37 +08001457 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001458
1459 pr_debug("Set context mapping for %02x:%02x.%d\n",
1460 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001461
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001462 BUG_ON(!domain->pgd);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001463 BUG_ON(translation != CONTEXT_TT_PASS_THROUGH &&
1464 translation != CONTEXT_TT_MULTI_LEVEL);
Weidong Han5331fe62008-12-08 23:00:00 +08001465
David Woodhouse276dbf992009-04-04 01:45:37 +01001466 iommu = device_to_iommu(segment, bus, devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001467 if (!iommu)
1468 return -ENODEV;
1469
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001470 context = device_to_context_entry(iommu, bus, devfn);
1471 if (!context)
1472 return -ENOMEM;
1473 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001474 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001475 spin_unlock_irqrestore(&iommu->lock, flags);
1476 return 0;
1477 }
1478
Weidong Hanea6606b2008-12-08 23:08:15 +08001479 id = domain->id;
1480 pgd = domain->pgd;
1481
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001482 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1483 domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001484 int found = 0;
1485
1486 /* find an available domain id for this device in iommu */
1487 ndomains = cap_ndoms(iommu->cap);
1488 num = find_first_bit(iommu->domain_ids, ndomains);
1489 for (; num < ndomains; ) {
1490 if (iommu->domains[num] == domain) {
1491 id = num;
1492 found = 1;
1493 break;
1494 }
1495 num = find_next_bit(iommu->domain_ids,
1496 cap_ndoms(iommu->cap), num+1);
1497 }
1498
1499 if (found == 0) {
1500 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1501 if (num >= ndomains) {
1502 spin_unlock_irqrestore(&iommu->lock, flags);
1503 printk(KERN_ERR "IOMMU: no free domain ids\n");
1504 return -EFAULT;
1505 }
1506
1507 set_bit(num, iommu->domain_ids);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001508 set_bit(iommu->seq_id, &domain->iommu_bmp);
Weidong Hanea6606b2008-12-08 23:08:15 +08001509 iommu->domains[num] = domain;
1510 id = num;
1511 }
1512
1513 /* Skip top levels of page tables for
1514 * iommu which has less agaw than default.
1515 */
1516 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1517 pgd = phys_to_virt(dma_pte_addr(pgd));
1518 if (!dma_pte_present(pgd)) {
1519 spin_unlock_irqrestore(&iommu->lock, flags);
1520 return -ENOMEM;
1521 }
1522 }
1523 }
1524
1525 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001526
Yu Zhao93a23a72009-05-18 13:51:37 +08001527 if (translation != CONTEXT_TT_PASS_THROUGH) {
1528 info = iommu_support_dev_iotlb(domain, segment, bus, devfn);
1529 translation = info ? CONTEXT_TT_DEV_IOTLB :
1530 CONTEXT_TT_MULTI_LEVEL;
1531 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001532 /*
1533 * In pass through mode, AW must be programmed to indicate the largest
1534 * AGAW value supported by hardware. And ASR is ignored by hardware.
1535 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001536 if (unlikely(translation == CONTEXT_TT_PASS_THROUGH))
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001537 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001538 else {
1539 context_set_address_root(context, virt_to_phys(pgd));
1540 context_set_address_width(context, iommu->agaw);
1541 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001542
1543 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001544 context_set_fault_enable(context);
1545 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001546 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001547
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001548 /*
1549 * It's a non-present to present mapping. If hardware doesn't cache
1550 * non-present entry we only need to flush the write-buffer. If the
1551 * _does_ cache non-present entries, then it does so in the special
1552 * domain #0, which we have to flush:
1553 */
1554 if (cap_caching_mode(iommu->cap)) {
1555 iommu->flush.flush_context(iommu, 0,
1556 (((u16)bus) << 8) | devfn,
1557 DMA_CCMD_MASK_NOBIT,
1558 DMA_CCMD_DEVICE_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001559 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001560 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001561 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001562 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001563 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001564 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001565
1566 spin_lock_irqsave(&domain->iommu_lock, flags);
1567 if (!test_and_set_bit(iommu->seq_id, &domain->iommu_bmp)) {
1568 domain->iommu_count++;
Sheng Yang58c610b2009-03-18 15:33:05 +08001569 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08001570 }
1571 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001572 return 0;
1573}
1574
1575static int
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001576domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev,
1577 int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001578{
1579 int ret;
1580 struct pci_dev *tmp, *parent;
1581
David Woodhouse276dbf992009-04-04 01:45:37 +01001582 ret = domain_context_mapping_one(domain, pci_domain_nr(pdev->bus),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001583 pdev->bus->number, pdev->devfn,
1584 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001585 if (ret)
1586 return ret;
1587
1588 /* dependent device mapping */
1589 tmp = pci_find_upstream_pcie_bridge(pdev);
1590 if (!tmp)
1591 return 0;
1592 /* Secondary interface's bus number and devfn 0 */
1593 parent = pdev->bus->self;
1594 while (parent != tmp) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001595 ret = domain_context_mapping_one(domain,
1596 pci_domain_nr(parent->bus),
1597 parent->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001598 parent->devfn, translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001599 if (ret)
1600 return ret;
1601 parent = parent->bus->self;
1602 }
1603 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
1604 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001605 pci_domain_nr(tmp->subordinate),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001606 tmp->subordinate->number, 0,
1607 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001608 else /* this is a legacy PCI bridge */
1609 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001610 pci_domain_nr(tmp->bus),
1611 tmp->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001612 tmp->devfn,
1613 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001614}
1615
Weidong Han5331fe62008-12-08 23:00:00 +08001616static int domain_context_mapped(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001617{
1618 int ret;
1619 struct pci_dev *tmp, *parent;
Weidong Han5331fe62008-12-08 23:00:00 +08001620 struct intel_iommu *iommu;
1621
David Woodhouse276dbf992009-04-04 01:45:37 +01001622 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
1623 pdev->devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001624 if (!iommu)
1625 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001626
David Woodhouse276dbf992009-04-04 01:45:37 +01001627 ret = device_context_mapped(iommu, pdev->bus->number, pdev->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001628 if (!ret)
1629 return ret;
1630 /* dependent device mapping */
1631 tmp = pci_find_upstream_pcie_bridge(pdev);
1632 if (!tmp)
1633 return ret;
1634 /* Secondary interface's bus number and devfn 0 */
1635 parent = pdev->bus->self;
1636 while (parent != tmp) {
Weidong Han8c11e792008-12-08 15:29:22 +08001637 ret = device_context_mapped(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01001638 parent->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001639 if (!ret)
1640 return ret;
1641 parent = parent->bus->self;
1642 }
1643 if (tmp->is_pcie)
David Woodhouse276dbf992009-04-04 01:45:37 +01001644 return device_context_mapped(iommu, tmp->subordinate->number,
1645 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001646 else
David Woodhouse276dbf992009-04-04 01:45:37 +01001647 return device_context_mapped(iommu, tmp->bus->number,
1648 tmp->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001649}
1650
David Woodhouse9051aa02009-06-29 12:30:54 +01001651static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1652 struct scatterlist *sg, unsigned long phys_pfn,
1653 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01001654{
1655 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01001656 phys_addr_t uninitialized_var(pteval);
David Woodhousee1605492009-06-29 11:17:38 +01001657 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse9051aa02009-06-29 12:30:54 +01001658 unsigned long sg_res;
David Woodhousee1605492009-06-29 11:17:38 +01001659
1660 BUG_ON(addr_width < BITS_PER_LONG && (iov_pfn + nr_pages - 1) >> addr_width);
1661
1662 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
1663 return -EINVAL;
1664
1665 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
1666
David Woodhouse9051aa02009-06-29 12:30:54 +01001667 if (sg)
1668 sg_res = 0;
1669 else {
1670 sg_res = nr_pages + 1;
1671 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
1672 }
1673
David Woodhousee1605492009-06-29 11:17:38 +01001674 while (nr_pages--) {
David Woodhousec85994e2009-07-01 19:21:24 +01001675 uint64_t tmp;
1676
David Woodhousee1605492009-06-29 11:17:38 +01001677 if (!sg_res) {
1678 sg_res = (sg->offset + sg->length + VTD_PAGE_SIZE - 1) >> VTD_PAGE_SHIFT;
1679 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
1680 sg->dma_length = sg->length;
1681 pteval = page_to_phys(sg_page(sg)) | prot;
1682 }
1683 if (!pte) {
1684 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn);
1685 if (!pte)
1686 return -ENOMEM;
1687 }
1688 /* We don't need lock here, nobody else
1689 * touches the iova range
1690 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01001691 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01001692 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01001693 static int dumps = 5;
David Woodhousec85994e2009-07-01 19:21:24 +01001694 printk(KERN_CRIT "ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
1695 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01001696 if (dumps) {
1697 dumps--;
1698 debug_dma_dump_mappings(NULL);
1699 }
1700 WARN_ON(1);
1701 }
David Woodhousee1605492009-06-29 11:17:38 +01001702 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +01001703 if (!nr_pages || first_pte_in_page(pte)) {
David Woodhousee1605492009-06-29 11:17:38 +01001704 domain_flush_cache(domain, first_pte,
1705 (void *)pte - (void *)first_pte);
1706 pte = NULL;
1707 }
1708 iov_pfn++;
1709 pteval += VTD_PAGE_SIZE;
1710 sg_res--;
1711 if (!sg_res)
1712 sg = sg_next(sg);
1713 }
1714 return 0;
1715}
1716
David Woodhouse9051aa02009-06-29 12:30:54 +01001717static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1718 struct scatterlist *sg, unsigned long nr_pages,
1719 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001720{
David Woodhouse9051aa02009-06-29 12:30:54 +01001721 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
1722}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001723
David Woodhouse9051aa02009-06-29 12:30:54 +01001724static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1725 unsigned long phys_pfn, unsigned long nr_pages,
1726 int prot)
1727{
1728 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001729}
1730
Weidong Hanc7151a82008-12-08 22:51:37 +08001731static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001732{
Weidong Hanc7151a82008-12-08 22:51:37 +08001733 if (!iommu)
1734 return;
Weidong Han8c11e792008-12-08 15:29:22 +08001735
1736 clear_context_table(iommu, bus, devfn);
1737 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001738 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001739 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001740}
1741
1742static void domain_remove_dev_info(struct dmar_domain *domain)
1743{
1744 struct device_domain_info *info;
1745 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08001746 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001747
1748 spin_lock_irqsave(&device_domain_lock, flags);
1749 while (!list_empty(&domain->devices)) {
1750 info = list_entry(domain->devices.next,
1751 struct device_domain_info, link);
1752 list_del(&info->link);
1753 list_del(&info->global);
1754 if (info->dev)
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001755 info->dev->dev.archdata.iommu = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001756 spin_unlock_irqrestore(&device_domain_lock, flags);
1757
Yu Zhao93a23a72009-05-18 13:51:37 +08001758 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01001759 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08001760 iommu_detach_dev(iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001761 free_devinfo_mem(info);
1762
1763 spin_lock_irqsave(&device_domain_lock, flags);
1764 }
1765 spin_unlock_irqrestore(&device_domain_lock, flags);
1766}
1767
1768/*
1769 * find_domain
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001770 * Note: we use struct pci_dev->dev.archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001771 */
Kay, Allen M38717942008-09-09 18:37:29 +03001772static struct dmar_domain *
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001773find_domain(struct pci_dev *pdev)
1774{
1775 struct device_domain_info *info;
1776
1777 /* No lock here, assumes no domain exit in normal case */
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001778 info = pdev->dev.archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001779 if (info)
1780 return info->domain;
1781 return NULL;
1782}
1783
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001784/* domain is initialized */
1785static struct dmar_domain *get_domain_for_dev(struct pci_dev *pdev, int gaw)
1786{
1787 struct dmar_domain *domain, *found = NULL;
1788 struct intel_iommu *iommu;
1789 struct dmar_drhd_unit *drhd;
1790 struct device_domain_info *info, *tmp;
1791 struct pci_dev *dev_tmp;
1792 unsigned long flags;
1793 int bus = 0, devfn = 0;
David Woodhouse276dbf992009-04-04 01:45:37 +01001794 int segment;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001795 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001796
1797 domain = find_domain(pdev);
1798 if (domain)
1799 return domain;
1800
David Woodhouse276dbf992009-04-04 01:45:37 +01001801 segment = pci_domain_nr(pdev->bus);
1802
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001803 dev_tmp = pci_find_upstream_pcie_bridge(pdev);
1804 if (dev_tmp) {
1805 if (dev_tmp->is_pcie) {
1806 bus = dev_tmp->subordinate->number;
1807 devfn = 0;
1808 } else {
1809 bus = dev_tmp->bus->number;
1810 devfn = dev_tmp->devfn;
1811 }
1812 spin_lock_irqsave(&device_domain_lock, flags);
1813 list_for_each_entry(info, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001814 if (info->segment == segment &&
1815 info->bus == bus && info->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001816 found = info->domain;
1817 break;
1818 }
1819 }
1820 spin_unlock_irqrestore(&device_domain_lock, flags);
1821 /* pcie-pci bridge already has a domain, uses it */
1822 if (found) {
1823 domain = found;
1824 goto found_domain;
1825 }
1826 }
1827
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001828 domain = alloc_domain();
1829 if (!domain)
1830 goto error;
1831
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001832 /* Allocate new domain for the device */
1833 drhd = dmar_find_matched_drhd_unit(pdev);
1834 if (!drhd) {
1835 printk(KERN_ERR "IOMMU: can't find DMAR for device %s\n",
1836 pci_name(pdev));
1837 return NULL;
1838 }
1839 iommu = drhd->iommu;
1840
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001841 ret = iommu_attach_domain(domain, iommu);
1842 if (ret) {
1843 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001844 goto error;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001845 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001846
1847 if (domain_init(domain, gaw)) {
1848 domain_exit(domain);
1849 goto error;
1850 }
1851
1852 /* register pcie-to-pci device */
1853 if (dev_tmp) {
1854 info = alloc_devinfo_mem();
1855 if (!info) {
1856 domain_exit(domain);
1857 goto error;
1858 }
David Woodhouse276dbf992009-04-04 01:45:37 +01001859 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001860 info->bus = bus;
1861 info->devfn = devfn;
1862 info->dev = NULL;
1863 info->domain = domain;
1864 /* This domain is shared by devices under p2p bridge */
Weidong Han3b5410e2008-12-08 09:17:15 +08001865 domain->flags |= DOMAIN_FLAG_P2P_MULTIPLE_DEVICES;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001866
1867 /* pcie-to-pci bridge already has a domain, uses it */
1868 found = NULL;
1869 spin_lock_irqsave(&device_domain_lock, flags);
1870 list_for_each_entry(tmp, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001871 if (tmp->segment == segment &&
1872 tmp->bus == bus && tmp->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001873 found = tmp->domain;
1874 break;
1875 }
1876 }
1877 if (found) {
1878 free_devinfo_mem(info);
1879 domain_exit(domain);
1880 domain = found;
1881 } else {
1882 list_add(&info->link, &domain->devices);
1883 list_add(&info->global, &device_domain_list);
1884 }
1885 spin_unlock_irqrestore(&device_domain_lock, flags);
1886 }
1887
1888found_domain:
1889 info = alloc_devinfo_mem();
1890 if (!info)
1891 goto error;
David Woodhouse276dbf992009-04-04 01:45:37 +01001892 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001893 info->bus = pdev->bus->number;
1894 info->devfn = pdev->devfn;
1895 info->dev = pdev;
1896 info->domain = domain;
1897 spin_lock_irqsave(&device_domain_lock, flags);
1898 /* somebody is fast */
1899 found = find_domain(pdev);
1900 if (found != NULL) {
1901 spin_unlock_irqrestore(&device_domain_lock, flags);
1902 if (found != domain) {
1903 domain_exit(domain);
1904 domain = found;
1905 }
1906 free_devinfo_mem(info);
1907 return domain;
1908 }
1909 list_add(&info->link, &domain->devices);
1910 list_add(&info->global, &device_domain_list);
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001911 pdev->dev.archdata.iommu = info;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001912 spin_unlock_irqrestore(&device_domain_lock, flags);
1913 return domain;
1914error:
1915 /* recheck it here, maybe others set it */
1916 return find_domain(pdev);
1917}
1918
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001919static int iommu_identity_mapping;
1920
David Woodhouseb2132032009-06-26 18:50:28 +01001921static int iommu_domain_identity_map(struct dmar_domain *domain,
1922 unsigned long long start,
1923 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001924{
David Woodhousec5395d52009-06-28 16:35:56 +01001925 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
1926 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001927
David Woodhousec5395d52009-06-28 16:35:56 +01001928 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
1929 dma_to_mm_pfn(last_vpfn))) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001930 printk(KERN_ERR "IOMMU: reserve iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01001931 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001932 }
1933
David Woodhousec5395d52009-06-28 16:35:56 +01001934 pr_debug("Mapping reserved region %llx-%llx for domain %d\n",
1935 start, end, domain->id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001936 /*
1937 * RMRR range might have overlap with physical memory range,
1938 * clear it first
1939 */
David Woodhousec5395d52009-06-28 16:35:56 +01001940 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001941
David Woodhousec5395d52009-06-28 16:35:56 +01001942 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
1943 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01001944 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01001945}
1946
1947static int iommu_prepare_identity_map(struct pci_dev *pdev,
1948 unsigned long long start,
1949 unsigned long long end)
1950{
1951 struct dmar_domain *domain;
1952 int ret;
1953
1954 printk(KERN_INFO
1955 "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
1956 pci_name(pdev), start, end);
1957
David Woodhousec7ab48d2009-06-26 19:10:36 +01001958 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01001959 if (!domain)
1960 return -ENOMEM;
1961
1962 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001963 if (ret)
1964 goto error;
1965
1966 /* context entry init */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001967 ret = domain_context_mapping(domain, pdev, CONTEXT_TT_MULTI_LEVEL);
David Woodhouseb2132032009-06-26 18:50:28 +01001968 if (ret)
1969 goto error;
1970
1971 return 0;
1972
1973 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001974 domain_exit(domain);
1975 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001976}
1977
1978static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
1979 struct pci_dev *pdev)
1980{
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001981 if (pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001982 return 0;
1983 return iommu_prepare_identity_map(pdev, rmrr->base_address,
1984 rmrr->end_address + 1);
1985}
1986
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001987#ifdef CONFIG_DMAR_FLOPPY_WA
1988static inline void iommu_prepare_isa(void)
1989{
1990 struct pci_dev *pdev;
1991 int ret;
1992
1993 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
1994 if (!pdev)
1995 return;
1996
David Woodhousec7ab48d2009-06-26 19:10:36 +01001997 printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07001998 ret = iommu_prepare_identity_map(pdev, 0, 16*1024*1024);
1999
2000 if (ret)
David Woodhousec7ab48d2009-06-26 19:10:36 +01002001 printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; "
2002 "floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002003
2004}
2005#else
2006static inline void iommu_prepare_isa(void)
2007{
2008 return;
2009}
2010#endif /* !CONFIG_DMAR_FLPY_WA */
2011
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002012/* Initialize each context entry as pass through.*/
2013static int __init init_context_pass_through(void)
2014{
2015 struct pci_dev *pdev = NULL;
2016 struct dmar_domain *domain;
2017 int ret;
2018
2019 for_each_pci_dev(pdev) {
2020 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
2021 ret = domain_context_mapping(domain, pdev,
2022 CONTEXT_TT_PASS_THROUGH);
2023 if (ret)
2024 return ret;
2025 }
2026 return 0;
2027}
2028
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002029static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002030
2031static int __init si_domain_work_fn(unsigned long start_pfn,
2032 unsigned long end_pfn, void *datax)
2033{
2034 int *ret = datax;
2035
2036 *ret = iommu_domain_identity_map(si_domain,
2037 (uint64_t)start_pfn << PAGE_SHIFT,
2038 (uint64_t)end_pfn << PAGE_SHIFT);
2039 return *ret;
2040
2041}
2042
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002043static int si_domain_init(void)
2044{
2045 struct dmar_drhd_unit *drhd;
2046 struct intel_iommu *iommu;
David Woodhousec7ab48d2009-06-26 19:10:36 +01002047 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002048
2049 si_domain = alloc_domain();
2050 if (!si_domain)
2051 return -EFAULT;
2052
David Woodhousec7ab48d2009-06-26 19:10:36 +01002053 pr_debug("Identity mapping domain is domain %d\n", si_domain->id);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002054
2055 for_each_active_iommu(iommu, drhd) {
2056 ret = iommu_attach_domain(si_domain, iommu);
2057 if (ret) {
2058 domain_exit(si_domain);
2059 return -EFAULT;
2060 }
2061 }
2062
2063 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2064 domain_exit(si_domain);
2065 return -EFAULT;
2066 }
2067
2068 si_domain->flags = DOMAIN_FLAG_STATIC_IDENTITY;
2069
David Woodhousec7ab48d2009-06-26 19:10:36 +01002070 for_each_online_node(nid) {
2071 work_with_active_regions(nid, si_domain_work_fn, &ret);
2072 if (ret)
2073 return ret;
2074 }
2075
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002076 return 0;
2077}
2078
2079static void domain_remove_one_dev_info(struct dmar_domain *domain,
2080 struct pci_dev *pdev);
2081static int identity_mapping(struct pci_dev *pdev)
2082{
2083 struct device_domain_info *info;
2084
2085 if (likely(!iommu_identity_mapping))
2086 return 0;
2087
2088
2089 list_for_each_entry(info, &si_domain->devices, link)
2090 if (info->dev == pdev)
2091 return 1;
2092 return 0;
2093}
2094
2095static int domain_add_dev_info(struct dmar_domain *domain,
2096 struct pci_dev *pdev)
2097{
2098 struct device_domain_info *info;
2099 unsigned long flags;
2100
2101 info = alloc_devinfo_mem();
2102 if (!info)
2103 return -ENOMEM;
2104
2105 info->segment = pci_domain_nr(pdev->bus);
2106 info->bus = pdev->bus->number;
2107 info->devfn = pdev->devfn;
2108 info->dev = pdev;
2109 info->domain = domain;
2110
2111 spin_lock_irqsave(&device_domain_lock, flags);
2112 list_add(&info->link, &domain->devices);
2113 list_add(&info->global, &device_domain_list);
2114 pdev->dev.archdata.iommu = info;
2115 spin_unlock_irqrestore(&device_domain_lock, flags);
2116
2117 return 0;
2118}
2119
David Woodhouse6941af22009-07-04 18:24:27 +01002120static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
2121{
2122 if (iommu_identity_mapping == 2)
2123 return IS_GFX_DEVICE(pdev);
2124
David Woodhouse3dfc8132009-07-04 19:11:08 +01002125 /*
2126 * We want to start off with all devices in the 1:1 domain, and
2127 * take them out later if we find they can't access all of memory.
2128 *
2129 * However, we can't do this for PCI devices behind bridges,
2130 * because all PCI devices behind the same bridge will end up
2131 * with the same source-id on their transactions.
2132 *
2133 * Practically speaking, we can't change things around for these
2134 * devices at run-time, because we can't be sure there'll be no
2135 * DMA transactions in flight for any of their siblings.
2136 *
2137 * So PCI devices (unless they're on the root bus) as well as
2138 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2139 * the 1:1 domain, just in _case_ one of their siblings turns out
2140 * not to be able to map all of memory.
2141 */
2142 if (!pdev->is_pcie) {
2143 if (!pci_is_root_bus(pdev->bus))
2144 return 0;
2145 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2146 return 0;
2147 } else if (pdev->pcie_type == PCI_EXP_TYPE_PCI_BRIDGE)
2148 return 0;
2149
2150 /*
2151 * At boot time, we don't yet know if devices will be 64-bit capable.
2152 * Assume that they will -- if they turn out not to be, then we can
2153 * take them out of the 1:1 domain later.
2154 */
David Woodhouse6941af22009-07-04 18:24:27 +01002155 if (!startup)
2156 return pdev->dma_mask > DMA_BIT_MASK(32);
2157
2158 return 1;
2159}
2160
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002161static int iommu_prepare_static_identity_mapping(void)
2162{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002163 struct pci_dev *pdev = NULL;
2164 int ret;
2165
2166 ret = si_domain_init();
2167 if (ret)
2168 return -EFAULT;
2169
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002170 for_each_pci_dev(pdev) {
David Woodhouse6941af22009-07-04 18:24:27 +01002171 if (iommu_should_identity_map(pdev, 1)) {
David Woodhouse62edf5d2009-07-04 10:59:46 +01002172 printk(KERN_INFO "IOMMU: identity mapping for device %s\n",
2173 pci_name(pdev));
David Woodhousec7ab48d2009-06-26 19:10:36 +01002174
David Woodhouse62edf5d2009-07-04 10:59:46 +01002175 ret = domain_context_mapping(si_domain, pdev,
2176 CONTEXT_TT_MULTI_LEVEL);
2177 if (ret)
2178 return ret;
2179 ret = domain_add_dev_info(si_domain, pdev);
2180 if (ret)
2181 return ret;
2182 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002183 }
2184
2185 return 0;
2186}
2187
2188int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002189{
2190 struct dmar_drhd_unit *drhd;
2191 struct dmar_rmrr_unit *rmrr;
2192 struct pci_dev *pdev;
2193 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002194 int i, ret;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002195 int pass_through = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002196
2197 /*
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002198 * In case pass through can not be enabled, iommu tries to use identity
2199 * mapping.
2200 */
2201 if (iommu_pass_through)
2202 iommu_identity_mapping = 1;
2203
2204 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002205 * for each drhd
2206 * allocate root
2207 * initialize and program root entry to not present
2208 * endfor
2209 */
2210 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002211 g_num_of_iommus++;
2212 /*
2213 * lock not needed as this is only incremented in the single
2214 * threaded kernel __init code path all other access are read
2215 * only
2216 */
2217 }
2218
Weidong Hand9630fe2008-12-08 11:06:32 +08002219 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
2220 GFP_KERNEL);
2221 if (!g_iommus) {
2222 printk(KERN_ERR "Allocating global iommu array failed\n");
2223 ret = -ENOMEM;
2224 goto error;
2225 }
2226
mark gross80b20dd2008-04-18 13:53:58 -07002227 deferred_flush = kzalloc(g_num_of_iommus *
2228 sizeof(struct deferred_flush_tables), GFP_KERNEL);
2229 if (!deferred_flush) {
Weidong Hand9630fe2008-12-08 11:06:32 +08002230 kfree(g_iommus);
mark gross5e0d2a62008-03-04 15:22:08 -08002231 ret = -ENOMEM;
2232 goto error;
2233 }
2234
mark gross5e0d2a62008-03-04 15:22:08 -08002235 for_each_drhd_unit(drhd) {
2236 if (drhd->ignored)
2237 continue;
Suresh Siddha1886e8a2008-07-10 11:16:37 -07002238
2239 iommu = drhd->iommu;
Weidong Hand9630fe2008-12-08 11:06:32 +08002240 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002241
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002242 ret = iommu_init_domains(iommu);
2243 if (ret)
2244 goto error;
2245
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002246 /*
2247 * TBD:
2248 * we could share the same root & context tables
2249 * amoung all IOMMU's. Need to Split it later.
2250 */
2251 ret = iommu_alloc_root_entry(iommu);
2252 if (ret) {
2253 printk(KERN_ERR "IOMMU: allocate root entry failed\n");
2254 goto error;
2255 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002256 if (!ecap_pass_through(iommu->ecap))
2257 pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002258 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002259 if (iommu_pass_through)
2260 if (!pass_through) {
2261 printk(KERN_INFO
2262 "Pass Through is not supported by hardware.\n");
2263 iommu_pass_through = 0;
2264 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002265
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002266 /*
2267 * Start from the sane iommu hardware state.
2268 */
Youquan Songa77b67d2008-10-16 16:31:56 -07002269 for_each_drhd_unit(drhd) {
2270 if (drhd->ignored)
2271 continue;
2272
2273 iommu = drhd->iommu;
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002274
2275 /*
2276 * If the queued invalidation is already initialized by us
2277 * (for example, while enabling interrupt-remapping) then
2278 * we got the things already rolling from a sane state.
2279 */
2280 if (iommu->qi)
2281 continue;
2282
2283 /*
2284 * Clear any previous faults.
2285 */
2286 dmar_fault(-1, iommu);
2287 /*
2288 * Disable queued invalidation if supported and already enabled
2289 * before OS handover.
2290 */
2291 dmar_disable_qi(iommu);
2292 }
2293
2294 for_each_drhd_unit(drhd) {
2295 if (drhd->ignored)
2296 continue;
2297
2298 iommu = drhd->iommu;
2299
Youquan Songa77b67d2008-10-16 16:31:56 -07002300 if (dmar_enable_qi(iommu)) {
2301 /*
2302 * Queued Invalidate not enabled, use Register Based
2303 * Invalidate
2304 */
2305 iommu->flush.flush_context = __iommu_flush_context;
2306 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
2307 printk(KERN_INFO "IOMMU 0x%Lx: using Register based "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002308 "invalidation\n",
2309 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002310 } else {
2311 iommu->flush.flush_context = qi_flush_context;
2312 iommu->flush.flush_iotlb = qi_flush_iotlb;
2313 printk(KERN_INFO "IOMMU 0x%Lx: using Queued "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002314 "invalidation\n",
2315 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002316 }
2317 }
2318
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002319 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002320 * If pass through is set and enabled, context entries of all pci
2321 * devices are intialized by pass through translation type.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002322 */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002323 if (iommu_pass_through) {
2324 ret = init_context_pass_through();
2325 if (ret) {
2326 printk(KERN_ERR "IOMMU: Pass through init failed.\n");
2327 iommu_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002328 }
2329 }
2330
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002331 /*
2332 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002333 * identity mappings for rmrr, gfx, and isa and may fall back to static
2334 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002335 */
2336 if (!iommu_pass_through) {
David Woodhouse62edf5d2009-07-04 10:59:46 +01002337#ifdef CONFIG_DMAR_BROKEN_GFX_WA
2338 if (!iommu_identity_mapping)
2339 iommu_identity_mapping = 2;
2340#endif
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002341 if (iommu_identity_mapping)
2342 iommu_prepare_static_identity_mapping();
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002343 /*
2344 * For each rmrr
2345 * for each dev attached to rmrr
2346 * do
2347 * locate drhd for dev, alloc domain for dev
2348 * allocate free domain
2349 * allocate page table entries for rmrr
2350 * if context not allocated for bus
2351 * allocate and init context
2352 * set present in root table for this bus
2353 * init context with domain, translation etc
2354 * endfor
2355 * endfor
2356 */
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002357 printk(KERN_INFO "IOMMU: Setting RMRR:\n");
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002358 for_each_rmrr_units(rmrr) {
2359 for (i = 0; i < rmrr->devices_cnt; i++) {
2360 pdev = rmrr->devices[i];
2361 /*
2362 * some BIOS lists non-exist devices in DMAR
2363 * table.
2364 */
2365 if (!pdev)
2366 continue;
2367 ret = iommu_prepare_rmrr_dev(rmrr, pdev);
2368 if (ret)
2369 printk(KERN_ERR
2370 "IOMMU: mapping reserved region failed\n");
2371 }
2372 }
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07002373
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002374 iommu_prepare_isa();
2375 }
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002376
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002377 /*
2378 * for each drhd
2379 * enable fault log
2380 * global invalidate context cache
2381 * global invalidate iotlb
2382 * enable translation
2383 */
2384 for_each_drhd_unit(drhd) {
2385 if (drhd->ignored)
2386 continue;
2387 iommu = drhd->iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002388
2389 iommu_flush_write_buffer(iommu);
2390
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002391 ret = dmar_set_interrupt(iommu);
2392 if (ret)
2393 goto error;
2394
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002395 iommu_set_root_entry(iommu);
2396
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002397 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002398 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
mark grossf8bab732008-02-08 04:18:38 -08002399 iommu_disable_protect_mem_regions(iommu);
2400
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002401 ret = iommu_enable_translation(iommu);
2402 if (ret)
2403 goto error;
2404 }
2405
2406 return 0;
2407error:
2408 for_each_drhd_unit(drhd) {
2409 if (drhd->ignored)
2410 continue;
2411 iommu = drhd->iommu;
2412 free_iommu(iommu);
2413 }
Weidong Hand9630fe2008-12-08 11:06:32 +08002414 kfree(g_iommus);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002415 return ret;
2416}
2417
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002418/* Returns a number of VTD pages, but aligned to MM page size */
David Woodhouse88cb6a72009-06-28 15:03:06 +01002419static inline unsigned long aligned_nrpages(unsigned long host_addr,
2420 size_t size)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002421{
David Woodhouse88cb6a72009-06-28 15:03:06 +01002422 host_addr &= ~PAGE_MASK;
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002423 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002424}
2425
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002426/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01002427static struct iova *intel_alloc_iova(struct device *dev,
2428 struct dmar_domain *domain,
2429 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002430{
2431 struct pci_dev *pdev = to_pci_dev(dev);
2432 struct iova *iova = NULL;
2433
David Woodhouse875764d2009-06-28 21:20:51 +01002434 /* Restrict dma_mask to the width that the iommu can handle */
2435 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
2436
2437 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002438 /*
2439 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07002440 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08002441 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002442 */
David Woodhouse875764d2009-06-28 21:20:51 +01002443 iova = alloc_iova(&domain->iovad, nrpages,
2444 IOVA_PFN(DMA_BIT_MASK(32)), 1);
2445 if (iova)
2446 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002447 }
David Woodhouse875764d2009-06-28 21:20:51 +01002448 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
2449 if (unlikely(!iova)) {
2450 printk(KERN_ERR "Allocating %ld-page iova for %s failed",
2451 nrpages, pci_name(pdev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002452 return NULL;
2453 }
2454
2455 return iova;
2456}
2457
David Woodhouse147202a2009-07-07 19:43:20 +01002458static struct dmar_domain *__get_valid_domain_for_dev(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002459{
2460 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002461 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002462
2463 domain = get_domain_for_dev(pdev,
2464 DEFAULT_DOMAIN_ADDRESS_WIDTH);
2465 if (!domain) {
2466 printk(KERN_ERR
2467 "Allocating domain for %s failed", pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002468 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002469 }
2470
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002471 /* make sure context mapping is ok */
Weidong Han5331fe62008-12-08 23:00:00 +08002472 if (unlikely(!domain_context_mapped(pdev))) {
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002473 ret = domain_context_mapping(domain, pdev,
2474 CONTEXT_TT_MULTI_LEVEL);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002475 if (ret) {
2476 printk(KERN_ERR
2477 "Domain context map for %s failed",
2478 pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002479 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002480 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002481 }
2482
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002483 return domain;
2484}
2485
David Woodhouse147202a2009-07-07 19:43:20 +01002486static inline struct dmar_domain *get_valid_domain_for_dev(struct pci_dev *dev)
2487{
2488 struct device_domain_info *info;
2489
2490 /* No lock here, assumes no domain exit in normal case */
2491 info = dev->dev.archdata.iommu;
2492 if (likely(info))
2493 return info->domain;
2494
2495 return __get_valid_domain_for_dev(dev);
2496}
2497
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002498static int iommu_dummy(struct pci_dev *pdev)
2499{
2500 return pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
2501}
2502
2503/* Check if the pdev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01002504static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002505{
David Woodhouse73676832009-07-04 14:08:36 +01002506 struct pci_dev *pdev;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002507 int found;
2508
David Woodhouse73676832009-07-04 14:08:36 +01002509 if (unlikely(dev->bus != &pci_bus_type))
2510 return 1;
2511
2512 pdev = to_pci_dev(dev);
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002513 if (iommu_dummy(pdev))
2514 return 1;
2515
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002516 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002517 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002518
2519 found = identity_mapping(pdev);
2520 if (found) {
David Woodhouse6941af22009-07-04 18:24:27 +01002521 if (iommu_should_identity_map(pdev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002522 return 1;
2523 else {
2524 /*
2525 * 32 bit DMA is removed from si_domain and fall back
2526 * to non-identity mapping.
2527 */
2528 domain_remove_one_dev_info(si_domain, pdev);
2529 printk(KERN_INFO "32bit %s uses non-identity mapping\n",
2530 pci_name(pdev));
2531 return 0;
2532 }
2533 } else {
2534 /*
2535 * In case of a detached 64 bit DMA device from vm, the device
2536 * is put into si_domain for identity mapping.
2537 */
David Woodhouse6941af22009-07-04 18:24:27 +01002538 if (iommu_should_identity_map(pdev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002539 int ret;
2540 ret = domain_add_dev_info(si_domain, pdev);
David Woodhouse1b7bc0a2009-07-04 10:49:46 +01002541 if (ret)
2542 return 0;
2543 ret = domain_context_mapping(si_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002544 if (!ret) {
2545 printk(KERN_INFO "64bit %s uses identity mapping\n",
2546 pci_name(pdev));
2547 return 1;
2548 }
2549 }
2550 }
2551
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002552 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002553}
2554
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002555static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
2556 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002557{
2558 struct pci_dev *pdev = to_pci_dev(hwdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002559 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002560 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002561 struct iova *iova;
2562 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002563 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08002564 struct intel_iommu *iommu;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002565
2566 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002567
David Woodhouse73676832009-07-04 14:08:36 +01002568 if (iommu_no_mapping(hwdev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002569 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002570
2571 domain = get_valid_domain_for_dev(pdev);
2572 if (!domain)
2573 return 0;
2574
Weidong Han8c11e792008-12-08 15:29:22 +08002575 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01002576 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002577
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002578 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
2579 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002580 if (!iova)
2581 goto error;
2582
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002583 /*
2584 * Check if DMAR supports zero-length reads on write only
2585 * mappings..
2586 */
2587 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002588 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002589 prot |= DMA_PTE_READ;
2590 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2591 prot |= DMA_PTE_WRITE;
2592 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002593 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002594 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002595 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002596 * is not a big problem
2597 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01002598 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
2599 paddr >> VTD_PAGE_SHIFT, size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002600 if (ret)
2601 goto error;
2602
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002603 /* it's a non-present to present mapping. Only flush if caching mode */
2604 if (cap_caching_mode(iommu->cap))
David Woodhouse03d6a242009-06-28 15:33:46 +01002605 iommu_flush_iotlb_psi(iommu, 0, mm_to_dma_pfn(iova->pfn_lo), size);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002606 else
Weidong Han8c11e792008-12-08 15:29:22 +08002607 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002608
David Woodhouse03d6a242009-06-28 15:33:46 +01002609 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
2610 start_paddr += paddr & ~PAGE_MASK;
2611 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002612
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002613error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002614 if (iova)
2615 __free_iova(&domain->iovad, iova);
David Woodhouse4cf2e752009-02-11 17:23:43 +00002616 printk(KERN_ERR"Device %s request: %zx@%llx dir %d --- failed\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002617 pci_name(pdev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002618 return 0;
2619}
2620
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002621static dma_addr_t intel_map_page(struct device *dev, struct page *page,
2622 unsigned long offset, size_t size,
2623 enum dma_data_direction dir,
2624 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002625{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002626 return __intel_map_single(dev, page_to_phys(page) + offset, size,
2627 dir, to_pci_dev(dev)->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002628}
2629
mark gross5e0d2a62008-03-04 15:22:08 -08002630static void flush_unmaps(void)
2631{
mark gross80b20dd2008-04-18 13:53:58 -07002632 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08002633
mark gross5e0d2a62008-03-04 15:22:08 -08002634 timer_on = 0;
2635
2636 /* just flush them all */
2637 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08002638 struct intel_iommu *iommu = g_iommus[i];
2639 if (!iommu)
2640 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002641
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002642 if (!deferred_flush[i].next)
2643 continue;
2644
2645 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08002646 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002647 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08002648 unsigned long mask;
2649 struct iova *iova = deferred_flush[i].iova[j];
2650
2651 mask = (iova->pfn_hi - iova->pfn_lo + 1) << PAGE_SHIFT;
2652 mask = ilog2(mask >> VTD_PAGE_SHIFT);
2653 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
2654 iova->pfn_lo << PAGE_SHIFT, mask);
2655 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
mark gross80b20dd2008-04-18 13:53:58 -07002656 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08002657 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002658 }
2659
mark gross5e0d2a62008-03-04 15:22:08 -08002660 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08002661}
2662
2663static void flush_unmaps_timeout(unsigned long data)
2664{
mark gross80b20dd2008-04-18 13:53:58 -07002665 unsigned long flags;
2666
2667 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002668 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07002669 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08002670}
2671
2672static void add_unmap(struct dmar_domain *dom, struct iova *iova)
2673{
2674 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07002675 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08002676 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08002677
2678 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07002679 if (list_size == HIGH_WATER_MARK)
2680 flush_unmaps();
2681
Weidong Han8c11e792008-12-08 15:29:22 +08002682 iommu = domain_get_iommu(dom);
2683 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07002684
mark gross80b20dd2008-04-18 13:53:58 -07002685 next = deferred_flush[iommu_id].next;
2686 deferred_flush[iommu_id].domain[next] = dom;
2687 deferred_flush[iommu_id].iova[next] = iova;
2688 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08002689
2690 if (!timer_on) {
2691 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
2692 timer_on = 1;
2693 }
2694 list_size++;
2695 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
2696}
2697
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002698static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
2699 size_t size, enum dma_data_direction dir,
2700 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002701{
2702 struct pci_dev *pdev = to_pci_dev(dev);
2703 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002704 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002705 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002706 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002707
David Woodhouse73676832009-07-04 14:08:36 +01002708 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002709 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002710
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002711 domain = find_domain(pdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002712 BUG_ON(!domain);
2713
Weidong Han8c11e792008-12-08 15:29:22 +08002714 iommu = domain_get_iommu(domain);
2715
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002716 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01002717 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
2718 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002719 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002720
David Woodhoused794dc92009-06-28 00:27:49 +01002721 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2722 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002723
David Woodhoused794dc92009-06-28 00:27:49 +01002724 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
2725 pci_name(pdev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002726
2727 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002728 dma_pte_clear_range(domain, start_pfn, last_pfn);
2729
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002730 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01002731 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2732
mark gross5e0d2a62008-03-04 15:22:08 -08002733 if (intel_iommu_strict) {
David Woodhouse03d6a242009-06-28 15:33:46 +01002734 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
David Woodhoused794dc92009-06-28 00:27:49 +01002735 last_pfn - start_pfn + 1);
mark gross5e0d2a62008-03-04 15:22:08 -08002736 /* free iova */
2737 __free_iova(&domain->iovad, iova);
2738 } else {
2739 add_unmap(domain, iova);
2740 /*
2741 * queue up the release of the unmap to save the 1/6th of the
2742 * cpu used up by the iotlb flush operation...
2743 */
mark gross5e0d2a62008-03-04 15:22:08 -08002744 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002745}
2746
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002747static void intel_unmap_single(struct device *dev, dma_addr_t dev_addr, size_t size,
2748 int dir)
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002749{
2750 intel_unmap_page(dev, dev_addr, size, dir, NULL);
2751}
2752
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002753static void *intel_alloc_coherent(struct device *hwdev, size_t size,
2754 dma_addr_t *dma_handle, gfp_t flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002755{
2756 void *vaddr;
2757 int order;
2758
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002759 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002760 order = get_order(size);
2761 flags &= ~(GFP_DMA | GFP_DMA32);
2762
2763 vaddr = (void *)__get_free_pages(flags, order);
2764 if (!vaddr)
2765 return NULL;
2766 memset(vaddr, 0, size);
2767
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002768 *dma_handle = __intel_map_single(hwdev, virt_to_bus(vaddr), size,
2769 DMA_BIDIRECTIONAL,
2770 hwdev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002771 if (*dma_handle)
2772 return vaddr;
2773 free_pages((unsigned long)vaddr, order);
2774 return NULL;
2775}
2776
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002777static void intel_free_coherent(struct device *hwdev, size_t size, void *vaddr,
2778 dma_addr_t dma_handle)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002779{
2780 int order;
2781
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002782 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002783 order = get_order(size);
2784
2785 intel_unmap_single(hwdev, dma_handle, size, DMA_BIDIRECTIONAL);
2786 free_pages((unsigned long)vaddr, order);
2787}
2788
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002789static void intel_unmap_sg(struct device *hwdev, struct scatterlist *sglist,
2790 int nelems, enum dma_data_direction dir,
2791 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002792{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002793 struct pci_dev *pdev = to_pci_dev(hwdev);
2794 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002795 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002796 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002797 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002798
David Woodhouse73676832009-07-04 14:08:36 +01002799 if (iommu_no_mapping(hwdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002800 return;
2801
2802 domain = find_domain(pdev);
Weidong Han8c11e792008-12-08 15:29:22 +08002803 BUG_ON(!domain);
2804
2805 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002806
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002807 iova = find_iova(&domain->iovad, IOVA_PFN(sglist[0].dma_address));
David Woodhouse85b98272009-07-01 19:27:53 +01002808 if (WARN_ONCE(!iova, "Driver unmaps unmatched sglist at PFN %llx\n",
2809 (unsigned long long)sglist[0].dma_address))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002810 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002811
David Woodhoused794dc92009-06-28 00:27:49 +01002812 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2813 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002814
2815 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002816 dma_pte_clear_range(domain, start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002817
David Woodhoused794dc92009-06-28 00:27:49 +01002818 /* free page tables */
2819 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2820
David Woodhouse03d6a242009-06-28 15:33:46 +01002821 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
David Woodhoused794dc92009-06-28 00:27:49 +01002822 (last_pfn - start_pfn + 1));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002823
2824 /* free iova */
2825 __free_iova(&domain->iovad, iova);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002826}
2827
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002828static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002829 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002830{
2831 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002832 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002833
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002834 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02002835 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00002836 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002837 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002838 }
2839 return nelems;
2840}
2841
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002842static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int nelems,
2843 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002844{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002845 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002846 struct pci_dev *pdev = to_pci_dev(hwdev);
2847 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002848 size_t size = 0;
2849 int prot = 0;
David Woodhouseb536d242009-06-28 14:49:31 +01002850 size_t offset_pfn = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002851 struct iova *iova = NULL;
2852 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002853 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01002854 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08002855 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002856
2857 BUG_ON(dir == DMA_NONE);
David Woodhouse73676832009-07-04 14:08:36 +01002858 if (iommu_no_mapping(hwdev))
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002859 return intel_nontranslate_map_sg(hwdev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002860
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002861 domain = get_valid_domain_for_dev(pdev);
2862 if (!domain)
2863 return 0;
2864
Weidong Han8c11e792008-12-08 15:29:22 +08002865 iommu = domain_get_iommu(domain);
2866
David Woodhouseb536d242009-06-28 14:49:31 +01002867 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01002868 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002869
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002870 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
2871 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002872 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002873 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002874 return 0;
2875 }
2876
2877 /*
2878 * Check if DMAR supports zero-length reads on write only
2879 * mappings..
2880 */
2881 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002882 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002883 prot |= DMA_PTE_READ;
2884 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2885 prot |= DMA_PTE_WRITE;
2886
David Woodhouseb536d242009-06-28 14:49:31 +01002887 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01002888
2889 ret = domain_sg_mapping(domain, start_vpfn, sglist, mm_to_dma_pfn(size), prot);
2890 if (unlikely(ret)) {
2891 /* clear the page */
2892 dma_pte_clear_range(domain, start_vpfn,
2893 start_vpfn + size - 1);
2894 /* free page tables */
2895 dma_pte_free_pagetable(domain, start_vpfn,
2896 start_vpfn + size - 1);
2897 /* free iova */
2898 __free_iova(&domain->iovad, iova);
2899 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002900 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002901
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002902 /* it's a non-present to present mapping. Only flush if caching mode */
2903 if (cap_caching_mode(iommu->cap))
David Woodhouse03d6a242009-06-28 15:33:46 +01002904 iommu_flush_iotlb_psi(iommu, 0, start_vpfn, offset_pfn);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002905 else
Weidong Han8c11e792008-12-08 15:29:22 +08002906 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002907
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002908 return nelems;
2909}
2910
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002911static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
2912{
2913 return !dma_addr;
2914}
2915
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002916struct dma_map_ops intel_dma_ops = {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002917 .alloc_coherent = intel_alloc_coherent,
2918 .free_coherent = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002919 .map_sg = intel_map_sg,
2920 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002921 .map_page = intel_map_page,
2922 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002923 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002924};
2925
2926static inline int iommu_domain_cache_init(void)
2927{
2928 int ret = 0;
2929
2930 iommu_domain_cache = kmem_cache_create("iommu_domain",
2931 sizeof(struct dmar_domain),
2932 0,
2933 SLAB_HWCACHE_ALIGN,
2934
2935 NULL);
2936 if (!iommu_domain_cache) {
2937 printk(KERN_ERR "Couldn't create iommu_domain cache\n");
2938 ret = -ENOMEM;
2939 }
2940
2941 return ret;
2942}
2943
2944static inline int iommu_devinfo_cache_init(void)
2945{
2946 int ret = 0;
2947
2948 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
2949 sizeof(struct device_domain_info),
2950 0,
2951 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002952 NULL);
2953 if (!iommu_devinfo_cache) {
2954 printk(KERN_ERR "Couldn't create devinfo cache\n");
2955 ret = -ENOMEM;
2956 }
2957
2958 return ret;
2959}
2960
2961static inline int iommu_iova_cache_init(void)
2962{
2963 int ret = 0;
2964
2965 iommu_iova_cache = kmem_cache_create("iommu_iova",
2966 sizeof(struct iova),
2967 0,
2968 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002969 NULL);
2970 if (!iommu_iova_cache) {
2971 printk(KERN_ERR "Couldn't create iova cache\n");
2972 ret = -ENOMEM;
2973 }
2974
2975 return ret;
2976}
2977
2978static int __init iommu_init_mempool(void)
2979{
2980 int ret;
2981 ret = iommu_iova_cache_init();
2982 if (ret)
2983 return ret;
2984
2985 ret = iommu_domain_cache_init();
2986 if (ret)
2987 goto domain_error;
2988
2989 ret = iommu_devinfo_cache_init();
2990 if (!ret)
2991 return ret;
2992
2993 kmem_cache_destroy(iommu_domain_cache);
2994domain_error:
2995 kmem_cache_destroy(iommu_iova_cache);
2996
2997 return -ENOMEM;
2998}
2999
3000static void __init iommu_exit_mempool(void)
3001{
3002 kmem_cache_destroy(iommu_devinfo_cache);
3003 kmem_cache_destroy(iommu_domain_cache);
3004 kmem_cache_destroy(iommu_iova_cache);
3005
3006}
3007
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003008static void __init init_no_remapping_devices(void)
3009{
3010 struct dmar_drhd_unit *drhd;
3011
3012 for_each_drhd_unit(drhd) {
3013 if (!drhd->include_all) {
3014 int i;
3015 for (i = 0; i < drhd->devices_cnt; i++)
3016 if (drhd->devices[i] != NULL)
3017 break;
3018 /* ignore DMAR unit if no pci devices exist */
3019 if (i == drhd->devices_cnt)
3020 drhd->ignored = 1;
3021 }
3022 }
3023
3024 if (dmar_map_gfx)
3025 return;
3026
3027 for_each_drhd_unit(drhd) {
3028 int i;
3029 if (drhd->ignored || drhd->include_all)
3030 continue;
3031
3032 for (i = 0; i < drhd->devices_cnt; i++)
3033 if (drhd->devices[i] &&
3034 !IS_GFX_DEVICE(drhd->devices[i]))
3035 break;
3036
3037 if (i < drhd->devices_cnt)
3038 continue;
3039
3040 /* bypass IOMMU if it is just for gfx devices */
3041 drhd->ignored = 1;
3042 for (i = 0; i < drhd->devices_cnt; i++) {
3043 if (!drhd->devices[i])
3044 continue;
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07003045 drhd->devices[i]->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003046 }
3047 }
3048}
3049
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003050#ifdef CONFIG_SUSPEND
3051static int init_iommu_hw(void)
3052{
3053 struct dmar_drhd_unit *drhd;
3054 struct intel_iommu *iommu = NULL;
3055
3056 for_each_active_iommu(iommu, drhd)
3057 if (iommu->qi)
3058 dmar_reenable_qi(iommu);
3059
3060 for_each_active_iommu(iommu, drhd) {
3061 iommu_flush_write_buffer(iommu);
3062
3063 iommu_set_root_entry(iommu);
3064
3065 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003066 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003067 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003068 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003069 iommu_disable_protect_mem_regions(iommu);
3070 iommu_enable_translation(iommu);
3071 }
3072
3073 return 0;
3074}
3075
3076static void iommu_flush_all(void)
3077{
3078 struct dmar_drhd_unit *drhd;
3079 struct intel_iommu *iommu;
3080
3081 for_each_active_iommu(iommu, drhd) {
3082 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003083 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003084 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003085 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003086 }
3087}
3088
3089static int iommu_suspend(struct sys_device *dev, pm_message_t state)
3090{
3091 struct dmar_drhd_unit *drhd;
3092 struct intel_iommu *iommu = NULL;
3093 unsigned long flag;
3094
3095 for_each_active_iommu(iommu, drhd) {
3096 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3097 GFP_ATOMIC);
3098 if (!iommu->iommu_state)
3099 goto nomem;
3100 }
3101
3102 iommu_flush_all();
3103
3104 for_each_active_iommu(iommu, drhd) {
3105 iommu_disable_translation(iommu);
3106
3107 spin_lock_irqsave(&iommu->register_lock, flag);
3108
3109 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3110 readl(iommu->reg + DMAR_FECTL_REG);
3111 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3112 readl(iommu->reg + DMAR_FEDATA_REG);
3113 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3114 readl(iommu->reg + DMAR_FEADDR_REG);
3115 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3116 readl(iommu->reg + DMAR_FEUADDR_REG);
3117
3118 spin_unlock_irqrestore(&iommu->register_lock, flag);
3119 }
3120 return 0;
3121
3122nomem:
3123 for_each_active_iommu(iommu, drhd)
3124 kfree(iommu->iommu_state);
3125
3126 return -ENOMEM;
3127}
3128
3129static int iommu_resume(struct sys_device *dev)
3130{
3131 struct dmar_drhd_unit *drhd;
3132 struct intel_iommu *iommu = NULL;
3133 unsigned long flag;
3134
3135 if (init_iommu_hw()) {
3136 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
3137 return -EIO;
3138 }
3139
3140 for_each_active_iommu(iommu, drhd) {
3141
3142 spin_lock_irqsave(&iommu->register_lock, flag);
3143
3144 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3145 iommu->reg + DMAR_FECTL_REG);
3146 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3147 iommu->reg + DMAR_FEDATA_REG);
3148 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3149 iommu->reg + DMAR_FEADDR_REG);
3150 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3151 iommu->reg + DMAR_FEUADDR_REG);
3152
3153 spin_unlock_irqrestore(&iommu->register_lock, flag);
3154 }
3155
3156 for_each_active_iommu(iommu, drhd)
3157 kfree(iommu->iommu_state);
3158
3159 return 0;
3160}
3161
3162static struct sysdev_class iommu_sysclass = {
3163 .name = "iommu",
3164 .resume = iommu_resume,
3165 .suspend = iommu_suspend,
3166};
3167
3168static struct sys_device device_iommu = {
3169 .cls = &iommu_sysclass,
3170};
3171
3172static int __init init_iommu_sysfs(void)
3173{
3174 int error;
3175
3176 error = sysdev_class_register(&iommu_sysclass);
3177 if (error)
3178 return error;
3179
3180 error = sysdev_register(&device_iommu);
3181 if (error)
3182 sysdev_class_unregister(&iommu_sysclass);
3183
3184 return error;
3185}
3186
3187#else
3188static int __init init_iommu_sysfs(void)
3189{
3190 return 0;
3191}
3192#endif /* CONFIG_PM */
3193
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003194int __init intel_iommu_init(void)
3195{
3196 int ret = 0;
3197
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003198 if (dmar_table_init())
3199 return -ENODEV;
3200
Suresh Siddha1886e8a2008-07-10 11:16:37 -07003201 if (dmar_dev_scope_init())
3202 return -ENODEV;
3203
Suresh Siddha2ae21012008-07-10 11:16:43 -07003204 /*
3205 * Check the need for DMA-remapping initialization now.
3206 * Above initialization will also be used by Interrupt-remapping.
3207 */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003208 if (no_iommu || (swiotlb && !iommu_pass_through) || dmar_disabled)
Suresh Siddha2ae21012008-07-10 11:16:43 -07003209 return -ENODEV;
3210
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003211 iommu_init_mempool();
3212 dmar_init_reserved_ranges();
3213
3214 init_no_remapping_devices();
3215
3216 ret = init_dmars();
3217 if (ret) {
3218 printk(KERN_ERR "IOMMU: dmar init failed\n");
3219 put_iova_domain(&reserved_iova_list);
3220 iommu_exit_mempool();
3221 return ret;
3222 }
3223 printk(KERN_INFO
3224 "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n");
3225
mark gross5e0d2a62008-03-04 15:22:08 -08003226 init_timer(&unmap_timer);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003227 force_iommu = 1;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003228
3229 if (!iommu_pass_through) {
3230 printk(KERN_INFO
3231 "Multi-level page-table translation for DMAR.\n");
3232 dma_ops = &intel_dma_ops;
3233 } else
3234 printk(KERN_INFO
3235 "DMAR: Pass through translation for DMAR.\n");
3236
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003237 init_iommu_sysfs();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003238
3239 register_iommu(&intel_iommu_ops);
3240
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003241 return 0;
3242}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07003243
Han, Weidong3199aa62009-02-26 17:31:12 +08003244static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
3245 struct pci_dev *pdev)
3246{
3247 struct pci_dev *tmp, *parent;
3248
3249 if (!iommu || !pdev)
3250 return;
3251
3252 /* dependent device detach */
3253 tmp = pci_find_upstream_pcie_bridge(pdev);
3254 /* Secondary interface's bus number and devfn 0 */
3255 if (tmp) {
3256 parent = pdev->bus->self;
3257 while (parent != tmp) {
3258 iommu_detach_dev(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01003259 parent->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003260 parent = parent->bus->self;
3261 }
3262 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
3263 iommu_detach_dev(iommu,
3264 tmp->subordinate->number, 0);
3265 else /* this is a legacy PCI bridge */
David Woodhouse276dbf992009-04-04 01:45:37 +01003266 iommu_detach_dev(iommu, tmp->bus->number,
3267 tmp->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003268 }
3269}
3270
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003271static void domain_remove_one_dev_info(struct dmar_domain *domain,
Weidong Hanc7151a82008-12-08 22:51:37 +08003272 struct pci_dev *pdev)
3273{
3274 struct device_domain_info *info;
3275 struct intel_iommu *iommu;
3276 unsigned long flags;
3277 int found = 0;
3278 struct list_head *entry, *tmp;
3279
David Woodhouse276dbf992009-04-04 01:45:37 +01003280 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3281 pdev->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003282 if (!iommu)
3283 return;
3284
3285 spin_lock_irqsave(&device_domain_lock, flags);
3286 list_for_each_safe(entry, tmp, &domain->devices) {
3287 info = list_entry(entry, struct device_domain_info, link);
David Woodhouse276dbf992009-04-04 01:45:37 +01003288 /* No need to compare PCI domain; it has to be the same */
Weidong Hanc7151a82008-12-08 22:51:37 +08003289 if (info->bus == pdev->bus->number &&
3290 info->devfn == pdev->devfn) {
3291 list_del(&info->link);
3292 list_del(&info->global);
3293 if (info->dev)
3294 info->dev->dev.archdata.iommu = NULL;
3295 spin_unlock_irqrestore(&device_domain_lock, flags);
3296
Yu Zhao93a23a72009-05-18 13:51:37 +08003297 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08003298 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003299 iommu_detach_dependent_devices(iommu, pdev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003300 free_devinfo_mem(info);
3301
3302 spin_lock_irqsave(&device_domain_lock, flags);
3303
3304 if (found)
3305 break;
3306 else
3307 continue;
3308 }
3309
3310 /* if there is no other devices under the same iommu
3311 * owned by this domain, clear this iommu in iommu_bmp
3312 * update iommu count and coherency
3313 */
David Woodhouse276dbf992009-04-04 01:45:37 +01003314 if (iommu == device_to_iommu(info->segment, info->bus,
3315 info->devfn))
Weidong Hanc7151a82008-12-08 22:51:37 +08003316 found = 1;
3317 }
3318
3319 if (found == 0) {
3320 unsigned long tmp_flags;
3321 spin_lock_irqsave(&domain->iommu_lock, tmp_flags);
3322 clear_bit(iommu->seq_id, &domain->iommu_bmp);
3323 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003324 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003325 spin_unlock_irqrestore(&domain->iommu_lock, tmp_flags);
3326 }
3327
3328 spin_unlock_irqrestore(&device_domain_lock, flags);
3329}
3330
3331static void vm_domain_remove_all_dev_info(struct dmar_domain *domain)
3332{
3333 struct device_domain_info *info;
3334 struct intel_iommu *iommu;
3335 unsigned long flags1, flags2;
3336
3337 spin_lock_irqsave(&device_domain_lock, flags1);
3338 while (!list_empty(&domain->devices)) {
3339 info = list_entry(domain->devices.next,
3340 struct device_domain_info, link);
3341 list_del(&info->link);
3342 list_del(&info->global);
3343 if (info->dev)
3344 info->dev->dev.archdata.iommu = NULL;
3345
3346 spin_unlock_irqrestore(&device_domain_lock, flags1);
3347
Yu Zhao93a23a72009-05-18 13:51:37 +08003348 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01003349 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003350 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003351 iommu_detach_dependent_devices(iommu, info->dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003352
3353 /* clear this iommu in iommu_bmp, update iommu count
Sheng Yang58c610b2009-03-18 15:33:05 +08003354 * and capabilities
Weidong Hanc7151a82008-12-08 22:51:37 +08003355 */
3356 spin_lock_irqsave(&domain->iommu_lock, flags2);
3357 if (test_and_clear_bit(iommu->seq_id,
3358 &domain->iommu_bmp)) {
3359 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003360 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003361 }
3362 spin_unlock_irqrestore(&domain->iommu_lock, flags2);
3363
3364 free_devinfo_mem(info);
3365 spin_lock_irqsave(&device_domain_lock, flags1);
3366 }
3367 spin_unlock_irqrestore(&device_domain_lock, flags1);
3368}
3369
Weidong Han5e98c4b2008-12-08 23:03:27 +08003370/* domain id for virtual machine, it won't be set in context */
3371static unsigned long vm_domid;
3372
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003373static int vm_domain_min_agaw(struct dmar_domain *domain)
3374{
3375 int i;
3376 int min_agaw = domain->agaw;
3377
3378 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
3379 for (; i < g_num_of_iommus; ) {
3380 if (min_agaw > g_iommus[i]->agaw)
3381 min_agaw = g_iommus[i]->agaw;
3382
3383 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
3384 }
3385
3386 return min_agaw;
3387}
3388
Weidong Han5e98c4b2008-12-08 23:03:27 +08003389static struct dmar_domain *iommu_alloc_vm_domain(void)
3390{
3391 struct dmar_domain *domain;
3392
3393 domain = alloc_domain_mem();
3394 if (!domain)
3395 return NULL;
3396
3397 domain->id = vm_domid++;
3398 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
3399 domain->flags = DOMAIN_FLAG_VIRTUAL_MACHINE;
3400
3401 return domain;
3402}
3403
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003404static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08003405{
3406 int adjust_width;
3407
3408 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003409 spin_lock_init(&domain->iommu_lock);
3410
3411 domain_reserve_special_ranges(domain);
3412
3413 /* calculate AGAW */
3414 domain->gaw = guest_width;
3415 adjust_width = guestwidth_to_adjustwidth(guest_width);
3416 domain->agaw = width_to_agaw(adjust_width);
3417
3418 INIT_LIST_HEAD(&domain->devices);
3419
3420 domain->iommu_count = 0;
3421 domain->iommu_coherency = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003422 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08003423
3424 /* always allocate the top pgd */
3425 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
3426 if (!domain->pgd)
3427 return -ENOMEM;
3428 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
3429 return 0;
3430}
3431
3432static void iommu_free_vm_domain(struct dmar_domain *domain)
3433{
3434 unsigned long flags;
3435 struct dmar_drhd_unit *drhd;
3436 struct intel_iommu *iommu;
3437 unsigned long i;
3438 unsigned long ndomains;
3439
3440 for_each_drhd_unit(drhd) {
3441 if (drhd->ignored)
3442 continue;
3443 iommu = drhd->iommu;
3444
3445 ndomains = cap_ndoms(iommu->cap);
3446 i = find_first_bit(iommu->domain_ids, ndomains);
3447 for (; i < ndomains; ) {
3448 if (iommu->domains[i] == domain) {
3449 spin_lock_irqsave(&iommu->lock, flags);
3450 clear_bit(i, iommu->domain_ids);
3451 iommu->domains[i] = NULL;
3452 spin_unlock_irqrestore(&iommu->lock, flags);
3453 break;
3454 }
3455 i = find_next_bit(iommu->domain_ids, ndomains, i+1);
3456 }
3457 }
3458}
3459
3460static void vm_domain_exit(struct dmar_domain *domain)
3461{
Weidong Han5e98c4b2008-12-08 23:03:27 +08003462 /* Domain 0 is reserved, so dont process it */
3463 if (!domain)
3464 return;
3465
3466 vm_domain_remove_all_dev_info(domain);
3467 /* destroy iovas */
3468 put_iova_domain(&domain->iovad);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003469
3470 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01003471 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003472
3473 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01003474 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003475
3476 iommu_free_vm_domain(domain);
3477 free_domain_mem(domain);
3478}
3479
Joerg Roedel5d450802008-12-03 14:52:32 +01003480static int intel_iommu_domain_init(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003481{
Joerg Roedel5d450802008-12-03 14:52:32 +01003482 struct dmar_domain *dmar_domain;
Kay, Allen M38717942008-09-09 18:37:29 +03003483
Joerg Roedel5d450802008-12-03 14:52:32 +01003484 dmar_domain = iommu_alloc_vm_domain();
3485 if (!dmar_domain) {
Kay, Allen M38717942008-09-09 18:37:29 +03003486 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003487 "intel_iommu_domain_init: dmar_domain == NULL\n");
3488 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003489 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003490 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Kay, Allen M38717942008-09-09 18:37:29 +03003491 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003492 "intel_iommu_domain_init() failed\n");
3493 vm_domain_exit(dmar_domain);
3494 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003495 }
Joerg Roedel5d450802008-12-03 14:52:32 +01003496 domain->priv = dmar_domain;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003497
Joerg Roedel5d450802008-12-03 14:52:32 +01003498 return 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003499}
Kay, Allen M38717942008-09-09 18:37:29 +03003500
Joerg Roedel5d450802008-12-03 14:52:32 +01003501static void intel_iommu_domain_destroy(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003502{
Joerg Roedel5d450802008-12-03 14:52:32 +01003503 struct dmar_domain *dmar_domain = domain->priv;
3504
3505 domain->priv = NULL;
3506 vm_domain_exit(dmar_domain);
Kay, Allen M38717942008-09-09 18:37:29 +03003507}
Kay, Allen M38717942008-09-09 18:37:29 +03003508
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003509static int intel_iommu_attach_device(struct iommu_domain *domain,
3510 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003511{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003512 struct dmar_domain *dmar_domain = domain->priv;
3513 struct pci_dev *pdev = to_pci_dev(dev);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003514 struct intel_iommu *iommu;
3515 int addr_width;
3516 u64 end;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003517 int ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003518
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003519 /* normally pdev is not mapped */
3520 if (unlikely(domain_context_mapped(pdev))) {
3521 struct dmar_domain *old_domain;
3522
3523 old_domain = find_domain(pdev);
3524 if (old_domain) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003525 if (dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
3526 dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)
3527 domain_remove_one_dev_info(old_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003528 else
3529 domain_remove_dev_info(old_domain);
3530 }
3531 }
3532
David Woodhouse276dbf992009-04-04 01:45:37 +01003533 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3534 pdev->devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003535 if (!iommu)
3536 return -ENODEV;
3537
3538 /* check if this iommu agaw is sufficient for max mapped address */
3539 addr_width = agaw_to_width(iommu->agaw);
3540 end = DOMAIN_MAX_ADDR(addr_width);
3541 end = end & VTD_PAGE_MASK;
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003542 if (end < dmar_domain->max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003543 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3544 "sufficient for the mapped address (%llx)\n",
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003545 __func__, iommu->agaw, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003546 return -EFAULT;
3547 }
3548
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003549 ret = domain_add_dev_info(dmar_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003550 if (ret)
3551 return ret;
3552
Yu Zhao93a23a72009-05-18 13:51:37 +08003553 ret = domain_context_mapping(dmar_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003554 return ret;
3555}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003556
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003557static void intel_iommu_detach_device(struct iommu_domain *domain,
3558 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003559{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003560 struct dmar_domain *dmar_domain = domain->priv;
3561 struct pci_dev *pdev = to_pci_dev(dev);
3562
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003563 domain_remove_one_dev_info(dmar_domain, pdev);
Kay, Allen M38717942008-09-09 18:37:29 +03003564}
Kay, Allen M38717942008-09-09 18:37:29 +03003565
Joerg Roedeldde57a22008-12-03 15:04:09 +01003566static int intel_iommu_map_range(struct iommu_domain *domain,
3567 unsigned long iova, phys_addr_t hpa,
3568 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03003569{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003570 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003571 u64 max_addr;
3572 int addr_width;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003573 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003574 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003575
Joerg Roedeldde57a22008-12-03 15:04:09 +01003576 if (iommu_prot & IOMMU_READ)
3577 prot |= DMA_PTE_READ;
3578 if (iommu_prot & IOMMU_WRITE)
3579 prot |= DMA_PTE_WRITE;
Sheng Yang9cf066972009-03-18 15:33:07 +08003580 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
3581 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003582
David Woodhouse163cc522009-06-28 00:51:17 +01003583 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003584 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003585 int min_agaw;
3586 u64 end;
3587
3588 /* check if minimum agaw is sufficient for mapped address */
Joerg Roedeldde57a22008-12-03 15:04:09 +01003589 min_agaw = vm_domain_min_agaw(dmar_domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003590 addr_width = agaw_to_width(min_agaw);
3591 end = DOMAIN_MAX_ADDR(addr_width);
3592 end = end & VTD_PAGE_MASK;
3593 if (end < max_addr) {
3594 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3595 "sufficient for the mapped address (%llx)\n",
3596 __func__, min_agaw, max_addr);
3597 return -EFAULT;
3598 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01003599 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003600 }
David Woodhousead051222009-06-28 14:22:28 +01003601 /* Round up size to next multiple of PAGE_SIZE, if it and
3602 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01003603 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01003604 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
3605 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003606 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003607}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003608
Joerg Roedeldde57a22008-12-03 15:04:09 +01003609static void intel_iommu_unmap_range(struct iommu_domain *domain,
3610 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003611{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003612 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003613
David Woodhouse163cc522009-06-28 00:51:17 +01003614 dma_pte_clear_range(dmar_domain, iova >> VTD_PAGE_SHIFT,
3615 (iova + size - 1) >> VTD_PAGE_SHIFT);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003616
David Woodhouse163cc522009-06-28 00:51:17 +01003617 if (dmar_domain->max_addr == iova + size)
3618 dmar_domain->max_addr = iova;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003619}
Kay, Allen M38717942008-09-09 18:37:29 +03003620
Joerg Roedeld14d6572008-12-03 15:06:57 +01003621static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
3622 unsigned long iova)
Kay, Allen M38717942008-09-09 18:37:29 +03003623{
Joerg Roedeld14d6572008-12-03 15:06:57 +01003624 struct dmar_domain *dmar_domain = domain->priv;
Kay, Allen M38717942008-09-09 18:37:29 +03003625 struct dma_pte *pte;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003626 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003627
David Woodhouseb026fd22009-06-28 10:37:25 +01003628 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT);
Kay, Allen M38717942008-09-09 18:37:29 +03003629 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003630 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03003631
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003632 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03003633}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003634
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003635static int intel_iommu_domain_has_cap(struct iommu_domain *domain,
3636 unsigned long cap)
3637{
3638 struct dmar_domain *dmar_domain = domain->priv;
3639
3640 if (cap == IOMMU_CAP_CACHE_COHERENCY)
3641 return dmar_domain->iommu_snooping;
3642
3643 return 0;
3644}
3645
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003646static struct iommu_ops intel_iommu_ops = {
3647 .domain_init = intel_iommu_domain_init,
3648 .domain_destroy = intel_iommu_domain_destroy,
3649 .attach_dev = intel_iommu_attach_device,
3650 .detach_dev = intel_iommu_detach_device,
3651 .map = intel_iommu_map_range,
3652 .unmap = intel_iommu_unmap_range,
3653 .iova_to_phys = intel_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003654 .domain_has_cap = intel_iommu_domain_has_cap,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003655};
David Woodhouse9af88142009-02-13 23:18:03 +00003656
3657static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
3658{
3659 /*
3660 * Mobile 4 Series Chipset neglects to set RWBF capability,
3661 * but needs it:
3662 */
3663 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
3664 rwbf_quirk = 1;
3665}
3666
3667DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);