blob: 6ac6e741c46ea575c5647583c9cb97163b3eff3d [file] [log] [blame]
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001/*
David Woodhouseea8ea462014-03-05 17:09:32 +00002 * Copyright © 2006-2014 Intel Corporation.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003 *
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 *
David Woodhouseea8ea462014-03-05 17:09:32 +000013 * 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>
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020018 * Joerg Roedel <jroedel@suse.de>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070019 */
20
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020021#define pr_fmt(fmt) "DMAR: " fmt
22
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070023#include <linux/init.h>
24#include <linux/bitmap.h>
mark gross5e0d2a62008-03-04 15:22:08 -080025#include <linux/debugfs.h>
Paul Gortmaker54485c32011-10-29 10:26:25 -040026#include <linux/export.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070027#include <linux/slab.h>
28#include <linux/irq.h>
29#include <linux/interrupt.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070030#include <linux/spinlock.h>
31#include <linux/pci.h>
32#include <linux/dmar.h>
33#include <linux/dma-mapping.h>
34#include <linux/mempool.h>
Jiang Liu75f05562014-02-19 14:07:37 +080035#include <linux/memory.h>
mark gross5e0d2a62008-03-04 15:22:08 -080036#include <linux/timer.h>
Kay, Allen M38717942008-09-09 18:37:29 +030037#include <linux/iova.h>
Joerg Roedel5d450802008-12-03 14:52:32 +010038#include <linux/iommu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030039#include <linux/intel-iommu.h>
Rafael J. Wysocki134fac32011-03-23 22:16:14 +010040#include <linux/syscore_ops.h>
Shane Wang69575d32009-09-01 18:25:07 -070041#include <linux/tboot.h>
Stephen Rothwelladb2fe02009-08-31 15:24:23 +100042#include <linux/dmi.h>
Joerg Roedel5cdede22011-04-04 15:55:18 +020043#include <linux/pci-ats.h>
Tejun Heo0ee332c2011-12-08 10:22:09 -080044#include <linux/memblock.h>
Akinobu Mita36746432014-06-04 16:06:51 -070045#include <linux/dma-contiguous.h>
Joerg Roedel091d42e2015-06-12 11:56:10 +020046#include <linux/crash_dump.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070047#include <asm/irq_remapping.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070048#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090049#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070050
Joerg Roedel078e1ee2012-09-26 12:44:43 +020051#include "irq_remapping.h"
52
Fenghua Yu5b6985c2008-10-16 18:02:32 -070053#define ROOT_SIZE VTD_PAGE_SIZE
54#define CONTEXT_SIZE VTD_PAGE_SIZE
55
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070056#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
David Woodhouse18436af2015-03-25 15:05:47 +000057#define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070058#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
David Woodhousee0fc7e02009-09-30 09:12:17 -070059#define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070060
61#define IOAPIC_RANGE_START (0xfee00000)
62#define IOAPIC_RANGE_END (0xfeefffff)
63#define IOVA_START_ADDR (0x1000)
64
65#define DEFAULT_DOMAIN_ADDRESS_WIDTH 48
66
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070067#define MAX_AGAW_WIDTH 64
Jiang Liu5c645b32014-01-06 14:18:12 +080068#define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT)
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070069
David Woodhouse2ebe3152009-09-19 07:34:04 -070070#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
71#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
72
73/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
74 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
75#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
76 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
77#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070078
Robin Murphy1b722502015-01-12 17:51:15 +000079/* IO virtual address start page frame number */
80#define IOVA_START_PFN (1)
81
Mark McLoughlinf27be032008-11-20 15:49:43 +000082#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
Yang Hongyang284901a2009-04-06 19:01:15 -070083#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
Yang Hongyang6a355282009-04-06 19:01:13 -070084#define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64))
mark gross5e0d2a62008-03-04 15:22:08 -080085
Andrew Mortondf08cdc2010-09-22 13:05:11 -070086/* page table handling */
87#define LEVEL_STRIDE (9)
88#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
89
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +020090/*
91 * This bitmap is used to advertise the page sizes our hardware support
92 * to the IOMMU core, which will then use this information to split
93 * physically contiguous memory regions it is mapping into page sizes
94 * that we support.
95 *
96 * Traditionally the IOMMU core just handed us the mappings directly,
97 * after making sure the size is an order of a 4KiB page and that the
98 * mapping has natural alignment.
99 *
100 * To retain this behavior, we currently advertise that we support
101 * all page sizes that are an order of 4KiB.
102 *
103 * If at some point we'd like to utilize the IOMMU core's new behavior,
104 * we could change this to advertise the real page sizes we support.
105 */
106#define INTEL_IOMMU_PGSIZES (~0xFFFUL)
107
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700108static inline int agaw_to_level(int agaw)
109{
110 return agaw + 2;
111}
112
113static inline int agaw_to_width(int agaw)
114{
Jiang Liu5c645b32014-01-06 14:18:12 +0800115 return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700116}
117
118static inline int width_to_agaw(int width)
119{
Jiang Liu5c645b32014-01-06 14:18:12 +0800120 return DIV_ROUND_UP(width - 30, LEVEL_STRIDE);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700121}
122
123static inline unsigned int level_to_offset_bits(int level)
124{
125 return (level - 1) * LEVEL_STRIDE;
126}
127
128static inline int pfn_level_offset(unsigned long pfn, int level)
129{
130 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
131}
132
133static inline unsigned long level_mask(int level)
134{
135 return -1UL << level_to_offset_bits(level);
136}
137
138static inline unsigned long level_size(int level)
139{
140 return 1UL << level_to_offset_bits(level);
141}
142
143static inline unsigned long align_to_level(unsigned long pfn, int level)
144{
145 return (pfn + level_size(level) - 1) & level_mask(level);
146}
David Woodhousefd18de52009-05-10 23:57:41 +0100147
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100148static inline unsigned long lvl_to_nr_pages(unsigned int lvl)
149{
Jiang Liu5c645b32014-01-06 14:18:12 +0800150 return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100151}
152
David Woodhousedd4e8312009-06-27 16:21:20 +0100153/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
154 are never going to work. */
155static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
156{
157 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
158}
159
160static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
161{
162 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
163}
164static inline unsigned long page_to_dma_pfn(struct page *pg)
165{
166 return mm_to_dma_pfn(page_to_pfn(pg));
167}
168static inline unsigned long virt_to_dma_pfn(void *p)
169{
170 return page_to_dma_pfn(virt_to_page(p));
171}
172
Weidong Hand9630fe2008-12-08 11:06:32 +0800173/* global iommu list, set NULL for ignored DMAR units */
174static struct intel_iommu **g_iommus;
175
David Woodhousee0fc7e02009-09-30 09:12:17 -0700176static void __init check_tylersburg_isoch(void);
David Woodhouse9af88142009-02-13 23:18:03 +0000177static int rwbf_quirk;
178
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000179/*
Joseph Cihulab7792602011-05-03 00:08:37 -0700180 * set to 1 to panic kernel if can't successfully enable VT-d
181 * (used when kernel is launched w/ TXT)
182 */
183static int force_on = 0;
184
185/*
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000186 * 0: Present
187 * 1-11: Reserved
188 * 12-63: Context Ptr (12 - (haw-1))
189 * 64-127: Reserved
190 */
191struct root_entry {
David Woodhouse03ecc322015-02-13 14:35:21 +0000192 u64 lo;
193 u64 hi;
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000194};
195#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000196
Joerg Roedel091d42e2015-06-12 11:56:10 +0200197/*
198 * Take a root_entry and return the Lower Context Table Pointer (LCTP)
199 * if marked present.
200 */
201static phys_addr_t root_entry_lctp(struct root_entry *re)
202{
203 if (!(re->lo & 1))
204 return 0;
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000205
Joerg Roedel091d42e2015-06-12 11:56:10 +0200206 return re->lo & VTD_PAGE_MASK;
207}
208
209/*
210 * Take a root_entry and return the Upper Context Table Pointer (UCTP)
211 * if marked present.
212 */
213static phys_addr_t root_entry_uctp(struct root_entry *re)
214{
215 if (!(re->hi & 1))
216 return 0;
217
218 return re->hi & VTD_PAGE_MASK;
219}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000220/*
221 * low 64 bits:
222 * 0: present
223 * 1: fault processing disable
224 * 2-3: translation type
225 * 12-63: address space root
226 * high 64 bits:
227 * 0-2: address width
228 * 3-6: aval
229 * 8-23: domain id
230 */
231struct context_entry {
232 u64 lo;
233 u64 hi;
234};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000235
Joerg Roedelcf484d02015-06-12 12:21:46 +0200236static inline void context_clear_pasid_enable(struct context_entry *context)
237{
238 context->lo &= ~(1ULL << 11);
239}
240
241static inline bool context_pasid_enabled(struct context_entry *context)
242{
243 return !!(context->lo & (1ULL << 11));
244}
245
246static inline void context_set_copied(struct context_entry *context)
247{
248 context->hi |= (1ull << 3);
249}
250
251static inline bool context_copied(struct context_entry *context)
252{
253 return !!(context->hi & (1ULL << 3));
254}
255
256static inline bool __context_present(struct context_entry *context)
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000257{
258 return (context->lo & 1);
259}
Joerg Roedelcf484d02015-06-12 12:21:46 +0200260
261static inline bool context_present(struct context_entry *context)
262{
263 return context_pasid_enabled(context) ?
264 __context_present(context) :
265 __context_present(context) && !context_copied(context);
266}
267
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000268static inline void context_set_present(struct context_entry *context)
269{
270 context->lo |= 1;
271}
272
273static inline void context_set_fault_enable(struct context_entry *context)
274{
275 context->lo &= (((u64)-1) << 2) | 1;
276}
277
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000278static inline void context_set_translation_type(struct context_entry *context,
279 unsigned long value)
280{
281 context->lo &= (((u64)-1) << 4) | 3;
282 context->lo |= (value & 3) << 2;
283}
284
285static inline void context_set_address_root(struct context_entry *context,
286 unsigned long value)
287{
Li, Zhen-Hua1a2262f2014-11-05 15:30:19 +0800288 context->lo &= ~VTD_PAGE_MASK;
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000289 context->lo |= value & VTD_PAGE_MASK;
290}
291
292static inline void context_set_address_width(struct context_entry *context,
293 unsigned long value)
294{
295 context->hi |= value & 7;
296}
297
298static inline void context_set_domain_id(struct context_entry *context,
299 unsigned long value)
300{
301 context->hi |= (value & ((1 << 16) - 1)) << 8;
302}
303
Joerg Roedeldbcd8612015-06-12 12:02:09 +0200304static inline int context_domain_id(struct context_entry *c)
305{
306 return((c->hi >> 8) & 0xffff);
307}
308
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000309static inline void context_clear_entry(struct context_entry *context)
310{
311 context->lo = 0;
312 context->hi = 0;
313}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000314
Mark McLoughlin622ba122008-11-20 15:49:46 +0000315/*
316 * 0: readable
317 * 1: writable
318 * 2-6: reserved
319 * 7: super page
Sheng Yang9cf06692009-03-18 15:33:07 +0800320 * 8-10: available
321 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000322 * 12-63: Host physcial address
323 */
324struct dma_pte {
325 u64 val;
326};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000327
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000328static inline void dma_clear_pte(struct dma_pte *pte)
329{
330 pte->val = 0;
331}
332
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000333static inline u64 dma_pte_addr(struct dma_pte *pte)
334{
David Woodhousec85994e2009-07-01 19:21:24 +0100335#ifdef CONFIG_64BIT
336 return pte->val & VTD_PAGE_MASK;
337#else
338 /* Must have a full atomic 64-bit read */
David Woodhouse1a8bd482010-08-10 01:38:53 +0100339 return __cmpxchg64(&pte->val, 0ULL, 0ULL) & VTD_PAGE_MASK;
David Woodhousec85994e2009-07-01 19:21:24 +0100340#endif
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000341}
342
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000343static inline bool dma_pte_present(struct dma_pte *pte)
344{
345 return (pte->val & 3) != 0;
346}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000347
Allen Kay4399c8b2011-10-14 12:32:46 -0700348static inline bool dma_pte_superpage(struct dma_pte *pte)
349{
Joerg Roedelc3c75eb2014-07-04 11:19:10 +0200350 return (pte->val & DMA_PTE_LARGE_PAGE);
Allen Kay4399c8b2011-10-14 12:32:46 -0700351}
352
David Woodhouse75e6bf92009-07-02 11:21:16 +0100353static inline int first_pte_in_page(struct dma_pte *pte)
354{
355 return !((unsigned long)pte & ~VTD_PAGE_MASK);
356}
357
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700358/*
359 * This domain is a statically identity mapping domain.
360 * 1. This domain creats a static 1:1 mapping to all usable memory.
361 * 2. It maps to each iommu if successful.
362 * 3. Each iommu mapps to this domain if successful.
363 */
David Woodhouse19943b02009-08-04 16:19:20 +0100364static struct dmar_domain *si_domain;
365static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700366
Joerg Roedel28ccce02015-07-21 14:45:31 +0200367/*
368 * Domain represents a virtual machine, more than one devices
Weidong Han1ce28fe2008-12-08 16:35:39 +0800369 * across iommus may be owned in one domain, e.g. kvm guest.
370 */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800371#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 0)
Weidong Han1ce28fe2008-12-08 16:35:39 +0800372
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700373/* si_domain contains mulitple devices */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800374#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 1)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700375
Joerg Roedel29a27712015-07-21 17:17:12 +0200376#define for_each_domain_iommu(idx, domain) \
377 for (idx = 0; idx < g_num_of_iommus; idx++) \
378 if (domain->iommu_refcnt[idx])
379
Mark McLoughlin99126f72008-11-20 15:49:47 +0000380struct dmar_domain {
Suresh Siddha4c923d42009-10-02 11:01:24 -0700381 int nid; /* node id */
Joerg Roedel29a27712015-07-21 17:17:12 +0200382
383 unsigned iommu_refcnt[DMAR_UNITS_SUPPORTED];
384 /* Refcount of devices per iommu */
385
Mark McLoughlin99126f72008-11-20 15:49:47 +0000386
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +0200387 u16 iommu_did[DMAR_UNITS_SUPPORTED];
388 /* Domain ids per IOMMU. Use u16 since
389 * domain ids are 16 bit wide according
390 * to VT-d spec, section 9.3 */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000391
Joerg Roedel00a77de2015-03-26 13:43:08 +0100392 struct list_head devices; /* all devices' list */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000393 struct iova_domain iovad; /* iova's that belong to this domain */
394
395 struct dma_pte *pgd; /* virtual address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000396 int gaw; /* max guest address width */
397
398 /* adjusted guest address width, 0 is level 2 30-bit */
399 int agaw;
400
Weidong Han3b5410e2008-12-08 09:17:15 +0800401 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800402
403 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800404 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800405 int iommu_count; /* reference count of iommu */
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100406 int iommu_superpage;/* Level of superpages supported:
407 0 == 4KiB (no superpages), 1 == 2MiB,
408 2 == 1GiB, 3 == 512GiB, 4 == 1TiB */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800409 u64 max_addr; /* maximum mapped address */
Joerg Roedel00a77de2015-03-26 13:43:08 +0100410
411 struct iommu_domain domain; /* generic domain data structure for
412 iommu core */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000413};
414
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000415/* PCI domain-device relationship */
416struct device_domain_info {
417 struct list_head link; /* link to domain siblings */
418 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100419 u8 bus; /* PCI bus number */
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000420 u8 devfn; /* PCI devfn number */
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -0500421 struct {
422 u8 enabled:1;
423 u8 qdep;
424 } ats; /* ATS state */
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000425 struct device *dev; /* it's NULL for PCIe-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800426 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000427 struct dmar_domain *domain; /* pointer to domain */
428};
429
Jiang Liub94e4112014-02-19 14:07:25 +0800430struct dmar_rmrr_unit {
431 struct list_head list; /* list of rmrr units */
432 struct acpi_dmar_header *hdr; /* ACPI header */
433 u64 base_address; /* reserved base address*/
434 u64 end_address; /* reserved end address */
David Woodhouse832bd852014-03-07 15:08:36 +0000435 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800436 int devices_cnt; /* target device count */
437};
438
439struct dmar_atsr_unit {
440 struct list_head list; /* list of ATSR units */
441 struct acpi_dmar_header *hdr; /* ACPI header */
David Woodhouse832bd852014-03-07 15:08:36 +0000442 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800443 int devices_cnt; /* target device count */
444 u8 include_all:1; /* include all ports */
445};
446
447static LIST_HEAD(dmar_atsr_units);
448static LIST_HEAD(dmar_rmrr_units);
449
450#define for_each_rmrr_units(rmrr) \
451 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
452
mark gross5e0d2a62008-03-04 15:22:08 -0800453static void flush_unmaps_timeout(unsigned long data);
454
Jiang Liub707cb02014-01-06 14:18:26 +0800455static DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
mark gross5e0d2a62008-03-04 15:22:08 -0800456
mark gross80b20dd2008-04-18 13:53:58 -0700457#define HIGH_WATER_MARK 250
458struct deferred_flush_tables {
459 int next;
460 struct iova *iova[HIGH_WATER_MARK];
461 struct dmar_domain *domain[HIGH_WATER_MARK];
David Woodhouseea8ea462014-03-05 17:09:32 +0000462 struct page *freelist[HIGH_WATER_MARK];
mark gross80b20dd2008-04-18 13:53:58 -0700463};
464
465static struct deferred_flush_tables *deferred_flush;
466
mark gross5e0d2a62008-03-04 15:22:08 -0800467/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800468static int g_num_of_iommus;
469
470static DEFINE_SPINLOCK(async_umap_flush_lock);
471static LIST_HEAD(unmaps_to_do);
472
473static int timer_on;
474static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800475
Jiang Liu92d03cc2014-02-19 14:07:28 +0800476static void domain_exit(struct dmar_domain *domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700477static void domain_remove_dev_info(struct dmar_domain *domain);
Joerg Roedele6de0f82015-07-22 16:30:36 +0200478static void dmar_remove_one_dev_info(struct dmar_domain *domain,
479 struct device *dev);
Joerg Roedel127c7612015-07-23 17:44:46 +0200480static void __dmar_remove_one_dev_info(struct device_domain_info *info);
Joerg Roedel2452d9d2015-07-23 16:20:14 +0200481static void domain_context_clear(struct intel_iommu *iommu,
482 struct device *dev);
Jiang Liu2a46ddf2014-07-11 14:19:30 +0800483static int domain_detach_iommu(struct dmar_domain *domain,
484 struct intel_iommu *iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700485
Suresh Siddhad3f13812011-08-23 17:05:25 -0700486#ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800487int dmar_disabled = 0;
488#else
489int dmar_disabled = 1;
Suresh Siddhad3f13812011-08-23 17:05:25 -0700490#endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800491
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -0200492int intel_iommu_enabled = 0;
493EXPORT_SYMBOL_GPL(intel_iommu_enabled);
494
David Woodhouse2d9e6672010-06-15 10:57:57 +0100495static int dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700496static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800497static int intel_iommu_strict;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100498static int intel_iommu_superpage = 1;
David Woodhousec83b2f22015-06-12 10:15:49 +0100499static int intel_iommu_ecs = 1;
500
501/* We only actually use ECS when PASID support (on the new bit 40)
502 * is also advertised. Some early implementations — the ones with
503 * PASID support on bit 28 — have issues even when we *only* use
504 * extended root/context tables. */
505#define ecs_enabled(iommu) (intel_iommu_ecs && ecap_ecs(iommu->ecap) && \
506 ecap_pasid(iommu->ecap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700507
David Woodhousec0771df2011-10-14 20:59:46 +0100508int intel_iommu_gfx_mapped;
509EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped);
510
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700511#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
512static DEFINE_SPINLOCK(device_domain_lock);
513static LIST_HEAD(device_domain_list);
514
Thierry Redingb22f6432014-06-27 09:03:12 +0200515static const struct iommu_ops intel_iommu_ops;
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100516
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200517static bool translation_pre_enabled(struct intel_iommu *iommu)
518{
519 return (iommu->flags & VTD_FLAG_TRANS_PRE_ENABLED);
520}
521
Joerg Roedel091d42e2015-06-12 11:56:10 +0200522static void clear_translation_pre_enabled(struct intel_iommu *iommu)
523{
524 iommu->flags &= ~VTD_FLAG_TRANS_PRE_ENABLED;
525}
526
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200527static void init_translation_status(struct intel_iommu *iommu)
528{
529 u32 gsts;
530
531 gsts = readl(iommu->reg + DMAR_GSTS_REG);
532 if (gsts & DMA_GSTS_TES)
533 iommu->flags |= VTD_FLAG_TRANS_PRE_ENABLED;
534}
535
Joerg Roedel00a77de2015-03-26 13:43:08 +0100536/* Convert generic 'struct iommu_domain to private struct dmar_domain */
537static struct dmar_domain *to_dmar_domain(struct iommu_domain *dom)
538{
539 return container_of(dom, struct dmar_domain, domain);
540}
541
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700542static int __init intel_iommu_setup(char *str)
543{
544 if (!str)
545 return -EINVAL;
546 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800547 if (!strncmp(str, "on", 2)) {
548 dmar_disabled = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200549 pr_info("IOMMU enabled\n");
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800550 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700551 dmar_disabled = 1;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200552 pr_info("IOMMU disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700553 } else if (!strncmp(str, "igfx_off", 8)) {
554 dmar_map_gfx = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200555 pr_info("Disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700556 } else if (!strncmp(str, "forcedac", 8)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200557 pr_info("Forcing DAC for PCI devices\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700558 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800559 } else if (!strncmp(str, "strict", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200560 pr_info("Disable batched IOTLB flush\n");
mark gross5e0d2a62008-03-04 15:22:08 -0800561 intel_iommu_strict = 1;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100562 } else if (!strncmp(str, "sp_off", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200563 pr_info("Disable supported super page\n");
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100564 intel_iommu_superpage = 0;
David Woodhousec83b2f22015-06-12 10:15:49 +0100565 } else if (!strncmp(str, "ecs_off", 7)) {
566 printk(KERN_INFO
567 "Intel-IOMMU: disable extended context table support\n");
568 intel_iommu_ecs = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700569 }
570
571 str += strcspn(str, ",");
572 while (*str == ',')
573 str++;
574 }
575 return 0;
576}
577__setup("intel_iommu=", intel_iommu_setup);
578
579static struct kmem_cache *iommu_domain_cache;
580static struct kmem_cache *iommu_devinfo_cache;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700581
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200582static struct dmar_domain* get_iommu_domain(struct intel_iommu *iommu, u16 did)
583{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200584 struct dmar_domain **domains;
585 int idx = did >> 8;
586
587 domains = iommu->domains[idx];
588 if (!domains)
589 return NULL;
590
591 return domains[did & 0xff];
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200592}
593
594static void set_iommu_domain(struct intel_iommu *iommu, u16 did,
595 struct dmar_domain *domain)
596{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200597 struct dmar_domain **domains;
598 int idx = did >> 8;
599
600 if (!iommu->domains[idx]) {
601 size_t size = 256 * sizeof(struct dmar_domain *);
602 iommu->domains[idx] = kzalloc(size, GFP_ATOMIC);
603 }
604
605 domains = iommu->domains[idx];
606 if (WARN_ON(!domains))
607 return;
608 else
609 domains[did & 0xff] = domain;
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200610}
611
Suresh Siddha4c923d42009-10-02 11:01:24 -0700612static inline void *alloc_pgtable_page(int node)
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700613{
Suresh Siddha4c923d42009-10-02 11:01:24 -0700614 struct page *page;
615 void *vaddr = NULL;
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700616
Suresh Siddha4c923d42009-10-02 11:01:24 -0700617 page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0);
618 if (page)
619 vaddr = page_address(page);
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700620 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700621}
622
623static inline void free_pgtable_page(void *vaddr)
624{
625 free_page((unsigned long)vaddr);
626}
627
628static inline void *alloc_domain_mem(void)
629{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900630 return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700631}
632
Kay, Allen M38717942008-09-09 18:37:29 +0300633static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700634{
635 kmem_cache_free(iommu_domain_cache, vaddr);
636}
637
638static inline void * alloc_devinfo_mem(void)
639{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900640 return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700641}
642
643static inline void free_devinfo_mem(void *vaddr)
644{
645 kmem_cache_free(iommu_devinfo_cache, vaddr);
646}
647
Jiang Liuab8dfe22014-07-11 14:19:27 +0800648static inline int domain_type_is_vm(struct dmar_domain *domain)
649{
650 return domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE;
651}
652
Joerg Roedel28ccce02015-07-21 14:45:31 +0200653static inline int domain_type_is_si(struct dmar_domain *domain)
654{
655 return domain->flags & DOMAIN_FLAG_STATIC_IDENTITY;
656}
657
Jiang Liuab8dfe22014-07-11 14:19:27 +0800658static inline int domain_type_is_vm_or_si(struct dmar_domain *domain)
659{
660 return domain->flags & (DOMAIN_FLAG_VIRTUAL_MACHINE |
661 DOMAIN_FLAG_STATIC_IDENTITY);
662}
Weidong Han1b573682008-12-08 15:34:06 +0800663
Jiang Liu162d1b12014-07-11 14:19:35 +0800664static inline int domain_pfn_supported(struct dmar_domain *domain,
665 unsigned long pfn)
666{
667 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
668
669 return !(addr_width < BITS_PER_LONG && pfn >> addr_width);
670}
671
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700672static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800673{
674 unsigned long sagaw;
675 int agaw = -1;
676
677 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700678 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800679 agaw >= 0; agaw--) {
680 if (test_bit(agaw, &sagaw))
681 break;
682 }
683
684 return agaw;
685}
686
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700687/*
688 * Calculate max SAGAW for each iommu.
689 */
690int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
691{
692 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
693}
694
695/*
696 * calculate agaw for each iommu.
697 * "SAGAW" may be different across iommus, use a default agaw, and
698 * get a supported less agaw for iommus that don't support the default agaw.
699 */
700int iommu_calculate_agaw(struct intel_iommu *iommu)
701{
702 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
703}
704
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700705/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800706static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
707{
708 int iommu_id;
709
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700710 /* si_domain and vm domain should not get here. */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800711 BUG_ON(domain_type_is_vm_or_si(domain));
Joerg Roedel29a27712015-07-21 17:17:12 +0200712 for_each_domain_iommu(iommu_id, domain)
713 break;
714
Weidong Han8c11e792008-12-08 15:29:22 +0800715 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
716 return NULL;
717
718 return g_iommus[iommu_id];
719}
720
Weidong Han8e6040972008-12-08 15:49:06 +0800721static void domain_update_iommu_coherency(struct dmar_domain *domain)
722{
David Woodhoused0501962014-03-11 17:10:29 -0700723 struct dmar_drhd_unit *drhd;
724 struct intel_iommu *iommu;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100725 bool found = false;
726 int i;
Weidong Han8e6040972008-12-08 15:49:06 +0800727
David Woodhoused0501962014-03-11 17:10:29 -0700728 domain->iommu_coherency = 1;
Weidong Han8e6040972008-12-08 15:49:06 +0800729
Joerg Roedel29a27712015-07-21 17:17:12 +0200730 for_each_domain_iommu(i, domain) {
Quentin Lambert2f119c72015-02-06 10:59:53 +0100731 found = true;
Weidong Han8e6040972008-12-08 15:49:06 +0800732 if (!ecap_coherent(g_iommus[i]->ecap)) {
733 domain->iommu_coherency = 0;
734 break;
735 }
Weidong Han8e6040972008-12-08 15:49:06 +0800736 }
David Woodhoused0501962014-03-11 17:10:29 -0700737 if (found)
738 return;
739
740 /* No hardware attached; use lowest common denominator */
741 rcu_read_lock();
742 for_each_active_iommu(iommu, drhd) {
743 if (!ecap_coherent(iommu->ecap)) {
744 domain->iommu_coherency = 0;
745 break;
746 }
747 }
748 rcu_read_unlock();
Weidong Han8e6040972008-12-08 15:49:06 +0800749}
750
Jiang Liu161f6932014-07-11 14:19:37 +0800751static int domain_update_iommu_snooping(struct intel_iommu *skip)
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100752{
Allen Kay8140a952011-10-14 12:32:17 -0700753 struct dmar_drhd_unit *drhd;
Jiang Liu161f6932014-07-11 14:19:37 +0800754 struct intel_iommu *iommu;
755 int ret = 1;
756
757 rcu_read_lock();
758 for_each_active_iommu(iommu, drhd) {
759 if (iommu != skip) {
760 if (!ecap_sc_support(iommu->ecap)) {
761 ret = 0;
762 break;
763 }
764 }
765 }
766 rcu_read_unlock();
767
768 return ret;
769}
770
771static int domain_update_iommu_superpage(struct intel_iommu *skip)
772{
773 struct dmar_drhd_unit *drhd;
774 struct intel_iommu *iommu;
Allen Kay8140a952011-10-14 12:32:17 -0700775 int mask = 0xf;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100776
777 if (!intel_iommu_superpage) {
Jiang Liu161f6932014-07-11 14:19:37 +0800778 return 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100779 }
780
Allen Kay8140a952011-10-14 12:32:17 -0700781 /* set iommu_superpage to the smallest common denominator */
Jiang Liu0e242612014-02-19 14:07:34 +0800782 rcu_read_lock();
Allen Kay8140a952011-10-14 12:32:17 -0700783 for_each_active_iommu(iommu, drhd) {
Jiang Liu161f6932014-07-11 14:19:37 +0800784 if (iommu != skip) {
785 mask &= cap_super_page_val(iommu->cap);
786 if (!mask)
787 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100788 }
789 }
Jiang Liu0e242612014-02-19 14:07:34 +0800790 rcu_read_unlock();
791
Jiang Liu161f6932014-07-11 14:19:37 +0800792 return fls(mask);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100793}
794
Sheng Yang58c610b2009-03-18 15:33:05 +0800795/* Some capabilities may be different across iommus */
796static void domain_update_iommu_cap(struct dmar_domain *domain)
797{
798 domain_update_iommu_coherency(domain);
Jiang Liu161f6932014-07-11 14:19:37 +0800799 domain->iommu_snooping = domain_update_iommu_snooping(NULL);
800 domain->iommu_superpage = domain_update_iommu_superpage(NULL);
Sheng Yang58c610b2009-03-18 15:33:05 +0800801}
802
David Woodhouse03ecc322015-02-13 14:35:21 +0000803static inline struct context_entry *iommu_context_addr(struct intel_iommu *iommu,
804 u8 bus, u8 devfn, int alloc)
805{
806 struct root_entry *root = &iommu->root_entry[bus];
807 struct context_entry *context;
808 u64 *entry;
809
Joerg Roedel4df4eab2015-08-25 10:54:28 +0200810 entry = &root->lo;
David Woodhousec83b2f22015-06-12 10:15:49 +0100811 if (ecs_enabled(iommu)) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000812 if (devfn >= 0x80) {
813 devfn -= 0x80;
814 entry = &root->hi;
815 }
816 devfn *= 2;
817 }
David Woodhouse03ecc322015-02-13 14:35:21 +0000818 if (*entry & 1)
819 context = phys_to_virt(*entry & VTD_PAGE_MASK);
820 else {
821 unsigned long phy_addr;
822 if (!alloc)
823 return NULL;
824
825 context = alloc_pgtable_page(iommu->node);
826 if (!context)
827 return NULL;
828
829 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
830 phy_addr = virt_to_phys((void *)context);
831 *entry = phy_addr | 1;
832 __iommu_flush_cache(iommu, entry, sizeof(*entry));
833 }
834 return &context[devfn];
835}
836
David Woodhouse4ed6a542015-05-11 14:59:20 +0100837static int iommu_dummy(struct device *dev)
838{
839 return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
840}
841
David Woodhouse156baca2014-03-09 14:00:57 -0700842static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800843{
844 struct dmar_drhd_unit *drhd = NULL;
Jiang Liub683b232014-02-19 14:07:32 +0800845 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -0700846 struct device *tmp;
847 struct pci_dev *ptmp, *pdev = NULL;
Yijing Wangaa4d0662014-05-26 20:14:06 +0800848 u16 segment = 0;
Weidong Hanc7151a82008-12-08 22:51:37 +0800849 int i;
850
David Woodhouse4ed6a542015-05-11 14:59:20 +0100851 if (iommu_dummy(dev))
852 return NULL;
853
David Woodhouse156baca2014-03-09 14:00:57 -0700854 if (dev_is_pci(dev)) {
855 pdev = to_pci_dev(dev);
856 segment = pci_domain_nr(pdev->bus);
Rafael J. Wysockica5b74d2015-03-16 23:49:08 +0100857 } else if (has_acpi_companion(dev))
David Woodhouse156baca2014-03-09 14:00:57 -0700858 dev = &ACPI_COMPANION(dev)->dev;
859
Jiang Liu0e242612014-02-19 14:07:34 +0800860 rcu_read_lock();
Jiang Liub683b232014-02-19 14:07:32 +0800861 for_each_active_iommu(iommu, drhd) {
David Woodhouse156baca2014-03-09 14:00:57 -0700862 if (pdev && segment != drhd->segment)
David Woodhouse276dbf992009-04-04 01:45:37 +0100863 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800864
Jiang Liub683b232014-02-19 14:07:32 +0800865 for_each_active_dev_scope(drhd->devices,
David Woodhouse156baca2014-03-09 14:00:57 -0700866 drhd->devices_cnt, i, tmp) {
867 if (tmp == dev) {
868 *bus = drhd->devices[i].bus;
869 *devfn = drhd->devices[i].devfn;
870 goto out;
871 }
872
873 if (!pdev || !dev_is_pci(tmp))
David Woodhouse832bd852014-03-07 15:08:36 +0000874 continue;
David Woodhouse156baca2014-03-09 14:00:57 -0700875
876 ptmp = to_pci_dev(tmp);
877 if (ptmp->subordinate &&
878 ptmp->subordinate->number <= pdev->bus->number &&
879 ptmp->subordinate->busn_res.end >= pdev->bus->number)
880 goto got_pdev;
David Woodhouse924b6232009-04-04 00:39:25 +0100881 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800882
David Woodhouse156baca2014-03-09 14:00:57 -0700883 if (pdev && drhd->include_all) {
884 got_pdev:
885 *bus = pdev->bus->number;
886 *devfn = pdev->devfn;
Jiang Liub683b232014-02-19 14:07:32 +0800887 goto out;
David Woodhouse156baca2014-03-09 14:00:57 -0700888 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800889 }
Jiang Liub683b232014-02-19 14:07:32 +0800890 iommu = NULL;
David Woodhouse156baca2014-03-09 14:00:57 -0700891 out:
Jiang Liu0e242612014-02-19 14:07:34 +0800892 rcu_read_unlock();
Weidong Hanc7151a82008-12-08 22:51:37 +0800893
Jiang Liub683b232014-02-19 14:07:32 +0800894 return iommu;
Weidong Hanc7151a82008-12-08 22:51:37 +0800895}
896
Weidong Han5331fe62008-12-08 23:00:00 +0800897static void domain_flush_cache(struct dmar_domain *domain,
898 void *addr, int size)
899{
900 if (!domain->iommu_coherency)
901 clflush_cache_range(addr, size);
902}
903
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700904static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
905{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700906 struct context_entry *context;
David Woodhouse03ecc322015-02-13 14:35:21 +0000907 int ret = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700908 unsigned long flags;
909
910 spin_lock_irqsave(&iommu->lock, flags);
David Woodhouse03ecc322015-02-13 14:35:21 +0000911 context = iommu_context_addr(iommu, bus, devfn, 0);
912 if (context)
913 ret = context_present(context);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700914 spin_unlock_irqrestore(&iommu->lock, flags);
915 return ret;
916}
917
918static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
919{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700920 struct context_entry *context;
921 unsigned long flags;
922
923 spin_lock_irqsave(&iommu->lock, flags);
David Woodhouse03ecc322015-02-13 14:35:21 +0000924 context = iommu_context_addr(iommu, bus, devfn, 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700925 if (context) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000926 context_clear_entry(context);
927 __iommu_flush_cache(iommu, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700928 }
929 spin_unlock_irqrestore(&iommu->lock, flags);
930}
931
932static void free_context_table(struct intel_iommu *iommu)
933{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700934 int i;
935 unsigned long flags;
936 struct context_entry *context;
937
938 spin_lock_irqsave(&iommu->lock, flags);
939 if (!iommu->root_entry) {
940 goto out;
941 }
942 for (i = 0; i < ROOT_ENTRY_NR; i++) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000943 context = iommu_context_addr(iommu, i, 0, 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700944 if (context)
945 free_pgtable_page(context);
David Woodhouse03ecc322015-02-13 14:35:21 +0000946
David Woodhousec83b2f22015-06-12 10:15:49 +0100947 if (!ecs_enabled(iommu))
David Woodhouse03ecc322015-02-13 14:35:21 +0000948 continue;
949
950 context = iommu_context_addr(iommu, i, 0x80, 0);
951 if (context)
952 free_pgtable_page(context);
953
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700954 }
955 free_pgtable_page(iommu->root_entry);
956 iommu->root_entry = NULL;
957out:
958 spin_unlock_irqrestore(&iommu->lock, flags);
959}
960
David Woodhouseb026fd22009-06-28 10:37:25 +0100961static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
David Woodhouse5cf0a762014-03-19 16:07:49 +0000962 unsigned long pfn, int *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700963{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700964 struct dma_pte *parent, *pte = NULL;
965 int level = agaw_to_level(domain->agaw);
Allen Kay4399c8b2011-10-14 12:32:46 -0700966 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700967
968 BUG_ON(!domain->pgd);
Julian Stecklinaf9423602013-10-09 10:03:52 +0200969
Jiang Liu162d1b12014-07-11 14:19:35 +0800970 if (!domain_pfn_supported(domain, pfn))
Julian Stecklinaf9423602013-10-09 10:03:52 +0200971 /* Address beyond IOMMU's addressing capabilities. */
972 return NULL;
973
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700974 parent = domain->pgd;
975
David Woodhouse5cf0a762014-03-19 16:07:49 +0000976 while (1) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700977 void *tmp_page;
978
David Woodhouseb026fd22009-06-28 10:37:25 +0100979 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700980 pte = &parent[offset];
David Woodhouse5cf0a762014-03-19 16:07:49 +0000981 if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte)))
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100982 break;
David Woodhouse5cf0a762014-03-19 16:07:49 +0000983 if (level == *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700984 break;
985
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000986 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100987 uint64_t pteval;
988
Suresh Siddha4c923d42009-10-02 11:01:24 -0700989 tmp_page = alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700990
David Woodhouse206a73c2009-07-01 19:30:28 +0100991 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700992 return NULL;
David Woodhouse206a73c2009-07-01 19:30:28 +0100993
David Woodhousec85994e2009-07-01 19:21:24 +0100994 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
Benjamin LaHaise64de5af2009-09-16 21:05:55 -0400995 pteval = ((uint64_t)virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
Yijing Wangeffad4b2014-05-26 20:13:47 +0800996 if (cmpxchg64(&pte->val, 0ULL, pteval))
David Woodhousec85994e2009-07-01 19:21:24 +0100997 /* Someone else set it while we were thinking; use theirs. */
998 free_pgtable_page(tmp_page);
Yijing Wangeffad4b2014-05-26 20:13:47 +0800999 else
David Woodhousec85994e2009-07-01 19:21:24 +01001000 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001001 }
David Woodhouse5cf0a762014-03-19 16:07:49 +00001002 if (level == 1)
1003 break;
1004
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001005 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001006 level--;
1007 }
1008
David Woodhouse5cf0a762014-03-19 16:07:49 +00001009 if (!*target_level)
1010 *target_level = level;
1011
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001012 return pte;
1013}
1014
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001015
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001016/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +01001017static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
1018 unsigned long pfn,
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001019 int level, int *large_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001020{
1021 struct dma_pte *parent, *pte = NULL;
1022 int total = agaw_to_level(domain->agaw);
1023 int offset;
1024
1025 parent = domain->pgd;
1026 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +01001027 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001028 pte = &parent[offset];
1029 if (level == total)
1030 return pte;
1031
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001032 if (!dma_pte_present(pte)) {
1033 *large_page = total;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001034 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001035 }
1036
Yijing Wange16922a2014-05-20 20:37:51 +08001037 if (dma_pte_superpage(pte)) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001038 *large_page = total;
1039 return pte;
1040 }
1041
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001042 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001043 total--;
1044 }
1045 return NULL;
1046}
1047
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001048/* clear last level pte, a tlb flush should be followed */
David Woodhouse5cf0a762014-03-19 16:07:49 +00001049static void dma_pte_clear_range(struct dmar_domain *domain,
David Woodhouse595badf52009-06-27 22:09:11 +01001050 unsigned long start_pfn,
1051 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001052{
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001053 unsigned int large_page = 1;
David Woodhouse310a5ab2009-06-28 18:52:20 +01001054 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001055
Jiang Liu162d1b12014-07-11 14:19:35 +08001056 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1057 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -07001058 BUG_ON(start_pfn > last_pfn);
David Woodhouse66eae842009-06-27 19:00:32 +01001059
David Woodhouse04b18e62009-06-27 19:15:01 +01001060 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse59c36282009-09-19 07:36:28 -07001061 do {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001062 large_page = 1;
1063 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001064 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001065 start_pfn = align_to_level(start_pfn + 1, large_page + 1);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001066 continue;
1067 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001068 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +01001069 dma_clear_pte(pte);
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001070 start_pfn += lvl_to_nr_pages(large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001071 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +01001072 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
1073
David Woodhouse310a5ab2009-06-28 18:52:20 +01001074 domain_flush_cache(domain, first_pte,
1075 (void *)pte - (void *)first_pte);
David Woodhouse59c36282009-09-19 07:36:28 -07001076
1077 } while (start_pfn && start_pfn <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001078}
1079
Alex Williamson3269ee02013-06-15 10:27:19 -06001080static void dma_pte_free_level(struct dmar_domain *domain, int level,
1081 struct dma_pte *pte, unsigned long pfn,
1082 unsigned long start_pfn, unsigned long last_pfn)
1083{
1084 pfn = max(start_pfn, pfn);
1085 pte = &pte[pfn_level_offset(pfn, level)];
1086
1087 do {
1088 unsigned long level_pfn;
1089 struct dma_pte *level_pte;
1090
1091 if (!dma_pte_present(pte) || dma_pte_superpage(pte))
1092 goto next;
1093
1094 level_pfn = pfn & level_mask(level - 1);
1095 level_pte = phys_to_virt(dma_pte_addr(pte));
1096
1097 if (level > 2)
1098 dma_pte_free_level(domain, level - 1, level_pte,
1099 level_pfn, start_pfn, last_pfn);
1100
1101 /* If range covers entire pagetable, free it */
1102 if (!(start_pfn > level_pfn ||
Alex Williamson08336fd2014-01-21 15:48:18 -08001103 last_pfn < level_pfn + level_size(level) - 1)) {
Alex Williamson3269ee02013-06-15 10:27:19 -06001104 dma_clear_pte(pte);
1105 domain_flush_cache(domain, pte, sizeof(*pte));
1106 free_pgtable_page(level_pte);
1107 }
1108next:
1109 pfn += level_size(level);
1110 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1111}
1112
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001113/* free page table pages. last level pte should already be cleared */
1114static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +01001115 unsigned long start_pfn,
1116 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001117{
Jiang Liu162d1b12014-07-11 14:19:35 +08001118 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1119 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -07001120 BUG_ON(start_pfn > last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001121
Jiang Liud41a4ad2014-07-11 14:19:34 +08001122 dma_pte_clear_range(domain, start_pfn, last_pfn);
1123
David Woodhousef3a0a522009-06-30 03:40:07 +01001124 /* We don't need lock here; nobody else touches the iova range */
Alex Williamson3269ee02013-06-15 10:27:19 -06001125 dma_pte_free_level(domain, agaw_to_level(domain->agaw),
1126 domain->pgd, 0, start_pfn, last_pfn);
David Woodhouse6660c632009-06-27 22:41:00 +01001127
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001128 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +01001129 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001130 free_pgtable_page(domain->pgd);
1131 domain->pgd = NULL;
1132 }
1133}
1134
David Woodhouseea8ea462014-03-05 17:09:32 +00001135/* When a page at a given level is being unlinked from its parent, we don't
1136 need to *modify* it at all. All we need to do is make a list of all the
1137 pages which can be freed just as soon as we've flushed the IOTLB and we
1138 know the hardware page-walk will no longer touch them.
1139 The 'pte' argument is the *parent* PTE, pointing to the page that is to
1140 be freed. */
1141static struct page *dma_pte_list_pagetables(struct dmar_domain *domain,
1142 int level, struct dma_pte *pte,
1143 struct page *freelist)
1144{
1145 struct page *pg;
1146
1147 pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT);
1148 pg->freelist = freelist;
1149 freelist = pg;
1150
1151 if (level == 1)
1152 return freelist;
1153
Jiang Liuadeb2592014-04-09 10:20:39 +08001154 pte = page_address(pg);
1155 do {
David Woodhouseea8ea462014-03-05 17:09:32 +00001156 if (dma_pte_present(pte) && !dma_pte_superpage(pte))
1157 freelist = dma_pte_list_pagetables(domain, level - 1,
1158 pte, freelist);
Jiang Liuadeb2592014-04-09 10:20:39 +08001159 pte++;
1160 } while (!first_pte_in_page(pte));
David Woodhouseea8ea462014-03-05 17:09:32 +00001161
1162 return freelist;
1163}
1164
1165static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level,
1166 struct dma_pte *pte, unsigned long pfn,
1167 unsigned long start_pfn,
1168 unsigned long last_pfn,
1169 struct page *freelist)
1170{
1171 struct dma_pte *first_pte = NULL, *last_pte = NULL;
1172
1173 pfn = max(start_pfn, pfn);
1174 pte = &pte[pfn_level_offset(pfn, level)];
1175
1176 do {
1177 unsigned long level_pfn;
1178
1179 if (!dma_pte_present(pte))
1180 goto next;
1181
1182 level_pfn = pfn & level_mask(level);
1183
1184 /* If range covers entire pagetable, free it */
1185 if (start_pfn <= level_pfn &&
1186 last_pfn >= level_pfn + level_size(level) - 1) {
1187 /* These suborbinate page tables are going away entirely. Don't
1188 bother to clear them; we're just going to *free* them. */
1189 if (level > 1 && !dma_pte_superpage(pte))
1190 freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist);
1191
1192 dma_clear_pte(pte);
1193 if (!first_pte)
1194 first_pte = pte;
1195 last_pte = pte;
1196 } else if (level > 1) {
1197 /* Recurse down into a level that isn't *entirely* obsolete */
1198 freelist = dma_pte_clear_level(domain, level - 1,
1199 phys_to_virt(dma_pte_addr(pte)),
1200 level_pfn, start_pfn, last_pfn,
1201 freelist);
1202 }
1203next:
1204 pfn += level_size(level);
1205 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1206
1207 if (first_pte)
1208 domain_flush_cache(domain, first_pte,
1209 (void *)++last_pte - (void *)first_pte);
1210
1211 return freelist;
1212}
1213
1214/* We can't just free the pages because the IOMMU may still be walking
1215 the page tables, and may have cached the intermediate levels. The
1216 pages can only be freed after the IOTLB flush has been done. */
Joerg Roedelb6904202015-08-13 11:32:18 +02001217static struct page *domain_unmap(struct dmar_domain *domain,
1218 unsigned long start_pfn,
1219 unsigned long last_pfn)
David Woodhouseea8ea462014-03-05 17:09:32 +00001220{
David Woodhouseea8ea462014-03-05 17:09:32 +00001221 struct page *freelist = NULL;
1222
Jiang Liu162d1b12014-07-11 14:19:35 +08001223 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1224 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouseea8ea462014-03-05 17:09:32 +00001225 BUG_ON(start_pfn > last_pfn);
1226
1227 /* we don't need lock here; nobody else touches the iova range */
1228 freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw),
1229 domain->pgd, 0, start_pfn, last_pfn, NULL);
1230
1231 /* free pgd */
1232 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
1233 struct page *pgd_page = virt_to_page(domain->pgd);
1234 pgd_page->freelist = freelist;
1235 freelist = pgd_page;
1236
1237 domain->pgd = NULL;
1238 }
1239
1240 return freelist;
1241}
1242
Joerg Roedelb6904202015-08-13 11:32:18 +02001243static void dma_free_pagelist(struct page *freelist)
David Woodhouseea8ea462014-03-05 17:09:32 +00001244{
1245 struct page *pg;
1246
1247 while ((pg = freelist)) {
1248 freelist = pg->freelist;
1249 free_pgtable_page(page_address(pg));
1250 }
1251}
1252
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001253/* iommu handling */
1254static int iommu_alloc_root_entry(struct intel_iommu *iommu)
1255{
1256 struct root_entry *root;
1257 unsigned long flags;
1258
Suresh Siddha4c923d42009-10-02 11:01:24 -07001259 root = (struct root_entry *)alloc_pgtable_page(iommu->node);
Jiang Liuffebeb42014-11-09 22:48:02 +08001260 if (!root) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001261 pr_err("Allocating root entry for %s failed\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08001262 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001263 return -ENOMEM;
Jiang Liuffebeb42014-11-09 22:48:02 +08001264 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001265
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001266 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001267
1268 spin_lock_irqsave(&iommu->lock, flags);
1269 iommu->root_entry = root;
1270 spin_unlock_irqrestore(&iommu->lock, flags);
1271
1272 return 0;
1273}
1274
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001275static void iommu_set_root_entry(struct intel_iommu *iommu)
1276{
David Woodhouse03ecc322015-02-13 14:35:21 +00001277 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +01001278 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001279 unsigned long flag;
1280
David Woodhouse03ecc322015-02-13 14:35:21 +00001281 addr = virt_to_phys(iommu->root_entry);
David Woodhousec83b2f22015-06-12 10:15:49 +01001282 if (ecs_enabled(iommu))
David Woodhouse03ecc322015-02-13 14:35:21 +00001283 addr |= DMA_RTADDR_RTT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001284
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001285 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse03ecc322015-02-13 14:35:21 +00001286 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, addr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001287
David Woodhousec416daa2009-05-10 20:30:58 +01001288 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001289
1290 /* Make sure hardware complete it */
1291 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001292 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001293
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001294 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001295}
1296
1297static void iommu_flush_write_buffer(struct intel_iommu *iommu)
1298{
1299 u32 val;
1300 unsigned long flag;
1301
David Woodhouse9af88142009-02-13 23:18:03 +00001302 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001303 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001304
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001305 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +01001306 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001307
1308 /* Make sure hardware complete it */
1309 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001310 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001311
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001312 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001313}
1314
1315/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001316static void __iommu_flush_context(struct intel_iommu *iommu,
1317 u16 did, u16 source_id, u8 function_mask,
1318 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001319{
1320 u64 val = 0;
1321 unsigned long flag;
1322
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001323 switch (type) {
1324 case DMA_CCMD_GLOBAL_INVL:
1325 val = DMA_CCMD_GLOBAL_INVL;
1326 break;
1327 case DMA_CCMD_DOMAIN_INVL:
1328 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
1329 break;
1330 case DMA_CCMD_DEVICE_INVL:
1331 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
1332 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
1333 break;
1334 default:
1335 BUG();
1336 }
1337 val |= DMA_CCMD_ICC;
1338
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001339 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001340 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
1341
1342 /* Make sure hardware complete it */
1343 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
1344 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
1345
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001346 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001347}
1348
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001349/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001350static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
1351 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001352{
1353 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
1354 u64 val = 0, val_iva = 0;
1355 unsigned long flag;
1356
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001357 switch (type) {
1358 case DMA_TLB_GLOBAL_FLUSH:
1359 /* global flush doesn't need set IVA_REG */
1360 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
1361 break;
1362 case DMA_TLB_DSI_FLUSH:
1363 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
1364 break;
1365 case DMA_TLB_PSI_FLUSH:
1366 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
David Woodhouseea8ea462014-03-05 17:09:32 +00001367 /* IH bit is passed in as part of address */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001368 val_iva = size_order | addr;
1369 break;
1370 default:
1371 BUG();
1372 }
1373 /* Note: set drain read/write */
1374#if 0
1375 /*
1376 * This is probably to be super secure.. Looks like we can
1377 * ignore it without any impact.
1378 */
1379 if (cap_read_drain(iommu->cap))
1380 val |= DMA_TLB_READ_DRAIN;
1381#endif
1382 if (cap_write_drain(iommu->cap))
1383 val |= DMA_TLB_WRITE_DRAIN;
1384
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001385 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001386 /* Note: Only uses first TLB reg currently */
1387 if (val_iva)
1388 dmar_writeq(iommu->reg + tlb_offset, val_iva);
1389 dmar_writeq(iommu->reg + tlb_offset + 8, val);
1390
1391 /* Make sure hardware complete it */
1392 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
1393 dmar_readq, (!(val & DMA_TLB_IVT)), val);
1394
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001395 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001396
1397 /* check IOTLB invalidation granularity */
1398 if (DMA_TLB_IAIG(val) == 0)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001399 pr_err("Flush IOTLB failed\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001400 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001401 pr_debug("TLB flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001402 (unsigned long long)DMA_TLB_IIRG(type),
1403 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001404}
1405
David Woodhouse64ae8922014-03-09 12:52:30 -07001406static struct device_domain_info *
1407iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu,
1408 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001409{
Quentin Lambert2f119c72015-02-06 10:59:53 +01001410 bool found = false;
Yu Zhao93a23a72009-05-18 13:51:37 +08001411 struct device_domain_info *info;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001412 struct pci_dev *pdev;
Yu Zhao93a23a72009-05-18 13:51:37 +08001413
Joerg Roedel55d94042015-07-22 16:50:40 +02001414 assert_spin_locked(&device_domain_lock);
1415
Yu Zhao93a23a72009-05-18 13:51:37 +08001416 if (!ecap_dev_iotlb_support(iommu->ecap))
1417 return NULL;
1418
1419 if (!iommu->qi)
1420 return NULL;
1421
Yu Zhao93a23a72009-05-18 13:51:37 +08001422 list_for_each_entry(info, &domain->devices, link)
Jiang Liuc3b497c2014-07-11 14:19:25 +08001423 if (info->iommu == iommu && info->bus == bus &&
1424 info->devfn == devfn) {
Quentin Lambert2f119c72015-02-06 10:59:53 +01001425 found = true;
Yu Zhao93a23a72009-05-18 13:51:37 +08001426 break;
1427 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001428
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001429 if (!found || !info->dev || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001430 return NULL;
1431
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001432 pdev = to_pci_dev(info->dev);
1433
1434 if (!pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS))
Yu Zhao93a23a72009-05-18 13:51:37 +08001435 return NULL;
1436
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001437 if (!dmar_find_matched_atsr_unit(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001438 return NULL;
1439
Yu Zhao93a23a72009-05-18 13:51:37 +08001440 return info;
1441}
1442
1443static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1444{
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001445 struct pci_dev *pdev;
1446
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001447 if (!info || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001448 return;
1449
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001450 pdev = to_pci_dev(info->dev);
1451 if (pci_enable_ats(pdev, VTD_PAGE_SHIFT))
1452 return;
1453
1454 info->ats.enabled = 1;
1455 info->ats.qdep = pci_ats_queue_depth(pdev);
Yu Zhao93a23a72009-05-18 13:51:37 +08001456}
1457
1458static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1459{
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001460 if (!info->ats.enabled)
Yu Zhao93a23a72009-05-18 13:51:37 +08001461 return;
1462
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001463 pci_disable_ats(to_pci_dev(info->dev));
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001464 info->ats.enabled = 0;
Yu Zhao93a23a72009-05-18 13:51:37 +08001465}
1466
1467static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1468 u64 addr, unsigned mask)
1469{
1470 u16 sid, qdep;
1471 unsigned long flags;
1472 struct device_domain_info *info;
1473
1474 spin_lock_irqsave(&device_domain_lock, flags);
1475 list_for_each_entry(info, &domain->devices, link) {
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001476 if (!info->ats.enabled)
Yu Zhao93a23a72009-05-18 13:51:37 +08001477 continue;
1478
1479 sid = info->bus << 8 | info->devfn;
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001480 qdep = info->ats.qdep;
Yu Zhao93a23a72009-05-18 13:51:37 +08001481 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1482 }
1483 spin_unlock_irqrestore(&device_domain_lock, flags);
1484}
1485
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001486static void iommu_flush_iotlb_psi(struct intel_iommu *iommu,
1487 struct dmar_domain *domain,
1488 unsigned long pfn, unsigned int pages,
1489 int ih, int map)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001490{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001491 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001492 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001493 u16 did = domain->iommu_did[iommu->seq_id];
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001494
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001495 BUG_ON(pages == 0);
1496
David Woodhouseea8ea462014-03-05 17:09:32 +00001497 if (ih)
1498 ih = 1 << 6;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001499 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001500 * Fallback to domain selective flush if no PSI support or the size is
1501 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001502 * PSI requires page size to be 2 ^ x, and the base address is naturally
1503 * aligned to the size
1504 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001505 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1506 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001507 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001508 else
David Woodhouseea8ea462014-03-05 17:09:32 +00001509 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001510 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001511
1512 /*
Nadav Amit82653632010-04-01 13:24:40 +03001513 * In caching mode, changes of pages from non-present to present require
1514 * flush. However, device IOTLB doesn't need to be flushed in this case.
Yu Zhaobf92df32009-06-29 11:31:45 +08001515 */
Nadav Amit82653632010-04-01 13:24:40 +03001516 if (!cap_caching_mode(iommu->cap) || !map)
Joerg Roedel9452d5b2015-07-21 10:00:56 +02001517 iommu_flush_dev_iotlb(get_iommu_domain(iommu, did),
1518 addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001519}
1520
mark grossf8bab732008-02-08 04:18:38 -08001521static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1522{
1523 u32 pmen;
1524 unsigned long flags;
1525
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001526 raw_spin_lock_irqsave(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001527 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1528 pmen &= ~DMA_PMEN_EPM;
1529 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1530
1531 /* wait for the protected region status bit to clear */
1532 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1533 readl, !(pmen & DMA_PMEN_PRS), pmen);
1534
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001535 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001536}
1537
Jiang Liu2a41cce2014-07-11 14:19:33 +08001538static void iommu_enable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001539{
1540 u32 sts;
1541 unsigned long flags;
1542
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001543 raw_spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001544 iommu->gcmd |= DMA_GCMD_TE;
1545 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001546
1547 /* Make sure hardware complete it */
1548 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001549 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001550
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001551 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001552}
1553
Jiang Liu2a41cce2014-07-11 14:19:33 +08001554static void iommu_disable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001555{
1556 u32 sts;
1557 unsigned long flag;
1558
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001559 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001560 iommu->gcmd &= ~DMA_GCMD_TE;
1561 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1562
1563 /* Make sure hardware complete it */
1564 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001565 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001566
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001567 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001568}
1569
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001570
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001571static int iommu_init_domains(struct intel_iommu *iommu)
1572{
Joerg Roedel8bf47812015-07-21 10:41:21 +02001573 u32 ndomains, nlongs;
1574 size_t size;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001575
1576 ndomains = cap_ndoms(iommu->cap);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001577 pr_debug("%s: Number of Domains supported <%d>\n",
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001578 iommu->name, ndomains);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001579 nlongs = BITS_TO_LONGS(ndomains);
1580
Donald Dutile94a91b502009-08-20 16:51:34 -04001581 spin_lock_init(&iommu->lock);
1582
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001583 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1584 if (!iommu->domain_ids) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001585 pr_err("%s: Allocating domain id array failed\n",
1586 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001587 return -ENOMEM;
1588 }
Joerg Roedel8bf47812015-07-21 10:41:21 +02001589
1590 size = ((ndomains >> 8) + 1) * sizeof(struct dmar_domain **);
1591 iommu->domains = kzalloc(size, GFP_KERNEL);
1592
1593 if (iommu->domains) {
1594 size = 256 * sizeof(struct dmar_domain *);
1595 iommu->domains[0] = kzalloc(size, GFP_KERNEL);
1596 }
1597
1598 if (!iommu->domains || !iommu->domains[0]) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001599 pr_err("%s: Allocating domain array failed\n",
1600 iommu->name);
Jiang Liu852bdb02014-01-06 14:18:11 +08001601 kfree(iommu->domain_ids);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001602 kfree(iommu->domains);
Jiang Liu852bdb02014-01-06 14:18:11 +08001603 iommu->domain_ids = NULL;
Joerg Roedel8bf47812015-07-21 10:41:21 +02001604 iommu->domains = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001605 return -ENOMEM;
1606 }
1607
Joerg Roedel8bf47812015-07-21 10:41:21 +02001608
1609
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001610 /*
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001611 * If Caching mode is set, then invalid translations are tagged
1612 * with domain-id 0, hence we need to pre-allocate it. We also
1613 * use domain-id 0 as a marker for non-allocated domain-id, so
1614 * make sure it is not used for a real domain.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001615 */
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001616 set_bit(0, iommu->domain_ids);
1617
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001618 return 0;
1619}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001620
Jiang Liuffebeb42014-11-09 22:48:02 +08001621static void disable_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001622{
Joerg Roedel29a27712015-07-21 17:17:12 +02001623 struct device_domain_info *info, *tmp;
Joerg Roedel55d94042015-07-22 16:50:40 +02001624 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001625
Joerg Roedel29a27712015-07-21 17:17:12 +02001626 if (!iommu->domains || !iommu->domain_ids)
1627 return;
Jiang Liua4eaa862014-02-19 14:07:30 +08001628
Joerg Roedel55d94042015-07-22 16:50:40 +02001629 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001630 list_for_each_entry_safe(info, tmp, &device_domain_list, global) {
1631 struct dmar_domain *domain;
1632
1633 if (info->iommu != iommu)
1634 continue;
1635
1636 if (!info->dev || !info->domain)
1637 continue;
1638
1639 domain = info->domain;
1640
Joerg Roedele6de0f82015-07-22 16:30:36 +02001641 dmar_remove_one_dev_info(domain, info->dev);
Joerg Roedel29a27712015-07-21 17:17:12 +02001642
1643 if (!domain_type_is_vm_or_si(domain))
1644 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001645 }
Joerg Roedel55d94042015-07-22 16:50:40 +02001646 spin_unlock_irqrestore(&device_domain_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001647
1648 if (iommu->gcmd & DMA_GCMD_TE)
1649 iommu_disable_translation(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08001650}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001651
Jiang Liuffebeb42014-11-09 22:48:02 +08001652static void free_dmar_iommu(struct intel_iommu *iommu)
1653{
1654 if ((iommu->domains) && (iommu->domain_ids)) {
Joerg Roedel8bf47812015-07-21 10:41:21 +02001655 int elems = (cap_ndoms(iommu->cap) >> 8) + 1;
1656 int i;
1657
1658 for (i = 0; i < elems; i++)
1659 kfree(iommu->domains[i]);
Jiang Liuffebeb42014-11-09 22:48:02 +08001660 kfree(iommu->domains);
1661 kfree(iommu->domain_ids);
1662 iommu->domains = NULL;
1663 iommu->domain_ids = NULL;
1664 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001665
Weidong Hand9630fe2008-12-08 11:06:32 +08001666 g_iommus[iommu->seq_id] = NULL;
1667
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001668 /* free context mapping */
1669 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001670}
1671
Jiang Liuab8dfe22014-07-11 14:19:27 +08001672static struct dmar_domain *alloc_domain(int flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001673{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001674 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001675
1676 domain = alloc_domain_mem();
1677 if (!domain)
1678 return NULL;
1679
Jiang Liuab8dfe22014-07-11 14:19:27 +08001680 memset(domain, 0, sizeof(*domain));
Suresh Siddha4c923d42009-10-02 11:01:24 -07001681 domain->nid = -1;
Jiang Liuab8dfe22014-07-11 14:19:27 +08001682 domain->flags = flags;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001683 INIT_LIST_HEAD(&domain->devices);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001684
1685 return domain;
1686}
1687
Joerg Roedeld160aca2015-07-22 11:52:53 +02001688/* Must be called with iommu->lock */
1689static int domain_attach_iommu(struct dmar_domain *domain,
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001690 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001691{
Jiang Liu44bde612014-07-11 14:19:29 +08001692 unsigned long ndomains;
Joerg Roedel55d94042015-07-22 16:50:40 +02001693 int num;
Jiang Liu44bde612014-07-11 14:19:29 +08001694
Joerg Roedel55d94042015-07-22 16:50:40 +02001695 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001696 assert_spin_locked(&iommu->lock);
Jiang Liu44bde612014-07-11 14:19:29 +08001697
Joerg Roedel29a27712015-07-21 17:17:12 +02001698 domain->iommu_refcnt[iommu->seq_id] += 1;
1699 domain->iommu_count += 1;
1700 if (domain->iommu_refcnt[iommu->seq_id] == 1) {
Jiang Liufb170fb2014-07-11 14:19:28 +08001701 ndomains = cap_ndoms(iommu->cap);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001702 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1703
1704 if (num >= ndomains) {
1705 pr_err("%s: No free domain ids\n", iommu->name);
1706 domain->iommu_refcnt[iommu->seq_id] -= 1;
1707 domain->iommu_count -= 1;
Joerg Roedel55d94042015-07-22 16:50:40 +02001708 return -ENOSPC;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001709 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001710
Joerg Roedeld160aca2015-07-22 11:52:53 +02001711 set_bit(num, iommu->domain_ids);
1712 set_iommu_domain(iommu, num, domain);
Jiang Liufb170fb2014-07-11 14:19:28 +08001713
Joerg Roedeld160aca2015-07-22 11:52:53 +02001714 domain->iommu_did[iommu->seq_id] = num;
1715 domain->nid = iommu->node;
1716
Jiang Liufb170fb2014-07-11 14:19:28 +08001717 domain_update_iommu_cap(domain);
1718 }
Joerg Roedeld160aca2015-07-22 11:52:53 +02001719
Joerg Roedel55d94042015-07-22 16:50:40 +02001720 return 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001721}
1722
1723static int domain_detach_iommu(struct dmar_domain *domain,
1724 struct intel_iommu *iommu)
1725{
Joerg Roedeld160aca2015-07-22 11:52:53 +02001726 int num, count = INT_MAX;
Jiang Liufb170fb2014-07-11 14:19:28 +08001727
Joerg Roedel55d94042015-07-22 16:50:40 +02001728 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001729 assert_spin_locked(&iommu->lock);
Jiang Liufb170fb2014-07-11 14:19:28 +08001730
Joerg Roedel29a27712015-07-21 17:17:12 +02001731 domain->iommu_refcnt[iommu->seq_id] -= 1;
1732 count = --domain->iommu_count;
1733 if (domain->iommu_refcnt[iommu->seq_id] == 0) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02001734 num = domain->iommu_did[iommu->seq_id];
1735 clear_bit(num, iommu->domain_ids);
1736 set_iommu_domain(iommu, num, NULL);
1737
Jiang Liufb170fb2014-07-11 14:19:28 +08001738 domain_update_iommu_cap(domain);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001739 domain->iommu_did[iommu->seq_id] = 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001740 }
Jiang Liufb170fb2014-07-11 14:19:28 +08001741
1742 return count;
1743}
1744
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001745static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001746static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001747
Joseph Cihula51a63e62011-03-21 11:04:24 -07001748static int dmar_init_reserved_ranges(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001749{
1750 struct pci_dev *pdev = NULL;
1751 struct iova *iova;
1752 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001753
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001754 init_iova_domain(&reserved_iova_list, VTD_PAGE_SIZE, IOVA_START_PFN,
1755 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001756
Mark Gross8a443df2008-03-04 14:59:31 -08001757 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1758 &reserved_rbtree_key);
1759
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001760 /* IOAPIC ranges shouldn't be accessed by DMA */
1761 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1762 IOVA_PFN(IOAPIC_RANGE_END));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001763 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001764 pr_err("Reserve IOAPIC range failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001765 return -ENODEV;
1766 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001767
1768 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1769 for_each_pci_dev(pdev) {
1770 struct resource *r;
1771
1772 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1773 r = &pdev->resource[i];
1774 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1775 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001776 iova = reserve_iova(&reserved_iova_list,
1777 IOVA_PFN(r->start),
1778 IOVA_PFN(r->end));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001779 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001780 pr_err("Reserve iova failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001781 return -ENODEV;
1782 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001783 }
1784 }
Joseph Cihula51a63e62011-03-21 11:04:24 -07001785 return 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001786}
1787
1788static void domain_reserve_special_ranges(struct dmar_domain *domain)
1789{
1790 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1791}
1792
1793static inline int guestwidth_to_adjustwidth(int gaw)
1794{
1795 int agaw;
1796 int r = (gaw - 12) % 9;
1797
1798 if (r == 0)
1799 agaw = gaw;
1800 else
1801 agaw = gaw + 9 - r;
1802 if (agaw > 64)
1803 agaw = 64;
1804 return agaw;
1805}
1806
Joerg Roedeldc534b22015-07-22 12:44:02 +02001807static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
1808 int guest_width)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001809{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001810 int adjust_width, agaw;
1811 unsigned long sagaw;
1812
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001813 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
1814 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001815 domain_reserve_special_ranges(domain);
1816
1817 /* calculate AGAW */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001818 if (guest_width > cap_mgaw(iommu->cap))
1819 guest_width = cap_mgaw(iommu->cap);
1820 domain->gaw = guest_width;
1821 adjust_width = guestwidth_to_adjustwidth(guest_width);
1822 agaw = width_to_agaw(adjust_width);
1823 sagaw = cap_sagaw(iommu->cap);
1824 if (!test_bit(agaw, &sagaw)) {
1825 /* hardware doesn't support it, choose a bigger one */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001826 pr_debug("Hardware doesn't support agaw %d\n", agaw);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001827 agaw = find_next_bit(&sagaw, 5, agaw);
1828 if (agaw >= 5)
1829 return -ENODEV;
1830 }
1831 domain->agaw = agaw;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001832
Weidong Han8e6040972008-12-08 15:49:06 +08001833 if (ecap_coherent(iommu->ecap))
1834 domain->iommu_coherency = 1;
1835 else
1836 domain->iommu_coherency = 0;
1837
Sheng Yang58c610b2009-03-18 15:33:05 +08001838 if (ecap_sc_support(iommu->ecap))
1839 domain->iommu_snooping = 1;
1840 else
1841 domain->iommu_snooping = 0;
1842
David Woodhouse214e39a2014-03-19 10:38:49 +00001843 if (intel_iommu_superpage)
1844 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1845 else
1846 domain->iommu_superpage = 0;
1847
Suresh Siddha4c923d42009-10-02 11:01:24 -07001848 domain->nid = iommu->node;
Weidong Hanc7151a82008-12-08 22:51:37 +08001849
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001850 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07001851 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001852 if (!domain->pgd)
1853 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001854 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001855 return 0;
1856}
1857
1858static void domain_exit(struct dmar_domain *domain)
1859{
David Woodhouseea8ea462014-03-05 17:09:32 +00001860 struct page *freelist = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001861
1862 /* Domain 0 is reserved, so dont process it */
1863 if (!domain)
1864 return;
1865
Alex Williamson7b668352011-05-24 12:02:41 +01001866 /* Flush any lazy unmaps that may reference this domain */
1867 if (!intel_iommu_strict)
1868 flush_unmaps_timeout(0);
1869
Joerg Roedeld160aca2015-07-22 11:52:53 +02001870 /* Remove associated devices and clear attached or cached domains */
1871 rcu_read_lock();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001872 domain_remove_dev_info(domain);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001873 rcu_read_unlock();
Jiang Liu92d03cc2014-02-19 14:07:28 +08001874
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001875 /* destroy iovas */
1876 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001877
David Woodhouseea8ea462014-03-05 17:09:32 +00001878 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001879
David Woodhouseea8ea462014-03-05 17:09:32 +00001880 dma_free_pagelist(freelist);
1881
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001882 free_domain_mem(domain);
1883}
1884
David Woodhouse64ae8922014-03-09 12:52:30 -07001885static int domain_context_mapping_one(struct dmar_domain *domain,
1886 struct intel_iommu *iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001887 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001888{
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001889 u16 did = domain->iommu_did[iommu->seq_id];
Joerg Roedel28ccce02015-07-21 14:45:31 +02001890 int translation = CONTEXT_TT_MULTI_LEVEL;
1891 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001892 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001893 unsigned long flags;
Weidong Hanea6606b2008-12-08 23:08:15 +08001894 struct dma_pte *pgd;
Joerg Roedel55d94042015-07-22 16:50:40 +02001895 int ret, agaw;
Joerg Roedel28ccce02015-07-21 14:45:31 +02001896
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001897 WARN_ON(did == 0);
1898
Joerg Roedel28ccce02015-07-21 14:45:31 +02001899 if (hw_pass_through && domain_type_is_si(domain))
1900 translation = CONTEXT_TT_PASS_THROUGH;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001901
1902 pr_debug("Set context mapping for %02x:%02x.%d\n",
1903 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001904
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001905 BUG_ON(!domain->pgd);
Weidong Han5331fe62008-12-08 23:00:00 +08001906
Joerg Roedel55d94042015-07-22 16:50:40 +02001907 spin_lock_irqsave(&device_domain_lock, flags);
1908 spin_lock(&iommu->lock);
1909
1910 ret = -ENOMEM;
David Woodhouse03ecc322015-02-13 14:35:21 +00001911 context = iommu_context_addr(iommu, bus, devfn, 1);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001912 if (!context)
Joerg Roedel55d94042015-07-22 16:50:40 +02001913 goto out_unlock;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001914
Joerg Roedel55d94042015-07-22 16:50:40 +02001915 ret = 0;
1916 if (context_present(context))
1917 goto out_unlock;
Joerg Roedelcf484d02015-06-12 12:21:46 +02001918
Weidong Hanea6606b2008-12-08 23:08:15 +08001919 pgd = domain->pgd;
1920
Joerg Roedelde24e552015-07-21 14:53:04 +02001921 context_clear_entry(context);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001922 context_set_domain_id(context, did);
Weidong Hanea6606b2008-12-08 23:08:15 +08001923
Joerg Roedelde24e552015-07-21 14:53:04 +02001924 /*
1925 * Skip top levels of page tables for iommu which has less agaw
1926 * than default. Unnecessary for PT mode.
1927 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001928 if (translation != CONTEXT_TT_PASS_THROUGH) {
Joerg Roedelde24e552015-07-21 14:53:04 +02001929 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
Joerg Roedel55d94042015-07-22 16:50:40 +02001930 ret = -ENOMEM;
Joerg Roedelde24e552015-07-21 14:53:04 +02001931 pgd = phys_to_virt(dma_pte_addr(pgd));
Joerg Roedel55d94042015-07-22 16:50:40 +02001932 if (!dma_pte_present(pgd))
1933 goto out_unlock;
Joerg Roedelde24e552015-07-21 14:53:04 +02001934 }
1935
David Woodhouse64ae8922014-03-09 12:52:30 -07001936 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
Yu Zhao93a23a72009-05-18 13:51:37 +08001937 translation = info ? CONTEXT_TT_DEV_IOTLB :
1938 CONTEXT_TT_MULTI_LEVEL;
Joerg Roedelde24e552015-07-21 14:53:04 +02001939
Yu Zhao93a23a72009-05-18 13:51:37 +08001940 context_set_address_root(context, virt_to_phys(pgd));
1941 context_set_address_width(context, iommu->agaw);
Joerg Roedelde24e552015-07-21 14:53:04 +02001942 } else {
1943 /*
1944 * In pass through mode, AW must be programmed to
1945 * indicate the largest AGAW value supported by
1946 * hardware. And ASR is ignored by hardware.
1947 */
1948 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001949 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001950
1951 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001952 context_set_fault_enable(context);
1953 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001954 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001955
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001956 /*
1957 * It's a non-present to present mapping. If hardware doesn't cache
1958 * non-present entry we only need to flush the write-buffer. If the
1959 * _does_ cache non-present entries, then it does so in the special
1960 * domain #0, which we have to flush:
1961 */
1962 if (cap_caching_mode(iommu->cap)) {
1963 iommu->flush.flush_context(iommu, 0,
1964 (((u16)bus) << 8) | devfn,
1965 DMA_CCMD_MASK_NOBIT,
1966 DMA_CCMD_DEVICE_INVL);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001967 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001968 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001969 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001970 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001971 iommu_enable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08001972
Joerg Roedel55d94042015-07-22 16:50:40 +02001973 ret = 0;
1974
1975out_unlock:
1976 spin_unlock(&iommu->lock);
1977 spin_unlock_irqrestore(&device_domain_lock, flags);
Jiang Liufb170fb2014-07-11 14:19:28 +08001978
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001979 return 0;
1980}
1981
Alex Williamson579305f2014-07-03 09:51:43 -06001982struct domain_context_mapping_data {
1983 struct dmar_domain *domain;
1984 struct intel_iommu *iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06001985};
1986
1987static int domain_context_mapping_cb(struct pci_dev *pdev,
1988 u16 alias, void *opaque)
1989{
1990 struct domain_context_mapping_data *data = opaque;
1991
1992 return domain_context_mapping_one(data->domain, data->iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001993 PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06001994}
1995
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001996static int
Joerg Roedel28ccce02015-07-21 14:45:31 +02001997domain_context_mapping(struct dmar_domain *domain, struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001998{
David Woodhouse64ae8922014-03-09 12:52:30 -07001999 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002000 u8 bus, devfn;
Alex Williamson579305f2014-07-03 09:51:43 -06002001 struct domain_context_mapping_data data;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002002
David Woodhousee1f167f2014-03-09 15:24:46 -07002003 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse64ae8922014-03-09 12:52:30 -07002004 if (!iommu)
2005 return -ENODEV;
2006
Alex Williamson579305f2014-07-03 09:51:43 -06002007 if (!dev_is_pci(dev))
Joerg Roedel28ccce02015-07-21 14:45:31 +02002008 return domain_context_mapping_one(domain, iommu, bus, devfn);
Alex Williamson579305f2014-07-03 09:51:43 -06002009
2010 data.domain = domain;
2011 data.iommu = iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06002012
2013 return pci_for_each_dma_alias(to_pci_dev(dev),
2014 &domain_context_mapping_cb, &data);
2015}
2016
2017static int domain_context_mapped_cb(struct pci_dev *pdev,
2018 u16 alias, void *opaque)
2019{
2020 struct intel_iommu *iommu = opaque;
2021
2022 return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002023}
2024
David Woodhousee1f167f2014-03-09 15:24:46 -07002025static int domain_context_mapped(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002026{
Weidong Han5331fe62008-12-08 23:00:00 +08002027 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002028 u8 bus, devfn;
Weidong Han5331fe62008-12-08 23:00:00 +08002029
David Woodhousee1f167f2014-03-09 15:24:46 -07002030 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08002031 if (!iommu)
2032 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002033
Alex Williamson579305f2014-07-03 09:51:43 -06002034 if (!dev_is_pci(dev))
2035 return device_context_mapped(iommu, bus, devfn);
David Woodhousee1f167f2014-03-09 15:24:46 -07002036
Alex Williamson579305f2014-07-03 09:51:43 -06002037 return !pci_for_each_dma_alias(to_pci_dev(dev),
2038 domain_context_mapped_cb, iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002039}
2040
Fenghua Yuf5329592009-08-04 15:09:37 -07002041/* Returns a number of VTD pages, but aligned to MM page size */
2042static inline unsigned long aligned_nrpages(unsigned long host_addr,
2043 size_t size)
2044{
2045 host_addr &= ~PAGE_MASK;
2046 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
2047}
2048
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002049/* Return largest possible superpage level for a given mapping */
2050static inline int hardware_largepage_caps(struct dmar_domain *domain,
2051 unsigned long iov_pfn,
2052 unsigned long phy_pfn,
2053 unsigned long pages)
2054{
2055 int support, level = 1;
2056 unsigned long pfnmerge;
2057
2058 support = domain->iommu_superpage;
2059
2060 /* To use a large page, the virtual *and* physical addresses
2061 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
2062 of them will mean we have to use smaller pages. So just
2063 merge them and check both at once. */
2064 pfnmerge = iov_pfn | phy_pfn;
2065
2066 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
2067 pages >>= VTD_STRIDE_SHIFT;
2068 if (!pages)
2069 break;
2070 pfnmerge >>= VTD_STRIDE_SHIFT;
2071 level++;
2072 support--;
2073 }
2074 return level;
2075}
2076
David Woodhouse9051aa02009-06-29 12:30:54 +01002077static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2078 struct scatterlist *sg, unsigned long phys_pfn,
2079 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01002080{
2081 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01002082 phys_addr_t uninitialized_var(pteval);
Jiang Liucc4f14a2014-11-26 09:42:10 +08002083 unsigned long sg_res = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002084 unsigned int largepage_lvl = 0;
2085 unsigned long lvl_pages = 0;
David Woodhousee1605492009-06-29 11:17:38 +01002086
Jiang Liu162d1b12014-07-11 14:19:35 +08002087 BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1));
David Woodhousee1605492009-06-29 11:17:38 +01002088
2089 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
2090 return -EINVAL;
2091
2092 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
2093
Jiang Liucc4f14a2014-11-26 09:42:10 +08002094 if (!sg) {
2095 sg_res = nr_pages;
David Woodhouse9051aa02009-06-29 12:30:54 +01002096 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
2097 }
2098
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002099 while (nr_pages > 0) {
David Woodhousec85994e2009-07-01 19:21:24 +01002100 uint64_t tmp;
2101
David Woodhousee1605492009-06-29 11:17:38 +01002102 if (!sg_res) {
Fenghua Yuf5329592009-08-04 15:09:37 -07002103 sg_res = aligned_nrpages(sg->offset, sg->length);
David Woodhousee1605492009-06-29 11:17:38 +01002104 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
2105 sg->dma_length = sg->length;
Dan Williamsdb0fa0c2015-08-17 08:13:26 -06002106 pteval = (sg_phys(sg) & PAGE_MASK) | prot;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002107 phys_pfn = pteval >> VTD_PAGE_SHIFT;
David Woodhousee1605492009-06-29 11:17:38 +01002108 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002109
David Woodhousee1605492009-06-29 11:17:38 +01002110 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002111 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
2112
David Woodhouse5cf0a762014-03-19 16:07:49 +00002113 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
David Woodhousee1605492009-06-29 11:17:38 +01002114 if (!pte)
2115 return -ENOMEM;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002116 /* It is large page*/
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002117 if (largepage_lvl > 1) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002118 pteval |= DMA_PTE_LARGE_PAGE;
Jiang Liud41a4ad2014-07-11 14:19:34 +08002119 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2120 /*
2121 * Ensure that old small page tables are
2122 * removed to make room for superpage,
2123 * if they exist.
2124 */
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002125 dma_pte_free_pagetable(domain, iov_pfn,
Jiang Liud41a4ad2014-07-11 14:19:34 +08002126 iov_pfn + lvl_pages - 1);
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002127 } else {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002128 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002129 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002130
David Woodhousee1605492009-06-29 11:17:38 +01002131 }
2132 /* We don't need lock here, nobody else
2133 * touches the iova range
2134 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01002135 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01002136 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01002137 static int dumps = 5;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002138 pr_crit("ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2139 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01002140 if (dumps) {
2141 dumps--;
2142 debug_dma_dump_mappings(NULL);
2143 }
2144 WARN_ON(1);
2145 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002146
2147 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2148
2149 BUG_ON(nr_pages < lvl_pages);
2150 BUG_ON(sg_res < lvl_pages);
2151
2152 nr_pages -= lvl_pages;
2153 iov_pfn += lvl_pages;
2154 phys_pfn += lvl_pages;
2155 pteval += lvl_pages * VTD_PAGE_SIZE;
2156 sg_res -= lvl_pages;
2157
2158 /* If the next PTE would be the first in a new page, then we
2159 need to flush the cache on the entries we've just written.
2160 And then we'll need to recalculate 'pte', so clear it and
2161 let it get set again in the if (!pte) block above.
2162
2163 If we're done (!nr_pages) we need to flush the cache too.
2164
2165 Also if we've been setting superpages, we may need to
2166 recalculate 'pte' and switch back to smaller pages for the
2167 end of the mapping, if the trailing size is not enough to
2168 use another superpage (i.e. sg_res < lvl_pages). */
David Woodhousee1605492009-06-29 11:17:38 +01002169 pte++;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002170 if (!nr_pages || first_pte_in_page(pte) ||
2171 (largepage_lvl > 1 && sg_res < lvl_pages)) {
David Woodhousee1605492009-06-29 11:17:38 +01002172 domain_flush_cache(domain, first_pte,
2173 (void *)pte - (void *)first_pte);
2174 pte = NULL;
2175 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002176
2177 if (!sg_res && nr_pages)
David Woodhousee1605492009-06-29 11:17:38 +01002178 sg = sg_next(sg);
2179 }
2180 return 0;
2181}
2182
David Woodhouse9051aa02009-06-29 12:30:54 +01002183static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2184 struct scatterlist *sg, unsigned long nr_pages,
2185 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002186{
David Woodhouse9051aa02009-06-29 12:30:54 +01002187 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
2188}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002189
David Woodhouse9051aa02009-06-29 12:30:54 +01002190static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2191 unsigned long phys_pfn, unsigned long nr_pages,
2192 int prot)
2193{
2194 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002195}
2196
Joerg Roedel2452d9d2015-07-23 16:20:14 +02002197static void domain_context_clear_one(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002198{
Weidong Hanc7151a82008-12-08 22:51:37 +08002199 if (!iommu)
2200 return;
Weidong Han8c11e792008-12-08 15:29:22 +08002201
2202 clear_context_table(iommu, bus, devfn);
2203 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002204 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002205 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002206}
2207
David Woodhouse109b9b02012-05-25 17:43:02 +01002208static inline void unlink_domain_info(struct device_domain_info *info)
2209{
2210 assert_spin_locked(&device_domain_lock);
2211 list_del(&info->link);
2212 list_del(&info->global);
2213 if (info->dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002214 info->dev->archdata.iommu = NULL;
David Woodhouse109b9b02012-05-25 17:43:02 +01002215}
2216
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002217static void domain_remove_dev_info(struct dmar_domain *domain)
2218{
Yijing Wang3a74ca02014-05-20 20:37:47 +08002219 struct device_domain_info *info, *tmp;
Jiang Liufb170fb2014-07-11 14:19:28 +08002220 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002221
2222 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel76f45fe2015-07-21 18:25:11 +02002223 list_for_each_entry_safe(info, tmp, &domain->devices, link)
Joerg Roedel127c7612015-07-23 17:44:46 +02002224 __dmar_remove_one_dev_info(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002225 spin_unlock_irqrestore(&device_domain_lock, flags);
2226}
2227
2228/*
2229 * find_domain
David Woodhouse1525a292014-03-06 16:19:30 +00002230 * Note: we use struct device->archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002231 */
David Woodhouse1525a292014-03-06 16:19:30 +00002232static struct dmar_domain *find_domain(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002233{
2234 struct device_domain_info *info;
2235
2236 /* No lock here, assumes no domain exit in normal case */
David Woodhouse1525a292014-03-06 16:19:30 +00002237 info = dev->archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002238 if (info)
2239 return info->domain;
2240 return NULL;
2241}
2242
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002243static inline struct device_domain_info *
Jiang Liu745f2582014-02-19 14:07:26 +08002244dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2245{
2246 struct device_domain_info *info;
2247
2248 list_for_each_entry(info, &device_domain_list, global)
David Woodhouse41e80dca2014-03-09 13:55:54 -07002249 if (info->iommu->segment == segment && info->bus == bus &&
Jiang Liu745f2582014-02-19 14:07:26 +08002250 info->devfn == devfn)
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002251 return info;
Jiang Liu745f2582014-02-19 14:07:26 +08002252
2253 return NULL;
2254}
2255
Joerg Roedel5db31562015-07-22 12:40:43 +02002256static struct dmar_domain *dmar_insert_one_dev_info(struct intel_iommu *iommu,
2257 int bus, int devfn,
2258 struct device *dev,
2259 struct dmar_domain *domain)
Jiang Liu745f2582014-02-19 14:07:26 +08002260{
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002261 struct dmar_domain *found = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002262 struct device_domain_info *info;
2263 unsigned long flags;
Joerg Roedeld160aca2015-07-22 11:52:53 +02002264 int ret;
Jiang Liu745f2582014-02-19 14:07:26 +08002265
2266 info = alloc_devinfo_mem();
2267 if (!info)
David Woodhouseb718cd32014-03-09 13:11:33 -07002268 return NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002269
Jiang Liu745f2582014-02-19 14:07:26 +08002270 info->bus = bus;
2271 info->devfn = devfn;
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05002272 info->ats.enabled = 0;
2273 info->ats.qdep = 0;
Jiang Liu745f2582014-02-19 14:07:26 +08002274 info->dev = dev;
2275 info->domain = domain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002276 info->iommu = iommu;
Jiang Liu745f2582014-02-19 14:07:26 +08002277
2278 spin_lock_irqsave(&device_domain_lock, flags);
2279 if (dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002280 found = find_domain(dev);
Joerg Roedelf303e502015-07-23 18:37:13 +02002281
2282 if (!found) {
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002283 struct device_domain_info *info2;
David Woodhouse41e80dca2014-03-09 13:55:54 -07002284 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
Joerg Roedelf303e502015-07-23 18:37:13 +02002285 if (info2) {
2286 found = info2->domain;
2287 info2->dev = dev;
2288 }
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002289 }
Joerg Roedelf303e502015-07-23 18:37:13 +02002290
Jiang Liu745f2582014-02-19 14:07:26 +08002291 if (found) {
2292 spin_unlock_irqrestore(&device_domain_lock, flags);
2293 free_devinfo_mem(info);
David Woodhouseb718cd32014-03-09 13:11:33 -07002294 /* Caller must free the original domain */
2295 return found;
Jiang Liu745f2582014-02-19 14:07:26 +08002296 }
2297
Joerg Roedeld160aca2015-07-22 11:52:53 +02002298 spin_lock(&iommu->lock);
2299 ret = domain_attach_iommu(domain, iommu);
2300 spin_unlock(&iommu->lock);
2301
2302 if (ret) {
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002303 spin_unlock_irqrestore(&device_domain_lock, flags);
2304 return NULL;
2305 }
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002306
David Woodhouseb718cd32014-03-09 13:11:33 -07002307 list_add(&info->link, &domain->devices);
2308 list_add(&info->global, &device_domain_list);
2309 if (dev)
2310 dev->archdata.iommu = info;
2311 spin_unlock_irqrestore(&device_domain_lock, flags);
2312
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002313 if (dev && domain_context_mapping(domain, dev)) {
2314 pr_err("Domain context map for %s failed\n", dev_name(dev));
Joerg Roedele6de0f82015-07-22 16:30:36 +02002315 dmar_remove_one_dev_info(domain, dev);
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002316 return NULL;
2317 }
2318
David Woodhouseb718cd32014-03-09 13:11:33 -07002319 return domain;
Jiang Liu745f2582014-02-19 14:07:26 +08002320}
2321
Alex Williamson579305f2014-07-03 09:51:43 -06002322static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque)
2323{
2324 *(u16 *)opaque = alias;
2325 return 0;
2326}
2327
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002328/* domain is initialized */
David Woodhouse146922e2014-03-09 15:44:17 -07002329static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002330{
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002331 struct device_domain_info *info = NULL;
Alex Williamson579305f2014-07-03 09:51:43 -06002332 struct dmar_domain *domain, *tmp;
2333 struct intel_iommu *iommu;
Joerg Roedel08a7f452015-07-23 18:09:11 +02002334 u16 req_id, dma_alias;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002335 unsigned long flags;
Yijing Wangaa4d0662014-05-26 20:14:06 +08002336 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002337
David Woodhouse146922e2014-03-09 15:44:17 -07002338 domain = find_domain(dev);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002339 if (domain)
2340 return domain;
2341
David Woodhouse146922e2014-03-09 15:44:17 -07002342 iommu = device_to_iommu(dev, &bus, &devfn);
2343 if (!iommu)
Alex Williamson579305f2014-07-03 09:51:43 -06002344 return NULL;
2345
Joerg Roedel08a7f452015-07-23 18:09:11 +02002346 req_id = ((u16)bus << 8) | devfn;
2347
Alex Williamson579305f2014-07-03 09:51:43 -06002348 if (dev_is_pci(dev)) {
2349 struct pci_dev *pdev = to_pci_dev(dev);
2350
2351 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2352
2353 spin_lock_irqsave(&device_domain_lock, flags);
2354 info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus),
2355 PCI_BUS_NUM(dma_alias),
2356 dma_alias & 0xff);
2357 if (info) {
2358 iommu = info->iommu;
2359 domain = info->domain;
2360 }
2361 spin_unlock_irqrestore(&device_domain_lock, flags);
2362
2363 /* DMA alias already has a domain, uses it */
2364 if (info)
2365 goto found_domain;
2366 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002367
David Woodhouse146922e2014-03-09 15:44:17 -07002368 /* Allocate and initialize new domain for the device */
Jiang Liuab8dfe22014-07-11 14:19:27 +08002369 domain = alloc_domain(0);
Jiang Liu745f2582014-02-19 14:07:26 +08002370 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002371 return NULL;
Joerg Roedeldc534b22015-07-22 12:44:02 +02002372 if (domain_init(domain, iommu, gaw)) {
Alex Williamson579305f2014-07-03 09:51:43 -06002373 domain_exit(domain);
2374 return NULL;
2375 }
2376
2377 /* register PCI DMA alias device */
Joerg Roedel08a7f452015-07-23 18:09:11 +02002378 if (req_id != dma_alias && dev_is_pci(dev)) {
Joerg Roedel5db31562015-07-22 12:40:43 +02002379 tmp = dmar_insert_one_dev_info(iommu, PCI_BUS_NUM(dma_alias),
2380 dma_alias & 0xff, NULL, domain);
Alex Williamson579305f2014-07-03 09:51:43 -06002381
2382 if (!tmp || tmp != domain) {
2383 domain_exit(domain);
2384 domain = tmp;
2385 }
2386
David Woodhouseb718cd32014-03-09 13:11:33 -07002387 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002388 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002389 }
2390
2391found_domain:
Joerg Roedel5db31562015-07-22 12:40:43 +02002392 tmp = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
Alex Williamson579305f2014-07-03 09:51:43 -06002393
2394 if (!tmp || tmp != domain) {
2395 domain_exit(domain);
2396 domain = tmp;
2397 }
David Woodhouseb718cd32014-03-09 13:11:33 -07002398
2399 return domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002400}
2401
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002402static int iommu_identity_mapping;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002403#define IDENTMAP_ALL 1
2404#define IDENTMAP_GFX 2
2405#define IDENTMAP_AZALIA 4
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002406
David Woodhouseb2132032009-06-26 18:50:28 +01002407static int iommu_domain_identity_map(struct dmar_domain *domain,
2408 unsigned long long start,
2409 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002410{
David Woodhousec5395d52009-06-28 16:35:56 +01002411 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2412 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002413
David Woodhousec5395d52009-06-28 16:35:56 +01002414 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2415 dma_to_mm_pfn(last_vpfn))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002416 pr_err("Reserving iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01002417 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002418 }
2419
Joerg Roedelaf1089c2015-07-21 15:45:19 +02002420 pr_debug("Mapping reserved region %llx-%llx\n", start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002421 /*
2422 * RMRR range might have overlap with physical memory range,
2423 * clear it first
2424 */
David Woodhousec5395d52009-06-28 16:35:56 +01002425 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002426
David Woodhousec5395d52009-06-28 16:35:56 +01002427 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
2428 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01002429 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01002430}
2431
Joerg Roedeld66ce542015-09-23 19:00:10 +02002432static int domain_prepare_identity_map(struct device *dev,
2433 struct dmar_domain *domain,
2434 unsigned long long start,
2435 unsigned long long end)
David Woodhouseb2132032009-06-26 18:50:28 +01002436{
David Woodhouse19943b02009-08-04 16:19:20 +01002437 /* For _hardware_ passthrough, don't bother. But for software
2438 passthrough, we do it anyway -- it may indicate a memory
2439 range which is reserved in E820, so which didn't get set
2440 up to start with in si_domain */
2441 if (domain == si_domain && hw_pass_through) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002442 pr_warn("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
2443 dev_name(dev), start, end);
David Woodhouse19943b02009-08-04 16:19:20 +01002444 return 0;
2445 }
2446
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002447 pr_info("Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
2448 dev_name(dev), start, end);
2449
David Woodhouse5595b522009-12-02 09:21:55 +00002450 if (end < start) {
2451 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2452 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2453 dmi_get_system_info(DMI_BIOS_VENDOR),
2454 dmi_get_system_info(DMI_BIOS_VERSION),
2455 dmi_get_system_info(DMI_PRODUCT_VERSION));
Joerg Roedeld66ce542015-09-23 19:00:10 +02002456 return -EIO;
David Woodhouse5595b522009-12-02 09:21:55 +00002457 }
2458
David Woodhouse2ff729f2009-08-26 14:25:41 +01002459 if (end >> agaw_to_width(domain->agaw)) {
2460 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2461 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2462 agaw_to_width(domain->agaw),
2463 dmi_get_system_info(DMI_BIOS_VENDOR),
2464 dmi_get_system_info(DMI_BIOS_VERSION),
2465 dmi_get_system_info(DMI_PRODUCT_VERSION));
Joerg Roedeld66ce542015-09-23 19:00:10 +02002466 return -EIO;
David Woodhouse2ff729f2009-08-26 14:25:41 +01002467 }
David Woodhouse19943b02009-08-04 16:19:20 +01002468
Joerg Roedeld66ce542015-09-23 19:00:10 +02002469 return iommu_domain_identity_map(domain, start, end);
2470}
2471
2472static int iommu_prepare_identity_map(struct device *dev,
2473 unsigned long long start,
2474 unsigned long long end)
2475{
2476 struct dmar_domain *domain;
2477 int ret;
2478
2479 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
2480 if (!domain)
2481 return -ENOMEM;
2482
2483 ret = domain_prepare_identity_map(dev, domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002484 if (ret)
Joerg Roedeld66ce542015-09-23 19:00:10 +02002485 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002486
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002487 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002488}
2489
2490static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
David Woodhouse0b9d9752014-03-09 15:48:15 -07002491 struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002492{
David Woodhouse0b9d9752014-03-09 15:48:15 -07002493 if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002494 return 0;
David Woodhouse0b9d9752014-03-09 15:48:15 -07002495 return iommu_prepare_identity_map(dev, rmrr->base_address,
2496 rmrr->end_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002497}
2498
Suresh Siddhad3f13812011-08-23 17:05:25 -07002499#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002500static inline void iommu_prepare_isa(void)
2501{
2502 struct pci_dev *pdev;
2503 int ret;
2504
2505 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2506 if (!pdev)
2507 return;
2508
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002509 pr_info("Prepare 0-16MiB unity mapping for LPC\n");
David Woodhouse0b9d9752014-03-09 15:48:15 -07002510 ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002511
2512 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002513 pr_err("Failed to create 0-16MiB identity map - floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002514
Yijing Wang9b27e822014-05-20 20:37:52 +08002515 pci_dev_put(pdev);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002516}
2517#else
2518static inline void iommu_prepare_isa(void)
2519{
2520 return;
2521}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002522#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002523
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002524static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002525
Matt Kraai071e1372009-08-23 22:30:22 -07002526static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002527{
David Woodhousec7ab48d2009-06-26 19:10:36 +01002528 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002529
Jiang Liuab8dfe22014-07-11 14:19:27 +08002530 si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002531 if (!si_domain)
2532 return -EFAULT;
2533
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002534 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2535 domain_exit(si_domain);
2536 return -EFAULT;
2537 }
2538
Joerg Roedel0dc79712015-07-21 15:40:06 +02002539 pr_debug("Identity mapping domain allocated\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002540
David Woodhouse19943b02009-08-04 16:19:20 +01002541 if (hw)
2542 return 0;
2543
David Woodhousec7ab48d2009-06-26 19:10:36 +01002544 for_each_online_node(nid) {
Tejun Heod4bbf7e2011-11-28 09:46:22 -08002545 unsigned long start_pfn, end_pfn;
2546 int i;
2547
2548 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2549 ret = iommu_domain_identity_map(si_domain,
2550 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2551 if (ret)
2552 return ret;
2553 }
David Woodhousec7ab48d2009-06-26 19:10:36 +01002554 }
2555
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002556 return 0;
2557}
2558
David Woodhouse9b226622014-03-09 14:03:28 -07002559static int identity_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002560{
2561 struct device_domain_info *info;
2562
2563 if (likely(!iommu_identity_mapping))
2564 return 0;
2565
David Woodhouse9b226622014-03-09 14:03:28 -07002566 info = dev->archdata.iommu;
Mike Traviscb452a42011-05-28 13:15:03 -05002567 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2568 return (info->domain == si_domain);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002569
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002570 return 0;
2571}
2572
Joerg Roedel28ccce02015-07-21 14:45:31 +02002573static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002574{
David Woodhouse0ac72662014-03-09 13:19:22 -07002575 struct dmar_domain *ndomain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002576 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002577 u8 bus, devfn;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002578
David Woodhouse5913c9b2014-03-09 16:27:31 -07002579 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002580 if (!iommu)
2581 return -ENODEV;
2582
Joerg Roedel5db31562015-07-22 12:40:43 +02002583 ndomain = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
David Woodhouse0ac72662014-03-09 13:19:22 -07002584 if (ndomain != domain)
2585 return -EBUSY;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002586
2587 return 0;
2588}
2589
David Woodhouse0b9d9752014-03-09 15:48:15 -07002590static bool device_has_rmrr(struct device *dev)
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002591{
2592 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002593 struct device *tmp;
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002594 int i;
2595
Jiang Liu0e242612014-02-19 14:07:34 +08002596 rcu_read_lock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002597 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002598 /*
2599 * Return TRUE if this RMRR contains the device that
2600 * is passed in.
2601 */
2602 for_each_active_dev_scope(rmrr->devices,
2603 rmrr->devices_cnt, i, tmp)
David Woodhouse0b9d9752014-03-09 15:48:15 -07002604 if (tmp == dev) {
Jiang Liu0e242612014-02-19 14:07:34 +08002605 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002606 return true;
Jiang Liub683b232014-02-19 14:07:32 +08002607 }
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002608 }
Jiang Liu0e242612014-02-19 14:07:34 +08002609 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002610 return false;
2611}
2612
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002613/*
2614 * There are a couple cases where we need to restrict the functionality of
2615 * devices associated with RMRRs. The first is when evaluating a device for
2616 * identity mapping because problems exist when devices are moved in and out
2617 * of domains and their respective RMRR information is lost. This means that
2618 * a device with associated RMRRs will never be in a "passthrough" domain.
2619 * The second is use of the device through the IOMMU API. This interface
2620 * expects to have full control of the IOVA space for the device. We cannot
2621 * satisfy both the requirement that RMRR access is maintained and have an
2622 * unencumbered IOVA space. We also have no ability to quiesce the device's
2623 * use of the RMRR space or even inform the IOMMU API user of the restriction.
2624 * We therefore prevent devices associated with an RMRR from participating in
2625 * the IOMMU API, which eliminates them from device assignment.
2626 *
2627 * In both cases we assume that PCI USB devices with RMRRs have them largely
2628 * for historical reasons and that the RMRR space is not actively used post
2629 * boot. This exclusion may change if vendors begin to abuse it.
David Woodhouse18436af2015-03-25 15:05:47 +00002630 *
2631 * The same exception is made for graphics devices, with the requirement that
2632 * any use of the RMRR regions will be torn down before assigning the device
2633 * to a guest.
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002634 */
2635static bool device_is_rmrr_locked(struct device *dev)
2636{
2637 if (!device_has_rmrr(dev))
2638 return false;
2639
2640 if (dev_is_pci(dev)) {
2641 struct pci_dev *pdev = to_pci_dev(dev);
2642
David Woodhouse18436af2015-03-25 15:05:47 +00002643 if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002644 return false;
2645 }
2646
2647 return true;
2648}
2649
David Woodhouse3bdb2592014-03-09 16:03:08 -07002650static int iommu_should_identity_map(struct device *dev, int startup)
David Woodhouse6941af22009-07-04 18:24:27 +01002651{
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002652
David Woodhouse3bdb2592014-03-09 16:03:08 -07002653 if (dev_is_pci(dev)) {
2654 struct pci_dev *pdev = to_pci_dev(dev);
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002655
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002656 if (device_is_rmrr_locked(dev))
David Woodhouse3bdb2592014-03-09 16:03:08 -07002657 return 0;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002658
David Woodhouse3bdb2592014-03-09 16:03:08 -07002659 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2660 return 1;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002661
David Woodhouse3bdb2592014-03-09 16:03:08 -07002662 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2663 return 1;
2664
2665 if (!(iommu_identity_mapping & IDENTMAP_ALL))
2666 return 0;
2667
2668 /*
2669 * We want to start off with all devices in the 1:1 domain, and
2670 * take them out later if we find they can't access all of memory.
2671 *
2672 * However, we can't do this for PCI devices behind bridges,
2673 * because all PCI devices behind the same bridge will end up
2674 * with the same source-id on their transactions.
2675 *
2676 * Practically speaking, we can't change things around for these
2677 * devices at run-time, because we can't be sure there'll be no
2678 * DMA transactions in flight for any of their siblings.
2679 *
2680 * So PCI devices (unless they're on the root bus) as well as
2681 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2682 * the 1:1 domain, just in _case_ one of their siblings turns out
2683 * not to be able to map all of memory.
2684 */
2685 if (!pci_is_pcie(pdev)) {
2686 if (!pci_is_root_bus(pdev->bus))
2687 return 0;
2688 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2689 return 0;
2690 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
2691 return 0;
2692 } else {
2693 if (device_has_rmrr(dev))
2694 return 0;
2695 }
David Woodhouse6941af22009-07-04 18:24:27 +01002696
David Woodhouse3dfc8132009-07-04 19:11:08 +01002697 /*
David Woodhouse3dfc8132009-07-04 19:11:08 +01002698 * At boot time, we don't yet know if devices will be 64-bit capable.
David Woodhouse3bdb2592014-03-09 16:03:08 -07002699 * Assume that they will — if they turn out not to be, then we can
David Woodhouse3dfc8132009-07-04 19:11:08 +01002700 * take them out of the 1:1 domain later.
2701 */
Chris Wright8fcc5372011-05-28 13:15:02 -05002702 if (!startup) {
2703 /*
2704 * If the device's dma_mask is less than the system's memory
2705 * size then this is not a candidate for identity mapping.
2706 */
David Woodhouse3bdb2592014-03-09 16:03:08 -07002707 u64 dma_mask = *dev->dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002708
David Woodhouse3bdb2592014-03-09 16:03:08 -07002709 if (dev->coherent_dma_mask &&
2710 dev->coherent_dma_mask < dma_mask)
2711 dma_mask = dev->coherent_dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002712
David Woodhouse3bdb2592014-03-09 16:03:08 -07002713 return dma_mask >= dma_get_required_mask(dev);
Chris Wright8fcc5372011-05-28 13:15:02 -05002714 }
David Woodhouse6941af22009-07-04 18:24:27 +01002715
2716 return 1;
2717}
2718
David Woodhousecf04eee2014-03-21 16:49:04 +00002719static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw)
2720{
2721 int ret;
2722
2723 if (!iommu_should_identity_map(dev, 1))
2724 return 0;
2725
Joerg Roedel28ccce02015-07-21 14:45:31 +02002726 ret = domain_add_dev_info(si_domain, dev);
David Woodhousecf04eee2014-03-21 16:49:04 +00002727 if (!ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002728 pr_info("%s identity mapping for device %s\n",
2729 hw ? "Hardware" : "Software", dev_name(dev));
David Woodhousecf04eee2014-03-21 16:49:04 +00002730 else if (ret == -ENODEV)
2731 /* device not associated with an iommu */
2732 ret = 0;
2733
2734 return ret;
2735}
2736
2737
Matt Kraai071e1372009-08-23 22:30:22 -07002738static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002739{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002740 struct pci_dev *pdev = NULL;
David Woodhousecf04eee2014-03-21 16:49:04 +00002741 struct dmar_drhd_unit *drhd;
2742 struct intel_iommu *iommu;
2743 struct device *dev;
2744 int i;
2745 int ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002746
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002747 for_each_pci_dev(pdev) {
David Woodhousecf04eee2014-03-21 16:49:04 +00002748 ret = dev_prepare_static_identity_mapping(&pdev->dev, hw);
2749 if (ret)
2750 return ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002751 }
2752
David Woodhousecf04eee2014-03-21 16:49:04 +00002753 for_each_active_iommu(iommu, drhd)
2754 for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
2755 struct acpi_device_physical_node *pn;
2756 struct acpi_device *adev;
2757
2758 if (dev->bus != &acpi_bus_type)
2759 continue;
Joerg Roedel86080cc2015-06-12 12:27:16 +02002760
David Woodhousecf04eee2014-03-21 16:49:04 +00002761 adev= to_acpi_device(dev);
2762 mutex_lock(&adev->physical_node_lock);
2763 list_for_each_entry(pn, &adev->physical_node_list, node) {
2764 ret = dev_prepare_static_identity_mapping(pn->dev, hw);
2765 if (ret)
2766 break;
2767 }
2768 mutex_unlock(&adev->physical_node_lock);
2769 if (ret)
2770 return ret;
2771 }
2772
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002773 return 0;
2774}
2775
Jiang Liuffebeb42014-11-09 22:48:02 +08002776static void intel_iommu_init_qi(struct intel_iommu *iommu)
2777{
2778 /*
2779 * Start from the sane iommu hardware state.
2780 * If the queued invalidation is already initialized by us
2781 * (for example, while enabling interrupt-remapping) then
2782 * we got the things already rolling from a sane state.
2783 */
2784 if (!iommu->qi) {
2785 /*
2786 * Clear any previous faults.
2787 */
2788 dmar_fault(-1, iommu);
2789 /*
2790 * Disable queued invalidation if supported and already enabled
2791 * before OS handover.
2792 */
2793 dmar_disable_qi(iommu);
2794 }
2795
2796 if (dmar_enable_qi(iommu)) {
2797 /*
2798 * Queued Invalidate not enabled, use Register Based Invalidate
2799 */
2800 iommu->flush.flush_context = __iommu_flush_context;
2801 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002802 pr_info("%s: Using Register based invalidation\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08002803 iommu->name);
2804 } else {
2805 iommu->flush.flush_context = qi_flush_context;
2806 iommu->flush.flush_iotlb = qi_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002807 pr_info("%s: Using Queued invalidation\n", iommu->name);
Jiang Liuffebeb42014-11-09 22:48:02 +08002808 }
2809}
2810
Joerg Roedel091d42e2015-06-12 11:56:10 +02002811static int copy_context_table(struct intel_iommu *iommu,
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002812 struct root_entry __iomem *old_re,
Joerg Roedel091d42e2015-06-12 11:56:10 +02002813 struct context_entry **tbl,
2814 int bus, bool ext)
2815{
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002816 int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002817 struct context_entry __iomem *old_ce = NULL;
2818 struct context_entry *new_ce = NULL, ce;
2819 struct root_entry re;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002820 phys_addr_t old_ce_phys;
2821
2822 tbl_idx = ext ? bus * 2 : bus;
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002823 memcpy_fromio(&re, old_re, sizeof(re));
Joerg Roedel091d42e2015-06-12 11:56:10 +02002824
2825 for (devfn = 0; devfn < 256; devfn++) {
2826 /* First calculate the correct index */
2827 idx = (ext ? devfn * 2 : devfn) % 256;
2828
2829 if (idx == 0) {
2830 /* First save what we may have and clean up */
2831 if (new_ce) {
2832 tbl[tbl_idx] = new_ce;
2833 __iommu_flush_cache(iommu, new_ce,
2834 VTD_PAGE_SIZE);
2835 pos = 1;
2836 }
2837
2838 if (old_ce)
2839 iounmap(old_ce);
2840
2841 ret = 0;
2842 if (devfn < 0x80)
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002843 old_ce_phys = root_entry_lctp(&re);
Joerg Roedel091d42e2015-06-12 11:56:10 +02002844 else
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002845 old_ce_phys = root_entry_uctp(&re);
Joerg Roedel091d42e2015-06-12 11:56:10 +02002846
2847 if (!old_ce_phys) {
2848 if (ext && devfn == 0) {
2849 /* No LCTP, try UCTP */
2850 devfn = 0x7f;
2851 continue;
2852 } else {
2853 goto out;
2854 }
2855 }
2856
2857 ret = -ENOMEM;
2858 old_ce = ioremap_cache(old_ce_phys, PAGE_SIZE);
2859 if (!old_ce)
2860 goto out;
2861
2862 new_ce = alloc_pgtable_page(iommu->node);
2863 if (!new_ce)
2864 goto out_unmap;
2865
2866 ret = 0;
2867 }
2868
2869 /* Now copy the context entry */
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002870 memcpy_fromio(&ce, old_ce + idx, sizeof(ce));
Joerg Roedel091d42e2015-06-12 11:56:10 +02002871
Joerg Roedelcf484d02015-06-12 12:21:46 +02002872 if (!__context_present(&ce))
Joerg Roedel091d42e2015-06-12 11:56:10 +02002873 continue;
2874
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002875 did = context_domain_id(&ce);
2876 if (did >= 0 && did < cap_ndoms(iommu->cap))
2877 set_bit(did, iommu->domain_ids);
2878
Joerg Roedelcf484d02015-06-12 12:21:46 +02002879 /*
2880 * We need a marker for copied context entries. This
2881 * marker needs to work for the old format as well as
2882 * for extended context entries.
2883 *
2884 * Bit 67 of the context entry is used. In the old
2885 * format this bit is available to software, in the
2886 * extended format it is the PGE bit, but PGE is ignored
2887 * by HW if PASIDs are disabled (and thus still
2888 * available).
2889 *
2890 * So disable PASIDs first and then mark the entry
2891 * copied. This means that we don't copy PASID
2892 * translations from the old kernel, but this is fine as
2893 * faults there are not fatal.
2894 */
2895 context_clear_pasid_enable(&ce);
2896 context_set_copied(&ce);
2897
Joerg Roedel091d42e2015-06-12 11:56:10 +02002898 new_ce[idx] = ce;
2899 }
2900
2901 tbl[tbl_idx + pos] = new_ce;
2902
2903 __iommu_flush_cache(iommu, new_ce, VTD_PAGE_SIZE);
2904
2905out_unmap:
2906 iounmap(old_ce);
2907
2908out:
2909 return ret;
2910}
2911
2912static int copy_translation_tables(struct intel_iommu *iommu)
2913{
Joerg Roedel543c8dc2015-08-13 11:56:59 +02002914 struct root_entry __iomem *old_rt;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002915 struct context_entry **ctxt_tbls;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002916 phys_addr_t old_rt_phys;
2917 int ctxt_table_entries;
2918 unsigned long flags;
2919 u64 rtaddr_reg;
2920 int bus, ret;
Joerg Roedelc3361f22015-06-12 12:39:25 +02002921 bool new_ext, ext;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002922
2923 rtaddr_reg = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
2924 ext = !!(rtaddr_reg & DMA_RTADDR_RTT);
Joerg Roedelc3361f22015-06-12 12:39:25 +02002925 new_ext = !!ecap_ecs(iommu->ecap);
2926
2927 /*
2928 * The RTT bit can only be changed when translation is disabled,
2929 * but disabling translation means to open a window for data
2930 * corruption. So bail out and don't copy anything if we would
2931 * have to change the bit.
2932 */
2933 if (new_ext != ext)
2934 return -EINVAL;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002935
2936 old_rt_phys = rtaddr_reg & VTD_PAGE_MASK;
2937 if (!old_rt_phys)
2938 return -EINVAL;
2939
2940 old_rt = ioremap_cache(old_rt_phys, PAGE_SIZE);
2941 if (!old_rt)
2942 return -ENOMEM;
2943
2944 /* This is too big for the stack - allocate it from slab */
2945 ctxt_table_entries = ext ? 512 : 256;
2946 ret = -ENOMEM;
2947 ctxt_tbls = kzalloc(ctxt_table_entries * sizeof(void *), GFP_KERNEL);
2948 if (!ctxt_tbls)
2949 goto out_unmap;
2950
2951 for (bus = 0; bus < 256; bus++) {
2952 ret = copy_context_table(iommu, &old_rt[bus],
2953 ctxt_tbls, bus, ext);
2954 if (ret) {
2955 pr_err("%s: Failed to copy context table for bus %d\n",
2956 iommu->name, bus);
2957 continue;
2958 }
2959 }
2960
2961 spin_lock_irqsave(&iommu->lock, flags);
2962
2963 /* Context tables are copied, now write them to the root_entry table */
2964 for (bus = 0; bus < 256; bus++) {
2965 int idx = ext ? bus * 2 : bus;
2966 u64 val;
2967
2968 if (ctxt_tbls[idx]) {
2969 val = virt_to_phys(ctxt_tbls[idx]) | 1;
2970 iommu->root_entry[bus].lo = val;
2971 }
2972
2973 if (!ext || !ctxt_tbls[idx + 1])
2974 continue;
2975
2976 val = virt_to_phys(ctxt_tbls[idx + 1]) | 1;
2977 iommu->root_entry[bus].hi = val;
2978 }
2979
2980 spin_unlock_irqrestore(&iommu->lock, flags);
2981
2982 kfree(ctxt_tbls);
2983
2984 __iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
2985
2986 ret = 0;
2987
2988out_unmap:
2989 iounmap(old_rt);
2990
2991 return ret;
2992}
2993
Joseph Cihulab7792602011-05-03 00:08:37 -07002994static int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002995{
2996 struct dmar_drhd_unit *drhd;
2997 struct dmar_rmrr_unit *rmrr;
Joerg Roedela87f4912015-06-12 12:32:54 +02002998 bool copied_tables = false;
David Woodhouse832bd852014-03-07 15:08:36 +00002999 struct device *dev;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003000 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003001 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003002
3003 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003004 * for each drhd
3005 * allocate root
3006 * initialize and program root entry to not present
3007 * endfor
3008 */
3009 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08003010 /*
3011 * lock not needed as this is only incremented in the single
3012 * threaded kernel __init code path all other access are read
3013 * only
3014 */
Jiang Liu78d8e702014-11-09 22:47:57 +08003015 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) {
Mike Travis1b198bb2012-03-05 15:05:16 -08003016 g_num_of_iommus++;
3017 continue;
3018 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003019 pr_err_once("Exceeded %d IOMMUs\n", DMAR_UNITS_SUPPORTED);
mark gross5e0d2a62008-03-04 15:22:08 -08003020 }
3021
Jiang Liuffebeb42014-11-09 22:48:02 +08003022 /* Preallocate enough resources for IOMMU hot-addition */
3023 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED)
3024 g_num_of_iommus = DMAR_UNITS_SUPPORTED;
3025
Weidong Hand9630fe2008-12-08 11:06:32 +08003026 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
3027 GFP_KERNEL);
3028 if (!g_iommus) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003029 pr_err("Allocating global iommu array failed\n");
Weidong Hand9630fe2008-12-08 11:06:32 +08003030 ret = -ENOMEM;
3031 goto error;
3032 }
3033
mark gross80b20dd2008-04-18 13:53:58 -07003034 deferred_flush = kzalloc(g_num_of_iommus *
3035 sizeof(struct deferred_flush_tables), GFP_KERNEL);
3036 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08003037 ret = -ENOMEM;
Jiang Liu989d51f2014-02-19 14:07:21 +08003038 goto free_g_iommus;
mark gross5e0d2a62008-03-04 15:22:08 -08003039 }
3040
Jiang Liu7c919772014-01-06 14:18:18 +08003041 for_each_active_iommu(iommu, drhd) {
Weidong Hand9630fe2008-12-08 11:06:32 +08003042 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003043
Joerg Roedelb63d80d2015-06-12 09:14:34 +02003044 intel_iommu_init_qi(iommu);
3045
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003046 ret = iommu_init_domains(iommu);
3047 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003048 goto free_iommu;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003049
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003050 init_translation_status(iommu);
3051
Joerg Roedel091d42e2015-06-12 11:56:10 +02003052 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
3053 iommu_disable_translation(iommu);
3054 clear_translation_pre_enabled(iommu);
3055 pr_warn("Translation was enabled for %s but we are not in kdump mode\n",
3056 iommu->name);
3057 }
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003058
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003059 /*
3060 * TBD:
3061 * we could share the same root & context tables
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003062 * among all IOMMU's. Need to Split it later.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003063 */
3064 ret = iommu_alloc_root_entry(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003065 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003066 goto free_iommu;
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003067
Joerg Roedel091d42e2015-06-12 11:56:10 +02003068 if (translation_pre_enabled(iommu)) {
3069 pr_info("Translation already enabled - trying to copy translation structures\n");
3070
3071 ret = copy_translation_tables(iommu);
3072 if (ret) {
3073 /*
3074 * We found the IOMMU with translation
3075 * enabled - but failed to copy over the
3076 * old root-entry table. Try to proceed
3077 * by disabling translation now and
3078 * allocating a clean root-entry table.
3079 * This might cause DMAR faults, but
3080 * probably the dump will still succeed.
3081 */
3082 pr_err("Failed to copy translation tables from previous kernel for %s\n",
3083 iommu->name);
3084 iommu_disable_translation(iommu);
3085 clear_translation_pre_enabled(iommu);
3086 } else {
3087 pr_info("Copied translation tables from previous kernel for %s\n",
3088 iommu->name);
Joerg Roedela87f4912015-06-12 12:32:54 +02003089 copied_tables = true;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003090 }
3091 }
3092
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003093 iommu_flush_write_buffer(iommu);
3094 iommu_set_root_entry(iommu);
3095 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
3096 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3097
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003098 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01003099 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003100 }
3101
David Woodhouse19943b02009-08-04 16:19:20 +01003102 if (iommu_pass_through)
David Woodhousee0fc7e02009-09-30 09:12:17 -07003103 iommu_identity_mapping |= IDENTMAP_ALL;
3104
Suresh Siddhad3f13812011-08-23 17:05:25 -07003105#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
David Woodhousee0fc7e02009-09-30 09:12:17 -07003106 iommu_identity_mapping |= IDENTMAP_GFX;
David Woodhouse19943b02009-08-04 16:19:20 +01003107#endif
David Woodhousee0fc7e02009-09-30 09:12:17 -07003108
Joerg Roedel86080cc2015-06-12 12:27:16 +02003109 if (iommu_identity_mapping) {
3110 ret = si_domain_init(hw_pass_through);
3111 if (ret)
3112 goto free_iommu;
3113 }
3114
David Woodhousee0fc7e02009-09-30 09:12:17 -07003115 check_tylersburg_isoch();
3116
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003117 /*
Joerg Roedela87f4912015-06-12 12:32:54 +02003118 * If we copied translations from a previous kernel in the kdump
3119 * case, we can not assign the devices to domains now, as that
3120 * would eliminate the old mappings. So skip this part and defer
3121 * the assignment to device driver initialization time.
3122 */
3123 if (copied_tables)
3124 goto domains_done;
3125
3126 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003127 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003128 * identity mappings for rmrr, gfx, and isa and may fall back to static
3129 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003130 */
David Woodhouse19943b02009-08-04 16:19:20 +01003131 if (iommu_identity_mapping) {
3132 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
3133 if (ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003134 pr_crit("Failed to setup IOMMU pass-through\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08003135 goto free_iommu;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003136 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003137 }
David Woodhouse19943b02009-08-04 16:19:20 +01003138 /*
3139 * For each rmrr
3140 * for each dev attached to rmrr
3141 * do
3142 * locate drhd for dev, alloc domain for dev
3143 * allocate free domain
3144 * allocate page table entries for rmrr
3145 * if context not allocated for bus
3146 * allocate and init context
3147 * set present in root table for this bus
3148 * init context with domain, translation etc
3149 * endfor
3150 * endfor
3151 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003152 pr_info("Setting RMRR:\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003153 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08003154 /* some BIOS lists non-exist devices in DMAR table. */
3155 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
David Woodhouse832bd852014-03-07 15:08:36 +00003156 i, dev) {
David Woodhouse0b9d9752014-03-09 15:48:15 -07003157 ret = iommu_prepare_rmrr_dev(rmrr, dev);
David Woodhouse19943b02009-08-04 16:19:20 +01003158 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003159 pr_err("Mapping reserved region failed\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003160 }
3161 }
3162
3163 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07003164
Joerg Roedela87f4912015-06-12 12:32:54 +02003165domains_done:
3166
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003167 /*
3168 * for each drhd
3169 * enable fault log
3170 * global invalidate context cache
3171 * global invalidate iotlb
3172 * enable translation
3173 */
Jiang Liu7c919772014-01-06 14:18:18 +08003174 for_each_iommu(iommu, drhd) {
Joseph Cihula51a63e62011-03-21 11:04:24 -07003175 if (drhd->ignored) {
3176 /*
3177 * we always have to disable PMRs or DMA may fail on
3178 * this device
3179 */
3180 if (force_on)
Jiang Liu7c919772014-01-06 14:18:18 +08003181 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003182 continue;
Joseph Cihula51a63e62011-03-21 11:04:24 -07003183 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003184
3185 iommu_flush_write_buffer(iommu);
3186
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003187 ret = dmar_set_interrupt(iommu);
3188 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003189 goto free_iommu;
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003190
Joerg Roedel8939ddf2015-06-12 14:40:01 +02003191 if (!translation_pre_enabled(iommu))
3192 iommu_enable_translation(iommu);
3193
David Woodhouseb94996c2009-09-19 15:28:12 -07003194 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003195 }
3196
3197 return 0;
Jiang Liu989d51f2014-02-19 14:07:21 +08003198
3199free_iommu:
Jiang Liuffebeb42014-11-09 22:48:02 +08003200 for_each_active_iommu(iommu, drhd) {
3201 disable_dmar_iommu(iommu);
Jiang Liua868e6b2014-01-06 14:18:20 +08003202 free_dmar_iommu(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003203 }
Jiang Liu9bdc5312014-01-06 14:18:27 +08003204 kfree(deferred_flush);
Jiang Liu989d51f2014-02-19 14:07:21 +08003205free_g_iommus:
Weidong Hand9630fe2008-12-08 11:06:32 +08003206 kfree(g_iommus);
Jiang Liu989d51f2014-02-19 14:07:21 +08003207error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003208 return ret;
3209}
3210
David Woodhouse5a5e02a2009-07-04 09:35:44 +01003211/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01003212static struct iova *intel_alloc_iova(struct device *dev,
3213 struct dmar_domain *domain,
3214 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003215{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003216 struct iova *iova = NULL;
3217
David Woodhouse875764d2009-06-28 21:20:51 +01003218 /* Restrict dma_mask to the width that the iommu can handle */
3219 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
3220
3221 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003222 /*
3223 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07003224 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08003225 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003226 */
David Woodhouse875764d2009-06-28 21:20:51 +01003227 iova = alloc_iova(&domain->iovad, nrpages,
3228 IOVA_PFN(DMA_BIT_MASK(32)), 1);
3229 if (iova)
3230 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003231 }
David Woodhouse875764d2009-06-28 21:20:51 +01003232 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
3233 if (unlikely(!iova)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003234 pr_err("Allocating %ld-page iova for %s failed",
David Woodhouse207e3592014-03-09 16:12:32 -07003235 nrpages, dev_name(dev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003236 return NULL;
3237 }
3238
3239 return iova;
3240}
3241
David Woodhoused4b709f2014-03-09 16:07:40 -07003242static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003243{
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003244 struct dmar_rmrr_unit *rmrr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003245 struct dmar_domain *domain;
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003246 struct device *i_dev;
3247 int i, ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003248
David Woodhoused4b709f2014-03-09 16:07:40 -07003249 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003250 if (!domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003251 pr_err("Allocating domain for %s failed\n",
David Woodhoused4b709f2014-03-09 16:07:40 -07003252 dev_name(dev));
Al Viro4fe05bb2007-10-29 04:51:16 +00003253 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003254 }
3255
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003256 /* We have a new domain - setup possible RMRRs for the device */
3257 rcu_read_lock();
3258 for_each_rmrr_units(rmrr) {
3259 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
3260 i, i_dev) {
3261 if (i_dev != dev)
3262 continue;
3263
3264 ret = domain_prepare_identity_map(dev, domain,
3265 rmrr->base_address,
3266 rmrr->end_address);
3267 if (ret)
3268 dev_err(dev, "Mapping reserved region failed\n");
3269 }
3270 }
3271 rcu_read_unlock();
3272
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003273 return domain;
3274}
3275
David Woodhoused4b709f2014-03-09 16:07:40 -07003276static inline struct dmar_domain *get_valid_domain_for_dev(struct device *dev)
David Woodhouse147202a2009-07-07 19:43:20 +01003277{
3278 struct device_domain_info *info;
3279
3280 /* No lock here, assumes no domain exit in normal case */
David Woodhoused4b709f2014-03-09 16:07:40 -07003281 info = dev->archdata.iommu;
David Woodhouse147202a2009-07-07 19:43:20 +01003282 if (likely(info))
3283 return info->domain;
3284
3285 return __get_valid_domain_for_dev(dev);
3286}
3287
David Woodhouseecb509e2014-03-09 16:29:55 -07003288/* Check if the dev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01003289static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003290{
3291 int found;
3292
David Woodhouse3d891942014-03-06 15:59:26 +00003293 if (iommu_dummy(dev))
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003294 return 1;
3295
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003296 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003297 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003298
David Woodhouse9b226622014-03-09 14:03:28 -07003299 found = identity_mapping(dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003300 if (found) {
David Woodhouseecb509e2014-03-09 16:29:55 -07003301 if (iommu_should_identity_map(dev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003302 return 1;
3303 else {
3304 /*
3305 * 32 bit DMA is removed from si_domain and fall back
3306 * to non-identity mapping.
3307 */
Joerg Roedele6de0f82015-07-22 16:30:36 +02003308 dmar_remove_one_dev_info(si_domain, dev);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003309 pr_info("32bit %s uses non-identity mapping\n",
3310 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003311 return 0;
3312 }
3313 } else {
3314 /*
3315 * In case of a detached 64 bit DMA device from vm, the device
3316 * is put into si_domain for identity mapping.
3317 */
David Woodhouseecb509e2014-03-09 16:29:55 -07003318 if (iommu_should_identity_map(dev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003319 int ret;
Joerg Roedel28ccce02015-07-21 14:45:31 +02003320 ret = domain_add_dev_info(si_domain, dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003321 if (!ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003322 pr_info("64bit %s uses identity mapping\n",
3323 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003324 return 1;
3325 }
3326 }
3327 }
3328
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003329 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003330}
3331
David Woodhouse5040a912014-03-09 16:14:00 -07003332static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003333 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003334{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003335 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003336 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003337 struct iova *iova;
3338 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003339 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08003340 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07003341 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003342
3343 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003344
David Woodhouse5040a912014-03-09 16:14:00 -07003345 if (iommu_no_mapping(dev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003346 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003347
David Woodhouse5040a912014-03-09 16:14:00 -07003348 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003349 if (!domain)
3350 return 0;
3351
Weidong Han8c11e792008-12-08 15:29:22 +08003352 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01003353 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003354
David Woodhouse5040a912014-03-09 16:14:00 -07003355 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003356 if (!iova)
3357 goto error;
3358
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003359 /*
3360 * Check if DMAR supports zero-length reads on write only
3361 * mappings..
3362 */
3363 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003364 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003365 prot |= DMA_PTE_READ;
3366 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3367 prot |= DMA_PTE_WRITE;
3368 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003369 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003370 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003371 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003372 * is not a big problem
3373 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01003374 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
Fenghua Yu33041ec2009-08-04 15:10:59 -07003375 mm_to_dma_pfn(paddr_pfn), size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003376 if (ret)
3377 goto error;
3378
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003379 /* it's a non-present to present mapping. Only flush if caching mode */
3380 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003381 iommu_flush_iotlb_psi(iommu, domain,
3382 mm_to_dma_pfn(iova->pfn_lo),
3383 size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003384 else
Weidong Han8c11e792008-12-08 15:29:22 +08003385 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003386
David Woodhouse03d6a242009-06-28 15:33:46 +01003387 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
3388 start_paddr += paddr & ~PAGE_MASK;
3389 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003390
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003391error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003392 if (iova)
3393 __free_iova(&domain->iovad, iova);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003394 pr_err("Device %s request: %zx@%llx dir %d --- failed\n",
David Woodhouse5040a912014-03-09 16:14:00 -07003395 dev_name(dev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003396 return 0;
3397}
3398
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003399static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3400 unsigned long offset, size_t size,
3401 enum dma_data_direction dir,
3402 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003403{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003404 return __intel_map_single(dev, page_to_phys(page) + offset, size,
David Woodhouse46333e32014-03-10 20:01:21 -07003405 dir, *dev->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003406}
3407
mark gross5e0d2a62008-03-04 15:22:08 -08003408static void flush_unmaps(void)
3409{
mark gross80b20dd2008-04-18 13:53:58 -07003410 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08003411
mark gross5e0d2a62008-03-04 15:22:08 -08003412 timer_on = 0;
3413
3414 /* just flush them all */
3415 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08003416 struct intel_iommu *iommu = g_iommus[i];
3417 if (!iommu)
3418 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003419
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003420 if (!deferred_flush[i].next)
3421 continue;
3422
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003423 /* In caching mode, global flushes turn emulation expensive */
3424 if (!cap_caching_mode(iommu->cap))
3425 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08003426 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003427 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08003428 unsigned long mask;
3429 struct iova *iova = deferred_flush[i].iova[j];
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003430 struct dmar_domain *domain = deferred_flush[i].domain[j];
Yu Zhao93a23a72009-05-18 13:51:37 +08003431
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003432 /* On real hardware multiple invalidations are expensive */
3433 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003434 iommu_flush_iotlb_psi(iommu, domain,
Jiang Liua156ef92014-07-11 14:19:36 +08003435 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00003436 !deferred_flush[i].freelist[j], 0);
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003437 else {
Jiang Liua156ef92014-07-11 14:19:36 +08003438 mask = ilog2(mm_to_dma_pfn(iova_size(iova)));
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003439 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
3440 (uint64_t)iova->pfn_lo << PAGE_SHIFT, mask);
3441 }
Yu Zhao93a23a72009-05-18 13:51:37 +08003442 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003443 if (deferred_flush[i].freelist[j])
3444 dma_free_pagelist(deferred_flush[i].freelist[j]);
mark gross80b20dd2008-04-18 13:53:58 -07003445 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003446 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003447 }
3448
mark gross5e0d2a62008-03-04 15:22:08 -08003449 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003450}
3451
3452static void flush_unmaps_timeout(unsigned long data)
3453{
mark gross80b20dd2008-04-18 13:53:58 -07003454 unsigned long flags;
3455
3456 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003457 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07003458 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003459}
3460
David Woodhouseea8ea462014-03-05 17:09:32 +00003461static void add_unmap(struct dmar_domain *dom, struct iova *iova, struct page *freelist)
mark gross5e0d2a62008-03-04 15:22:08 -08003462{
3463 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07003464 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08003465 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08003466
3467 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07003468 if (list_size == HIGH_WATER_MARK)
3469 flush_unmaps();
3470
Weidong Han8c11e792008-12-08 15:29:22 +08003471 iommu = domain_get_iommu(dom);
3472 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003473
mark gross80b20dd2008-04-18 13:53:58 -07003474 next = deferred_flush[iommu_id].next;
3475 deferred_flush[iommu_id].domain[next] = dom;
3476 deferred_flush[iommu_id].iova[next] = iova;
David Woodhouseea8ea462014-03-05 17:09:32 +00003477 deferred_flush[iommu_id].freelist[next] = freelist;
mark gross80b20dd2008-04-18 13:53:58 -07003478 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08003479
3480 if (!timer_on) {
3481 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
3482 timer_on = 1;
3483 }
3484 list_size++;
3485 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
3486}
3487
Jiang Liud41a4ad2014-07-11 14:19:34 +08003488static void intel_unmap(struct device *dev, dma_addr_t dev_addr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003489{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003490 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003491 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003492 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08003493 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003494 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003495
David Woodhouse73676832009-07-04 14:08:36 +01003496 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003497 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003498
David Woodhouse1525a292014-03-06 16:19:30 +00003499 domain = find_domain(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003500 BUG_ON(!domain);
3501
Weidong Han8c11e792008-12-08 15:29:22 +08003502 iommu = domain_get_iommu(domain);
3503
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003504 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01003505 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
3506 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003507 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003508
David Woodhoused794dc92009-06-28 00:27:49 +01003509 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
3510 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003511
David Woodhoused794dc92009-06-28 00:27:49 +01003512 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
David Woodhouse207e3592014-03-09 16:12:32 -07003513 dev_name(dev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003514
David Woodhouseea8ea462014-03-05 17:09:32 +00003515 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003516
mark gross5e0d2a62008-03-04 15:22:08 -08003517 if (intel_iommu_strict) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003518 iommu_flush_iotlb_psi(iommu, domain, start_pfn,
David Woodhouseea8ea462014-03-05 17:09:32 +00003519 last_pfn - start_pfn + 1, !freelist, 0);
mark gross5e0d2a62008-03-04 15:22:08 -08003520 /* free iova */
3521 __free_iova(&domain->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003522 dma_free_pagelist(freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003523 } else {
David Woodhouseea8ea462014-03-05 17:09:32 +00003524 add_unmap(domain, iova, freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003525 /*
3526 * queue up the release of the unmap to save the 1/6th of the
3527 * cpu used up by the iotlb flush operation...
3528 */
mark gross5e0d2a62008-03-04 15:22:08 -08003529 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003530}
3531
Jiang Liud41a4ad2014-07-11 14:19:34 +08003532static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3533 size_t size, enum dma_data_direction dir,
3534 struct dma_attrs *attrs)
3535{
3536 intel_unmap(dev, dev_addr);
3537}
3538
David Woodhouse5040a912014-03-09 16:14:00 -07003539static void *intel_alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003540 dma_addr_t *dma_handle, gfp_t flags,
3541 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003542{
Akinobu Mita36746432014-06-04 16:06:51 -07003543 struct page *page = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003544 int order;
3545
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003546 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003547 order = get_order(size);
Alex Williamsone8bb9102009-11-04 15:59:34 -07003548
David Woodhouse5040a912014-03-09 16:14:00 -07003549 if (!iommu_no_mapping(dev))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003550 flags &= ~(GFP_DMA | GFP_DMA32);
David Woodhouse5040a912014-03-09 16:14:00 -07003551 else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) {
3552 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003553 flags |= GFP_DMA;
3554 else
3555 flags |= GFP_DMA32;
3556 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003557
Akinobu Mita36746432014-06-04 16:06:51 -07003558 if (flags & __GFP_WAIT) {
3559 unsigned int count = size >> PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003560
Akinobu Mita36746432014-06-04 16:06:51 -07003561 page = dma_alloc_from_contiguous(dev, count, order);
3562 if (page && iommu_no_mapping(dev) &&
3563 page_to_phys(page) + size > dev->coherent_dma_mask) {
3564 dma_release_from_contiguous(dev, page, count);
3565 page = NULL;
3566 }
3567 }
3568
3569 if (!page)
3570 page = alloc_pages(flags, order);
3571 if (!page)
3572 return NULL;
3573 memset(page_address(page), 0, size);
3574
3575 *dma_handle = __intel_map_single(dev, page_to_phys(page), size,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003576 DMA_BIDIRECTIONAL,
David Woodhouse5040a912014-03-09 16:14:00 -07003577 dev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003578 if (*dma_handle)
Akinobu Mita36746432014-06-04 16:06:51 -07003579 return page_address(page);
3580 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3581 __free_pages(page, order);
3582
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003583 return NULL;
3584}
3585
David Woodhouse5040a912014-03-09 16:14:00 -07003586static void intel_free_coherent(struct device *dev, size_t size, void *vaddr,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003587 dma_addr_t dma_handle, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003588{
3589 int order;
Akinobu Mita36746432014-06-04 16:06:51 -07003590 struct page *page = virt_to_page(vaddr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003591
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003592 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003593 order = get_order(size);
3594
Jiang Liud41a4ad2014-07-11 14:19:34 +08003595 intel_unmap(dev, dma_handle);
Akinobu Mita36746432014-06-04 16:06:51 -07003596 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3597 __free_pages(page, order);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003598}
3599
David Woodhouse5040a912014-03-09 16:14:00 -07003600static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003601 int nelems, enum dma_data_direction dir,
3602 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003603{
Jiang Liud41a4ad2014-07-11 14:19:34 +08003604 intel_unmap(dev, sglist[0].dma_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003605}
3606
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003607static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003608 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003609{
3610 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003611 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003612
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003613 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02003614 BUG_ON(!sg_page(sg));
Dan Williamsdb0fa0c2015-08-17 08:13:26 -06003615 sg->dma_address = sg_phys(sg);
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003616 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003617 }
3618 return nelems;
3619}
3620
David Woodhouse5040a912014-03-09 16:14:00 -07003621static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003622 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003623{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003624 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003625 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003626 size_t size = 0;
3627 int prot = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003628 struct iova *iova = NULL;
3629 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003630 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01003631 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003632 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003633
3634 BUG_ON(dir == DMA_NONE);
David Woodhouse5040a912014-03-09 16:14:00 -07003635 if (iommu_no_mapping(dev))
3636 return intel_nontranslate_map_sg(dev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003637
David Woodhouse5040a912014-03-09 16:14:00 -07003638 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003639 if (!domain)
3640 return 0;
3641
Weidong Han8c11e792008-12-08 15:29:22 +08003642 iommu = domain_get_iommu(domain);
3643
David Woodhouseb536d242009-06-28 14:49:31 +01003644 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01003645 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003646
David Woodhouse5040a912014-03-09 16:14:00 -07003647 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size),
3648 *dev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003649 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003650 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003651 return 0;
3652 }
3653
3654 /*
3655 * Check if DMAR supports zero-length reads on write only
3656 * mappings..
3657 */
3658 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003659 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003660 prot |= DMA_PTE_READ;
3661 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3662 prot |= DMA_PTE_WRITE;
3663
David Woodhouseb536d242009-06-28 14:49:31 +01003664 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01003665
Fenghua Yuf5329592009-08-04 15:09:37 -07003666 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01003667 if (unlikely(ret)) {
David Woodhousee1605492009-06-29 11:17:38 +01003668 dma_pte_free_pagetable(domain, start_vpfn,
3669 start_vpfn + size - 1);
David Woodhousee1605492009-06-29 11:17:38 +01003670 __free_iova(&domain->iovad, iova);
3671 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003672 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003673
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003674 /* it's a non-present to present mapping. Only flush if caching mode */
3675 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003676 iommu_flush_iotlb_psi(iommu, domain, start_vpfn, size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003677 else
Weidong Han8c11e792008-12-08 15:29:22 +08003678 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003679
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003680 return nelems;
3681}
3682
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003683static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
3684{
3685 return !dma_addr;
3686}
3687
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003688struct dma_map_ops intel_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003689 .alloc = intel_alloc_coherent,
3690 .free = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003691 .map_sg = intel_map_sg,
3692 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003693 .map_page = intel_map_page,
3694 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003695 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003696};
3697
3698static inline int iommu_domain_cache_init(void)
3699{
3700 int ret = 0;
3701
3702 iommu_domain_cache = kmem_cache_create("iommu_domain",
3703 sizeof(struct dmar_domain),
3704 0,
3705 SLAB_HWCACHE_ALIGN,
3706
3707 NULL);
3708 if (!iommu_domain_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003709 pr_err("Couldn't create iommu_domain cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003710 ret = -ENOMEM;
3711 }
3712
3713 return ret;
3714}
3715
3716static inline int iommu_devinfo_cache_init(void)
3717{
3718 int ret = 0;
3719
3720 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3721 sizeof(struct device_domain_info),
3722 0,
3723 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003724 NULL);
3725 if (!iommu_devinfo_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003726 pr_err("Couldn't create devinfo cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003727 ret = -ENOMEM;
3728 }
3729
3730 return ret;
3731}
3732
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003733static int __init iommu_init_mempool(void)
3734{
3735 int ret;
3736 ret = iommu_iova_cache_init();
3737 if (ret)
3738 return ret;
3739
3740 ret = iommu_domain_cache_init();
3741 if (ret)
3742 goto domain_error;
3743
3744 ret = iommu_devinfo_cache_init();
3745 if (!ret)
3746 return ret;
3747
3748 kmem_cache_destroy(iommu_domain_cache);
3749domain_error:
Robin Murphy85b45452015-01-12 17:51:14 +00003750 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003751
3752 return -ENOMEM;
3753}
3754
3755static void __init iommu_exit_mempool(void)
3756{
3757 kmem_cache_destroy(iommu_devinfo_cache);
3758 kmem_cache_destroy(iommu_domain_cache);
Robin Murphy85b45452015-01-12 17:51:14 +00003759 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003760}
3761
Dan Williams556ab452010-07-23 15:47:56 -07003762static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
3763{
3764 struct dmar_drhd_unit *drhd;
3765 u32 vtbar;
3766 int rc;
3767
3768 /* We know that this device on this chipset has its own IOMMU.
3769 * If we find it under a different IOMMU, then the BIOS is lying
3770 * to us. Hope that the IOMMU for this device is actually
3771 * disabled, and it needs no translation...
3772 */
3773 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
3774 if (rc) {
3775 /* "can't" happen */
3776 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
3777 return;
3778 }
3779 vtbar &= 0xffff0000;
3780
3781 /* we know that the this iommu should be at offset 0xa000 from vtbar */
3782 drhd = dmar_find_matched_drhd_unit(pdev);
3783 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
3784 TAINT_FIRMWARE_WORKAROUND,
3785 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
3786 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
3787}
3788DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
3789
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003790static void __init init_no_remapping_devices(void)
3791{
3792 struct dmar_drhd_unit *drhd;
David Woodhouse832bd852014-03-07 15:08:36 +00003793 struct device *dev;
Jiang Liub683b232014-02-19 14:07:32 +08003794 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003795
3796 for_each_drhd_unit(drhd) {
3797 if (!drhd->include_all) {
Jiang Liub683b232014-02-19 14:07:32 +08003798 for_each_active_dev_scope(drhd->devices,
3799 drhd->devices_cnt, i, dev)
3800 break;
David Woodhouse832bd852014-03-07 15:08:36 +00003801 /* ignore DMAR unit if no devices exist */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003802 if (i == drhd->devices_cnt)
3803 drhd->ignored = 1;
3804 }
3805 }
3806
Jiang Liu7c919772014-01-06 14:18:18 +08003807 for_each_active_drhd_unit(drhd) {
Jiang Liu7c919772014-01-06 14:18:18 +08003808 if (drhd->include_all)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003809 continue;
3810
Jiang Liub683b232014-02-19 14:07:32 +08003811 for_each_active_dev_scope(drhd->devices,
3812 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003813 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003814 break;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003815 if (i < drhd->devices_cnt)
3816 continue;
3817
David Woodhousec0771df2011-10-14 20:59:46 +01003818 /* This IOMMU has *only* gfx devices. Either bypass it or
3819 set the gfx_mapped flag, as appropriate */
3820 if (dmar_map_gfx) {
3821 intel_iommu_gfx_mapped = 1;
3822 } else {
3823 drhd->ignored = 1;
Jiang Liub683b232014-02-19 14:07:32 +08003824 for_each_active_dev_scope(drhd->devices,
3825 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003826 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003827 }
3828 }
3829}
3830
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003831#ifdef CONFIG_SUSPEND
3832static int init_iommu_hw(void)
3833{
3834 struct dmar_drhd_unit *drhd;
3835 struct intel_iommu *iommu = NULL;
3836
3837 for_each_active_iommu(iommu, drhd)
3838 if (iommu->qi)
3839 dmar_reenable_qi(iommu);
3840
Joseph Cihulab7792602011-05-03 00:08:37 -07003841 for_each_iommu(iommu, drhd) {
3842 if (drhd->ignored) {
3843 /*
3844 * we always have to disable PMRs or DMA may fail on
3845 * this device
3846 */
3847 if (force_on)
3848 iommu_disable_protect_mem_regions(iommu);
3849 continue;
3850 }
3851
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003852 iommu_flush_write_buffer(iommu);
3853
3854 iommu_set_root_entry(iommu);
3855
3856 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003857 DMA_CCMD_GLOBAL_INVL);
Jiang Liu2a41cce2014-07-11 14:19:33 +08003858 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3859 iommu_enable_translation(iommu);
David Woodhouseb94996c2009-09-19 15:28:12 -07003860 iommu_disable_protect_mem_regions(iommu);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003861 }
3862
3863 return 0;
3864}
3865
3866static void iommu_flush_all(void)
3867{
3868 struct dmar_drhd_unit *drhd;
3869 struct intel_iommu *iommu;
3870
3871 for_each_active_iommu(iommu, drhd) {
3872 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003873 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003874 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003875 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003876 }
3877}
3878
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003879static int iommu_suspend(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003880{
3881 struct dmar_drhd_unit *drhd;
3882 struct intel_iommu *iommu = NULL;
3883 unsigned long flag;
3884
3885 for_each_active_iommu(iommu, drhd) {
3886 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3887 GFP_ATOMIC);
3888 if (!iommu->iommu_state)
3889 goto nomem;
3890 }
3891
3892 iommu_flush_all();
3893
3894 for_each_active_iommu(iommu, drhd) {
3895 iommu_disable_translation(iommu);
3896
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003897 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003898
3899 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3900 readl(iommu->reg + DMAR_FECTL_REG);
3901 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3902 readl(iommu->reg + DMAR_FEDATA_REG);
3903 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3904 readl(iommu->reg + DMAR_FEADDR_REG);
3905 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3906 readl(iommu->reg + DMAR_FEUADDR_REG);
3907
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003908 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003909 }
3910 return 0;
3911
3912nomem:
3913 for_each_active_iommu(iommu, drhd)
3914 kfree(iommu->iommu_state);
3915
3916 return -ENOMEM;
3917}
3918
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003919static void iommu_resume(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003920{
3921 struct dmar_drhd_unit *drhd;
3922 struct intel_iommu *iommu = NULL;
3923 unsigned long flag;
3924
3925 if (init_iommu_hw()) {
Joseph Cihulab7792602011-05-03 00:08:37 -07003926 if (force_on)
3927 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
3928 else
3929 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003930 return;
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003931 }
3932
3933 for_each_active_iommu(iommu, drhd) {
3934
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003935 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003936
3937 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3938 iommu->reg + DMAR_FECTL_REG);
3939 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3940 iommu->reg + DMAR_FEDATA_REG);
3941 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3942 iommu->reg + DMAR_FEADDR_REG);
3943 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3944 iommu->reg + DMAR_FEUADDR_REG);
3945
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003946 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003947 }
3948
3949 for_each_active_iommu(iommu, drhd)
3950 kfree(iommu->iommu_state);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003951}
3952
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003953static struct syscore_ops iommu_syscore_ops = {
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003954 .resume = iommu_resume,
3955 .suspend = iommu_suspend,
3956};
3957
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003958static void __init init_iommu_pm_ops(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003959{
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003960 register_syscore_ops(&iommu_syscore_ops);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003961}
3962
3963#else
Rafael J. Wysocki99592ba2011-06-07 21:32:31 +02003964static inline void init_iommu_pm_ops(void) {}
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003965#endif /* CONFIG_PM */
3966
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003967
Jiang Liuc2a0b532014-11-09 22:47:56 +08003968int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003969{
3970 struct acpi_dmar_reserved_memory *rmrr;
3971 struct dmar_rmrr_unit *rmrru;
3972
3973 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
3974 if (!rmrru)
3975 return -ENOMEM;
3976
3977 rmrru->hdr = header;
3978 rmrr = (struct acpi_dmar_reserved_memory *)header;
3979 rmrru->base_address = rmrr->base_address;
3980 rmrru->end_address = rmrr->end_address;
Jiang Liu2e455282014-02-19 14:07:36 +08003981 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
3982 ((void *)rmrr) + rmrr->header.length,
3983 &rmrru->devices_cnt);
3984 if (rmrru->devices_cnt && rmrru->devices == NULL) {
3985 kfree(rmrru);
3986 return -ENOMEM;
3987 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003988
Jiang Liu2e455282014-02-19 14:07:36 +08003989 list_add(&rmrru->list, &dmar_rmrr_units);
3990
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003991 return 0;
3992}
3993
Jiang Liu6b197242014-11-09 22:47:58 +08003994static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr)
3995{
3996 struct dmar_atsr_unit *atsru;
3997 struct acpi_dmar_atsr *tmp;
3998
3999 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4000 tmp = (struct acpi_dmar_atsr *)atsru->hdr;
4001 if (atsr->segment != tmp->segment)
4002 continue;
4003 if (atsr->header.length != tmp->header.length)
4004 continue;
4005 if (memcmp(atsr, tmp, atsr->header.length) == 0)
4006 return atsru;
4007 }
4008
4009 return NULL;
4010}
4011
4012int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004013{
4014 struct acpi_dmar_atsr *atsr;
4015 struct dmar_atsr_unit *atsru;
4016
Jiang Liu6b197242014-11-09 22:47:58 +08004017 if (system_state != SYSTEM_BOOTING && !intel_iommu_enabled)
4018 return 0;
4019
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004020 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
Jiang Liu6b197242014-11-09 22:47:58 +08004021 atsru = dmar_find_atsr(atsr);
4022 if (atsru)
4023 return 0;
4024
4025 atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004026 if (!atsru)
4027 return -ENOMEM;
4028
Jiang Liu6b197242014-11-09 22:47:58 +08004029 /*
4030 * If memory is allocated from slab by ACPI _DSM method, we need to
4031 * copy the memory content because the memory buffer will be freed
4032 * on return.
4033 */
4034 atsru->hdr = (void *)(atsru + 1);
4035 memcpy(atsru->hdr, hdr, hdr->length);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004036 atsru->include_all = atsr->flags & 0x1;
Jiang Liu2e455282014-02-19 14:07:36 +08004037 if (!atsru->include_all) {
4038 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
4039 (void *)atsr + atsr->header.length,
4040 &atsru->devices_cnt);
4041 if (atsru->devices_cnt && atsru->devices == NULL) {
4042 kfree(atsru);
4043 return -ENOMEM;
4044 }
4045 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004046
Jiang Liu0e242612014-02-19 14:07:34 +08004047 list_add_rcu(&atsru->list, &dmar_atsr_units);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004048
4049 return 0;
4050}
4051
Jiang Liu9bdc5312014-01-06 14:18:27 +08004052static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
4053{
4054 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
4055 kfree(atsru);
4056}
4057
Jiang Liu6b197242014-11-09 22:47:58 +08004058int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4059{
4060 struct acpi_dmar_atsr *atsr;
4061 struct dmar_atsr_unit *atsru;
4062
4063 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4064 atsru = dmar_find_atsr(atsr);
4065 if (atsru) {
4066 list_del_rcu(&atsru->list);
4067 synchronize_rcu();
4068 intel_iommu_free_atsr(atsru);
4069 }
4070
4071 return 0;
4072}
4073
4074int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4075{
4076 int i;
4077 struct device *dev;
4078 struct acpi_dmar_atsr *atsr;
4079 struct dmar_atsr_unit *atsru;
4080
4081 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4082 atsru = dmar_find_atsr(atsr);
4083 if (!atsru)
4084 return 0;
4085
4086 if (!atsru->include_all && atsru->devices && atsru->devices_cnt)
4087 for_each_active_dev_scope(atsru->devices, atsru->devices_cnt,
4088 i, dev)
4089 return -EBUSY;
4090
4091 return 0;
4092}
4093
Jiang Liuffebeb42014-11-09 22:48:02 +08004094static int intel_iommu_add(struct dmar_drhd_unit *dmaru)
4095{
4096 int sp, ret = 0;
4097 struct intel_iommu *iommu = dmaru->iommu;
4098
4099 if (g_iommus[iommu->seq_id])
4100 return 0;
4101
4102 if (hw_pass_through && !ecap_pass_through(iommu->ecap)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004103 pr_warn("%s: Doesn't support hardware pass through.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004104 iommu->name);
4105 return -ENXIO;
4106 }
4107 if (!ecap_sc_support(iommu->ecap) &&
4108 domain_update_iommu_snooping(iommu)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004109 pr_warn("%s: Doesn't support snooping.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004110 iommu->name);
4111 return -ENXIO;
4112 }
4113 sp = domain_update_iommu_superpage(iommu) - 1;
4114 if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004115 pr_warn("%s: Doesn't support large page.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004116 iommu->name);
4117 return -ENXIO;
4118 }
4119
4120 /*
4121 * Disable translation if already enabled prior to OS handover.
4122 */
4123 if (iommu->gcmd & DMA_GCMD_TE)
4124 iommu_disable_translation(iommu);
4125
4126 g_iommus[iommu->seq_id] = iommu;
4127 ret = iommu_init_domains(iommu);
4128 if (ret == 0)
4129 ret = iommu_alloc_root_entry(iommu);
4130 if (ret)
4131 goto out;
4132
4133 if (dmaru->ignored) {
4134 /*
4135 * we always have to disable PMRs or DMA may fail on this device
4136 */
4137 if (force_on)
4138 iommu_disable_protect_mem_regions(iommu);
4139 return 0;
4140 }
4141
4142 intel_iommu_init_qi(iommu);
4143 iommu_flush_write_buffer(iommu);
4144 ret = dmar_set_interrupt(iommu);
4145 if (ret)
4146 goto disable_iommu;
4147
4148 iommu_set_root_entry(iommu);
4149 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
4150 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4151 iommu_enable_translation(iommu);
4152
Jiang Liuffebeb42014-11-09 22:48:02 +08004153 iommu_disable_protect_mem_regions(iommu);
4154 return 0;
4155
4156disable_iommu:
4157 disable_dmar_iommu(iommu);
4158out:
4159 free_dmar_iommu(iommu);
4160 return ret;
4161}
4162
Jiang Liu6b197242014-11-09 22:47:58 +08004163int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
4164{
Jiang Liuffebeb42014-11-09 22:48:02 +08004165 int ret = 0;
4166 struct intel_iommu *iommu = dmaru->iommu;
4167
4168 if (!intel_iommu_enabled)
4169 return 0;
4170 if (iommu == NULL)
4171 return -EINVAL;
4172
4173 if (insert) {
4174 ret = intel_iommu_add(dmaru);
4175 } else {
4176 disable_dmar_iommu(iommu);
4177 free_dmar_iommu(iommu);
4178 }
4179
4180 return ret;
Jiang Liu6b197242014-11-09 22:47:58 +08004181}
4182
Jiang Liu9bdc5312014-01-06 14:18:27 +08004183static void intel_iommu_free_dmars(void)
4184{
4185 struct dmar_rmrr_unit *rmrru, *rmrr_n;
4186 struct dmar_atsr_unit *atsru, *atsr_n;
4187
4188 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
4189 list_del(&rmrru->list);
4190 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
4191 kfree(rmrru);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004192 }
4193
Jiang Liu9bdc5312014-01-06 14:18:27 +08004194 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
4195 list_del(&atsru->list);
4196 intel_iommu_free_atsr(atsru);
4197 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004198}
4199
4200int dmar_find_matched_atsr_unit(struct pci_dev *dev)
4201{
Jiang Liub683b232014-02-19 14:07:32 +08004202 int i, ret = 1;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004203 struct pci_bus *bus;
David Woodhouse832bd852014-03-07 15:08:36 +00004204 struct pci_dev *bridge = NULL;
4205 struct device *tmp;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004206 struct acpi_dmar_atsr *atsr;
4207 struct dmar_atsr_unit *atsru;
4208
4209 dev = pci_physfn(dev);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004210 for (bus = dev->bus; bus; bus = bus->parent) {
Jiang Liub5f82dd2014-02-19 14:07:31 +08004211 bridge = bus->self;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004212 if (!bridge || !pci_is_pcie(bridge) ||
Yijing Wang62f87c02012-07-24 17:20:03 +08004213 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004214 return 0;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004215 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004216 break;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004217 }
Jiang Liub5f82dd2014-02-19 14:07:31 +08004218 if (!bridge)
4219 return 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004220
Jiang Liu0e242612014-02-19 14:07:34 +08004221 rcu_read_lock();
Jiang Liub5f82dd2014-02-19 14:07:31 +08004222 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4223 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4224 if (atsr->segment != pci_domain_nr(dev->bus))
4225 continue;
4226
Jiang Liub683b232014-02-19 14:07:32 +08004227 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00004228 if (tmp == &bridge->dev)
Jiang Liub683b232014-02-19 14:07:32 +08004229 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004230
4231 if (atsru->include_all)
Jiang Liub683b232014-02-19 14:07:32 +08004232 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004233 }
Jiang Liub683b232014-02-19 14:07:32 +08004234 ret = 0;
4235out:
Jiang Liu0e242612014-02-19 14:07:34 +08004236 rcu_read_unlock();
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004237
Jiang Liub683b232014-02-19 14:07:32 +08004238 return ret;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004239}
4240
Jiang Liu59ce0512014-02-19 14:07:35 +08004241int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
4242{
4243 int ret = 0;
4244 struct dmar_rmrr_unit *rmrru;
4245 struct dmar_atsr_unit *atsru;
4246 struct acpi_dmar_atsr *atsr;
4247 struct acpi_dmar_reserved_memory *rmrr;
4248
4249 if (!intel_iommu_enabled && system_state != SYSTEM_BOOTING)
4250 return 0;
4251
4252 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
4253 rmrr = container_of(rmrru->hdr,
4254 struct acpi_dmar_reserved_memory, header);
4255 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4256 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
4257 ((void *)rmrr) + rmrr->header.length,
4258 rmrr->segment, rmrru->devices,
4259 rmrru->devices_cnt);
Jiang Liu27e24952014-06-20 15:08:06 +08004260 if(ret < 0)
Jiang Liu59ce0512014-02-19 14:07:35 +08004261 return ret;
4262 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
Jiang Liu27e24952014-06-20 15:08:06 +08004263 dmar_remove_dev_scope(info, rmrr->segment,
4264 rmrru->devices, rmrru->devices_cnt);
Jiang Liu59ce0512014-02-19 14:07:35 +08004265 }
4266 }
4267
4268 list_for_each_entry(atsru, &dmar_atsr_units, list) {
4269 if (atsru->include_all)
4270 continue;
4271
4272 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4273 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4274 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
4275 (void *)atsr + atsr->header.length,
4276 atsr->segment, atsru->devices,
4277 atsru->devices_cnt);
4278 if (ret > 0)
4279 break;
4280 else if(ret < 0)
4281 return ret;
4282 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
4283 if (dmar_remove_dev_scope(info, atsr->segment,
4284 atsru->devices, atsru->devices_cnt))
4285 break;
4286 }
4287 }
4288
4289 return 0;
4290}
4291
Fenghua Yu99dcade2009-11-11 07:23:06 -08004292/*
4293 * Here we only respond to action of unbound device from driver.
4294 *
4295 * Added device is not attached to its DMAR domain here yet. That will happen
4296 * when mapping the device to iova.
4297 */
4298static int device_notifier(struct notifier_block *nb,
4299 unsigned long action, void *data)
4300{
4301 struct device *dev = data;
Fenghua Yu99dcade2009-11-11 07:23:06 -08004302 struct dmar_domain *domain;
4303
David Woodhouse3d891942014-03-06 15:59:26 +00004304 if (iommu_dummy(dev))
David Woodhouse44cd6132009-12-02 10:18:30 +00004305 return 0;
4306
Joerg Roedel1196c2f2014-09-30 13:02:03 +02004307 if (action != BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004308 return 0;
4309
David Woodhouse1525a292014-03-06 16:19:30 +00004310 domain = find_domain(dev);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004311 if (!domain)
4312 return 0;
4313
Joerg Roedele6de0f82015-07-22 16:30:36 +02004314 dmar_remove_one_dev_info(domain, dev);
Jiang Liuab8dfe22014-07-11 14:19:27 +08004315 if (!domain_type_is_vm_or_si(domain) && list_empty(&domain->devices))
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004316 domain_exit(domain);
Alex Williamsona97590e2011-03-04 14:52:16 -07004317
Fenghua Yu99dcade2009-11-11 07:23:06 -08004318 return 0;
4319}
4320
4321static struct notifier_block device_nb = {
4322 .notifier_call = device_notifier,
4323};
4324
Jiang Liu75f05562014-02-19 14:07:37 +08004325static int intel_iommu_memory_notifier(struct notifier_block *nb,
4326 unsigned long val, void *v)
4327{
4328 struct memory_notify *mhp = v;
4329 unsigned long long start, end;
4330 unsigned long start_vpfn, last_vpfn;
4331
4332 switch (val) {
4333 case MEM_GOING_ONLINE:
4334 start = mhp->start_pfn << PAGE_SHIFT;
4335 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
4336 if (iommu_domain_identity_map(si_domain, start, end)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004337 pr_warn("Failed to build identity map for [%llx-%llx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004338 start, end);
4339 return NOTIFY_BAD;
4340 }
4341 break;
4342
4343 case MEM_OFFLINE:
4344 case MEM_CANCEL_ONLINE:
4345 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
4346 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
4347 while (start_vpfn <= last_vpfn) {
4348 struct iova *iova;
4349 struct dmar_drhd_unit *drhd;
4350 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00004351 struct page *freelist;
Jiang Liu75f05562014-02-19 14:07:37 +08004352
4353 iova = find_iova(&si_domain->iovad, start_vpfn);
4354 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004355 pr_debug("Failed get IOVA for PFN %lx\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004356 start_vpfn);
4357 break;
4358 }
4359
4360 iova = split_and_remove_iova(&si_domain->iovad, iova,
4361 start_vpfn, last_vpfn);
4362 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004363 pr_warn("Failed to split IOVA PFN [%lx-%lx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004364 start_vpfn, last_vpfn);
4365 return NOTIFY_BAD;
4366 }
4367
David Woodhouseea8ea462014-03-05 17:09:32 +00004368 freelist = domain_unmap(si_domain, iova->pfn_lo,
4369 iova->pfn_hi);
4370
Jiang Liu75f05562014-02-19 14:07:37 +08004371 rcu_read_lock();
4372 for_each_active_iommu(iommu, drhd)
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004373 iommu_flush_iotlb_psi(iommu, si_domain,
Jiang Liua156ef92014-07-11 14:19:36 +08004374 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00004375 !freelist, 0);
Jiang Liu75f05562014-02-19 14:07:37 +08004376 rcu_read_unlock();
David Woodhouseea8ea462014-03-05 17:09:32 +00004377 dma_free_pagelist(freelist);
Jiang Liu75f05562014-02-19 14:07:37 +08004378
4379 start_vpfn = iova->pfn_hi + 1;
4380 free_iova_mem(iova);
4381 }
4382 break;
4383 }
4384
4385 return NOTIFY_OK;
4386}
4387
4388static struct notifier_block intel_iommu_memory_nb = {
4389 .notifier_call = intel_iommu_memory_notifier,
4390 .priority = 0
4391};
4392
Alex Williamsona5459cf2014-06-12 16:12:31 -06004393
4394static ssize_t intel_iommu_show_version(struct device *dev,
4395 struct device_attribute *attr,
4396 char *buf)
4397{
4398 struct intel_iommu *iommu = dev_get_drvdata(dev);
4399 u32 ver = readl(iommu->reg + DMAR_VER_REG);
4400 return sprintf(buf, "%d:%d\n",
4401 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver));
4402}
4403static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL);
4404
4405static ssize_t intel_iommu_show_address(struct device *dev,
4406 struct device_attribute *attr,
4407 char *buf)
4408{
4409 struct intel_iommu *iommu = dev_get_drvdata(dev);
4410 return sprintf(buf, "%llx\n", iommu->reg_phys);
4411}
4412static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL);
4413
4414static ssize_t intel_iommu_show_cap(struct device *dev,
4415 struct device_attribute *attr,
4416 char *buf)
4417{
4418 struct intel_iommu *iommu = dev_get_drvdata(dev);
4419 return sprintf(buf, "%llx\n", iommu->cap);
4420}
4421static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL);
4422
4423static ssize_t intel_iommu_show_ecap(struct device *dev,
4424 struct device_attribute *attr,
4425 char *buf)
4426{
4427 struct intel_iommu *iommu = dev_get_drvdata(dev);
4428 return sprintf(buf, "%llx\n", iommu->ecap);
4429}
4430static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL);
4431
Alex Williamson2238c082015-07-14 15:24:53 -06004432static ssize_t intel_iommu_show_ndoms(struct device *dev,
4433 struct device_attribute *attr,
4434 char *buf)
4435{
4436 struct intel_iommu *iommu = dev_get_drvdata(dev);
4437 return sprintf(buf, "%ld\n", cap_ndoms(iommu->cap));
4438}
4439static DEVICE_ATTR(domains_supported, S_IRUGO, intel_iommu_show_ndoms, NULL);
4440
4441static ssize_t intel_iommu_show_ndoms_used(struct device *dev,
4442 struct device_attribute *attr,
4443 char *buf)
4444{
4445 struct intel_iommu *iommu = dev_get_drvdata(dev);
4446 return sprintf(buf, "%d\n", bitmap_weight(iommu->domain_ids,
4447 cap_ndoms(iommu->cap)));
4448}
4449static DEVICE_ATTR(domains_used, S_IRUGO, intel_iommu_show_ndoms_used, NULL);
4450
Alex Williamsona5459cf2014-06-12 16:12:31 -06004451static struct attribute *intel_iommu_attrs[] = {
4452 &dev_attr_version.attr,
4453 &dev_attr_address.attr,
4454 &dev_attr_cap.attr,
4455 &dev_attr_ecap.attr,
Alex Williamson2238c082015-07-14 15:24:53 -06004456 &dev_attr_domains_supported.attr,
4457 &dev_attr_domains_used.attr,
Alex Williamsona5459cf2014-06-12 16:12:31 -06004458 NULL,
4459};
4460
4461static struct attribute_group intel_iommu_group = {
4462 .name = "intel-iommu",
4463 .attrs = intel_iommu_attrs,
4464};
4465
4466const struct attribute_group *intel_iommu_groups[] = {
4467 &intel_iommu_group,
4468 NULL,
4469};
4470
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004471int __init intel_iommu_init(void)
4472{
Jiang Liu9bdc5312014-01-06 14:18:27 +08004473 int ret = -ENODEV;
Takao Indoh3a93c842013-04-23 17:35:03 +09004474 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08004475 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004476
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004477 /* VT-d is required for a TXT/tboot launch, so enforce that */
4478 force_on = tboot_force_iommu();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004479
Jiang Liu3a5670e2014-02-19 14:07:33 +08004480 if (iommu_init_mempool()) {
4481 if (force_on)
4482 panic("tboot: Failed to initialize iommu memory\n");
4483 return -ENOMEM;
4484 }
4485
4486 down_write(&dmar_global_lock);
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004487 if (dmar_table_init()) {
4488 if (force_on)
4489 panic("tboot: Failed to initialize DMAR table\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004490 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004491 }
4492
Suresh Siddhac2c72862011-08-23 17:05:19 -07004493 if (dmar_dev_scope_init() < 0) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004494 if (force_on)
4495 panic("tboot: Failed to initialize DMAR device scope\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004496 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004497 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -07004498
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004499 if (no_iommu || dmar_disabled)
Jiang Liu9bdc5312014-01-06 14:18:27 +08004500 goto out_free_dmar;
Suresh Siddha2ae21012008-07-10 11:16:43 -07004501
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004502 if (list_empty(&dmar_rmrr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004503 pr_info("No RMRR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004504
4505 if (list_empty(&dmar_atsr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004506 pr_info("No ATSR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004507
Joseph Cihula51a63e62011-03-21 11:04:24 -07004508 if (dmar_init_reserved_ranges()) {
4509 if (force_on)
4510 panic("tboot: Failed to reserve iommu ranges\n");
Jiang Liu3a5670e2014-02-19 14:07:33 +08004511 goto out_free_reserved_range;
Joseph Cihula51a63e62011-03-21 11:04:24 -07004512 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004513
4514 init_no_remapping_devices();
4515
Joseph Cihulab7792602011-05-03 00:08:37 -07004516 ret = init_dmars();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004517 if (ret) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004518 if (force_on)
4519 panic("tboot: Failed to initialize DMARs\n");
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004520 pr_err("Initialization failed\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004521 goto out_free_reserved_range;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004522 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08004523 up_write(&dmar_global_lock);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004524 pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004525
mark gross5e0d2a62008-03-04 15:22:08 -08004526 init_timer(&unmap_timer);
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004527#ifdef CONFIG_SWIOTLB
4528 swiotlb = 0;
4529#endif
David Woodhouse19943b02009-08-04 16:19:20 +01004530 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07004531
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004532 init_iommu_pm_ops();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004533
Alex Williamsona5459cf2014-06-12 16:12:31 -06004534 for_each_active_iommu(iommu, drhd)
4535 iommu->iommu_dev = iommu_device_create(NULL, iommu,
4536 intel_iommu_groups,
Kees Cook2439d4a2015-07-24 16:27:57 -07004537 "%s", iommu->name);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004538
Joerg Roedel4236d97d2011-09-06 17:56:07 +02004539 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004540 bus_register_notifier(&pci_bus_type, &device_nb);
Jiang Liu75f05562014-02-19 14:07:37 +08004541 if (si_domain && !hw_pass_through)
4542 register_memory_notifier(&intel_iommu_memory_nb);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004543
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02004544 intel_iommu_enabled = 1;
4545
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004546 return 0;
Jiang Liu9bdc5312014-01-06 14:18:27 +08004547
4548out_free_reserved_range:
4549 put_iova_domain(&reserved_iova_list);
Jiang Liu9bdc5312014-01-06 14:18:27 +08004550out_free_dmar:
4551 intel_iommu_free_dmars();
Jiang Liu3a5670e2014-02-19 14:07:33 +08004552 up_write(&dmar_global_lock);
4553 iommu_exit_mempool();
Jiang Liu9bdc5312014-01-06 14:18:27 +08004554 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004555}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07004556
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004557static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *opaque)
Alex Williamson579305f2014-07-03 09:51:43 -06004558{
4559 struct intel_iommu *iommu = opaque;
4560
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004561 domain_context_clear_one(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06004562 return 0;
4563}
4564
4565/*
4566 * NB - intel-iommu lacks any sort of reference counting for the users of
4567 * dependent devices. If multiple endpoints have intersecting dependent
4568 * devices, unbinding the driver from any one of them will possibly leave
4569 * the others unable to operate.
4570 */
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004571static void domain_context_clear(struct intel_iommu *iommu, struct device *dev)
Han, Weidong3199aa62009-02-26 17:31:12 +08004572{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004573 if (!iommu || !dev || !dev_is_pci(dev))
Han, Weidong3199aa62009-02-26 17:31:12 +08004574 return;
4575
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004576 pci_for_each_dma_alias(to_pci_dev(dev), &domain_context_clear_one_cb, iommu);
Han, Weidong3199aa62009-02-26 17:31:12 +08004577}
4578
Joerg Roedel127c7612015-07-23 17:44:46 +02004579static void __dmar_remove_one_dev_info(struct device_domain_info *info)
Weidong Hanc7151a82008-12-08 22:51:37 +08004580{
Weidong Hanc7151a82008-12-08 22:51:37 +08004581 struct intel_iommu *iommu;
4582 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08004583
Joerg Roedel55d94042015-07-22 16:50:40 +02004584 assert_spin_locked(&device_domain_lock);
4585
Joerg Roedelb608ac32015-07-21 18:19:08 +02004586 if (WARN_ON(!info))
Weidong Hanc7151a82008-12-08 22:51:37 +08004587 return;
4588
Joerg Roedel127c7612015-07-23 17:44:46 +02004589 iommu = info->iommu;
4590
4591 if (info->dev) {
4592 iommu_disable_dev_iotlb(info);
4593 domain_context_clear(iommu, info->dev);
4594 }
4595
Joerg Roedelb608ac32015-07-21 18:19:08 +02004596 unlink_domain_info(info);
Roland Dreier3e7abe22011-07-20 06:22:21 -07004597
Joerg Roedeld160aca2015-07-22 11:52:53 +02004598 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004599 domain_detach_iommu(info->domain, iommu);
Joerg Roedeld160aca2015-07-22 11:52:53 +02004600 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004601
4602 free_devinfo_mem(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004603}
4604
Joerg Roedel55d94042015-07-22 16:50:40 +02004605static void dmar_remove_one_dev_info(struct dmar_domain *domain,
4606 struct device *dev)
4607{
Joerg Roedel127c7612015-07-23 17:44:46 +02004608 struct device_domain_info *info;
Joerg Roedel55d94042015-07-22 16:50:40 +02004609 unsigned long flags;
4610
Weidong Hanc7151a82008-12-08 22:51:37 +08004611 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004612 info = dev->archdata.iommu;
4613 __dmar_remove_one_dev_info(info);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004614 spin_unlock_irqrestore(&device_domain_lock, flags);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004615}
4616
4617static int md_domain_init(struct dmar_domain *domain, int guest_width)
4618{
4619 int adjust_width;
4620
Robin Murphy0fb5fe82015-01-12 17:51:16 +00004621 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
4622 DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004623 domain_reserve_special_ranges(domain);
4624
4625 /* calculate AGAW */
4626 domain->gaw = guest_width;
4627 adjust_width = guestwidth_to_adjustwidth(guest_width);
4628 domain->agaw = width_to_agaw(adjust_width);
4629
Weidong Han5e98c4b2008-12-08 23:03:27 +08004630 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08004631 domain->iommu_snooping = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01004632 domain->iommu_superpage = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004633 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08004634
4635 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07004636 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004637 if (!domain->pgd)
4638 return -ENOMEM;
4639 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
4640 return 0;
4641}
4642
Joerg Roedel00a77de2015-03-26 13:43:08 +01004643static struct iommu_domain *intel_iommu_domain_alloc(unsigned type)
Kay, Allen M38717942008-09-09 18:37:29 +03004644{
Joerg Roedel5d450802008-12-03 14:52:32 +01004645 struct dmar_domain *dmar_domain;
Joerg Roedel00a77de2015-03-26 13:43:08 +01004646 struct iommu_domain *domain;
4647
4648 if (type != IOMMU_DOMAIN_UNMANAGED)
4649 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004650
Jiang Liuab8dfe22014-07-11 14:19:27 +08004651 dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE);
Joerg Roedel5d450802008-12-03 14:52:32 +01004652 if (!dmar_domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004653 pr_err("Can't allocate dmar_domain\n");
Joerg Roedel00a77de2015-03-26 13:43:08 +01004654 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004655 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004656 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004657 pr_err("Domain initialization failed\n");
Jiang Liu92d03cc2014-02-19 14:07:28 +08004658 domain_exit(dmar_domain);
Joerg Roedel00a77de2015-03-26 13:43:08 +01004659 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004660 }
Allen Kay8140a952011-10-14 12:32:17 -07004661 domain_update_iommu_cap(dmar_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004662
Joerg Roedel00a77de2015-03-26 13:43:08 +01004663 domain = &dmar_domain->domain;
Joerg Roedel8a0e7152012-01-26 19:40:54 +01004664 domain->geometry.aperture_start = 0;
4665 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
4666 domain->geometry.force_aperture = true;
4667
Joerg Roedel00a77de2015-03-26 13:43:08 +01004668 return domain;
Kay, Allen M38717942008-09-09 18:37:29 +03004669}
Kay, Allen M38717942008-09-09 18:37:29 +03004670
Joerg Roedel00a77de2015-03-26 13:43:08 +01004671static void intel_iommu_domain_free(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03004672{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004673 domain_exit(to_dmar_domain(domain));
Kay, Allen M38717942008-09-09 18:37:29 +03004674}
Kay, Allen M38717942008-09-09 18:37:29 +03004675
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004676static int intel_iommu_attach_device(struct iommu_domain *domain,
4677 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004678{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004679 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004680 struct intel_iommu *iommu;
4681 int addr_width;
David Woodhouse156baca2014-03-09 14:00:57 -07004682 u8 bus, devfn;
Kay, Allen M38717942008-09-09 18:37:29 +03004683
Alex Williamsonc875d2c2014-07-03 09:57:02 -06004684 if (device_is_rmrr_locked(dev)) {
4685 dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n");
4686 return -EPERM;
4687 }
4688
David Woodhouse7207d8f2014-03-09 16:31:06 -07004689 /* normally dev is not mapped */
4690 if (unlikely(domain_context_mapped(dev))) {
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004691 struct dmar_domain *old_domain;
4692
David Woodhouse1525a292014-03-06 16:19:30 +00004693 old_domain = find_domain(dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004694 if (old_domain) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02004695 rcu_read_lock();
Joerg Roedelde7e8882015-07-22 11:58:07 +02004696 dmar_remove_one_dev_info(old_domain, dev);
Joerg Roedeld160aca2015-07-22 11:52:53 +02004697 rcu_read_unlock();
Joerg Roedel62c22162014-12-09 12:56:45 +01004698
4699 if (!domain_type_is_vm_or_si(old_domain) &&
4700 list_empty(&old_domain->devices))
4701 domain_exit(old_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004702 }
4703 }
4704
David Woodhouse156baca2014-03-09 14:00:57 -07004705 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004706 if (!iommu)
4707 return -ENODEV;
4708
4709 /* check if this iommu agaw is sufficient for max mapped address */
4710 addr_width = agaw_to_width(iommu->agaw);
Tom Lyona99c47a2010-05-17 08:20:45 +01004711 if (addr_width > cap_mgaw(iommu->cap))
4712 addr_width = cap_mgaw(iommu->cap);
4713
4714 if (dmar_domain->max_addr > (1LL << addr_width)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004715 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004716 "sufficient for the mapped address (%llx)\n",
Tom Lyona99c47a2010-05-17 08:20:45 +01004717 __func__, addr_width, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004718 return -EFAULT;
4719 }
Tom Lyona99c47a2010-05-17 08:20:45 +01004720 dmar_domain->gaw = addr_width;
4721
4722 /*
4723 * Knock out extra levels of page tables if necessary
4724 */
4725 while (iommu->agaw < dmar_domain->agaw) {
4726 struct dma_pte *pte;
4727
4728 pte = dmar_domain->pgd;
4729 if (dma_pte_present(pte)) {
Sheng Yang25cbff12010-06-12 19:21:42 +08004730 dmar_domain->pgd = (struct dma_pte *)
4731 phys_to_virt(dma_pte_addr(pte));
Jan Kiszka7a661012010-11-02 08:05:51 +01004732 free_pgtable_page(pte);
Tom Lyona99c47a2010-05-17 08:20:45 +01004733 }
4734 dmar_domain->agaw--;
4735 }
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004736
Joerg Roedel28ccce02015-07-21 14:45:31 +02004737 return domain_add_dev_info(dmar_domain, dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004738}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004739
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004740static void intel_iommu_detach_device(struct iommu_domain *domain,
4741 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004742{
Joerg Roedele6de0f82015-07-22 16:30:36 +02004743 dmar_remove_one_dev_info(to_dmar_domain(domain), dev);
Kay, Allen M38717942008-09-09 18:37:29 +03004744}
Kay, Allen M38717942008-09-09 18:37:29 +03004745
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004746static int intel_iommu_map(struct iommu_domain *domain,
4747 unsigned long iova, phys_addr_t hpa,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004748 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03004749{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004750 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004751 u64 max_addr;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004752 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004753 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004754
Joerg Roedeldde57a22008-12-03 15:04:09 +01004755 if (iommu_prot & IOMMU_READ)
4756 prot |= DMA_PTE_READ;
4757 if (iommu_prot & IOMMU_WRITE)
4758 prot |= DMA_PTE_WRITE;
Sheng Yang9cf06692009-03-18 15:33:07 +08004759 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
4760 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004761
David Woodhouse163cc522009-06-28 00:51:17 +01004762 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004763 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004764 u64 end;
4765
4766 /* check if minimum agaw is sufficient for mapped address */
Tom Lyon8954da12010-05-17 08:19:52 +01004767 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004768 if (end < max_addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004769 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004770 "sufficient for the mapped address (%llx)\n",
Tom Lyon8954da12010-05-17 08:19:52 +01004771 __func__, dmar_domain->gaw, max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004772 return -EFAULT;
4773 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01004774 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004775 }
David Woodhousead051222009-06-28 14:22:28 +01004776 /* Round up size to next multiple of PAGE_SIZE, if it and
4777 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01004778 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01004779 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
4780 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004781 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03004782}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004783
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004784static size_t intel_iommu_unmap(struct iommu_domain *domain,
David Woodhouseea8ea462014-03-05 17:09:32 +00004785 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004786{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004787 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
David Woodhouseea8ea462014-03-05 17:09:32 +00004788 struct page *freelist = NULL;
4789 struct intel_iommu *iommu;
4790 unsigned long start_pfn, last_pfn;
4791 unsigned int npages;
Joerg Roedel42e8c182015-07-21 15:50:02 +02004792 int iommu_id, level = 0;
Sheng Yang4b99d352009-07-08 11:52:52 +01004793
David Woodhouse5cf0a762014-03-19 16:07:49 +00004794 /* Cope with horrid API which requires us to unmap more than the
4795 size argument if it happens to be a large-page mapping. */
Joerg Roedeldc02e462015-08-13 11:15:13 +02004796 BUG_ON(!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level));
David Woodhouse5cf0a762014-03-19 16:07:49 +00004797
4798 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
4799 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
4800
David Woodhouseea8ea462014-03-05 17:09:32 +00004801 start_pfn = iova >> VTD_PAGE_SHIFT;
4802 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
4803
4804 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
4805
4806 npages = last_pfn - start_pfn + 1;
4807
Joerg Roedel29a27712015-07-21 17:17:12 +02004808 for_each_domain_iommu(iommu_id, dmar_domain) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004809 iommu = g_iommus[iommu_id];
David Woodhouseea8ea462014-03-05 17:09:32 +00004810
Joerg Roedel42e8c182015-07-21 15:50:02 +02004811 iommu_flush_iotlb_psi(g_iommus[iommu_id], dmar_domain,
4812 start_pfn, npages, !freelist, 0);
David Woodhouseea8ea462014-03-05 17:09:32 +00004813 }
4814
4815 dma_free_pagelist(freelist);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004816
David Woodhouse163cc522009-06-28 00:51:17 +01004817 if (dmar_domain->max_addr == iova + size)
4818 dmar_domain->max_addr = iova;
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004819
David Woodhouse5cf0a762014-03-19 16:07:49 +00004820 return size;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004821}
Kay, Allen M38717942008-09-09 18:37:29 +03004822
Joerg Roedeld14d6572008-12-03 15:06:57 +01004823static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547a2013-03-29 01:23:58 +05304824 dma_addr_t iova)
Kay, Allen M38717942008-09-09 18:37:29 +03004825{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004826 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Kay, Allen M38717942008-09-09 18:37:29 +03004827 struct dma_pte *pte;
David Woodhouse5cf0a762014-03-19 16:07:49 +00004828 int level = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004829 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03004830
David Woodhouse5cf0a762014-03-19 16:07:49 +00004831 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
Kay, Allen M38717942008-09-09 18:37:29 +03004832 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004833 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03004834
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004835 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03004836}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004837
Joerg Roedel5d587b82014-09-05 10:50:45 +02004838static bool intel_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004839{
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004840 if (cap == IOMMU_CAP_CACHE_COHERENCY)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004841 return domain_update_iommu_snooping(NULL) == 1;
Tom Lyon323f99c2010-07-02 16:56:14 -04004842 if (cap == IOMMU_CAP_INTR_REMAP)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004843 return irq_remapping_enabled == 1;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004844
Joerg Roedel5d587b82014-09-05 10:50:45 +02004845 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004846}
4847
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004848static int intel_iommu_add_device(struct device *dev)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004849{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004850 struct intel_iommu *iommu;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004851 struct iommu_group *group;
David Woodhouse156baca2014-03-09 14:00:57 -07004852 u8 bus, devfn;
Alex Williamson70ae6f02011-10-21 15:56:11 -04004853
Alex Williamsona5459cf2014-06-12 16:12:31 -06004854 iommu = device_to_iommu(dev, &bus, &devfn);
4855 if (!iommu)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004856 return -ENODEV;
4857
Alex Williamsona5459cf2014-06-12 16:12:31 -06004858 iommu_device_link(iommu->iommu_dev, dev);
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004859
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004860 group = iommu_group_get_for_dev(dev);
Alex Williamson783f1572012-05-30 14:19:43 -06004861
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004862 if (IS_ERR(group))
4863 return PTR_ERR(group);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004864
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004865 iommu_group_put(group);
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004866 return 0;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004867}
4868
4869static void intel_iommu_remove_device(struct device *dev)
4870{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004871 struct intel_iommu *iommu;
4872 u8 bus, devfn;
4873
4874 iommu = device_to_iommu(dev, &bus, &devfn);
4875 if (!iommu)
4876 return;
4877
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004878 iommu_group_remove_device(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004879
4880 iommu_device_unlink(iommu->iommu_dev, dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004881}
4882
Thierry Redingb22f6432014-06-27 09:03:12 +02004883static const struct iommu_ops intel_iommu_ops = {
Joerg Roedel5d587b82014-09-05 10:50:45 +02004884 .capable = intel_iommu_capable,
Joerg Roedel00a77de2015-03-26 13:43:08 +01004885 .domain_alloc = intel_iommu_domain_alloc,
4886 .domain_free = intel_iommu_domain_free,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004887 .attach_dev = intel_iommu_attach_device,
4888 .detach_dev = intel_iommu_detach_device,
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004889 .map = intel_iommu_map,
4890 .unmap = intel_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07004891 .map_sg = default_iommu_map_sg,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004892 .iova_to_phys = intel_iommu_iova_to_phys,
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004893 .add_device = intel_iommu_add_device,
4894 .remove_device = intel_iommu_remove_device,
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +02004895 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004896};
David Woodhouse9af88142009-02-13 23:18:03 +00004897
Daniel Vetter94526182013-01-20 23:50:13 +01004898static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
4899{
4900 /* G4x/GM45 integrated gfx dmar support is totally busted. */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004901 pr_info("Disabling IOMMU for graphics on this chipset\n");
Daniel Vetter94526182013-01-20 23:50:13 +01004902 dmar_map_gfx = 0;
4903}
4904
4905DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
4906DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
4907DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
4908DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
4909DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
4910DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
4911DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
4912
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004913static void quirk_iommu_rwbf(struct pci_dev *dev)
David Woodhouse9af88142009-02-13 23:18:03 +00004914{
4915 /*
4916 * Mobile 4 Series Chipset neglects to set RWBF capability,
Daniel Vetter210561f2013-01-21 19:48:59 +01004917 * but needs it. Same seems to hold for the desktop versions.
David Woodhouse9af88142009-02-13 23:18:03 +00004918 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004919 pr_info("Forcing write-buffer flush capability\n");
David Woodhouse9af88142009-02-13 23:18:03 +00004920 rwbf_quirk = 1;
4921}
4922
4923DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
Daniel Vetter210561f2013-01-21 19:48:59 +01004924DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
4925DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
4926DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
4927DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
4928DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
4929DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
David Woodhousee0fc7e02009-09-30 09:12:17 -07004930
Adam Jacksoneecfd572010-08-25 21:17:34 +01004931#define GGC 0x52
4932#define GGC_MEMORY_SIZE_MASK (0xf << 8)
4933#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
4934#define GGC_MEMORY_SIZE_1M (0x1 << 8)
4935#define GGC_MEMORY_SIZE_2M (0x3 << 8)
4936#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
4937#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
4938#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
4939#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
4940
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004941static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
David Woodhouse9eecabc2010-09-21 22:28:23 +01004942{
4943 unsigned short ggc;
4944
Adam Jacksoneecfd572010-08-25 21:17:34 +01004945 if (pci_read_config_word(dev, GGC, &ggc))
David Woodhouse9eecabc2010-09-21 22:28:23 +01004946 return;
4947
Adam Jacksoneecfd572010-08-25 21:17:34 +01004948 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004949 pr_info("BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
David Woodhouse9eecabc2010-09-21 22:28:23 +01004950 dmar_map_gfx = 0;
David Woodhouse6fbcfb32011-09-25 19:11:14 -07004951 } else if (dmar_map_gfx) {
4952 /* we have to ensure the gfx device is idle before we flush */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004953 pr_info("Disabling batched IOTLB flush on Ironlake\n");
David Woodhouse6fbcfb32011-09-25 19:11:14 -07004954 intel_iommu_strict = 1;
4955 }
David Woodhouse9eecabc2010-09-21 22:28:23 +01004956}
4957DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
4958DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
4959DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
4960DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
4961
David Woodhousee0fc7e02009-09-30 09:12:17 -07004962/* On Tylersburg chipsets, some BIOSes have been known to enable the
4963 ISOCH DMAR unit for the Azalia sound device, but not give it any
4964 TLB entries, which causes it to deadlock. Check for that. We do
4965 this in a function called from init_dmars(), instead of in a PCI
4966 quirk, because we don't want to print the obnoxious "BIOS broken"
4967 message if VT-d is actually disabled.
4968*/
4969static void __init check_tylersburg_isoch(void)
4970{
4971 struct pci_dev *pdev;
4972 uint32_t vtisochctrl;
4973
4974 /* If there's no Azalia in the system anyway, forget it. */
4975 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
4976 if (!pdev)
4977 return;
4978 pci_dev_put(pdev);
4979
4980 /* System Management Registers. Might be hidden, in which case
4981 we can't do the sanity check. But that's OK, because the
4982 known-broken BIOSes _don't_ actually hide it, so far. */
4983 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
4984 if (!pdev)
4985 return;
4986
4987 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
4988 pci_dev_put(pdev);
4989 return;
4990 }
4991
4992 pci_dev_put(pdev);
4993
4994 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
4995 if (vtisochctrl & 1)
4996 return;
4997
4998 /* Drop all bits other than the number of TLB entries */
4999 vtisochctrl &= 0x1c;
5000
5001 /* If we have the recommended number of TLB entries (16), fine. */
5002 if (vtisochctrl == 0x10)
5003 return;
5004
5005 /* Zero TLB entries? You get to ride the short bus to school. */
5006 if (!vtisochctrl) {
5007 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
5008 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
5009 dmi_get_system_info(DMI_BIOS_VENDOR),
5010 dmi_get_system_info(DMI_BIOS_VERSION),
5011 dmi_get_system_info(DMI_PRODUCT_VERSION));
5012 iommu_identity_mapping |= IDENTMAP_AZALIA;
5013 return;
5014 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005015
5016 pr_warn("Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
David Woodhousee0fc7e02009-09-30 09:12:17 -07005017 vtisochctrl);
5018}