blob: 5493c79dde4788cbcf0e585405196ec6152c6ec6 [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>
Stephen Rothwelladb2fe02009-08-31 15:24:23 +100040#include <linux/dmi.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070041#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090042#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070043#include "pci.h"
44
Fenghua Yu5b6985c2008-10-16 18:02:32 -070045#define ROOT_SIZE VTD_PAGE_SIZE
46#define CONTEXT_SIZE VTD_PAGE_SIZE
47
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070048#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
49#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
50
51#define IOAPIC_RANGE_START (0xfee00000)
52#define IOAPIC_RANGE_END (0xfeefffff)
53#define IOVA_START_ADDR (0x1000)
54
55#define DEFAULT_DOMAIN_ADDRESS_WIDTH 48
56
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070057#define MAX_AGAW_WIDTH 64
58
David Woodhouse2ebe3152009-09-19 07:34:04 -070059#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
60#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
61
62/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
63 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
64#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
65 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
66#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070067
Mark McLoughlinf27be032008-11-20 15:49:43 +000068#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
Yang Hongyang284901a2009-04-06 19:01:15 -070069#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
Yang Hongyang6a355282009-04-06 19:01:13 -070070#define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64))
mark gross5e0d2a62008-03-04 15:22:08 -080071
David Woodhousefd18de52009-05-10 23:57:41 +010072
David Woodhousedd4e8312009-06-27 16:21:20 +010073/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
74 are never going to work. */
75static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
76{
77 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
78}
79
80static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
81{
82 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
83}
84static inline unsigned long page_to_dma_pfn(struct page *pg)
85{
86 return mm_to_dma_pfn(page_to_pfn(pg));
87}
88static inline unsigned long virt_to_dma_pfn(void *p)
89{
90 return page_to_dma_pfn(virt_to_page(p));
91}
92
Weidong Hand9630fe2008-12-08 11:06:32 +080093/* global iommu list, set NULL for ignored DMAR units */
94static struct intel_iommu **g_iommus;
95
David Woodhouse9af88142009-02-13 23:18:03 +000096static int rwbf_quirk;
97
Mark McLoughlin46b08e12008-11-20 15:49:44 +000098/*
99 * 0: Present
100 * 1-11: Reserved
101 * 12-63: Context Ptr (12 - (haw-1))
102 * 64-127: Reserved
103 */
104struct root_entry {
105 u64 val;
106 u64 rsvd1;
107};
108#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
109static inline bool root_present(struct root_entry *root)
110{
111 return (root->val & 1);
112}
113static inline void set_root_present(struct root_entry *root)
114{
115 root->val |= 1;
116}
117static inline void set_root_value(struct root_entry *root, unsigned long value)
118{
119 root->val |= value & VTD_PAGE_MASK;
120}
121
122static inline struct context_entry *
123get_context_addr_from_root(struct root_entry *root)
124{
125 return (struct context_entry *)
126 (root_present(root)?phys_to_virt(
127 root->val & VTD_PAGE_MASK) :
128 NULL);
129}
130
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000131/*
132 * low 64 bits:
133 * 0: present
134 * 1: fault processing disable
135 * 2-3: translation type
136 * 12-63: address space root
137 * high 64 bits:
138 * 0-2: address width
139 * 3-6: aval
140 * 8-23: domain id
141 */
142struct context_entry {
143 u64 lo;
144 u64 hi;
145};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000146
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000147static inline bool context_present(struct context_entry *context)
148{
149 return (context->lo & 1);
150}
151static inline void context_set_present(struct context_entry *context)
152{
153 context->lo |= 1;
154}
155
156static inline void context_set_fault_enable(struct context_entry *context)
157{
158 context->lo &= (((u64)-1) << 2) | 1;
159}
160
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000161static inline void context_set_translation_type(struct context_entry *context,
162 unsigned long value)
163{
164 context->lo &= (((u64)-1) << 4) | 3;
165 context->lo |= (value & 3) << 2;
166}
167
168static inline void context_set_address_root(struct context_entry *context,
169 unsigned long value)
170{
171 context->lo |= value & VTD_PAGE_MASK;
172}
173
174static inline void context_set_address_width(struct context_entry *context,
175 unsigned long value)
176{
177 context->hi |= value & 7;
178}
179
180static inline void context_set_domain_id(struct context_entry *context,
181 unsigned long value)
182{
183 context->hi |= (value & ((1 << 16) - 1)) << 8;
184}
185
186static inline void context_clear_entry(struct context_entry *context)
187{
188 context->lo = 0;
189 context->hi = 0;
190}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000191
Mark McLoughlin622ba122008-11-20 15:49:46 +0000192/*
193 * 0: readable
194 * 1: writable
195 * 2-6: reserved
196 * 7: super page
Sheng Yang9cf06692009-03-18 15:33:07 +0800197 * 8-10: available
198 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000199 * 12-63: Host physcial address
200 */
201struct dma_pte {
202 u64 val;
203};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000204
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000205static inline void dma_clear_pte(struct dma_pte *pte)
206{
207 pte->val = 0;
208}
209
210static inline void dma_set_pte_readable(struct dma_pte *pte)
211{
212 pte->val |= DMA_PTE_READ;
213}
214
215static inline void dma_set_pte_writable(struct dma_pte *pte)
216{
217 pte->val |= DMA_PTE_WRITE;
218}
219
Sheng Yang9cf06692009-03-18 15:33:07 +0800220static inline void dma_set_pte_snp(struct dma_pte *pte)
221{
222 pte->val |= DMA_PTE_SNP;
223}
224
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000225static inline void dma_set_pte_prot(struct dma_pte *pte, unsigned long prot)
226{
227 pte->val = (pte->val & ~3) | (prot & 3);
228}
229
230static inline u64 dma_pte_addr(struct dma_pte *pte)
231{
David Woodhousec85994e2009-07-01 19:21:24 +0100232#ifdef CONFIG_64BIT
233 return pte->val & VTD_PAGE_MASK;
234#else
235 /* Must have a full atomic 64-bit read */
236 return __cmpxchg64(pte, 0ULL, 0ULL) & VTD_PAGE_MASK;
237#endif
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000238}
239
David Woodhousedd4e8312009-06-27 16:21:20 +0100240static inline void dma_set_pte_pfn(struct dma_pte *pte, unsigned long pfn)
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000241{
David Woodhousedd4e8312009-06-27 16:21:20 +0100242 pte->val |= (uint64_t)pfn << VTD_PAGE_SHIFT;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000243}
244
245static inline bool dma_pte_present(struct dma_pte *pte)
246{
247 return (pte->val & 3) != 0;
248}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000249
David Woodhouse75e6bf92009-07-02 11:21:16 +0100250static inline int first_pte_in_page(struct dma_pte *pte)
251{
252 return !((unsigned long)pte & ~VTD_PAGE_MASK);
253}
254
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700255/*
256 * This domain is a statically identity mapping domain.
257 * 1. This domain creats a static 1:1 mapping to all usable memory.
258 * 2. It maps to each iommu if successful.
259 * 3. Each iommu mapps to this domain if successful.
260 */
David Woodhouse19943b02009-08-04 16:19:20 +0100261static struct dmar_domain *si_domain;
262static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700263
Weidong Han3b5410e2008-12-08 09:17:15 +0800264/* devices under the same p2p bridge are owned in one domain */
Mike Daycdc7b832008-12-12 17:16:30 +0100265#define DOMAIN_FLAG_P2P_MULTIPLE_DEVICES (1 << 0)
Weidong Han3b5410e2008-12-08 09:17:15 +0800266
Weidong Han1ce28fe2008-12-08 16:35:39 +0800267/* domain represents a virtual machine, more than one devices
268 * across iommus may be owned in one domain, e.g. kvm guest.
269 */
270#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 1)
271
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700272/* si_domain contains mulitple devices */
273#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 2)
274
Mark McLoughlin99126f72008-11-20 15:49:47 +0000275struct dmar_domain {
276 int id; /* domain id */
Weidong Han8c11e792008-12-08 15:29:22 +0800277 unsigned long iommu_bmp; /* bitmap of iommus this domain uses*/
Mark McLoughlin99126f72008-11-20 15:49:47 +0000278
279 struct list_head devices; /* all devices' list */
280 struct iova_domain iovad; /* iova's that belong to this domain */
281
282 struct dma_pte *pgd; /* virtual address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000283 int gaw; /* max guest address width */
284
285 /* adjusted guest address width, 0 is level 2 30-bit */
286 int agaw;
287
Weidong Han3b5410e2008-12-08 09:17:15 +0800288 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800289
290 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800291 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800292 int iommu_count; /* reference count of iommu */
293 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800294 u64 max_addr; /* maximum mapped address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000295};
296
Mark McLoughlina647dac2008-11-20 15:49:48 +0000297/* PCI domain-device relationship */
298struct device_domain_info {
299 struct list_head link; /* link to domain siblings */
300 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100301 int segment; /* PCI domain */
302 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000303 u8 devfn; /* PCI devfn number */
304 struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800305 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000306 struct dmar_domain *domain; /* pointer to domain */
307};
308
mark gross5e0d2a62008-03-04 15:22:08 -0800309static void flush_unmaps_timeout(unsigned long data);
310
311DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
312
mark gross80b20dd2008-04-18 13:53:58 -0700313#define HIGH_WATER_MARK 250
314struct deferred_flush_tables {
315 int next;
316 struct iova *iova[HIGH_WATER_MARK];
317 struct dmar_domain *domain[HIGH_WATER_MARK];
318};
319
320static struct deferred_flush_tables *deferred_flush;
321
mark gross5e0d2a62008-03-04 15:22:08 -0800322/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800323static int g_num_of_iommus;
324
325static DEFINE_SPINLOCK(async_umap_flush_lock);
326static LIST_HEAD(unmaps_to_do);
327
328static int timer_on;
329static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800330
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700331static void domain_remove_dev_info(struct dmar_domain *domain);
332
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800333#ifdef CONFIG_DMAR_DEFAULT_ON
334int dmar_disabled = 0;
335#else
336int dmar_disabled = 1;
337#endif /*CONFIG_DMAR_DEFAULT_ON*/
338
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700339static int __initdata dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700340static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800341static int intel_iommu_strict;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700342
343#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
344static DEFINE_SPINLOCK(device_domain_lock);
345static LIST_HEAD(device_domain_list);
346
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100347static struct iommu_ops intel_iommu_ops;
348
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700349static int __init intel_iommu_setup(char *str)
350{
351 if (!str)
352 return -EINVAL;
353 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800354 if (!strncmp(str, "on", 2)) {
355 dmar_disabled = 0;
356 printk(KERN_INFO "Intel-IOMMU: enabled\n");
357 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700358 dmar_disabled = 1;
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800359 printk(KERN_INFO "Intel-IOMMU: disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700360 } else if (!strncmp(str, "igfx_off", 8)) {
361 dmar_map_gfx = 0;
362 printk(KERN_INFO
363 "Intel-IOMMU: disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700364 } else if (!strncmp(str, "forcedac", 8)) {
mark gross5e0d2a62008-03-04 15:22:08 -0800365 printk(KERN_INFO
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700366 "Intel-IOMMU: Forcing DAC for PCI devices\n");
367 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800368 } else if (!strncmp(str, "strict", 6)) {
369 printk(KERN_INFO
370 "Intel-IOMMU: disable batched IOTLB flush\n");
371 intel_iommu_strict = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700372 }
373
374 str += strcspn(str, ",");
375 while (*str == ',')
376 str++;
377 }
378 return 0;
379}
380__setup("intel_iommu=", intel_iommu_setup);
381
382static struct kmem_cache *iommu_domain_cache;
383static struct kmem_cache *iommu_devinfo_cache;
384static struct kmem_cache *iommu_iova_cache;
385
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700386static inline void *iommu_kmem_cache_alloc(struct kmem_cache *cachep)
387{
388 unsigned int flags;
389 void *vaddr;
390
391 /* trying to avoid low memory issues */
392 flags = current->flags & PF_MEMALLOC;
393 current->flags |= PF_MEMALLOC;
394 vaddr = kmem_cache_alloc(cachep, GFP_ATOMIC);
395 current->flags &= (~PF_MEMALLOC | flags);
396 return vaddr;
397}
398
399
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700400static inline void *alloc_pgtable_page(void)
401{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700402 unsigned int flags;
403 void *vaddr;
404
405 /* trying to avoid low memory issues */
406 flags = current->flags & PF_MEMALLOC;
407 current->flags |= PF_MEMALLOC;
408 vaddr = (void *)get_zeroed_page(GFP_ATOMIC);
409 current->flags &= (~PF_MEMALLOC | flags);
410 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700411}
412
413static inline void free_pgtable_page(void *vaddr)
414{
415 free_page((unsigned long)vaddr);
416}
417
418static inline void *alloc_domain_mem(void)
419{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700420 return iommu_kmem_cache_alloc(iommu_domain_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700421}
422
Kay, Allen M38717942008-09-09 18:37:29 +0300423static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700424{
425 kmem_cache_free(iommu_domain_cache, vaddr);
426}
427
428static inline void * alloc_devinfo_mem(void)
429{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700430 return iommu_kmem_cache_alloc(iommu_devinfo_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700431}
432
433static inline void free_devinfo_mem(void *vaddr)
434{
435 kmem_cache_free(iommu_devinfo_cache, vaddr);
436}
437
438struct iova *alloc_iova_mem(void)
439{
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700440 return iommu_kmem_cache_alloc(iommu_iova_cache);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700441}
442
443void free_iova_mem(struct iova *iova)
444{
445 kmem_cache_free(iommu_iova_cache, iova);
446}
447
Weidong Han1b573682008-12-08 15:34:06 +0800448
449static inline int width_to_agaw(int width);
450
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700451static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800452{
453 unsigned long sagaw;
454 int agaw = -1;
455
456 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700457 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800458 agaw >= 0; agaw--) {
459 if (test_bit(agaw, &sagaw))
460 break;
461 }
462
463 return agaw;
464}
465
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700466/*
467 * Calculate max SAGAW for each iommu.
468 */
469int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
470{
471 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
472}
473
474/*
475 * calculate agaw for each iommu.
476 * "SAGAW" may be different across iommus, use a default agaw, and
477 * get a supported less agaw for iommus that don't support the default agaw.
478 */
479int iommu_calculate_agaw(struct intel_iommu *iommu)
480{
481 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
482}
483
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700484/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800485static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
486{
487 int iommu_id;
488
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700489 /* si_domain and vm domain should not get here. */
Weidong Han1ce28fe2008-12-08 16:35:39 +0800490 BUG_ON(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700491 BUG_ON(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY);
Weidong Han1ce28fe2008-12-08 16:35:39 +0800492
Weidong Han8c11e792008-12-08 15:29:22 +0800493 iommu_id = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
494 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
495 return NULL;
496
497 return g_iommus[iommu_id];
498}
499
Weidong Han8e6040972008-12-08 15:49:06 +0800500static void domain_update_iommu_coherency(struct dmar_domain *domain)
501{
502 int i;
503
504 domain->iommu_coherency = 1;
505
506 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
507 for (; i < g_num_of_iommus; ) {
508 if (!ecap_coherent(g_iommus[i]->ecap)) {
509 domain->iommu_coherency = 0;
510 break;
511 }
512 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
513 }
514}
515
Sheng Yang58c610b2009-03-18 15:33:05 +0800516static void domain_update_iommu_snooping(struct dmar_domain *domain)
517{
518 int i;
519
520 domain->iommu_snooping = 1;
521
522 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
523 for (; i < g_num_of_iommus; ) {
524 if (!ecap_sc_support(g_iommus[i]->ecap)) {
525 domain->iommu_snooping = 0;
526 break;
527 }
528 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
529 }
530}
531
532/* Some capabilities may be different across iommus */
533static void domain_update_iommu_cap(struct dmar_domain *domain)
534{
535 domain_update_iommu_coherency(domain);
536 domain_update_iommu_snooping(domain);
537}
538
David Woodhouse276dbf992009-04-04 01:45:37 +0100539static struct intel_iommu *device_to_iommu(int segment, u8 bus, u8 devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800540{
541 struct dmar_drhd_unit *drhd = NULL;
542 int i;
543
544 for_each_drhd_unit(drhd) {
545 if (drhd->ignored)
546 continue;
David Woodhouse276dbf992009-04-04 01:45:37 +0100547 if (segment != drhd->segment)
548 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800549
David Woodhouse924b6232009-04-04 00:39:25 +0100550 for (i = 0; i < drhd->devices_cnt; i++) {
Dirk Hohndel288e4872009-01-11 15:33:51 +0000551 if (drhd->devices[i] &&
552 drhd->devices[i]->bus->number == bus &&
Weidong Hanc7151a82008-12-08 22:51:37 +0800553 drhd->devices[i]->devfn == devfn)
554 return drhd->iommu;
David Woodhouse4958c5d2009-04-06 13:30:01 -0700555 if (drhd->devices[i] &&
556 drhd->devices[i]->subordinate &&
David Woodhouse924b6232009-04-04 00:39:25 +0100557 drhd->devices[i]->subordinate->number <= bus &&
558 drhd->devices[i]->subordinate->subordinate >= bus)
559 return drhd->iommu;
560 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800561
562 if (drhd->include_all)
563 return drhd->iommu;
564 }
565
566 return NULL;
567}
568
Weidong Han5331fe62008-12-08 23:00:00 +0800569static void domain_flush_cache(struct dmar_domain *domain,
570 void *addr, int size)
571{
572 if (!domain->iommu_coherency)
573 clflush_cache_range(addr, size);
574}
575
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700576/* Gets context entry for a given bus and devfn */
577static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
578 u8 bus, u8 devfn)
579{
580 struct root_entry *root;
581 struct context_entry *context;
582 unsigned long phy_addr;
583 unsigned long flags;
584
585 spin_lock_irqsave(&iommu->lock, flags);
586 root = &iommu->root_entry[bus];
587 context = get_context_addr_from_root(root);
588 if (!context) {
589 context = (struct context_entry *)alloc_pgtable_page();
590 if (!context) {
591 spin_unlock_irqrestore(&iommu->lock, flags);
592 return NULL;
593 }
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700594 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700595 phy_addr = virt_to_phys((void *)context);
596 set_root_value(root, phy_addr);
597 set_root_present(root);
598 __iommu_flush_cache(iommu, root, sizeof(*root));
599 }
600 spin_unlock_irqrestore(&iommu->lock, flags);
601 return &context[devfn];
602}
603
604static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
605{
606 struct root_entry *root;
607 struct context_entry *context;
608 int ret;
609 unsigned long flags;
610
611 spin_lock_irqsave(&iommu->lock, flags);
612 root = &iommu->root_entry[bus];
613 context = get_context_addr_from_root(root);
614 if (!context) {
615 ret = 0;
616 goto out;
617 }
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000618 ret = context_present(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700619out:
620 spin_unlock_irqrestore(&iommu->lock, flags);
621 return ret;
622}
623
624static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
625{
626 struct root_entry *root;
627 struct context_entry *context;
628 unsigned long flags;
629
630 spin_lock_irqsave(&iommu->lock, flags);
631 root = &iommu->root_entry[bus];
632 context = get_context_addr_from_root(root);
633 if (context) {
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000634 context_clear_entry(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700635 __iommu_flush_cache(iommu, &context[devfn], \
636 sizeof(*context));
637 }
638 spin_unlock_irqrestore(&iommu->lock, flags);
639}
640
641static void free_context_table(struct intel_iommu *iommu)
642{
643 struct root_entry *root;
644 int i;
645 unsigned long flags;
646 struct context_entry *context;
647
648 spin_lock_irqsave(&iommu->lock, flags);
649 if (!iommu->root_entry) {
650 goto out;
651 }
652 for (i = 0; i < ROOT_ENTRY_NR; i++) {
653 root = &iommu->root_entry[i];
654 context = get_context_addr_from_root(root);
655 if (context)
656 free_pgtable_page(context);
657 }
658 free_pgtable_page(iommu->root_entry);
659 iommu->root_entry = NULL;
660out:
661 spin_unlock_irqrestore(&iommu->lock, flags);
662}
663
664/* page table handling */
665#define LEVEL_STRIDE (9)
666#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
667
668static inline int agaw_to_level(int agaw)
669{
670 return agaw + 2;
671}
672
673static inline int agaw_to_width(int agaw)
674{
675 return 30 + agaw * LEVEL_STRIDE;
676
677}
678
679static inline int width_to_agaw(int width)
680{
681 return (width - 30) / LEVEL_STRIDE;
682}
683
684static inline unsigned int level_to_offset_bits(int level)
685{
David Woodhouse6660c632009-06-27 22:41:00 +0100686 return (level - 1) * LEVEL_STRIDE;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700687}
688
David Woodhouse77dfa562009-06-27 16:40:08 +0100689static inline int pfn_level_offset(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700690{
David Woodhouse6660c632009-06-27 22:41:00 +0100691 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700692}
693
David Woodhouse6660c632009-06-27 22:41:00 +0100694static inline unsigned long level_mask(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700695{
David Woodhouse6660c632009-06-27 22:41:00 +0100696 return -1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700697}
698
David Woodhouse6660c632009-06-27 22:41:00 +0100699static inline unsigned long level_size(int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700700{
David Woodhouse6660c632009-06-27 22:41:00 +0100701 return 1UL << level_to_offset_bits(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700702}
703
David Woodhouse6660c632009-06-27 22:41:00 +0100704static inline unsigned long align_to_level(unsigned long pfn, int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700705{
David Woodhouse6660c632009-06-27 22:41:00 +0100706 return (pfn + level_size(level) - 1) & level_mask(level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700707}
708
David Woodhouseb026fd22009-06-28 10:37:25 +0100709static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
710 unsigned long pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700711{
David Woodhouseb026fd22009-06-28 10:37:25 +0100712 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700713 struct dma_pte *parent, *pte = NULL;
714 int level = agaw_to_level(domain->agaw);
715 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700716
717 BUG_ON(!domain->pgd);
David Woodhouseb026fd22009-06-28 10:37:25 +0100718 BUG_ON(addr_width < BITS_PER_LONG && pfn >> addr_width);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700719 parent = domain->pgd;
720
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700721 while (level > 0) {
722 void *tmp_page;
723
David Woodhouseb026fd22009-06-28 10:37:25 +0100724 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700725 pte = &parent[offset];
726 if (level == 1)
727 break;
728
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000729 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100730 uint64_t pteval;
731
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700732 tmp_page = alloc_pgtable_page();
733
David Woodhouse206a73c2009-07-01 19:30:28 +0100734 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700735 return NULL;
David Woodhouse206a73c2009-07-01 19:30:28 +0100736
David Woodhousec85994e2009-07-01 19:21:24 +0100737 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
738 pteval = (virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
739 if (cmpxchg64(&pte->val, 0ULL, pteval)) {
740 /* Someone else set it while we were thinking; use theirs. */
741 free_pgtable_page(tmp_page);
742 } else {
743 dma_pte_addr(pte);
744 domain_flush_cache(domain, pte, sizeof(*pte));
745 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700746 }
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000747 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700748 level--;
749 }
750
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700751 return pte;
752}
753
754/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100755static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
756 unsigned long pfn,
757 int level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700758{
759 struct dma_pte *parent, *pte = NULL;
760 int total = agaw_to_level(domain->agaw);
761 int offset;
762
763 parent = domain->pgd;
764 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100765 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700766 pte = &parent[offset];
767 if (level == total)
768 return pte;
769
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000770 if (!dma_pte_present(pte))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700771 break;
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000772 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700773 total--;
774 }
775 return NULL;
776}
777
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700778/* clear last level pte, a tlb flush should be followed */
David Woodhouse595badf2009-06-27 22:09:11 +0100779static void dma_pte_clear_range(struct dmar_domain *domain,
780 unsigned long start_pfn,
781 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700782{
David Woodhouse04b18e62009-06-27 19:15:01 +0100783 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse310a5ab2009-06-28 18:52:20 +0100784 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700785
David Woodhouse04b18e62009-06-27 19:15:01 +0100786 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
David Woodhouse595badf2009-06-27 22:09:11 +0100787 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse59c36282009-09-19 07:36:28 -0700788 BUG_ON(start_pfn > last_pfn);
David Woodhouse66eae842009-06-27 19:00:32 +0100789
David Woodhouse04b18e62009-06-27 19:15:01 +0100790 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse59c36282009-09-19 07:36:28 -0700791 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100792 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1);
793 if (!pte) {
794 start_pfn = align_to_level(start_pfn + 1, 2);
795 continue;
796 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100797 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100798 dma_clear_pte(pte);
799 start_pfn++;
800 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +0100801 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
802
David Woodhouse310a5ab2009-06-28 18:52:20 +0100803 domain_flush_cache(domain, first_pte,
804 (void *)pte - (void *)first_pte);
David Woodhouse59c36282009-09-19 07:36:28 -0700805
806 } while (start_pfn && start_pfn <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700807}
808
809/* free page table pages. last level pte should already be cleared */
810static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +0100811 unsigned long start_pfn,
812 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700813{
David Woodhouse6660c632009-06-27 22:41:00 +0100814 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhousef3a0a522009-06-30 03:40:07 +0100815 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700816 int total = agaw_to_level(domain->agaw);
817 int level;
David Woodhouse6660c632009-06-27 22:41:00 +0100818 unsigned long tmp;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700819
David Woodhouse6660c632009-06-27 22:41:00 +0100820 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
821 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse59c36282009-09-19 07:36:28 -0700822 BUG_ON(start_pfn > last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700823
David Woodhousef3a0a522009-06-30 03:40:07 +0100824 /* We don't need lock here; nobody else touches the iova range */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700825 level = 2;
826 while (level <= total) {
David Woodhouse6660c632009-06-27 22:41:00 +0100827 tmp = align_to_level(start_pfn, level);
828
David Woodhousef3a0a522009-06-30 03:40:07 +0100829 /* If we can't even clear one PTE at this level, we're done */
David Woodhouse6660c632009-06-27 22:41:00 +0100830 if (tmp + level_size(level) - 1 > last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700831 return;
832
David Woodhouse59c36282009-09-19 07:36:28 -0700833 do {
David Woodhousef3a0a522009-06-30 03:40:07 +0100834 first_pte = pte = dma_pfn_level_pte(domain, tmp, level);
835 if (!pte) {
836 tmp = align_to_level(tmp + 1, level + 1);
837 continue;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700838 }
David Woodhouse75e6bf92009-07-02 11:21:16 +0100839 do {
David Woodhouse6a43e572009-07-02 12:02:34 +0100840 if (dma_pte_present(pte)) {
841 free_pgtable_page(phys_to_virt(dma_pte_addr(pte)));
842 dma_clear_pte(pte);
843 }
David Woodhousef3a0a522009-06-30 03:40:07 +0100844 pte++;
845 tmp += level_size(level);
David Woodhouse75e6bf92009-07-02 11:21:16 +0100846 } while (!first_pte_in_page(pte) &&
847 tmp + level_size(level) - 1 <= last_pfn);
848
David Woodhousef3a0a522009-06-30 03:40:07 +0100849 domain_flush_cache(domain, first_pte,
850 (void *)pte - (void *)first_pte);
851
David Woodhouse59c36282009-09-19 07:36:28 -0700852 } while (tmp && tmp + level_size(level) - 1 <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700853 level++;
854 }
855 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +0100856 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700857 free_pgtable_page(domain->pgd);
858 domain->pgd = NULL;
859 }
860}
861
862/* iommu handling */
863static int iommu_alloc_root_entry(struct intel_iommu *iommu)
864{
865 struct root_entry *root;
866 unsigned long flags;
867
868 root = (struct root_entry *)alloc_pgtable_page();
869 if (!root)
870 return -ENOMEM;
871
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700872 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700873
874 spin_lock_irqsave(&iommu->lock, flags);
875 iommu->root_entry = root;
876 spin_unlock_irqrestore(&iommu->lock, flags);
877
878 return 0;
879}
880
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700881static void iommu_set_root_entry(struct intel_iommu *iommu)
882{
883 void *addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100884 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700885 unsigned long flag;
886
887 addr = iommu->root_entry;
888
889 spin_lock_irqsave(&iommu->register_lock, flag);
890 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, virt_to_phys(addr));
891
David Woodhousec416daa2009-05-10 20:30:58 +0100892 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700893
894 /* Make sure hardware complete it */
895 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100896 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700897
898 spin_unlock_irqrestore(&iommu->register_lock, flag);
899}
900
901static void iommu_flush_write_buffer(struct intel_iommu *iommu)
902{
903 u32 val;
904 unsigned long flag;
905
David Woodhouse9af88142009-02-13 23:18:03 +0000906 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700907 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700908
909 spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +0100910 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700911
912 /* Make sure hardware complete it */
913 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +0100914 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700915
916 spin_unlock_irqrestore(&iommu->register_lock, flag);
917}
918
919/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +0100920static void __iommu_flush_context(struct intel_iommu *iommu,
921 u16 did, u16 source_id, u8 function_mask,
922 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700923{
924 u64 val = 0;
925 unsigned long flag;
926
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700927 switch (type) {
928 case DMA_CCMD_GLOBAL_INVL:
929 val = DMA_CCMD_GLOBAL_INVL;
930 break;
931 case DMA_CCMD_DOMAIN_INVL:
932 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
933 break;
934 case DMA_CCMD_DEVICE_INVL:
935 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
936 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
937 break;
938 default:
939 BUG();
940 }
941 val |= DMA_CCMD_ICC;
942
943 spin_lock_irqsave(&iommu->register_lock, flag);
944 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
945
946 /* Make sure hardware complete it */
947 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
948 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
949
950 spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700951}
952
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700953/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +0100954static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
955 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700956{
957 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
958 u64 val = 0, val_iva = 0;
959 unsigned long flag;
960
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700961 switch (type) {
962 case DMA_TLB_GLOBAL_FLUSH:
963 /* global flush doesn't need set IVA_REG */
964 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
965 break;
966 case DMA_TLB_DSI_FLUSH:
967 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
968 break;
969 case DMA_TLB_PSI_FLUSH:
970 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
971 /* Note: always flush non-leaf currently */
972 val_iva = size_order | addr;
973 break;
974 default:
975 BUG();
976 }
977 /* Note: set drain read/write */
978#if 0
979 /*
980 * This is probably to be super secure.. Looks like we can
981 * ignore it without any impact.
982 */
983 if (cap_read_drain(iommu->cap))
984 val |= DMA_TLB_READ_DRAIN;
985#endif
986 if (cap_write_drain(iommu->cap))
987 val |= DMA_TLB_WRITE_DRAIN;
988
989 spin_lock_irqsave(&iommu->register_lock, flag);
990 /* Note: Only uses first TLB reg currently */
991 if (val_iva)
992 dmar_writeq(iommu->reg + tlb_offset, val_iva);
993 dmar_writeq(iommu->reg + tlb_offset + 8, val);
994
995 /* Make sure hardware complete it */
996 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
997 dmar_readq, (!(val & DMA_TLB_IVT)), val);
998
999 spin_unlock_irqrestore(&iommu->register_lock, flag);
1000
1001 /* check IOTLB invalidation granularity */
1002 if (DMA_TLB_IAIG(val) == 0)
1003 printk(KERN_ERR"IOMMU: flush IOTLB failed\n");
1004 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
1005 pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001006 (unsigned long long)DMA_TLB_IIRG(type),
1007 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001008}
1009
Yu Zhao93a23a72009-05-18 13:51:37 +08001010static struct device_domain_info *iommu_support_dev_iotlb(
1011 struct dmar_domain *domain, int segment, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001012{
Yu Zhao93a23a72009-05-18 13:51:37 +08001013 int found = 0;
1014 unsigned long flags;
1015 struct device_domain_info *info;
1016 struct intel_iommu *iommu = device_to_iommu(segment, bus, devfn);
1017
1018 if (!ecap_dev_iotlb_support(iommu->ecap))
1019 return NULL;
1020
1021 if (!iommu->qi)
1022 return NULL;
1023
1024 spin_lock_irqsave(&device_domain_lock, flags);
1025 list_for_each_entry(info, &domain->devices, link)
1026 if (info->bus == bus && info->devfn == devfn) {
1027 found = 1;
1028 break;
1029 }
1030 spin_unlock_irqrestore(&device_domain_lock, flags);
1031
1032 if (!found || !info->dev)
1033 return NULL;
1034
1035 if (!pci_find_ext_capability(info->dev, PCI_EXT_CAP_ID_ATS))
1036 return NULL;
1037
1038 if (!dmar_find_matched_atsr_unit(info->dev))
1039 return NULL;
1040
1041 info->iommu = iommu;
1042
1043 return info;
1044}
1045
1046static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1047{
1048 if (!info)
1049 return;
1050
1051 pci_enable_ats(info->dev, VTD_PAGE_SHIFT);
1052}
1053
1054static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1055{
1056 if (!info->dev || !pci_ats_enabled(info->dev))
1057 return;
1058
1059 pci_disable_ats(info->dev);
1060}
1061
1062static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1063 u64 addr, unsigned mask)
1064{
1065 u16 sid, qdep;
1066 unsigned long flags;
1067 struct device_domain_info *info;
1068
1069 spin_lock_irqsave(&device_domain_lock, flags);
1070 list_for_each_entry(info, &domain->devices, link) {
1071 if (!info->dev || !pci_ats_enabled(info->dev))
1072 continue;
1073
1074 sid = info->bus << 8 | info->devfn;
1075 qdep = pci_ats_queue_depth(info->dev);
1076 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1077 }
1078 spin_unlock_irqrestore(&device_domain_lock, flags);
1079}
1080
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001081static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did,
David Woodhouse03d6a242009-06-28 15:33:46 +01001082 unsigned long pfn, unsigned int pages)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001083{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001084 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001085 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001086
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001087 BUG_ON(pages == 0);
1088
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001089 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001090 * Fallback to domain selective flush if no PSI support or the size is
1091 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001092 * PSI requires page size to be 2 ^ x, and the base address is naturally
1093 * aligned to the size
1094 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001095 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1096 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001097 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001098 else
1099 iommu->flush.flush_iotlb(iommu, did, addr, mask,
1100 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001101
1102 /*
1103 * In caching mode, domain ID 0 is reserved for non-present to present
1104 * mapping flush. Device IOTLB doesn't need to be flushed in this case.
1105 */
1106 if (!cap_caching_mode(iommu->cap) || did)
Yu Zhao93a23a72009-05-18 13:51:37 +08001107 iommu_flush_dev_iotlb(iommu->domains[did], addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001108}
1109
mark grossf8bab732008-02-08 04:18:38 -08001110static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1111{
1112 u32 pmen;
1113 unsigned long flags;
1114
1115 spin_lock_irqsave(&iommu->register_lock, flags);
1116 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1117 pmen &= ~DMA_PMEN_EPM;
1118 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1119
1120 /* wait for the protected region status bit to clear */
1121 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1122 readl, !(pmen & DMA_PMEN_PRS), pmen);
1123
1124 spin_unlock_irqrestore(&iommu->register_lock, flags);
1125}
1126
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001127static int iommu_enable_translation(struct intel_iommu *iommu)
1128{
1129 u32 sts;
1130 unsigned long flags;
1131
1132 spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001133 iommu->gcmd |= DMA_GCMD_TE;
1134 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001135
1136 /* Make sure hardware complete it */
1137 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001138 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001139
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001140 spin_unlock_irqrestore(&iommu->register_lock, flags);
1141 return 0;
1142}
1143
1144static int iommu_disable_translation(struct intel_iommu *iommu)
1145{
1146 u32 sts;
1147 unsigned long flag;
1148
1149 spin_lock_irqsave(&iommu->register_lock, flag);
1150 iommu->gcmd &= ~DMA_GCMD_TE;
1151 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1152
1153 /* Make sure hardware complete it */
1154 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001155 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001156
1157 spin_unlock_irqrestore(&iommu->register_lock, flag);
1158 return 0;
1159}
1160
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001161
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001162static int iommu_init_domains(struct intel_iommu *iommu)
1163{
1164 unsigned long ndomains;
1165 unsigned long nlongs;
1166
1167 ndomains = cap_ndoms(iommu->cap);
1168 pr_debug("Number of Domains supportd <%ld>\n", ndomains);
1169 nlongs = BITS_TO_LONGS(ndomains);
1170
Donald Dutile94a91b52009-08-20 16:51:34 -04001171 spin_lock_init(&iommu->lock);
1172
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001173 /* TBD: there might be 64K domains,
1174 * consider other allocation for future chip
1175 */
1176 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1177 if (!iommu->domain_ids) {
1178 printk(KERN_ERR "Allocating domain id array failed\n");
1179 return -ENOMEM;
1180 }
1181 iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *),
1182 GFP_KERNEL);
1183 if (!iommu->domains) {
1184 printk(KERN_ERR "Allocating domain array failed\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001185 return -ENOMEM;
1186 }
1187
1188 /*
1189 * if Caching mode is set, then invalid translations are tagged
1190 * with domainid 0. Hence we need to pre-allocate it.
1191 */
1192 if (cap_caching_mode(iommu->cap))
1193 set_bit(0, iommu->domain_ids);
1194 return 0;
1195}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001196
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001197
1198static void domain_exit(struct dmar_domain *domain);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001199static void vm_domain_exit(struct dmar_domain *domain);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001200
1201void free_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001202{
1203 struct dmar_domain *domain;
1204 int i;
Weidong Hanc7151a82008-12-08 22:51:37 +08001205 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001206
Donald Dutile94a91b52009-08-20 16:51:34 -04001207 if ((iommu->domains) && (iommu->domain_ids)) {
1208 i = find_first_bit(iommu->domain_ids, cap_ndoms(iommu->cap));
1209 for (; i < cap_ndoms(iommu->cap); ) {
1210 domain = iommu->domains[i];
1211 clear_bit(i, iommu->domain_ids);
Weidong Hanc7151a82008-12-08 22:51:37 +08001212
Donald Dutile94a91b52009-08-20 16:51:34 -04001213 spin_lock_irqsave(&domain->iommu_lock, flags);
1214 if (--domain->iommu_count == 0) {
1215 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE)
1216 vm_domain_exit(domain);
1217 else
1218 domain_exit(domain);
1219 }
1220 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1221
1222 i = find_next_bit(iommu->domain_ids,
1223 cap_ndoms(iommu->cap), i+1);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001224 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001225 }
1226
1227 if (iommu->gcmd & DMA_GCMD_TE)
1228 iommu_disable_translation(iommu);
1229
1230 if (iommu->irq) {
1231 set_irq_data(iommu->irq, NULL);
1232 /* This will mask the irq */
1233 free_irq(iommu->irq, iommu);
1234 destroy_irq(iommu->irq);
1235 }
1236
1237 kfree(iommu->domains);
1238 kfree(iommu->domain_ids);
1239
Weidong Hand9630fe2008-12-08 11:06:32 +08001240 g_iommus[iommu->seq_id] = NULL;
1241
1242 /* if all iommus are freed, free g_iommus */
1243 for (i = 0; i < g_num_of_iommus; i++) {
1244 if (g_iommus[i])
1245 break;
1246 }
1247
1248 if (i == g_num_of_iommus)
1249 kfree(g_iommus);
1250
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001251 /* free context mapping */
1252 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001253}
1254
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001255static struct dmar_domain *alloc_domain(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001256{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001257 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001258
1259 domain = alloc_domain_mem();
1260 if (!domain)
1261 return NULL;
1262
Weidong Han8c11e792008-12-08 15:29:22 +08001263 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
Weidong Hand71a2f32008-12-07 21:13:41 +08001264 domain->flags = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001265
1266 return domain;
1267}
1268
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001269static int iommu_attach_domain(struct dmar_domain *domain,
1270 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001271{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001272 int num;
1273 unsigned long ndomains;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001274 unsigned long flags;
1275
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001276 ndomains = cap_ndoms(iommu->cap);
Weidong Han8c11e792008-12-08 15:29:22 +08001277
1278 spin_lock_irqsave(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001279
1280 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1281 if (num >= ndomains) {
1282 spin_unlock_irqrestore(&iommu->lock, flags);
1283 printk(KERN_ERR "IOMMU: no free domain ids\n");
1284 return -ENOMEM;
1285 }
1286
1287 domain->id = num;
1288 set_bit(num, iommu->domain_ids);
1289 set_bit(iommu->seq_id, &domain->iommu_bmp);
1290 iommu->domains[num] = domain;
1291 spin_unlock_irqrestore(&iommu->lock, flags);
1292
1293 return 0;
1294}
1295
1296static void iommu_detach_domain(struct dmar_domain *domain,
1297 struct intel_iommu *iommu)
1298{
1299 unsigned long flags;
1300 int num, ndomains;
1301 int found = 0;
1302
1303 spin_lock_irqsave(&iommu->lock, flags);
1304 ndomains = cap_ndoms(iommu->cap);
1305 num = find_first_bit(iommu->domain_ids, ndomains);
1306 for (; num < ndomains; ) {
1307 if (iommu->domains[num] == domain) {
1308 found = 1;
1309 break;
1310 }
1311 num = find_next_bit(iommu->domain_ids,
1312 cap_ndoms(iommu->cap), num+1);
1313 }
1314
1315 if (found) {
1316 clear_bit(num, iommu->domain_ids);
1317 clear_bit(iommu->seq_id, &domain->iommu_bmp);
1318 iommu->domains[num] = NULL;
1319 }
Weidong Han8c11e792008-12-08 15:29:22 +08001320 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001321}
1322
1323static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001324static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001325
1326static void dmar_init_reserved_ranges(void)
1327{
1328 struct pci_dev *pdev = NULL;
1329 struct iova *iova;
1330 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001331
David Millerf6611972008-02-06 01:36:23 -08001332 init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001333
Mark Gross8a443df2008-03-04 14:59:31 -08001334 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1335 &reserved_rbtree_key);
1336
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001337 /* IOAPIC ranges shouldn't be accessed by DMA */
1338 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1339 IOVA_PFN(IOAPIC_RANGE_END));
1340 if (!iova)
1341 printk(KERN_ERR "Reserve IOAPIC range failed\n");
1342
1343 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1344 for_each_pci_dev(pdev) {
1345 struct resource *r;
1346
1347 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1348 r = &pdev->resource[i];
1349 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1350 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001351 iova = reserve_iova(&reserved_iova_list,
1352 IOVA_PFN(r->start),
1353 IOVA_PFN(r->end));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001354 if (!iova)
1355 printk(KERN_ERR "Reserve iova failed\n");
1356 }
1357 }
1358
1359}
1360
1361static void domain_reserve_special_ranges(struct dmar_domain *domain)
1362{
1363 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1364}
1365
1366static inline int guestwidth_to_adjustwidth(int gaw)
1367{
1368 int agaw;
1369 int r = (gaw - 12) % 9;
1370
1371 if (r == 0)
1372 agaw = gaw;
1373 else
1374 agaw = gaw + 9 - r;
1375 if (agaw > 64)
1376 agaw = 64;
1377 return agaw;
1378}
1379
1380static int domain_init(struct dmar_domain *domain, int guest_width)
1381{
1382 struct intel_iommu *iommu;
1383 int adjust_width, agaw;
1384 unsigned long sagaw;
1385
David Millerf6611972008-02-06 01:36:23 -08001386 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Hanc7151a82008-12-08 22:51:37 +08001387 spin_lock_init(&domain->iommu_lock);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001388
1389 domain_reserve_special_ranges(domain);
1390
1391 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001392 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001393 if (guest_width > cap_mgaw(iommu->cap))
1394 guest_width = cap_mgaw(iommu->cap);
1395 domain->gaw = guest_width;
1396 adjust_width = guestwidth_to_adjustwidth(guest_width);
1397 agaw = width_to_agaw(adjust_width);
1398 sagaw = cap_sagaw(iommu->cap);
1399 if (!test_bit(agaw, &sagaw)) {
1400 /* hardware doesn't support it, choose a bigger one */
1401 pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw);
1402 agaw = find_next_bit(&sagaw, 5, agaw);
1403 if (agaw >= 5)
1404 return -ENODEV;
1405 }
1406 domain->agaw = agaw;
1407 INIT_LIST_HEAD(&domain->devices);
1408
Weidong Han8e6040972008-12-08 15:49:06 +08001409 if (ecap_coherent(iommu->ecap))
1410 domain->iommu_coherency = 1;
1411 else
1412 domain->iommu_coherency = 0;
1413
Sheng Yang58c610b2009-03-18 15:33:05 +08001414 if (ecap_sc_support(iommu->ecap))
1415 domain->iommu_snooping = 1;
1416 else
1417 domain->iommu_snooping = 0;
1418
Weidong Hanc7151a82008-12-08 22:51:37 +08001419 domain->iommu_count = 1;
1420
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001421 /* always allocate the top pgd */
1422 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
1423 if (!domain->pgd)
1424 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001425 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001426 return 0;
1427}
1428
1429static void domain_exit(struct dmar_domain *domain)
1430{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001431 struct dmar_drhd_unit *drhd;
1432 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001433
1434 /* Domain 0 is reserved, so dont process it */
1435 if (!domain)
1436 return;
1437
1438 domain_remove_dev_info(domain);
1439 /* destroy iovas */
1440 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001441
1442 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01001443 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001444
1445 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01001446 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001447
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001448 for_each_active_iommu(iommu, drhd)
1449 if (test_bit(iommu->seq_id, &domain->iommu_bmp))
1450 iommu_detach_domain(domain, iommu);
1451
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001452 free_domain_mem(domain);
1453}
1454
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001455static int domain_context_mapping_one(struct dmar_domain *domain, int segment,
1456 u8 bus, u8 devfn, int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001457{
1458 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001459 unsigned long flags;
Weidong Han5331fe62008-12-08 23:00:00 +08001460 struct intel_iommu *iommu;
Weidong Hanea6606b2008-12-08 23:08:15 +08001461 struct dma_pte *pgd;
1462 unsigned long num;
1463 unsigned long ndomains;
1464 int id;
1465 int agaw;
Yu Zhao93a23a72009-05-18 13:51:37 +08001466 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001467
1468 pr_debug("Set context mapping for %02x:%02x.%d\n",
1469 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001470
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001471 BUG_ON(!domain->pgd);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001472 BUG_ON(translation != CONTEXT_TT_PASS_THROUGH &&
1473 translation != CONTEXT_TT_MULTI_LEVEL);
Weidong Han5331fe62008-12-08 23:00:00 +08001474
David Woodhouse276dbf992009-04-04 01:45:37 +01001475 iommu = device_to_iommu(segment, bus, devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001476 if (!iommu)
1477 return -ENODEV;
1478
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001479 context = device_to_context_entry(iommu, bus, devfn);
1480 if (!context)
1481 return -ENOMEM;
1482 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001483 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001484 spin_unlock_irqrestore(&iommu->lock, flags);
1485 return 0;
1486 }
1487
Weidong Hanea6606b2008-12-08 23:08:15 +08001488 id = domain->id;
1489 pgd = domain->pgd;
1490
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001491 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1492 domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001493 int found = 0;
1494
1495 /* find an available domain id for this device in iommu */
1496 ndomains = cap_ndoms(iommu->cap);
1497 num = find_first_bit(iommu->domain_ids, ndomains);
1498 for (; num < ndomains; ) {
1499 if (iommu->domains[num] == domain) {
1500 id = num;
1501 found = 1;
1502 break;
1503 }
1504 num = find_next_bit(iommu->domain_ids,
1505 cap_ndoms(iommu->cap), num+1);
1506 }
1507
1508 if (found == 0) {
1509 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1510 if (num >= ndomains) {
1511 spin_unlock_irqrestore(&iommu->lock, flags);
1512 printk(KERN_ERR "IOMMU: no free domain ids\n");
1513 return -EFAULT;
1514 }
1515
1516 set_bit(num, iommu->domain_ids);
1517 iommu->domains[num] = domain;
1518 id = num;
1519 }
1520
1521 /* Skip top levels of page tables for
1522 * iommu which has less agaw than default.
1523 */
1524 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1525 pgd = phys_to_virt(dma_pte_addr(pgd));
1526 if (!dma_pte_present(pgd)) {
1527 spin_unlock_irqrestore(&iommu->lock, flags);
1528 return -ENOMEM;
1529 }
1530 }
1531 }
1532
1533 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001534
Yu Zhao93a23a72009-05-18 13:51:37 +08001535 if (translation != CONTEXT_TT_PASS_THROUGH) {
1536 info = iommu_support_dev_iotlb(domain, segment, bus, devfn);
1537 translation = info ? CONTEXT_TT_DEV_IOTLB :
1538 CONTEXT_TT_MULTI_LEVEL;
1539 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001540 /*
1541 * In pass through mode, AW must be programmed to indicate the largest
1542 * AGAW value supported by hardware. And ASR is ignored by hardware.
1543 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001544 if (unlikely(translation == CONTEXT_TT_PASS_THROUGH))
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001545 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001546 else {
1547 context_set_address_root(context, virt_to_phys(pgd));
1548 context_set_address_width(context, iommu->agaw);
1549 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001550
1551 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001552 context_set_fault_enable(context);
1553 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001554 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001555
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001556 /*
1557 * It's a non-present to present mapping. If hardware doesn't cache
1558 * non-present entry we only need to flush the write-buffer. If the
1559 * _does_ cache non-present entries, then it does so in the special
1560 * domain #0, which we have to flush:
1561 */
1562 if (cap_caching_mode(iommu->cap)) {
1563 iommu->flush.flush_context(iommu, 0,
1564 (((u16)bus) << 8) | devfn,
1565 DMA_CCMD_MASK_NOBIT,
1566 DMA_CCMD_DEVICE_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001567 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001568 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001569 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001570 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001571 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001572 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001573
1574 spin_lock_irqsave(&domain->iommu_lock, flags);
1575 if (!test_and_set_bit(iommu->seq_id, &domain->iommu_bmp)) {
1576 domain->iommu_count++;
Sheng Yang58c610b2009-03-18 15:33:05 +08001577 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08001578 }
1579 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001580 return 0;
1581}
1582
1583static int
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001584domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev,
1585 int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001586{
1587 int ret;
1588 struct pci_dev *tmp, *parent;
1589
David Woodhouse276dbf992009-04-04 01:45:37 +01001590 ret = domain_context_mapping_one(domain, pci_domain_nr(pdev->bus),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001591 pdev->bus->number, pdev->devfn,
1592 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001593 if (ret)
1594 return ret;
1595
1596 /* dependent device mapping */
1597 tmp = pci_find_upstream_pcie_bridge(pdev);
1598 if (!tmp)
1599 return 0;
1600 /* Secondary interface's bus number and devfn 0 */
1601 parent = pdev->bus->self;
1602 while (parent != tmp) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001603 ret = domain_context_mapping_one(domain,
1604 pci_domain_nr(parent->bus),
1605 parent->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001606 parent->devfn, translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001607 if (ret)
1608 return ret;
1609 parent = parent->bus->self;
1610 }
1611 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
1612 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001613 pci_domain_nr(tmp->subordinate),
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001614 tmp->subordinate->number, 0,
1615 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001616 else /* this is a legacy PCI bridge */
1617 return domain_context_mapping_one(domain,
David Woodhouse276dbf992009-04-04 01:45:37 +01001618 pci_domain_nr(tmp->bus),
1619 tmp->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001620 tmp->devfn,
1621 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001622}
1623
Weidong Han5331fe62008-12-08 23:00:00 +08001624static int domain_context_mapped(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001625{
1626 int ret;
1627 struct pci_dev *tmp, *parent;
Weidong Han5331fe62008-12-08 23:00:00 +08001628 struct intel_iommu *iommu;
1629
David Woodhouse276dbf992009-04-04 01:45:37 +01001630 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
1631 pdev->devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001632 if (!iommu)
1633 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001634
David Woodhouse276dbf992009-04-04 01:45:37 +01001635 ret = device_context_mapped(iommu, pdev->bus->number, pdev->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001636 if (!ret)
1637 return ret;
1638 /* dependent device mapping */
1639 tmp = pci_find_upstream_pcie_bridge(pdev);
1640 if (!tmp)
1641 return ret;
1642 /* Secondary interface's bus number and devfn 0 */
1643 parent = pdev->bus->self;
1644 while (parent != tmp) {
Weidong Han8c11e792008-12-08 15:29:22 +08001645 ret = device_context_mapped(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01001646 parent->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001647 if (!ret)
1648 return ret;
1649 parent = parent->bus->self;
1650 }
1651 if (tmp->is_pcie)
David Woodhouse276dbf992009-04-04 01:45:37 +01001652 return device_context_mapped(iommu, tmp->subordinate->number,
1653 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001654 else
David Woodhouse276dbf992009-04-04 01:45:37 +01001655 return device_context_mapped(iommu, tmp->bus->number,
1656 tmp->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001657}
1658
Fenghua Yuf5329592009-08-04 15:09:37 -07001659/* Returns a number of VTD pages, but aligned to MM page size */
1660static inline unsigned long aligned_nrpages(unsigned long host_addr,
1661 size_t size)
1662{
1663 host_addr &= ~PAGE_MASK;
1664 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
1665}
1666
David Woodhouse9051aa02009-06-29 12:30:54 +01001667static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1668 struct scatterlist *sg, unsigned long phys_pfn,
1669 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01001670{
1671 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01001672 phys_addr_t uninitialized_var(pteval);
David Woodhousee1605492009-06-29 11:17:38 +01001673 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse9051aa02009-06-29 12:30:54 +01001674 unsigned long sg_res;
David Woodhousee1605492009-06-29 11:17:38 +01001675
1676 BUG_ON(addr_width < BITS_PER_LONG && (iov_pfn + nr_pages - 1) >> addr_width);
1677
1678 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
1679 return -EINVAL;
1680
1681 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
1682
David Woodhouse9051aa02009-06-29 12:30:54 +01001683 if (sg)
1684 sg_res = 0;
1685 else {
1686 sg_res = nr_pages + 1;
1687 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
1688 }
1689
David Woodhousee1605492009-06-29 11:17:38 +01001690 while (nr_pages--) {
David Woodhousec85994e2009-07-01 19:21:24 +01001691 uint64_t tmp;
1692
David Woodhousee1605492009-06-29 11:17:38 +01001693 if (!sg_res) {
Fenghua Yuf5329592009-08-04 15:09:37 -07001694 sg_res = aligned_nrpages(sg->offset, sg->length);
David Woodhousee1605492009-06-29 11:17:38 +01001695 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
1696 sg->dma_length = sg->length;
1697 pteval = page_to_phys(sg_page(sg)) | prot;
1698 }
1699 if (!pte) {
1700 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn);
1701 if (!pte)
1702 return -ENOMEM;
1703 }
1704 /* We don't need lock here, nobody else
1705 * touches the iova range
1706 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01001707 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01001708 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01001709 static int dumps = 5;
David Woodhousec85994e2009-07-01 19:21:24 +01001710 printk(KERN_CRIT "ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
1711 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01001712 if (dumps) {
1713 dumps--;
1714 debug_dma_dump_mappings(NULL);
1715 }
1716 WARN_ON(1);
1717 }
David Woodhousee1605492009-06-29 11:17:38 +01001718 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +01001719 if (!nr_pages || first_pte_in_page(pte)) {
David Woodhousee1605492009-06-29 11:17:38 +01001720 domain_flush_cache(domain, first_pte,
1721 (void *)pte - (void *)first_pte);
1722 pte = NULL;
1723 }
1724 iov_pfn++;
1725 pteval += VTD_PAGE_SIZE;
1726 sg_res--;
1727 if (!sg_res)
1728 sg = sg_next(sg);
1729 }
1730 return 0;
1731}
1732
David Woodhouse9051aa02009-06-29 12:30:54 +01001733static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1734 struct scatterlist *sg, unsigned long nr_pages,
1735 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001736{
David Woodhouse9051aa02009-06-29 12:30:54 +01001737 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
1738}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001739
David Woodhouse9051aa02009-06-29 12:30:54 +01001740static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1741 unsigned long phys_pfn, unsigned long nr_pages,
1742 int prot)
1743{
1744 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001745}
1746
Weidong Hanc7151a82008-12-08 22:51:37 +08001747static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001748{
Weidong Hanc7151a82008-12-08 22:51:37 +08001749 if (!iommu)
1750 return;
Weidong Han8c11e792008-12-08 15:29:22 +08001751
1752 clear_context_table(iommu, bus, devfn);
1753 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001754 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001755 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001756}
1757
1758static void domain_remove_dev_info(struct dmar_domain *domain)
1759{
1760 struct device_domain_info *info;
1761 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08001762 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001763
1764 spin_lock_irqsave(&device_domain_lock, flags);
1765 while (!list_empty(&domain->devices)) {
1766 info = list_entry(domain->devices.next,
1767 struct device_domain_info, link);
1768 list_del(&info->link);
1769 list_del(&info->global);
1770 if (info->dev)
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001771 info->dev->dev.archdata.iommu = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001772 spin_unlock_irqrestore(&device_domain_lock, flags);
1773
Yu Zhao93a23a72009-05-18 13:51:37 +08001774 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01001775 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08001776 iommu_detach_dev(iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001777 free_devinfo_mem(info);
1778
1779 spin_lock_irqsave(&device_domain_lock, flags);
1780 }
1781 spin_unlock_irqrestore(&device_domain_lock, flags);
1782}
1783
1784/*
1785 * find_domain
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001786 * Note: we use struct pci_dev->dev.archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001787 */
Kay, Allen M38717942008-09-09 18:37:29 +03001788static struct dmar_domain *
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001789find_domain(struct pci_dev *pdev)
1790{
1791 struct device_domain_info *info;
1792
1793 /* No lock here, assumes no domain exit in normal case */
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001794 info = pdev->dev.archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001795 if (info)
1796 return info->domain;
1797 return NULL;
1798}
1799
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001800/* domain is initialized */
1801static struct dmar_domain *get_domain_for_dev(struct pci_dev *pdev, int gaw)
1802{
1803 struct dmar_domain *domain, *found = NULL;
1804 struct intel_iommu *iommu;
1805 struct dmar_drhd_unit *drhd;
1806 struct device_domain_info *info, *tmp;
1807 struct pci_dev *dev_tmp;
1808 unsigned long flags;
1809 int bus = 0, devfn = 0;
David Woodhouse276dbf992009-04-04 01:45:37 +01001810 int segment;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001811 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001812
1813 domain = find_domain(pdev);
1814 if (domain)
1815 return domain;
1816
David Woodhouse276dbf992009-04-04 01:45:37 +01001817 segment = pci_domain_nr(pdev->bus);
1818
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001819 dev_tmp = pci_find_upstream_pcie_bridge(pdev);
1820 if (dev_tmp) {
1821 if (dev_tmp->is_pcie) {
1822 bus = dev_tmp->subordinate->number;
1823 devfn = 0;
1824 } else {
1825 bus = dev_tmp->bus->number;
1826 devfn = dev_tmp->devfn;
1827 }
1828 spin_lock_irqsave(&device_domain_lock, flags);
1829 list_for_each_entry(info, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001830 if (info->segment == segment &&
1831 info->bus == bus && info->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001832 found = info->domain;
1833 break;
1834 }
1835 }
1836 spin_unlock_irqrestore(&device_domain_lock, flags);
1837 /* pcie-pci bridge already has a domain, uses it */
1838 if (found) {
1839 domain = found;
1840 goto found_domain;
1841 }
1842 }
1843
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001844 domain = alloc_domain();
1845 if (!domain)
1846 goto error;
1847
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001848 /* Allocate new domain for the device */
1849 drhd = dmar_find_matched_drhd_unit(pdev);
1850 if (!drhd) {
1851 printk(KERN_ERR "IOMMU: can't find DMAR for device %s\n",
1852 pci_name(pdev));
1853 return NULL;
1854 }
1855 iommu = drhd->iommu;
1856
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001857 ret = iommu_attach_domain(domain, iommu);
1858 if (ret) {
1859 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001860 goto error;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001861 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001862
1863 if (domain_init(domain, gaw)) {
1864 domain_exit(domain);
1865 goto error;
1866 }
1867
1868 /* register pcie-to-pci device */
1869 if (dev_tmp) {
1870 info = alloc_devinfo_mem();
1871 if (!info) {
1872 domain_exit(domain);
1873 goto error;
1874 }
David Woodhouse276dbf992009-04-04 01:45:37 +01001875 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001876 info->bus = bus;
1877 info->devfn = devfn;
1878 info->dev = NULL;
1879 info->domain = domain;
1880 /* This domain is shared by devices under p2p bridge */
Weidong Han3b5410e2008-12-08 09:17:15 +08001881 domain->flags |= DOMAIN_FLAG_P2P_MULTIPLE_DEVICES;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001882
1883 /* pcie-to-pci bridge already has a domain, uses it */
1884 found = NULL;
1885 spin_lock_irqsave(&device_domain_lock, flags);
1886 list_for_each_entry(tmp, &device_domain_list, global) {
David Woodhouse276dbf992009-04-04 01:45:37 +01001887 if (tmp->segment == segment &&
1888 tmp->bus == bus && tmp->devfn == devfn) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001889 found = tmp->domain;
1890 break;
1891 }
1892 }
1893 if (found) {
1894 free_devinfo_mem(info);
1895 domain_exit(domain);
1896 domain = found;
1897 } else {
1898 list_add(&info->link, &domain->devices);
1899 list_add(&info->global, &device_domain_list);
1900 }
1901 spin_unlock_irqrestore(&device_domain_lock, flags);
1902 }
1903
1904found_domain:
1905 info = alloc_devinfo_mem();
1906 if (!info)
1907 goto error;
David Woodhouse276dbf992009-04-04 01:45:37 +01001908 info->segment = segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001909 info->bus = pdev->bus->number;
1910 info->devfn = pdev->devfn;
1911 info->dev = pdev;
1912 info->domain = domain;
1913 spin_lock_irqsave(&device_domain_lock, flags);
1914 /* somebody is fast */
1915 found = find_domain(pdev);
1916 if (found != NULL) {
1917 spin_unlock_irqrestore(&device_domain_lock, flags);
1918 if (found != domain) {
1919 domain_exit(domain);
1920 domain = found;
1921 }
1922 free_devinfo_mem(info);
1923 return domain;
1924 }
1925 list_add(&info->link, &domain->devices);
1926 list_add(&info->global, &device_domain_list);
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07001927 pdev->dev.archdata.iommu = info;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001928 spin_unlock_irqrestore(&device_domain_lock, flags);
1929 return domain;
1930error:
1931 /* recheck it here, maybe others set it */
1932 return find_domain(pdev);
1933}
1934
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001935static int iommu_identity_mapping;
1936
David Woodhouseb2132032009-06-26 18:50:28 +01001937static int iommu_domain_identity_map(struct dmar_domain *domain,
1938 unsigned long long start,
1939 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001940{
David Woodhousec5395d52009-06-28 16:35:56 +01001941 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
1942 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001943
David Woodhousec5395d52009-06-28 16:35:56 +01001944 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
1945 dma_to_mm_pfn(last_vpfn))) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001946 printk(KERN_ERR "IOMMU: reserve iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01001947 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001948 }
1949
David Woodhousec5395d52009-06-28 16:35:56 +01001950 pr_debug("Mapping reserved region %llx-%llx for domain %d\n",
1951 start, end, domain->id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001952 /*
1953 * RMRR range might have overlap with physical memory range,
1954 * clear it first
1955 */
David Woodhousec5395d52009-06-28 16:35:56 +01001956 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001957
David Woodhousec5395d52009-06-28 16:35:56 +01001958 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
1959 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01001960 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01001961}
1962
1963static int iommu_prepare_identity_map(struct pci_dev *pdev,
1964 unsigned long long start,
1965 unsigned long long end)
1966{
1967 struct dmar_domain *domain;
1968 int ret;
1969
David Woodhousec7ab48d2009-06-26 19:10:36 +01001970 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01001971 if (!domain)
1972 return -ENOMEM;
1973
David Woodhouse19943b02009-08-04 16:19:20 +01001974 /* For _hardware_ passthrough, don't bother. But for software
1975 passthrough, we do it anyway -- it may indicate a memory
1976 range which is reserved in E820, so which didn't get set
1977 up to start with in si_domain */
1978 if (domain == si_domain && hw_pass_through) {
1979 printk("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
1980 pci_name(pdev), start, end);
1981 return 0;
1982 }
1983
1984 printk(KERN_INFO
1985 "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
1986 pci_name(pdev), start, end);
David Woodhouse2ff729f2009-08-26 14:25:41 +01001987
1988 if (end >> agaw_to_width(domain->agaw)) {
1989 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
1990 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
1991 agaw_to_width(domain->agaw),
1992 dmi_get_system_info(DMI_BIOS_VENDOR),
1993 dmi_get_system_info(DMI_BIOS_VERSION),
1994 dmi_get_system_info(DMI_PRODUCT_VERSION));
1995 ret = -EIO;
1996 goto error;
1997 }
David Woodhouse19943b02009-08-04 16:19:20 +01001998
David Woodhouseb2132032009-06-26 18:50:28 +01001999 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002000 if (ret)
2001 goto error;
2002
2003 /* context entry init */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002004 ret = domain_context_mapping(domain, pdev, CONTEXT_TT_MULTI_LEVEL);
David Woodhouseb2132032009-06-26 18:50:28 +01002005 if (ret)
2006 goto error;
2007
2008 return 0;
2009
2010 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002011 domain_exit(domain);
2012 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002013}
2014
2015static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
2016 struct pci_dev *pdev)
2017{
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07002018 if (pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002019 return 0;
2020 return iommu_prepare_identity_map(pdev, rmrr->base_address,
2021 rmrr->end_address + 1);
2022}
2023
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002024#ifdef CONFIG_DMAR_FLOPPY_WA
2025static inline void iommu_prepare_isa(void)
2026{
2027 struct pci_dev *pdev;
2028 int ret;
2029
2030 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2031 if (!pdev)
2032 return;
2033
David Woodhousec7ab48d2009-06-26 19:10:36 +01002034 printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002035 ret = iommu_prepare_identity_map(pdev, 0, 16*1024*1024);
2036
2037 if (ret)
David Woodhousec7ab48d2009-06-26 19:10:36 +01002038 printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; "
2039 "floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002040
2041}
2042#else
2043static inline void iommu_prepare_isa(void)
2044{
2045 return;
2046}
2047#endif /* !CONFIG_DMAR_FLPY_WA */
2048
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002049static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002050
2051static int __init si_domain_work_fn(unsigned long start_pfn,
2052 unsigned long end_pfn, void *datax)
2053{
2054 int *ret = datax;
2055
2056 *ret = iommu_domain_identity_map(si_domain,
2057 (uint64_t)start_pfn << PAGE_SHIFT,
2058 (uint64_t)end_pfn << PAGE_SHIFT);
2059 return *ret;
2060
2061}
2062
Matt Kraai071e1372009-08-23 22:30:22 -07002063static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002064{
2065 struct dmar_drhd_unit *drhd;
2066 struct intel_iommu *iommu;
David Woodhousec7ab48d2009-06-26 19:10:36 +01002067 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002068
2069 si_domain = alloc_domain();
2070 if (!si_domain)
2071 return -EFAULT;
2072
David Woodhousec7ab48d2009-06-26 19:10:36 +01002073 pr_debug("Identity mapping domain is domain %d\n", si_domain->id);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002074
2075 for_each_active_iommu(iommu, drhd) {
2076 ret = iommu_attach_domain(si_domain, iommu);
2077 if (ret) {
2078 domain_exit(si_domain);
2079 return -EFAULT;
2080 }
2081 }
2082
2083 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2084 domain_exit(si_domain);
2085 return -EFAULT;
2086 }
2087
2088 si_domain->flags = DOMAIN_FLAG_STATIC_IDENTITY;
2089
David Woodhouse19943b02009-08-04 16:19:20 +01002090 if (hw)
2091 return 0;
2092
David Woodhousec7ab48d2009-06-26 19:10:36 +01002093 for_each_online_node(nid) {
2094 work_with_active_regions(nid, si_domain_work_fn, &ret);
2095 if (ret)
2096 return ret;
2097 }
2098
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002099 return 0;
2100}
2101
2102static void domain_remove_one_dev_info(struct dmar_domain *domain,
2103 struct pci_dev *pdev);
2104static int identity_mapping(struct pci_dev *pdev)
2105{
2106 struct device_domain_info *info;
2107
2108 if (likely(!iommu_identity_mapping))
2109 return 0;
2110
2111
2112 list_for_each_entry(info, &si_domain->devices, link)
2113 if (info->dev == pdev)
2114 return 1;
2115 return 0;
2116}
2117
2118static int domain_add_dev_info(struct dmar_domain *domain,
David Woodhouse5fe60f42009-08-09 10:53:41 +01002119 struct pci_dev *pdev,
2120 int translation)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002121{
2122 struct device_domain_info *info;
2123 unsigned long flags;
David Woodhouse5fe60f42009-08-09 10:53:41 +01002124 int ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002125
2126 info = alloc_devinfo_mem();
2127 if (!info)
2128 return -ENOMEM;
2129
David Woodhouse5fe60f42009-08-09 10:53:41 +01002130 ret = domain_context_mapping(domain, pdev, translation);
2131 if (ret) {
2132 free_devinfo_mem(info);
2133 return ret;
2134 }
2135
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002136 info->segment = pci_domain_nr(pdev->bus);
2137 info->bus = pdev->bus->number;
2138 info->devfn = pdev->devfn;
2139 info->dev = pdev;
2140 info->domain = domain;
2141
2142 spin_lock_irqsave(&device_domain_lock, flags);
2143 list_add(&info->link, &domain->devices);
2144 list_add(&info->global, &device_domain_list);
2145 pdev->dev.archdata.iommu = info;
2146 spin_unlock_irqrestore(&device_domain_lock, flags);
2147
2148 return 0;
2149}
2150
David Woodhouse6941af22009-07-04 18:24:27 +01002151static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
2152{
2153 if (iommu_identity_mapping == 2)
2154 return IS_GFX_DEVICE(pdev);
2155
David Woodhouse3dfc8132009-07-04 19:11:08 +01002156 /*
2157 * We want to start off with all devices in the 1:1 domain, and
2158 * take them out later if we find they can't access all of memory.
2159 *
2160 * However, we can't do this for PCI devices behind bridges,
2161 * because all PCI devices behind the same bridge will end up
2162 * with the same source-id on their transactions.
2163 *
2164 * Practically speaking, we can't change things around for these
2165 * devices at run-time, because we can't be sure there'll be no
2166 * DMA transactions in flight for any of their siblings.
2167 *
2168 * So PCI devices (unless they're on the root bus) as well as
2169 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2170 * the 1:1 domain, just in _case_ one of their siblings turns out
2171 * not to be able to map all of memory.
2172 */
2173 if (!pdev->is_pcie) {
2174 if (!pci_is_root_bus(pdev->bus))
2175 return 0;
2176 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2177 return 0;
2178 } else if (pdev->pcie_type == PCI_EXP_TYPE_PCI_BRIDGE)
2179 return 0;
2180
2181 /*
2182 * At boot time, we don't yet know if devices will be 64-bit capable.
2183 * Assume that they will -- if they turn out not to be, then we can
2184 * take them out of the 1:1 domain later.
2185 */
David Woodhouse6941af22009-07-04 18:24:27 +01002186 if (!startup)
2187 return pdev->dma_mask > DMA_BIT_MASK(32);
2188
2189 return 1;
2190}
2191
Matt Kraai071e1372009-08-23 22:30:22 -07002192static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002193{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002194 struct pci_dev *pdev = NULL;
2195 int ret;
2196
David Woodhouse19943b02009-08-04 16:19:20 +01002197 ret = si_domain_init(hw);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002198 if (ret)
2199 return -EFAULT;
2200
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002201 for_each_pci_dev(pdev) {
David Woodhouse6941af22009-07-04 18:24:27 +01002202 if (iommu_should_identity_map(pdev, 1)) {
David Woodhouse19943b02009-08-04 16:19:20 +01002203 printk(KERN_INFO "IOMMU: %s identity mapping for device %s\n",
2204 hw ? "hardware" : "software", pci_name(pdev));
David Woodhousec7ab48d2009-06-26 19:10:36 +01002205
David Woodhouse5fe60f42009-08-09 10:53:41 +01002206 ret = domain_add_dev_info(si_domain, pdev,
David Woodhouse19943b02009-08-04 16:19:20 +01002207 hw ? CONTEXT_TT_PASS_THROUGH :
David Woodhouse62edf5d2009-07-04 10:59:46 +01002208 CONTEXT_TT_MULTI_LEVEL);
2209 if (ret)
2210 return ret;
David Woodhouse62edf5d2009-07-04 10:59:46 +01002211 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002212 }
2213
2214 return 0;
2215}
2216
2217int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002218{
2219 struct dmar_drhd_unit *drhd;
2220 struct dmar_rmrr_unit *rmrr;
2221 struct pci_dev *pdev;
2222 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002223 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002224
2225 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002226 * for each drhd
2227 * allocate root
2228 * initialize and program root entry to not present
2229 * endfor
2230 */
2231 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002232 g_num_of_iommus++;
2233 /*
2234 * lock not needed as this is only incremented in the single
2235 * threaded kernel __init code path all other access are read
2236 * only
2237 */
2238 }
2239
Weidong Hand9630fe2008-12-08 11:06:32 +08002240 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
2241 GFP_KERNEL);
2242 if (!g_iommus) {
2243 printk(KERN_ERR "Allocating global iommu array failed\n");
2244 ret = -ENOMEM;
2245 goto error;
2246 }
2247
mark gross80b20dd2008-04-18 13:53:58 -07002248 deferred_flush = kzalloc(g_num_of_iommus *
2249 sizeof(struct deferred_flush_tables), GFP_KERNEL);
2250 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08002251 ret = -ENOMEM;
2252 goto error;
2253 }
2254
mark gross5e0d2a62008-03-04 15:22:08 -08002255 for_each_drhd_unit(drhd) {
2256 if (drhd->ignored)
2257 continue;
Suresh Siddha1886e8a2008-07-10 11:16:37 -07002258
2259 iommu = drhd->iommu;
Weidong Hand9630fe2008-12-08 11:06:32 +08002260 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002261
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002262 ret = iommu_init_domains(iommu);
2263 if (ret)
2264 goto error;
2265
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002266 /*
2267 * TBD:
2268 * we could share the same root & context tables
2269 * amoung all IOMMU's. Need to Split it later.
2270 */
2271 ret = iommu_alloc_root_entry(iommu);
2272 if (ret) {
2273 printk(KERN_ERR "IOMMU: allocate root entry failed\n");
2274 goto error;
2275 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002276 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01002277 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002278 }
2279
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002280 /*
2281 * Start from the sane iommu hardware state.
2282 */
Youquan Songa77b67d2008-10-16 16:31:56 -07002283 for_each_drhd_unit(drhd) {
2284 if (drhd->ignored)
2285 continue;
2286
2287 iommu = drhd->iommu;
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002288
2289 /*
2290 * If the queued invalidation is already initialized by us
2291 * (for example, while enabling interrupt-remapping) then
2292 * we got the things already rolling from a sane state.
2293 */
2294 if (iommu->qi)
2295 continue;
2296
2297 /*
2298 * Clear any previous faults.
2299 */
2300 dmar_fault(-1, iommu);
2301 /*
2302 * Disable queued invalidation if supported and already enabled
2303 * before OS handover.
2304 */
2305 dmar_disable_qi(iommu);
2306 }
2307
2308 for_each_drhd_unit(drhd) {
2309 if (drhd->ignored)
2310 continue;
2311
2312 iommu = drhd->iommu;
2313
Youquan Songa77b67d2008-10-16 16:31:56 -07002314 if (dmar_enable_qi(iommu)) {
2315 /*
2316 * Queued Invalidate not enabled, use Register Based
2317 * Invalidate
2318 */
2319 iommu->flush.flush_context = __iommu_flush_context;
2320 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
2321 printk(KERN_INFO "IOMMU 0x%Lx: using Register based "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002322 "invalidation\n",
2323 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002324 } else {
2325 iommu->flush.flush_context = qi_flush_context;
2326 iommu->flush.flush_iotlb = qi_flush_iotlb;
2327 printk(KERN_INFO "IOMMU 0x%Lx: using Queued "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002328 "invalidation\n",
2329 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002330 }
2331 }
2332
David Woodhouse19943b02009-08-04 16:19:20 +01002333 if (iommu_pass_through)
2334 iommu_identity_mapping = 1;
2335#ifdef CONFIG_DMAR_BROKEN_GFX_WA
2336 else
2337 iommu_identity_mapping = 2;
2338#endif
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002339 /*
2340 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002341 * identity mappings for rmrr, gfx, and isa and may fall back to static
2342 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002343 */
David Woodhouse19943b02009-08-04 16:19:20 +01002344 if (iommu_identity_mapping) {
2345 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
2346 if (ret) {
2347 printk(KERN_CRIT "Failed to setup IOMMU pass-through\n");
2348 goto error;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002349 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002350 }
David Woodhouse19943b02009-08-04 16:19:20 +01002351 /*
2352 * For each rmrr
2353 * for each dev attached to rmrr
2354 * do
2355 * locate drhd for dev, alloc domain for dev
2356 * allocate free domain
2357 * allocate page table entries for rmrr
2358 * if context not allocated for bus
2359 * allocate and init context
2360 * set present in root table for this bus
2361 * init context with domain, translation etc
2362 * endfor
2363 * endfor
2364 */
2365 printk(KERN_INFO "IOMMU: Setting RMRR:\n");
2366 for_each_rmrr_units(rmrr) {
2367 for (i = 0; i < rmrr->devices_cnt; i++) {
2368 pdev = rmrr->devices[i];
2369 /*
2370 * some BIOS lists non-exist devices in DMAR
2371 * table.
2372 */
2373 if (!pdev)
2374 continue;
2375 ret = iommu_prepare_rmrr_dev(rmrr, pdev);
2376 if (ret)
2377 printk(KERN_ERR
2378 "IOMMU: mapping reserved region failed\n");
2379 }
2380 }
2381
2382 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002383
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002384 /*
2385 * for each drhd
2386 * enable fault log
2387 * global invalidate context cache
2388 * global invalidate iotlb
2389 * enable translation
2390 */
2391 for_each_drhd_unit(drhd) {
2392 if (drhd->ignored)
2393 continue;
2394 iommu = drhd->iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002395
2396 iommu_flush_write_buffer(iommu);
2397
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002398 ret = dmar_set_interrupt(iommu);
2399 if (ret)
2400 goto error;
2401
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002402 iommu_set_root_entry(iommu);
2403
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002404 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002405 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
mark grossf8bab732008-02-08 04:18:38 -08002406 iommu_disable_protect_mem_regions(iommu);
2407
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002408 ret = iommu_enable_translation(iommu);
2409 if (ret)
2410 goto error;
2411 }
2412
2413 return 0;
2414error:
2415 for_each_drhd_unit(drhd) {
2416 if (drhd->ignored)
2417 continue;
2418 iommu = drhd->iommu;
2419 free_iommu(iommu);
2420 }
Weidong Hand9630fe2008-12-08 11:06:32 +08002421 kfree(g_iommus);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002422 return ret;
2423}
2424
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002425/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01002426static struct iova *intel_alloc_iova(struct device *dev,
2427 struct dmar_domain *domain,
2428 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002429{
2430 struct pci_dev *pdev = to_pci_dev(dev);
2431 struct iova *iova = NULL;
2432
David Woodhouse875764d2009-06-28 21:20:51 +01002433 /* Restrict dma_mask to the width that the iommu can handle */
2434 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
2435
2436 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002437 /*
2438 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07002439 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08002440 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002441 */
David Woodhouse875764d2009-06-28 21:20:51 +01002442 iova = alloc_iova(&domain->iovad, nrpages,
2443 IOVA_PFN(DMA_BIT_MASK(32)), 1);
2444 if (iova)
2445 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002446 }
David Woodhouse875764d2009-06-28 21:20:51 +01002447 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
2448 if (unlikely(!iova)) {
2449 printk(KERN_ERR "Allocating %ld-page iova for %s failed",
2450 nrpages, pci_name(pdev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002451 return NULL;
2452 }
2453
2454 return iova;
2455}
2456
David Woodhouse147202a2009-07-07 19:43:20 +01002457static struct dmar_domain *__get_valid_domain_for_dev(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002458{
2459 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002460 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002461
2462 domain = get_domain_for_dev(pdev,
2463 DEFAULT_DOMAIN_ADDRESS_WIDTH);
2464 if (!domain) {
2465 printk(KERN_ERR
2466 "Allocating domain for %s failed", pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002467 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002468 }
2469
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002470 /* make sure context mapping is ok */
Weidong Han5331fe62008-12-08 23:00:00 +08002471 if (unlikely(!domain_context_mapped(pdev))) {
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002472 ret = domain_context_mapping(domain, pdev,
2473 CONTEXT_TT_MULTI_LEVEL);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002474 if (ret) {
2475 printk(KERN_ERR
2476 "Domain context map for %s failed",
2477 pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002478 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002479 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002480 }
2481
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002482 return domain;
2483}
2484
David Woodhouse147202a2009-07-07 19:43:20 +01002485static inline struct dmar_domain *get_valid_domain_for_dev(struct pci_dev *dev)
2486{
2487 struct device_domain_info *info;
2488
2489 /* No lock here, assumes no domain exit in normal case */
2490 info = dev->dev.archdata.iommu;
2491 if (likely(info))
2492 return info->domain;
2493
2494 return __get_valid_domain_for_dev(dev);
2495}
2496
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002497static int iommu_dummy(struct pci_dev *pdev)
2498{
2499 return pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
2500}
2501
2502/* Check if the pdev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01002503static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002504{
David Woodhouse73676832009-07-04 14:08:36 +01002505 struct pci_dev *pdev;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002506 int found;
2507
David Woodhouse73676832009-07-04 14:08:36 +01002508 if (unlikely(dev->bus != &pci_bus_type))
2509 return 1;
2510
2511 pdev = to_pci_dev(dev);
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002512 if (iommu_dummy(pdev))
2513 return 1;
2514
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002515 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002516 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002517
2518 found = identity_mapping(pdev);
2519 if (found) {
David Woodhouse6941af22009-07-04 18:24:27 +01002520 if (iommu_should_identity_map(pdev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002521 return 1;
2522 else {
2523 /*
2524 * 32 bit DMA is removed from si_domain and fall back
2525 * to non-identity mapping.
2526 */
2527 domain_remove_one_dev_info(si_domain, pdev);
2528 printk(KERN_INFO "32bit %s uses non-identity mapping\n",
2529 pci_name(pdev));
2530 return 0;
2531 }
2532 } else {
2533 /*
2534 * In case of a detached 64 bit DMA device from vm, the device
2535 * is put into si_domain for identity mapping.
2536 */
David Woodhouse6941af22009-07-04 18:24:27 +01002537 if (iommu_should_identity_map(pdev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002538 int ret;
David Woodhouse5fe60f42009-08-09 10:53:41 +01002539 ret = domain_add_dev_info(si_domain, pdev,
2540 hw_pass_through ?
2541 CONTEXT_TT_PASS_THROUGH :
2542 CONTEXT_TT_MULTI_LEVEL);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002543 if (!ret) {
2544 printk(KERN_INFO "64bit %s uses identity mapping\n",
2545 pci_name(pdev));
2546 return 1;
2547 }
2548 }
2549 }
2550
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002551 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002552}
2553
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002554static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
2555 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002556{
2557 struct pci_dev *pdev = to_pci_dev(hwdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002558 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002559 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002560 struct iova *iova;
2561 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002562 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08002563 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07002564 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
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),
Fenghua Yu33041ec2009-08-04 15:10:59 -07002599 mm_to_dma_pfn(paddr_pfn), 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_alloc_coherent(struct device *hwdev, size_t size,
2748 dma_addr_t *dma_handle, gfp_t flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002749{
2750 void *vaddr;
2751 int order;
2752
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002753 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002754 order = get_order(size);
2755 flags &= ~(GFP_DMA | GFP_DMA32);
2756
2757 vaddr = (void *)__get_free_pages(flags, order);
2758 if (!vaddr)
2759 return NULL;
2760 memset(vaddr, 0, size);
2761
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002762 *dma_handle = __intel_map_single(hwdev, virt_to_bus(vaddr), size,
2763 DMA_BIDIRECTIONAL,
2764 hwdev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002765 if (*dma_handle)
2766 return vaddr;
2767 free_pages((unsigned long)vaddr, order);
2768 return NULL;
2769}
2770
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002771static void intel_free_coherent(struct device *hwdev, size_t size, void *vaddr,
2772 dma_addr_t dma_handle)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002773{
2774 int order;
2775
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002776 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002777 order = get_order(size);
2778
David Woodhouse0db9b7a2009-07-14 02:01:57 +01002779 intel_unmap_page(hwdev, dma_handle, size, DMA_BIDIRECTIONAL, NULL);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002780 free_pages((unsigned long)vaddr, order);
2781}
2782
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002783static void intel_unmap_sg(struct device *hwdev, struct scatterlist *sglist,
2784 int nelems, enum dma_data_direction dir,
2785 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002786{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002787 struct pci_dev *pdev = to_pci_dev(hwdev);
2788 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01002789 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002790 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08002791 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002792
David Woodhouse73676832009-07-04 14:08:36 +01002793 if (iommu_no_mapping(hwdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002794 return;
2795
2796 domain = find_domain(pdev);
Weidong Han8c11e792008-12-08 15:29:22 +08002797 BUG_ON(!domain);
2798
2799 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002800
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002801 iova = find_iova(&domain->iovad, IOVA_PFN(sglist[0].dma_address));
David Woodhouse85b98272009-07-01 19:27:53 +01002802 if (WARN_ONCE(!iova, "Driver unmaps unmatched sglist at PFN %llx\n",
2803 (unsigned long long)sglist[0].dma_address))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002804 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002805
David Woodhoused794dc92009-06-28 00:27:49 +01002806 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
2807 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002808
2809 /* clear the whole page */
David Woodhoused794dc92009-06-28 00:27:49 +01002810 dma_pte_clear_range(domain, start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002811
David Woodhoused794dc92009-06-28 00:27:49 +01002812 /* free page tables */
2813 dma_pte_free_pagetable(domain, start_pfn, last_pfn);
2814
David Woodhouseacea0012009-07-14 01:55:11 +01002815 if (intel_iommu_strict) {
2816 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
2817 last_pfn - start_pfn + 1);
2818 /* free iova */
2819 __free_iova(&domain->iovad, iova);
2820 } else {
2821 add_unmap(domain, iova);
2822 /*
2823 * queue up the release of the unmap to save the 1/6th of the
2824 * cpu used up by the iotlb flush operation...
2825 */
2826 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002827}
2828
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002829static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002830 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002831{
2832 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002833 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002834
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002835 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02002836 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00002837 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002838 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002839 }
2840 return nelems;
2841}
2842
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09002843static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int nelems,
2844 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002845{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002846 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002847 struct pci_dev *pdev = to_pci_dev(hwdev);
2848 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002849 size_t size = 0;
2850 int prot = 0;
David Woodhouseb536d242009-06-28 14:49:31 +01002851 size_t offset_pfn = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002852 struct iova *iova = NULL;
2853 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002854 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01002855 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08002856 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002857
2858 BUG_ON(dir == DMA_NONE);
David Woodhouse73676832009-07-04 14:08:36 +01002859 if (iommu_no_mapping(hwdev))
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002860 return intel_nontranslate_map_sg(hwdev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002861
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002862 domain = get_valid_domain_for_dev(pdev);
2863 if (!domain)
2864 return 0;
2865
Weidong Han8c11e792008-12-08 15:29:22 +08002866 iommu = domain_get_iommu(domain);
2867
David Woodhouseb536d242009-06-28 14:49:31 +01002868 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01002869 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002870
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002871 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
2872 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002873 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07002874 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002875 return 0;
2876 }
2877
2878 /*
2879 * Check if DMAR supports zero-length reads on write only
2880 * mappings..
2881 */
2882 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002883 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002884 prot |= DMA_PTE_READ;
2885 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2886 prot |= DMA_PTE_WRITE;
2887
David Woodhouseb536d242009-06-28 14:49:31 +01002888 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01002889
Fenghua Yuf5329592009-08-04 15:09:37 -07002890 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01002891 if (unlikely(ret)) {
2892 /* clear the page */
2893 dma_pte_clear_range(domain, start_vpfn,
2894 start_vpfn + size - 1);
2895 /* free page tables */
2896 dma_pte_free_pagetable(domain, start_vpfn,
2897 start_vpfn + size - 1);
2898 /* free iova */
2899 __free_iova(&domain->iovad, iova);
2900 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002901 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002902
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002903 /* it's a non-present to present mapping. Only flush if caching mode */
2904 if (cap_caching_mode(iommu->cap))
David Woodhouse03d6a242009-06-28 15:33:46 +01002905 iommu_flush_iotlb_psi(iommu, 0, start_vpfn, offset_pfn);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002906 else
Weidong Han8c11e792008-12-08 15:29:22 +08002907 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002908
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002909 return nelems;
2910}
2911
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002912static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
2913{
2914 return !dma_addr;
2915}
2916
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002917struct dma_map_ops intel_dma_ops = {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002918 .alloc_coherent = intel_alloc_coherent,
2919 .free_coherent = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002920 .map_sg = intel_map_sg,
2921 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09002922 .map_page = intel_map_page,
2923 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09002924 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002925};
2926
2927static inline int iommu_domain_cache_init(void)
2928{
2929 int ret = 0;
2930
2931 iommu_domain_cache = kmem_cache_create("iommu_domain",
2932 sizeof(struct dmar_domain),
2933 0,
2934 SLAB_HWCACHE_ALIGN,
2935
2936 NULL);
2937 if (!iommu_domain_cache) {
2938 printk(KERN_ERR "Couldn't create iommu_domain cache\n");
2939 ret = -ENOMEM;
2940 }
2941
2942 return ret;
2943}
2944
2945static inline int iommu_devinfo_cache_init(void)
2946{
2947 int ret = 0;
2948
2949 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
2950 sizeof(struct device_domain_info),
2951 0,
2952 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002953 NULL);
2954 if (!iommu_devinfo_cache) {
2955 printk(KERN_ERR "Couldn't create devinfo cache\n");
2956 ret = -ENOMEM;
2957 }
2958
2959 return ret;
2960}
2961
2962static inline int iommu_iova_cache_init(void)
2963{
2964 int ret = 0;
2965
2966 iommu_iova_cache = kmem_cache_create("iommu_iova",
2967 sizeof(struct iova),
2968 0,
2969 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002970 NULL);
2971 if (!iommu_iova_cache) {
2972 printk(KERN_ERR "Couldn't create iova cache\n");
2973 ret = -ENOMEM;
2974 }
2975
2976 return ret;
2977}
2978
2979static int __init iommu_init_mempool(void)
2980{
2981 int ret;
2982 ret = iommu_iova_cache_init();
2983 if (ret)
2984 return ret;
2985
2986 ret = iommu_domain_cache_init();
2987 if (ret)
2988 goto domain_error;
2989
2990 ret = iommu_devinfo_cache_init();
2991 if (!ret)
2992 return ret;
2993
2994 kmem_cache_destroy(iommu_domain_cache);
2995domain_error:
2996 kmem_cache_destroy(iommu_iova_cache);
2997
2998 return -ENOMEM;
2999}
3000
3001static void __init iommu_exit_mempool(void)
3002{
3003 kmem_cache_destroy(iommu_devinfo_cache);
3004 kmem_cache_destroy(iommu_domain_cache);
3005 kmem_cache_destroy(iommu_iova_cache);
3006
3007}
3008
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003009static void __init init_no_remapping_devices(void)
3010{
3011 struct dmar_drhd_unit *drhd;
3012
3013 for_each_drhd_unit(drhd) {
3014 if (!drhd->include_all) {
3015 int i;
3016 for (i = 0; i < drhd->devices_cnt; i++)
3017 if (drhd->devices[i] != NULL)
3018 break;
3019 /* ignore DMAR unit if no pci devices exist */
3020 if (i == drhd->devices_cnt)
3021 drhd->ignored = 1;
3022 }
3023 }
3024
3025 if (dmar_map_gfx)
3026 return;
3027
3028 for_each_drhd_unit(drhd) {
3029 int i;
3030 if (drhd->ignored || drhd->include_all)
3031 continue;
3032
3033 for (i = 0; i < drhd->devices_cnt; i++)
3034 if (drhd->devices[i] &&
3035 !IS_GFX_DEVICE(drhd->devices[i]))
3036 break;
3037
3038 if (i < drhd->devices_cnt)
3039 continue;
3040
3041 /* bypass IOMMU if it is just for gfx devices */
3042 drhd->ignored = 1;
3043 for (i = 0; i < drhd->devices_cnt; i++) {
3044 if (!drhd->devices[i])
3045 continue;
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07003046 drhd->devices[i]->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003047 }
3048 }
3049}
3050
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003051#ifdef CONFIG_SUSPEND
3052static int init_iommu_hw(void)
3053{
3054 struct dmar_drhd_unit *drhd;
3055 struct intel_iommu *iommu = NULL;
3056
3057 for_each_active_iommu(iommu, drhd)
3058 if (iommu->qi)
3059 dmar_reenable_qi(iommu);
3060
3061 for_each_active_iommu(iommu, drhd) {
3062 iommu_flush_write_buffer(iommu);
3063
3064 iommu_set_root_entry(iommu);
3065
3066 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003067 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003068 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003069 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003070 iommu_disable_protect_mem_regions(iommu);
3071 iommu_enable_translation(iommu);
3072 }
3073
3074 return 0;
3075}
3076
3077static void iommu_flush_all(void)
3078{
3079 struct dmar_drhd_unit *drhd;
3080 struct intel_iommu *iommu;
3081
3082 for_each_active_iommu(iommu, drhd) {
3083 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003084 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003085 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003086 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003087 }
3088}
3089
3090static int iommu_suspend(struct sys_device *dev, pm_message_t state)
3091{
3092 struct dmar_drhd_unit *drhd;
3093 struct intel_iommu *iommu = NULL;
3094 unsigned long flag;
3095
3096 for_each_active_iommu(iommu, drhd) {
3097 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3098 GFP_ATOMIC);
3099 if (!iommu->iommu_state)
3100 goto nomem;
3101 }
3102
3103 iommu_flush_all();
3104
3105 for_each_active_iommu(iommu, drhd) {
3106 iommu_disable_translation(iommu);
3107
3108 spin_lock_irqsave(&iommu->register_lock, flag);
3109
3110 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3111 readl(iommu->reg + DMAR_FECTL_REG);
3112 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3113 readl(iommu->reg + DMAR_FEDATA_REG);
3114 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3115 readl(iommu->reg + DMAR_FEADDR_REG);
3116 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3117 readl(iommu->reg + DMAR_FEUADDR_REG);
3118
3119 spin_unlock_irqrestore(&iommu->register_lock, flag);
3120 }
3121 return 0;
3122
3123nomem:
3124 for_each_active_iommu(iommu, drhd)
3125 kfree(iommu->iommu_state);
3126
3127 return -ENOMEM;
3128}
3129
3130static int iommu_resume(struct sys_device *dev)
3131{
3132 struct dmar_drhd_unit *drhd;
3133 struct intel_iommu *iommu = NULL;
3134 unsigned long flag;
3135
3136 if (init_iommu_hw()) {
3137 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
3138 return -EIO;
3139 }
3140
3141 for_each_active_iommu(iommu, drhd) {
3142
3143 spin_lock_irqsave(&iommu->register_lock, flag);
3144
3145 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3146 iommu->reg + DMAR_FECTL_REG);
3147 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3148 iommu->reg + DMAR_FEDATA_REG);
3149 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3150 iommu->reg + DMAR_FEADDR_REG);
3151 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3152 iommu->reg + DMAR_FEUADDR_REG);
3153
3154 spin_unlock_irqrestore(&iommu->register_lock, flag);
3155 }
3156
3157 for_each_active_iommu(iommu, drhd)
3158 kfree(iommu->iommu_state);
3159
3160 return 0;
3161}
3162
3163static struct sysdev_class iommu_sysclass = {
3164 .name = "iommu",
3165 .resume = iommu_resume,
3166 .suspend = iommu_suspend,
3167};
3168
3169static struct sys_device device_iommu = {
3170 .cls = &iommu_sysclass,
3171};
3172
3173static int __init init_iommu_sysfs(void)
3174{
3175 int error;
3176
3177 error = sysdev_class_register(&iommu_sysclass);
3178 if (error)
3179 return error;
3180
3181 error = sysdev_register(&device_iommu);
3182 if (error)
3183 sysdev_class_unregister(&iommu_sysclass);
3184
3185 return error;
3186}
3187
3188#else
3189static int __init init_iommu_sysfs(void)
3190{
3191 return 0;
3192}
3193#endif /* CONFIG_PM */
3194
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003195int __init intel_iommu_init(void)
3196{
3197 int ret = 0;
3198
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003199 if (dmar_table_init())
3200 return -ENODEV;
3201
Suresh Siddha1886e8a2008-07-10 11:16:37 -07003202 if (dmar_dev_scope_init())
3203 return -ENODEV;
3204
Suresh Siddha2ae21012008-07-10 11:16:43 -07003205 /*
3206 * Check the need for DMA-remapping initialization now.
3207 * Above initialization will also be used by Interrupt-remapping.
3208 */
David Woodhouse19943b02009-08-04 16:19:20 +01003209 if (no_iommu || swiotlb || dmar_disabled)
Suresh Siddha2ae21012008-07-10 11:16:43 -07003210 return -ENODEV;
3211
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003212 iommu_init_mempool();
3213 dmar_init_reserved_ranges();
3214
3215 init_no_remapping_devices();
3216
3217 ret = init_dmars();
3218 if (ret) {
3219 printk(KERN_ERR "IOMMU: dmar init failed\n");
3220 put_iova_domain(&reserved_iova_list);
3221 iommu_exit_mempool();
3222 return ret;
3223 }
3224 printk(KERN_INFO
3225 "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n");
3226
mark gross5e0d2a62008-03-04 15:22:08 -08003227 init_timer(&unmap_timer);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003228 force_iommu = 1;
David Woodhouse19943b02009-08-04 16:19:20 +01003229 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003230
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003231 init_iommu_sysfs();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003232
3233 register_iommu(&intel_iommu_ops);
3234
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003235 return 0;
3236}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07003237
Han, Weidong3199aa62009-02-26 17:31:12 +08003238static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
3239 struct pci_dev *pdev)
3240{
3241 struct pci_dev *tmp, *parent;
3242
3243 if (!iommu || !pdev)
3244 return;
3245
3246 /* dependent device detach */
3247 tmp = pci_find_upstream_pcie_bridge(pdev);
3248 /* Secondary interface's bus number and devfn 0 */
3249 if (tmp) {
3250 parent = pdev->bus->self;
3251 while (parent != tmp) {
3252 iommu_detach_dev(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01003253 parent->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003254 parent = parent->bus->self;
3255 }
3256 if (tmp->is_pcie) /* this is a PCIE-to-PCI bridge */
3257 iommu_detach_dev(iommu,
3258 tmp->subordinate->number, 0);
3259 else /* this is a legacy PCI bridge */
David Woodhouse276dbf992009-04-04 01:45:37 +01003260 iommu_detach_dev(iommu, tmp->bus->number,
3261 tmp->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003262 }
3263}
3264
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003265static void domain_remove_one_dev_info(struct dmar_domain *domain,
Weidong Hanc7151a82008-12-08 22:51:37 +08003266 struct pci_dev *pdev)
3267{
3268 struct device_domain_info *info;
3269 struct intel_iommu *iommu;
3270 unsigned long flags;
3271 int found = 0;
3272 struct list_head *entry, *tmp;
3273
David Woodhouse276dbf992009-04-04 01:45:37 +01003274 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3275 pdev->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003276 if (!iommu)
3277 return;
3278
3279 spin_lock_irqsave(&device_domain_lock, flags);
3280 list_for_each_safe(entry, tmp, &domain->devices) {
3281 info = list_entry(entry, struct device_domain_info, link);
David Woodhouse276dbf992009-04-04 01:45:37 +01003282 /* No need to compare PCI domain; it has to be the same */
Weidong Hanc7151a82008-12-08 22:51:37 +08003283 if (info->bus == pdev->bus->number &&
3284 info->devfn == pdev->devfn) {
3285 list_del(&info->link);
3286 list_del(&info->global);
3287 if (info->dev)
3288 info->dev->dev.archdata.iommu = NULL;
3289 spin_unlock_irqrestore(&device_domain_lock, flags);
3290
Yu Zhao93a23a72009-05-18 13:51:37 +08003291 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08003292 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003293 iommu_detach_dependent_devices(iommu, pdev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003294 free_devinfo_mem(info);
3295
3296 spin_lock_irqsave(&device_domain_lock, flags);
3297
3298 if (found)
3299 break;
3300 else
3301 continue;
3302 }
3303
3304 /* if there is no other devices under the same iommu
3305 * owned by this domain, clear this iommu in iommu_bmp
3306 * update iommu count and coherency
3307 */
David Woodhouse276dbf992009-04-04 01:45:37 +01003308 if (iommu == device_to_iommu(info->segment, info->bus,
3309 info->devfn))
Weidong Hanc7151a82008-12-08 22:51:37 +08003310 found = 1;
3311 }
3312
3313 if (found == 0) {
3314 unsigned long tmp_flags;
3315 spin_lock_irqsave(&domain->iommu_lock, tmp_flags);
3316 clear_bit(iommu->seq_id, &domain->iommu_bmp);
3317 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003318 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003319 spin_unlock_irqrestore(&domain->iommu_lock, tmp_flags);
3320 }
3321
3322 spin_unlock_irqrestore(&device_domain_lock, flags);
3323}
3324
3325static void vm_domain_remove_all_dev_info(struct dmar_domain *domain)
3326{
3327 struct device_domain_info *info;
3328 struct intel_iommu *iommu;
3329 unsigned long flags1, flags2;
3330
3331 spin_lock_irqsave(&device_domain_lock, flags1);
3332 while (!list_empty(&domain->devices)) {
3333 info = list_entry(domain->devices.next,
3334 struct device_domain_info, link);
3335 list_del(&info->link);
3336 list_del(&info->global);
3337 if (info->dev)
3338 info->dev->dev.archdata.iommu = NULL;
3339
3340 spin_unlock_irqrestore(&device_domain_lock, flags1);
3341
Yu Zhao93a23a72009-05-18 13:51:37 +08003342 iommu_disable_dev_iotlb(info);
David Woodhouse276dbf992009-04-04 01:45:37 +01003343 iommu = device_to_iommu(info->segment, info->bus, info->devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08003344 iommu_detach_dev(iommu, info->bus, info->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08003345 iommu_detach_dependent_devices(iommu, info->dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08003346
3347 /* clear this iommu in iommu_bmp, update iommu count
Sheng Yang58c610b2009-03-18 15:33:05 +08003348 * and capabilities
Weidong Hanc7151a82008-12-08 22:51:37 +08003349 */
3350 spin_lock_irqsave(&domain->iommu_lock, flags2);
3351 if (test_and_clear_bit(iommu->seq_id,
3352 &domain->iommu_bmp)) {
3353 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08003354 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08003355 }
3356 spin_unlock_irqrestore(&domain->iommu_lock, flags2);
3357
3358 free_devinfo_mem(info);
3359 spin_lock_irqsave(&device_domain_lock, flags1);
3360 }
3361 spin_unlock_irqrestore(&device_domain_lock, flags1);
3362}
3363
Weidong Han5e98c4b2008-12-08 23:03:27 +08003364/* domain id for virtual machine, it won't be set in context */
3365static unsigned long vm_domid;
3366
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003367static int vm_domain_min_agaw(struct dmar_domain *domain)
3368{
3369 int i;
3370 int min_agaw = domain->agaw;
3371
3372 i = find_first_bit(&domain->iommu_bmp, g_num_of_iommus);
3373 for (; i < g_num_of_iommus; ) {
3374 if (min_agaw > g_iommus[i]->agaw)
3375 min_agaw = g_iommus[i]->agaw;
3376
3377 i = find_next_bit(&domain->iommu_bmp, g_num_of_iommus, i+1);
3378 }
3379
3380 return min_agaw;
3381}
3382
Weidong Han5e98c4b2008-12-08 23:03:27 +08003383static struct dmar_domain *iommu_alloc_vm_domain(void)
3384{
3385 struct dmar_domain *domain;
3386
3387 domain = alloc_domain_mem();
3388 if (!domain)
3389 return NULL;
3390
3391 domain->id = vm_domid++;
3392 memset(&domain->iommu_bmp, 0, sizeof(unsigned long));
3393 domain->flags = DOMAIN_FLAG_VIRTUAL_MACHINE;
3394
3395 return domain;
3396}
3397
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003398static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08003399{
3400 int adjust_width;
3401
3402 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003403 spin_lock_init(&domain->iommu_lock);
3404
3405 domain_reserve_special_ranges(domain);
3406
3407 /* calculate AGAW */
3408 domain->gaw = guest_width;
3409 adjust_width = guestwidth_to_adjustwidth(guest_width);
3410 domain->agaw = width_to_agaw(adjust_width);
3411
3412 INIT_LIST_HEAD(&domain->devices);
3413
3414 domain->iommu_count = 0;
3415 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08003416 domain->iommu_snooping = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003417 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08003418
3419 /* always allocate the top pgd */
3420 domain->pgd = (struct dma_pte *)alloc_pgtable_page();
3421 if (!domain->pgd)
3422 return -ENOMEM;
3423 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
3424 return 0;
3425}
3426
3427static void iommu_free_vm_domain(struct dmar_domain *domain)
3428{
3429 unsigned long flags;
3430 struct dmar_drhd_unit *drhd;
3431 struct intel_iommu *iommu;
3432 unsigned long i;
3433 unsigned long ndomains;
3434
3435 for_each_drhd_unit(drhd) {
3436 if (drhd->ignored)
3437 continue;
3438 iommu = drhd->iommu;
3439
3440 ndomains = cap_ndoms(iommu->cap);
3441 i = find_first_bit(iommu->domain_ids, ndomains);
3442 for (; i < ndomains; ) {
3443 if (iommu->domains[i] == domain) {
3444 spin_lock_irqsave(&iommu->lock, flags);
3445 clear_bit(i, iommu->domain_ids);
3446 iommu->domains[i] = NULL;
3447 spin_unlock_irqrestore(&iommu->lock, flags);
3448 break;
3449 }
3450 i = find_next_bit(iommu->domain_ids, ndomains, i+1);
3451 }
3452 }
3453}
3454
3455static void vm_domain_exit(struct dmar_domain *domain)
3456{
Weidong Han5e98c4b2008-12-08 23:03:27 +08003457 /* Domain 0 is reserved, so dont process it */
3458 if (!domain)
3459 return;
3460
3461 vm_domain_remove_all_dev_info(domain);
3462 /* destroy iovas */
3463 put_iova_domain(&domain->iovad);
Weidong Han5e98c4b2008-12-08 23:03:27 +08003464
3465 /* clear ptes */
David Woodhouse595badf2009-06-27 22:09:11 +01003466 dma_pte_clear_range(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003467
3468 /* free page tables */
David Woodhoused794dc92009-06-28 00:27:49 +01003469 dma_pte_free_pagetable(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Weidong Han5e98c4b2008-12-08 23:03:27 +08003470
3471 iommu_free_vm_domain(domain);
3472 free_domain_mem(domain);
3473}
3474
Joerg Roedel5d450802008-12-03 14:52:32 +01003475static int intel_iommu_domain_init(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003476{
Joerg Roedel5d450802008-12-03 14:52:32 +01003477 struct dmar_domain *dmar_domain;
Kay, Allen M38717942008-09-09 18:37:29 +03003478
Joerg Roedel5d450802008-12-03 14:52:32 +01003479 dmar_domain = iommu_alloc_vm_domain();
3480 if (!dmar_domain) {
Kay, Allen M38717942008-09-09 18:37:29 +03003481 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003482 "intel_iommu_domain_init: dmar_domain == NULL\n");
3483 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003484 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003485 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Kay, Allen M38717942008-09-09 18:37:29 +03003486 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01003487 "intel_iommu_domain_init() failed\n");
3488 vm_domain_exit(dmar_domain);
3489 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03003490 }
Joerg Roedel5d450802008-12-03 14:52:32 +01003491 domain->priv = dmar_domain;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003492
Joerg Roedel5d450802008-12-03 14:52:32 +01003493 return 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003494}
Kay, Allen M38717942008-09-09 18:37:29 +03003495
Joerg Roedel5d450802008-12-03 14:52:32 +01003496static void intel_iommu_domain_destroy(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03003497{
Joerg Roedel5d450802008-12-03 14:52:32 +01003498 struct dmar_domain *dmar_domain = domain->priv;
3499
3500 domain->priv = NULL;
3501 vm_domain_exit(dmar_domain);
Kay, Allen M38717942008-09-09 18:37:29 +03003502}
Kay, Allen M38717942008-09-09 18:37:29 +03003503
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003504static int intel_iommu_attach_device(struct iommu_domain *domain,
3505 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003506{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003507 struct dmar_domain *dmar_domain = domain->priv;
3508 struct pci_dev *pdev = to_pci_dev(dev);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003509 struct intel_iommu *iommu;
3510 int addr_width;
3511 u64 end;
Kay, Allen M38717942008-09-09 18:37:29 +03003512
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003513 /* normally pdev is not mapped */
3514 if (unlikely(domain_context_mapped(pdev))) {
3515 struct dmar_domain *old_domain;
3516
3517 old_domain = find_domain(pdev);
3518 if (old_domain) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003519 if (dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
3520 dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)
3521 domain_remove_one_dev_info(old_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003522 else
3523 domain_remove_dev_info(old_domain);
3524 }
3525 }
3526
David Woodhouse276dbf992009-04-04 01:45:37 +01003527 iommu = device_to_iommu(pci_domain_nr(pdev->bus), pdev->bus->number,
3528 pdev->devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003529 if (!iommu)
3530 return -ENODEV;
3531
3532 /* check if this iommu agaw is sufficient for max mapped address */
3533 addr_width = agaw_to_width(iommu->agaw);
3534 end = DOMAIN_MAX_ADDR(addr_width);
3535 end = end & VTD_PAGE_MASK;
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003536 if (end < dmar_domain->max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003537 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3538 "sufficient for the mapped address (%llx)\n",
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003539 __func__, iommu->agaw, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003540 return -EFAULT;
3541 }
3542
David Woodhouse5fe60f42009-08-09 10:53:41 +01003543 return domain_add_dev_info(dmar_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003544}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003545
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003546static void intel_iommu_detach_device(struct iommu_domain *domain,
3547 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03003548{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01003549 struct dmar_domain *dmar_domain = domain->priv;
3550 struct pci_dev *pdev = to_pci_dev(dev);
3551
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003552 domain_remove_one_dev_info(dmar_domain, pdev);
Kay, Allen M38717942008-09-09 18:37:29 +03003553}
Kay, Allen M38717942008-09-09 18:37:29 +03003554
Joerg Roedeldde57a22008-12-03 15:04:09 +01003555static int intel_iommu_map_range(struct iommu_domain *domain,
3556 unsigned long iova, phys_addr_t hpa,
3557 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03003558{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003559 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003560 u64 max_addr;
3561 int addr_width;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003562 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003563 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003564
Joerg Roedeldde57a22008-12-03 15:04:09 +01003565 if (iommu_prot & IOMMU_READ)
3566 prot |= DMA_PTE_READ;
3567 if (iommu_prot & IOMMU_WRITE)
3568 prot |= DMA_PTE_WRITE;
Sheng Yang9cf06692009-03-18 15:33:07 +08003569 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
3570 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003571
David Woodhouse163cc522009-06-28 00:51:17 +01003572 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01003573 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003574 int min_agaw;
3575 u64 end;
3576
3577 /* check if minimum agaw is sufficient for mapped address */
Joerg Roedeldde57a22008-12-03 15:04:09 +01003578 min_agaw = vm_domain_min_agaw(dmar_domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003579 addr_width = agaw_to_width(min_agaw);
3580 end = DOMAIN_MAX_ADDR(addr_width);
3581 end = end & VTD_PAGE_MASK;
3582 if (end < max_addr) {
3583 printk(KERN_ERR "%s: iommu agaw (%d) is not "
3584 "sufficient for the mapped address (%llx)\n",
3585 __func__, min_agaw, max_addr);
3586 return -EFAULT;
3587 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01003588 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003589 }
David Woodhousead051222009-06-28 14:22:28 +01003590 /* Round up size to next multiple of PAGE_SIZE, if it and
3591 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01003592 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01003593 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
3594 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003595 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03003596}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003597
Joerg Roedeldde57a22008-12-03 15:04:09 +01003598static void intel_iommu_unmap_range(struct iommu_domain *domain,
3599 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003600{
Joerg Roedeldde57a22008-12-03 15:04:09 +01003601 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003602
Sheng Yang4b99d352009-07-08 11:52:52 +01003603 if (!size)
3604 return;
3605
David Woodhouse163cc522009-06-28 00:51:17 +01003606 dma_pte_clear_range(dmar_domain, iova >> VTD_PAGE_SHIFT,
3607 (iova + size - 1) >> VTD_PAGE_SHIFT);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08003608
David Woodhouse163cc522009-06-28 00:51:17 +01003609 if (dmar_domain->max_addr == iova + size)
3610 dmar_domain->max_addr = iova;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003611}
Kay, Allen M38717942008-09-09 18:37:29 +03003612
Joerg Roedeld14d6572008-12-03 15:06:57 +01003613static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
3614 unsigned long iova)
Kay, Allen M38717942008-09-09 18:37:29 +03003615{
Joerg Roedeld14d6572008-12-03 15:06:57 +01003616 struct dmar_domain *dmar_domain = domain->priv;
Kay, Allen M38717942008-09-09 18:37:29 +03003617 struct dma_pte *pte;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003618 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03003619
David Woodhouseb026fd22009-06-28 10:37:25 +01003620 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT);
Kay, Allen M38717942008-09-09 18:37:29 +03003621 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003622 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03003623
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08003624 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03003625}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003626
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003627static int intel_iommu_domain_has_cap(struct iommu_domain *domain,
3628 unsigned long cap)
3629{
3630 struct dmar_domain *dmar_domain = domain->priv;
3631
3632 if (cap == IOMMU_CAP_CACHE_COHERENCY)
3633 return dmar_domain->iommu_snooping;
3634
3635 return 0;
3636}
3637
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003638static struct iommu_ops intel_iommu_ops = {
3639 .domain_init = intel_iommu_domain_init,
3640 .domain_destroy = intel_iommu_domain_destroy,
3641 .attach_dev = intel_iommu_attach_device,
3642 .detach_dev = intel_iommu_detach_device,
3643 .map = intel_iommu_map_range,
3644 .unmap = intel_iommu_unmap_range,
3645 .iova_to_phys = intel_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003646 .domain_has_cap = intel_iommu_domain_has_cap,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003647};
David Woodhouse9af88142009-02-13 23:18:03 +00003648
3649static void __devinit quirk_iommu_rwbf(struct pci_dev *dev)
3650{
3651 /*
3652 * Mobile 4 Series Chipset neglects to set RWBF capability,
3653 * but needs it:
3654 */
3655 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
3656 rwbf_quirk = 1;
3657}
3658
3659DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);