]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - drivers/iommu/intel-iommu.c
Merge branches 'for-5.1/upstream-fixes', 'for-5.2/core', 'for-5.2/ish', 'for-5.2...
[mirror_ubuntu-kernels.git] / drivers / iommu / intel-iommu.c
CommitLineData
ba395927 1/*
ea8ea460 2 * Copyright © 2006-2014 Intel Corporation.
ba395927
KA
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 *
ea8ea460
DW
13 * Authors: David Woodhouse <dwmw2@infradead.org>,
14 * Ashok Raj <ashok.raj@intel.com>,
15 * Shaohua Li <shaohua.li@intel.com>,
16 * Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>,
17 * Fenghua Yu <fenghua.yu@intel.com>
9f10e5bf 18 * Joerg Roedel <jroedel@suse.de>
ba395927
KA
19 */
20
9f10e5bf 21#define pr_fmt(fmt) "DMAR: " fmt
932a6523 22#define dev_fmt(fmt) pr_fmt(fmt)
9f10e5bf 23
ba395927
KA
24#include <linux/init.h>
25#include <linux/bitmap.h>
5e0d2a6f 26#include <linux/debugfs.h>
54485c30 27#include <linux/export.h>
ba395927
KA
28#include <linux/slab.h>
29#include <linux/irq.h>
30#include <linux/interrupt.h>
ba395927
KA
31#include <linux/spinlock.h>
32#include <linux/pci.h>
33#include <linux/dmar.h>
34#include <linux/dma-mapping.h>
35#include <linux/mempool.h>
75f05569 36#include <linux/memory.h>
aa473240 37#include <linux/cpu.h>
5e0d2a6f 38#include <linux/timer.h>
dfddb969 39#include <linux/io.h>
38717946 40#include <linux/iova.h>
5d450806 41#include <linux/iommu.h>
38717946 42#include <linux/intel-iommu.h>
134fac3f 43#include <linux/syscore_ops.h>
69575d38 44#include <linux/tboot.h>
adb2fe02 45#include <linux/dmi.h>
5cdede24 46#include <linux/pci-ats.h>
0ee332c1 47#include <linux/memblock.h>
36746436 48#include <linux/dma-contiguous.h>
fec777c3 49#include <linux/dma-direct.h>
091d42e4 50#include <linux/crash_dump.h>
98fa15f3 51#include <linux/numa.h>
8a8f422d 52#include <asm/irq_remapping.h>
ba395927 53#include <asm/cacheflush.h>
46a7fa27 54#include <asm/iommu.h>
ba395927 55
078e1ee2 56#include "irq_remapping.h"
56283174 57#include "intel-pasid.h"
078e1ee2 58
5b6985ce
FY
59#define ROOT_SIZE VTD_PAGE_SIZE
60#define CONTEXT_SIZE VTD_PAGE_SIZE
61
ba395927 62#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
18436afd 63#define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
ba395927 64#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
e0fc7e0b 65#define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
ba395927
KA
66
67#define IOAPIC_RANGE_START (0xfee00000)
68#define IOAPIC_RANGE_END (0xfeefffff)
69#define IOVA_START_ADDR (0x1000)
70
5e3b4a15 71#define DEFAULT_DOMAIN_ADDRESS_WIDTH 57
ba395927 72
4ed0d3e6 73#define MAX_AGAW_WIDTH 64
5c645b35 74#define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT)
4ed0d3e6 75
2ebe3151
DW
76#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
77#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
78
79/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
80 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
81#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
82 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
83#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
ba395927 84
1b722500
RM
85/* IO virtual address start page frame number */
86#define IOVA_START_PFN (1)
87
f27be03b 88#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
5e0d2a6f 89
df08cdc7
AM
90/* page table handling */
91#define LEVEL_STRIDE (9)
92#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
93
6d1c56a9
OBC
94/*
95 * This bitmap is used to advertise the page sizes our hardware support
96 * to the IOMMU core, which will then use this information to split
97 * physically contiguous memory regions it is mapping into page sizes
98 * that we support.
99 *
100 * Traditionally the IOMMU core just handed us the mappings directly,
101 * after making sure the size is an order of a 4KiB page and that the
102 * mapping has natural alignment.
103 *
104 * To retain this behavior, we currently advertise that we support
105 * all page sizes that are an order of 4KiB.
106 *
107 * If at some point we'd like to utilize the IOMMU core's new behavior,
108 * we could change this to advertise the real page sizes we support.
109 */
110#define INTEL_IOMMU_PGSIZES (~0xFFFUL)
111
df08cdc7
AM
112static inline int agaw_to_level(int agaw)
113{
114 return agaw + 2;
115}
116
117static inline int agaw_to_width(int agaw)
118{
5c645b35 119 return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH);
df08cdc7
AM
120}
121
122static inline int width_to_agaw(int width)
123{
5c645b35 124 return DIV_ROUND_UP(width - 30, LEVEL_STRIDE);
df08cdc7
AM
125}
126
127static inline unsigned int level_to_offset_bits(int level)
128{
129 return (level - 1) * LEVEL_STRIDE;
130}
131
132static inline int pfn_level_offset(unsigned long pfn, int level)
133{
134 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
135}
136
137static inline unsigned long level_mask(int level)
138{
139 return -1UL << level_to_offset_bits(level);
140}
141
142static inline unsigned long level_size(int level)
143{
144 return 1UL << level_to_offset_bits(level);
145}
146
147static inline unsigned long align_to_level(unsigned long pfn, int level)
148{
149 return (pfn + level_size(level) - 1) & level_mask(level);
150}
fd18de50 151
6dd9a7c7
YS
152static inline unsigned long lvl_to_nr_pages(unsigned int lvl)
153{
5c645b35 154 return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH);
6dd9a7c7
YS
155}
156
dd4e8319
DW
157/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
158 are never going to work. */
159static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
160{
161 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
162}
163
164static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
165{
166 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
167}
168static inline unsigned long page_to_dma_pfn(struct page *pg)
169{
170 return mm_to_dma_pfn(page_to_pfn(pg));
171}
172static inline unsigned long virt_to_dma_pfn(void *p)
173{
174 return page_to_dma_pfn(virt_to_page(p));
175}
176
d9630fe9
WH
177/* global iommu list, set NULL for ignored DMAR units */
178static struct intel_iommu **g_iommus;
179
e0fc7e0b 180static void __init check_tylersburg_isoch(void);
9af88143
DW
181static int rwbf_quirk;
182
b779260b
JC
183/*
184 * set to 1 to panic kernel if can't successfully enable VT-d
185 * (used when kernel is launched w/ TXT)
186 */
187static int force_on = 0;
bfd20f1c 188int intel_iommu_tboot_noforce;
89a6079d 189static int no_platform_optin;
b779260b 190
46b08e1a 191#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
46b08e1a 192
091d42e4
JR
193/*
194 * Take a root_entry and return the Lower Context Table Pointer (LCTP)
195 * if marked present.
196 */
197static phys_addr_t root_entry_lctp(struct root_entry *re)
198{
199 if (!(re->lo & 1))
200 return 0;
201
202 return re->lo & VTD_PAGE_MASK;
203}
204
205/*
206 * Take a root_entry and return the Upper Context Table Pointer (UCTP)
207 * if marked present.
208 */
209static phys_addr_t root_entry_uctp(struct root_entry *re)
210{
211 if (!(re->hi & 1))
212 return 0;
46b08e1a 213
091d42e4
JR
214 return re->hi & VTD_PAGE_MASK;
215}
c07e7d21 216
cf484d0e
JR
217static inline void context_clear_pasid_enable(struct context_entry *context)
218{
219 context->lo &= ~(1ULL << 11);
220}
221
222static inline bool context_pasid_enabled(struct context_entry *context)
223{
224 return !!(context->lo & (1ULL << 11));
225}
226
227static inline void context_set_copied(struct context_entry *context)
228{
229 context->hi |= (1ull << 3);
230}
231
232static inline bool context_copied(struct context_entry *context)
233{
234 return !!(context->hi & (1ULL << 3));
235}
236
237static inline bool __context_present(struct context_entry *context)
c07e7d21
MM
238{
239 return (context->lo & 1);
240}
cf484d0e 241
26b86092 242bool context_present(struct context_entry *context)
cf484d0e
JR
243{
244 return context_pasid_enabled(context) ?
245 __context_present(context) :
246 __context_present(context) && !context_copied(context);
247}
248
c07e7d21
MM
249static inline void context_set_present(struct context_entry *context)
250{
251 context->lo |= 1;
252}
253
254static inline void context_set_fault_enable(struct context_entry *context)
255{
256 context->lo &= (((u64)-1) << 2) | 1;
257}
258
c07e7d21
MM
259static inline void context_set_translation_type(struct context_entry *context,
260 unsigned long value)
261{
262 context->lo &= (((u64)-1) << 4) | 3;
263 context->lo |= (value & 3) << 2;
264}
265
266static inline void context_set_address_root(struct context_entry *context,
267 unsigned long value)
268{
1a2262f9 269 context->lo &= ~VTD_PAGE_MASK;
c07e7d21
MM
270 context->lo |= value & VTD_PAGE_MASK;
271}
272
273static inline void context_set_address_width(struct context_entry *context,
274 unsigned long value)
275{
276 context->hi |= value & 7;
277}
278
279static inline void context_set_domain_id(struct context_entry *context,
280 unsigned long value)
281{
282 context->hi |= (value & ((1 << 16) - 1)) << 8;
283}
284
dbcd861f
JR
285static inline int context_domain_id(struct context_entry *c)
286{
287 return((c->hi >> 8) & 0xffff);
288}
289
c07e7d21
MM
290static inline void context_clear_entry(struct context_entry *context)
291{
292 context->lo = 0;
293 context->hi = 0;
294}
7a8fc25e 295
2c2e2c38
FY
296/*
297 * This domain is a statically identity mapping domain.
298 * 1. This domain creats a static 1:1 mapping to all usable memory.
299 * 2. It maps to each iommu if successful.
300 * 3. Each iommu mapps to this domain if successful.
301 */
19943b0e
DW
302static struct dmar_domain *si_domain;
303static int hw_pass_through = 1;
2c2e2c38 304
28ccce0d
JR
305/*
306 * Domain represents a virtual machine, more than one devices
1ce28feb
WH
307 * across iommus may be owned in one domain, e.g. kvm guest.
308 */
ab8dfe25 309#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 0)
1ce28feb 310
2c2e2c38 311/* si_domain contains mulitple devices */
ab8dfe25 312#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 1)
2c2e2c38 313
29a27719
JR
314#define for_each_domain_iommu(idx, domain) \
315 for (idx = 0; idx < g_num_of_iommus; idx++) \
316 if (domain->iommu_refcnt[idx])
317
b94e4117
JL
318struct dmar_rmrr_unit {
319 struct list_head list; /* list of rmrr units */
320 struct acpi_dmar_header *hdr; /* ACPI header */
321 u64 base_address; /* reserved base address*/
322 u64 end_address; /* reserved end address */
832bd858 323 struct dmar_dev_scope *devices; /* target devices */
b94e4117 324 int devices_cnt; /* target device count */
0659b8dc 325 struct iommu_resv_region *resv; /* reserved region handle */
b94e4117
JL
326};
327
328struct dmar_atsr_unit {
329 struct list_head list; /* list of ATSR units */
330 struct acpi_dmar_header *hdr; /* ACPI header */
832bd858 331 struct dmar_dev_scope *devices; /* target devices */
b94e4117
JL
332 int devices_cnt; /* target device count */
333 u8 include_all:1; /* include all ports */
334};
335
336static LIST_HEAD(dmar_atsr_units);
337static LIST_HEAD(dmar_rmrr_units);
338
339#define for_each_rmrr_units(rmrr) \
340 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
341
5e0d2a6f 342/* bitmap for indexing intel_iommus */
5e0d2a6f 343static int g_num_of_iommus;
344
92d03cc8 345static void domain_exit(struct dmar_domain *domain);
ba395927 346static void domain_remove_dev_info(struct dmar_domain *domain);
71753239 347static void dmar_remove_one_dev_info(struct device *dev);
127c7615 348static void __dmar_remove_one_dev_info(struct device_domain_info *info);
2452d9db
JR
349static void domain_context_clear(struct intel_iommu *iommu,
350 struct device *dev);
2a46ddf7
JL
351static int domain_detach_iommu(struct dmar_domain *domain,
352 struct intel_iommu *iommu);
ba395927 353
d3f13810 354#ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON
0cd5c3c8
KM
355int dmar_disabled = 0;
356#else
357int dmar_disabled = 1;
d3f13810 358#endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/
0cd5c3c8 359
8bc1f85c
ED
360int intel_iommu_enabled = 0;
361EXPORT_SYMBOL_GPL(intel_iommu_enabled);
362
2d9e667e 363static int dmar_map_gfx = 1;
7d3b03ce 364static int dmar_forcedac;
5e0d2a6f 365static int intel_iommu_strict;
6dd9a7c7 366static int intel_iommu_superpage = 1;
8950dcd8 367static int intel_iommu_sm;
ae853ddb 368static int iommu_identity_mapping;
c83b2f20 369
ae853ddb
DW
370#define IDENTMAP_ALL 1
371#define IDENTMAP_GFX 2
372#define IDENTMAP_AZALIA 4
c83b2f20 373
765b6a98
LB
374#define sm_supported(iommu) (intel_iommu_sm && ecap_smts((iommu)->ecap))
375#define pasid_supported(iommu) (sm_supported(iommu) && \
376 ecap_pasid((iommu)->ecap))
ba395927 377
c0771df8
DW
378int intel_iommu_gfx_mapped;
379EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped);
380
ba395927
KA
381#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
382static DEFINE_SPINLOCK(device_domain_lock);
383static LIST_HEAD(device_domain_list);
384
85319dcc
LB
385/*
386 * Iterate over elements in device_domain_list and call the specified
0bbeb01a 387 * callback @fn against each element.
85319dcc
LB
388 */
389int for_each_device_domain(int (*fn)(struct device_domain_info *info,
390 void *data), void *data)
391{
392 int ret = 0;
0bbeb01a 393 unsigned long flags;
85319dcc
LB
394 struct device_domain_info *info;
395
0bbeb01a 396 spin_lock_irqsave(&device_domain_lock, flags);
85319dcc
LB
397 list_for_each_entry(info, &device_domain_list, global) {
398 ret = fn(info, data);
0bbeb01a
LB
399 if (ret) {
400 spin_unlock_irqrestore(&device_domain_lock, flags);
85319dcc 401 return ret;
0bbeb01a 402 }
85319dcc 403 }
0bbeb01a 404 spin_unlock_irqrestore(&device_domain_lock, flags);
85319dcc
LB
405
406 return 0;
407}
408
b0119e87 409const struct iommu_ops intel_iommu_ops;
a8bcbb0d 410
4158c2ec
JR
411static bool translation_pre_enabled(struct intel_iommu *iommu)
412{
413 return (iommu->flags & VTD_FLAG_TRANS_PRE_ENABLED);
414}
415
091d42e4
JR
416static void clear_translation_pre_enabled(struct intel_iommu *iommu)
417{
418 iommu->flags &= ~VTD_FLAG_TRANS_PRE_ENABLED;
419}
420
4158c2ec
JR
421static void init_translation_status(struct intel_iommu *iommu)
422{
423 u32 gsts;
424
425 gsts = readl(iommu->reg + DMAR_GSTS_REG);
426 if (gsts & DMA_GSTS_TES)
427 iommu->flags |= VTD_FLAG_TRANS_PRE_ENABLED;
428}
429
00a77deb
JR
430/* Convert generic 'struct iommu_domain to private struct dmar_domain */
431static struct dmar_domain *to_dmar_domain(struct iommu_domain *dom)
432{
433 return container_of(dom, struct dmar_domain, domain);
434}
435
ba395927
KA
436static int __init intel_iommu_setup(char *str)
437{
438 if (!str)
439 return -EINVAL;
440 while (*str) {
0cd5c3c8
KM
441 if (!strncmp(str, "on", 2)) {
442 dmar_disabled = 0;
9f10e5bf 443 pr_info("IOMMU enabled\n");
0cd5c3c8 444 } else if (!strncmp(str, "off", 3)) {
ba395927 445 dmar_disabled = 1;
89a6079d 446 no_platform_optin = 1;
9f10e5bf 447 pr_info("IOMMU disabled\n");
ba395927
KA
448 } else if (!strncmp(str, "igfx_off", 8)) {
449 dmar_map_gfx = 0;
9f10e5bf 450 pr_info("Disable GFX device mapping\n");
7d3b03ce 451 } else if (!strncmp(str, "forcedac", 8)) {
9f10e5bf 452 pr_info("Forcing DAC for PCI devices\n");
7d3b03ce 453 dmar_forcedac = 1;
5e0d2a6f 454 } else if (!strncmp(str, "strict", 6)) {
9f10e5bf 455 pr_info("Disable batched IOTLB flush\n");
5e0d2a6f 456 intel_iommu_strict = 1;
6dd9a7c7 457 } else if (!strncmp(str, "sp_off", 6)) {
9f10e5bf 458 pr_info("Disable supported super page\n");
6dd9a7c7 459 intel_iommu_superpage = 0;
8950dcd8
LB
460 } else if (!strncmp(str, "sm_on", 5)) {
461 pr_info("Intel-IOMMU: scalable mode supported\n");
462 intel_iommu_sm = 1;
bfd20f1c
SL
463 } else if (!strncmp(str, "tboot_noforce", 13)) {
464 printk(KERN_INFO
465 "Intel-IOMMU: not forcing on after tboot. This could expose security risk for tboot\n");
466 intel_iommu_tboot_noforce = 1;
ba395927
KA
467 }
468
469 str += strcspn(str, ",");
470 while (*str == ',')
471 str++;
472 }
473 return 0;
474}
475__setup("intel_iommu=", intel_iommu_setup);
476
477static struct kmem_cache *iommu_domain_cache;
478static struct kmem_cache *iommu_devinfo_cache;
ba395927 479
9452d5bf
JR
480static struct dmar_domain* get_iommu_domain(struct intel_iommu *iommu, u16 did)
481{
8bf47816
JR
482 struct dmar_domain **domains;
483 int idx = did >> 8;
484
485 domains = iommu->domains[idx];
486 if (!domains)
487 return NULL;
488
489 return domains[did & 0xff];
9452d5bf
JR
490}
491
492static void set_iommu_domain(struct intel_iommu *iommu, u16 did,
493 struct dmar_domain *domain)
494{
8bf47816
JR
495 struct dmar_domain **domains;
496 int idx = did >> 8;
497
498 if (!iommu->domains[idx]) {
499 size_t size = 256 * sizeof(struct dmar_domain *);
500 iommu->domains[idx] = kzalloc(size, GFP_ATOMIC);
501 }
502
503 domains = iommu->domains[idx];
504 if (WARN_ON(!domains))
505 return;
506 else
507 domains[did & 0xff] = domain;
9452d5bf
JR
508}
509
9ddbfb42 510void *alloc_pgtable_page(int node)
eb3fa7cb 511{
4c923d47
SS
512 struct page *page;
513 void *vaddr = NULL;
eb3fa7cb 514
4c923d47
SS
515 page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0);
516 if (page)
517 vaddr = page_address(page);
eb3fa7cb 518 return vaddr;
ba395927
KA
519}
520
9ddbfb42 521void free_pgtable_page(void *vaddr)
ba395927
KA
522{
523 free_page((unsigned long)vaddr);
524}
525
526static inline void *alloc_domain_mem(void)
527{
354bb65e 528 return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC);
ba395927
KA
529}
530
38717946 531static void free_domain_mem(void *vaddr)
ba395927
KA
532{
533 kmem_cache_free(iommu_domain_cache, vaddr);
534}
535
536static inline void * alloc_devinfo_mem(void)
537{
354bb65e 538 return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC);
ba395927
KA
539}
540
541static inline void free_devinfo_mem(void *vaddr)
542{
543 kmem_cache_free(iommu_devinfo_cache, vaddr);
544}
545
ab8dfe25
JL
546static inline int domain_type_is_vm(struct dmar_domain *domain)
547{
548 return domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE;
549}
550
28ccce0d
JR
551static inline int domain_type_is_si(struct dmar_domain *domain)
552{
553 return domain->flags & DOMAIN_FLAG_STATIC_IDENTITY;
554}
555
ab8dfe25
JL
556static inline int domain_type_is_vm_or_si(struct dmar_domain *domain)
557{
558 return domain->flags & (DOMAIN_FLAG_VIRTUAL_MACHINE |
559 DOMAIN_FLAG_STATIC_IDENTITY);
560}
1b573683 561
162d1b10
JL
562static inline int domain_pfn_supported(struct dmar_domain *domain,
563 unsigned long pfn)
564{
565 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
566
567 return !(addr_width < BITS_PER_LONG && pfn >> addr_width);
568}
569
4ed0d3e6 570static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
1b573683
WH
571{
572 unsigned long sagaw;
573 int agaw = -1;
574
575 sagaw = cap_sagaw(iommu->cap);
4ed0d3e6 576 for (agaw = width_to_agaw(max_gaw);
1b573683
WH
577 agaw >= 0; agaw--) {
578 if (test_bit(agaw, &sagaw))
579 break;
580 }
581
582 return agaw;
583}
584
4ed0d3e6
FY
585/*
586 * Calculate max SAGAW for each iommu.
587 */
588int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
589{
590 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
591}
592
593/*
594 * calculate agaw for each iommu.
595 * "SAGAW" may be different across iommus, use a default agaw, and
596 * get a supported less agaw for iommus that don't support the default agaw.
597 */
598int iommu_calculate_agaw(struct intel_iommu *iommu)
599{
600 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
601}
602
2c2e2c38 603/* This functionin only returns single iommu in a domain */
9ddbfb42 604struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
8c11e798
WH
605{
606 int iommu_id;
607
2c2e2c38 608 /* si_domain and vm domain should not get here. */
ab8dfe25 609 BUG_ON(domain_type_is_vm_or_si(domain));
29a27719
JR
610 for_each_domain_iommu(iommu_id, domain)
611 break;
612
8c11e798
WH
613 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
614 return NULL;
615
616 return g_iommus[iommu_id];
617}
618
8e604097
WH
619static void domain_update_iommu_coherency(struct dmar_domain *domain)
620{
d0501960
DW
621 struct dmar_drhd_unit *drhd;
622 struct intel_iommu *iommu;
2f119c78
QL
623 bool found = false;
624 int i;
2e12bc29 625
d0501960 626 domain->iommu_coherency = 1;
8e604097 627
29a27719 628 for_each_domain_iommu(i, domain) {
2f119c78 629 found = true;
8e604097
WH
630 if (!ecap_coherent(g_iommus[i]->ecap)) {
631 domain->iommu_coherency = 0;
632 break;
633 }
8e604097 634 }
d0501960
DW
635 if (found)
636 return;
637
638 /* No hardware attached; use lowest common denominator */
639 rcu_read_lock();
640 for_each_active_iommu(iommu, drhd) {
641 if (!ecap_coherent(iommu->ecap)) {
642 domain->iommu_coherency = 0;
643 break;
644 }
645 }
646 rcu_read_unlock();
8e604097
WH
647}
648
161f6934 649static int domain_update_iommu_snooping(struct intel_iommu *skip)
58c610bd 650{
161f6934
JL
651 struct dmar_drhd_unit *drhd;
652 struct intel_iommu *iommu;
653 int ret = 1;
58c610bd 654
161f6934
JL
655 rcu_read_lock();
656 for_each_active_iommu(iommu, drhd) {
657 if (iommu != skip) {
658 if (!ecap_sc_support(iommu->ecap)) {
659 ret = 0;
660 break;
661 }
58c610bd 662 }
58c610bd 663 }
161f6934
JL
664 rcu_read_unlock();
665
666 return ret;
58c610bd
SY
667}
668
161f6934 669static int domain_update_iommu_superpage(struct intel_iommu *skip)
6dd9a7c7 670{
8140a95d 671 struct dmar_drhd_unit *drhd;
161f6934 672 struct intel_iommu *iommu;
8140a95d 673 int mask = 0xf;
6dd9a7c7
YS
674
675 if (!intel_iommu_superpage) {
161f6934 676 return 0;
6dd9a7c7
YS
677 }
678
8140a95d 679 /* set iommu_superpage to the smallest common denominator */
0e242612 680 rcu_read_lock();
8140a95d 681 for_each_active_iommu(iommu, drhd) {
161f6934
JL
682 if (iommu != skip) {
683 mask &= cap_super_page_val(iommu->cap);
684 if (!mask)
685 break;
6dd9a7c7
YS
686 }
687 }
0e242612
JL
688 rcu_read_unlock();
689
161f6934 690 return fls(mask);
6dd9a7c7
YS
691}
692
58c610bd
SY
693/* Some capabilities may be different across iommus */
694static void domain_update_iommu_cap(struct dmar_domain *domain)
695{
696 domain_update_iommu_coherency(domain);
161f6934
JL
697 domain->iommu_snooping = domain_update_iommu_snooping(NULL);
698 domain->iommu_superpage = domain_update_iommu_superpage(NULL);
58c610bd
SY
699}
700
26b86092
SM
701struct context_entry *iommu_context_addr(struct intel_iommu *iommu, u8 bus,
702 u8 devfn, int alloc)
03ecc32c
DW
703{
704 struct root_entry *root = &iommu->root_entry[bus];
705 struct context_entry *context;
706 u64 *entry;
707
4df4eab1 708 entry = &root->lo;
765b6a98 709 if (sm_supported(iommu)) {
03ecc32c
DW
710 if (devfn >= 0x80) {
711 devfn -= 0x80;
712 entry = &root->hi;
713 }
714 devfn *= 2;
715 }
03ecc32c
DW
716 if (*entry & 1)
717 context = phys_to_virt(*entry & VTD_PAGE_MASK);
718 else {
719 unsigned long phy_addr;
720 if (!alloc)
721 return NULL;
722
723 context = alloc_pgtable_page(iommu->node);
724 if (!context)
725 return NULL;
726
727 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
728 phy_addr = virt_to_phys((void *)context);
729 *entry = phy_addr | 1;
730 __iommu_flush_cache(iommu, entry, sizeof(*entry));
731 }
732 return &context[devfn];
733}
734
4ed6a540
DW
735static int iommu_dummy(struct device *dev)
736{
737 return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
738}
739
156baca8 740static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
c7151a8d
WH
741{
742 struct dmar_drhd_unit *drhd = NULL;
b683b230 743 struct intel_iommu *iommu;
156baca8
DW
744 struct device *tmp;
745 struct pci_dev *ptmp, *pdev = NULL;
aa4d066a 746 u16 segment = 0;
c7151a8d
WH
747 int i;
748
4ed6a540
DW
749 if (iommu_dummy(dev))
750 return NULL;
751
156baca8 752 if (dev_is_pci(dev)) {
1c387188
AR
753 struct pci_dev *pf_pdev;
754
156baca8 755 pdev = to_pci_dev(dev);
5823e330
JD
756
757#ifdef CONFIG_X86
758 /* VMD child devices currently cannot be handled individually */
759 if (is_vmd(pdev->bus))
760 return NULL;
761#endif
762
1c387188
AR
763 /* VFs aren't listed in scope tables; we need to look up
764 * the PF instead to find the IOMMU. */
765 pf_pdev = pci_physfn(pdev);
766 dev = &pf_pdev->dev;
156baca8 767 segment = pci_domain_nr(pdev->bus);
ca5b74d2 768 } else if (has_acpi_companion(dev))
156baca8
DW
769 dev = &ACPI_COMPANION(dev)->dev;
770
0e242612 771 rcu_read_lock();
b683b230 772 for_each_active_iommu(iommu, drhd) {
156baca8 773 if (pdev && segment != drhd->segment)
276dbf99 774 continue;
c7151a8d 775
b683b230 776 for_each_active_dev_scope(drhd->devices,
156baca8
DW
777 drhd->devices_cnt, i, tmp) {
778 if (tmp == dev) {
1c387188
AR
779 /* For a VF use its original BDF# not that of the PF
780 * which we used for the IOMMU lookup. Strictly speaking
781 * we could do this for all PCI devices; we only need to
782 * get the BDF# from the scope table for ACPI matches. */
5003ae1e 783 if (pdev && pdev->is_virtfn)
1c387188
AR
784 goto got_pdev;
785
156baca8
DW
786 *bus = drhd->devices[i].bus;
787 *devfn = drhd->devices[i].devfn;
b683b230 788 goto out;
156baca8
DW
789 }
790
791 if (!pdev || !dev_is_pci(tmp))
792 continue;
793
794 ptmp = to_pci_dev(tmp);
795 if (ptmp->subordinate &&
796 ptmp->subordinate->number <= pdev->bus->number &&
797 ptmp->subordinate->busn_res.end >= pdev->bus->number)
798 goto got_pdev;
924b6231 799 }
c7151a8d 800
156baca8
DW
801 if (pdev && drhd->include_all) {
802 got_pdev:
803 *bus = pdev->bus->number;
804 *devfn = pdev->devfn;
b683b230 805 goto out;
156baca8 806 }
c7151a8d 807 }
b683b230 808 iommu = NULL;
156baca8 809 out:
0e242612 810 rcu_read_unlock();
c7151a8d 811
b683b230 812 return iommu;
c7151a8d
WH
813}
814
5331fe6f
WH
815static void domain_flush_cache(struct dmar_domain *domain,
816 void *addr, int size)
817{
818 if (!domain->iommu_coherency)
819 clflush_cache_range(addr, size);
820}
821
ba395927
KA
822static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
823{
ba395927 824 struct context_entry *context;
03ecc32c 825 int ret = 0;
ba395927
KA
826 unsigned long flags;
827
828 spin_lock_irqsave(&iommu->lock, flags);
03ecc32c
DW
829 context = iommu_context_addr(iommu, bus, devfn, 0);
830 if (context)
831 ret = context_present(context);
ba395927
KA
832 spin_unlock_irqrestore(&iommu->lock, flags);
833 return ret;
834}
835
ba395927
KA
836static void free_context_table(struct intel_iommu *iommu)
837{
ba395927
KA
838 int i;
839 unsigned long flags;
840 struct context_entry *context;
841
842 spin_lock_irqsave(&iommu->lock, flags);
843 if (!iommu->root_entry) {
844 goto out;
845 }
846 for (i = 0; i < ROOT_ENTRY_NR; i++) {
03ecc32c 847 context = iommu_context_addr(iommu, i, 0, 0);
ba395927
KA
848 if (context)
849 free_pgtable_page(context);
03ecc32c 850
765b6a98 851 if (!sm_supported(iommu))
03ecc32c
DW
852 continue;
853
854 context = iommu_context_addr(iommu, i, 0x80, 0);
855 if (context)
856 free_pgtable_page(context);
857
ba395927
KA
858 }
859 free_pgtable_page(iommu->root_entry);
860 iommu->root_entry = NULL;
861out:
862 spin_unlock_irqrestore(&iommu->lock, flags);
863}
864
b026fd28 865static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
5cf0a76f 866 unsigned long pfn, int *target_level)
ba395927 867{
e083ea5b 868 struct dma_pte *parent, *pte;
ba395927 869 int level = agaw_to_level(domain->agaw);
4399c8bf 870 int offset;
ba395927
KA
871
872 BUG_ON(!domain->pgd);
f9423606 873
162d1b10 874 if (!domain_pfn_supported(domain, pfn))
f9423606
JS
875 /* Address beyond IOMMU's addressing capabilities. */
876 return NULL;
877
ba395927
KA
878 parent = domain->pgd;
879
5cf0a76f 880 while (1) {
ba395927
KA
881 void *tmp_page;
882
b026fd28 883 offset = pfn_level_offset(pfn, level);
ba395927 884 pte = &parent[offset];
5cf0a76f 885 if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte)))
6dd9a7c7 886 break;
5cf0a76f 887 if (level == *target_level)
ba395927
KA
888 break;
889
19c239ce 890 if (!dma_pte_present(pte)) {
c85994e4
DW
891 uint64_t pteval;
892
4c923d47 893 tmp_page = alloc_pgtable_page(domain->nid);
ba395927 894
206a73c1 895 if (!tmp_page)
ba395927 896 return NULL;
206a73c1 897
c85994e4 898 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
64de5af0 899 pteval = ((uint64_t)virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
effad4b5 900 if (cmpxchg64(&pte->val, 0ULL, pteval))
c85994e4
DW
901 /* Someone else set it while we were thinking; use theirs. */
902 free_pgtable_page(tmp_page);
effad4b5 903 else
c85994e4 904 domain_flush_cache(domain, pte, sizeof(*pte));
ba395927 905 }
5cf0a76f
DW
906 if (level == 1)
907 break;
908
19c239ce 909 parent = phys_to_virt(dma_pte_addr(pte));
ba395927
KA
910 level--;
911 }
912
5cf0a76f
DW
913 if (!*target_level)
914 *target_level = level;
915
ba395927
KA
916 return pte;
917}
918
6dd9a7c7 919
ba395927 920/* return address's pte at specific level */
90dcfb5e
DW
921static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
922 unsigned long pfn,
6dd9a7c7 923 int level, int *large_page)
ba395927 924{
e083ea5b 925 struct dma_pte *parent, *pte;
ba395927
KA
926 int total = agaw_to_level(domain->agaw);
927 int offset;
928
929 parent = domain->pgd;
930 while (level <= total) {
90dcfb5e 931 offset = pfn_level_offset(pfn, total);
ba395927
KA
932 pte = &parent[offset];
933 if (level == total)
934 return pte;
935
6dd9a7c7
YS
936 if (!dma_pte_present(pte)) {
937 *large_page = total;
ba395927 938 break;
6dd9a7c7
YS
939 }
940
e16922af 941 if (dma_pte_superpage(pte)) {
6dd9a7c7
YS
942 *large_page = total;
943 return pte;
944 }
945
19c239ce 946 parent = phys_to_virt(dma_pte_addr(pte));
ba395927
KA
947 total--;
948 }
949 return NULL;
950}
951
ba395927 952/* clear last level pte, a tlb flush should be followed */
5cf0a76f 953static void dma_pte_clear_range(struct dmar_domain *domain,
595badf5
DW
954 unsigned long start_pfn,
955 unsigned long last_pfn)
ba395927 956{
e083ea5b 957 unsigned int large_page;
310a5ab9 958 struct dma_pte *first_pte, *pte;
66eae846 959
162d1b10
JL
960 BUG_ON(!domain_pfn_supported(domain, start_pfn));
961 BUG_ON(!domain_pfn_supported(domain, last_pfn));
59c36286 962 BUG_ON(start_pfn > last_pfn);
ba395927 963
04b18e65 964 /* we don't need lock here; nobody else touches the iova range */
59c36286 965 do {
6dd9a7c7
YS
966 large_page = 1;
967 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page);
310a5ab9 968 if (!pte) {
6dd9a7c7 969 start_pfn = align_to_level(start_pfn + 1, large_page + 1);
310a5ab9
DW
970 continue;
971 }
6dd9a7c7 972 do {
310a5ab9 973 dma_clear_pte(pte);
6dd9a7c7 974 start_pfn += lvl_to_nr_pages(large_page);
310a5ab9 975 pte++;
75e6bf96
DW
976 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
977
310a5ab9
DW
978 domain_flush_cache(domain, first_pte,
979 (void *)pte - (void *)first_pte);
59c36286
DW
980
981 } while (start_pfn && start_pfn <= last_pfn);
ba395927
KA
982}
983
3269ee0b 984static void dma_pte_free_level(struct dmar_domain *domain, int level,
bc24c571
DD
985 int retain_level, struct dma_pte *pte,
986 unsigned long pfn, unsigned long start_pfn,
987 unsigned long last_pfn)
3269ee0b
AW
988{
989 pfn = max(start_pfn, pfn);
990 pte = &pte[pfn_level_offset(pfn, level)];
991
992 do {
993 unsigned long level_pfn;
994 struct dma_pte *level_pte;
995
996 if (!dma_pte_present(pte) || dma_pte_superpage(pte))
997 goto next;
998
f7116e11 999 level_pfn = pfn & level_mask(level);
3269ee0b
AW
1000 level_pte = phys_to_virt(dma_pte_addr(pte));
1001
bc24c571
DD
1002 if (level > 2) {
1003 dma_pte_free_level(domain, level - 1, retain_level,
1004 level_pte, level_pfn, start_pfn,
1005 last_pfn);
1006 }
3269ee0b 1007
bc24c571
DD
1008 /*
1009 * Free the page table if we're below the level we want to
1010 * retain and the range covers the entire table.
1011 */
1012 if (level < retain_level && !(start_pfn > level_pfn ||
08336fd2 1013 last_pfn < level_pfn + level_size(level) - 1)) {
3269ee0b
AW
1014 dma_clear_pte(pte);
1015 domain_flush_cache(domain, pte, sizeof(*pte));
1016 free_pgtable_page(level_pte);
1017 }
1018next:
1019 pfn += level_size(level);
1020 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1021}
1022
bc24c571
DD
1023/*
1024 * clear last level (leaf) ptes and free page table pages below the
1025 * level we wish to keep intact.
1026 */
ba395927 1027static void dma_pte_free_pagetable(struct dmar_domain *domain,
d794dc9b 1028 unsigned long start_pfn,
bc24c571
DD
1029 unsigned long last_pfn,
1030 int retain_level)
ba395927 1031{
162d1b10
JL
1032 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1033 BUG_ON(!domain_pfn_supported(domain, last_pfn));
59c36286 1034 BUG_ON(start_pfn > last_pfn);
ba395927 1035
d41a4adb
JL
1036 dma_pte_clear_range(domain, start_pfn, last_pfn);
1037
f3a0a52f 1038 /* We don't need lock here; nobody else touches the iova range */
bc24c571 1039 dma_pte_free_level(domain, agaw_to_level(domain->agaw), retain_level,
3269ee0b 1040 domain->pgd, 0, start_pfn, last_pfn);
6660c63a 1041
ba395927 1042 /* free pgd */
d794dc9b 1043 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
ba395927
KA
1044 free_pgtable_page(domain->pgd);
1045 domain->pgd = NULL;
1046 }
1047}
1048
ea8ea460
DW
1049/* When a page at a given level is being unlinked from its parent, we don't
1050 need to *modify* it at all. All we need to do is make a list of all the
1051 pages which can be freed just as soon as we've flushed the IOTLB and we
1052 know the hardware page-walk will no longer touch them.
1053 The 'pte' argument is the *parent* PTE, pointing to the page that is to
1054 be freed. */
1055static struct page *dma_pte_list_pagetables(struct dmar_domain *domain,
1056 int level, struct dma_pte *pte,
1057 struct page *freelist)
1058{
1059 struct page *pg;
1060
1061 pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT);
1062 pg->freelist = freelist;
1063 freelist = pg;
1064
1065 if (level == 1)
1066 return freelist;
1067
adeb2590
JL
1068 pte = page_address(pg);
1069 do {
ea8ea460
DW
1070 if (dma_pte_present(pte) && !dma_pte_superpage(pte))
1071 freelist = dma_pte_list_pagetables(domain, level - 1,
1072 pte, freelist);
adeb2590
JL
1073 pte++;
1074 } while (!first_pte_in_page(pte));
ea8ea460
DW
1075
1076 return freelist;
1077}
1078
1079static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level,
1080 struct dma_pte *pte, unsigned long pfn,
1081 unsigned long start_pfn,
1082 unsigned long last_pfn,
1083 struct page *freelist)
1084{
1085 struct dma_pte *first_pte = NULL, *last_pte = NULL;
1086
1087 pfn = max(start_pfn, pfn);
1088 pte = &pte[pfn_level_offset(pfn, level)];
1089
1090 do {
1091 unsigned long level_pfn;
1092
1093 if (!dma_pte_present(pte))
1094 goto next;
1095
1096 level_pfn = pfn & level_mask(level);
1097
1098 /* If range covers entire pagetable, free it */
1099 if (start_pfn <= level_pfn &&
1100 last_pfn >= level_pfn + level_size(level) - 1) {
1101 /* These suborbinate page tables are going away entirely. Don't
1102 bother to clear them; we're just going to *free* them. */
1103 if (level > 1 && !dma_pte_superpage(pte))
1104 freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist);
1105
1106 dma_clear_pte(pte);
1107 if (!first_pte)
1108 first_pte = pte;
1109 last_pte = pte;
1110 } else if (level > 1) {
1111 /* Recurse down into a level that isn't *entirely* obsolete */
1112 freelist = dma_pte_clear_level(domain, level - 1,
1113 phys_to_virt(dma_pte_addr(pte)),
1114 level_pfn, start_pfn, last_pfn,
1115 freelist);
1116 }
1117next:
1118 pfn += level_size(level);
1119 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1120
1121 if (first_pte)
1122 domain_flush_cache(domain, first_pte,
1123 (void *)++last_pte - (void *)first_pte);
1124
1125 return freelist;
1126}
1127
1128/* We can't just free the pages because the IOMMU may still be walking
1129 the page tables, and may have cached the intermediate levels. The
1130 pages can only be freed after the IOTLB flush has been done. */
b690420a
JR
1131static struct page *domain_unmap(struct dmar_domain *domain,
1132 unsigned long start_pfn,
1133 unsigned long last_pfn)
ea8ea460 1134{
e083ea5b 1135 struct page *freelist;
ea8ea460 1136
162d1b10
JL
1137 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1138 BUG_ON(!domain_pfn_supported(domain, last_pfn));
ea8ea460
DW
1139 BUG_ON(start_pfn > last_pfn);
1140
1141 /* we don't need lock here; nobody else touches the iova range */
1142 freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw),
1143 domain->pgd, 0, start_pfn, last_pfn, NULL);
1144
1145 /* free pgd */
1146 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
1147 struct page *pgd_page = virt_to_page(domain->pgd);
1148 pgd_page->freelist = freelist;
1149 freelist = pgd_page;
1150
1151 domain->pgd = NULL;
1152 }
1153
1154 return freelist;
1155}
1156
b690420a 1157static void dma_free_pagelist(struct page *freelist)
ea8ea460
DW
1158{
1159 struct page *pg;
1160
1161 while ((pg = freelist)) {
1162 freelist = pg->freelist;
1163 free_pgtable_page(page_address(pg));
1164 }
1165}
1166
13cf0174
JR
1167static void iova_entry_free(unsigned long data)
1168{
1169 struct page *freelist = (struct page *)data;
1170
1171 dma_free_pagelist(freelist);
1172}
1173
ba395927
KA
1174/* iommu handling */
1175static int iommu_alloc_root_entry(struct intel_iommu *iommu)
1176{
1177 struct root_entry *root;
1178 unsigned long flags;
1179
4c923d47 1180 root = (struct root_entry *)alloc_pgtable_page(iommu->node);
ffebeb46 1181 if (!root) {
9f10e5bf 1182 pr_err("Allocating root entry for %s failed\n",
ffebeb46 1183 iommu->name);
ba395927 1184 return -ENOMEM;
ffebeb46 1185 }
ba395927 1186
5b6985ce 1187 __iommu_flush_cache(iommu, root, ROOT_SIZE);
ba395927
KA
1188
1189 spin_lock_irqsave(&iommu->lock, flags);
1190 iommu->root_entry = root;
1191 spin_unlock_irqrestore(&iommu->lock, flags);
1192
1193 return 0;
1194}
1195
ba395927
KA
1196static void iommu_set_root_entry(struct intel_iommu *iommu)
1197{
03ecc32c 1198 u64 addr;
c416daa9 1199 u32 sts;
ba395927
KA
1200 unsigned long flag;
1201
03ecc32c 1202 addr = virt_to_phys(iommu->root_entry);
7373a8cc
LB
1203 if (sm_supported(iommu))
1204 addr |= DMA_RTADDR_SMT;
ba395927 1205
1f5b3c3f 1206 raw_spin_lock_irqsave(&iommu->register_lock, flag);
03ecc32c 1207 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, addr);
ba395927 1208
c416daa9 1209 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
ba395927
KA
1210
1211 /* Make sure hardware complete it */
1212 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
c416daa9 1213 readl, (sts & DMA_GSTS_RTPS), sts);
ba395927 1214
1f5b3c3f 1215 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
ba395927
KA
1216}
1217
6f7db75e 1218void iommu_flush_write_buffer(struct intel_iommu *iommu)
ba395927
KA
1219{
1220 u32 val;
1221 unsigned long flag;
1222
9af88143 1223 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
ba395927 1224 return;
ba395927 1225
1f5b3c3f 1226 raw_spin_lock_irqsave(&iommu->register_lock, flag);
462b60f6 1227 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
ba395927
KA
1228
1229 /* Make sure hardware complete it */
1230 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
c416daa9 1231 readl, (!(val & DMA_GSTS_WBFS)), val);
ba395927 1232
1f5b3c3f 1233 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
ba395927
KA
1234}
1235
1236/* return value determine if we need a write buffer flush */
4c25a2c1
DW
1237static void __iommu_flush_context(struct intel_iommu *iommu,
1238 u16 did, u16 source_id, u8 function_mask,
1239 u64 type)
ba395927
KA
1240{
1241 u64 val = 0;
1242 unsigned long flag;
1243
ba395927
KA
1244 switch (type) {
1245 case DMA_CCMD_GLOBAL_INVL:
1246 val = DMA_CCMD_GLOBAL_INVL;
1247 break;
1248 case DMA_CCMD_DOMAIN_INVL:
1249 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
1250 break;
1251 case DMA_CCMD_DEVICE_INVL:
1252 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
1253 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
1254 break;
1255 default:
1256 BUG();
1257 }
1258 val |= DMA_CCMD_ICC;
1259
1f5b3c3f 1260 raw_spin_lock_irqsave(&iommu->register_lock, flag);
ba395927
KA
1261 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
1262
1263 /* Make sure hardware complete it */
1264 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
1265 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
1266
1f5b3c3f 1267 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
ba395927
KA
1268}
1269
ba395927 1270/* return value determine if we need a write buffer flush */
1f0ef2aa
DW
1271static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
1272 u64 addr, unsigned int size_order, u64 type)
ba395927
KA
1273{
1274 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
1275 u64 val = 0, val_iva = 0;
1276 unsigned long flag;
1277
ba395927
KA
1278 switch (type) {
1279 case DMA_TLB_GLOBAL_FLUSH:
1280 /* global flush doesn't need set IVA_REG */
1281 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
1282 break;
1283 case DMA_TLB_DSI_FLUSH:
1284 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
1285 break;
1286 case DMA_TLB_PSI_FLUSH:
1287 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
ea8ea460 1288 /* IH bit is passed in as part of address */
ba395927
KA
1289 val_iva = size_order | addr;
1290 break;
1291 default:
1292 BUG();
1293 }
1294 /* Note: set drain read/write */
1295#if 0
1296 /*
1297 * This is probably to be super secure.. Looks like we can
1298 * ignore it without any impact.
1299 */
1300 if (cap_read_drain(iommu->cap))
1301 val |= DMA_TLB_READ_DRAIN;
1302#endif
1303 if (cap_write_drain(iommu->cap))
1304 val |= DMA_TLB_WRITE_DRAIN;
1305
1f5b3c3f 1306 raw_spin_lock_irqsave(&iommu->register_lock, flag);
ba395927
KA
1307 /* Note: Only uses first TLB reg currently */
1308 if (val_iva)
1309 dmar_writeq(iommu->reg + tlb_offset, val_iva);
1310 dmar_writeq(iommu->reg + tlb_offset + 8, val);
1311
1312 /* Make sure hardware complete it */
1313 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
1314 dmar_readq, (!(val & DMA_TLB_IVT)), val);
1315
1f5b3c3f 1316 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
ba395927
KA
1317
1318 /* check IOTLB invalidation granularity */
1319 if (DMA_TLB_IAIG(val) == 0)
9f10e5bf 1320 pr_err("Flush IOTLB failed\n");
ba395927 1321 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
9f10e5bf 1322 pr_debug("TLB flush request %Lx, actual %Lx\n",
5b6985ce
FY
1323 (unsigned long long)DMA_TLB_IIRG(type),
1324 (unsigned long long)DMA_TLB_IAIG(val));
ba395927
KA
1325}
1326
64ae892b
DW
1327static struct device_domain_info *
1328iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu,
1329 u8 bus, u8 devfn)
93a23a72 1330{
93a23a72 1331 struct device_domain_info *info;
93a23a72 1332
55d94043
JR
1333 assert_spin_locked(&device_domain_lock);
1334
93a23a72
YZ
1335 if (!iommu->qi)
1336 return NULL;
1337
93a23a72 1338 list_for_each_entry(info, &domain->devices, link)
c3b497c6
JL
1339 if (info->iommu == iommu && info->bus == bus &&
1340 info->devfn == devfn) {
b16d0cb9
DW
1341 if (info->ats_supported && info->dev)
1342 return info;
93a23a72
YZ
1343 break;
1344 }
93a23a72 1345
b16d0cb9 1346 return NULL;
93a23a72
YZ
1347}
1348
0824c592
OP
1349static void domain_update_iotlb(struct dmar_domain *domain)
1350{
1351 struct device_domain_info *info;
1352 bool has_iotlb_device = false;
1353
1354 assert_spin_locked(&device_domain_lock);
1355
1356 list_for_each_entry(info, &domain->devices, link) {
1357 struct pci_dev *pdev;
1358
1359 if (!info->dev || !dev_is_pci(info->dev))
1360 continue;
1361
1362 pdev = to_pci_dev(info->dev);
1363 if (pdev->ats_enabled) {
1364 has_iotlb_device = true;
1365 break;
1366 }
1367 }
1368
1369 domain->has_iotlb_device = has_iotlb_device;
1370}
1371
93a23a72 1372static void iommu_enable_dev_iotlb(struct device_domain_info *info)
ba395927 1373{
fb0cc3aa
BH
1374 struct pci_dev *pdev;
1375
0824c592
OP
1376 assert_spin_locked(&device_domain_lock);
1377
0bcb3e28 1378 if (!info || !dev_is_pci(info->dev))
93a23a72
YZ
1379 return;
1380
fb0cc3aa 1381 pdev = to_pci_dev(info->dev);
1c48db44
JP
1382 /* For IOMMU that supports device IOTLB throttling (DIT), we assign
1383 * PFSID to the invalidation desc of a VF such that IOMMU HW can gauge
1384 * queue depth at PF level. If DIT is not set, PFSID will be treated as
1385 * reserved, which should be set to 0.
1386 */
1387 if (!ecap_dit(info->iommu->ecap))
1388 info->pfsid = 0;
1389 else {
1390 struct pci_dev *pf_pdev;
1391
1392 /* pdev will be returned if device is not a vf */
1393 pf_pdev = pci_physfn(pdev);
1394 info->pfsid = PCI_DEVID(pf_pdev->bus->number, pf_pdev->devfn);
1395 }
fb0cc3aa 1396
b16d0cb9
DW
1397#ifdef CONFIG_INTEL_IOMMU_SVM
1398 /* The PCIe spec, in its wisdom, declares that the behaviour of
1399 the device if you enable PASID support after ATS support is
1400 undefined. So always enable PASID support on devices which
1401 have it, even if we can't yet know if we're ever going to
1402 use it. */
1403 if (info->pasid_supported && !pci_enable_pasid(pdev, info->pasid_supported & ~1))
1404 info->pasid_enabled = 1;
1405
1b84778a
KS
1406 if (info->pri_supported &&
1407 (info->pasid_enabled ? pci_prg_resp_pasid_required(pdev) : 1) &&
1408 !pci_reset_pri(pdev) && !pci_enable_pri(pdev, 32))
b16d0cb9
DW
1409 info->pri_enabled = 1;
1410#endif
fb58fdcd 1411 if (!pdev->untrusted && info->ats_supported &&
61363c14 1412 pci_ats_page_aligned(pdev) &&
fb58fdcd 1413 !pci_enable_ats(pdev, VTD_PAGE_SHIFT)) {
b16d0cb9 1414 info->ats_enabled = 1;
0824c592 1415 domain_update_iotlb(info->domain);
b16d0cb9
DW
1416 info->ats_qdep = pci_ats_queue_depth(pdev);
1417 }
93a23a72
YZ
1418}
1419
1420static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1421{
b16d0cb9
DW
1422 struct pci_dev *pdev;
1423
0824c592
OP
1424 assert_spin_locked(&device_domain_lock);
1425
da972fb1 1426 if (!dev_is_pci(info->dev))
93a23a72
YZ
1427 return;
1428
b16d0cb9
DW
1429 pdev = to_pci_dev(info->dev);
1430
1431 if (info->ats_enabled) {
1432 pci_disable_ats(pdev);
1433 info->ats_enabled = 0;
0824c592 1434 domain_update_iotlb(info->domain);
b16d0cb9
DW
1435 }
1436#ifdef CONFIG_INTEL_IOMMU_SVM
1437 if (info->pri_enabled) {
1438 pci_disable_pri(pdev);
1439 info->pri_enabled = 0;
1440 }
1441 if (info->pasid_enabled) {
1442 pci_disable_pasid(pdev);
1443 info->pasid_enabled = 0;
1444 }
1445#endif
93a23a72
YZ
1446}
1447
1448static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1449 u64 addr, unsigned mask)
1450{
1451 u16 sid, qdep;
1452 unsigned long flags;
1453 struct device_domain_info *info;
1454
0824c592
OP
1455 if (!domain->has_iotlb_device)
1456 return;
1457
93a23a72
YZ
1458 spin_lock_irqsave(&device_domain_lock, flags);
1459 list_for_each_entry(info, &domain->devices, link) {
b16d0cb9 1460 if (!info->ats_enabled)
93a23a72
YZ
1461 continue;
1462
1463 sid = info->bus << 8 | info->devfn;
b16d0cb9 1464 qdep = info->ats_qdep;
1c48db44
JP
1465 qi_flush_dev_iotlb(info->iommu, sid, info->pfsid,
1466 qdep, addr, mask);
93a23a72
YZ
1467 }
1468 spin_unlock_irqrestore(&device_domain_lock, flags);
1469}
1470
a1ddcbe9
JR
1471static void iommu_flush_iotlb_psi(struct intel_iommu *iommu,
1472 struct dmar_domain *domain,
1473 unsigned long pfn, unsigned int pages,
1474 int ih, int map)
ba395927 1475{
9dd2fe89 1476 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
03d6a246 1477 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
a1ddcbe9 1478 u16 did = domain->iommu_did[iommu->seq_id];
ba395927 1479
ba395927
KA
1480 BUG_ON(pages == 0);
1481
ea8ea460
DW
1482 if (ih)
1483 ih = 1 << 6;
ba395927 1484 /*
9dd2fe89
YZ
1485 * Fallback to domain selective flush if no PSI support or the size is
1486 * too big.
ba395927
KA
1487 * PSI requires page size to be 2 ^ x, and the base address is naturally
1488 * aligned to the size
1489 */
9dd2fe89
YZ
1490 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1491 iommu->flush.flush_iotlb(iommu, did, 0, 0,
1f0ef2aa 1492 DMA_TLB_DSI_FLUSH);
9dd2fe89 1493 else
ea8ea460 1494 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
9dd2fe89 1495 DMA_TLB_PSI_FLUSH);
bf92df30
YZ
1496
1497 /*
82653633
NA
1498 * In caching mode, changes of pages from non-present to present require
1499 * flush. However, device IOTLB doesn't need to be flushed in this case.
bf92df30 1500 */
82653633 1501 if (!cap_caching_mode(iommu->cap) || !map)
9d2e6505 1502 iommu_flush_dev_iotlb(domain, addr, mask);
ba395927
KA
1503}
1504
eed91a0b
PX
1505/* Notification for newly created mappings */
1506static inline void __mapping_notify_one(struct intel_iommu *iommu,
1507 struct dmar_domain *domain,
1508 unsigned long pfn, unsigned int pages)
1509{
1510 /* It's a non-present to present mapping. Only flush if caching mode */
1511 if (cap_caching_mode(iommu->cap))
1512 iommu_flush_iotlb_psi(iommu, domain, pfn, pages, 0, 1);
1513 else
1514 iommu_flush_write_buffer(iommu);
1515}
1516
13cf0174
JR
1517static void iommu_flush_iova(struct iova_domain *iovad)
1518{
1519 struct dmar_domain *domain;
1520 int idx;
1521
1522 domain = container_of(iovad, struct dmar_domain, iovad);
1523
1524 for_each_domain_iommu(idx, domain) {
1525 struct intel_iommu *iommu = g_iommus[idx];
1526 u16 did = domain->iommu_did[iommu->seq_id];
1527
1528 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
1529
1530 if (!cap_caching_mode(iommu->cap))
1531 iommu_flush_dev_iotlb(get_iommu_domain(iommu, did),
1532 0, MAX_AGAW_PFN_WIDTH);
1533 }
1534}
1535
f8bab735 1536static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1537{
1538 u32 pmen;
1539 unsigned long flags;
1540
5bb71fc7
LB
1541 if (!cap_plmr(iommu->cap) && !cap_phmr(iommu->cap))
1542 return;
1543
1f5b3c3f 1544 raw_spin_lock_irqsave(&iommu->register_lock, flags);
f8bab735 1545 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1546 pmen &= ~DMA_PMEN_EPM;
1547 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1548
1549 /* wait for the protected region status bit to clear */
1550 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1551 readl, !(pmen & DMA_PMEN_PRS), pmen);
1552
1f5b3c3f 1553 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
f8bab735 1554}
1555
2a41ccee 1556static void iommu_enable_translation(struct intel_iommu *iommu)
ba395927
KA
1557{
1558 u32 sts;
1559 unsigned long flags;
1560
1f5b3c3f 1561 raw_spin_lock_irqsave(&iommu->register_lock, flags);
c416daa9
DW
1562 iommu->gcmd |= DMA_GCMD_TE;
1563 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
ba395927
KA
1564
1565 /* Make sure hardware complete it */
1566 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
c416daa9 1567 readl, (sts & DMA_GSTS_TES), sts);
ba395927 1568
1f5b3c3f 1569 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
ba395927
KA
1570}
1571
2a41ccee 1572static void iommu_disable_translation(struct intel_iommu *iommu)
ba395927
KA
1573{
1574 u32 sts;
1575 unsigned long flag;
1576
1f5b3c3f 1577 raw_spin_lock_irqsave(&iommu->register_lock, flag);
ba395927
KA
1578 iommu->gcmd &= ~DMA_GCMD_TE;
1579 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1580
1581 /* Make sure hardware complete it */
1582 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
c416daa9 1583 readl, (!(sts & DMA_GSTS_TES)), sts);
ba395927 1584
1f5b3c3f 1585 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
ba395927
KA
1586}
1587
3460a6d9 1588
ba395927
KA
1589static int iommu_init_domains(struct intel_iommu *iommu)
1590{
8bf47816
JR
1591 u32 ndomains, nlongs;
1592 size_t size;
ba395927
KA
1593
1594 ndomains = cap_ndoms(iommu->cap);
8bf47816 1595 pr_debug("%s: Number of Domains supported <%d>\n",
9f10e5bf 1596 iommu->name, ndomains);
ba395927
KA
1597 nlongs = BITS_TO_LONGS(ndomains);
1598
94a91b50
DD
1599 spin_lock_init(&iommu->lock);
1600
ba395927
KA
1601 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1602 if (!iommu->domain_ids) {
9f10e5bf
JR
1603 pr_err("%s: Allocating domain id array failed\n",
1604 iommu->name);
ba395927
KA
1605 return -ENOMEM;
1606 }
8bf47816 1607
86f004c7 1608 size = (ALIGN(ndomains, 256) >> 8) * sizeof(struct dmar_domain **);
8bf47816
JR
1609 iommu->domains = kzalloc(size, GFP_KERNEL);
1610
1611 if (iommu->domains) {
1612 size = 256 * sizeof(struct dmar_domain *);
1613 iommu->domains[0] = kzalloc(size, GFP_KERNEL);
1614 }
1615
1616 if (!iommu->domains || !iommu->domains[0]) {
9f10e5bf
JR
1617 pr_err("%s: Allocating domain array failed\n",
1618 iommu->name);
852bdb04 1619 kfree(iommu->domain_ids);
8bf47816 1620 kfree(iommu->domains);
852bdb04 1621 iommu->domain_ids = NULL;
8bf47816 1622 iommu->domains = NULL;
ba395927
KA
1623 return -ENOMEM;
1624 }
1625
8bf47816
JR
1626
1627
ba395927 1628 /*
c0e8a6c8
JR
1629 * If Caching mode is set, then invalid translations are tagged
1630 * with domain-id 0, hence we need to pre-allocate it. We also
1631 * use domain-id 0 as a marker for non-allocated domain-id, so
1632 * make sure it is not used for a real domain.
ba395927 1633 */
c0e8a6c8
JR
1634 set_bit(0, iommu->domain_ids);
1635
3b33d4ab
LB
1636 /*
1637 * Vt-d spec rev3.0 (section 6.2.3.1) requires that each pasid
1638 * entry for first-level or pass-through translation modes should
1639 * be programmed with a domain id different from those used for
1640 * second-level or nested translation. We reserve a domain id for
1641 * this purpose.
1642 */
1643 if (sm_supported(iommu))
1644 set_bit(FLPT_DEFAULT_DID, iommu->domain_ids);
1645
ba395927
KA
1646 return 0;
1647}
ba395927 1648
ffebeb46 1649static void disable_dmar_iommu(struct intel_iommu *iommu)
ba395927 1650{
29a27719 1651 struct device_domain_info *info, *tmp;
55d94043 1652 unsigned long flags;
ba395927 1653
29a27719
JR
1654 if (!iommu->domains || !iommu->domain_ids)
1655 return;
a4eaa86c 1656
bea64033 1657again:
55d94043 1658 spin_lock_irqsave(&device_domain_lock, flags);
29a27719
JR
1659 list_for_each_entry_safe(info, tmp, &device_domain_list, global) {
1660 struct dmar_domain *domain;
1661
1662 if (info->iommu != iommu)
1663 continue;
1664
1665 if (!info->dev || !info->domain)
1666 continue;
1667
1668 domain = info->domain;
1669
bea64033 1670 __dmar_remove_one_dev_info(info);
29a27719 1671
bea64033
JR
1672 if (!domain_type_is_vm_or_si(domain)) {
1673 /*
1674 * The domain_exit() function can't be called under
1675 * device_domain_lock, as it takes this lock itself.
1676 * So release the lock here and re-run the loop
1677 * afterwards.
1678 */
1679 spin_unlock_irqrestore(&device_domain_lock, flags);
29a27719 1680 domain_exit(domain);
bea64033
JR
1681 goto again;
1682 }
ba395927 1683 }
55d94043 1684 spin_unlock_irqrestore(&device_domain_lock, flags);
ba395927
KA
1685
1686 if (iommu->gcmd & DMA_GCMD_TE)
1687 iommu_disable_translation(iommu);
ffebeb46 1688}
ba395927 1689
ffebeb46
JL
1690static void free_dmar_iommu(struct intel_iommu *iommu)
1691{
1692 if ((iommu->domains) && (iommu->domain_ids)) {
86f004c7 1693 int elems = ALIGN(cap_ndoms(iommu->cap), 256) >> 8;
8bf47816
JR
1694 int i;
1695
1696 for (i = 0; i < elems; i++)
1697 kfree(iommu->domains[i]);
ffebeb46
JL
1698 kfree(iommu->domains);
1699 kfree(iommu->domain_ids);
1700 iommu->domains = NULL;
1701 iommu->domain_ids = NULL;
1702 }
ba395927 1703
d9630fe9
WH
1704 g_iommus[iommu->seq_id] = NULL;
1705
ba395927
KA
1706 /* free context mapping */
1707 free_context_table(iommu);
8a94ade4
DW
1708
1709#ifdef CONFIG_INTEL_IOMMU_SVM
765b6a98 1710 if (pasid_supported(iommu)) {
a222a7f0
DW
1711 if (ecap_prs(iommu->ecap))
1712 intel_svm_finish_prq(iommu);
a222a7f0 1713 }
8a94ade4 1714#endif
ba395927
KA
1715}
1716
ab8dfe25 1717static struct dmar_domain *alloc_domain(int flags)
ba395927 1718{
ba395927 1719 struct dmar_domain *domain;
ba395927
KA
1720
1721 domain = alloc_domain_mem();
1722 if (!domain)
1723 return NULL;
1724
ab8dfe25 1725 memset(domain, 0, sizeof(*domain));
98fa15f3 1726 domain->nid = NUMA_NO_NODE;
ab8dfe25 1727 domain->flags = flags;
0824c592 1728 domain->has_iotlb_device = false;
92d03cc8 1729 INIT_LIST_HEAD(&domain->devices);
2c2e2c38
FY
1730
1731 return domain;
1732}
1733
d160aca5
JR
1734/* Must be called with iommu->lock */
1735static int domain_attach_iommu(struct dmar_domain *domain,
fb170fb4
JL
1736 struct intel_iommu *iommu)
1737{
44bde614 1738 unsigned long ndomains;
55d94043 1739 int num;
44bde614 1740
55d94043 1741 assert_spin_locked(&device_domain_lock);
d160aca5 1742 assert_spin_locked(&iommu->lock);
ba395927 1743
29a27719
JR
1744 domain->iommu_refcnt[iommu->seq_id] += 1;
1745 domain->iommu_count += 1;
1746 if (domain->iommu_refcnt[iommu->seq_id] == 1) {
fb170fb4 1747 ndomains = cap_ndoms(iommu->cap);
d160aca5
JR
1748 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1749
1750 if (num >= ndomains) {
1751 pr_err("%s: No free domain ids\n", iommu->name);
1752 domain->iommu_refcnt[iommu->seq_id] -= 1;
1753 domain->iommu_count -= 1;
55d94043 1754 return -ENOSPC;
2c2e2c38 1755 }
ba395927 1756
d160aca5
JR
1757 set_bit(num, iommu->domain_ids);
1758 set_iommu_domain(iommu, num, domain);
1759
1760 domain->iommu_did[iommu->seq_id] = num;
1761 domain->nid = iommu->node;
fb170fb4 1762
fb170fb4
JL
1763 domain_update_iommu_cap(domain);
1764 }
d160aca5 1765
55d94043 1766 return 0;
fb170fb4
JL
1767}
1768
1769static int domain_detach_iommu(struct dmar_domain *domain,
1770 struct intel_iommu *iommu)
1771{
e083ea5b 1772 int num, count;
d160aca5 1773
55d94043 1774 assert_spin_locked(&device_domain_lock);
d160aca5 1775 assert_spin_locked(&iommu->lock);
fb170fb4 1776
29a27719
JR
1777 domain->iommu_refcnt[iommu->seq_id] -= 1;
1778 count = --domain->iommu_count;
1779 if (domain->iommu_refcnt[iommu->seq_id] == 0) {
d160aca5
JR
1780 num = domain->iommu_did[iommu->seq_id];
1781 clear_bit(num, iommu->domain_ids);
1782 set_iommu_domain(iommu, num, NULL);
fb170fb4 1783
fb170fb4 1784 domain_update_iommu_cap(domain);
c0e8a6c8 1785 domain->iommu_did[iommu->seq_id] = 0;
fb170fb4 1786 }
fb170fb4
JL
1787
1788 return count;
1789}
1790
ba395927 1791static struct iova_domain reserved_iova_list;
8a443df4 1792static struct lock_class_key reserved_rbtree_key;
ba395927 1793
51a63e67 1794static int dmar_init_reserved_ranges(void)
ba395927
KA
1795{
1796 struct pci_dev *pdev = NULL;
1797 struct iova *iova;
1798 int i;
ba395927 1799
aa3ac946 1800 init_iova_domain(&reserved_iova_list, VTD_PAGE_SIZE, IOVA_START_PFN);
ba395927 1801
8a443df4
MG
1802 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1803 &reserved_rbtree_key);
1804
ba395927
KA
1805 /* IOAPIC ranges shouldn't be accessed by DMA */
1806 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1807 IOVA_PFN(IOAPIC_RANGE_END));
51a63e67 1808 if (!iova) {
9f10e5bf 1809 pr_err("Reserve IOAPIC range failed\n");
51a63e67
JC
1810 return -ENODEV;
1811 }
ba395927
KA
1812
1813 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1814 for_each_pci_dev(pdev) {
1815 struct resource *r;
1816
1817 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1818 r = &pdev->resource[i];
1819 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1820 continue;
1a4a4551
DW
1821 iova = reserve_iova(&reserved_iova_list,
1822 IOVA_PFN(r->start),
1823 IOVA_PFN(r->end));
51a63e67 1824 if (!iova) {
932a6523 1825 pci_err(pdev, "Reserve iova for %pR failed\n", r);
51a63e67
JC
1826 return -ENODEV;
1827 }
ba395927
KA
1828 }
1829 }
51a63e67 1830 return 0;
ba395927
KA
1831}
1832
1833static void domain_reserve_special_ranges(struct dmar_domain *domain)
1834{
1835 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1836}
1837
1838static inline int guestwidth_to_adjustwidth(int gaw)
1839{
1840 int agaw;
1841 int r = (gaw - 12) % 9;
1842
1843 if (r == 0)
1844 agaw = gaw;
1845 else
1846 agaw = gaw + 9 - r;
1847 if (agaw > 64)
1848 agaw = 64;
1849 return agaw;
1850}
1851
dc534b25
JR
1852static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
1853 int guest_width)
ba395927 1854{
ba395927
KA
1855 int adjust_width, agaw;
1856 unsigned long sagaw;
13cf0174 1857 int err;
ba395927 1858
aa3ac946 1859 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN);
13cf0174
JR
1860
1861 err = init_iova_flush_queue(&domain->iovad,
1862 iommu_flush_iova, iova_entry_free);
1863 if (err)
1864 return err;
1865
ba395927
KA
1866 domain_reserve_special_ranges(domain);
1867
1868 /* calculate AGAW */
ba395927
KA
1869 if (guest_width > cap_mgaw(iommu->cap))
1870 guest_width = cap_mgaw(iommu->cap);
1871 domain->gaw = guest_width;
1872 adjust_width = guestwidth_to_adjustwidth(guest_width);
1873 agaw = width_to_agaw(adjust_width);
1874 sagaw = cap_sagaw(iommu->cap);
1875 if (!test_bit(agaw, &sagaw)) {
1876 /* hardware doesn't support it, choose a bigger one */
9f10e5bf 1877 pr_debug("Hardware doesn't support agaw %d\n", agaw);
ba395927
KA
1878 agaw = find_next_bit(&sagaw, 5, agaw);
1879 if (agaw >= 5)
1880 return -ENODEV;
1881 }
1882 domain->agaw = agaw;
ba395927 1883
8e604097
WH
1884 if (ecap_coherent(iommu->ecap))
1885 domain->iommu_coherency = 1;
1886 else
1887 domain->iommu_coherency = 0;
1888
58c610bd
SY
1889 if (ecap_sc_support(iommu->ecap))
1890 domain->iommu_snooping = 1;
1891 else
1892 domain->iommu_snooping = 0;
1893
214e39aa
DW
1894 if (intel_iommu_superpage)
1895 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1896 else
1897 domain->iommu_superpage = 0;
1898
4c923d47 1899 domain->nid = iommu->node;
c7151a8d 1900
ba395927 1901 /* always allocate the top pgd */
4c923d47 1902 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
ba395927
KA
1903 if (!domain->pgd)
1904 return -ENOMEM;
5b6985ce 1905 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
ba395927
KA
1906 return 0;
1907}
1908
1909static void domain_exit(struct dmar_domain *domain)
1910{
e083ea5b 1911 struct page *freelist;
ba395927 1912
d160aca5
JR
1913 /* Remove associated devices and clear attached or cached domains */
1914 rcu_read_lock();
ba395927 1915 domain_remove_dev_info(domain);
d160aca5 1916 rcu_read_unlock();
92d03cc8 1917
ba395927
KA
1918 /* destroy iovas */
1919 put_iova_domain(&domain->iovad);
ba395927 1920
ea8ea460 1921 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
ba395927 1922
ea8ea460
DW
1923 dma_free_pagelist(freelist);
1924
ba395927
KA
1925 free_domain_mem(domain);
1926}
1927
7373a8cc
LB
1928/*
1929 * Get the PASID directory size for scalable mode context entry.
1930 * Value of X in the PDTS field of a scalable mode context entry
1931 * indicates PASID directory with 2^(X + 7) entries.
1932 */
1933static inline unsigned long context_get_sm_pds(struct pasid_table *table)
1934{
1935 int pds, max_pde;
1936
1937 max_pde = table->max_pasid >> PASID_PDE_SHIFT;
1938 pds = find_first_bit((unsigned long *)&max_pde, MAX_NR_PASID_BITS);
1939 if (pds < 7)
1940 return 0;
1941
1942 return pds - 7;
1943}
1944
1945/*
1946 * Set the RID_PASID field of a scalable mode context entry. The
1947 * IOMMU hardware will use the PASID value set in this field for
1948 * DMA translations of DMA requests without PASID.
1949 */
1950static inline void
1951context_set_sm_rid2pasid(struct context_entry *context, unsigned long pasid)
1952{
1953 context->hi |= pasid & ((1 << 20) - 1);
1954 context->hi |= (1 << 20);
1955}
1956
1957/*
1958 * Set the DTE(Device-TLB Enable) field of a scalable mode context
1959 * entry.
1960 */
1961static inline void context_set_sm_dte(struct context_entry *context)
1962{
1963 context->lo |= (1 << 2);
1964}
1965
1966/*
1967 * Set the PRE(Page Request Enable) field of a scalable mode context
1968 * entry.
1969 */
1970static inline void context_set_sm_pre(struct context_entry *context)
1971{
1972 context->lo |= (1 << 4);
1973}
1974
1975/* Convert value to context PASID directory size field coding. */
1976#define context_pdts(pds) (((pds) & 0x7) << 9)
1977
64ae892b
DW
1978static int domain_context_mapping_one(struct dmar_domain *domain,
1979 struct intel_iommu *iommu,
ca6e322d 1980 struct pasid_table *table,
28ccce0d 1981 u8 bus, u8 devfn)
ba395927 1982{
c6c2cebd 1983 u16 did = domain->iommu_did[iommu->seq_id];
28ccce0d
JR
1984 int translation = CONTEXT_TT_MULTI_LEVEL;
1985 struct device_domain_info *info = NULL;
ba395927 1986 struct context_entry *context;
ba395927 1987 unsigned long flags;
7373a8cc 1988 int ret;
28ccce0d 1989
c6c2cebd
JR
1990 WARN_ON(did == 0);
1991
28ccce0d
JR
1992 if (hw_pass_through && domain_type_is_si(domain))
1993 translation = CONTEXT_TT_PASS_THROUGH;
ba395927
KA
1994
1995 pr_debug("Set context mapping for %02x:%02x.%d\n",
1996 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
4ed0d3e6 1997
ba395927 1998 BUG_ON(!domain->pgd);
5331fe6f 1999
55d94043
JR
2000 spin_lock_irqsave(&device_domain_lock, flags);
2001 spin_lock(&iommu->lock);
2002
2003 ret = -ENOMEM;
03ecc32c 2004 context = iommu_context_addr(iommu, bus, devfn, 1);
ba395927 2005 if (!context)
55d94043 2006 goto out_unlock;
ba395927 2007
55d94043
JR
2008 ret = 0;
2009 if (context_present(context))
2010 goto out_unlock;
cf484d0e 2011
aec0e861
XP
2012 /*
2013 * For kdump cases, old valid entries may be cached due to the
2014 * in-flight DMA and copied pgtable, but there is no unmapping
2015 * behaviour for them, thus we need an explicit cache flush for
2016 * the newly-mapped device. For kdump, at this point, the device
2017 * is supposed to finish reset at its driver probe stage, so no
2018 * in-flight DMA will exist, and we don't need to worry anymore
2019 * hereafter.
2020 */
2021 if (context_copied(context)) {
2022 u16 did_old = context_domain_id(context);
2023
b117e038 2024 if (did_old < cap_ndoms(iommu->cap)) {
aec0e861
XP
2025 iommu->flush.flush_context(iommu, did_old,
2026 (((u16)bus) << 8) | devfn,
2027 DMA_CCMD_MASK_NOBIT,
2028 DMA_CCMD_DEVICE_INVL);
f73a7eee
KA
2029 iommu->flush.flush_iotlb(iommu, did_old, 0, 0,
2030 DMA_TLB_DSI_FLUSH);
2031 }
aec0e861
XP
2032 }
2033
de24e553 2034 context_clear_entry(context);
ea6606b0 2035
7373a8cc
LB
2036 if (sm_supported(iommu)) {
2037 unsigned long pds;
4ed0d3e6 2038
7373a8cc
LB
2039 WARN_ON(!table);
2040
2041 /* Setup the PASID DIR pointer: */
2042 pds = context_get_sm_pds(table);
2043 context->lo = (u64)virt_to_phys(table->table) |
2044 context_pdts(pds);
2045
2046 /* Setup the RID_PASID field: */
2047 context_set_sm_rid2pasid(context, PASID_RID2PASID);
de24e553 2048
de24e553 2049 /*
7373a8cc
LB
2050 * Setup the Device-TLB enable bit and Page request
2051 * Enable bit:
de24e553 2052 */
7373a8cc
LB
2053 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
2054 if (info && info->ats_supported)
2055 context_set_sm_dte(context);
2056 if (info && info->pri_supported)
2057 context_set_sm_pre(context);
2058 } else {
2059 struct dma_pte *pgd = domain->pgd;
2060 int agaw;
2061
2062 context_set_domain_id(context, did);
7373a8cc
LB
2063
2064 if (translation != CONTEXT_TT_PASS_THROUGH) {
2065 /*
2066 * Skip top levels of page tables for iommu which has
2067 * less agaw than default. Unnecessary for PT mode.
2068 */
2069 for (agaw = domain->agaw; agaw > iommu->agaw; agaw--) {
2070 ret = -ENOMEM;
2071 pgd = phys_to_virt(dma_pte_addr(pgd));
2072 if (!dma_pte_present(pgd))
2073 goto out_unlock;
2074 }
2075
2076 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
2077 if (info && info->ats_supported)
2078 translation = CONTEXT_TT_DEV_IOTLB;
2079 else
2080 translation = CONTEXT_TT_MULTI_LEVEL;
2081
2082 context_set_address_root(context, virt_to_phys(pgd));
2083 context_set_address_width(context, agaw);
2084 } else {
2085 /*
2086 * In pass through mode, AW must be programmed to
2087 * indicate the largest AGAW value supported by
2088 * hardware. And ASR is ignored by hardware.
2089 */
2090 context_set_address_width(context, iommu->msagaw);
2091 }
41b80db2
LB
2092
2093 context_set_translation_type(context, translation);
93a23a72 2094 }
4ed0d3e6 2095
c07e7d21
MM
2096 context_set_fault_enable(context);
2097 context_set_present(context);
5331fe6f 2098 domain_flush_cache(domain, context, sizeof(*context));
ba395927 2099
4c25a2c1
DW
2100 /*
2101 * It's a non-present to present mapping. If hardware doesn't cache
2102 * non-present entry we only need to flush the write-buffer. If the
2103 * _does_ cache non-present entries, then it does so in the special
2104 * domain #0, which we have to flush:
2105 */
2106 if (cap_caching_mode(iommu->cap)) {
2107 iommu->flush.flush_context(iommu, 0,
2108 (((u16)bus) << 8) | devfn,
2109 DMA_CCMD_MASK_NOBIT,
2110 DMA_CCMD_DEVICE_INVL);
c6c2cebd 2111 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
4c25a2c1 2112 } else {
ba395927 2113 iommu_flush_write_buffer(iommu);
4c25a2c1 2114 }
93a23a72 2115 iommu_enable_dev_iotlb(info);
c7151a8d 2116
55d94043
JR
2117 ret = 0;
2118
2119out_unlock:
2120 spin_unlock(&iommu->lock);
2121 spin_unlock_irqrestore(&device_domain_lock, flags);
fb170fb4 2122
5c365d18 2123 return ret;
ba395927
KA
2124}
2125
579305f7
AW
2126struct domain_context_mapping_data {
2127 struct dmar_domain *domain;
2128 struct intel_iommu *iommu;
ca6e322d 2129 struct pasid_table *table;
579305f7
AW
2130};
2131
2132static int domain_context_mapping_cb(struct pci_dev *pdev,
2133 u16 alias, void *opaque)
2134{
2135 struct domain_context_mapping_data *data = opaque;
2136
2137 return domain_context_mapping_one(data->domain, data->iommu,
ca6e322d
LB
2138 data->table, PCI_BUS_NUM(alias),
2139 alias & 0xff);
579305f7
AW
2140}
2141
ba395927 2142static int
28ccce0d 2143domain_context_mapping(struct dmar_domain *domain, struct device *dev)
ba395927 2144{
ca6e322d
LB
2145 struct domain_context_mapping_data data;
2146 struct pasid_table *table;
64ae892b 2147 struct intel_iommu *iommu;
156baca8 2148 u8 bus, devfn;
64ae892b 2149
e1f167f3 2150 iommu = device_to_iommu(dev, &bus, &devfn);
64ae892b
DW
2151 if (!iommu)
2152 return -ENODEV;
ba395927 2153
ca6e322d
LB
2154 table = intel_pasid_get_table(dev);
2155
579305f7 2156 if (!dev_is_pci(dev))
ca6e322d
LB
2157 return domain_context_mapping_one(domain, iommu, table,
2158 bus, devfn);
579305f7
AW
2159
2160 data.domain = domain;
2161 data.iommu = iommu;
ca6e322d 2162 data.table = table;
579305f7
AW
2163
2164 return pci_for_each_dma_alias(to_pci_dev(dev),
2165 &domain_context_mapping_cb, &data);
2166}
2167
2168static int domain_context_mapped_cb(struct pci_dev *pdev,
2169 u16 alias, void *opaque)
2170{
2171 struct intel_iommu *iommu = opaque;
2172
2173 return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff);
ba395927
KA
2174}
2175
e1f167f3 2176static int domain_context_mapped(struct device *dev)
ba395927 2177{
5331fe6f 2178 struct intel_iommu *iommu;
156baca8 2179 u8 bus, devfn;
5331fe6f 2180
e1f167f3 2181 iommu = device_to_iommu(dev, &bus, &devfn);
5331fe6f
WH
2182 if (!iommu)
2183 return -ENODEV;
ba395927 2184
579305f7
AW
2185 if (!dev_is_pci(dev))
2186 return device_context_mapped(iommu, bus, devfn);
e1f167f3 2187
579305f7
AW
2188 return !pci_for_each_dma_alias(to_pci_dev(dev),
2189 domain_context_mapped_cb, iommu);
ba395927
KA
2190}
2191
f532959b
FY
2192/* Returns a number of VTD pages, but aligned to MM page size */
2193static inline unsigned long aligned_nrpages(unsigned long host_addr,
2194 size_t size)
2195{
2196 host_addr &= ~PAGE_MASK;
2197 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
2198}
2199
6dd9a7c7
YS
2200/* Return largest possible superpage level for a given mapping */
2201static inline int hardware_largepage_caps(struct dmar_domain *domain,
2202 unsigned long iov_pfn,
2203 unsigned long phy_pfn,
2204 unsigned long pages)
2205{
2206 int support, level = 1;
2207 unsigned long pfnmerge;
2208
2209 support = domain->iommu_superpage;
2210
2211 /* To use a large page, the virtual *and* physical addresses
2212 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
2213 of them will mean we have to use smaller pages. So just
2214 merge them and check both at once. */
2215 pfnmerge = iov_pfn | phy_pfn;
2216
2217 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
2218 pages >>= VTD_STRIDE_SHIFT;
2219 if (!pages)
2220 break;
2221 pfnmerge >>= VTD_STRIDE_SHIFT;
2222 level++;
2223 support--;
2224 }
2225 return level;
2226}
2227
9051aa02
DW
2228static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2229 struct scatterlist *sg, unsigned long phys_pfn,
2230 unsigned long nr_pages, int prot)
e1605495
DW
2231{
2232 struct dma_pte *first_pte = NULL, *pte = NULL;
9051aa02 2233 phys_addr_t uninitialized_var(pteval);
cc4f14aa 2234 unsigned long sg_res = 0;
6dd9a7c7
YS
2235 unsigned int largepage_lvl = 0;
2236 unsigned long lvl_pages = 0;
e1605495 2237
162d1b10 2238 BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1));
e1605495
DW
2239
2240 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
2241 return -EINVAL;
2242
2243 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
2244
cc4f14aa
JL
2245 if (!sg) {
2246 sg_res = nr_pages;
9051aa02
DW
2247 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
2248 }
2249
6dd9a7c7 2250 while (nr_pages > 0) {
c85994e4
DW
2251 uint64_t tmp;
2252
e1605495 2253 if (!sg_res) {
29a90b70
RM
2254 unsigned int pgoff = sg->offset & ~PAGE_MASK;
2255
f532959b 2256 sg_res = aligned_nrpages(sg->offset, sg->length);
29a90b70 2257 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + pgoff;
e1605495 2258 sg->dma_length = sg->length;
29a90b70 2259 pteval = (sg_phys(sg) - pgoff) | prot;
6dd9a7c7 2260 phys_pfn = pteval >> VTD_PAGE_SHIFT;
e1605495 2261 }
6dd9a7c7 2262
e1605495 2263 if (!pte) {
6dd9a7c7
YS
2264 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
2265
5cf0a76f 2266 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
e1605495
DW
2267 if (!pte)
2268 return -ENOMEM;
6dd9a7c7 2269 /* It is large page*/
6491d4d0 2270 if (largepage_lvl > 1) {
ba2374fd
CZ
2271 unsigned long nr_superpages, end_pfn;
2272
6dd9a7c7 2273 pteval |= DMA_PTE_LARGE_PAGE;
d41a4adb 2274 lvl_pages = lvl_to_nr_pages(largepage_lvl);
ba2374fd
CZ
2275
2276 nr_superpages = sg_res / lvl_pages;
2277 end_pfn = iov_pfn + nr_superpages * lvl_pages - 1;
2278
d41a4adb
JL
2279 /*
2280 * Ensure that old small page tables are
ba2374fd 2281 * removed to make room for superpage(s).
bc24c571
DD
2282 * We're adding new large pages, so make sure
2283 * we don't remove their parent tables.
d41a4adb 2284 */
bc24c571
DD
2285 dma_pte_free_pagetable(domain, iov_pfn, end_pfn,
2286 largepage_lvl + 1);
6491d4d0 2287 } else {
6dd9a7c7 2288 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
6491d4d0 2289 }
6dd9a7c7 2290
e1605495
DW
2291 }
2292 /* We don't need lock here, nobody else
2293 * touches the iova range
2294 */
7766a3fb 2295 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
c85994e4 2296 if (tmp) {
1bf20f0d 2297 static int dumps = 5;
9f10e5bf
JR
2298 pr_crit("ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2299 iov_pfn, tmp, (unsigned long long)pteval);
1bf20f0d
DW
2300 if (dumps) {
2301 dumps--;
2302 debug_dma_dump_mappings(NULL);
2303 }
2304 WARN_ON(1);
2305 }
6dd9a7c7
YS
2306
2307 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2308
2309 BUG_ON(nr_pages < lvl_pages);
2310 BUG_ON(sg_res < lvl_pages);
2311
2312 nr_pages -= lvl_pages;
2313 iov_pfn += lvl_pages;
2314 phys_pfn += lvl_pages;
2315 pteval += lvl_pages * VTD_PAGE_SIZE;
2316 sg_res -= lvl_pages;
2317
2318 /* If the next PTE would be the first in a new page, then we
2319 need to flush the cache on the entries we've just written.
2320 And then we'll need to recalculate 'pte', so clear it and
2321 let it get set again in the if (!pte) block above.
2322
2323 If we're done (!nr_pages) we need to flush the cache too.
2324
2325 Also if we've been setting superpages, we may need to
2326 recalculate 'pte' and switch back to smaller pages for the
2327 end of the mapping, if the trailing size is not enough to
2328 use another superpage (i.e. sg_res < lvl_pages). */
e1605495 2329 pte++;
6dd9a7c7
YS
2330 if (!nr_pages || first_pte_in_page(pte) ||
2331 (largepage_lvl > 1 && sg_res < lvl_pages)) {
e1605495
DW
2332 domain_flush_cache(domain, first_pte,
2333 (void *)pte - (void *)first_pte);
2334 pte = NULL;
2335 }
6dd9a7c7
YS
2336
2337 if (!sg_res && nr_pages)
e1605495
DW
2338 sg = sg_next(sg);
2339 }
2340 return 0;
2341}
2342
87684fd9
PX
2343static int domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2344 struct scatterlist *sg, unsigned long phys_pfn,
2345 unsigned long nr_pages, int prot)
2346{
2347 int ret;
2348 struct intel_iommu *iommu;
2349
2350 /* Do the real mapping first */
2351 ret = __domain_mapping(domain, iov_pfn, sg, phys_pfn, nr_pages, prot);
2352 if (ret)
2353 return ret;
2354
2355 /* Notify about the new mapping */
2356 if (domain_type_is_vm(domain)) {
2357 /* VM typed domains can have more than one IOMMUs */
2358 int iommu_id;
2359 for_each_domain_iommu(iommu_id, domain) {
2360 iommu = g_iommus[iommu_id];
2361 __mapping_notify_one(iommu, domain, iov_pfn, nr_pages);
2362 }
2363 } else {
2364 /* General domains only have one IOMMU */
2365 iommu = domain_get_iommu(domain);
2366 __mapping_notify_one(iommu, domain, iov_pfn, nr_pages);
2367 }
2368
2369 return 0;
2370}
2371
9051aa02
DW
2372static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2373 struct scatterlist *sg, unsigned long nr_pages,
2374 int prot)
ba395927 2375{
87684fd9 2376 return domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
9051aa02 2377}
6f6a00e4 2378
9051aa02
DW
2379static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2380 unsigned long phys_pfn, unsigned long nr_pages,
2381 int prot)
2382{
87684fd9 2383 return domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
ba395927
KA
2384}
2385
2452d9db 2386static void domain_context_clear_one(struct intel_iommu *iommu, u8 bus, u8 devfn)
ba395927 2387{
5082219b
FS
2388 unsigned long flags;
2389 struct context_entry *context;
2390 u16 did_old;
2391
c7151a8d
WH
2392 if (!iommu)
2393 return;
8c11e798 2394
5082219b
FS
2395 spin_lock_irqsave(&iommu->lock, flags);
2396 context = iommu_context_addr(iommu, bus, devfn, 0);
2397 if (!context) {
2398 spin_unlock_irqrestore(&iommu->lock, flags);
2399 return;
2400 }
2401 did_old = context_domain_id(context);
2402 context_clear_entry(context);
2403 __iommu_flush_cache(iommu, context, sizeof(*context));
2404 spin_unlock_irqrestore(&iommu->lock, flags);
2405 iommu->flush.flush_context(iommu,
2406 did_old,
2407 (((u16)bus) << 8) | devfn,
2408 DMA_CCMD_MASK_NOBIT,
2409 DMA_CCMD_DEVICE_INVL);
2410 iommu->flush.flush_iotlb(iommu,
2411 did_old,
2412 0,
2413 0,
2414 DMA_TLB_DSI_FLUSH);
ba395927
KA
2415}
2416
109b9b04
DW
2417static inline void unlink_domain_info(struct device_domain_info *info)
2418{
2419 assert_spin_locked(&device_domain_lock);
2420 list_del(&info->link);
2421 list_del(&info->global);
2422 if (info->dev)
0bcb3e28 2423 info->dev->archdata.iommu = NULL;
109b9b04
DW
2424}
2425
ba395927
KA
2426static void domain_remove_dev_info(struct dmar_domain *domain)
2427{
3a74ca01 2428 struct device_domain_info *info, *tmp;
fb170fb4 2429 unsigned long flags;
ba395927
KA
2430
2431 spin_lock_irqsave(&device_domain_lock, flags);
76f45fe3 2432 list_for_each_entry_safe(info, tmp, &domain->devices, link)
127c7615 2433 __dmar_remove_one_dev_info(info);
ba395927
KA
2434 spin_unlock_irqrestore(&device_domain_lock, flags);
2435}
2436
2437/*
2438 * find_domain
1525a29a 2439 * Note: we use struct device->archdata.iommu stores the info
ba395927 2440 */
1525a29a 2441static struct dmar_domain *find_domain(struct device *dev)
ba395927
KA
2442{
2443 struct device_domain_info *info;
2444
2445 /* No lock here, assumes no domain exit in normal case */
1525a29a 2446 info = dev->archdata.iommu;
b316d02a 2447 if (likely(info))
ba395927
KA
2448 return info->domain;
2449 return NULL;
2450}
2451
5a8f40e8 2452static inline struct device_domain_info *
745f2586
JL
2453dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2454{
2455 struct device_domain_info *info;
2456
2457 list_for_each_entry(info, &device_domain_list, global)
41e80dca 2458 if (info->iommu->segment == segment && info->bus == bus &&
745f2586 2459 info->devfn == devfn)
5a8f40e8 2460 return info;
745f2586
JL
2461
2462 return NULL;
2463}
2464
5db31569
JR
2465static struct dmar_domain *dmar_insert_one_dev_info(struct intel_iommu *iommu,
2466 int bus, int devfn,
2467 struct device *dev,
2468 struct dmar_domain *domain)
745f2586 2469{
5a8f40e8 2470 struct dmar_domain *found = NULL;
745f2586
JL
2471 struct device_domain_info *info;
2472 unsigned long flags;
d160aca5 2473 int ret;
745f2586
JL
2474
2475 info = alloc_devinfo_mem();
2476 if (!info)
b718cd3d 2477 return NULL;
745f2586 2478
745f2586
JL
2479 info->bus = bus;
2480 info->devfn = devfn;
b16d0cb9
DW
2481 info->ats_supported = info->pasid_supported = info->pri_supported = 0;
2482 info->ats_enabled = info->pasid_enabled = info->pri_enabled = 0;
2483 info->ats_qdep = 0;
745f2586
JL
2484 info->dev = dev;
2485 info->domain = domain;
5a8f40e8 2486 info->iommu = iommu;
cc580e41 2487 info->pasid_table = NULL;
745f2586 2488
b16d0cb9
DW
2489 if (dev && dev_is_pci(dev)) {
2490 struct pci_dev *pdev = to_pci_dev(info->dev);
2491
d8b85910
LB
2492 if (!pdev->untrusted &&
2493 !pci_ats_disabled() &&
cef74409 2494 ecap_dev_iotlb_support(iommu->ecap) &&
b16d0cb9
DW
2495 pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS) &&
2496 dmar_find_matched_atsr_unit(pdev))
2497 info->ats_supported = 1;
2498
765b6a98
LB
2499 if (sm_supported(iommu)) {
2500 if (pasid_supported(iommu)) {
b16d0cb9
DW
2501 int features = pci_pasid_features(pdev);
2502 if (features >= 0)
2503 info->pasid_supported = features | 1;
2504 }
2505
2506 if (info->ats_supported && ecap_prs(iommu->ecap) &&
2507 pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI))
2508 info->pri_supported = 1;
2509 }
2510 }
2511
745f2586
JL
2512 spin_lock_irqsave(&device_domain_lock, flags);
2513 if (dev)
0bcb3e28 2514 found = find_domain(dev);
f303e507
JR
2515
2516 if (!found) {
5a8f40e8 2517 struct device_domain_info *info2;
41e80dca 2518 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
f303e507
JR
2519 if (info2) {
2520 found = info2->domain;
2521 info2->dev = dev;
2522 }
5a8f40e8 2523 }
f303e507 2524
745f2586
JL
2525 if (found) {
2526 spin_unlock_irqrestore(&device_domain_lock, flags);
2527 free_devinfo_mem(info);
b718cd3d
DW
2528 /* Caller must free the original domain */
2529 return found;
745f2586
JL
2530 }
2531
d160aca5
JR
2532 spin_lock(&iommu->lock);
2533 ret = domain_attach_iommu(domain, iommu);
2534 spin_unlock(&iommu->lock);
2535
2536 if (ret) {
c6c2cebd 2537 spin_unlock_irqrestore(&device_domain_lock, flags);
499f3aa4 2538 free_devinfo_mem(info);
c6c2cebd
JR
2539 return NULL;
2540 }
c6c2cebd 2541
b718cd3d
DW
2542 list_add(&info->link, &domain->devices);
2543 list_add(&info->global, &device_domain_list);
2544 if (dev)
2545 dev->archdata.iommu = info;
0bbeb01a 2546 spin_unlock_irqrestore(&device_domain_lock, flags);
a7fc93fe 2547
0bbeb01a
LB
2548 /* PASID table is mandatory for a PCI device in scalable mode. */
2549 if (dev && dev_is_pci(dev) && sm_supported(iommu)) {
a7fc93fe
LB
2550 ret = intel_pasid_alloc_table(dev);
2551 if (ret) {
932a6523 2552 dev_err(dev, "PASID table allocation failed\n");
71753239 2553 dmar_remove_one_dev_info(dev);
0bbeb01a 2554 return NULL;
a7fc93fe 2555 }
ef848b7e
LB
2556
2557 /* Setup the PASID entry for requests without PASID: */
2558 spin_lock(&iommu->lock);
2559 if (hw_pass_through && domain_type_is_si(domain))
2560 ret = intel_pasid_setup_pass_through(iommu, domain,
2561 dev, PASID_RID2PASID);
2562 else
2563 ret = intel_pasid_setup_second_level(iommu, domain,
2564 dev, PASID_RID2PASID);
2565 spin_unlock(&iommu->lock);
2566 if (ret) {
932a6523 2567 dev_err(dev, "Setup RID2PASID failed\n");
71753239 2568 dmar_remove_one_dev_info(dev);
ef848b7e 2569 return NULL;
a7fc93fe
LB
2570 }
2571 }
b718cd3d 2572
cc4e2575 2573 if (dev && domain_context_mapping(domain, dev)) {
932a6523 2574 dev_err(dev, "Domain context map failed\n");
71753239 2575 dmar_remove_one_dev_info(dev);
cc4e2575
JR
2576 return NULL;
2577 }
2578
b718cd3d 2579 return domain;
745f2586
JL
2580}
2581
579305f7
AW
2582static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque)
2583{
2584 *(u16 *)opaque = alias;
2585 return 0;
2586}
2587
76208356 2588static struct dmar_domain *find_or_alloc_domain(struct device *dev, int gaw)
ba395927 2589{
e083ea5b 2590 struct device_domain_info *info;
76208356 2591 struct dmar_domain *domain = NULL;
579305f7 2592 struct intel_iommu *iommu;
fcc35c63 2593 u16 dma_alias;
ba395927 2594 unsigned long flags;
aa4d066a 2595 u8 bus, devfn;
ba395927 2596
579305f7
AW
2597 iommu = device_to_iommu(dev, &bus, &devfn);
2598 if (!iommu)
2599 return NULL;
2600
146922ec
DW
2601 if (dev_is_pci(dev)) {
2602 struct pci_dev *pdev = to_pci_dev(dev);
276dbf99 2603
579305f7
AW
2604 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2605
2606 spin_lock_irqsave(&device_domain_lock, flags);
2607 info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus),
2608 PCI_BUS_NUM(dma_alias),
2609 dma_alias & 0xff);
2610 if (info) {
2611 iommu = info->iommu;
2612 domain = info->domain;
5a8f40e8 2613 }
579305f7 2614 spin_unlock_irqrestore(&device_domain_lock, flags);
ba395927 2615
76208356 2616 /* DMA alias already has a domain, use it */
579305f7 2617 if (info)
76208356 2618 goto out;
579305f7 2619 }
ba395927 2620
146922ec 2621 /* Allocate and initialize new domain for the device */
ab8dfe25 2622 domain = alloc_domain(0);
745f2586 2623 if (!domain)
579305f7 2624 return NULL;
dc534b25 2625 if (domain_init(domain, iommu, gaw)) {
579305f7
AW
2626 domain_exit(domain);
2627 return NULL;
2c2e2c38 2628 }
ba395927 2629
76208356 2630out:
579305f7 2631
76208356
JR
2632 return domain;
2633}
579305f7 2634
76208356
JR
2635static struct dmar_domain *set_domain_for_dev(struct device *dev,
2636 struct dmar_domain *domain)
2637{
2638 struct intel_iommu *iommu;
2639 struct dmar_domain *tmp;
2640 u16 req_id, dma_alias;
2641 u8 bus, devfn;
2642
2643 iommu = device_to_iommu(dev, &bus, &devfn);
2644 if (!iommu)
2645 return NULL;
2646
2647 req_id = ((u16)bus << 8) | devfn;
2648
2649 if (dev_is_pci(dev)) {
2650 struct pci_dev *pdev = to_pci_dev(dev);
2651
2652 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2653
2654 /* register PCI DMA alias device */
2655 if (req_id != dma_alias) {
2656 tmp = dmar_insert_one_dev_info(iommu, PCI_BUS_NUM(dma_alias),
2657 dma_alias & 0xff, NULL, domain);
2658
2659 if (!tmp || tmp != domain)
2660 return tmp;
2661 }
ba395927
KA
2662 }
2663
5db31569 2664 tmp = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
76208356
JR
2665 if (!tmp || tmp != domain)
2666 return tmp;
2667
2668 return domain;
2669}
579305f7 2670
76208356
JR
2671static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
2672{
2673 struct dmar_domain *domain, *tmp;
2674
2675 domain = find_domain(dev);
2676 if (domain)
2677 goto out;
2678
2679 domain = find_or_alloc_domain(dev, gaw);
2680 if (!domain)
2681 goto out;
2682
2683 tmp = set_domain_for_dev(dev, domain);
2684 if (!tmp || domain != tmp) {
579305f7
AW
2685 domain_exit(domain);
2686 domain = tmp;
2687 }
b718cd3d 2688
76208356
JR
2689out:
2690
b718cd3d 2691 return domain;
ba395927
KA
2692}
2693
b213203e
DW
2694static int iommu_domain_identity_map(struct dmar_domain *domain,
2695 unsigned long long start,
2696 unsigned long long end)
ba395927 2697{
c5395d5c
DW
2698 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2699 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
2700
2701 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2702 dma_to_mm_pfn(last_vpfn))) {
9f10e5bf 2703 pr_err("Reserving iova failed\n");
b213203e 2704 return -ENOMEM;
ba395927
KA
2705 }
2706
af1089ce 2707 pr_debug("Mapping reserved region %llx-%llx\n", start, end);
ba395927
KA
2708 /*
2709 * RMRR range might have overlap with physical memory range,
2710 * clear it first
2711 */
c5395d5c 2712 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
ba395927 2713
87684fd9
PX
2714 return __domain_mapping(domain, first_vpfn, NULL,
2715 first_vpfn, last_vpfn - first_vpfn + 1,
2716 DMA_PTE_READ|DMA_PTE_WRITE);
b213203e
DW
2717}
2718
d66ce54b
JR
2719static int domain_prepare_identity_map(struct device *dev,
2720 struct dmar_domain *domain,
2721 unsigned long long start,
2722 unsigned long long end)
b213203e 2723{
19943b0e
DW
2724 /* For _hardware_ passthrough, don't bother. But for software
2725 passthrough, we do it anyway -- it may indicate a memory
2726 range which is reserved in E820, so which didn't get set
2727 up to start with in si_domain */
2728 if (domain == si_domain && hw_pass_through) {
932a6523
BH
2729 dev_warn(dev, "Ignoring identity map for HW passthrough [0x%Lx - 0x%Lx]\n",
2730 start, end);
19943b0e
DW
2731 return 0;
2732 }
2733
932a6523 2734 dev_info(dev, "Setting identity map [0x%Lx - 0x%Lx]\n", start, end);
9f10e5bf 2735
5595b528
DW
2736 if (end < start) {
2737 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2738 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2739 dmi_get_system_info(DMI_BIOS_VENDOR),
2740 dmi_get_system_info(DMI_BIOS_VERSION),
2741 dmi_get_system_info(DMI_PRODUCT_VERSION));
d66ce54b 2742 return -EIO;
5595b528
DW
2743 }
2744
2ff729f5
DW
2745 if (end >> agaw_to_width(domain->agaw)) {
2746 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2747 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2748 agaw_to_width(domain->agaw),
2749 dmi_get_system_info(DMI_BIOS_VENDOR),
2750 dmi_get_system_info(DMI_BIOS_VERSION),
2751 dmi_get_system_info(DMI_PRODUCT_VERSION));
d66ce54b 2752 return -EIO;
2ff729f5 2753 }
19943b0e 2754
d66ce54b
JR
2755 return iommu_domain_identity_map(domain, start, end);
2756}
ba395927 2757
d66ce54b
JR
2758static int iommu_prepare_identity_map(struct device *dev,
2759 unsigned long long start,
2760 unsigned long long end)
2761{
2762 struct dmar_domain *domain;
2763 int ret;
2764
2765 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
2766 if (!domain)
2767 return -ENOMEM;
2768
2769 ret = domain_prepare_identity_map(dev, domain, start, end);
2770 if (ret)
2771 domain_exit(domain);
b213203e 2772
ba395927 2773 return ret;
ba395927
KA
2774}
2775
2776static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
0b9d9753 2777 struct device *dev)
ba395927 2778{
0b9d9753 2779 if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
ba395927 2780 return 0;
0b9d9753
DW
2781 return iommu_prepare_identity_map(dev, rmrr->base_address,
2782 rmrr->end_address);
ba395927
KA
2783}
2784
d3f13810 2785#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
49a0429e
KA
2786static inline void iommu_prepare_isa(void)
2787{
2788 struct pci_dev *pdev;
2789 int ret;
2790
2791 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2792 if (!pdev)
2793 return;
2794
9f10e5bf 2795 pr_info("Prepare 0-16MiB unity mapping for LPC\n");
0b9d9753 2796 ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1);
49a0429e
KA
2797
2798 if (ret)
9f10e5bf 2799 pr_err("Failed to create 0-16MiB identity map - floppy might not work\n");
49a0429e 2800
9b27e82d 2801 pci_dev_put(pdev);
49a0429e
KA
2802}
2803#else
2804static inline void iommu_prepare_isa(void)
2805{
2806 return;
2807}
d3f13810 2808#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
49a0429e 2809
2c2e2c38 2810static int md_domain_init(struct dmar_domain *domain, int guest_width);
c7ab48d2 2811
071e1374 2812static int __init si_domain_init(int hw)
2c2e2c38 2813{
e083ea5b 2814 int nid, ret;
2c2e2c38 2815
ab8dfe25 2816 si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY);
2c2e2c38
FY
2817 if (!si_domain)
2818 return -EFAULT;
2819
2c2e2c38
FY
2820 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2821 domain_exit(si_domain);
2822 return -EFAULT;
2823 }
2824
0dc79715 2825 pr_debug("Identity mapping domain allocated\n");
2c2e2c38 2826
19943b0e
DW
2827 if (hw)
2828 return 0;
2829
c7ab48d2 2830 for_each_online_node(nid) {
5dfe8660
TH
2831 unsigned long start_pfn, end_pfn;
2832 int i;
2833
2834 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2835 ret = iommu_domain_identity_map(si_domain,
2836 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2837 if (ret)
2838 return ret;
2839 }
c7ab48d2
DW
2840 }
2841
2c2e2c38
FY
2842 return 0;
2843}
2844
9b226624 2845static int identity_mapping(struct device *dev)
2c2e2c38
FY
2846{
2847 struct device_domain_info *info;
2848
2849 if (likely(!iommu_identity_mapping))
2850 return 0;
2851
9b226624 2852 info = dev->archdata.iommu;
cb452a40
MT
2853 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2854 return (info->domain == si_domain);
2c2e2c38 2855
2c2e2c38
FY
2856 return 0;
2857}
2858
28ccce0d 2859static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev)
2c2e2c38 2860{
0ac72664 2861 struct dmar_domain *ndomain;
5a8f40e8 2862 struct intel_iommu *iommu;
156baca8 2863 u8 bus, devfn;
2c2e2c38 2864
5913c9bf 2865 iommu = device_to_iommu(dev, &bus, &devfn);
5a8f40e8
DW
2866 if (!iommu)
2867 return -ENODEV;
2868
5db31569 2869 ndomain = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
0ac72664
DW
2870 if (ndomain != domain)
2871 return -EBUSY;
2c2e2c38
FY
2872
2873 return 0;
2874}
2875
0b9d9753 2876static bool device_has_rmrr(struct device *dev)
ea2447f7
TM
2877{
2878 struct dmar_rmrr_unit *rmrr;
832bd858 2879 struct device *tmp;
ea2447f7
TM
2880 int i;
2881
0e242612 2882 rcu_read_lock();
ea2447f7 2883 for_each_rmrr_units(rmrr) {
b683b230
JL
2884 /*
2885 * Return TRUE if this RMRR contains the device that
2886 * is passed in.
2887 */
2888 for_each_active_dev_scope(rmrr->devices,
2889 rmrr->devices_cnt, i, tmp)
0b9d9753 2890 if (tmp == dev) {
0e242612 2891 rcu_read_unlock();
ea2447f7 2892 return true;
b683b230 2893 }
ea2447f7 2894 }
0e242612 2895 rcu_read_unlock();
ea2447f7
TM
2896 return false;
2897}
2898
c875d2c1
AW
2899/*
2900 * There are a couple cases where we need to restrict the functionality of
2901 * devices associated with RMRRs. The first is when evaluating a device for
2902 * identity mapping because problems exist when devices are moved in and out
2903 * of domains and their respective RMRR information is lost. This means that
2904 * a device with associated RMRRs will never be in a "passthrough" domain.
2905 * The second is use of the device through the IOMMU API. This interface
2906 * expects to have full control of the IOVA space for the device. We cannot
2907 * satisfy both the requirement that RMRR access is maintained and have an
2908 * unencumbered IOVA space. We also have no ability to quiesce the device's
2909 * use of the RMRR space or even inform the IOMMU API user of the restriction.
2910 * We therefore prevent devices associated with an RMRR from participating in
2911 * the IOMMU API, which eliminates them from device assignment.
2912 *
2913 * In both cases we assume that PCI USB devices with RMRRs have them largely
2914 * for historical reasons and that the RMRR space is not actively used post
2915 * boot. This exclusion may change if vendors begin to abuse it.
18436afd
DW
2916 *
2917 * The same exception is made for graphics devices, with the requirement that
2918 * any use of the RMRR regions will be torn down before assigning the device
2919 * to a guest.
c875d2c1
AW
2920 */
2921static bool device_is_rmrr_locked(struct device *dev)
2922{
2923 if (!device_has_rmrr(dev))
2924 return false;
2925
2926 if (dev_is_pci(dev)) {
2927 struct pci_dev *pdev = to_pci_dev(dev);
2928
18436afd 2929 if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
c875d2c1
AW
2930 return false;
2931 }
2932
2933 return true;
2934}
2935
3bdb2591 2936static int iommu_should_identity_map(struct device *dev, int startup)
6941af28 2937{
3bdb2591
DW
2938 if (dev_is_pci(dev)) {
2939 struct pci_dev *pdev = to_pci_dev(dev);
ea2447f7 2940
c875d2c1 2941 if (device_is_rmrr_locked(dev))
3bdb2591 2942 return 0;
e0fc7e0b 2943
89a6079d
LB
2944 /*
2945 * Prevent any device marked as untrusted from getting
2946 * placed into the statically identity mapping domain.
2947 */
2948 if (pdev->untrusted)
2949 return 0;
2950
3bdb2591
DW
2951 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2952 return 1;
e0fc7e0b 2953
3bdb2591
DW
2954 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2955 return 1;
6941af28 2956
3bdb2591 2957 if (!(iommu_identity_mapping & IDENTMAP_ALL))
3dfc813d 2958 return 0;
3bdb2591
DW
2959
2960 /*
2961 * We want to start off with all devices in the 1:1 domain, and
2962 * take them out later if we find they can't access all of memory.
2963 *
2964 * However, we can't do this for PCI devices behind bridges,
2965 * because all PCI devices behind the same bridge will end up
2966 * with the same source-id on their transactions.
2967 *
2968 * Practically speaking, we can't change things around for these
2969 * devices at run-time, because we can't be sure there'll be no
2970 * DMA transactions in flight for any of their siblings.
2971 *
2972 * So PCI devices (unless they're on the root bus) as well as
2973 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2974 * the 1:1 domain, just in _case_ one of their siblings turns out
2975 * not to be able to map all of memory.
2976 */
2977 if (!pci_is_pcie(pdev)) {
2978 if (!pci_is_root_bus(pdev->bus))
2979 return 0;
2980 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2981 return 0;
2982 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
3dfc813d 2983 return 0;
3bdb2591
DW
2984 } else {
2985 if (device_has_rmrr(dev))
2986 return 0;
2987 }
3dfc813d 2988
3bdb2591 2989 /*
3dfc813d 2990 * At boot time, we don't yet know if devices will be 64-bit capable.
3bdb2591 2991 * Assume that they will — if they turn out not to be, then we can
3dfc813d
DW
2992 * take them out of the 1:1 domain later.
2993 */
8fcc5372
CW
2994 if (!startup) {
2995 /*
2996 * If the device's dma_mask is less than the system's memory
2997 * size then this is not a candidate for identity mapping.
2998 */
3bdb2591 2999 u64 dma_mask = *dev->dma_mask;
8fcc5372 3000
3bdb2591
DW
3001 if (dev->coherent_dma_mask &&
3002 dev->coherent_dma_mask < dma_mask)
3003 dma_mask = dev->coherent_dma_mask;
8fcc5372 3004
3bdb2591 3005 return dma_mask >= dma_get_required_mask(dev);
8fcc5372 3006 }
6941af28
DW
3007
3008 return 1;
3009}
3010
cf04eee8
DW
3011static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw)
3012{
3013 int ret;
3014
3015 if (!iommu_should_identity_map(dev, 1))
3016 return 0;
3017
28ccce0d 3018 ret = domain_add_dev_info(si_domain, dev);
cf04eee8 3019 if (!ret)
932a6523
BH
3020 dev_info(dev, "%s identity mapping\n",
3021 hw ? "Hardware" : "Software");
cf04eee8
DW
3022 else if (ret == -ENODEV)
3023 /* device not associated with an iommu */
3024 ret = 0;
3025
3026 return ret;
3027}
3028
3029
071e1374 3030static int __init iommu_prepare_static_identity_mapping(int hw)
2c2e2c38 3031{
2c2e2c38 3032 struct pci_dev *pdev = NULL;
cf04eee8
DW
3033 struct dmar_drhd_unit *drhd;
3034 struct intel_iommu *iommu;
3035 struct device *dev;
3036 int i;
3037 int ret = 0;
2c2e2c38 3038
2c2e2c38 3039 for_each_pci_dev(pdev) {
cf04eee8
DW
3040 ret = dev_prepare_static_identity_mapping(&pdev->dev, hw);
3041 if (ret)
3042 return ret;
3043 }
3044
3045 for_each_active_iommu(iommu, drhd)
3046 for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
3047 struct acpi_device_physical_node *pn;
3048 struct acpi_device *adev;
3049
3050 if (dev->bus != &acpi_bus_type)
3051 continue;
86080ccc 3052
cf04eee8
DW
3053 adev= to_acpi_device(dev);
3054 mutex_lock(&adev->physical_node_lock);
3055 list_for_each_entry(pn, &adev->physical_node_list, node) {
3056 ret = dev_prepare_static_identity_mapping(pn->dev, hw);
3057 if (ret)
3058 break;
eae460b6 3059 }
cf04eee8
DW
3060 mutex_unlock(&adev->physical_node_lock);
3061 if (ret)
3062 return ret;
62edf5dc 3063 }
2c2e2c38
FY
3064
3065 return 0;
3066}
3067
ffebeb46
JL
3068static void intel_iommu_init_qi(struct intel_iommu *iommu)
3069{
3070 /*
3071 * Start from the sane iommu hardware state.
3072 * If the queued invalidation is already initialized by us
3073 * (for example, while enabling interrupt-remapping) then
3074 * we got the things already rolling from a sane state.
3075 */
3076 if (!iommu->qi) {
3077 /*
3078 * Clear any previous faults.
3079 */
3080 dmar_fault(-1, iommu);
3081 /*
3082 * Disable queued invalidation if supported and already enabled
3083 * before OS handover.
3084 */
3085 dmar_disable_qi(iommu);
3086 }
3087
3088 if (dmar_enable_qi(iommu)) {
3089 /*
3090 * Queued Invalidate not enabled, use Register Based Invalidate
3091 */
3092 iommu->flush.flush_context = __iommu_flush_context;
3093 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
9f10e5bf 3094 pr_info("%s: Using Register based invalidation\n",
ffebeb46
JL
3095 iommu->name);
3096 } else {
3097 iommu->flush.flush_context = qi_flush_context;
3098 iommu->flush.flush_iotlb = qi_flush_iotlb;
9f10e5bf 3099 pr_info("%s: Using Queued invalidation\n", iommu->name);
ffebeb46
JL
3100 }
3101}
3102
091d42e4 3103static int copy_context_table(struct intel_iommu *iommu,
dfddb969 3104 struct root_entry *old_re,
091d42e4
JR
3105 struct context_entry **tbl,
3106 int bus, bool ext)
3107{
dbcd861f 3108 int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
543c8dcf 3109 struct context_entry *new_ce = NULL, ce;
dfddb969 3110 struct context_entry *old_ce = NULL;
543c8dcf 3111 struct root_entry re;
091d42e4
JR
3112 phys_addr_t old_ce_phys;
3113
3114 tbl_idx = ext ? bus * 2 : bus;
dfddb969 3115 memcpy(&re, old_re, sizeof(re));
091d42e4
JR
3116
3117 for (devfn = 0; devfn < 256; devfn++) {
3118 /* First calculate the correct index */
3119 idx = (ext ? devfn * 2 : devfn) % 256;
3120
3121 if (idx == 0) {
3122 /* First save what we may have and clean up */
3123 if (new_ce) {
3124 tbl[tbl_idx] = new_ce;
3125 __iommu_flush_cache(iommu, new_ce,
3126 VTD_PAGE_SIZE);
3127 pos = 1;
3128 }
3129
3130 if (old_ce)
829383e1 3131 memunmap(old_ce);
091d42e4
JR
3132
3133 ret = 0;
3134 if (devfn < 0x80)
543c8dcf 3135 old_ce_phys = root_entry_lctp(&re);
091d42e4 3136 else
543c8dcf 3137 old_ce_phys = root_entry_uctp(&re);
091d42e4
JR
3138
3139 if (!old_ce_phys) {
3140 if (ext && devfn == 0) {
3141 /* No LCTP, try UCTP */
3142 devfn = 0x7f;
3143 continue;
3144 } else {
3145 goto out;
3146 }
3147 }
3148
3149 ret = -ENOMEM;
dfddb969
DW
3150 old_ce = memremap(old_ce_phys, PAGE_SIZE,
3151 MEMREMAP_WB);
091d42e4
JR
3152 if (!old_ce)
3153 goto out;
3154
3155 new_ce = alloc_pgtable_page(iommu->node);
3156 if (!new_ce)
3157 goto out_unmap;
3158
3159 ret = 0;
3160 }
3161
3162 /* Now copy the context entry */
dfddb969 3163 memcpy(&ce, old_ce + idx, sizeof(ce));
091d42e4 3164
cf484d0e 3165 if (!__context_present(&ce))
091d42e4
JR
3166 continue;
3167
dbcd861f
JR
3168 did = context_domain_id(&ce);
3169 if (did >= 0 && did < cap_ndoms(iommu->cap))
3170 set_bit(did, iommu->domain_ids);
3171
cf484d0e
JR
3172 /*
3173 * We need a marker for copied context entries. This
3174 * marker needs to work for the old format as well as
3175 * for extended context entries.
3176 *
3177 * Bit 67 of the context entry is used. In the old
3178 * format this bit is available to software, in the
3179 * extended format it is the PGE bit, but PGE is ignored
3180 * by HW if PASIDs are disabled (and thus still
3181 * available).
3182 *
3183 * So disable PASIDs first and then mark the entry
3184 * copied. This means that we don't copy PASID
3185 * translations from the old kernel, but this is fine as
3186 * faults there are not fatal.
3187 */
3188 context_clear_pasid_enable(&ce);
3189 context_set_copied(&ce);
3190
091d42e4
JR
3191 new_ce[idx] = ce;
3192 }
3193
3194 tbl[tbl_idx + pos] = new_ce;
3195
3196 __iommu_flush_cache(iommu, new_ce, VTD_PAGE_SIZE);
3197
3198out_unmap:
dfddb969 3199 memunmap(old_ce);
091d42e4
JR
3200
3201out:
3202 return ret;
3203}
3204
3205static int copy_translation_tables(struct intel_iommu *iommu)
3206{
3207 struct context_entry **ctxt_tbls;
dfddb969 3208 struct root_entry *old_rt;
091d42e4
JR
3209 phys_addr_t old_rt_phys;
3210 int ctxt_table_entries;
3211 unsigned long flags;
3212 u64 rtaddr_reg;
3213 int bus, ret;
c3361f2f 3214 bool new_ext, ext;
091d42e4
JR
3215
3216 rtaddr_reg = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
3217 ext = !!(rtaddr_reg & DMA_RTADDR_RTT);
c3361f2f
JR
3218 new_ext = !!ecap_ecs(iommu->ecap);
3219
3220 /*
3221 * The RTT bit can only be changed when translation is disabled,
3222 * but disabling translation means to open a window for data
3223 * corruption. So bail out and don't copy anything if we would
3224 * have to change the bit.
3225 */
3226 if (new_ext != ext)
3227 return -EINVAL;
091d42e4
JR
3228
3229 old_rt_phys = rtaddr_reg & VTD_PAGE_MASK;
3230 if (!old_rt_phys)
3231 return -EINVAL;
3232
dfddb969 3233 old_rt = memremap(old_rt_phys, PAGE_SIZE, MEMREMAP_WB);
091d42e4
JR
3234 if (!old_rt)
3235 return -ENOMEM;
3236
3237 /* This is too big for the stack - allocate it from slab */
3238 ctxt_table_entries = ext ? 512 : 256;
3239 ret = -ENOMEM;
6396bb22 3240 ctxt_tbls = kcalloc(ctxt_table_entries, sizeof(void *), GFP_KERNEL);
091d42e4
JR
3241 if (!ctxt_tbls)
3242 goto out_unmap;
3243
3244 for (bus = 0; bus < 256; bus++) {
3245 ret = copy_context_table(iommu, &old_rt[bus],
3246 ctxt_tbls, bus, ext);
3247 if (ret) {
3248 pr_err("%s: Failed to copy context table for bus %d\n",
3249 iommu->name, bus);
3250 continue;
3251 }
3252 }
3253
3254 spin_lock_irqsave(&iommu->lock, flags);
3255
3256 /* Context tables are copied, now write them to the root_entry table */
3257 for (bus = 0; bus < 256; bus++) {
3258 int idx = ext ? bus * 2 : bus;
3259 u64 val;
3260
3261 if (ctxt_tbls[idx]) {
3262 val = virt_to_phys(ctxt_tbls[idx]) | 1;
3263 iommu->root_entry[bus].lo = val;
3264 }
3265
3266 if (!ext || !ctxt_tbls[idx + 1])
3267 continue;
3268
3269 val = virt_to_phys(ctxt_tbls[idx + 1]) | 1;
3270 iommu->root_entry[bus].hi = val;
3271 }
3272
3273 spin_unlock_irqrestore(&iommu->lock, flags);
3274
3275 kfree(ctxt_tbls);
3276
3277 __iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
3278
3279 ret = 0;
3280
3281out_unmap:
dfddb969 3282 memunmap(old_rt);
091d42e4
JR
3283
3284 return ret;
3285}
3286
b779260b 3287static int __init init_dmars(void)
ba395927
KA
3288{
3289 struct dmar_drhd_unit *drhd;
3290 struct dmar_rmrr_unit *rmrr;
a87f4918 3291 bool copied_tables = false;
832bd858 3292 struct device *dev;
ba395927 3293 struct intel_iommu *iommu;
13cf0174 3294 int i, ret;
2c2e2c38 3295
ba395927
KA
3296 /*
3297 * for each drhd
3298 * allocate root
3299 * initialize and program root entry to not present
3300 * endfor
3301 */
3302 for_each_drhd_unit(drhd) {
5e0d2a6f 3303 /*
3304 * lock not needed as this is only incremented in the single
3305 * threaded kernel __init code path all other access are read
3306 * only
3307 */
78d8e704 3308 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) {
1b198bb0
MT
3309 g_num_of_iommus++;
3310 continue;
3311 }
9f10e5bf 3312 pr_err_once("Exceeded %d IOMMUs\n", DMAR_UNITS_SUPPORTED);
5e0d2a6f 3313 }
3314
ffebeb46
JL
3315 /* Preallocate enough resources for IOMMU hot-addition */
3316 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED)
3317 g_num_of_iommus = DMAR_UNITS_SUPPORTED;
3318
d9630fe9
WH
3319 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
3320 GFP_KERNEL);
3321 if (!g_iommus) {
9f10e5bf 3322 pr_err("Allocating global iommu array failed\n");
d9630fe9
WH
3323 ret = -ENOMEM;
3324 goto error;
3325 }
3326
7c919779 3327 for_each_active_iommu(iommu, drhd) {
56283174
LB
3328 /*
3329 * Find the max pasid size of all IOMMU's in the system.
3330 * We need to ensure the system pasid table is no bigger
3331 * than the smallest supported.
3332 */
765b6a98 3333 if (pasid_supported(iommu)) {
56283174
LB
3334 u32 temp = 2 << ecap_pss(iommu->ecap);
3335
3336 intel_pasid_max_id = min_t(u32, temp,
3337 intel_pasid_max_id);
3338 }
3339
d9630fe9 3340 g_iommus[iommu->seq_id] = iommu;
ba395927 3341
b63d80d1
JR
3342 intel_iommu_init_qi(iommu);
3343
e61d98d8
SS
3344 ret = iommu_init_domains(iommu);
3345 if (ret)
989d51fc 3346 goto free_iommu;
e61d98d8 3347
4158c2ec
JR
3348 init_translation_status(iommu);
3349
091d42e4
JR
3350 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
3351 iommu_disable_translation(iommu);
3352 clear_translation_pre_enabled(iommu);
3353 pr_warn("Translation was enabled for %s but we are not in kdump mode\n",
3354 iommu->name);
3355 }
4158c2ec 3356
ba395927
KA
3357 /*
3358 * TBD:
3359 * we could share the same root & context tables
25985edc 3360 * among all IOMMU's. Need to Split it later.
ba395927
KA
3361 */
3362 ret = iommu_alloc_root_entry(iommu);
ffebeb46 3363 if (ret)
989d51fc 3364 goto free_iommu;
5f0a7f76 3365
091d42e4
JR
3366 if (translation_pre_enabled(iommu)) {
3367 pr_info("Translation already enabled - trying to copy translation structures\n");
3368
3369 ret = copy_translation_tables(iommu);
3370 if (ret) {
3371 /*
3372 * We found the IOMMU with translation
3373 * enabled - but failed to copy over the
3374 * old root-entry table. Try to proceed
3375 * by disabling translation now and
3376 * allocating a clean root-entry table.
3377 * This might cause DMAR faults, but
3378 * probably the dump will still succeed.
3379 */
3380 pr_err("Failed to copy translation tables from previous kernel for %s\n",
3381 iommu->name);
3382 iommu_disable_translation(iommu);
3383 clear_translation_pre_enabled(iommu);
3384 } else {
3385 pr_info("Copied translation tables from previous kernel for %s\n",
3386 iommu->name);
a87f4918 3387 copied_tables = true;
091d42e4
JR
3388 }
3389 }
3390
4ed0d3e6 3391 if (!ecap_pass_through(iommu->ecap))
19943b0e 3392 hw_pass_through = 0;
8a94ade4 3393#ifdef CONFIG_INTEL_IOMMU_SVM
765b6a98 3394 if (pasid_supported(iommu))
d9737953 3395 intel_svm_init(iommu);
8a94ade4 3396#endif
ba395927
KA
3397 }
3398
a4c34ff1
JR
3399 /*
3400 * Now that qi is enabled on all iommus, set the root entry and flush
3401 * caches. This is required on some Intel X58 chipsets, otherwise the
3402 * flush_context function will loop forever and the boot hangs.
3403 */
3404 for_each_active_iommu(iommu, drhd) {
3405 iommu_flush_write_buffer(iommu);
3406 iommu_set_root_entry(iommu);
3407 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
3408 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3409 }
3410
19943b0e 3411 if (iommu_pass_through)
e0fc7e0b
DW
3412 iommu_identity_mapping |= IDENTMAP_ALL;
3413
d3f13810 3414#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
e0fc7e0b 3415 iommu_identity_mapping |= IDENTMAP_GFX;
19943b0e 3416#endif
e0fc7e0b 3417
21e722c4
AR
3418 check_tylersburg_isoch();
3419
86080ccc
JR
3420 if (iommu_identity_mapping) {
3421 ret = si_domain_init(hw_pass_through);
3422 if (ret)
3423 goto free_iommu;
3424 }
3425
e0fc7e0b 3426
a87f4918
JR
3427 /*
3428 * If we copied translations from a previous kernel in the kdump
3429 * case, we can not assign the devices to domains now, as that
3430 * would eliminate the old mappings. So skip this part and defer
3431 * the assignment to device driver initialization time.
3432 */
3433 if (copied_tables)
3434 goto domains_done;
3435
ba395927 3436 /*
19943b0e
DW
3437 * If pass through is not set or not enabled, setup context entries for
3438 * identity mappings for rmrr, gfx, and isa and may fall back to static
3439 * identity mapping if iommu_identity_mapping is set.
ba395927 3440 */
19943b0e
DW
3441 if (iommu_identity_mapping) {
3442 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
4ed0d3e6 3443 if (ret) {
9f10e5bf 3444 pr_crit("Failed to setup IOMMU pass-through\n");
989d51fc 3445 goto free_iommu;
ba395927
KA
3446 }
3447 }
ba395927 3448 /*
19943b0e
DW
3449 * For each rmrr
3450 * for each dev attached to rmrr
3451 * do
3452 * locate drhd for dev, alloc domain for dev
3453 * allocate free domain
3454 * allocate page table entries for rmrr
3455 * if context not allocated for bus
3456 * allocate and init context
3457 * set present in root table for this bus
3458 * init context with domain, translation etc
3459 * endfor
3460 * endfor
ba395927 3461 */
9f10e5bf 3462 pr_info("Setting RMRR:\n");
19943b0e 3463 for_each_rmrr_units(rmrr) {
b683b230
JL
3464 /* some BIOS lists non-exist devices in DMAR table. */
3465 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
832bd858 3466 i, dev) {
0b9d9753 3467 ret = iommu_prepare_rmrr_dev(rmrr, dev);
19943b0e 3468 if (ret)
9f10e5bf 3469 pr_err("Mapping reserved region failed\n");
ba395927 3470 }
4ed0d3e6 3471 }
49a0429e 3472
19943b0e
DW
3473 iommu_prepare_isa();
3474
a87f4918
JR
3475domains_done:
3476
ba395927
KA
3477 /*
3478 * for each drhd
3479 * enable fault log
3480 * global invalidate context cache
3481 * global invalidate iotlb
3482 * enable translation
3483 */
7c919779 3484 for_each_iommu(iommu, drhd) {
51a63e67
JC
3485 if (drhd->ignored) {
3486 /*
3487 * we always have to disable PMRs or DMA may fail on
3488 * this device
3489 */
3490 if (force_on)
7c919779 3491 iommu_disable_protect_mem_regions(iommu);
ba395927 3492 continue;
51a63e67 3493 }
ba395927
KA
3494
3495 iommu_flush_write_buffer(iommu);
3496
a222a7f0 3497#ifdef CONFIG_INTEL_IOMMU_SVM
765b6a98 3498 if (pasid_supported(iommu) && ecap_prs(iommu->ecap)) {
a222a7f0
DW
3499 ret = intel_svm_enable_prq(iommu);
3500 if (ret)
3501 goto free_iommu;
3502 }
3503#endif
3460a6d9
KA
3504 ret = dmar_set_interrupt(iommu);
3505 if (ret)
989d51fc 3506 goto free_iommu;
3460a6d9 3507
8939ddf6
JR
3508 if (!translation_pre_enabled(iommu))
3509 iommu_enable_translation(iommu);
3510
b94996c9 3511 iommu_disable_protect_mem_regions(iommu);
ba395927
KA
3512 }
3513
3514 return 0;
989d51fc
JL
3515
3516free_iommu:
ffebeb46
JL
3517 for_each_active_iommu(iommu, drhd) {
3518 disable_dmar_iommu(iommu);
a868e6b7 3519 free_dmar_iommu(iommu);
ffebeb46 3520 }
13cf0174 3521
d9630fe9 3522 kfree(g_iommus);
13cf0174 3523
989d51fc 3524error:
ba395927
KA
3525 return ret;
3526}
3527
5a5e02a6 3528/* This takes a number of _MM_ pages, not VTD pages */
2aac6304 3529static unsigned long intel_alloc_iova(struct device *dev,
875764de
DW
3530 struct dmar_domain *domain,
3531 unsigned long nrpages, uint64_t dma_mask)
ba395927 3532{
e083ea5b 3533 unsigned long iova_pfn;
ba395927 3534
875764de
DW
3535 /* Restrict dma_mask to the width that the iommu can handle */
3536 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
8f6429c7
RM
3537 /* Ensure we reserve the whole size-aligned region */
3538 nrpages = __roundup_pow_of_two(nrpages);
875764de
DW
3539
3540 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
ba395927
KA
3541 /*
3542 * First try to allocate an io virtual address in
284901a9 3543 * DMA_BIT_MASK(32) and if that fails then try allocating
3609801e 3544 * from higher range
ba395927 3545 */
22e2f9fa 3546 iova_pfn = alloc_iova_fast(&domain->iovad, nrpages,
538d5b33 3547 IOVA_PFN(DMA_BIT_MASK(32)), false);
22e2f9fa
OP
3548 if (iova_pfn)
3549 return iova_pfn;
875764de 3550 }
538d5b33
TN
3551 iova_pfn = alloc_iova_fast(&domain->iovad, nrpages,
3552 IOVA_PFN(dma_mask), true);
22e2f9fa 3553 if (unlikely(!iova_pfn)) {
932a6523 3554 dev_err(dev, "Allocating %ld-page iova failed", nrpages);
2aac6304 3555 return 0;
f76aec76
KA
3556 }
3557
22e2f9fa 3558 return iova_pfn;
f76aec76
KA
3559}
3560
9ddbfb42 3561struct dmar_domain *get_valid_domain_for_dev(struct device *dev)
f76aec76 3562{
1c5ebba9 3563 struct dmar_domain *domain, *tmp;
b1ce5b79 3564 struct dmar_rmrr_unit *rmrr;
b1ce5b79
JR
3565 struct device *i_dev;
3566 int i, ret;
f76aec76 3567
1c5ebba9
JR
3568 domain = find_domain(dev);
3569 if (domain)
3570 goto out;
3571
3572 domain = find_or_alloc_domain(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
3573 if (!domain)
3574 goto out;
ba395927 3575
b1ce5b79
JR
3576 /* We have a new domain - setup possible RMRRs for the device */
3577 rcu_read_lock();
3578 for_each_rmrr_units(rmrr) {
3579 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
3580 i, i_dev) {
3581 if (i_dev != dev)
3582 continue;
3583
3584 ret = domain_prepare_identity_map(dev, domain,
3585 rmrr->base_address,
3586 rmrr->end_address);
3587 if (ret)
3588 dev_err(dev, "Mapping reserved region failed\n");
3589 }
3590 }
3591 rcu_read_unlock();
3592
1c5ebba9
JR
3593 tmp = set_domain_for_dev(dev, domain);
3594 if (!tmp || domain != tmp) {
3595 domain_exit(domain);
3596 domain = tmp;
3597 }
3598
3599out:
3600
3601 if (!domain)
932a6523 3602 dev_err(dev, "Allocating domain failed\n");
1c5ebba9
JR
3603
3604
f76aec76
KA
3605 return domain;
3606}
3607
ecb509ec 3608/* Check if the dev needs to go through non-identity map and unmap process.*/
73676832 3609static int iommu_no_mapping(struct device *dev)
2c2e2c38
FY
3610{
3611 int found;
3612
3d89194a 3613 if (iommu_dummy(dev))
1e4c64c4
DW
3614 return 1;
3615
2c2e2c38 3616 if (!iommu_identity_mapping)
1e4c64c4 3617 return 0;
2c2e2c38 3618
9b226624 3619 found = identity_mapping(dev);
2c2e2c38 3620 if (found) {
ecb509ec 3621 if (iommu_should_identity_map(dev, 0))
2c2e2c38
FY
3622 return 1;
3623 else {
3624 /*
3625 * 32 bit DMA is removed from si_domain and fall back
3626 * to non-identity mapping.
3627 */
71753239 3628 dmar_remove_one_dev_info(dev);
932a6523 3629 dev_info(dev, "32bit DMA uses non-identity mapping\n");
2c2e2c38
FY
3630 return 0;
3631 }
3632 } else {
3633 /*
3634 * In case of a detached 64 bit DMA device from vm, the device
3635 * is put into si_domain for identity mapping.
3636 */
ecb509ec 3637 if (iommu_should_identity_map(dev, 0)) {
2c2e2c38 3638 int ret;
28ccce0d 3639 ret = domain_add_dev_info(si_domain, dev);
2c2e2c38 3640 if (!ret) {
932a6523 3641 dev_info(dev, "64bit DMA uses identity mapping\n");
2c2e2c38
FY
3642 return 1;
3643 }
3644 }
3645 }
3646
1e4c64c4 3647 return 0;
2c2e2c38
FY
3648}
3649
21d5d27c
LG
3650static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
3651 size_t size, int dir, u64 dma_mask)
f76aec76 3652{
f76aec76 3653 struct dmar_domain *domain;
5b6985ce 3654 phys_addr_t start_paddr;
2aac6304 3655 unsigned long iova_pfn;
f76aec76 3656 int prot = 0;
6865f0d1 3657 int ret;
8c11e798 3658 struct intel_iommu *iommu;
33041ec0 3659 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
f76aec76
KA
3660
3661 BUG_ON(dir == DMA_NONE);
2c2e2c38 3662
5040a918 3663 if (iommu_no_mapping(dev))
6865f0d1 3664 return paddr;
f76aec76 3665
5040a918 3666 domain = get_valid_domain_for_dev(dev);
f76aec76 3667 if (!domain)
524a669b 3668 return DMA_MAPPING_ERROR;
f76aec76 3669
8c11e798 3670 iommu = domain_get_iommu(domain);
88cb6a74 3671 size = aligned_nrpages(paddr, size);
f76aec76 3672
2aac6304
OP
3673 iova_pfn = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask);
3674 if (!iova_pfn)
f76aec76
KA
3675 goto error;
3676
ba395927
KA
3677 /*
3678 * Check if DMAR supports zero-length reads on write only
3679 * mappings..
3680 */
3681 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
8c11e798 3682 !cap_zlr(iommu->cap))
ba395927
KA
3683 prot |= DMA_PTE_READ;
3684 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3685 prot |= DMA_PTE_WRITE;
3686 /*
6865f0d1 3687 * paddr - (paddr + size) might be partial page, we should map the whole
ba395927 3688 * page. Note: if two part of one page are separately mapped, we
6865f0d1 3689 * might have two guest_addr mapping to the same host paddr, but this
ba395927
KA
3690 * is not a big problem
3691 */
2aac6304 3692 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova_pfn),
33041ec0 3693 mm_to_dma_pfn(paddr_pfn), size, prot);
ba395927
KA
3694 if (ret)
3695 goto error;
3696
2aac6304 3697 start_paddr = (phys_addr_t)iova_pfn << PAGE_SHIFT;
03d6a246
DW
3698 start_paddr += paddr & ~PAGE_MASK;
3699 return start_paddr;
ba395927 3700
ba395927 3701error:
2aac6304 3702 if (iova_pfn)
22e2f9fa 3703 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(size));
932a6523
BH
3704 dev_err(dev, "Device request: %zx@%llx dir %d --- failed\n",
3705 size, (unsigned long long)paddr, dir);
524a669b 3706 return DMA_MAPPING_ERROR;
ba395927
KA
3707}
3708
ffbbef5c
FT
3709static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3710 unsigned long offset, size_t size,
3711 enum dma_data_direction dir,
00085f1e 3712 unsigned long attrs)
bb9e6d65 3713{
21d5d27c
LG
3714 return __intel_map_single(dev, page_to_phys(page) + offset, size,
3715 dir, *dev->dma_mask);
3716}
3717
3718static dma_addr_t intel_map_resource(struct device *dev, phys_addr_t phys_addr,
3719 size_t size, enum dma_data_direction dir,
3720 unsigned long attrs)
3721{
3722 return __intel_map_single(dev, phys_addr, size, dir, *dev->dma_mask);
bb9e6d65
FT
3723}
3724
769530e4 3725static void intel_unmap(struct device *dev, dma_addr_t dev_addr, size_t size)
ba395927 3726{
f76aec76 3727 struct dmar_domain *domain;
d794dc9b 3728 unsigned long start_pfn, last_pfn;
769530e4 3729 unsigned long nrpages;
2aac6304 3730 unsigned long iova_pfn;
8c11e798 3731 struct intel_iommu *iommu;
ea8ea460 3732 struct page *freelist;
ba395927 3733
73676832 3734 if (iommu_no_mapping(dev))
f76aec76 3735 return;
2c2e2c38 3736
1525a29a 3737 domain = find_domain(dev);
ba395927
KA
3738 BUG_ON(!domain);
3739
8c11e798
WH
3740 iommu = domain_get_iommu(domain);
3741
2aac6304 3742 iova_pfn = IOVA_PFN(dev_addr);
ba395927 3743
769530e4 3744 nrpages = aligned_nrpages(dev_addr, size);
2aac6304 3745 start_pfn = mm_to_dma_pfn(iova_pfn);
769530e4 3746 last_pfn = start_pfn + nrpages - 1;
ba395927 3747
932a6523 3748 dev_dbg(dev, "Device unmapping: pfn %lx-%lx\n", start_pfn, last_pfn);
ba395927 3749
ea8ea460 3750 freelist = domain_unmap(domain, start_pfn, last_pfn);
d794dc9b 3751
5e0d2a6f 3752 if (intel_iommu_strict) {
a1ddcbe9 3753 iommu_flush_iotlb_psi(iommu, domain, start_pfn,
769530e4 3754 nrpages, !freelist, 0);
5e0d2a6f 3755 /* free iova */
22e2f9fa 3756 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(nrpages));
ea8ea460 3757 dma_free_pagelist(freelist);
5e0d2a6f 3758 } else {
13cf0174
JR
3759 queue_iova(&domain->iovad, iova_pfn, nrpages,
3760 (unsigned long)freelist);
5e0d2a6f 3761 /*
3762 * queue up the release of the unmap to save the 1/6th of the
3763 * cpu used up by the iotlb flush operation...
3764 */
5e0d2a6f 3765 }
ba395927
KA
3766}
3767
d41a4adb
JL
3768static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3769 size_t size, enum dma_data_direction dir,
00085f1e 3770 unsigned long attrs)
d41a4adb 3771{
769530e4 3772 intel_unmap(dev, dev_addr, size);
d41a4adb
JL
3773}
3774
5040a918 3775static void *intel_alloc_coherent(struct device *dev, size_t size,
baa676fc 3776 dma_addr_t *dma_handle, gfp_t flags,
00085f1e 3777 unsigned long attrs)
ba395927 3778{
7ec916f8
CH
3779 struct page *page = NULL;
3780 int order;
ba395927 3781
7ec916f8
CH
3782 size = PAGE_ALIGN(size);
3783 order = get_order(size);
36746436 3784
7ec916f8
CH
3785 if (!iommu_no_mapping(dev))
3786 flags &= ~(GFP_DMA | GFP_DMA32);
3787 else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) {
3788 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
3789 flags |= GFP_DMA;
3790 else
3791 flags |= GFP_DMA32;
3792 }
3793
3794 if (gfpflags_allow_blocking(flags)) {
3795 unsigned int count = size >> PAGE_SHIFT;
3796
d834c5ab
MS
3797 page = dma_alloc_from_contiguous(dev, count, order,
3798 flags & __GFP_NOWARN);
7ec916f8
CH
3799 if (page && iommu_no_mapping(dev) &&
3800 page_to_phys(page) + size > dev->coherent_dma_mask) {
3801 dma_release_from_contiguous(dev, page, count);
3802 page = NULL;
3803 }
3804 }
3805
3806 if (!page)
3807 page = alloc_pages(flags, order);
3808 if (!page)
3809 return NULL;
3810 memset(page_address(page), 0, size);
3811
21d5d27c
LG
3812 *dma_handle = __intel_map_single(dev, page_to_phys(page), size,
3813 DMA_BIDIRECTIONAL,
3814 dev->coherent_dma_mask);
524a669b 3815 if (*dma_handle != DMA_MAPPING_ERROR)
7ec916f8
CH
3816 return page_address(page);
3817 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3818 __free_pages(page, order);
36746436 3819
ba395927
KA
3820 return NULL;
3821}
3822
5040a918 3823static void intel_free_coherent(struct device *dev, size_t size, void *vaddr,
00085f1e 3824 dma_addr_t dma_handle, unsigned long attrs)
ba395927 3825{
7ec916f8
CH
3826 int order;
3827 struct page *page = virt_to_page(vaddr);
3828
3829 size = PAGE_ALIGN(size);
3830 order = get_order(size);
3831
3832 intel_unmap(dev, dma_handle, size);
3833 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3834 __free_pages(page, order);
ba395927
KA
3835}
3836
5040a918 3837static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist,
d7ab5c46 3838 int nelems, enum dma_data_direction dir,
00085f1e 3839 unsigned long attrs)
ba395927 3840{
769530e4
OP
3841 dma_addr_t startaddr = sg_dma_address(sglist) & PAGE_MASK;
3842 unsigned long nrpages = 0;
3843 struct scatterlist *sg;
3844 int i;
3845
3846 for_each_sg(sglist, sg, nelems, i) {
3847 nrpages += aligned_nrpages(sg_dma_address(sg), sg_dma_len(sg));
3848 }
3849
3850 intel_unmap(dev, startaddr, nrpages << VTD_PAGE_SHIFT);
ba395927
KA
3851}
3852
ba395927 3853static int intel_nontranslate_map_sg(struct device *hddev,
c03ab37c 3854 struct scatterlist *sglist, int nelems, int dir)
ba395927
KA
3855{
3856 int i;
c03ab37c 3857 struct scatterlist *sg;
ba395927 3858
c03ab37c 3859 for_each_sg(sglist, sg, nelems, i) {
12d4d40e 3860 BUG_ON(!sg_page(sg));
29a90b70 3861 sg->dma_address = sg_phys(sg);
c03ab37c 3862 sg->dma_length = sg->length;
ba395927
KA
3863 }
3864 return nelems;
3865}
3866
5040a918 3867static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems,
00085f1e 3868 enum dma_data_direction dir, unsigned long attrs)
ba395927 3869{
ba395927 3870 int i;
ba395927 3871 struct dmar_domain *domain;
f76aec76
KA
3872 size_t size = 0;
3873 int prot = 0;
2aac6304 3874 unsigned long iova_pfn;
f76aec76 3875 int ret;
c03ab37c 3876 struct scatterlist *sg;
b536d24d 3877 unsigned long start_vpfn;
8c11e798 3878 struct intel_iommu *iommu;
ba395927
KA
3879
3880 BUG_ON(dir == DMA_NONE);
5040a918
DW
3881 if (iommu_no_mapping(dev))
3882 return intel_nontranslate_map_sg(dev, sglist, nelems, dir);
ba395927 3883
5040a918 3884 domain = get_valid_domain_for_dev(dev);
f76aec76
KA
3885 if (!domain)
3886 return 0;
3887
8c11e798
WH
3888 iommu = domain_get_iommu(domain);
3889
b536d24d 3890 for_each_sg(sglist, sg, nelems, i)
88cb6a74 3891 size += aligned_nrpages(sg->offset, sg->length);
f76aec76 3892
2aac6304 3893 iova_pfn = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size),
5040a918 3894 *dev->dma_mask);
2aac6304 3895 if (!iova_pfn) {
c03ab37c 3896 sglist->dma_length = 0;
f76aec76
KA
3897 return 0;
3898 }
3899
3900 /*
3901 * Check if DMAR supports zero-length reads on write only
3902 * mappings..
3903 */
3904 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
8c11e798 3905 !cap_zlr(iommu->cap))
f76aec76
KA
3906 prot |= DMA_PTE_READ;
3907 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3908 prot |= DMA_PTE_WRITE;
3909
2aac6304 3910 start_vpfn = mm_to_dma_pfn(iova_pfn);
e1605495 3911
f532959b 3912 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
e1605495 3913 if (unlikely(ret)) {
e1605495 3914 dma_pte_free_pagetable(domain, start_vpfn,
bc24c571
DD
3915 start_vpfn + size - 1,
3916 agaw_to_level(domain->agaw) + 1);
22e2f9fa 3917 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(size));
e1605495 3918 return 0;
ba395927
KA
3919 }
3920
ba395927
KA
3921 return nelems;
3922}
3923
02b4da5f 3924static const struct dma_map_ops intel_dma_ops = {
baa676fc
AP
3925 .alloc = intel_alloc_coherent,
3926 .free = intel_free_coherent,
ba395927
KA
3927 .map_sg = intel_map_sg,
3928 .unmap_sg = intel_unmap_sg,
ffbbef5c
FT
3929 .map_page = intel_map_page,
3930 .unmap_page = intel_unmap_page,
21d5d27c
LG
3931 .map_resource = intel_map_resource,
3932 .unmap_resource = intel_unmap_page,
fec777c3 3933 .dma_supported = dma_direct_supported,
ba395927
KA
3934};
3935
3936static inline int iommu_domain_cache_init(void)
3937{
3938 int ret = 0;
3939
3940 iommu_domain_cache = kmem_cache_create("iommu_domain",
3941 sizeof(struct dmar_domain),
3942 0,
3943 SLAB_HWCACHE_ALIGN,
3944
3945 NULL);
3946 if (!iommu_domain_cache) {
9f10e5bf 3947 pr_err("Couldn't create iommu_domain cache\n");
ba395927
KA
3948 ret = -ENOMEM;
3949 }
3950
3951 return ret;
3952}
3953
3954static inline int iommu_devinfo_cache_init(void)
3955{
3956 int ret = 0;
3957
3958 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3959 sizeof(struct device_domain_info),
3960 0,
3961 SLAB_HWCACHE_ALIGN,
ba395927
KA
3962 NULL);
3963 if (!iommu_devinfo_cache) {
9f10e5bf 3964 pr_err("Couldn't create devinfo cache\n");
ba395927
KA
3965 ret = -ENOMEM;
3966 }
3967
3968 return ret;
3969}
3970
ba395927
KA
3971static int __init iommu_init_mempool(void)
3972{
3973 int ret;
ae1ff3d6 3974 ret = iova_cache_get();
ba395927
KA
3975 if (ret)
3976 return ret;
3977
3978 ret = iommu_domain_cache_init();
3979 if (ret)
3980 goto domain_error;
3981
3982 ret = iommu_devinfo_cache_init();
3983 if (!ret)
3984 return ret;
3985
3986 kmem_cache_destroy(iommu_domain_cache);
3987domain_error:
ae1ff3d6 3988 iova_cache_put();
ba395927
KA
3989
3990 return -ENOMEM;
3991}
3992
3993static void __init iommu_exit_mempool(void)
3994{
3995 kmem_cache_destroy(iommu_devinfo_cache);
3996 kmem_cache_destroy(iommu_domain_cache);
ae1ff3d6 3997 iova_cache_put();
ba395927
KA
3998}
3999
556ab45f
DW
4000static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
4001{
4002 struct dmar_drhd_unit *drhd;
4003 u32 vtbar;
4004 int rc;
4005
4006 /* We know that this device on this chipset has its own IOMMU.
4007 * If we find it under a different IOMMU, then the BIOS is lying
4008 * to us. Hope that the IOMMU for this device is actually
4009 * disabled, and it needs no translation...
4010 */
4011 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
4012 if (rc) {
4013 /* "can't" happen */
4014 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
4015 return;
4016 }
4017 vtbar &= 0xffff0000;
4018
4019 /* we know that the this iommu should be at offset 0xa000 from vtbar */
4020 drhd = dmar_find_matched_drhd_unit(pdev);
4021 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
4022 TAINT_FIRMWARE_WORKAROUND,
4023 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
4024 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
4025}
4026DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
4027
ba395927
KA
4028static void __init init_no_remapping_devices(void)
4029{
4030 struct dmar_drhd_unit *drhd;
832bd858 4031 struct device *dev;
b683b230 4032 int i;
ba395927
KA
4033
4034 for_each_drhd_unit(drhd) {
4035 if (!drhd->include_all) {
b683b230
JL
4036 for_each_active_dev_scope(drhd->devices,
4037 drhd->devices_cnt, i, dev)
4038 break;
832bd858 4039 /* ignore DMAR unit if no devices exist */
ba395927
KA
4040 if (i == drhd->devices_cnt)
4041 drhd->ignored = 1;
4042 }
4043 }
4044
7c919779 4045 for_each_active_drhd_unit(drhd) {
7c919779 4046 if (drhd->include_all)
ba395927
KA
4047 continue;
4048
b683b230
JL
4049 for_each_active_dev_scope(drhd->devices,
4050 drhd->devices_cnt, i, dev)
832bd858 4051 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
ba395927 4052 break;
ba395927
KA
4053 if (i < drhd->devices_cnt)
4054 continue;
4055
c0771df8
DW
4056 /* This IOMMU has *only* gfx devices. Either bypass it or
4057 set the gfx_mapped flag, as appropriate */
4058 if (dmar_map_gfx) {
4059 intel_iommu_gfx_mapped = 1;
4060 } else {
4061 drhd->ignored = 1;
b683b230
JL
4062 for_each_active_dev_scope(drhd->devices,
4063 drhd->devices_cnt, i, dev)
832bd858 4064 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
ba395927
KA
4065 }
4066 }
4067}
4068
f59c7b69
FY
4069#ifdef CONFIG_SUSPEND
4070static int init_iommu_hw(void)
4071{
4072 struct dmar_drhd_unit *drhd;
4073 struct intel_iommu *iommu = NULL;
4074
4075 for_each_active_iommu(iommu, drhd)
4076 if (iommu->qi)
4077 dmar_reenable_qi(iommu);
4078
b779260b
JC
4079 for_each_iommu(iommu, drhd) {
4080 if (drhd->ignored) {
4081 /*
4082 * we always have to disable PMRs or DMA may fail on
4083 * this device
4084 */
4085 if (force_on)
4086 iommu_disable_protect_mem_regions(iommu);
4087 continue;
4088 }
4089
f59c7b69
FY
4090 iommu_flush_write_buffer(iommu);
4091
4092 iommu_set_root_entry(iommu);
4093
4094 iommu->flush.flush_context(iommu, 0, 0, 0,
1f0ef2aa 4095 DMA_CCMD_GLOBAL_INVL);
2a41ccee
JL
4096 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4097 iommu_enable_translation(iommu);
b94996c9 4098 iommu_disable_protect_mem_regions(iommu);
f59c7b69
FY
4099 }
4100
4101 return 0;
4102}
4103
4104static void iommu_flush_all(void)
4105{
4106 struct dmar_drhd_unit *drhd;
4107 struct intel_iommu *iommu;
4108
4109 for_each_active_iommu(iommu, drhd) {
4110 iommu->flush.flush_context(iommu, 0, 0, 0,
1f0ef2aa 4111 DMA_CCMD_GLOBAL_INVL);
f59c7b69 4112 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
1f0ef2aa 4113 DMA_TLB_GLOBAL_FLUSH);
f59c7b69
FY
4114 }
4115}
4116
134fac3f 4117static int iommu_suspend(void)
f59c7b69
FY
4118{
4119 struct dmar_drhd_unit *drhd;
4120 struct intel_iommu *iommu = NULL;
4121 unsigned long flag;
4122
4123 for_each_active_iommu(iommu, drhd) {
6396bb22 4124 iommu->iommu_state = kcalloc(MAX_SR_DMAR_REGS, sizeof(u32),
f59c7b69
FY
4125 GFP_ATOMIC);
4126 if (!iommu->iommu_state)
4127 goto nomem;
4128 }
4129
4130 iommu_flush_all();
4131
4132 for_each_active_iommu(iommu, drhd) {
4133 iommu_disable_translation(iommu);
4134
1f5b3c3f 4135 raw_spin_lock_irqsave(&iommu->register_lock, flag);
f59c7b69
FY
4136
4137 iommu->iommu_state[SR_DMAR_FECTL_REG] =
4138 readl(iommu->reg + DMAR_FECTL_REG);
4139 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
4140 readl(iommu->reg + DMAR_FEDATA_REG);
4141 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
4142 readl(iommu->reg + DMAR_FEADDR_REG);
4143 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
4144 readl(iommu->reg + DMAR_FEUADDR_REG);
4145
1f5b3c3f 4146 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
f59c7b69
FY
4147 }
4148 return 0;
4149
4150nomem:
4151 for_each_active_iommu(iommu, drhd)
4152 kfree(iommu->iommu_state);
4153
4154 return -ENOMEM;
4155}
4156
134fac3f 4157static void iommu_resume(void)
f59c7b69
FY
4158{
4159 struct dmar_drhd_unit *drhd;
4160 struct intel_iommu *iommu = NULL;
4161 unsigned long flag;
4162
4163 if (init_iommu_hw()) {
b779260b
JC
4164 if (force_on)
4165 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
4166 else
4167 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
134fac3f 4168 return;
f59c7b69
FY
4169 }
4170
4171 for_each_active_iommu(iommu, drhd) {
4172
1f5b3c3f 4173 raw_spin_lock_irqsave(&iommu->register_lock, flag);
f59c7b69
FY
4174
4175 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
4176 iommu->reg + DMAR_FECTL_REG);
4177 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
4178 iommu->reg + DMAR_FEDATA_REG);
4179 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
4180 iommu->reg + DMAR_FEADDR_REG);
4181 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
4182 iommu->reg + DMAR_FEUADDR_REG);
4183
1f5b3c3f 4184 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
f59c7b69
FY
4185 }
4186
4187 for_each_active_iommu(iommu, drhd)
4188 kfree(iommu->iommu_state);
f59c7b69
FY
4189}
4190
134fac3f 4191static struct syscore_ops iommu_syscore_ops = {
f59c7b69
FY
4192 .resume = iommu_resume,
4193 .suspend = iommu_suspend,
4194};
4195
134fac3f 4196static void __init init_iommu_pm_ops(void)
f59c7b69 4197{
134fac3f 4198 register_syscore_ops(&iommu_syscore_ops);
f59c7b69
FY
4199}
4200
4201#else
99592ba4 4202static inline void init_iommu_pm_ops(void) {}
f59c7b69
FY
4203#endif /* CONFIG_PM */
4204
318fe7df 4205
c2a0b538 4206int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg)
318fe7df
SS
4207{
4208 struct acpi_dmar_reserved_memory *rmrr;
0659b8dc 4209 int prot = DMA_PTE_READ|DMA_PTE_WRITE;
318fe7df 4210 struct dmar_rmrr_unit *rmrru;
0659b8dc 4211 size_t length;
318fe7df
SS
4212
4213 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
4214 if (!rmrru)
0659b8dc 4215 goto out;
318fe7df
SS
4216
4217 rmrru->hdr = header;
4218 rmrr = (struct acpi_dmar_reserved_memory *)header;
4219 rmrru->base_address = rmrr->base_address;
4220 rmrru->end_address = rmrr->end_address;
0659b8dc
EA
4221
4222 length = rmrr->end_address - rmrr->base_address + 1;
4223 rmrru->resv = iommu_alloc_resv_region(rmrr->base_address, length, prot,
4224 IOMMU_RESV_DIRECT);
4225 if (!rmrru->resv)
4226 goto free_rmrru;
4227
2e455289
JL
4228 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
4229 ((void *)rmrr) + rmrr->header.length,
4230 &rmrru->devices_cnt);
0659b8dc
EA
4231 if (rmrru->devices_cnt && rmrru->devices == NULL)
4232 goto free_all;
318fe7df 4233
2e455289 4234 list_add(&rmrru->list, &dmar_rmrr_units);
318fe7df 4235
2e455289 4236 return 0;
0659b8dc
EA
4237free_all:
4238 kfree(rmrru->resv);
4239free_rmrru:
4240 kfree(rmrru);
4241out:
4242 return -ENOMEM;
318fe7df
SS
4243}
4244
6b197249
JL
4245static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr)
4246{
4247 struct dmar_atsr_unit *atsru;
4248 struct acpi_dmar_atsr *tmp;
4249
4250 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4251 tmp = (struct acpi_dmar_atsr *)atsru->hdr;
4252 if (atsr->segment != tmp->segment)
4253 continue;
4254 if (atsr->header.length != tmp->header.length)
4255 continue;
4256 if (memcmp(atsr, tmp, atsr->header.length) == 0)
4257 return atsru;
4258 }
4259
4260 return NULL;
4261}
4262
4263int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg)
318fe7df
SS
4264{
4265 struct acpi_dmar_atsr *atsr;
4266 struct dmar_atsr_unit *atsru;
4267
b608fe35 4268 if (system_state >= SYSTEM_RUNNING && !intel_iommu_enabled)
6b197249
JL
4269 return 0;
4270
318fe7df 4271 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
6b197249
JL
4272 atsru = dmar_find_atsr(atsr);
4273 if (atsru)
4274 return 0;
4275
4276 atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL);
318fe7df
SS
4277 if (!atsru)
4278 return -ENOMEM;
4279
6b197249
JL
4280 /*
4281 * If memory is allocated from slab by ACPI _DSM method, we need to
4282 * copy the memory content because the memory buffer will be freed
4283 * on return.
4284 */
4285 atsru->hdr = (void *)(atsru + 1);
4286 memcpy(atsru->hdr, hdr, hdr->length);
318fe7df 4287 atsru->include_all = atsr->flags & 0x1;
2e455289
JL
4288 if (!atsru->include_all) {
4289 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
4290 (void *)atsr + atsr->header.length,
4291 &atsru->devices_cnt);
4292 if (atsru->devices_cnt && atsru->devices == NULL) {
4293 kfree(atsru);
4294 return -ENOMEM;
4295 }
4296 }
318fe7df 4297
0e242612 4298 list_add_rcu(&atsru->list, &dmar_atsr_units);
318fe7df
SS
4299
4300 return 0;
4301}
4302
9bdc531e
JL
4303static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
4304{
4305 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
4306 kfree(atsru);
4307}
4308
6b197249
JL
4309int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4310{
4311 struct acpi_dmar_atsr *atsr;
4312 struct dmar_atsr_unit *atsru;
4313
4314 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4315 atsru = dmar_find_atsr(atsr);
4316 if (atsru) {
4317 list_del_rcu(&atsru->list);
4318 synchronize_rcu();
4319 intel_iommu_free_atsr(atsru);
4320 }
4321
4322 return 0;
4323}
4324
4325int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4326{
4327 int i;
4328 struct device *dev;
4329 struct acpi_dmar_atsr *atsr;
4330 struct dmar_atsr_unit *atsru;
4331
4332 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4333 atsru = dmar_find_atsr(atsr);
4334 if (!atsru)
4335 return 0;
4336
194dc870 4337 if (!atsru->include_all && atsru->devices && atsru->devices_cnt) {
6b197249
JL
4338 for_each_active_dev_scope(atsru->devices, atsru->devices_cnt,
4339 i, dev)
4340 return -EBUSY;
194dc870 4341 }
6b197249
JL
4342
4343 return 0;
4344}
4345
ffebeb46
JL
4346static int intel_iommu_add(struct dmar_drhd_unit *dmaru)
4347{
e083ea5b 4348 int sp, ret;
ffebeb46
JL
4349 struct intel_iommu *iommu = dmaru->iommu;
4350
4351 if (g_iommus[iommu->seq_id])
4352 return 0;
4353
4354 if (hw_pass_through && !ecap_pass_through(iommu->ecap)) {
9f10e5bf 4355 pr_warn("%s: Doesn't support hardware pass through.\n",
ffebeb46
JL
4356 iommu->name);
4357 return -ENXIO;
4358 }
4359 if (!ecap_sc_support(iommu->ecap) &&
4360 domain_update_iommu_snooping(iommu)) {
9f10e5bf 4361 pr_warn("%s: Doesn't support snooping.\n",
ffebeb46
JL
4362 iommu->name);
4363 return -ENXIO;
4364 }
4365 sp = domain_update_iommu_superpage(iommu) - 1;
4366 if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) {
9f10e5bf 4367 pr_warn("%s: Doesn't support large page.\n",
ffebeb46
JL
4368 iommu->name);
4369 return -ENXIO;
4370 }
4371
4372 /*
4373 * Disable translation if already enabled prior to OS handover.
4374 */
4375 if (iommu->gcmd & DMA_GCMD_TE)
4376 iommu_disable_translation(iommu);
4377
4378 g_iommus[iommu->seq_id] = iommu;
4379 ret = iommu_init_domains(iommu);
4380 if (ret == 0)
4381 ret = iommu_alloc_root_entry(iommu);
4382 if (ret)
4383 goto out;
4384
8a94ade4 4385#ifdef CONFIG_INTEL_IOMMU_SVM
765b6a98 4386 if (pasid_supported(iommu))
d9737953 4387 intel_svm_init(iommu);
8a94ade4
DW
4388#endif
4389
ffebeb46
JL
4390 if (dmaru->ignored) {
4391 /*
4392 * we always have to disable PMRs or DMA may fail on this device
4393 */
4394 if (force_on)
4395 iommu_disable_protect_mem_regions(iommu);
4396 return 0;
4397 }
4398
4399 intel_iommu_init_qi(iommu);
4400 iommu_flush_write_buffer(iommu);
a222a7f0
DW
4401
4402#ifdef CONFIG_INTEL_IOMMU_SVM
765b6a98 4403 if (pasid_supported(iommu) && ecap_prs(iommu->ecap)) {
a222a7f0
DW
4404 ret = intel_svm_enable_prq(iommu);
4405 if (ret)
4406 goto disable_iommu;
4407 }
4408#endif
ffebeb46
JL
4409 ret = dmar_set_interrupt(iommu);
4410 if (ret)
4411 goto disable_iommu;
4412
4413 iommu_set_root_entry(iommu);
4414 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
4415 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4416 iommu_enable_translation(iommu);
4417
ffebeb46
JL
4418 iommu_disable_protect_mem_regions(iommu);
4419 return 0;
4420
4421disable_iommu:
4422 disable_dmar_iommu(iommu);
4423out:
4424 free_dmar_iommu(iommu);
4425 return ret;
4426}
4427
6b197249
JL
4428int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
4429{
ffebeb46
JL
4430 int ret = 0;
4431 struct intel_iommu *iommu = dmaru->iommu;
4432
4433 if (!intel_iommu_enabled)
4434 return 0;
4435 if (iommu == NULL)
4436 return -EINVAL;
4437
4438 if (insert) {
4439 ret = intel_iommu_add(dmaru);
4440 } else {
4441 disable_dmar_iommu(iommu);
4442 free_dmar_iommu(iommu);
4443 }
4444
4445 return ret;
6b197249
JL
4446}
4447
9bdc531e
JL
4448static void intel_iommu_free_dmars(void)
4449{
4450 struct dmar_rmrr_unit *rmrru, *rmrr_n;
4451 struct dmar_atsr_unit *atsru, *atsr_n;
4452
4453 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
4454 list_del(&rmrru->list);
4455 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
0659b8dc 4456 kfree(rmrru->resv);
9bdc531e 4457 kfree(rmrru);
318fe7df
SS
4458 }
4459
9bdc531e
JL
4460 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
4461 list_del(&atsru->list);
4462 intel_iommu_free_atsr(atsru);
4463 }
318fe7df
SS
4464}
4465
4466int dmar_find_matched_atsr_unit(struct pci_dev *dev)
4467{
b683b230 4468 int i, ret = 1;
318fe7df 4469 struct pci_bus *bus;
832bd858
DW
4470 struct pci_dev *bridge = NULL;
4471 struct device *tmp;
318fe7df
SS
4472 struct acpi_dmar_atsr *atsr;
4473 struct dmar_atsr_unit *atsru;
4474
4475 dev = pci_physfn(dev);
318fe7df 4476 for (bus = dev->bus; bus; bus = bus->parent) {
b5f82ddf 4477 bridge = bus->self;
d14053b3
DW
4478 /* If it's an integrated device, allow ATS */
4479 if (!bridge)
4480 return 1;
4481 /* Connected via non-PCIe: no ATS */
4482 if (!pci_is_pcie(bridge) ||
62f87c0e 4483 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
318fe7df 4484 return 0;
d14053b3 4485 /* If we found the root port, look it up in the ATSR */
b5f82ddf 4486 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
318fe7df 4487 break;
318fe7df
SS
4488 }
4489
0e242612 4490 rcu_read_lock();
b5f82ddf
JL
4491 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4492 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4493 if (atsr->segment != pci_domain_nr(dev->bus))
4494 continue;
4495
b683b230 4496 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
832bd858 4497 if (tmp == &bridge->dev)
b683b230 4498 goto out;
b5f82ddf
JL
4499
4500 if (atsru->include_all)
b683b230 4501 goto out;
b5f82ddf 4502 }
b683b230
JL
4503 ret = 0;
4504out:
0e242612 4505 rcu_read_unlock();
318fe7df 4506
b683b230 4507 return ret;
318fe7df
SS
4508}
4509
59ce0515
JL
4510int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
4511{
e083ea5b 4512 int ret;
59ce0515
JL
4513 struct dmar_rmrr_unit *rmrru;
4514 struct dmar_atsr_unit *atsru;
4515 struct acpi_dmar_atsr *atsr;
4516 struct acpi_dmar_reserved_memory *rmrr;
4517
b608fe35 4518 if (!intel_iommu_enabled && system_state >= SYSTEM_RUNNING)
59ce0515
JL
4519 return 0;
4520
4521 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
4522 rmrr = container_of(rmrru->hdr,
4523 struct acpi_dmar_reserved_memory, header);
4524 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4525 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
4526 ((void *)rmrr) + rmrr->header.length,
4527 rmrr->segment, rmrru->devices,
4528 rmrru->devices_cnt);
e083ea5b 4529 if (ret < 0)
59ce0515 4530 return ret;
e6a8c9b3 4531 } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) {
27e24950
JL
4532 dmar_remove_dev_scope(info, rmrr->segment,
4533 rmrru->devices, rmrru->devices_cnt);
59ce0515
JL
4534 }
4535 }
4536
4537 list_for_each_entry(atsru, &dmar_atsr_units, list) {
4538 if (atsru->include_all)
4539 continue;
4540
4541 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4542 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4543 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
4544 (void *)atsr + atsr->header.length,
4545 atsr->segment, atsru->devices,
4546 atsru->devices_cnt);
4547 if (ret > 0)
4548 break;
e083ea5b 4549 else if (ret < 0)
59ce0515 4550 return ret;
e6a8c9b3 4551 } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) {
59ce0515
JL
4552 if (dmar_remove_dev_scope(info, atsr->segment,
4553 atsru->devices, atsru->devices_cnt))
4554 break;
4555 }
4556 }
4557
4558 return 0;
4559}
4560
99dcaded
FY
4561/*
4562 * Here we only respond to action of unbound device from driver.
4563 *
4564 * Added device is not attached to its DMAR domain here yet. That will happen
4565 * when mapping the device to iova.
4566 */
4567static int device_notifier(struct notifier_block *nb,
4568 unsigned long action, void *data)
4569{
4570 struct device *dev = data;
99dcaded
FY
4571 struct dmar_domain *domain;
4572
3d89194a 4573 if (iommu_dummy(dev))
44cd613c
DW
4574 return 0;
4575
117266fd
LB
4576 if (action == BUS_NOTIFY_REMOVED_DEVICE) {
4577 domain = find_domain(dev);
4578 if (!domain)
4579 return 0;
99dcaded 4580
117266fd
LB
4581 dmar_remove_one_dev_info(dev);
4582 if (!domain_type_is_vm_or_si(domain) &&
4583 list_empty(&domain->devices))
4584 domain_exit(domain);
4585 } else if (action == BUS_NOTIFY_ADD_DEVICE) {
4586 if (iommu_should_identity_map(dev, 1))
4587 domain_add_dev_info(si_domain, dev);
4588 }
a97590e5 4589
99dcaded
FY
4590 return 0;
4591}
4592
4593static struct notifier_block device_nb = {
4594 .notifier_call = device_notifier,
4595};
4596
75f05569
JL
4597static int intel_iommu_memory_notifier(struct notifier_block *nb,
4598 unsigned long val, void *v)
4599{
4600 struct memory_notify *mhp = v;
4601 unsigned long long start, end;
4602 unsigned long start_vpfn, last_vpfn;
4603
4604 switch (val) {
4605 case MEM_GOING_ONLINE:
4606 start = mhp->start_pfn << PAGE_SHIFT;
4607 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
4608 if (iommu_domain_identity_map(si_domain, start, end)) {
9f10e5bf 4609 pr_warn("Failed to build identity map for [%llx-%llx]\n",
75f05569
JL
4610 start, end);
4611 return NOTIFY_BAD;
4612 }
4613 break;
4614
4615 case MEM_OFFLINE:
4616 case MEM_CANCEL_ONLINE:
4617 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
4618 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
4619 while (start_vpfn <= last_vpfn) {
4620 struct iova *iova;
4621 struct dmar_drhd_unit *drhd;
4622 struct intel_iommu *iommu;
ea8ea460 4623 struct page *freelist;
75f05569
JL
4624
4625 iova = find_iova(&si_domain->iovad, start_vpfn);
4626 if (iova == NULL) {
9f10e5bf 4627 pr_debug("Failed get IOVA for PFN %lx\n",
75f05569
JL
4628 start_vpfn);
4629 break;
4630 }
4631
4632 iova = split_and_remove_iova(&si_domain->iovad, iova,
4633 start_vpfn, last_vpfn);
4634 if (iova == NULL) {
9f10e5bf 4635 pr_warn("Failed to split IOVA PFN [%lx-%lx]\n",
75f05569
JL
4636 start_vpfn, last_vpfn);
4637 return NOTIFY_BAD;
4638 }
4639
ea8ea460
DW
4640 freelist = domain_unmap(si_domain, iova->pfn_lo,
4641 iova->pfn_hi);
4642
75f05569
JL
4643 rcu_read_lock();
4644 for_each_active_iommu(iommu, drhd)
a1ddcbe9 4645 iommu_flush_iotlb_psi(iommu, si_domain,
a156ef99 4646 iova->pfn_lo, iova_size(iova),
ea8ea460 4647 !freelist, 0);
75f05569 4648 rcu_read_unlock();
ea8ea460 4649 dma_free_pagelist(freelist);
75f05569
JL
4650
4651 start_vpfn = iova->pfn_hi + 1;
4652 free_iova_mem(iova);
4653 }
4654 break;
4655 }
4656
4657 return NOTIFY_OK;
4658}
4659
4660static struct notifier_block intel_iommu_memory_nb = {
4661 .notifier_call = intel_iommu_memory_notifier,
4662 .priority = 0
4663};
4664
22e2f9fa
OP
4665static void free_all_cpu_cached_iovas(unsigned int cpu)
4666{
4667 int i;
4668
4669 for (i = 0; i < g_num_of_iommus; i++) {
4670 struct intel_iommu *iommu = g_iommus[i];
4671 struct dmar_domain *domain;
0caa7616 4672 int did;
22e2f9fa
OP
4673
4674 if (!iommu)
4675 continue;
4676
3bd4f911 4677 for (did = 0; did < cap_ndoms(iommu->cap); did++) {
0caa7616 4678 domain = get_iommu_domain(iommu, (u16)did);
22e2f9fa
OP
4679
4680 if (!domain)
4681 continue;
4682 free_cpu_cached_iovas(cpu, &domain->iovad);
4683 }
4684 }
4685}
4686
21647615 4687static int intel_iommu_cpu_dead(unsigned int cpu)
aa473240 4688{
21647615 4689 free_all_cpu_cached_iovas(cpu);
21647615 4690 return 0;
aa473240
OP
4691}
4692
161b28aa
JR
4693static void intel_disable_iommus(void)
4694{
4695 struct intel_iommu *iommu = NULL;
4696 struct dmar_drhd_unit *drhd;
4697
4698 for_each_iommu(iommu, drhd)
4699 iommu_disable_translation(iommu);
4700}
4701
a7fdb6e6
JR
4702static inline struct intel_iommu *dev_to_intel_iommu(struct device *dev)
4703{
2926a2aa
JR
4704 struct iommu_device *iommu_dev = dev_to_iommu_device(dev);
4705
4706 return container_of(iommu_dev, struct intel_iommu, iommu);
a7fdb6e6
JR
4707}
4708
a5459cfe
AW
4709static ssize_t intel_iommu_show_version(struct device *dev,
4710 struct device_attribute *attr,
4711 char *buf)
4712{
a7fdb6e6 4713 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
a5459cfe
AW
4714 u32 ver = readl(iommu->reg + DMAR_VER_REG);
4715 return sprintf(buf, "%d:%d\n",
4716 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver));
4717}
4718static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL);
4719
4720static ssize_t intel_iommu_show_address(struct device *dev,
4721 struct device_attribute *attr,
4722 char *buf)
4723{
a7fdb6e6 4724 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
a5459cfe
AW
4725 return sprintf(buf, "%llx\n", iommu->reg_phys);
4726}
4727static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL);
4728
4729static ssize_t intel_iommu_show_cap(struct device *dev,
4730 struct device_attribute *attr,
4731 char *buf)
4732{
a7fdb6e6 4733 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
a5459cfe
AW
4734 return sprintf(buf, "%llx\n", iommu->cap);
4735}
4736static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL);
4737
4738static ssize_t intel_iommu_show_ecap(struct device *dev,
4739 struct device_attribute *attr,
4740 char *buf)
4741{
a7fdb6e6 4742 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
a5459cfe
AW
4743 return sprintf(buf, "%llx\n", iommu->ecap);
4744}
4745static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL);
4746
2238c082
AW
4747static ssize_t intel_iommu_show_ndoms(struct device *dev,
4748 struct device_attribute *attr,
4749 char *buf)
4750{
a7fdb6e6 4751 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
2238c082
AW
4752 return sprintf(buf, "%ld\n", cap_ndoms(iommu->cap));
4753}
4754static DEVICE_ATTR(domains_supported, S_IRUGO, intel_iommu_show_ndoms, NULL);
4755
4756static ssize_t intel_iommu_show_ndoms_used(struct device *dev,
4757 struct device_attribute *attr,
4758 char *buf)
4759{
a7fdb6e6 4760 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
2238c082
AW
4761 return sprintf(buf, "%d\n", bitmap_weight(iommu->domain_ids,
4762 cap_ndoms(iommu->cap)));
4763}
4764static DEVICE_ATTR(domains_used, S_IRUGO, intel_iommu_show_ndoms_used, NULL);
4765
a5459cfe
AW
4766static struct attribute *intel_iommu_attrs[] = {
4767 &dev_attr_version.attr,
4768 &dev_attr_address.attr,
4769 &dev_attr_cap.attr,
4770 &dev_attr_ecap.attr,
2238c082
AW
4771 &dev_attr_domains_supported.attr,
4772 &dev_attr_domains_used.attr,
a5459cfe
AW
4773 NULL,
4774};
4775
4776static struct attribute_group intel_iommu_group = {
4777 .name = "intel-iommu",
4778 .attrs = intel_iommu_attrs,
4779};
4780
4781const struct attribute_group *intel_iommu_groups[] = {
4782 &intel_iommu_group,
4783 NULL,
4784};
4785
89a6079d
LB
4786static int __init platform_optin_force_iommu(void)
4787{
4788 struct pci_dev *pdev = NULL;
4789 bool has_untrusted_dev = false;
4790
4791 if (!dmar_platform_optin() || no_platform_optin)
4792 return 0;
4793
4794 for_each_pci_dev(pdev) {
4795 if (pdev->untrusted) {
4796 has_untrusted_dev = true;
4797 break;
4798 }
4799 }
4800
4801 if (!has_untrusted_dev)
4802 return 0;
4803
4804 if (no_iommu || dmar_disabled)
4805 pr_info("Intel-IOMMU force enabled due to platform opt in\n");
4806
4807 /*
4808 * If Intel-IOMMU is disabled by default, we will apply identity
4809 * map for all devices except those marked as being untrusted.
4810 */
4811 if (dmar_disabled)
4812 iommu_identity_mapping |= IDENTMAP_ALL;
4813
4814 dmar_disabled = 0;
4815#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB)
4816 swiotlb = 0;
4817#endif
4818 no_iommu = 0;
4819
4820 return 1;
4821}
4822
ba395927
KA
4823int __init intel_iommu_init(void)
4824{
9bdc531e 4825 int ret = -ENODEV;
3a93c841 4826 struct dmar_drhd_unit *drhd;
7c919779 4827 struct intel_iommu *iommu;
ba395927 4828
89a6079d
LB
4829 /*
4830 * Intel IOMMU is required for a TXT/tboot launch or platform
4831 * opt in, so enforce that.
4832 */
4833 force_on = tboot_force_iommu() || platform_optin_force_iommu();
a59b50e9 4834
3a5670e8
JL
4835 if (iommu_init_mempool()) {
4836 if (force_on)
4837 panic("tboot: Failed to initialize iommu memory\n");
4838 return -ENOMEM;
4839 }
4840
4841 down_write(&dmar_global_lock);
a59b50e9
JC
4842 if (dmar_table_init()) {
4843 if (force_on)
4844 panic("tboot: Failed to initialize DMAR table\n");
9bdc531e 4845 goto out_free_dmar;
a59b50e9 4846 }
ba395927 4847
c2c7286a 4848 if (dmar_dev_scope_init() < 0) {
a59b50e9
JC
4849 if (force_on)
4850 panic("tboot: Failed to initialize DMAR device scope\n");
9bdc531e 4851 goto out_free_dmar;
a59b50e9 4852 }
1886e8a9 4853
ec154bf5
JR
4854 up_write(&dmar_global_lock);
4855
4856 /*
4857 * The bus notifier takes the dmar_global_lock, so lockdep will
4858 * complain later when we register it under the lock.
4859 */
4860 dmar_register_bus_notifier();
4861
4862 down_write(&dmar_global_lock);
4863
161b28aa 4864 if (no_iommu || dmar_disabled) {
bfd20f1c
SL
4865 /*
4866 * We exit the function here to ensure IOMMU's remapping and
4867 * mempool aren't setup, which means that the IOMMU's PMRs
4868 * won't be disabled via the call to init_dmars(). So disable
4869 * it explicitly here. The PMRs were setup by tboot prior to
4870 * calling SENTER, but the kernel is expected to reset/tear
4871 * down the PMRs.
4872 */
4873 if (intel_iommu_tboot_noforce) {
4874 for_each_iommu(iommu, drhd)
4875 iommu_disable_protect_mem_regions(iommu);
4876 }
4877
161b28aa
JR
4878 /*
4879 * Make sure the IOMMUs are switched off, even when we
4880 * boot into a kexec kernel and the previous kernel left
4881 * them enabled
4882 */
4883 intel_disable_iommus();
9bdc531e 4884 goto out_free_dmar;
161b28aa 4885 }
2ae21010 4886
318fe7df 4887 if (list_empty(&dmar_rmrr_units))
9f10e5bf 4888 pr_info("No RMRR found\n");
318fe7df
SS
4889
4890 if (list_empty(&dmar_atsr_units))
9f10e5bf 4891 pr_info("No ATSR found\n");
318fe7df 4892
51a63e67
JC
4893 if (dmar_init_reserved_ranges()) {
4894 if (force_on)
4895 panic("tboot: Failed to reserve iommu ranges\n");
3a5670e8 4896 goto out_free_reserved_range;
51a63e67 4897 }
ba395927
KA
4898
4899 init_no_remapping_devices();
4900
b779260b 4901 ret = init_dmars();
ba395927 4902 if (ret) {
a59b50e9
JC
4903 if (force_on)
4904 panic("tboot: Failed to initialize DMARs\n");
9f10e5bf 4905 pr_err("Initialization failed\n");
9bdc531e 4906 goto out_free_reserved_range;
ba395927 4907 }
3a5670e8 4908 up_write(&dmar_global_lock);
9f10e5bf 4909 pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
ba395927 4910
4fac8076 4911#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB)
75f1cdf1
FT
4912 swiotlb = 0;
4913#endif
19943b0e 4914 dma_ops = &intel_dma_ops;
4ed0d3e6 4915
134fac3f 4916 init_iommu_pm_ops();
a8bcbb0d 4917
39ab9555
JR
4918 for_each_active_iommu(iommu, drhd) {
4919 iommu_device_sysfs_add(&iommu->iommu, NULL,
4920 intel_iommu_groups,
4921 "%s", iommu->name);
4922 iommu_device_set_ops(&iommu->iommu, &intel_iommu_ops);
4923 iommu_device_register(&iommu->iommu);
4924 }
a5459cfe 4925
4236d97d 4926 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
99dcaded 4927 bus_register_notifier(&pci_bus_type, &device_nb);
75f05569
JL
4928 if (si_domain && !hw_pass_through)
4929 register_memory_notifier(&intel_iommu_memory_nb);
21647615
AMG
4930 cpuhp_setup_state(CPUHP_IOMMU_INTEL_DEAD, "iommu/intel:dead", NULL,
4931 intel_iommu_cpu_dead);
8bc1f85c 4932 intel_iommu_enabled = 1;
ee2636b8 4933 intel_iommu_debugfs_init();
8bc1f85c 4934
ba395927 4935 return 0;
9bdc531e
JL
4936
4937out_free_reserved_range:
4938 put_iova_domain(&reserved_iova_list);
9bdc531e
JL
4939out_free_dmar:
4940 intel_iommu_free_dmars();
3a5670e8
JL
4941 up_write(&dmar_global_lock);
4942 iommu_exit_mempool();
9bdc531e 4943 return ret;
ba395927 4944}
e820482c 4945
2452d9db 4946static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *opaque)
579305f7
AW
4947{
4948 struct intel_iommu *iommu = opaque;
4949
2452d9db 4950 domain_context_clear_one(iommu, PCI_BUS_NUM(alias), alias & 0xff);
579305f7
AW
4951 return 0;
4952}
4953
4954/*
4955 * NB - intel-iommu lacks any sort of reference counting for the users of
4956 * dependent devices. If multiple endpoints have intersecting dependent
4957 * devices, unbinding the driver from any one of them will possibly leave
4958 * the others unable to operate.
4959 */
2452d9db 4960static void domain_context_clear(struct intel_iommu *iommu, struct device *dev)
3199aa6b 4961{
0bcb3e28 4962 if (!iommu || !dev || !dev_is_pci(dev))
3199aa6b
HW
4963 return;
4964
2452d9db 4965 pci_for_each_dma_alias(to_pci_dev(dev), &domain_context_clear_one_cb, iommu);
3199aa6b
HW
4966}
4967
127c7615 4968static void __dmar_remove_one_dev_info(struct device_domain_info *info)
c7151a8d 4969{
c7151a8d
WH
4970 struct intel_iommu *iommu;
4971 unsigned long flags;
c7151a8d 4972
55d94043
JR
4973 assert_spin_locked(&device_domain_lock);
4974
127c7615 4975 if (WARN_ON(!info))
c7151a8d
WH
4976 return;
4977
127c7615 4978 iommu = info->iommu;
c7151a8d 4979
127c7615 4980 if (info->dev) {
ef848b7e
LB
4981 if (dev_is_pci(info->dev) && sm_supported(iommu))
4982 intel_pasid_tear_down_entry(iommu, info->dev,
4983 PASID_RID2PASID);
4984
127c7615
JR
4985 iommu_disable_dev_iotlb(info);
4986 domain_context_clear(iommu, info->dev);
a7fc93fe 4987 intel_pasid_free_table(info->dev);
127c7615 4988 }
c7151a8d 4989
b608ac3b 4990 unlink_domain_info(info);
c7151a8d 4991
d160aca5 4992 spin_lock_irqsave(&iommu->lock, flags);
127c7615 4993 domain_detach_iommu(info->domain, iommu);
d160aca5 4994 spin_unlock_irqrestore(&iommu->lock, flags);
c7151a8d 4995
127c7615 4996 free_devinfo_mem(info);
c7151a8d 4997}
c7151a8d 4998
71753239 4999static void dmar_remove_one_dev_info(struct device *dev)
55d94043 5000{
127c7615 5001 struct device_domain_info *info;
55d94043 5002 unsigned long flags;
3e7abe25 5003
55d94043 5004 spin_lock_irqsave(&device_domain_lock, flags);
127c7615
JR
5005 info = dev->archdata.iommu;
5006 __dmar_remove_one_dev_info(info);
55d94043 5007 spin_unlock_irqrestore(&device_domain_lock, flags);
c7151a8d
WH
5008}
5009
2c2e2c38 5010static int md_domain_init(struct dmar_domain *domain, int guest_width)
5e98c4b1
WH
5011{
5012 int adjust_width;
5013
aa3ac946 5014 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN);
5e98c4b1
WH
5015 domain_reserve_special_ranges(domain);
5016
5017 /* calculate AGAW */
5018 domain->gaw = guest_width;
5019 adjust_width = guestwidth_to_adjustwidth(guest_width);
5020 domain->agaw = width_to_agaw(adjust_width);
5021
5e98c4b1 5022 domain->iommu_coherency = 0;
c5b15255 5023 domain->iommu_snooping = 0;
6dd9a7c7 5024 domain->iommu_superpage = 0;
fe40f1e0 5025 domain->max_addr = 0;
5e98c4b1
WH
5026
5027 /* always allocate the top pgd */
4c923d47 5028 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
5e98c4b1
WH
5029 if (!domain->pgd)
5030 return -ENOMEM;
5031 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
5032 return 0;
5033}
5034
00a77deb 5035static struct iommu_domain *intel_iommu_domain_alloc(unsigned type)
38717946 5036{
5d450806 5037 struct dmar_domain *dmar_domain;
00a77deb
JR
5038 struct iommu_domain *domain;
5039
5040 if (type != IOMMU_DOMAIN_UNMANAGED)
5041 return NULL;
38717946 5042
ab8dfe25 5043 dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE);
5d450806 5044 if (!dmar_domain) {
9f10e5bf 5045 pr_err("Can't allocate dmar_domain\n");
00a77deb 5046 return NULL;
38717946 5047 }
2c2e2c38 5048 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
9f10e5bf 5049 pr_err("Domain initialization failed\n");
92d03cc8 5050 domain_exit(dmar_domain);
00a77deb 5051 return NULL;
38717946 5052 }
8140a95d 5053 domain_update_iommu_cap(dmar_domain);
faa3d6f5 5054
00a77deb 5055 domain = &dmar_domain->domain;
8a0e715b
JR
5056 domain->geometry.aperture_start = 0;
5057 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
5058 domain->geometry.force_aperture = true;
5059
00a77deb 5060 return domain;
38717946 5061}
38717946 5062
00a77deb 5063static void intel_iommu_domain_free(struct iommu_domain *domain)
38717946 5064{
00a77deb 5065 domain_exit(to_dmar_domain(domain));
38717946 5066}
38717946 5067
4c5478c9
JR
5068static int intel_iommu_attach_device(struct iommu_domain *domain,
5069 struct device *dev)
38717946 5070{
00a77deb 5071 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
fe40f1e0
WH
5072 struct intel_iommu *iommu;
5073 int addr_width;
156baca8 5074 u8 bus, devfn;
faa3d6f5 5075
c875d2c1
AW
5076 if (device_is_rmrr_locked(dev)) {
5077 dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n");
5078 return -EPERM;
5079 }
5080
7207d8f9
DW
5081 /* normally dev is not mapped */
5082 if (unlikely(domain_context_mapped(dev))) {
faa3d6f5
WH
5083 struct dmar_domain *old_domain;
5084
1525a29a 5085 old_domain = find_domain(dev);
faa3d6f5 5086 if (old_domain) {
d160aca5 5087 rcu_read_lock();
71753239 5088 dmar_remove_one_dev_info(dev);
d160aca5 5089 rcu_read_unlock();
62c22167
JR
5090
5091 if (!domain_type_is_vm_or_si(old_domain) &&
5092 list_empty(&old_domain->devices))
5093 domain_exit(old_domain);
faa3d6f5
WH
5094 }
5095 }
5096
156baca8 5097 iommu = device_to_iommu(dev, &bus, &devfn);
fe40f1e0
WH
5098 if (!iommu)
5099 return -ENODEV;
5100
5101 /* check if this iommu agaw is sufficient for max mapped address */
5102 addr_width = agaw_to_width(iommu->agaw);
a99c47a2
TL
5103 if (addr_width > cap_mgaw(iommu->cap))
5104 addr_width = cap_mgaw(iommu->cap);
5105
5106 if (dmar_domain->max_addr > (1LL << addr_width)) {
932a6523
BH
5107 dev_err(dev, "%s: iommu width (%d) is not "
5108 "sufficient for the mapped address (%llx)\n",
5109 __func__, addr_width, dmar_domain->max_addr);
fe40f1e0
WH
5110 return -EFAULT;
5111 }
a99c47a2
TL
5112 dmar_domain->gaw = addr_width;
5113
5114 /*
5115 * Knock out extra levels of page tables if necessary
5116 */
5117 while (iommu->agaw < dmar_domain->agaw) {
5118 struct dma_pte *pte;
5119
5120 pte = dmar_domain->pgd;
5121 if (dma_pte_present(pte)) {
25cbff16
SY
5122 dmar_domain->pgd = (struct dma_pte *)
5123 phys_to_virt(dma_pte_addr(pte));
7a661013 5124 free_pgtable_page(pte);
a99c47a2
TL
5125 }
5126 dmar_domain->agaw--;
5127 }
fe40f1e0 5128
28ccce0d 5129 return domain_add_dev_info(dmar_domain, dev);
38717946 5130}
38717946 5131
4c5478c9
JR
5132static void intel_iommu_detach_device(struct iommu_domain *domain,
5133 struct device *dev)
38717946 5134{
71753239 5135 dmar_remove_one_dev_info(dev);
faa3d6f5 5136}
c7151a8d 5137
b146a1c9
JR
5138static int intel_iommu_map(struct iommu_domain *domain,
5139 unsigned long iova, phys_addr_t hpa,
5009065d 5140 size_t size, int iommu_prot)
faa3d6f5 5141{
00a77deb 5142 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
fe40f1e0 5143 u64 max_addr;
dde57a21 5144 int prot = 0;
faa3d6f5 5145 int ret;
fe40f1e0 5146
dde57a21
JR
5147 if (iommu_prot & IOMMU_READ)
5148 prot |= DMA_PTE_READ;
5149 if (iommu_prot & IOMMU_WRITE)
5150 prot |= DMA_PTE_WRITE;
9cf06697
SY
5151 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
5152 prot |= DMA_PTE_SNP;
dde57a21 5153
163cc52c 5154 max_addr = iova + size;
dde57a21 5155 if (dmar_domain->max_addr < max_addr) {
fe40f1e0
WH
5156 u64 end;
5157
5158 /* check if minimum agaw is sufficient for mapped address */
8954da1f 5159 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
fe40f1e0 5160 if (end < max_addr) {
9f10e5bf 5161 pr_err("%s: iommu width (%d) is not "
fe40f1e0 5162 "sufficient for the mapped address (%llx)\n",
8954da1f 5163 __func__, dmar_domain->gaw, max_addr);
fe40f1e0
WH
5164 return -EFAULT;
5165 }
dde57a21 5166 dmar_domain->max_addr = max_addr;
fe40f1e0 5167 }
ad051221
DW
5168 /* Round up size to next multiple of PAGE_SIZE, if it and
5169 the low bits of hpa would take us onto the next page */
88cb6a74 5170 size = aligned_nrpages(hpa, size);
ad051221
DW
5171 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
5172 hpa >> VTD_PAGE_SHIFT, size, prot);
faa3d6f5 5173 return ret;
38717946 5174}
38717946 5175
5009065d 5176static size_t intel_iommu_unmap(struct iommu_domain *domain,
ea8ea460 5177 unsigned long iova, size_t size)
38717946 5178{
00a77deb 5179 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
ea8ea460 5180 struct page *freelist = NULL;
ea8ea460
DW
5181 unsigned long start_pfn, last_pfn;
5182 unsigned int npages;
42e8c186 5183 int iommu_id, level = 0;
5cf0a76f
DW
5184
5185 /* Cope with horrid API which requires us to unmap more than the
5186 size argument if it happens to be a large-page mapping. */
dc02e46e 5187 BUG_ON(!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level));
5cf0a76f
DW
5188
5189 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
5190 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
4b99d352 5191
ea8ea460
DW
5192 start_pfn = iova >> VTD_PAGE_SHIFT;
5193 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
5194
5195 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
5196
5197 npages = last_pfn - start_pfn + 1;
5198
f746a025 5199 for_each_domain_iommu(iommu_id, dmar_domain)
42e8c186
JR
5200 iommu_flush_iotlb_psi(g_iommus[iommu_id], dmar_domain,
5201 start_pfn, npages, !freelist, 0);
ea8ea460
DW
5202
5203 dma_free_pagelist(freelist);
fe40f1e0 5204
163cc52c
DW
5205 if (dmar_domain->max_addr == iova + size)
5206 dmar_domain->max_addr = iova;
b146a1c9 5207
5cf0a76f 5208 return size;
38717946 5209}
38717946 5210
d14d6577 5211static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
bb5547ac 5212 dma_addr_t iova)
38717946 5213{
00a77deb 5214 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
38717946 5215 struct dma_pte *pte;
5cf0a76f 5216 int level = 0;
faa3d6f5 5217 u64 phys = 0;
38717946 5218
5cf0a76f 5219 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
38717946 5220 if (pte)
faa3d6f5 5221 phys = dma_pte_addr(pte);
38717946 5222
faa3d6f5 5223 return phys;
38717946 5224}
a8bcbb0d 5225
5d587b8d 5226static bool intel_iommu_capable(enum iommu_cap cap)
dbb9fd86 5227{
dbb9fd86 5228 if (cap == IOMMU_CAP_CACHE_COHERENCY)
5d587b8d 5229 return domain_update_iommu_snooping(NULL) == 1;
323f99cb 5230 if (cap == IOMMU_CAP_INTR_REMAP)
5d587b8d 5231 return irq_remapping_enabled == 1;
dbb9fd86 5232
5d587b8d 5233 return false;
dbb9fd86
SY
5234}
5235
abdfdde2
AW
5236static int intel_iommu_add_device(struct device *dev)
5237{
a5459cfe 5238 struct intel_iommu *iommu;
abdfdde2 5239 struct iommu_group *group;
156baca8 5240 u8 bus, devfn;
70ae6f0d 5241
a5459cfe
AW
5242 iommu = device_to_iommu(dev, &bus, &devfn);
5243 if (!iommu)
70ae6f0d
AW
5244 return -ENODEV;
5245
e3d10af1 5246 iommu_device_link(&iommu->iommu, dev);
a4ff1fc2 5247
e17f9ff4 5248 group = iommu_group_get_for_dev(dev);
783f157b 5249
e17f9ff4
AW
5250 if (IS_ERR(group))
5251 return PTR_ERR(group);
bcb71abe 5252
abdfdde2 5253 iommu_group_put(group);
e17f9ff4 5254 return 0;
abdfdde2 5255}
70ae6f0d 5256
abdfdde2
AW
5257static void intel_iommu_remove_device(struct device *dev)
5258{
a5459cfe
AW
5259 struct intel_iommu *iommu;
5260 u8 bus, devfn;
5261
5262 iommu = device_to_iommu(dev, &bus, &devfn);
5263 if (!iommu)
5264 return;
5265
abdfdde2 5266 iommu_group_remove_device(dev);
a5459cfe 5267
e3d10af1 5268 iommu_device_unlink(&iommu->iommu, dev);
70ae6f0d
AW
5269}
5270
0659b8dc
EA
5271static void intel_iommu_get_resv_regions(struct device *device,
5272 struct list_head *head)
5273{
5274 struct iommu_resv_region *reg;
5275 struct dmar_rmrr_unit *rmrr;
5276 struct device *i_dev;
5277 int i;
5278
5279 rcu_read_lock();
5280 for_each_rmrr_units(rmrr) {
5281 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
5282 i, i_dev) {
5283 if (i_dev != device)
5284 continue;
5285
5286 list_add_tail(&rmrr->resv->list, head);
5287 }
5288 }
5289 rcu_read_unlock();
5290
5291 reg = iommu_alloc_resv_region(IOAPIC_RANGE_START,
5292 IOAPIC_RANGE_END - IOAPIC_RANGE_START + 1,
9d3a4de4 5293 0, IOMMU_RESV_MSI);
0659b8dc
EA
5294 if (!reg)
5295 return;
5296 list_add_tail(&reg->list, head);
5297}
5298
5299static void intel_iommu_put_resv_regions(struct device *dev,
5300 struct list_head *head)
5301{
5302 struct iommu_resv_region *entry, *next;
5303
5304 list_for_each_entry_safe(entry, next, head, list) {
198bc325 5305 if (entry->type == IOMMU_RESV_MSI)
0659b8dc
EA
5306 kfree(entry);
5307 }
70ae6f0d
AW
5308}
5309
2f26e0a9
DW
5310#ifdef CONFIG_INTEL_IOMMU_SVM
5311int intel_iommu_enable_pasid(struct intel_iommu *iommu, struct intel_svm_dev *sdev)
5312{
5313 struct device_domain_info *info;
5314 struct context_entry *context;
5315 struct dmar_domain *domain;
5316 unsigned long flags;
5317 u64 ctx_lo;
5318 int ret;
5319
5320 domain = get_valid_domain_for_dev(sdev->dev);
5321 if (!domain)
5322 return -EINVAL;
5323
5324 spin_lock_irqsave(&device_domain_lock, flags);
5325 spin_lock(&iommu->lock);
5326
5327 ret = -EINVAL;
5328 info = sdev->dev->archdata.iommu;
5329 if (!info || !info->pasid_supported)
5330 goto out;
5331
5332 context = iommu_context_addr(iommu, info->bus, info->devfn, 0);
5333 if (WARN_ON(!context))
5334 goto out;
5335
5336 ctx_lo = context[0].lo;
5337
84c11e4d 5338 sdev->did = FLPT_DEFAULT_DID;
2f26e0a9
DW
5339 sdev->sid = PCI_DEVID(info->bus, info->devfn);
5340
5341 if (!(ctx_lo & CONTEXT_PASIDE)) {
2f26e0a9
DW
5342 ctx_lo |= CONTEXT_PASIDE;
5343 context[0].lo = ctx_lo;
5344 wmb();
5345 iommu->flush.flush_context(iommu, sdev->did, sdev->sid,
5346 DMA_CCMD_MASK_NOBIT,
5347 DMA_CCMD_DEVICE_INVL);
5348 }
5349
5350 /* Enable PASID support in the device, if it wasn't already */
5351 if (!info->pasid_enabled)
5352 iommu_enable_dev_iotlb(info);
5353
5354 if (info->ats_enabled) {
5355 sdev->dev_iotlb = 1;
5356 sdev->qdep = info->ats_qdep;
5357 if (sdev->qdep >= QI_DEV_EIOTLB_MAX_INVS)
5358 sdev->qdep = 0;
5359 }
5360 ret = 0;
5361
5362 out:
5363 spin_unlock(&iommu->lock);
5364 spin_unlock_irqrestore(&device_domain_lock, flags);
5365
5366 return ret;
5367}
5368
5369struct intel_iommu *intel_svm_device_to_iommu(struct device *dev)
5370{
5371 struct intel_iommu *iommu;
5372 u8 bus, devfn;
5373
5374 if (iommu_dummy(dev)) {
5375 dev_warn(dev,
5376 "No IOMMU translation for device; cannot enable SVM\n");
5377 return NULL;
5378 }
5379
5380 iommu = device_to_iommu(dev, &bus, &devfn);
5381 if ((!iommu)) {
b9997e38 5382 dev_err(dev, "No IOMMU for device; cannot enable SVM\n");
2f26e0a9
DW
5383 return NULL;
5384 }
5385
2f26e0a9
DW
5386 return iommu;
5387}
5388#endif /* CONFIG_INTEL_IOMMU_SVM */
5389
b0119e87 5390const struct iommu_ops intel_iommu_ops = {
0659b8dc
EA
5391 .capable = intel_iommu_capable,
5392 .domain_alloc = intel_iommu_domain_alloc,
5393 .domain_free = intel_iommu_domain_free,
5394 .attach_dev = intel_iommu_attach_device,
5395 .detach_dev = intel_iommu_detach_device,
5396 .map = intel_iommu_map,
5397 .unmap = intel_iommu_unmap,
0659b8dc
EA
5398 .iova_to_phys = intel_iommu_iova_to_phys,
5399 .add_device = intel_iommu_add_device,
5400 .remove_device = intel_iommu_remove_device,
5401 .get_resv_regions = intel_iommu_get_resv_regions,
5402 .put_resv_regions = intel_iommu_put_resv_regions,
5403 .device_group = pci_device_group,
5404 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
a8bcbb0d 5405};
9af88143 5406
9452618e
DV
5407static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
5408{
5409 /* G4x/GM45 integrated gfx dmar support is totally busted. */
932a6523 5410 pci_info(dev, "Disabling IOMMU for graphics on this chipset\n");
9452618e
DV
5411 dmar_map_gfx = 0;
5412}
5413
5414DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
5415DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
5416DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
5417DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
5418DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
5419DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
5420DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
5421
d34d6517 5422static void quirk_iommu_rwbf(struct pci_dev *dev)
9af88143
DW
5423{
5424 /*
5425 * Mobile 4 Series Chipset neglects to set RWBF capability,
210561ff 5426 * but needs it. Same seems to hold for the desktop versions.
9af88143 5427 */
932a6523 5428 pci_info(dev, "Forcing write-buffer flush capability\n");
9af88143
DW
5429 rwbf_quirk = 1;
5430}
5431
5432DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
210561ff
DV
5433DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
5434DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
5435DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
5436DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
5437DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
5438DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
e0fc7e0b 5439
eecfd57f
AJ
5440#define GGC 0x52
5441#define GGC_MEMORY_SIZE_MASK (0xf << 8)
5442#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
5443#define GGC_MEMORY_SIZE_1M (0x1 << 8)
5444#define GGC_MEMORY_SIZE_2M (0x3 << 8)
5445#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
5446#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
5447#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
5448#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
5449
d34d6517 5450static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
9eecabcb
DW
5451{
5452 unsigned short ggc;
5453
eecfd57f 5454 if (pci_read_config_word(dev, GGC, &ggc))
9eecabcb
DW
5455 return;
5456
eecfd57f 5457 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
932a6523 5458 pci_info(dev, "BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
9eecabcb 5459 dmar_map_gfx = 0;
6fbcfb3e
DW
5460 } else if (dmar_map_gfx) {
5461 /* we have to ensure the gfx device is idle before we flush */
932a6523 5462 pci_info(dev, "Disabling batched IOTLB flush on Ironlake\n");
6fbcfb3e
DW
5463 intel_iommu_strict = 1;
5464 }
9eecabcb
DW
5465}
5466DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
5467DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
5468DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
5469DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
5470
e0fc7e0b
DW
5471/* On Tylersburg chipsets, some BIOSes have been known to enable the
5472 ISOCH DMAR unit for the Azalia sound device, but not give it any
5473 TLB entries, which causes it to deadlock. Check for that. We do
5474 this in a function called from init_dmars(), instead of in a PCI
5475 quirk, because we don't want to print the obnoxious "BIOS broken"
5476 message if VT-d is actually disabled.
5477*/
5478static void __init check_tylersburg_isoch(void)
5479{
5480 struct pci_dev *pdev;
5481 uint32_t vtisochctrl;
5482
5483 /* If there's no Azalia in the system anyway, forget it. */
5484 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
5485 if (!pdev)
5486 return;
5487 pci_dev_put(pdev);
5488
5489 /* System Management Registers. Might be hidden, in which case
5490 we can't do the sanity check. But that's OK, because the
5491 known-broken BIOSes _don't_ actually hide it, so far. */
5492 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
5493 if (!pdev)
5494 return;
5495
5496 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
5497 pci_dev_put(pdev);
5498 return;
5499 }
5500
5501 pci_dev_put(pdev);
5502
5503 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
5504 if (vtisochctrl & 1)
5505 return;
5506
5507 /* Drop all bits other than the number of TLB entries */
5508 vtisochctrl &= 0x1c;
5509
5510 /* If we have the recommended number of TLB entries (16), fine. */
5511 if (vtisochctrl == 0x10)
5512 return;
5513
5514 /* Zero TLB entries? You get to ride the short bus to school. */
5515 if (!vtisochctrl) {
5516 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
5517 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
5518 dmi_get_system_info(DMI_BIOS_VENDOR),
5519 dmi_get_system_info(DMI_BIOS_VERSION),
5520 dmi_get_system_info(DMI_PRODUCT_VERSION));
5521 iommu_identity_mapping |= IDENTMAP_AZALIA;
5522 return;
5523 }
9f10e5bf
JR
5524
5525 pr_warn("Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
e0fc7e0b
DW
5526 vtisochctrl);
5527}