blob: a5aa957a69d51e2ff820e2112d1441fd237acdc0 [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 Yang9cf066972009-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 */
391
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 Hanc7151a82008-12-08 22:51:37 +0800409 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800410 u64 max_addr; /* maximum mapped address */
Joerg Roedel00a77de2015-03-26 13:43:08 +0100411
412 struct iommu_domain domain; /* generic domain data structure for
413 iommu core */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000414};
415
Mark McLoughlina647dac2008-11-20 15:49:48 +0000416/* PCI domain-device relationship */
417struct device_domain_info {
418 struct list_head link; /* link to domain siblings */
419 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100420 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000421 u8 devfn; /* PCI devfn number */
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000422 struct device *dev; /* it's NULL for PCIe-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800423 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000424 struct dmar_domain *domain; /* pointer to domain */
425};
426
Jiang Liub94e4112014-02-19 14:07:25 +0800427struct dmar_rmrr_unit {
428 struct list_head list; /* list of rmrr units */
429 struct acpi_dmar_header *hdr; /* ACPI header */
430 u64 base_address; /* reserved base address*/
431 u64 end_address; /* reserved end address */
David Woodhouse832bd852014-03-07 15:08:36 +0000432 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800433 int devices_cnt; /* target device count */
434};
435
436struct dmar_atsr_unit {
437 struct list_head list; /* list of ATSR units */
438 struct acpi_dmar_header *hdr; /* ACPI header */
David Woodhouse832bd852014-03-07 15:08:36 +0000439 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800440 int devices_cnt; /* target device count */
441 u8 include_all:1; /* include all ports */
442};
443
444static LIST_HEAD(dmar_atsr_units);
445static LIST_HEAD(dmar_rmrr_units);
446
447#define for_each_rmrr_units(rmrr) \
448 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
449
mark gross5e0d2a62008-03-04 15:22:08 -0800450static void flush_unmaps_timeout(unsigned long data);
451
Jiang Liub707cb02014-01-06 14:18:26 +0800452static DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
mark gross5e0d2a62008-03-04 15:22:08 -0800453
mark gross80b20dd2008-04-18 13:53:58 -0700454#define HIGH_WATER_MARK 250
455struct deferred_flush_tables {
456 int next;
457 struct iova *iova[HIGH_WATER_MARK];
458 struct dmar_domain *domain[HIGH_WATER_MARK];
David Woodhouseea8ea462014-03-05 17:09:32 +0000459 struct page *freelist[HIGH_WATER_MARK];
mark gross80b20dd2008-04-18 13:53:58 -0700460};
461
462static struct deferred_flush_tables *deferred_flush;
463
mark gross5e0d2a62008-03-04 15:22:08 -0800464/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800465static int g_num_of_iommus;
466
467static DEFINE_SPINLOCK(async_umap_flush_lock);
468static LIST_HEAD(unmaps_to_do);
469
470static int timer_on;
471static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800472
Jiang Liu92d03cc2014-02-19 14:07:28 +0800473static void domain_exit(struct dmar_domain *domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700474static void domain_remove_dev_info(struct dmar_domain *domain);
Jiang Liub94e4112014-02-19 14:07:25 +0800475static void domain_remove_one_dev_info(struct dmar_domain *domain,
David Woodhousebf9c9ed2014-03-09 16:19:13 -0700476 struct device *dev);
Jiang Liu92d03cc2014-02-19 14:07:28 +0800477static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000478 struct device *dev);
Jiang Liu2a46ddf2014-07-11 14:19:30 +0800479static int domain_detach_iommu(struct dmar_domain *domain,
480 struct intel_iommu *iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700481
Suresh Siddhad3f13812011-08-23 17:05:25 -0700482#ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800483int dmar_disabled = 0;
484#else
485int dmar_disabled = 1;
Suresh Siddhad3f13812011-08-23 17:05:25 -0700486#endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800487
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -0200488int intel_iommu_enabled = 0;
489EXPORT_SYMBOL_GPL(intel_iommu_enabled);
490
David Woodhouse2d9e6672010-06-15 10:57:57 +0100491static int dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700492static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800493static int intel_iommu_strict;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100494static int intel_iommu_superpage = 1;
David Woodhousec83b2f22015-06-12 10:15:49 +0100495static int intel_iommu_ecs = 1;
496
497/* We only actually use ECS when PASID support (on the new bit 40)
498 * is also advertised. Some early implementations — the ones with
499 * PASID support on bit 28 — have issues even when we *only* use
500 * extended root/context tables. */
501#define ecs_enabled(iommu) (intel_iommu_ecs && ecap_ecs(iommu->ecap) && \
502 ecap_pasid(iommu->ecap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700503
David Woodhousec0771df2011-10-14 20:59:46 +0100504int intel_iommu_gfx_mapped;
505EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped);
506
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700507#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
508static DEFINE_SPINLOCK(device_domain_lock);
509static LIST_HEAD(device_domain_list);
510
Thierry Redingb22f6432014-06-27 09:03:12 +0200511static const struct iommu_ops intel_iommu_ops;
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100512
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200513static bool translation_pre_enabled(struct intel_iommu *iommu)
514{
515 return (iommu->flags & VTD_FLAG_TRANS_PRE_ENABLED);
516}
517
Joerg Roedel091d42e2015-06-12 11:56:10 +0200518static void clear_translation_pre_enabled(struct intel_iommu *iommu)
519{
520 iommu->flags &= ~VTD_FLAG_TRANS_PRE_ENABLED;
521}
522
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200523static void init_translation_status(struct intel_iommu *iommu)
524{
525 u32 gsts;
526
527 gsts = readl(iommu->reg + DMAR_GSTS_REG);
528 if (gsts & DMA_GSTS_TES)
529 iommu->flags |= VTD_FLAG_TRANS_PRE_ENABLED;
530}
531
Joerg Roedel00a77de2015-03-26 13:43:08 +0100532/* Convert generic 'struct iommu_domain to private struct dmar_domain */
533static struct dmar_domain *to_dmar_domain(struct iommu_domain *dom)
534{
535 return container_of(dom, struct dmar_domain, domain);
536}
537
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700538static int __init intel_iommu_setup(char *str)
539{
540 if (!str)
541 return -EINVAL;
542 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800543 if (!strncmp(str, "on", 2)) {
544 dmar_disabled = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200545 pr_info("IOMMU enabled\n");
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800546 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700547 dmar_disabled = 1;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200548 pr_info("IOMMU disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700549 } else if (!strncmp(str, "igfx_off", 8)) {
550 dmar_map_gfx = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200551 pr_info("Disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700552 } else if (!strncmp(str, "forcedac", 8)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200553 pr_info("Forcing DAC for PCI devices\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700554 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800555 } else if (!strncmp(str, "strict", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200556 pr_info("Disable batched IOTLB flush\n");
mark gross5e0d2a62008-03-04 15:22:08 -0800557 intel_iommu_strict = 1;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100558 } else if (!strncmp(str, "sp_off", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200559 pr_info("Disable supported super page\n");
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100560 intel_iommu_superpage = 0;
David Woodhousec83b2f22015-06-12 10:15:49 +0100561 } else if (!strncmp(str, "ecs_off", 7)) {
562 printk(KERN_INFO
563 "Intel-IOMMU: disable extended context table support\n");
564 intel_iommu_ecs = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700565 }
566
567 str += strcspn(str, ",");
568 while (*str == ',')
569 str++;
570 }
571 return 0;
572}
573__setup("intel_iommu=", intel_iommu_setup);
574
575static struct kmem_cache *iommu_domain_cache;
576static struct kmem_cache *iommu_devinfo_cache;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700577
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200578static struct dmar_domain* get_iommu_domain(struct intel_iommu *iommu, u16 did)
579{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200580 struct dmar_domain **domains;
581 int idx = did >> 8;
582
583 domains = iommu->domains[idx];
584 if (!domains)
585 return NULL;
586
587 return domains[did & 0xff];
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200588}
589
590static void set_iommu_domain(struct intel_iommu *iommu, u16 did,
591 struct dmar_domain *domain)
592{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200593 struct dmar_domain **domains;
594 int idx = did >> 8;
595
596 if (!iommu->domains[idx]) {
597 size_t size = 256 * sizeof(struct dmar_domain *);
598 iommu->domains[idx] = kzalloc(size, GFP_ATOMIC);
599 }
600
601 domains = iommu->domains[idx];
602 if (WARN_ON(!domains))
603 return;
604 else
605 domains[did & 0xff] = domain;
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200606}
607
Suresh Siddha4c923d42009-10-02 11:01:24 -0700608static inline void *alloc_pgtable_page(int node)
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700609{
Suresh Siddha4c923d42009-10-02 11:01:24 -0700610 struct page *page;
611 void *vaddr = NULL;
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700612
Suresh Siddha4c923d42009-10-02 11:01:24 -0700613 page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0);
614 if (page)
615 vaddr = page_address(page);
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700616 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700617}
618
619static inline void free_pgtable_page(void *vaddr)
620{
621 free_page((unsigned long)vaddr);
622}
623
624static inline void *alloc_domain_mem(void)
625{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900626 return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700627}
628
Kay, Allen M38717942008-09-09 18:37:29 +0300629static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700630{
631 kmem_cache_free(iommu_domain_cache, vaddr);
632}
633
634static inline void * alloc_devinfo_mem(void)
635{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900636 return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700637}
638
639static inline void free_devinfo_mem(void *vaddr)
640{
641 kmem_cache_free(iommu_devinfo_cache, vaddr);
642}
643
Jiang Liuab8dfe22014-07-11 14:19:27 +0800644static inline int domain_type_is_vm(struct dmar_domain *domain)
645{
646 return domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE;
647}
648
Joerg Roedel28ccce02015-07-21 14:45:31 +0200649static inline int domain_type_is_si(struct dmar_domain *domain)
650{
651 return domain->flags & DOMAIN_FLAG_STATIC_IDENTITY;
652}
653
Jiang Liuab8dfe22014-07-11 14:19:27 +0800654static inline int domain_type_is_vm_or_si(struct dmar_domain *domain)
655{
656 return domain->flags & (DOMAIN_FLAG_VIRTUAL_MACHINE |
657 DOMAIN_FLAG_STATIC_IDENTITY);
658}
Weidong Han1b573682008-12-08 15:34:06 +0800659
Jiang Liu162d1b12014-07-11 14:19:35 +0800660static inline int domain_pfn_supported(struct dmar_domain *domain,
661 unsigned long pfn)
662{
663 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
664
665 return !(addr_width < BITS_PER_LONG && pfn >> addr_width);
666}
667
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700668static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800669{
670 unsigned long sagaw;
671 int agaw = -1;
672
673 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700674 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800675 agaw >= 0; agaw--) {
676 if (test_bit(agaw, &sagaw))
677 break;
678 }
679
680 return agaw;
681}
682
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700683/*
684 * Calculate max SAGAW for each iommu.
685 */
686int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
687{
688 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
689}
690
691/*
692 * calculate agaw for each iommu.
693 * "SAGAW" may be different across iommus, use a default agaw, and
694 * get a supported less agaw for iommus that don't support the default agaw.
695 */
696int iommu_calculate_agaw(struct intel_iommu *iommu)
697{
698 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
699}
700
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700701/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800702static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
703{
704 int iommu_id;
705
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700706 /* si_domain and vm domain should not get here. */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800707 BUG_ON(domain_type_is_vm_or_si(domain));
Joerg Roedel29a27712015-07-21 17:17:12 +0200708 for_each_domain_iommu(iommu_id, domain)
709 break;
710
Weidong Han8c11e792008-12-08 15:29:22 +0800711 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
712 return NULL;
713
714 return g_iommus[iommu_id];
715}
716
Weidong Han8e6040972008-12-08 15:49:06 +0800717static void domain_update_iommu_coherency(struct dmar_domain *domain)
718{
David Woodhoused0501962014-03-11 17:10:29 -0700719 struct dmar_drhd_unit *drhd;
720 struct intel_iommu *iommu;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100721 bool found = false;
722 int i;
Weidong Han8e6040972008-12-08 15:49:06 +0800723
David Woodhoused0501962014-03-11 17:10:29 -0700724 domain->iommu_coherency = 1;
Weidong Han8e6040972008-12-08 15:49:06 +0800725
Joerg Roedel29a27712015-07-21 17:17:12 +0200726 for_each_domain_iommu(i, domain) {
Quentin Lambert2f119c72015-02-06 10:59:53 +0100727 found = true;
Weidong Han8e6040972008-12-08 15:49:06 +0800728 if (!ecap_coherent(g_iommus[i]->ecap)) {
729 domain->iommu_coherency = 0;
730 break;
731 }
Weidong Han8e6040972008-12-08 15:49:06 +0800732 }
David Woodhoused0501962014-03-11 17:10:29 -0700733 if (found)
734 return;
735
736 /* No hardware attached; use lowest common denominator */
737 rcu_read_lock();
738 for_each_active_iommu(iommu, drhd) {
739 if (!ecap_coherent(iommu->ecap)) {
740 domain->iommu_coherency = 0;
741 break;
742 }
743 }
744 rcu_read_unlock();
Weidong Han8e6040972008-12-08 15:49:06 +0800745}
746
Jiang Liu161f6932014-07-11 14:19:37 +0800747static int domain_update_iommu_snooping(struct intel_iommu *skip)
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100748{
Allen Kay8140a952011-10-14 12:32:17 -0700749 struct dmar_drhd_unit *drhd;
Jiang Liu161f6932014-07-11 14:19:37 +0800750 struct intel_iommu *iommu;
751 int ret = 1;
752
753 rcu_read_lock();
754 for_each_active_iommu(iommu, drhd) {
755 if (iommu != skip) {
756 if (!ecap_sc_support(iommu->ecap)) {
757 ret = 0;
758 break;
759 }
760 }
761 }
762 rcu_read_unlock();
763
764 return ret;
765}
766
767static int domain_update_iommu_superpage(struct intel_iommu *skip)
768{
769 struct dmar_drhd_unit *drhd;
770 struct intel_iommu *iommu;
Allen Kay8140a952011-10-14 12:32:17 -0700771 int mask = 0xf;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100772
773 if (!intel_iommu_superpage) {
Jiang Liu161f6932014-07-11 14:19:37 +0800774 return 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100775 }
776
Allen Kay8140a952011-10-14 12:32:17 -0700777 /* set iommu_superpage to the smallest common denominator */
Jiang Liu0e242612014-02-19 14:07:34 +0800778 rcu_read_lock();
Allen Kay8140a952011-10-14 12:32:17 -0700779 for_each_active_iommu(iommu, drhd) {
Jiang Liu161f6932014-07-11 14:19:37 +0800780 if (iommu != skip) {
781 mask &= cap_super_page_val(iommu->cap);
782 if (!mask)
783 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100784 }
785 }
Jiang Liu0e242612014-02-19 14:07:34 +0800786 rcu_read_unlock();
787
Jiang Liu161f6932014-07-11 14:19:37 +0800788 return fls(mask);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100789}
790
Sheng Yang58c610b2009-03-18 15:33:05 +0800791/* Some capabilities may be different across iommus */
792static void domain_update_iommu_cap(struct dmar_domain *domain)
793{
794 domain_update_iommu_coherency(domain);
Jiang Liu161f6932014-07-11 14:19:37 +0800795 domain->iommu_snooping = domain_update_iommu_snooping(NULL);
796 domain->iommu_superpage = domain_update_iommu_superpage(NULL);
Sheng Yang58c610b2009-03-18 15:33:05 +0800797}
798
David Woodhouse03ecc322015-02-13 14:35:21 +0000799static inline struct context_entry *iommu_context_addr(struct intel_iommu *iommu,
800 u8 bus, u8 devfn, int alloc)
801{
802 struct root_entry *root = &iommu->root_entry[bus];
803 struct context_entry *context;
804 u64 *entry;
805
David Woodhousec83b2f22015-06-12 10:15:49 +0100806 if (ecs_enabled(iommu)) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000807 if (devfn >= 0x80) {
808 devfn -= 0x80;
809 entry = &root->hi;
810 }
811 devfn *= 2;
812 }
813 entry = &root->lo;
814 if (*entry & 1)
815 context = phys_to_virt(*entry & VTD_PAGE_MASK);
816 else {
817 unsigned long phy_addr;
818 if (!alloc)
819 return NULL;
820
821 context = alloc_pgtable_page(iommu->node);
822 if (!context)
823 return NULL;
824
825 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
826 phy_addr = virt_to_phys((void *)context);
827 *entry = phy_addr | 1;
828 __iommu_flush_cache(iommu, entry, sizeof(*entry));
829 }
830 return &context[devfn];
831}
832
David Woodhouse4ed6a542015-05-11 14:59:20 +0100833static int iommu_dummy(struct device *dev)
834{
835 return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
836}
837
David Woodhouse156baca2014-03-09 14:00:57 -0700838static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800839{
840 struct dmar_drhd_unit *drhd = NULL;
Jiang Liub683b232014-02-19 14:07:32 +0800841 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -0700842 struct device *tmp;
843 struct pci_dev *ptmp, *pdev = NULL;
Yijing Wangaa4d0662014-05-26 20:14:06 +0800844 u16 segment = 0;
Weidong Hanc7151a82008-12-08 22:51:37 +0800845 int i;
846
David Woodhouse4ed6a542015-05-11 14:59:20 +0100847 if (iommu_dummy(dev))
848 return NULL;
849
David Woodhouse156baca2014-03-09 14:00:57 -0700850 if (dev_is_pci(dev)) {
851 pdev = to_pci_dev(dev);
852 segment = pci_domain_nr(pdev->bus);
Rafael J. Wysockica5b74d2015-03-16 23:49:08 +0100853 } else if (has_acpi_companion(dev))
David Woodhouse156baca2014-03-09 14:00:57 -0700854 dev = &ACPI_COMPANION(dev)->dev;
855
Jiang Liu0e242612014-02-19 14:07:34 +0800856 rcu_read_lock();
Jiang Liub683b232014-02-19 14:07:32 +0800857 for_each_active_iommu(iommu, drhd) {
David Woodhouse156baca2014-03-09 14:00:57 -0700858 if (pdev && segment != drhd->segment)
David Woodhouse276dbf992009-04-04 01:45:37 +0100859 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800860
Jiang Liub683b232014-02-19 14:07:32 +0800861 for_each_active_dev_scope(drhd->devices,
David Woodhouse156baca2014-03-09 14:00:57 -0700862 drhd->devices_cnt, i, tmp) {
863 if (tmp == dev) {
864 *bus = drhd->devices[i].bus;
865 *devfn = drhd->devices[i].devfn;
866 goto out;
867 }
868
869 if (!pdev || !dev_is_pci(tmp))
David Woodhouse832bd852014-03-07 15:08:36 +0000870 continue;
David Woodhouse156baca2014-03-09 14:00:57 -0700871
872 ptmp = to_pci_dev(tmp);
873 if (ptmp->subordinate &&
874 ptmp->subordinate->number <= pdev->bus->number &&
875 ptmp->subordinate->busn_res.end >= pdev->bus->number)
876 goto got_pdev;
David Woodhouse924b6232009-04-04 00:39:25 +0100877 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800878
David Woodhouse156baca2014-03-09 14:00:57 -0700879 if (pdev && drhd->include_all) {
880 got_pdev:
881 *bus = pdev->bus->number;
882 *devfn = pdev->devfn;
Jiang Liub683b232014-02-19 14:07:32 +0800883 goto out;
David Woodhouse156baca2014-03-09 14:00:57 -0700884 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800885 }
Jiang Liub683b232014-02-19 14:07:32 +0800886 iommu = NULL;
David Woodhouse156baca2014-03-09 14:00:57 -0700887 out:
Jiang Liu0e242612014-02-19 14:07:34 +0800888 rcu_read_unlock();
Weidong Hanc7151a82008-12-08 22:51:37 +0800889
Jiang Liub683b232014-02-19 14:07:32 +0800890 return iommu;
Weidong Hanc7151a82008-12-08 22:51:37 +0800891}
892
Weidong Han5331fe62008-12-08 23:00:00 +0800893static void domain_flush_cache(struct dmar_domain *domain,
894 void *addr, int size)
895{
896 if (!domain->iommu_coherency)
897 clflush_cache_range(addr, size);
898}
899
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700900static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
901{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700902 struct context_entry *context;
David Woodhouse03ecc322015-02-13 14:35:21 +0000903 int ret = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700904 unsigned long flags;
905
906 spin_lock_irqsave(&iommu->lock, flags);
David Woodhouse03ecc322015-02-13 14:35:21 +0000907 context = iommu_context_addr(iommu, bus, devfn, 0);
908 if (context)
909 ret = context_present(context);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700910 spin_unlock_irqrestore(&iommu->lock, flags);
911 return ret;
912}
913
914static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
915{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700916 struct context_entry *context;
917 unsigned long flags;
918
919 spin_lock_irqsave(&iommu->lock, flags);
David Woodhouse03ecc322015-02-13 14:35:21 +0000920 context = iommu_context_addr(iommu, bus, devfn, 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700921 if (context) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000922 context_clear_entry(context);
923 __iommu_flush_cache(iommu, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700924 }
925 spin_unlock_irqrestore(&iommu->lock, flags);
926}
927
928static void free_context_table(struct intel_iommu *iommu)
929{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700930 int i;
931 unsigned long flags;
932 struct context_entry *context;
933
934 spin_lock_irqsave(&iommu->lock, flags);
935 if (!iommu->root_entry) {
936 goto out;
937 }
938 for (i = 0; i < ROOT_ENTRY_NR; i++) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000939 context = iommu_context_addr(iommu, i, 0, 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700940 if (context)
941 free_pgtable_page(context);
David Woodhouse03ecc322015-02-13 14:35:21 +0000942
David Woodhousec83b2f22015-06-12 10:15:49 +0100943 if (!ecs_enabled(iommu))
David Woodhouse03ecc322015-02-13 14:35:21 +0000944 continue;
945
946 context = iommu_context_addr(iommu, i, 0x80, 0);
947 if (context)
948 free_pgtable_page(context);
949
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700950 }
951 free_pgtable_page(iommu->root_entry);
952 iommu->root_entry = NULL;
953out:
954 spin_unlock_irqrestore(&iommu->lock, flags);
955}
956
David Woodhouseb026fd22009-06-28 10:37:25 +0100957static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
David Woodhouse5cf0a762014-03-19 16:07:49 +0000958 unsigned long pfn, int *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700959{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700960 struct dma_pte *parent, *pte = NULL;
961 int level = agaw_to_level(domain->agaw);
Allen Kay4399c8b2011-10-14 12:32:46 -0700962 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700963
964 BUG_ON(!domain->pgd);
Julian Stecklinaf9423602013-10-09 10:03:52 +0200965
Jiang Liu162d1b12014-07-11 14:19:35 +0800966 if (!domain_pfn_supported(domain, pfn))
Julian Stecklinaf9423602013-10-09 10:03:52 +0200967 /* Address beyond IOMMU's addressing capabilities. */
968 return NULL;
969
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700970 parent = domain->pgd;
971
David Woodhouse5cf0a762014-03-19 16:07:49 +0000972 while (1) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700973 void *tmp_page;
974
David Woodhouseb026fd22009-06-28 10:37:25 +0100975 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700976 pte = &parent[offset];
David Woodhouse5cf0a762014-03-19 16:07:49 +0000977 if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte)))
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100978 break;
David Woodhouse5cf0a762014-03-19 16:07:49 +0000979 if (level == *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700980 break;
981
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000982 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100983 uint64_t pteval;
984
Suresh Siddha4c923d42009-10-02 11:01:24 -0700985 tmp_page = alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700986
David Woodhouse206a73c12009-07-01 19:30:28 +0100987 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700988 return NULL;
David Woodhouse206a73c12009-07-01 19:30:28 +0100989
David Woodhousec85994e2009-07-01 19:21:24 +0100990 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
Benjamin LaHaise64de5af2009-09-16 21:05:55 -0400991 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 +0800992 if (cmpxchg64(&pte->val, 0ULL, pteval))
David Woodhousec85994e2009-07-01 19:21:24 +0100993 /* Someone else set it while we were thinking; use theirs. */
994 free_pgtable_page(tmp_page);
Yijing Wangeffad4b2014-05-26 20:13:47 +0800995 else
David Woodhousec85994e2009-07-01 19:21:24 +0100996 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700997 }
David Woodhouse5cf0a762014-03-19 16:07:49 +0000998 if (level == 1)
999 break;
1000
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001001 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001002 level--;
1003 }
1004
David Woodhouse5cf0a762014-03-19 16:07:49 +00001005 if (!*target_level)
1006 *target_level = level;
1007
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001008 return pte;
1009}
1010
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001011
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001012/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +01001013static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
1014 unsigned long pfn,
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001015 int level, int *large_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001016{
1017 struct dma_pte *parent, *pte = NULL;
1018 int total = agaw_to_level(domain->agaw);
1019 int offset;
1020
1021 parent = domain->pgd;
1022 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +01001023 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001024 pte = &parent[offset];
1025 if (level == total)
1026 return pte;
1027
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001028 if (!dma_pte_present(pte)) {
1029 *large_page = total;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001030 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001031 }
1032
Yijing Wange16922a2014-05-20 20:37:51 +08001033 if (dma_pte_superpage(pte)) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001034 *large_page = total;
1035 return pte;
1036 }
1037
Mark McLoughlin19c239c2008-11-21 16:56:53 +00001038 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001039 total--;
1040 }
1041 return NULL;
1042}
1043
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001044/* clear last level pte, a tlb flush should be followed */
David Woodhouse5cf0a762014-03-19 16:07:49 +00001045static void dma_pte_clear_range(struct dmar_domain *domain,
David Woodhouse595badf2009-06-27 22:09:11 +01001046 unsigned long start_pfn,
1047 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001048{
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001049 unsigned int large_page = 1;
David Woodhouse310a5ab2009-06-28 18:52:20 +01001050 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001051
Jiang Liu162d1b12014-07-11 14:19:35 +08001052 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1053 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -07001054 BUG_ON(start_pfn > last_pfn);
David Woodhouse66eae842009-06-27 19:00:32 +01001055
David Woodhouse04b18e62009-06-27 19:15:01 +01001056 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse59c36282009-09-19 07:36:28 -07001057 do {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001058 large_page = 1;
1059 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001060 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001061 start_pfn = align_to_level(start_pfn + 1, large_page + 1);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001062 continue;
1063 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001064 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +01001065 dma_clear_pte(pte);
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001066 start_pfn += lvl_to_nr_pages(large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +01001067 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +01001068 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
1069
David Woodhouse310a5ab2009-06-28 18:52:20 +01001070 domain_flush_cache(domain, first_pte,
1071 (void *)pte - (void *)first_pte);
David Woodhouse59c36282009-09-19 07:36:28 -07001072
1073 } while (start_pfn && start_pfn <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001074}
1075
Alex Williamson3269ee02013-06-15 10:27:19 -06001076static void dma_pte_free_level(struct dmar_domain *domain, int level,
1077 struct dma_pte *pte, unsigned long pfn,
1078 unsigned long start_pfn, unsigned long last_pfn)
1079{
1080 pfn = max(start_pfn, pfn);
1081 pte = &pte[pfn_level_offset(pfn, level)];
1082
1083 do {
1084 unsigned long level_pfn;
1085 struct dma_pte *level_pte;
1086
1087 if (!dma_pte_present(pte) || dma_pte_superpage(pte))
1088 goto next;
1089
1090 level_pfn = pfn & level_mask(level - 1);
1091 level_pte = phys_to_virt(dma_pte_addr(pte));
1092
1093 if (level > 2)
1094 dma_pte_free_level(domain, level - 1, level_pte,
1095 level_pfn, start_pfn, last_pfn);
1096
1097 /* If range covers entire pagetable, free it */
1098 if (!(start_pfn > level_pfn ||
Alex Williamson08336fd2014-01-21 15:48:18 -08001099 last_pfn < level_pfn + level_size(level) - 1)) {
Alex Williamson3269ee02013-06-15 10:27:19 -06001100 dma_clear_pte(pte);
1101 domain_flush_cache(domain, pte, sizeof(*pte));
1102 free_pgtable_page(level_pte);
1103 }
1104next:
1105 pfn += level_size(level);
1106 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1107}
1108
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001109/* free page table pages. last level pte should already be cleared */
1110static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +01001111 unsigned long start_pfn,
1112 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001113{
Jiang Liu162d1b12014-07-11 14:19:35 +08001114 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1115 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -07001116 BUG_ON(start_pfn > last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001117
Jiang Liud41a4ad2014-07-11 14:19:34 +08001118 dma_pte_clear_range(domain, start_pfn, last_pfn);
1119
David Woodhousef3a0a522009-06-30 03:40:07 +01001120 /* We don't need lock here; nobody else touches the iova range */
Alex Williamson3269ee02013-06-15 10:27:19 -06001121 dma_pte_free_level(domain, agaw_to_level(domain->agaw),
1122 domain->pgd, 0, start_pfn, last_pfn);
David Woodhouse6660c632009-06-27 22:41:00 +01001123
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001124 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +01001125 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001126 free_pgtable_page(domain->pgd);
1127 domain->pgd = NULL;
1128 }
1129}
1130
David Woodhouseea8ea462014-03-05 17:09:32 +00001131/* When a page at a given level is being unlinked from its parent, we don't
1132 need to *modify* it at all. All we need to do is make a list of all the
1133 pages which can be freed just as soon as we've flushed the IOTLB and we
1134 know the hardware page-walk will no longer touch them.
1135 The 'pte' argument is the *parent* PTE, pointing to the page that is to
1136 be freed. */
1137static struct page *dma_pte_list_pagetables(struct dmar_domain *domain,
1138 int level, struct dma_pte *pte,
1139 struct page *freelist)
1140{
1141 struct page *pg;
1142
1143 pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT);
1144 pg->freelist = freelist;
1145 freelist = pg;
1146
1147 if (level == 1)
1148 return freelist;
1149
Jiang Liuadeb2592014-04-09 10:20:39 +08001150 pte = page_address(pg);
1151 do {
David Woodhouseea8ea462014-03-05 17:09:32 +00001152 if (dma_pte_present(pte) && !dma_pte_superpage(pte))
1153 freelist = dma_pte_list_pagetables(domain, level - 1,
1154 pte, freelist);
Jiang Liuadeb2592014-04-09 10:20:39 +08001155 pte++;
1156 } while (!first_pte_in_page(pte));
David Woodhouseea8ea462014-03-05 17:09:32 +00001157
1158 return freelist;
1159}
1160
1161static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level,
1162 struct dma_pte *pte, unsigned long pfn,
1163 unsigned long start_pfn,
1164 unsigned long last_pfn,
1165 struct page *freelist)
1166{
1167 struct dma_pte *first_pte = NULL, *last_pte = NULL;
1168
1169 pfn = max(start_pfn, pfn);
1170 pte = &pte[pfn_level_offset(pfn, level)];
1171
1172 do {
1173 unsigned long level_pfn;
1174
1175 if (!dma_pte_present(pte))
1176 goto next;
1177
1178 level_pfn = pfn & level_mask(level);
1179
1180 /* If range covers entire pagetable, free it */
1181 if (start_pfn <= level_pfn &&
1182 last_pfn >= level_pfn + level_size(level) - 1) {
1183 /* These suborbinate page tables are going away entirely. Don't
1184 bother to clear them; we're just going to *free* them. */
1185 if (level > 1 && !dma_pte_superpage(pte))
1186 freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist);
1187
1188 dma_clear_pte(pte);
1189 if (!first_pte)
1190 first_pte = pte;
1191 last_pte = pte;
1192 } else if (level > 1) {
1193 /* Recurse down into a level that isn't *entirely* obsolete */
1194 freelist = dma_pte_clear_level(domain, level - 1,
1195 phys_to_virt(dma_pte_addr(pte)),
1196 level_pfn, start_pfn, last_pfn,
1197 freelist);
1198 }
1199next:
1200 pfn += level_size(level);
1201 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1202
1203 if (first_pte)
1204 domain_flush_cache(domain, first_pte,
1205 (void *)++last_pte - (void *)first_pte);
1206
1207 return freelist;
1208}
1209
1210/* We can't just free the pages because the IOMMU may still be walking
1211 the page tables, and may have cached the intermediate levels. The
1212 pages can only be freed after the IOTLB flush has been done. */
1213struct page *domain_unmap(struct dmar_domain *domain,
1214 unsigned long start_pfn,
1215 unsigned long last_pfn)
1216{
David Woodhouseea8ea462014-03-05 17:09:32 +00001217 struct page *freelist = NULL;
1218
Jiang Liu162d1b12014-07-11 14:19:35 +08001219 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1220 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouseea8ea462014-03-05 17:09:32 +00001221 BUG_ON(start_pfn > last_pfn);
1222
1223 /* we don't need lock here; nobody else touches the iova range */
1224 freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw),
1225 domain->pgd, 0, start_pfn, last_pfn, NULL);
1226
1227 /* free pgd */
1228 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
1229 struct page *pgd_page = virt_to_page(domain->pgd);
1230 pgd_page->freelist = freelist;
1231 freelist = pgd_page;
1232
1233 domain->pgd = NULL;
1234 }
1235
1236 return freelist;
1237}
1238
1239void dma_free_pagelist(struct page *freelist)
1240{
1241 struct page *pg;
1242
1243 while ((pg = freelist)) {
1244 freelist = pg->freelist;
1245 free_pgtable_page(page_address(pg));
1246 }
1247}
1248
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001249/* iommu handling */
1250static int iommu_alloc_root_entry(struct intel_iommu *iommu)
1251{
1252 struct root_entry *root;
1253 unsigned long flags;
1254
Suresh Siddha4c923d42009-10-02 11:01:24 -07001255 root = (struct root_entry *)alloc_pgtable_page(iommu->node);
Jiang Liuffebeb42014-11-09 22:48:02 +08001256 if (!root) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001257 pr_err("Allocating root entry for %s failed\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08001258 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001259 return -ENOMEM;
Jiang Liuffebeb42014-11-09 22:48:02 +08001260 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001261
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001262 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001263
1264 spin_lock_irqsave(&iommu->lock, flags);
1265 iommu->root_entry = root;
1266 spin_unlock_irqrestore(&iommu->lock, flags);
1267
1268 return 0;
1269}
1270
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001271static void iommu_set_root_entry(struct intel_iommu *iommu)
1272{
David Woodhouse03ecc322015-02-13 14:35:21 +00001273 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +01001274 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001275 unsigned long flag;
1276
David Woodhouse03ecc322015-02-13 14:35:21 +00001277 addr = virt_to_phys(iommu->root_entry);
David Woodhousec83b2f22015-06-12 10:15:49 +01001278 if (ecs_enabled(iommu))
David Woodhouse03ecc322015-02-13 14:35:21 +00001279 addr |= DMA_RTADDR_RTT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001280
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001281 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse03ecc322015-02-13 14:35:21 +00001282 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, addr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001283
David Woodhousec416daa2009-05-10 20:30:58 +01001284 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001285
1286 /* Make sure hardware complete it */
1287 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001288 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001289
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001290 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001291}
1292
1293static void iommu_flush_write_buffer(struct intel_iommu *iommu)
1294{
1295 u32 val;
1296 unsigned long flag;
1297
David Woodhouse9af88142009-02-13 23:18:03 +00001298 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001299 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001300
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001301 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +01001302 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001303
1304 /* Make sure hardware complete it */
1305 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001306 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001307
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001308 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001309}
1310
1311/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001312static void __iommu_flush_context(struct intel_iommu *iommu,
1313 u16 did, u16 source_id, u8 function_mask,
1314 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001315{
1316 u64 val = 0;
1317 unsigned long flag;
1318
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001319 switch (type) {
1320 case DMA_CCMD_GLOBAL_INVL:
1321 val = DMA_CCMD_GLOBAL_INVL;
1322 break;
1323 case DMA_CCMD_DOMAIN_INVL:
1324 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
1325 break;
1326 case DMA_CCMD_DEVICE_INVL:
1327 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
1328 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
1329 break;
1330 default:
1331 BUG();
1332 }
1333 val |= DMA_CCMD_ICC;
1334
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001335 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001336 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
1337
1338 /* Make sure hardware complete it */
1339 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
1340 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
1341
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001342 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001343}
1344
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001345/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001346static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
1347 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001348{
1349 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
1350 u64 val = 0, val_iva = 0;
1351 unsigned long flag;
1352
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001353 switch (type) {
1354 case DMA_TLB_GLOBAL_FLUSH:
1355 /* global flush doesn't need set IVA_REG */
1356 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
1357 break;
1358 case DMA_TLB_DSI_FLUSH:
1359 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
1360 break;
1361 case DMA_TLB_PSI_FLUSH:
1362 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
David Woodhouseea8ea462014-03-05 17:09:32 +00001363 /* IH bit is passed in as part of address */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001364 val_iva = size_order | addr;
1365 break;
1366 default:
1367 BUG();
1368 }
1369 /* Note: set drain read/write */
1370#if 0
1371 /*
1372 * This is probably to be super secure.. Looks like we can
1373 * ignore it without any impact.
1374 */
1375 if (cap_read_drain(iommu->cap))
1376 val |= DMA_TLB_READ_DRAIN;
1377#endif
1378 if (cap_write_drain(iommu->cap))
1379 val |= DMA_TLB_WRITE_DRAIN;
1380
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001381 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001382 /* Note: Only uses first TLB reg currently */
1383 if (val_iva)
1384 dmar_writeq(iommu->reg + tlb_offset, val_iva);
1385 dmar_writeq(iommu->reg + tlb_offset + 8, val);
1386
1387 /* Make sure hardware complete it */
1388 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
1389 dmar_readq, (!(val & DMA_TLB_IVT)), val);
1390
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001391 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001392
1393 /* check IOTLB invalidation granularity */
1394 if (DMA_TLB_IAIG(val) == 0)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001395 pr_err("Flush IOTLB failed\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001396 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001397 pr_debug("TLB flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001398 (unsigned long long)DMA_TLB_IIRG(type),
1399 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001400}
1401
David Woodhouse64ae8922014-03-09 12:52:30 -07001402static struct device_domain_info *
1403iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu,
1404 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001405{
Quentin Lambert2f119c72015-02-06 10:59:53 +01001406 bool found = false;
Yu Zhao93a23a72009-05-18 13:51:37 +08001407 unsigned long flags;
1408 struct device_domain_info *info;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001409 struct pci_dev *pdev;
Yu Zhao93a23a72009-05-18 13:51:37 +08001410
1411 if (!ecap_dev_iotlb_support(iommu->ecap))
1412 return NULL;
1413
1414 if (!iommu->qi)
1415 return NULL;
1416
1417 spin_lock_irqsave(&device_domain_lock, flags);
1418 list_for_each_entry(info, &domain->devices, link)
Jiang Liuc3b497c2014-07-11 14:19:25 +08001419 if (info->iommu == iommu && info->bus == bus &&
1420 info->devfn == devfn) {
Quentin Lambert2f119c72015-02-06 10:59:53 +01001421 found = true;
Yu Zhao93a23a72009-05-18 13:51:37 +08001422 break;
1423 }
1424 spin_unlock_irqrestore(&device_domain_lock, flags);
1425
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001426 if (!found || !info->dev || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001427 return NULL;
1428
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001429 pdev = to_pci_dev(info->dev);
1430
1431 if (!pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS))
Yu Zhao93a23a72009-05-18 13:51:37 +08001432 return NULL;
1433
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001434 if (!dmar_find_matched_atsr_unit(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001435 return NULL;
1436
Yu Zhao93a23a72009-05-18 13:51:37 +08001437 return info;
1438}
1439
1440static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1441{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001442 if (!info || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001443 return;
1444
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001445 pci_enable_ats(to_pci_dev(info->dev), VTD_PAGE_SHIFT);
Yu Zhao93a23a72009-05-18 13:51:37 +08001446}
1447
1448static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1449{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001450 if (!info->dev || !dev_is_pci(info->dev) ||
1451 !pci_ats_enabled(to_pci_dev(info->dev)))
Yu Zhao93a23a72009-05-18 13:51:37 +08001452 return;
1453
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001454 pci_disable_ats(to_pci_dev(info->dev));
Yu Zhao93a23a72009-05-18 13:51:37 +08001455}
1456
1457static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1458 u64 addr, unsigned mask)
1459{
1460 u16 sid, qdep;
1461 unsigned long flags;
1462 struct device_domain_info *info;
1463
1464 spin_lock_irqsave(&device_domain_lock, flags);
1465 list_for_each_entry(info, &domain->devices, link) {
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001466 struct pci_dev *pdev;
1467 if (!info->dev || !dev_is_pci(info->dev))
1468 continue;
1469
1470 pdev = to_pci_dev(info->dev);
1471 if (!pci_ats_enabled(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001472 continue;
1473
1474 sid = info->bus << 8 | info->devfn;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001475 qdep = pci_ats_queue_depth(pdev);
Yu Zhao93a23a72009-05-18 13:51:37 +08001476 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1477 }
1478 spin_unlock_irqrestore(&device_domain_lock, flags);
1479}
1480
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001481static void iommu_flush_iotlb_psi(struct intel_iommu *iommu,
1482 struct dmar_domain *domain,
1483 unsigned long pfn, unsigned int pages,
1484 int ih, int map)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001485{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001486 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001487 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001488 u16 did = domain->iommu_did[iommu->seq_id];
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001489
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001490 BUG_ON(pages == 0);
1491
David Woodhouseea8ea462014-03-05 17:09:32 +00001492 if (ih)
1493 ih = 1 << 6;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001494 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001495 * Fallback to domain selective flush if no PSI support or the size is
1496 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001497 * PSI requires page size to be 2 ^ x, and the base address is naturally
1498 * aligned to the size
1499 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001500 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1501 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001502 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001503 else
David Woodhouseea8ea462014-03-05 17:09:32 +00001504 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001505 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001506
1507 /*
Nadav Amit82653632010-04-01 13:24:40 +03001508 * In caching mode, changes of pages from non-present to present require
1509 * flush. However, device IOTLB doesn't need to be flushed in this case.
Yu Zhaobf92df32009-06-29 11:31:45 +08001510 */
Nadav Amit82653632010-04-01 13:24:40 +03001511 if (!cap_caching_mode(iommu->cap) || !map)
Joerg Roedel9452d5b2015-07-21 10:00:56 +02001512 iommu_flush_dev_iotlb(get_iommu_domain(iommu, did),
1513 addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001514}
1515
mark grossf8bab732008-02-08 04:18:38 -08001516static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1517{
1518 u32 pmen;
1519 unsigned long flags;
1520
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001521 raw_spin_lock_irqsave(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001522 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1523 pmen &= ~DMA_PMEN_EPM;
1524 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1525
1526 /* wait for the protected region status bit to clear */
1527 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1528 readl, !(pmen & DMA_PMEN_PRS), pmen);
1529
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001530 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001531}
1532
Jiang Liu2a41cce2014-07-11 14:19:33 +08001533static void iommu_enable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001534{
1535 u32 sts;
1536 unsigned long flags;
1537
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001538 raw_spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001539 iommu->gcmd |= DMA_GCMD_TE;
1540 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001541
1542 /* Make sure hardware complete it */
1543 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001544 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001545
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001546 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001547}
1548
Jiang Liu2a41cce2014-07-11 14:19:33 +08001549static void iommu_disable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001550{
1551 u32 sts;
1552 unsigned long flag;
1553
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001554 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001555 iommu->gcmd &= ~DMA_GCMD_TE;
1556 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1557
1558 /* Make sure hardware complete it */
1559 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001560 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001561
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001562 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001563}
1564
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001565
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001566static int iommu_init_domains(struct intel_iommu *iommu)
1567{
Joerg Roedel8bf47812015-07-21 10:41:21 +02001568 u32 ndomains, nlongs;
1569 size_t size;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001570
1571 ndomains = cap_ndoms(iommu->cap);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001572 pr_debug("%s: Number of Domains supported <%d>\n",
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001573 iommu->name, ndomains);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001574 nlongs = BITS_TO_LONGS(ndomains);
1575
Donald Dutile94a91b52009-08-20 16:51:34 -04001576 spin_lock_init(&iommu->lock);
1577
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001578 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1579 if (!iommu->domain_ids) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001580 pr_err("%s: Allocating domain id array failed\n",
1581 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001582 return -ENOMEM;
1583 }
Joerg Roedel8bf47812015-07-21 10:41:21 +02001584
1585 size = ((ndomains >> 8) + 1) * sizeof(struct dmar_domain **);
1586 iommu->domains = kzalloc(size, GFP_KERNEL);
1587
1588 if (iommu->domains) {
1589 size = 256 * sizeof(struct dmar_domain *);
1590 iommu->domains[0] = kzalloc(size, GFP_KERNEL);
1591 }
1592
1593 if (!iommu->domains || !iommu->domains[0]) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001594 pr_err("%s: Allocating domain array failed\n",
1595 iommu->name);
Jiang Liu852bdb02014-01-06 14:18:11 +08001596 kfree(iommu->domain_ids);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001597 kfree(iommu->domains);
Jiang Liu852bdb02014-01-06 14:18:11 +08001598 iommu->domain_ids = NULL;
Joerg Roedel8bf47812015-07-21 10:41:21 +02001599 iommu->domains = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001600 return -ENOMEM;
1601 }
1602
Joerg Roedel8bf47812015-07-21 10:41:21 +02001603
1604
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001605 /*
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001606 * If Caching mode is set, then invalid translations are tagged
1607 * with domain-id 0, hence we need to pre-allocate it. We also
1608 * use domain-id 0 as a marker for non-allocated domain-id, so
1609 * make sure it is not used for a real domain.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001610 */
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001611 set_bit(0, iommu->domain_ids);
1612
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001613 return 0;
1614}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001615
Jiang Liuffebeb42014-11-09 22:48:02 +08001616static void disable_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001617{
Joerg Roedel29a27712015-07-21 17:17:12 +02001618 struct device_domain_info *info, *tmp;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001619
Joerg Roedel29a27712015-07-21 17:17:12 +02001620 if (!iommu->domains || !iommu->domain_ids)
1621 return;
Jiang Liua4eaa862014-02-19 14:07:30 +08001622
Joerg Roedel29a27712015-07-21 17:17:12 +02001623 list_for_each_entry_safe(info, tmp, &device_domain_list, global) {
1624 struct dmar_domain *domain;
1625
1626 if (info->iommu != iommu)
1627 continue;
1628
1629 if (!info->dev || !info->domain)
1630 continue;
1631
1632 domain = info->domain;
1633
1634 domain_remove_one_dev_info(domain, info->dev);
1635
1636 if (!domain_type_is_vm_or_si(domain))
1637 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001638 }
1639
1640 if (iommu->gcmd & DMA_GCMD_TE)
1641 iommu_disable_translation(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08001642}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001643
Jiang Liuffebeb42014-11-09 22:48:02 +08001644static void free_dmar_iommu(struct intel_iommu *iommu)
1645{
1646 if ((iommu->domains) && (iommu->domain_ids)) {
Joerg Roedel8bf47812015-07-21 10:41:21 +02001647 int elems = (cap_ndoms(iommu->cap) >> 8) + 1;
1648 int i;
1649
1650 for (i = 0; i < elems; i++)
1651 kfree(iommu->domains[i]);
Jiang Liuffebeb42014-11-09 22:48:02 +08001652 kfree(iommu->domains);
1653 kfree(iommu->domain_ids);
1654 iommu->domains = NULL;
1655 iommu->domain_ids = NULL;
1656 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001657
Weidong Hand9630fe2008-12-08 11:06:32 +08001658 g_iommus[iommu->seq_id] = NULL;
1659
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001660 /* free context mapping */
1661 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001662}
1663
Jiang Liuab8dfe22014-07-11 14:19:27 +08001664static struct dmar_domain *alloc_domain(int flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001665{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001666 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001667
1668 domain = alloc_domain_mem();
1669 if (!domain)
1670 return NULL;
1671
Jiang Liuab8dfe22014-07-11 14:19:27 +08001672 memset(domain, 0, sizeof(*domain));
Suresh Siddha4c923d42009-10-02 11:01:24 -07001673 domain->nid = -1;
Jiang Liuab8dfe22014-07-11 14:19:27 +08001674 domain->flags = flags;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001675 spin_lock_init(&domain->iommu_lock);
1676 INIT_LIST_HEAD(&domain->devices);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001677
1678 return domain;
1679}
1680
Jiang Liufb170fb2014-07-11 14:19:28 +08001681static int __iommu_attach_domain(struct dmar_domain *domain,
1682 struct intel_iommu *iommu)
1683{
1684 int num;
1685 unsigned long ndomains;
1686
Joerg Roedele2411422015-07-21 11:18:21 +02001687 num = domain->iommu_did[iommu->seq_id];
1688 if (num)
1689 return num;
1690
Jiang Liufb170fb2014-07-11 14:19:28 +08001691 ndomains = cap_ndoms(iommu->cap);
Joerg Roedele2411422015-07-21 11:18:21 +02001692 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1693
Jiang Liufb170fb2014-07-11 14:19:28 +08001694 if (num < ndomains) {
1695 set_bit(num, iommu->domain_ids);
Joerg Roedel9452d5b2015-07-21 10:00:56 +02001696 set_iommu_domain(iommu, num, domain);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001697 domain->iommu_did[iommu->seq_id] = num;
Jiang Liufb170fb2014-07-11 14:19:28 +08001698 } else {
1699 num = -ENOSPC;
1700 }
1701
Joerg Roedele2411422015-07-21 11:18:21 +02001702 if (num < 0)
1703 pr_err("%s: No free domain ids\n", iommu->name);
1704
Jiang Liufb170fb2014-07-11 14:19:28 +08001705 return num;
1706}
1707
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001708static int iommu_attach_domain(struct dmar_domain *domain,
1709 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001710{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001711 int num;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001712 unsigned long flags;
1713
Weidong Han8c11e792008-12-08 15:29:22 +08001714 spin_lock_irqsave(&iommu->lock, flags);
Jiang Liufb170fb2014-07-11 14:19:28 +08001715 num = __iommu_attach_domain(domain, iommu);
Jiang Liu44bde612014-07-11 14:19:29 +08001716 spin_unlock_irqrestore(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001717
Jiang Liufb170fb2014-07-11 14:19:28 +08001718 return num;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001719}
1720
1721static void iommu_detach_domain(struct dmar_domain *domain,
1722 struct intel_iommu *iommu)
1723{
1724 unsigned long flags;
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001725 int num;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001726
1727 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001728
1729 num = domain->iommu_did[iommu->seq_id];
1730
1731 if (num == 0)
1732 return;
1733
1734 clear_bit(num, iommu->domain_ids);
Joerg Roedel9452d5b2015-07-21 10:00:56 +02001735 set_iommu_domain(iommu, num, NULL);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001736
Weidong Han8c11e792008-12-08 15:29:22 +08001737 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001738}
1739
Jiang Liufb170fb2014-07-11 14:19:28 +08001740static void domain_attach_iommu(struct dmar_domain *domain,
1741 struct intel_iommu *iommu)
1742{
1743 unsigned long flags;
1744
1745 spin_lock_irqsave(&domain->iommu_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001746 domain->iommu_refcnt[iommu->seq_id] += 1;
1747 domain->iommu_count += 1;
1748 if (domain->iommu_refcnt[iommu->seq_id] == 1) {
1749 domain->nid = iommu->node;
Jiang Liufb170fb2014-07-11 14:19:28 +08001750 domain_update_iommu_cap(domain);
1751 }
1752 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1753}
1754
1755static int domain_detach_iommu(struct dmar_domain *domain,
1756 struct intel_iommu *iommu)
1757{
1758 unsigned long flags;
1759 int count = INT_MAX;
1760
1761 spin_lock_irqsave(&domain->iommu_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001762 domain->iommu_refcnt[iommu->seq_id] -= 1;
1763 count = --domain->iommu_count;
1764 if (domain->iommu_refcnt[iommu->seq_id] == 0) {
Jiang Liufb170fb2014-07-11 14:19:28 +08001765 domain_update_iommu_cap(domain);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001766 domain->iommu_did[iommu->seq_id] = 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001767 }
1768 spin_unlock_irqrestore(&domain->iommu_lock, flags);
1769
1770 return count;
1771}
1772
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001773static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001774static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001775
Joseph Cihula51a63e62011-03-21 11:04:24 -07001776static int dmar_init_reserved_ranges(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001777{
1778 struct pci_dev *pdev = NULL;
1779 struct iova *iova;
1780 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001781
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001782 init_iova_domain(&reserved_iova_list, VTD_PAGE_SIZE, IOVA_START_PFN,
1783 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001784
Mark Gross8a443df2008-03-04 14:59:31 -08001785 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1786 &reserved_rbtree_key);
1787
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001788 /* IOAPIC ranges shouldn't be accessed by DMA */
1789 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1790 IOVA_PFN(IOAPIC_RANGE_END));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001791 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001792 pr_err("Reserve IOAPIC range failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001793 return -ENODEV;
1794 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001795
1796 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1797 for_each_pci_dev(pdev) {
1798 struct resource *r;
1799
1800 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1801 r = &pdev->resource[i];
1802 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1803 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001804 iova = reserve_iova(&reserved_iova_list,
1805 IOVA_PFN(r->start),
1806 IOVA_PFN(r->end));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001807 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001808 pr_err("Reserve iova failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001809 return -ENODEV;
1810 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001811 }
1812 }
Joseph Cihula51a63e62011-03-21 11:04:24 -07001813 return 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001814}
1815
1816static void domain_reserve_special_ranges(struct dmar_domain *domain)
1817{
1818 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1819}
1820
1821static inline int guestwidth_to_adjustwidth(int gaw)
1822{
1823 int agaw;
1824 int r = (gaw - 12) % 9;
1825
1826 if (r == 0)
1827 agaw = gaw;
1828 else
1829 agaw = gaw + 9 - r;
1830 if (agaw > 64)
1831 agaw = 64;
1832 return agaw;
1833}
1834
1835static int domain_init(struct dmar_domain *domain, int guest_width)
1836{
1837 struct intel_iommu *iommu;
1838 int adjust_width, agaw;
1839 unsigned long sagaw;
1840
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001841 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
1842 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001843 domain_reserve_special_ranges(domain);
1844
1845 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001846 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001847 if (guest_width > cap_mgaw(iommu->cap))
1848 guest_width = cap_mgaw(iommu->cap);
1849 domain->gaw = guest_width;
1850 adjust_width = guestwidth_to_adjustwidth(guest_width);
1851 agaw = width_to_agaw(adjust_width);
1852 sagaw = cap_sagaw(iommu->cap);
1853 if (!test_bit(agaw, &sagaw)) {
1854 /* hardware doesn't support it, choose a bigger one */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001855 pr_debug("Hardware doesn't support agaw %d\n", agaw);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001856 agaw = find_next_bit(&sagaw, 5, agaw);
1857 if (agaw >= 5)
1858 return -ENODEV;
1859 }
1860 domain->agaw = agaw;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001861
Weidong Han8e6040972008-12-08 15:49:06 +08001862 if (ecap_coherent(iommu->ecap))
1863 domain->iommu_coherency = 1;
1864 else
1865 domain->iommu_coherency = 0;
1866
Sheng Yang58c610b2009-03-18 15:33:05 +08001867 if (ecap_sc_support(iommu->ecap))
1868 domain->iommu_snooping = 1;
1869 else
1870 domain->iommu_snooping = 0;
1871
David Woodhouse214e39a2014-03-19 10:38:49 +00001872 if (intel_iommu_superpage)
1873 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1874 else
1875 domain->iommu_superpage = 0;
1876
Suresh Siddha4c923d42009-10-02 11:01:24 -07001877 domain->nid = iommu->node;
Weidong Hanc7151a82008-12-08 22:51:37 +08001878
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001879 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07001880 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001881 if (!domain->pgd)
1882 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001883 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001884 return 0;
1885}
1886
1887static void domain_exit(struct dmar_domain *domain)
1888{
David Woodhouseea8ea462014-03-05 17:09:32 +00001889 struct page *freelist = NULL;
Joerg Roedel29a27712015-07-21 17:17:12 +02001890 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001891
1892 /* Domain 0 is reserved, so dont process it */
1893 if (!domain)
1894 return;
1895
Alex Williamson7b668352011-05-24 12:02:41 +01001896 /* Flush any lazy unmaps that may reference this domain */
1897 if (!intel_iommu_strict)
1898 flush_unmaps_timeout(0);
1899
Jiang Liu92d03cc2014-02-19 14:07:28 +08001900 /* remove associated devices */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001901 domain_remove_dev_info(domain);
Jiang Liu92d03cc2014-02-19 14:07:28 +08001902
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001903 /* destroy iovas */
1904 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001905
David Woodhouseea8ea462014-03-05 17:09:32 +00001906 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001907
Jiang Liu92d03cc2014-02-19 14:07:28 +08001908 /* clear attached or cached domains */
Jiang Liu0e242612014-02-19 14:07:34 +08001909 rcu_read_lock();
Joerg Roedel29a27712015-07-21 17:17:12 +02001910 for_each_domain_iommu(i, domain)
1911 iommu_detach_domain(domain, g_iommus[i]);
Jiang Liu0e242612014-02-19 14:07:34 +08001912 rcu_read_unlock();
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001913
David Woodhouseea8ea462014-03-05 17:09:32 +00001914 dma_free_pagelist(freelist);
1915
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001916 free_domain_mem(domain);
1917}
1918
David Woodhouse64ae8922014-03-09 12:52:30 -07001919static int domain_context_mapping_one(struct dmar_domain *domain,
1920 struct intel_iommu *iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001921 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001922{
Joerg Roedel28ccce02015-07-21 14:45:31 +02001923 int translation = CONTEXT_TT_MULTI_LEVEL;
1924 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001925 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001926 unsigned long flags;
Weidong Hanea6606b2008-12-08 23:08:15 +08001927 struct dma_pte *pgd;
Weidong Hanea6606b2008-12-08 23:08:15 +08001928 int id;
1929 int agaw;
Joerg Roedel28ccce02015-07-21 14:45:31 +02001930
1931 if (hw_pass_through && domain_type_is_si(domain))
1932 translation = CONTEXT_TT_PASS_THROUGH;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001933
1934 pr_debug("Set context mapping for %02x:%02x.%d\n",
1935 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001936
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001937 BUG_ON(!domain->pgd);
Weidong Han5331fe62008-12-08 23:00:00 +08001938
David Woodhouse03ecc322015-02-13 14:35:21 +00001939 spin_lock_irqsave(&iommu->lock, flags);
1940 context = iommu_context_addr(iommu, bus, devfn, 1);
1941 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001942 if (!context)
1943 return -ENOMEM;
1944 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001945 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001946 spin_unlock_irqrestore(&iommu->lock, flags);
1947 return 0;
1948 }
1949
Weidong Hanea6606b2008-12-08 23:08:15 +08001950 pgd = domain->pgd;
1951
Joerg Roedelde24e552015-07-21 14:53:04 +02001952 id = __iommu_attach_domain(domain, iommu);
1953 if (id < 0) {
1954 spin_unlock_irqrestore(&iommu->lock, flags);
1955 pr_err("%s: No free domain ids\n", iommu->name);
1956 return -EFAULT;
Weidong Hanea6606b2008-12-08 23:08:15 +08001957 }
1958
Joerg Roedelde24e552015-07-21 14:53:04 +02001959 context_clear_entry(context);
Weidong Hanea6606b2008-12-08 23:08:15 +08001960 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001961
Joerg Roedelde24e552015-07-21 14:53:04 +02001962 /*
1963 * Skip top levels of page tables for iommu which has less agaw
1964 * than default. Unnecessary for PT mode.
1965 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001966 if (translation != CONTEXT_TT_PASS_THROUGH) {
Joerg Roedelde24e552015-07-21 14:53:04 +02001967 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1968 pgd = phys_to_virt(dma_pte_addr(pgd));
1969 if (!dma_pte_present(pgd)) {
1970 spin_unlock_irqrestore(&iommu->lock, flags);
1971 return -ENOMEM;
1972 }
1973 }
1974
David Woodhouse64ae8922014-03-09 12:52:30 -07001975 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
Yu Zhao93a23a72009-05-18 13:51:37 +08001976 translation = info ? CONTEXT_TT_DEV_IOTLB :
1977 CONTEXT_TT_MULTI_LEVEL;
Joerg Roedelde24e552015-07-21 14:53:04 +02001978
Yu Zhao93a23a72009-05-18 13:51:37 +08001979 context_set_address_root(context, virt_to_phys(pgd));
1980 context_set_address_width(context, iommu->agaw);
Joerg Roedelde24e552015-07-21 14:53:04 +02001981 } else {
1982 /*
1983 * In pass through mode, AW must be programmed to
1984 * indicate the largest AGAW value supported by
1985 * hardware. And ASR is ignored by hardware.
1986 */
1987 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001988 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001989
1990 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001991 context_set_fault_enable(context);
1992 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001993 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001994
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001995 /*
1996 * It's a non-present to present mapping. If hardware doesn't cache
1997 * non-present entry we only need to flush the write-buffer. If the
1998 * _does_ cache non-present entries, then it does so in the special
1999 * domain #0, which we have to flush:
2000 */
2001 if (cap_caching_mode(iommu->cap)) {
2002 iommu->flush.flush_context(iommu, 0,
2003 (((u16)bus) << 8) | devfn,
2004 DMA_CCMD_MASK_NOBIT,
2005 DMA_CCMD_DEVICE_INVL);
Jiang Liu18fd7792014-07-11 14:19:26 +08002006 iommu->flush.flush_iotlb(iommu, id, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002007 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002008 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002009 }
Yu Zhao93a23a72009-05-18 13:51:37 +08002010 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002011 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08002012
Jiang Liufb170fb2014-07-11 14:19:28 +08002013 domain_attach_iommu(domain, iommu);
2014
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002015 return 0;
2016}
2017
Alex Williamson579305f2014-07-03 09:51:43 -06002018struct domain_context_mapping_data {
2019 struct dmar_domain *domain;
2020 struct intel_iommu *iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06002021};
2022
2023static int domain_context_mapping_cb(struct pci_dev *pdev,
2024 u16 alias, void *opaque)
2025{
2026 struct domain_context_mapping_data *data = opaque;
2027
2028 return domain_context_mapping_one(data->domain, data->iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02002029 PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06002030}
2031
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002032static int
Joerg Roedel28ccce02015-07-21 14:45:31 +02002033domain_context_mapping(struct dmar_domain *domain, struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002034{
David Woodhouse64ae8922014-03-09 12:52:30 -07002035 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002036 u8 bus, devfn;
Alex Williamson579305f2014-07-03 09:51:43 -06002037 struct domain_context_mapping_data data;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002038
David Woodhousee1f167f2014-03-09 15:24:46 -07002039 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse64ae8922014-03-09 12:52:30 -07002040 if (!iommu)
2041 return -ENODEV;
2042
Alex Williamson579305f2014-07-03 09:51:43 -06002043 if (!dev_is_pci(dev))
Joerg Roedel28ccce02015-07-21 14:45:31 +02002044 return domain_context_mapping_one(domain, iommu, bus, devfn);
Alex Williamson579305f2014-07-03 09:51:43 -06002045
2046 data.domain = domain;
2047 data.iommu = iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06002048
2049 return pci_for_each_dma_alias(to_pci_dev(dev),
2050 &domain_context_mapping_cb, &data);
2051}
2052
2053static int domain_context_mapped_cb(struct pci_dev *pdev,
2054 u16 alias, void *opaque)
2055{
2056 struct intel_iommu *iommu = opaque;
2057
2058 return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002059}
2060
David Woodhousee1f167f2014-03-09 15:24:46 -07002061static int domain_context_mapped(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002062{
Weidong Han5331fe62008-12-08 23:00:00 +08002063 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002064 u8 bus, devfn;
Weidong Han5331fe62008-12-08 23:00:00 +08002065
David Woodhousee1f167f2014-03-09 15:24:46 -07002066 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08002067 if (!iommu)
2068 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002069
Alex Williamson579305f2014-07-03 09:51:43 -06002070 if (!dev_is_pci(dev))
2071 return device_context_mapped(iommu, bus, devfn);
David Woodhousee1f167f2014-03-09 15:24:46 -07002072
Alex Williamson579305f2014-07-03 09:51:43 -06002073 return !pci_for_each_dma_alias(to_pci_dev(dev),
2074 domain_context_mapped_cb, iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002075}
2076
Fenghua Yuf5329592009-08-04 15:09:37 -07002077/* Returns a number of VTD pages, but aligned to MM page size */
2078static inline unsigned long aligned_nrpages(unsigned long host_addr,
2079 size_t size)
2080{
2081 host_addr &= ~PAGE_MASK;
2082 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
2083}
2084
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002085/* Return largest possible superpage level for a given mapping */
2086static inline int hardware_largepage_caps(struct dmar_domain *domain,
2087 unsigned long iov_pfn,
2088 unsigned long phy_pfn,
2089 unsigned long pages)
2090{
2091 int support, level = 1;
2092 unsigned long pfnmerge;
2093
2094 support = domain->iommu_superpage;
2095
2096 /* To use a large page, the virtual *and* physical addresses
2097 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
2098 of them will mean we have to use smaller pages. So just
2099 merge them and check both at once. */
2100 pfnmerge = iov_pfn | phy_pfn;
2101
2102 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
2103 pages >>= VTD_STRIDE_SHIFT;
2104 if (!pages)
2105 break;
2106 pfnmerge >>= VTD_STRIDE_SHIFT;
2107 level++;
2108 support--;
2109 }
2110 return level;
2111}
2112
David Woodhouse9051aa02009-06-29 12:30:54 +01002113static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2114 struct scatterlist *sg, unsigned long phys_pfn,
2115 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01002116{
2117 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01002118 phys_addr_t uninitialized_var(pteval);
Jiang Liucc4f14a2014-11-26 09:42:10 +08002119 unsigned long sg_res = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002120 unsigned int largepage_lvl = 0;
2121 unsigned long lvl_pages = 0;
David Woodhousee1605492009-06-29 11:17:38 +01002122
Jiang Liu162d1b12014-07-11 14:19:35 +08002123 BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1));
David Woodhousee1605492009-06-29 11:17:38 +01002124
2125 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
2126 return -EINVAL;
2127
2128 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
2129
Jiang Liucc4f14a2014-11-26 09:42:10 +08002130 if (!sg) {
2131 sg_res = nr_pages;
David Woodhouse9051aa02009-06-29 12:30:54 +01002132 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
2133 }
2134
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002135 while (nr_pages > 0) {
David Woodhousec85994e2009-07-01 19:21:24 +01002136 uint64_t tmp;
2137
David Woodhousee1605492009-06-29 11:17:38 +01002138 if (!sg_res) {
Fenghua Yuf5329592009-08-04 15:09:37 -07002139 sg_res = aligned_nrpages(sg->offset, sg->length);
David Woodhousee1605492009-06-29 11:17:38 +01002140 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
2141 sg->dma_length = sg->length;
2142 pteval = page_to_phys(sg_page(sg)) | prot;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002143 phys_pfn = pteval >> VTD_PAGE_SHIFT;
David Woodhousee1605492009-06-29 11:17:38 +01002144 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002145
David Woodhousee1605492009-06-29 11:17:38 +01002146 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002147 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
2148
David Woodhouse5cf0a762014-03-19 16:07:49 +00002149 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
David Woodhousee1605492009-06-29 11:17:38 +01002150 if (!pte)
2151 return -ENOMEM;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002152 /* It is large page*/
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002153 if (largepage_lvl > 1) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002154 pteval |= DMA_PTE_LARGE_PAGE;
Jiang Liud41a4ad2014-07-11 14:19:34 +08002155 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2156 /*
2157 * Ensure that old small page tables are
2158 * removed to make room for superpage,
2159 * if they exist.
2160 */
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002161 dma_pte_free_pagetable(domain, iov_pfn,
Jiang Liud41a4ad2014-07-11 14:19:34 +08002162 iov_pfn + lvl_pages - 1);
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002163 } else {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002164 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002165 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002166
David Woodhousee1605492009-06-29 11:17:38 +01002167 }
2168 /* We don't need lock here, nobody else
2169 * touches the iova range
2170 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01002171 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01002172 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01002173 static int dumps = 5;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002174 pr_crit("ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2175 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01002176 if (dumps) {
2177 dumps--;
2178 debug_dma_dump_mappings(NULL);
2179 }
2180 WARN_ON(1);
2181 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002182
2183 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2184
2185 BUG_ON(nr_pages < lvl_pages);
2186 BUG_ON(sg_res < lvl_pages);
2187
2188 nr_pages -= lvl_pages;
2189 iov_pfn += lvl_pages;
2190 phys_pfn += lvl_pages;
2191 pteval += lvl_pages * VTD_PAGE_SIZE;
2192 sg_res -= lvl_pages;
2193
2194 /* If the next PTE would be the first in a new page, then we
2195 need to flush the cache on the entries we've just written.
2196 And then we'll need to recalculate 'pte', so clear it and
2197 let it get set again in the if (!pte) block above.
2198
2199 If we're done (!nr_pages) we need to flush the cache too.
2200
2201 Also if we've been setting superpages, we may need to
2202 recalculate 'pte' and switch back to smaller pages for the
2203 end of the mapping, if the trailing size is not enough to
2204 use another superpage (i.e. sg_res < lvl_pages). */
David Woodhousee1605492009-06-29 11:17:38 +01002205 pte++;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002206 if (!nr_pages || first_pte_in_page(pte) ||
2207 (largepage_lvl > 1 && sg_res < lvl_pages)) {
David Woodhousee1605492009-06-29 11:17:38 +01002208 domain_flush_cache(domain, first_pte,
2209 (void *)pte - (void *)first_pte);
2210 pte = NULL;
2211 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002212
2213 if (!sg_res && nr_pages)
David Woodhousee1605492009-06-29 11:17:38 +01002214 sg = sg_next(sg);
2215 }
2216 return 0;
2217}
2218
David Woodhouse9051aa02009-06-29 12:30:54 +01002219static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2220 struct scatterlist *sg, unsigned long nr_pages,
2221 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002222{
David Woodhouse9051aa02009-06-29 12:30:54 +01002223 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
2224}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002225
David Woodhouse9051aa02009-06-29 12:30:54 +01002226static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2227 unsigned long phys_pfn, unsigned long nr_pages,
2228 int prot)
2229{
2230 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002231}
2232
Weidong Hanc7151a82008-12-08 22:51:37 +08002233static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002234{
Weidong Hanc7151a82008-12-08 22:51:37 +08002235 if (!iommu)
2236 return;
Weidong Han8c11e792008-12-08 15:29:22 +08002237
2238 clear_context_table(iommu, bus, devfn);
2239 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002240 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002241 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002242}
2243
David Woodhouse109b9b02012-05-25 17:43:02 +01002244static inline void unlink_domain_info(struct device_domain_info *info)
2245{
2246 assert_spin_locked(&device_domain_lock);
2247 list_del(&info->link);
2248 list_del(&info->global);
2249 if (info->dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002250 info->dev->archdata.iommu = NULL;
David Woodhouse109b9b02012-05-25 17:43:02 +01002251}
2252
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002253static void domain_remove_dev_info(struct dmar_domain *domain)
2254{
Yijing Wang3a74ca02014-05-20 20:37:47 +08002255 struct device_domain_info *info, *tmp;
Jiang Liufb170fb2014-07-11 14:19:28 +08002256 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002257
2258 spin_lock_irqsave(&device_domain_lock, flags);
Yijing Wang3a74ca02014-05-20 20:37:47 +08002259 list_for_each_entry_safe(info, tmp, &domain->devices, link) {
David Woodhouse109b9b02012-05-25 17:43:02 +01002260 unlink_domain_info(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002261 spin_unlock_irqrestore(&device_domain_lock, flags);
2262
Yu Zhao93a23a72009-05-18 13:51:37 +08002263 iommu_disable_dev_iotlb(info);
David Woodhouse7c7faa12014-03-09 13:33:06 -07002264 iommu_detach_dev(info->iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002265
Jiang Liuab8dfe22014-07-11 14:19:27 +08002266 if (domain_type_is_vm(domain)) {
David Woodhouse7c7faa12014-03-09 13:33:06 -07002267 iommu_detach_dependent_devices(info->iommu, info->dev);
Jiang Liufb170fb2014-07-11 14:19:28 +08002268 domain_detach_iommu(domain, info->iommu);
Jiang Liu92d03cc2014-02-19 14:07:28 +08002269 }
2270
2271 free_devinfo_mem(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002272 spin_lock_irqsave(&device_domain_lock, flags);
2273 }
2274 spin_unlock_irqrestore(&device_domain_lock, flags);
2275}
2276
2277/*
2278 * find_domain
David Woodhouse1525a292014-03-06 16:19:30 +00002279 * Note: we use struct device->archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002280 */
David Woodhouse1525a292014-03-06 16:19:30 +00002281static struct dmar_domain *find_domain(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002282{
2283 struct device_domain_info *info;
2284
2285 /* No lock here, assumes no domain exit in normal case */
David Woodhouse1525a292014-03-06 16:19:30 +00002286 info = dev->archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002287 if (info)
2288 return info->domain;
2289 return NULL;
2290}
2291
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002292static inline struct device_domain_info *
Jiang Liu745f2582014-02-19 14:07:26 +08002293dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2294{
2295 struct device_domain_info *info;
2296
2297 list_for_each_entry(info, &device_domain_list, global)
David Woodhouse41e80dca2014-03-09 13:55:54 -07002298 if (info->iommu->segment == segment && info->bus == bus &&
Jiang Liu745f2582014-02-19 14:07:26 +08002299 info->devfn == devfn)
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002300 return info;
Jiang Liu745f2582014-02-19 14:07:26 +08002301
2302 return NULL;
2303}
2304
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002305static struct dmar_domain *dmar_insert_dev_info(struct intel_iommu *iommu,
David Woodhouse41e80dca2014-03-09 13:55:54 -07002306 int bus, int devfn,
David Woodhouseb718cd32014-03-09 13:11:33 -07002307 struct device *dev,
2308 struct dmar_domain *domain)
Jiang Liu745f2582014-02-19 14:07:26 +08002309{
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002310 struct dmar_domain *found = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002311 struct device_domain_info *info;
2312 unsigned long flags;
2313
2314 info = alloc_devinfo_mem();
2315 if (!info)
David Woodhouseb718cd32014-03-09 13:11:33 -07002316 return NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002317
Jiang Liu745f2582014-02-19 14:07:26 +08002318 info->bus = bus;
2319 info->devfn = devfn;
2320 info->dev = dev;
2321 info->domain = domain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002322 info->iommu = iommu;
Jiang Liu745f2582014-02-19 14:07:26 +08002323
2324 spin_lock_irqsave(&device_domain_lock, flags);
2325 if (dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002326 found = find_domain(dev);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002327 else {
2328 struct device_domain_info *info2;
David Woodhouse41e80dca2014-03-09 13:55:54 -07002329 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002330 if (info2)
2331 found = info2->domain;
2332 }
Jiang Liu745f2582014-02-19 14:07:26 +08002333 if (found) {
2334 spin_unlock_irqrestore(&device_domain_lock, flags);
2335 free_devinfo_mem(info);
David Woodhouseb718cd32014-03-09 13:11:33 -07002336 /* Caller must free the original domain */
2337 return found;
Jiang Liu745f2582014-02-19 14:07:26 +08002338 }
2339
David Woodhouseb718cd32014-03-09 13:11:33 -07002340 list_add(&info->link, &domain->devices);
2341 list_add(&info->global, &device_domain_list);
2342 if (dev)
2343 dev->archdata.iommu = info;
2344 spin_unlock_irqrestore(&device_domain_lock, flags);
2345
2346 return domain;
Jiang Liu745f2582014-02-19 14:07:26 +08002347}
2348
Alex Williamson579305f2014-07-03 09:51:43 -06002349static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque)
2350{
2351 *(u16 *)opaque = alias;
2352 return 0;
2353}
2354
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002355/* domain is initialized */
David Woodhouse146922e2014-03-09 15:44:17 -07002356static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002357{
Alex Williamson579305f2014-07-03 09:51:43 -06002358 struct dmar_domain *domain, *tmp;
2359 struct intel_iommu *iommu;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002360 struct device_domain_info *info;
Alex Williamson579305f2014-07-03 09:51:43 -06002361 u16 dma_alias;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002362 unsigned long flags;
Yijing Wangaa4d0662014-05-26 20:14:06 +08002363 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002364
David Woodhouse146922e2014-03-09 15:44:17 -07002365 domain = find_domain(dev);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002366 if (domain)
2367 return domain;
2368
David Woodhouse146922e2014-03-09 15:44:17 -07002369 iommu = device_to_iommu(dev, &bus, &devfn);
2370 if (!iommu)
Alex Williamson579305f2014-07-03 09:51:43 -06002371 return NULL;
2372
2373 if (dev_is_pci(dev)) {
2374 struct pci_dev *pdev = to_pci_dev(dev);
2375
2376 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2377
2378 spin_lock_irqsave(&device_domain_lock, flags);
2379 info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus),
2380 PCI_BUS_NUM(dma_alias),
2381 dma_alias & 0xff);
2382 if (info) {
2383 iommu = info->iommu;
2384 domain = info->domain;
2385 }
2386 spin_unlock_irqrestore(&device_domain_lock, flags);
2387
2388 /* DMA alias already has a domain, uses it */
2389 if (info)
2390 goto found_domain;
2391 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002392
David Woodhouse146922e2014-03-09 15:44:17 -07002393 /* Allocate and initialize new domain for the device */
Jiang Liuab8dfe22014-07-11 14:19:27 +08002394 domain = alloc_domain(0);
Jiang Liu745f2582014-02-19 14:07:26 +08002395 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002396 return NULL;
Joerg Roedelaf1089c2015-07-21 15:45:19 +02002397 if (iommu_attach_domain(domain, iommu) < 0) {
Alex Williamson2fe9723d2011-03-04 14:52:30 -07002398 free_domain_mem(domain);
Alex Williamson579305f2014-07-03 09:51:43 -06002399 return NULL;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002400 }
Jiang Liufb170fb2014-07-11 14:19:28 +08002401 domain_attach_iommu(domain, iommu);
Alex Williamson579305f2014-07-03 09:51:43 -06002402 if (domain_init(domain, gaw)) {
2403 domain_exit(domain);
2404 return NULL;
2405 }
2406
2407 /* register PCI DMA alias device */
2408 if (dev_is_pci(dev)) {
2409 tmp = dmar_insert_dev_info(iommu, PCI_BUS_NUM(dma_alias),
2410 dma_alias & 0xff, NULL, domain);
2411
2412 if (!tmp || tmp != domain) {
2413 domain_exit(domain);
2414 domain = tmp;
2415 }
2416
David Woodhouseb718cd32014-03-09 13:11:33 -07002417 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002418 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002419 }
2420
2421found_domain:
Alex Williamson579305f2014-07-03 09:51:43 -06002422 tmp = dmar_insert_dev_info(iommu, bus, devfn, dev, domain);
2423
2424 if (!tmp || tmp != domain) {
2425 domain_exit(domain);
2426 domain = tmp;
2427 }
David Woodhouseb718cd32014-03-09 13:11:33 -07002428
2429 return domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002430}
2431
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002432static int iommu_identity_mapping;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002433#define IDENTMAP_ALL 1
2434#define IDENTMAP_GFX 2
2435#define IDENTMAP_AZALIA 4
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002436
David Woodhouseb2132032009-06-26 18:50:28 +01002437static int iommu_domain_identity_map(struct dmar_domain *domain,
2438 unsigned long long start,
2439 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002440{
David Woodhousec5395d52009-06-28 16:35:56 +01002441 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2442 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002443
David Woodhousec5395d52009-06-28 16:35:56 +01002444 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2445 dma_to_mm_pfn(last_vpfn))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002446 pr_err("Reserving iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01002447 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002448 }
2449
Joerg Roedelaf1089c2015-07-21 15:45:19 +02002450 pr_debug("Mapping reserved region %llx-%llx\n", start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002451 /*
2452 * RMRR range might have overlap with physical memory range,
2453 * clear it first
2454 */
David Woodhousec5395d52009-06-28 16:35:56 +01002455 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002456
David Woodhousec5395d52009-06-28 16:35:56 +01002457 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
2458 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01002459 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01002460}
2461
David Woodhouse0b9d9752014-03-09 15:48:15 -07002462static int iommu_prepare_identity_map(struct device *dev,
David Woodhouseb2132032009-06-26 18:50:28 +01002463 unsigned long long start,
2464 unsigned long long end)
2465{
2466 struct dmar_domain *domain;
2467 int ret;
2468
David Woodhouse0b9d9752014-03-09 15:48:15 -07002469 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01002470 if (!domain)
2471 return -ENOMEM;
2472
David Woodhouse19943b02009-08-04 16:19:20 +01002473 /* For _hardware_ passthrough, don't bother. But for software
2474 passthrough, we do it anyway -- it may indicate a memory
2475 range which is reserved in E820, so which didn't get set
2476 up to start with in si_domain */
2477 if (domain == si_domain && hw_pass_through) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002478 pr_warn("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
2479 dev_name(dev), start, end);
David Woodhouse19943b02009-08-04 16:19:20 +01002480 return 0;
2481 }
2482
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002483 pr_info("Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
2484 dev_name(dev), start, end);
2485
David Woodhouse5595b522009-12-02 09:21:55 +00002486 if (end < start) {
2487 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2488 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2489 dmi_get_system_info(DMI_BIOS_VENDOR),
2490 dmi_get_system_info(DMI_BIOS_VERSION),
2491 dmi_get_system_info(DMI_PRODUCT_VERSION));
2492 ret = -EIO;
2493 goto error;
2494 }
2495
David Woodhouse2ff729f2009-08-26 14:25:41 +01002496 if (end >> agaw_to_width(domain->agaw)) {
2497 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2498 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2499 agaw_to_width(domain->agaw),
2500 dmi_get_system_info(DMI_BIOS_VENDOR),
2501 dmi_get_system_info(DMI_BIOS_VERSION),
2502 dmi_get_system_info(DMI_PRODUCT_VERSION));
2503 ret = -EIO;
2504 goto error;
2505 }
David Woodhouse19943b02009-08-04 16:19:20 +01002506
David Woodhouseb2132032009-06-26 18:50:28 +01002507 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002508 if (ret)
2509 goto error;
2510
2511 /* context entry init */
Joerg Roedel28ccce02015-07-21 14:45:31 +02002512 ret = domain_context_mapping(domain, dev);
David Woodhouseb2132032009-06-26 18:50:28 +01002513 if (ret)
2514 goto error;
2515
2516 return 0;
2517
2518 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002519 domain_exit(domain);
2520 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002521}
2522
2523static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
David Woodhouse0b9d9752014-03-09 15:48:15 -07002524 struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002525{
David Woodhouse0b9d9752014-03-09 15:48:15 -07002526 if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002527 return 0;
David Woodhouse0b9d9752014-03-09 15:48:15 -07002528 return iommu_prepare_identity_map(dev, rmrr->base_address,
2529 rmrr->end_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002530}
2531
Suresh Siddhad3f13812011-08-23 17:05:25 -07002532#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002533static inline void iommu_prepare_isa(void)
2534{
2535 struct pci_dev *pdev;
2536 int ret;
2537
2538 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2539 if (!pdev)
2540 return;
2541
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002542 pr_info("Prepare 0-16MiB unity mapping for LPC\n");
David Woodhouse0b9d9752014-03-09 15:48:15 -07002543 ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002544
2545 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002546 pr_err("Failed to create 0-16MiB identity map - floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002547
Yijing Wang9b27e822014-05-20 20:37:52 +08002548 pci_dev_put(pdev);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002549}
2550#else
2551static inline void iommu_prepare_isa(void)
2552{
2553 return;
2554}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002555#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002556
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002557static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002558
Matt Kraai071e1372009-08-23 22:30:22 -07002559static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002560{
David Woodhousec7ab48d2009-06-26 19:10:36 +01002561 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002562
Jiang Liuab8dfe22014-07-11 14:19:27 +08002563 si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002564 if (!si_domain)
2565 return -EFAULT;
2566
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002567 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2568 domain_exit(si_domain);
2569 return -EFAULT;
2570 }
2571
Joerg Roedel0dc79712015-07-21 15:40:06 +02002572 pr_debug("Identity mapping domain allocated\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002573
David Woodhouse19943b02009-08-04 16:19:20 +01002574 if (hw)
2575 return 0;
2576
David Woodhousec7ab48d2009-06-26 19:10:36 +01002577 for_each_online_node(nid) {
Tejun Heod4bbf7e2011-11-28 09:46:22 -08002578 unsigned long start_pfn, end_pfn;
2579 int i;
2580
2581 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2582 ret = iommu_domain_identity_map(si_domain,
2583 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2584 if (ret)
2585 return ret;
2586 }
David Woodhousec7ab48d2009-06-26 19:10:36 +01002587 }
2588
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002589 return 0;
2590}
2591
David Woodhouse9b226622014-03-09 14:03:28 -07002592static int identity_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002593{
2594 struct device_domain_info *info;
2595
2596 if (likely(!iommu_identity_mapping))
2597 return 0;
2598
David Woodhouse9b226622014-03-09 14:03:28 -07002599 info = dev->archdata.iommu;
Mike Traviscb452a42011-05-28 13:15:03 -05002600 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2601 return (info->domain == si_domain);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002602
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002603 return 0;
2604}
2605
Joerg Roedel28ccce02015-07-21 14:45:31 +02002606static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002607{
David Woodhouse0ac72662014-03-09 13:19:22 -07002608 struct dmar_domain *ndomain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002609 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002610 u8 bus, devfn;
David Woodhouse5fe60f42009-08-09 10:53:41 +01002611 int ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002612
David Woodhouse5913c9b2014-03-09 16:27:31 -07002613 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002614 if (!iommu)
2615 return -ENODEV;
2616
David Woodhouse5913c9b2014-03-09 16:27:31 -07002617 ndomain = dmar_insert_dev_info(iommu, bus, devfn, dev, domain);
David Woodhouse0ac72662014-03-09 13:19:22 -07002618 if (ndomain != domain)
2619 return -EBUSY;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002620
Joerg Roedel28ccce02015-07-21 14:45:31 +02002621 ret = domain_context_mapping(domain, dev);
David Woodhousee2ad23d2012-05-25 17:42:54 +01002622 if (ret) {
David Woodhouse5913c9b2014-03-09 16:27:31 -07002623 domain_remove_one_dev_info(domain, dev);
David Woodhousee2ad23d2012-05-25 17:42:54 +01002624 return ret;
2625 }
2626
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002627 return 0;
2628}
2629
David Woodhouse0b9d9752014-03-09 15:48:15 -07002630static bool device_has_rmrr(struct device *dev)
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002631{
2632 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002633 struct device *tmp;
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002634 int i;
2635
Jiang Liu0e242612014-02-19 14:07:34 +08002636 rcu_read_lock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002637 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002638 /*
2639 * Return TRUE if this RMRR contains the device that
2640 * is passed in.
2641 */
2642 for_each_active_dev_scope(rmrr->devices,
2643 rmrr->devices_cnt, i, tmp)
David Woodhouse0b9d9752014-03-09 15:48:15 -07002644 if (tmp == dev) {
Jiang Liu0e242612014-02-19 14:07:34 +08002645 rcu_read_unlock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002646 return true;
Jiang Liub683b232014-02-19 14:07:32 +08002647 }
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002648 }
Jiang Liu0e242612014-02-19 14:07:34 +08002649 rcu_read_unlock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002650 return false;
2651}
2652
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002653/*
2654 * There are a couple cases where we need to restrict the functionality of
2655 * devices associated with RMRRs. The first is when evaluating a device for
2656 * identity mapping because problems exist when devices are moved in and out
2657 * of domains and their respective RMRR information is lost. This means that
2658 * a device with associated RMRRs will never be in a "passthrough" domain.
2659 * The second is use of the device through the IOMMU API. This interface
2660 * expects to have full control of the IOVA space for the device. We cannot
2661 * satisfy both the requirement that RMRR access is maintained and have an
2662 * unencumbered IOVA space. We also have no ability to quiesce the device's
2663 * use of the RMRR space or even inform the IOMMU API user of the restriction.
2664 * We therefore prevent devices associated with an RMRR from participating in
2665 * the IOMMU API, which eliminates them from device assignment.
2666 *
2667 * In both cases we assume that PCI USB devices with RMRRs have them largely
2668 * for historical reasons and that the RMRR space is not actively used post
2669 * boot. This exclusion may change if vendors begin to abuse it.
David Woodhouse18436af2015-03-25 15:05:47 +00002670 *
2671 * The same exception is made for graphics devices, with the requirement that
2672 * any use of the RMRR regions will be torn down before assigning the device
2673 * to a guest.
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002674 */
2675static bool device_is_rmrr_locked(struct device *dev)
2676{
2677 if (!device_has_rmrr(dev))
2678 return false;
2679
2680 if (dev_is_pci(dev)) {
2681 struct pci_dev *pdev = to_pci_dev(dev);
2682
David Woodhouse18436af2015-03-25 15:05:47 +00002683 if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002684 return false;
2685 }
2686
2687 return true;
2688}
2689
David Woodhouse3bdb2592014-03-09 16:03:08 -07002690static int iommu_should_identity_map(struct device *dev, int startup)
David Woodhouse6941af22009-07-04 18:24:27 +01002691{
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002692
David Woodhouse3bdb2592014-03-09 16:03:08 -07002693 if (dev_is_pci(dev)) {
2694 struct pci_dev *pdev = to_pci_dev(dev);
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002695
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002696 if (device_is_rmrr_locked(dev))
David Woodhouse3bdb2592014-03-09 16:03:08 -07002697 return 0;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002698
David Woodhouse3bdb2592014-03-09 16:03:08 -07002699 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2700 return 1;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002701
David Woodhouse3bdb2592014-03-09 16:03:08 -07002702 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2703 return 1;
2704
2705 if (!(iommu_identity_mapping & IDENTMAP_ALL))
2706 return 0;
2707
2708 /*
2709 * We want to start off with all devices in the 1:1 domain, and
2710 * take them out later if we find they can't access all of memory.
2711 *
2712 * However, we can't do this for PCI devices behind bridges,
2713 * because all PCI devices behind the same bridge will end up
2714 * with the same source-id on their transactions.
2715 *
2716 * Practically speaking, we can't change things around for these
2717 * devices at run-time, because we can't be sure there'll be no
2718 * DMA transactions in flight for any of their siblings.
2719 *
2720 * So PCI devices (unless they're on the root bus) as well as
2721 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2722 * the 1:1 domain, just in _case_ one of their siblings turns out
2723 * not to be able to map all of memory.
2724 */
2725 if (!pci_is_pcie(pdev)) {
2726 if (!pci_is_root_bus(pdev->bus))
2727 return 0;
2728 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2729 return 0;
2730 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
2731 return 0;
2732 } else {
2733 if (device_has_rmrr(dev))
2734 return 0;
2735 }
David Woodhouse6941af22009-07-04 18:24:27 +01002736
David Woodhouse3dfc8132009-07-04 19:11:08 +01002737 /*
David Woodhouse3dfc8132009-07-04 19:11:08 +01002738 * At boot time, we don't yet know if devices will be 64-bit capable.
David Woodhouse3bdb2592014-03-09 16:03:08 -07002739 * Assume that they will — if they turn out not to be, then we can
David Woodhouse3dfc8132009-07-04 19:11:08 +01002740 * take them out of the 1:1 domain later.
2741 */
Chris Wright8fcc5372011-05-28 13:15:02 -05002742 if (!startup) {
2743 /*
2744 * If the device's dma_mask is less than the system's memory
2745 * size then this is not a candidate for identity mapping.
2746 */
David Woodhouse3bdb2592014-03-09 16:03:08 -07002747 u64 dma_mask = *dev->dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002748
David Woodhouse3bdb2592014-03-09 16:03:08 -07002749 if (dev->coherent_dma_mask &&
2750 dev->coherent_dma_mask < dma_mask)
2751 dma_mask = dev->coherent_dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002752
David Woodhouse3bdb2592014-03-09 16:03:08 -07002753 return dma_mask >= dma_get_required_mask(dev);
Chris Wright8fcc5372011-05-28 13:15:02 -05002754 }
David Woodhouse6941af22009-07-04 18:24:27 +01002755
2756 return 1;
2757}
2758
David Woodhousecf04eee2014-03-21 16:49:04 +00002759static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw)
2760{
2761 int ret;
2762
2763 if (!iommu_should_identity_map(dev, 1))
2764 return 0;
2765
Joerg Roedel28ccce02015-07-21 14:45:31 +02002766 ret = domain_add_dev_info(si_domain, dev);
David Woodhousecf04eee2014-03-21 16:49:04 +00002767 if (!ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002768 pr_info("%s identity mapping for device %s\n",
2769 hw ? "Hardware" : "Software", dev_name(dev));
David Woodhousecf04eee2014-03-21 16:49:04 +00002770 else if (ret == -ENODEV)
2771 /* device not associated with an iommu */
2772 ret = 0;
2773
2774 return ret;
2775}
2776
2777
Matt Kraai071e1372009-08-23 22:30:22 -07002778static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002779{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002780 struct pci_dev *pdev = NULL;
David Woodhousecf04eee2014-03-21 16:49:04 +00002781 struct dmar_drhd_unit *drhd;
2782 struct intel_iommu *iommu;
2783 struct device *dev;
2784 int i;
2785 int ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002786
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002787 for_each_pci_dev(pdev) {
David Woodhousecf04eee2014-03-21 16:49:04 +00002788 ret = dev_prepare_static_identity_mapping(&pdev->dev, hw);
2789 if (ret)
2790 return ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002791 }
2792
David Woodhousecf04eee2014-03-21 16:49:04 +00002793 for_each_active_iommu(iommu, drhd)
2794 for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
2795 struct acpi_device_physical_node *pn;
2796 struct acpi_device *adev;
2797
2798 if (dev->bus != &acpi_bus_type)
2799 continue;
Joerg Roedel86080cc2015-06-12 12:27:16 +02002800
David Woodhousecf04eee2014-03-21 16:49:04 +00002801 adev= to_acpi_device(dev);
2802 mutex_lock(&adev->physical_node_lock);
2803 list_for_each_entry(pn, &adev->physical_node_list, node) {
2804 ret = dev_prepare_static_identity_mapping(pn->dev, hw);
2805 if (ret)
2806 break;
2807 }
2808 mutex_unlock(&adev->physical_node_lock);
2809 if (ret)
2810 return ret;
2811 }
2812
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002813 return 0;
2814}
2815
Jiang Liuffebeb42014-11-09 22:48:02 +08002816static void intel_iommu_init_qi(struct intel_iommu *iommu)
2817{
2818 /*
2819 * Start from the sane iommu hardware state.
2820 * If the queued invalidation is already initialized by us
2821 * (for example, while enabling interrupt-remapping) then
2822 * we got the things already rolling from a sane state.
2823 */
2824 if (!iommu->qi) {
2825 /*
2826 * Clear any previous faults.
2827 */
2828 dmar_fault(-1, iommu);
2829 /*
2830 * Disable queued invalidation if supported and already enabled
2831 * before OS handover.
2832 */
2833 dmar_disable_qi(iommu);
2834 }
2835
2836 if (dmar_enable_qi(iommu)) {
2837 /*
2838 * Queued Invalidate not enabled, use Register Based Invalidate
2839 */
2840 iommu->flush.flush_context = __iommu_flush_context;
2841 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002842 pr_info("%s: Using Register based invalidation\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08002843 iommu->name);
2844 } else {
2845 iommu->flush.flush_context = qi_flush_context;
2846 iommu->flush.flush_iotlb = qi_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002847 pr_info("%s: Using Queued invalidation\n", iommu->name);
Jiang Liuffebeb42014-11-09 22:48:02 +08002848 }
2849}
2850
Joerg Roedel091d42e2015-06-12 11:56:10 +02002851static int copy_context_table(struct intel_iommu *iommu,
2852 struct root_entry *old_re,
2853 struct context_entry **tbl,
2854 int bus, bool ext)
2855{
2856 struct context_entry *old_ce = NULL, *new_ce = NULL, ce;
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002857 int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002858 phys_addr_t old_ce_phys;
2859
2860 tbl_idx = ext ? bus * 2 : bus;
2861
2862 for (devfn = 0; devfn < 256; devfn++) {
2863 /* First calculate the correct index */
2864 idx = (ext ? devfn * 2 : devfn) % 256;
2865
2866 if (idx == 0) {
2867 /* First save what we may have and clean up */
2868 if (new_ce) {
2869 tbl[tbl_idx] = new_ce;
2870 __iommu_flush_cache(iommu, new_ce,
2871 VTD_PAGE_SIZE);
2872 pos = 1;
2873 }
2874
2875 if (old_ce)
2876 iounmap(old_ce);
2877
2878 ret = 0;
2879 if (devfn < 0x80)
2880 old_ce_phys = root_entry_lctp(old_re);
2881 else
2882 old_ce_phys = root_entry_uctp(old_re);
2883
2884 if (!old_ce_phys) {
2885 if (ext && devfn == 0) {
2886 /* No LCTP, try UCTP */
2887 devfn = 0x7f;
2888 continue;
2889 } else {
2890 goto out;
2891 }
2892 }
2893
2894 ret = -ENOMEM;
2895 old_ce = ioremap_cache(old_ce_phys, PAGE_SIZE);
2896 if (!old_ce)
2897 goto out;
2898
2899 new_ce = alloc_pgtable_page(iommu->node);
2900 if (!new_ce)
2901 goto out_unmap;
2902
2903 ret = 0;
2904 }
2905
2906 /* Now copy the context entry */
2907 ce = old_ce[idx];
2908
Joerg Roedelcf484d02015-06-12 12:21:46 +02002909 if (!__context_present(&ce))
Joerg Roedel091d42e2015-06-12 11:56:10 +02002910 continue;
2911
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002912 did = context_domain_id(&ce);
2913 if (did >= 0 && did < cap_ndoms(iommu->cap))
2914 set_bit(did, iommu->domain_ids);
2915
Joerg Roedelcf484d02015-06-12 12:21:46 +02002916 /*
2917 * We need a marker for copied context entries. This
2918 * marker needs to work for the old format as well as
2919 * for extended context entries.
2920 *
2921 * Bit 67 of the context entry is used. In the old
2922 * format this bit is available to software, in the
2923 * extended format it is the PGE bit, but PGE is ignored
2924 * by HW if PASIDs are disabled (and thus still
2925 * available).
2926 *
2927 * So disable PASIDs first and then mark the entry
2928 * copied. This means that we don't copy PASID
2929 * translations from the old kernel, but this is fine as
2930 * faults there are not fatal.
2931 */
2932 context_clear_pasid_enable(&ce);
2933 context_set_copied(&ce);
2934
Joerg Roedel091d42e2015-06-12 11:56:10 +02002935 new_ce[idx] = ce;
2936 }
2937
2938 tbl[tbl_idx + pos] = new_ce;
2939
2940 __iommu_flush_cache(iommu, new_ce, VTD_PAGE_SIZE);
2941
2942out_unmap:
2943 iounmap(old_ce);
2944
2945out:
2946 return ret;
2947}
2948
2949static int copy_translation_tables(struct intel_iommu *iommu)
2950{
2951 struct context_entry **ctxt_tbls;
2952 struct root_entry *old_rt;
2953 phys_addr_t old_rt_phys;
2954 int ctxt_table_entries;
2955 unsigned long flags;
2956 u64 rtaddr_reg;
2957 int bus, ret;
Joerg Roedelc3361f22015-06-12 12:39:25 +02002958 bool new_ext, ext;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002959
2960 rtaddr_reg = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
2961 ext = !!(rtaddr_reg & DMA_RTADDR_RTT);
Joerg Roedelc3361f22015-06-12 12:39:25 +02002962 new_ext = !!ecap_ecs(iommu->ecap);
2963
2964 /*
2965 * The RTT bit can only be changed when translation is disabled,
2966 * but disabling translation means to open a window for data
2967 * corruption. So bail out and don't copy anything if we would
2968 * have to change the bit.
2969 */
2970 if (new_ext != ext)
2971 return -EINVAL;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002972
2973 old_rt_phys = rtaddr_reg & VTD_PAGE_MASK;
2974 if (!old_rt_phys)
2975 return -EINVAL;
2976
2977 old_rt = ioremap_cache(old_rt_phys, PAGE_SIZE);
2978 if (!old_rt)
2979 return -ENOMEM;
2980
2981 /* This is too big for the stack - allocate it from slab */
2982 ctxt_table_entries = ext ? 512 : 256;
2983 ret = -ENOMEM;
2984 ctxt_tbls = kzalloc(ctxt_table_entries * sizeof(void *), GFP_KERNEL);
2985 if (!ctxt_tbls)
2986 goto out_unmap;
2987
2988 for (bus = 0; bus < 256; bus++) {
2989 ret = copy_context_table(iommu, &old_rt[bus],
2990 ctxt_tbls, bus, ext);
2991 if (ret) {
2992 pr_err("%s: Failed to copy context table for bus %d\n",
2993 iommu->name, bus);
2994 continue;
2995 }
2996 }
2997
2998 spin_lock_irqsave(&iommu->lock, flags);
2999
3000 /* Context tables are copied, now write them to the root_entry table */
3001 for (bus = 0; bus < 256; bus++) {
3002 int idx = ext ? bus * 2 : bus;
3003 u64 val;
3004
3005 if (ctxt_tbls[idx]) {
3006 val = virt_to_phys(ctxt_tbls[idx]) | 1;
3007 iommu->root_entry[bus].lo = val;
3008 }
3009
3010 if (!ext || !ctxt_tbls[idx + 1])
3011 continue;
3012
3013 val = virt_to_phys(ctxt_tbls[idx + 1]) | 1;
3014 iommu->root_entry[bus].hi = val;
3015 }
3016
3017 spin_unlock_irqrestore(&iommu->lock, flags);
3018
3019 kfree(ctxt_tbls);
3020
3021 __iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
3022
3023 ret = 0;
3024
3025out_unmap:
3026 iounmap(old_rt);
3027
3028 return ret;
3029}
3030
Joseph Cihulab7792602011-05-03 00:08:37 -07003031static int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003032{
3033 struct dmar_drhd_unit *drhd;
3034 struct dmar_rmrr_unit *rmrr;
Joerg Roedela87f4912015-06-12 12:32:54 +02003035 bool copied_tables = false;
David Woodhouse832bd852014-03-07 15:08:36 +00003036 struct device *dev;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003037 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07003038 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003039
3040 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003041 * for each drhd
3042 * allocate root
3043 * initialize and program root entry to not present
3044 * endfor
3045 */
3046 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08003047 /*
3048 * lock not needed as this is only incremented in the single
3049 * threaded kernel __init code path all other access are read
3050 * only
3051 */
Jiang Liu78d8e702014-11-09 22:47:57 +08003052 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) {
Mike Travis1b198bb2012-03-05 15:05:16 -08003053 g_num_of_iommus++;
3054 continue;
3055 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003056 pr_err_once("Exceeded %d IOMMUs\n", DMAR_UNITS_SUPPORTED);
mark gross5e0d2a62008-03-04 15:22:08 -08003057 }
3058
Jiang Liuffebeb42014-11-09 22:48:02 +08003059 /* Preallocate enough resources for IOMMU hot-addition */
3060 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED)
3061 g_num_of_iommus = DMAR_UNITS_SUPPORTED;
3062
Weidong Hand9630fe2008-12-08 11:06:32 +08003063 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
3064 GFP_KERNEL);
3065 if (!g_iommus) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003066 pr_err("Allocating global iommu array failed\n");
Weidong Hand9630fe2008-12-08 11:06:32 +08003067 ret = -ENOMEM;
3068 goto error;
3069 }
3070
mark gross80b20dd2008-04-18 13:53:58 -07003071 deferred_flush = kzalloc(g_num_of_iommus *
3072 sizeof(struct deferred_flush_tables), GFP_KERNEL);
3073 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08003074 ret = -ENOMEM;
Jiang Liu989d51f2014-02-19 14:07:21 +08003075 goto free_g_iommus;
mark gross5e0d2a62008-03-04 15:22:08 -08003076 }
3077
Jiang Liu7c919772014-01-06 14:18:18 +08003078 for_each_active_iommu(iommu, drhd) {
Weidong Hand9630fe2008-12-08 11:06:32 +08003079 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003080
Joerg Roedelb63d80d2015-06-12 09:14:34 +02003081 intel_iommu_init_qi(iommu);
3082
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003083 ret = iommu_init_domains(iommu);
3084 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003085 goto free_iommu;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003086
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003087 init_translation_status(iommu);
3088
Joerg Roedel091d42e2015-06-12 11:56:10 +02003089 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
3090 iommu_disable_translation(iommu);
3091 clear_translation_pre_enabled(iommu);
3092 pr_warn("Translation was enabled for %s but we are not in kdump mode\n",
3093 iommu->name);
3094 }
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003095
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003096 /*
3097 * TBD:
3098 * we could share the same root & context tables
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003099 * among all IOMMU's. Need to Split it later.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003100 */
3101 ret = iommu_alloc_root_entry(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003102 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003103 goto free_iommu;
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003104
Joerg Roedel091d42e2015-06-12 11:56:10 +02003105 if (translation_pre_enabled(iommu)) {
3106 pr_info("Translation already enabled - trying to copy translation structures\n");
3107
3108 ret = copy_translation_tables(iommu);
3109 if (ret) {
3110 /*
3111 * We found the IOMMU with translation
3112 * enabled - but failed to copy over the
3113 * old root-entry table. Try to proceed
3114 * by disabling translation now and
3115 * allocating a clean root-entry table.
3116 * This might cause DMAR faults, but
3117 * probably the dump will still succeed.
3118 */
3119 pr_err("Failed to copy translation tables from previous kernel for %s\n",
3120 iommu->name);
3121 iommu_disable_translation(iommu);
3122 clear_translation_pre_enabled(iommu);
3123 } else {
3124 pr_info("Copied translation tables from previous kernel for %s\n",
3125 iommu->name);
Joerg Roedela87f4912015-06-12 12:32:54 +02003126 copied_tables = true;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003127 }
3128 }
3129
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003130 iommu_flush_write_buffer(iommu);
3131 iommu_set_root_entry(iommu);
3132 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
3133 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3134
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003135 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01003136 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003137 }
3138
David Woodhouse19943b02009-08-04 16:19:20 +01003139 if (iommu_pass_through)
David Woodhousee0fc7e02009-09-30 09:12:17 -07003140 iommu_identity_mapping |= IDENTMAP_ALL;
3141
Suresh Siddhad3f13812011-08-23 17:05:25 -07003142#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
David Woodhousee0fc7e02009-09-30 09:12:17 -07003143 iommu_identity_mapping |= IDENTMAP_GFX;
David Woodhouse19943b02009-08-04 16:19:20 +01003144#endif
David Woodhousee0fc7e02009-09-30 09:12:17 -07003145
Joerg Roedel86080cc2015-06-12 12:27:16 +02003146 if (iommu_identity_mapping) {
3147 ret = si_domain_init(hw_pass_through);
3148 if (ret)
3149 goto free_iommu;
3150 }
3151
David Woodhousee0fc7e02009-09-30 09:12:17 -07003152 check_tylersburg_isoch();
3153
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003154 /*
Joerg Roedela87f4912015-06-12 12:32:54 +02003155 * If we copied translations from a previous kernel in the kdump
3156 * case, we can not assign the devices to domains now, as that
3157 * would eliminate the old mappings. So skip this part and defer
3158 * the assignment to device driver initialization time.
3159 */
3160 if (copied_tables)
3161 goto domains_done;
3162
3163 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003164 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003165 * identity mappings for rmrr, gfx, and isa and may fall back to static
3166 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003167 */
David Woodhouse19943b02009-08-04 16:19:20 +01003168 if (iommu_identity_mapping) {
3169 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
3170 if (ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003171 pr_crit("Failed to setup IOMMU pass-through\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08003172 goto free_iommu;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003173 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003174 }
David Woodhouse19943b02009-08-04 16:19:20 +01003175 /*
3176 * For each rmrr
3177 * for each dev attached to rmrr
3178 * do
3179 * locate drhd for dev, alloc domain for dev
3180 * allocate free domain
3181 * allocate page table entries for rmrr
3182 * if context not allocated for bus
3183 * allocate and init context
3184 * set present in root table for this bus
3185 * init context with domain, translation etc
3186 * endfor
3187 * endfor
3188 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003189 pr_info("Setting RMRR:\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003190 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08003191 /* some BIOS lists non-exist devices in DMAR table. */
3192 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
David Woodhouse832bd852014-03-07 15:08:36 +00003193 i, dev) {
David Woodhouse0b9d9752014-03-09 15:48:15 -07003194 ret = iommu_prepare_rmrr_dev(rmrr, dev);
David Woodhouse19943b02009-08-04 16:19:20 +01003195 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003196 pr_err("Mapping reserved region failed\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003197 }
3198 }
3199
3200 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07003201
Joerg Roedela87f4912015-06-12 12:32:54 +02003202domains_done:
3203
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003204 /*
3205 * for each drhd
3206 * enable fault log
3207 * global invalidate context cache
3208 * global invalidate iotlb
3209 * enable translation
3210 */
Jiang Liu7c919772014-01-06 14:18:18 +08003211 for_each_iommu(iommu, drhd) {
Joseph Cihula51a63e62011-03-21 11:04:24 -07003212 if (drhd->ignored) {
3213 /*
3214 * we always have to disable PMRs or DMA may fail on
3215 * this device
3216 */
3217 if (force_on)
Jiang Liu7c919772014-01-06 14:18:18 +08003218 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003219 continue;
Joseph Cihula51a63e62011-03-21 11:04:24 -07003220 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003221
3222 iommu_flush_write_buffer(iommu);
3223
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003224 ret = dmar_set_interrupt(iommu);
3225 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003226 goto free_iommu;
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003227
Joerg Roedel8939ddf2015-06-12 14:40:01 +02003228 if (!translation_pre_enabled(iommu))
3229 iommu_enable_translation(iommu);
3230
David Woodhouseb94996c2009-09-19 15:28:12 -07003231 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003232 }
3233
3234 return 0;
Jiang Liu989d51f2014-02-19 14:07:21 +08003235
3236free_iommu:
Jiang Liuffebeb42014-11-09 22:48:02 +08003237 for_each_active_iommu(iommu, drhd) {
3238 disable_dmar_iommu(iommu);
Jiang Liua868e6b2014-01-06 14:18:20 +08003239 free_dmar_iommu(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003240 }
Jiang Liu9bdc5312014-01-06 14:18:27 +08003241 kfree(deferred_flush);
Jiang Liu989d51f2014-02-19 14:07:21 +08003242free_g_iommus:
Weidong Hand9630fe2008-12-08 11:06:32 +08003243 kfree(g_iommus);
Jiang Liu989d51f2014-02-19 14:07:21 +08003244error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003245 return ret;
3246}
3247
David Woodhouse5a5e02a2009-07-04 09:35:44 +01003248/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01003249static struct iova *intel_alloc_iova(struct device *dev,
3250 struct dmar_domain *domain,
3251 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003252{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003253 struct iova *iova = NULL;
3254
David Woodhouse875764d2009-06-28 21:20:51 +01003255 /* Restrict dma_mask to the width that the iommu can handle */
3256 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
3257
3258 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003259 /*
3260 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07003261 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08003262 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003263 */
David Woodhouse875764d2009-06-28 21:20:51 +01003264 iova = alloc_iova(&domain->iovad, nrpages,
3265 IOVA_PFN(DMA_BIT_MASK(32)), 1);
3266 if (iova)
3267 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003268 }
David Woodhouse875764d2009-06-28 21:20:51 +01003269 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
3270 if (unlikely(!iova)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003271 pr_err("Allocating %ld-page iova for %s failed",
David Woodhouse207e3592014-03-09 16:12:32 -07003272 nrpages, dev_name(dev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003273 return NULL;
3274 }
3275
3276 return iova;
3277}
3278
David Woodhoused4b709f2014-03-09 16:07:40 -07003279static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003280{
3281 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003282 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003283
David Woodhoused4b709f2014-03-09 16:07:40 -07003284 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003285 if (!domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003286 pr_err("Allocating domain for %s failed\n",
David Woodhoused4b709f2014-03-09 16:07:40 -07003287 dev_name(dev));
Al Viro4fe05bb2007-10-29 04:51:16 +00003288 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003289 }
3290
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003291 /* make sure context mapping is ok */
David Woodhoused4b709f2014-03-09 16:07:40 -07003292 if (unlikely(!domain_context_mapped(dev))) {
Joerg Roedel28ccce02015-07-21 14:45:31 +02003293 ret = domain_context_mapping(domain, dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003294 if (ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003295 pr_err("Domain context map for %s failed\n",
David Woodhoused4b709f2014-03-09 16:07:40 -07003296 dev_name(dev));
Al Viro4fe05bb2007-10-29 04:51:16 +00003297 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003298 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003299 }
3300
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003301 return domain;
3302}
3303
David Woodhoused4b709f2014-03-09 16:07:40 -07003304static inline struct dmar_domain *get_valid_domain_for_dev(struct device *dev)
David Woodhouse147202a2009-07-07 19:43:20 +01003305{
3306 struct device_domain_info *info;
3307
3308 /* No lock here, assumes no domain exit in normal case */
David Woodhoused4b709f2014-03-09 16:07:40 -07003309 info = dev->archdata.iommu;
David Woodhouse147202a2009-07-07 19:43:20 +01003310 if (likely(info))
3311 return info->domain;
3312
3313 return __get_valid_domain_for_dev(dev);
3314}
3315
David Woodhouseecb509e2014-03-09 16:29:55 -07003316/* Check if the dev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01003317static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003318{
3319 int found;
3320
David Woodhouse3d891942014-03-06 15:59:26 +00003321 if (iommu_dummy(dev))
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003322 return 1;
3323
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003324 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003325 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003326
David Woodhouse9b226622014-03-09 14:03:28 -07003327 found = identity_mapping(dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003328 if (found) {
David Woodhouseecb509e2014-03-09 16:29:55 -07003329 if (iommu_should_identity_map(dev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003330 return 1;
3331 else {
3332 /*
3333 * 32 bit DMA is removed from si_domain and fall back
3334 * to non-identity mapping.
3335 */
David Woodhousebf9c9ed2014-03-09 16:19:13 -07003336 domain_remove_one_dev_info(si_domain, dev);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003337 pr_info("32bit %s uses non-identity mapping\n",
3338 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003339 return 0;
3340 }
3341 } else {
3342 /*
3343 * In case of a detached 64 bit DMA device from vm, the device
3344 * is put into si_domain for identity mapping.
3345 */
David Woodhouseecb509e2014-03-09 16:29:55 -07003346 if (iommu_should_identity_map(dev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003347 int ret;
Joerg Roedel28ccce02015-07-21 14:45:31 +02003348 ret = domain_add_dev_info(si_domain, dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003349 if (!ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003350 pr_info("64bit %s uses identity mapping\n",
3351 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003352 return 1;
3353 }
3354 }
3355 }
3356
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003357 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003358}
3359
David Woodhouse5040a912014-03-09 16:14:00 -07003360static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003361 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003362{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003363 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003364 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003365 struct iova *iova;
3366 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003367 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08003368 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07003369 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003370
3371 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003372
David Woodhouse5040a912014-03-09 16:14:00 -07003373 if (iommu_no_mapping(dev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003374 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003375
David Woodhouse5040a912014-03-09 16:14:00 -07003376 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003377 if (!domain)
3378 return 0;
3379
Weidong Han8c11e792008-12-08 15:29:22 +08003380 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01003381 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003382
David Woodhouse5040a912014-03-09 16:14:00 -07003383 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003384 if (!iova)
3385 goto error;
3386
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003387 /*
3388 * Check if DMAR supports zero-length reads on write only
3389 * mappings..
3390 */
3391 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003392 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003393 prot |= DMA_PTE_READ;
3394 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3395 prot |= DMA_PTE_WRITE;
3396 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003397 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003398 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003399 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003400 * is not a big problem
3401 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01003402 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
Fenghua Yu33041ec2009-08-04 15:10:59 -07003403 mm_to_dma_pfn(paddr_pfn), size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003404 if (ret)
3405 goto error;
3406
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003407 /* it's a non-present to present mapping. Only flush if caching mode */
3408 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003409 iommu_flush_iotlb_psi(iommu, domain,
3410 mm_to_dma_pfn(iova->pfn_lo),
3411 size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003412 else
Weidong Han8c11e792008-12-08 15:29:22 +08003413 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003414
David Woodhouse03d6a242009-06-28 15:33:46 +01003415 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
3416 start_paddr += paddr & ~PAGE_MASK;
3417 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003418
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003419error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003420 if (iova)
3421 __free_iova(&domain->iovad, iova);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003422 pr_err("Device %s request: %zx@%llx dir %d --- failed\n",
David Woodhouse5040a912014-03-09 16:14:00 -07003423 dev_name(dev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003424 return 0;
3425}
3426
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003427static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3428 unsigned long offset, size_t size,
3429 enum dma_data_direction dir,
3430 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003431{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003432 return __intel_map_single(dev, page_to_phys(page) + offset, size,
David Woodhouse46333e32014-03-10 20:01:21 -07003433 dir, *dev->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003434}
3435
mark gross5e0d2a62008-03-04 15:22:08 -08003436static void flush_unmaps(void)
3437{
mark gross80b20dd2008-04-18 13:53:58 -07003438 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08003439
mark gross5e0d2a62008-03-04 15:22:08 -08003440 timer_on = 0;
3441
3442 /* just flush them all */
3443 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08003444 struct intel_iommu *iommu = g_iommus[i];
3445 if (!iommu)
3446 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003447
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003448 if (!deferred_flush[i].next)
3449 continue;
3450
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003451 /* In caching mode, global flushes turn emulation expensive */
3452 if (!cap_caching_mode(iommu->cap))
3453 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08003454 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003455 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08003456 unsigned long mask;
3457 struct iova *iova = deferred_flush[i].iova[j];
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003458 struct dmar_domain *domain = deferred_flush[i].domain[j];
Yu Zhao93a23a72009-05-18 13:51:37 +08003459
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003460 /* On real hardware multiple invalidations are expensive */
3461 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003462 iommu_flush_iotlb_psi(iommu, domain,
Jiang Liua156ef92014-07-11 14:19:36 +08003463 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00003464 !deferred_flush[i].freelist[j], 0);
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003465 else {
Jiang Liua156ef92014-07-11 14:19:36 +08003466 mask = ilog2(mm_to_dma_pfn(iova_size(iova)));
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003467 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
3468 (uint64_t)iova->pfn_lo << PAGE_SHIFT, mask);
3469 }
Yu Zhao93a23a72009-05-18 13:51:37 +08003470 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003471 if (deferred_flush[i].freelist[j])
3472 dma_free_pagelist(deferred_flush[i].freelist[j]);
mark gross80b20dd2008-04-18 13:53:58 -07003473 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003474 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003475 }
3476
mark gross5e0d2a62008-03-04 15:22:08 -08003477 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003478}
3479
3480static void flush_unmaps_timeout(unsigned long data)
3481{
mark gross80b20dd2008-04-18 13:53:58 -07003482 unsigned long flags;
3483
3484 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003485 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07003486 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003487}
3488
David Woodhouseea8ea462014-03-05 17:09:32 +00003489static void add_unmap(struct dmar_domain *dom, struct iova *iova, struct page *freelist)
mark gross5e0d2a62008-03-04 15:22:08 -08003490{
3491 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07003492 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08003493 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08003494
3495 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07003496 if (list_size == HIGH_WATER_MARK)
3497 flush_unmaps();
3498
Weidong Han8c11e792008-12-08 15:29:22 +08003499 iommu = domain_get_iommu(dom);
3500 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003501
mark gross80b20dd2008-04-18 13:53:58 -07003502 next = deferred_flush[iommu_id].next;
3503 deferred_flush[iommu_id].domain[next] = dom;
3504 deferred_flush[iommu_id].iova[next] = iova;
David Woodhouseea8ea462014-03-05 17:09:32 +00003505 deferred_flush[iommu_id].freelist[next] = freelist;
mark gross80b20dd2008-04-18 13:53:58 -07003506 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08003507
3508 if (!timer_on) {
3509 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
3510 timer_on = 1;
3511 }
3512 list_size++;
3513 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
3514}
3515
Jiang Liud41a4ad2014-07-11 14:19:34 +08003516static void intel_unmap(struct device *dev, dma_addr_t dev_addr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003517{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003518 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003519 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003520 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08003521 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003522 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003523
David Woodhouse73676832009-07-04 14:08:36 +01003524 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003525 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003526
David Woodhouse1525a292014-03-06 16:19:30 +00003527 domain = find_domain(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003528 BUG_ON(!domain);
3529
Weidong Han8c11e792008-12-08 15:29:22 +08003530 iommu = domain_get_iommu(domain);
3531
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003532 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01003533 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
3534 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003535 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003536
David Woodhoused794dc92009-06-28 00:27:49 +01003537 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
3538 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003539
David Woodhoused794dc92009-06-28 00:27:49 +01003540 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
David Woodhouse207e3592014-03-09 16:12:32 -07003541 dev_name(dev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003542
David Woodhouseea8ea462014-03-05 17:09:32 +00003543 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003544
mark gross5e0d2a62008-03-04 15:22:08 -08003545 if (intel_iommu_strict) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003546 iommu_flush_iotlb_psi(iommu, domain, start_pfn,
David Woodhouseea8ea462014-03-05 17:09:32 +00003547 last_pfn - start_pfn + 1, !freelist, 0);
mark gross5e0d2a62008-03-04 15:22:08 -08003548 /* free iova */
3549 __free_iova(&domain->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003550 dma_free_pagelist(freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003551 } else {
David Woodhouseea8ea462014-03-05 17:09:32 +00003552 add_unmap(domain, iova, freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003553 /*
3554 * queue up the release of the unmap to save the 1/6th of the
3555 * cpu used up by the iotlb flush operation...
3556 */
mark gross5e0d2a62008-03-04 15:22:08 -08003557 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003558}
3559
Jiang Liud41a4ad2014-07-11 14:19:34 +08003560static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3561 size_t size, enum dma_data_direction dir,
3562 struct dma_attrs *attrs)
3563{
3564 intel_unmap(dev, dev_addr);
3565}
3566
David Woodhouse5040a912014-03-09 16:14:00 -07003567static void *intel_alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003568 dma_addr_t *dma_handle, gfp_t flags,
3569 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003570{
Akinobu Mita36746432014-06-04 16:06:51 -07003571 struct page *page = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003572 int order;
3573
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003574 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003575 order = get_order(size);
Alex Williamsone8bb9102009-11-04 15:59:34 -07003576
David Woodhouse5040a912014-03-09 16:14:00 -07003577 if (!iommu_no_mapping(dev))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003578 flags &= ~(GFP_DMA | GFP_DMA32);
David Woodhouse5040a912014-03-09 16:14:00 -07003579 else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) {
3580 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003581 flags |= GFP_DMA;
3582 else
3583 flags |= GFP_DMA32;
3584 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003585
Akinobu Mita36746432014-06-04 16:06:51 -07003586 if (flags & __GFP_WAIT) {
3587 unsigned int count = size >> PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003588
Akinobu Mita36746432014-06-04 16:06:51 -07003589 page = dma_alloc_from_contiguous(dev, count, order);
3590 if (page && iommu_no_mapping(dev) &&
3591 page_to_phys(page) + size > dev->coherent_dma_mask) {
3592 dma_release_from_contiguous(dev, page, count);
3593 page = NULL;
3594 }
3595 }
3596
3597 if (!page)
3598 page = alloc_pages(flags, order);
3599 if (!page)
3600 return NULL;
3601 memset(page_address(page), 0, size);
3602
3603 *dma_handle = __intel_map_single(dev, page_to_phys(page), size,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003604 DMA_BIDIRECTIONAL,
David Woodhouse5040a912014-03-09 16:14:00 -07003605 dev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003606 if (*dma_handle)
Akinobu Mita36746432014-06-04 16:06:51 -07003607 return page_address(page);
3608 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3609 __free_pages(page, order);
3610
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003611 return NULL;
3612}
3613
David Woodhouse5040a912014-03-09 16:14:00 -07003614static void intel_free_coherent(struct device *dev, size_t size, void *vaddr,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003615 dma_addr_t dma_handle, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003616{
3617 int order;
Akinobu Mita36746432014-06-04 16:06:51 -07003618 struct page *page = virt_to_page(vaddr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003619
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003620 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003621 order = get_order(size);
3622
Jiang Liud41a4ad2014-07-11 14:19:34 +08003623 intel_unmap(dev, dma_handle);
Akinobu Mita36746432014-06-04 16:06:51 -07003624 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3625 __free_pages(page, order);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003626}
3627
David Woodhouse5040a912014-03-09 16:14:00 -07003628static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003629 int nelems, enum dma_data_direction dir,
3630 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003631{
Jiang Liud41a4ad2014-07-11 14:19:34 +08003632 intel_unmap(dev, sglist[0].dma_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003633}
3634
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003635static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003636 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003637{
3638 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003639 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003640
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003641 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02003642 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00003643 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003644 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003645 }
3646 return nelems;
3647}
3648
David Woodhouse5040a912014-03-09 16:14:00 -07003649static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003650 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003651{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003652 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003653 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003654 size_t size = 0;
3655 int prot = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003656 struct iova *iova = NULL;
3657 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003658 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01003659 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003660 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003661
3662 BUG_ON(dir == DMA_NONE);
David Woodhouse5040a912014-03-09 16:14:00 -07003663 if (iommu_no_mapping(dev))
3664 return intel_nontranslate_map_sg(dev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003665
David Woodhouse5040a912014-03-09 16:14:00 -07003666 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003667 if (!domain)
3668 return 0;
3669
Weidong Han8c11e792008-12-08 15:29:22 +08003670 iommu = domain_get_iommu(domain);
3671
David Woodhouseb536d242009-06-28 14:49:31 +01003672 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01003673 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003674
David Woodhouse5040a912014-03-09 16:14:00 -07003675 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size),
3676 *dev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003677 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003678 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003679 return 0;
3680 }
3681
3682 /*
3683 * Check if DMAR supports zero-length reads on write only
3684 * mappings..
3685 */
3686 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003687 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003688 prot |= DMA_PTE_READ;
3689 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3690 prot |= DMA_PTE_WRITE;
3691
David Woodhouseb536d242009-06-28 14:49:31 +01003692 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01003693
Fenghua Yuf5329592009-08-04 15:09:37 -07003694 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01003695 if (unlikely(ret)) {
David Woodhousee1605492009-06-29 11:17:38 +01003696 dma_pte_free_pagetable(domain, start_vpfn,
3697 start_vpfn + size - 1);
David Woodhousee1605492009-06-29 11:17:38 +01003698 __free_iova(&domain->iovad, iova);
3699 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003700 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003701
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003702 /* it's a non-present to present mapping. Only flush if caching mode */
3703 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003704 iommu_flush_iotlb_psi(iommu, domain, start_vpfn, size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003705 else
Weidong Han8c11e792008-12-08 15:29:22 +08003706 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003707
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003708 return nelems;
3709}
3710
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003711static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
3712{
3713 return !dma_addr;
3714}
3715
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003716struct dma_map_ops intel_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003717 .alloc = intel_alloc_coherent,
3718 .free = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003719 .map_sg = intel_map_sg,
3720 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003721 .map_page = intel_map_page,
3722 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003723 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003724};
3725
3726static inline int iommu_domain_cache_init(void)
3727{
3728 int ret = 0;
3729
3730 iommu_domain_cache = kmem_cache_create("iommu_domain",
3731 sizeof(struct dmar_domain),
3732 0,
3733 SLAB_HWCACHE_ALIGN,
3734
3735 NULL);
3736 if (!iommu_domain_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003737 pr_err("Couldn't create iommu_domain cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003738 ret = -ENOMEM;
3739 }
3740
3741 return ret;
3742}
3743
3744static inline int iommu_devinfo_cache_init(void)
3745{
3746 int ret = 0;
3747
3748 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3749 sizeof(struct device_domain_info),
3750 0,
3751 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003752 NULL);
3753 if (!iommu_devinfo_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003754 pr_err("Couldn't create devinfo cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003755 ret = -ENOMEM;
3756 }
3757
3758 return ret;
3759}
3760
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003761static int __init iommu_init_mempool(void)
3762{
3763 int ret;
3764 ret = iommu_iova_cache_init();
3765 if (ret)
3766 return ret;
3767
3768 ret = iommu_domain_cache_init();
3769 if (ret)
3770 goto domain_error;
3771
3772 ret = iommu_devinfo_cache_init();
3773 if (!ret)
3774 return ret;
3775
3776 kmem_cache_destroy(iommu_domain_cache);
3777domain_error:
Robin Murphy85b45452015-01-12 17:51:14 +00003778 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003779
3780 return -ENOMEM;
3781}
3782
3783static void __init iommu_exit_mempool(void)
3784{
3785 kmem_cache_destroy(iommu_devinfo_cache);
3786 kmem_cache_destroy(iommu_domain_cache);
Robin Murphy85b45452015-01-12 17:51:14 +00003787 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003788}
3789
Dan Williams556ab452010-07-23 15:47:56 -07003790static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
3791{
3792 struct dmar_drhd_unit *drhd;
3793 u32 vtbar;
3794 int rc;
3795
3796 /* We know that this device on this chipset has its own IOMMU.
3797 * If we find it under a different IOMMU, then the BIOS is lying
3798 * to us. Hope that the IOMMU for this device is actually
3799 * disabled, and it needs no translation...
3800 */
3801 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
3802 if (rc) {
3803 /* "can't" happen */
3804 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
3805 return;
3806 }
3807 vtbar &= 0xffff0000;
3808
3809 /* we know that the this iommu should be at offset 0xa000 from vtbar */
3810 drhd = dmar_find_matched_drhd_unit(pdev);
3811 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
3812 TAINT_FIRMWARE_WORKAROUND,
3813 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
3814 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
3815}
3816DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
3817
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003818static void __init init_no_remapping_devices(void)
3819{
3820 struct dmar_drhd_unit *drhd;
David Woodhouse832bd852014-03-07 15:08:36 +00003821 struct device *dev;
Jiang Liub683b232014-02-19 14:07:32 +08003822 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003823
3824 for_each_drhd_unit(drhd) {
3825 if (!drhd->include_all) {
Jiang Liub683b232014-02-19 14:07:32 +08003826 for_each_active_dev_scope(drhd->devices,
3827 drhd->devices_cnt, i, dev)
3828 break;
David Woodhouse832bd852014-03-07 15:08:36 +00003829 /* ignore DMAR unit if no devices exist */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003830 if (i == drhd->devices_cnt)
3831 drhd->ignored = 1;
3832 }
3833 }
3834
Jiang Liu7c919772014-01-06 14:18:18 +08003835 for_each_active_drhd_unit(drhd) {
Jiang Liu7c919772014-01-06 14:18:18 +08003836 if (drhd->include_all)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003837 continue;
3838
Jiang Liub683b232014-02-19 14:07:32 +08003839 for_each_active_dev_scope(drhd->devices,
3840 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003841 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003842 break;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003843 if (i < drhd->devices_cnt)
3844 continue;
3845
David Woodhousec0771df2011-10-14 20:59:46 +01003846 /* This IOMMU has *only* gfx devices. Either bypass it or
3847 set the gfx_mapped flag, as appropriate */
3848 if (dmar_map_gfx) {
3849 intel_iommu_gfx_mapped = 1;
3850 } else {
3851 drhd->ignored = 1;
Jiang Liub683b232014-02-19 14:07:32 +08003852 for_each_active_dev_scope(drhd->devices,
3853 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003854 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003855 }
3856 }
3857}
3858
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003859#ifdef CONFIG_SUSPEND
3860static int init_iommu_hw(void)
3861{
3862 struct dmar_drhd_unit *drhd;
3863 struct intel_iommu *iommu = NULL;
3864
3865 for_each_active_iommu(iommu, drhd)
3866 if (iommu->qi)
3867 dmar_reenable_qi(iommu);
3868
Joseph Cihulab7792602011-05-03 00:08:37 -07003869 for_each_iommu(iommu, drhd) {
3870 if (drhd->ignored) {
3871 /*
3872 * we always have to disable PMRs or DMA may fail on
3873 * this device
3874 */
3875 if (force_on)
3876 iommu_disable_protect_mem_regions(iommu);
3877 continue;
3878 }
3879
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003880 iommu_flush_write_buffer(iommu);
3881
3882 iommu_set_root_entry(iommu);
3883
3884 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003885 DMA_CCMD_GLOBAL_INVL);
Jiang Liu2a41cce2014-07-11 14:19:33 +08003886 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3887 iommu_enable_translation(iommu);
David Woodhouseb94996c2009-09-19 15:28:12 -07003888 iommu_disable_protect_mem_regions(iommu);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003889 }
3890
3891 return 0;
3892}
3893
3894static void iommu_flush_all(void)
3895{
3896 struct dmar_drhd_unit *drhd;
3897 struct intel_iommu *iommu;
3898
3899 for_each_active_iommu(iommu, drhd) {
3900 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003901 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003902 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003903 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003904 }
3905}
3906
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003907static int iommu_suspend(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003908{
3909 struct dmar_drhd_unit *drhd;
3910 struct intel_iommu *iommu = NULL;
3911 unsigned long flag;
3912
3913 for_each_active_iommu(iommu, drhd) {
3914 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3915 GFP_ATOMIC);
3916 if (!iommu->iommu_state)
3917 goto nomem;
3918 }
3919
3920 iommu_flush_all();
3921
3922 for_each_active_iommu(iommu, drhd) {
3923 iommu_disable_translation(iommu);
3924
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003925 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003926
3927 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3928 readl(iommu->reg + DMAR_FECTL_REG);
3929 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3930 readl(iommu->reg + DMAR_FEDATA_REG);
3931 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3932 readl(iommu->reg + DMAR_FEADDR_REG);
3933 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3934 readl(iommu->reg + DMAR_FEUADDR_REG);
3935
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003936 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003937 }
3938 return 0;
3939
3940nomem:
3941 for_each_active_iommu(iommu, drhd)
3942 kfree(iommu->iommu_state);
3943
3944 return -ENOMEM;
3945}
3946
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003947static void iommu_resume(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003948{
3949 struct dmar_drhd_unit *drhd;
3950 struct intel_iommu *iommu = NULL;
3951 unsigned long flag;
3952
3953 if (init_iommu_hw()) {
Joseph Cihulab7792602011-05-03 00:08:37 -07003954 if (force_on)
3955 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
3956 else
3957 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003958 return;
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003959 }
3960
3961 for_each_active_iommu(iommu, drhd) {
3962
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003963 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003964
3965 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3966 iommu->reg + DMAR_FECTL_REG);
3967 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3968 iommu->reg + DMAR_FEDATA_REG);
3969 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3970 iommu->reg + DMAR_FEADDR_REG);
3971 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3972 iommu->reg + DMAR_FEUADDR_REG);
3973
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003974 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003975 }
3976
3977 for_each_active_iommu(iommu, drhd)
3978 kfree(iommu->iommu_state);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003979}
3980
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003981static struct syscore_ops iommu_syscore_ops = {
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003982 .resume = iommu_resume,
3983 .suspend = iommu_suspend,
3984};
3985
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003986static void __init init_iommu_pm_ops(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003987{
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003988 register_syscore_ops(&iommu_syscore_ops);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003989}
3990
3991#else
Rafael J. Wysocki99592ba2011-06-07 21:32:31 +02003992static inline void init_iommu_pm_ops(void) {}
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003993#endif /* CONFIG_PM */
3994
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003995
Jiang Liuc2a0b532014-11-09 22:47:56 +08003996int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003997{
3998 struct acpi_dmar_reserved_memory *rmrr;
3999 struct dmar_rmrr_unit *rmrru;
4000
4001 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
4002 if (!rmrru)
4003 return -ENOMEM;
4004
4005 rmrru->hdr = header;
4006 rmrr = (struct acpi_dmar_reserved_memory *)header;
4007 rmrru->base_address = rmrr->base_address;
4008 rmrru->end_address = rmrr->end_address;
Jiang Liu2e455282014-02-19 14:07:36 +08004009 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
4010 ((void *)rmrr) + rmrr->header.length,
4011 &rmrru->devices_cnt);
4012 if (rmrru->devices_cnt && rmrru->devices == NULL) {
4013 kfree(rmrru);
4014 return -ENOMEM;
4015 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004016
Jiang Liu2e455282014-02-19 14:07:36 +08004017 list_add(&rmrru->list, &dmar_rmrr_units);
4018
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004019 return 0;
4020}
4021
Jiang Liu6b197242014-11-09 22:47:58 +08004022static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr)
4023{
4024 struct dmar_atsr_unit *atsru;
4025 struct acpi_dmar_atsr *tmp;
4026
4027 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4028 tmp = (struct acpi_dmar_atsr *)atsru->hdr;
4029 if (atsr->segment != tmp->segment)
4030 continue;
4031 if (atsr->header.length != tmp->header.length)
4032 continue;
4033 if (memcmp(atsr, tmp, atsr->header.length) == 0)
4034 return atsru;
4035 }
4036
4037 return NULL;
4038}
4039
4040int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004041{
4042 struct acpi_dmar_atsr *atsr;
4043 struct dmar_atsr_unit *atsru;
4044
Jiang Liu6b197242014-11-09 22:47:58 +08004045 if (system_state != SYSTEM_BOOTING && !intel_iommu_enabled)
4046 return 0;
4047
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004048 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
Jiang Liu6b197242014-11-09 22:47:58 +08004049 atsru = dmar_find_atsr(atsr);
4050 if (atsru)
4051 return 0;
4052
4053 atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004054 if (!atsru)
4055 return -ENOMEM;
4056
Jiang Liu6b197242014-11-09 22:47:58 +08004057 /*
4058 * If memory is allocated from slab by ACPI _DSM method, we need to
4059 * copy the memory content because the memory buffer will be freed
4060 * on return.
4061 */
4062 atsru->hdr = (void *)(atsru + 1);
4063 memcpy(atsru->hdr, hdr, hdr->length);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004064 atsru->include_all = atsr->flags & 0x1;
Jiang Liu2e455282014-02-19 14:07:36 +08004065 if (!atsru->include_all) {
4066 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
4067 (void *)atsr + atsr->header.length,
4068 &atsru->devices_cnt);
4069 if (atsru->devices_cnt && atsru->devices == NULL) {
4070 kfree(atsru);
4071 return -ENOMEM;
4072 }
4073 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004074
Jiang Liu0e242612014-02-19 14:07:34 +08004075 list_add_rcu(&atsru->list, &dmar_atsr_units);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004076
4077 return 0;
4078}
4079
Jiang Liu9bdc5312014-01-06 14:18:27 +08004080static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
4081{
4082 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
4083 kfree(atsru);
4084}
4085
Jiang Liu6b197242014-11-09 22:47:58 +08004086int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4087{
4088 struct acpi_dmar_atsr *atsr;
4089 struct dmar_atsr_unit *atsru;
4090
4091 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4092 atsru = dmar_find_atsr(atsr);
4093 if (atsru) {
4094 list_del_rcu(&atsru->list);
4095 synchronize_rcu();
4096 intel_iommu_free_atsr(atsru);
4097 }
4098
4099 return 0;
4100}
4101
4102int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4103{
4104 int i;
4105 struct device *dev;
4106 struct acpi_dmar_atsr *atsr;
4107 struct dmar_atsr_unit *atsru;
4108
4109 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4110 atsru = dmar_find_atsr(atsr);
4111 if (!atsru)
4112 return 0;
4113
4114 if (!atsru->include_all && atsru->devices && atsru->devices_cnt)
4115 for_each_active_dev_scope(atsru->devices, atsru->devices_cnt,
4116 i, dev)
4117 return -EBUSY;
4118
4119 return 0;
4120}
4121
Jiang Liuffebeb42014-11-09 22:48:02 +08004122static int intel_iommu_add(struct dmar_drhd_unit *dmaru)
4123{
4124 int sp, ret = 0;
4125 struct intel_iommu *iommu = dmaru->iommu;
4126
4127 if (g_iommus[iommu->seq_id])
4128 return 0;
4129
4130 if (hw_pass_through && !ecap_pass_through(iommu->ecap)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004131 pr_warn("%s: Doesn't support hardware pass through.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004132 iommu->name);
4133 return -ENXIO;
4134 }
4135 if (!ecap_sc_support(iommu->ecap) &&
4136 domain_update_iommu_snooping(iommu)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004137 pr_warn("%s: Doesn't support snooping.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004138 iommu->name);
4139 return -ENXIO;
4140 }
4141 sp = domain_update_iommu_superpage(iommu) - 1;
4142 if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004143 pr_warn("%s: Doesn't support large page.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004144 iommu->name);
4145 return -ENXIO;
4146 }
4147
4148 /*
4149 * Disable translation if already enabled prior to OS handover.
4150 */
4151 if (iommu->gcmd & DMA_GCMD_TE)
4152 iommu_disable_translation(iommu);
4153
4154 g_iommus[iommu->seq_id] = iommu;
4155 ret = iommu_init_domains(iommu);
4156 if (ret == 0)
4157 ret = iommu_alloc_root_entry(iommu);
4158 if (ret)
4159 goto out;
4160
4161 if (dmaru->ignored) {
4162 /*
4163 * we always have to disable PMRs or DMA may fail on this device
4164 */
4165 if (force_on)
4166 iommu_disable_protect_mem_regions(iommu);
4167 return 0;
4168 }
4169
4170 intel_iommu_init_qi(iommu);
4171 iommu_flush_write_buffer(iommu);
4172 ret = dmar_set_interrupt(iommu);
4173 if (ret)
4174 goto disable_iommu;
4175
4176 iommu_set_root_entry(iommu);
4177 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
4178 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4179 iommu_enable_translation(iommu);
4180
Jiang Liuffebeb42014-11-09 22:48:02 +08004181 iommu_disable_protect_mem_regions(iommu);
4182 return 0;
4183
4184disable_iommu:
4185 disable_dmar_iommu(iommu);
4186out:
4187 free_dmar_iommu(iommu);
4188 return ret;
4189}
4190
Jiang Liu6b197242014-11-09 22:47:58 +08004191int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
4192{
Jiang Liuffebeb42014-11-09 22:48:02 +08004193 int ret = 0;
4194 struct intel_iommu *iommu = dmaru->iommu;
4195
4196 if (!intel_iommu_enabled)
4197 return 0;
4198 if (iommu == NULL)
4199 return -EINVAL;
4200
4201 if (insert) {
4202 ret = intel_iommu_add(dmaru);
4203 } else {
4204 disable_dmar_iommu(iommu);
4205 free_dmar_iommu(iommu);
4206 }
4207
4208 return ret;
Jiang Liu6b197242014-11-09 22:47:58 +08004209}
4210
Jiang Liu9bdc5312014-01-06 14:18:27 +08004211static void intel_iommu_free_dmars(void)
4212{
4213 struct dmar_rmrr_unit *rmrru, *rmrr_n;
4214 struct dmar_atsr_unit *atsru, *atsr_n;
4215
4216 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
4217 list_del(&rmrru->list);
4218 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
4219 kfree(rmrru);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004220 }
4221
Jiang Liu9bdc5312014-01-06 14:18:27 +08004222 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
4223 list_del(&atsru->list);
4224 intel_iommu_free_atsr(atsru);
4225 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004226}
4227
4228int dmar_find_matched_atsr_unit(struct pci_dev *dev)
4229{
Jiang Liub683b232014-02-19 14:07:32 +08004230 int i, ret = 1;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004231 struct pci_bus *bus;
David Woodhouse832bd852014-03-07 15:08:36 +00004232 struct pci_dev *bridge = NULL;
4233 struct device *tmp;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004234 struct acpi_dmar_atsr *atsr;
4235 struct dmar_atsr_unit *atsru;
4236
4237 dev = pci_physfn(dev);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004238 for (bus = dev->bus; bus; bus = bus->parent) {
Jiang Liub5f82dd2014-02-19 14:07:31 +08004239 bridge = bus->self;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004240 if (!bridge || !pci_is_pcie(bridge) ||
Yijing Wang62f87c02012-07-24 17:20:03 +08004241 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004242 return 0;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004243 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004244 break;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004245 }
Jiang Liub5f82dd2014-02-19 14:07:31 +08004246 if (!bridge)
4247 return 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004248
Jiang Liu0e242612014-02-19 14:07:34 +08004249 rcu_read_lock();
Jiang Liub5f82dd2014-02-19 14:07:31 +08004250 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4251 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4252 if (atsr->segment != pci_domain_nr(dev->bus))
4253 continue;
4254
Jiang Liub683b232014-02-19 14:07:32 +08004255 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00004256 if (tmp == &bridge->dev)
Jiang Liub683b232014-02-19 14:07:32 +08004257 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004258
4259 if (atsru->include_all)
Jiang Liub683b232014-02-19 14:07:32 +08004260 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004261 }
Jiang Liub683b232014-02-19 14:07:32 +08004262 ret = 0;
4263out:
Jiang Liu0e242612014-02-19 14:07:34 +08004264 rcu_read_unlock();
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004265
Jiang Liub683b232014-02-19 14:07:32 +08004266 return ret;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004267}
4268
Jiang Liu59ce0512014-02-19 14:07:35 +08004269int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
4270{
4271 int ret = 0;
4272 struct dmar_rmrr_unit *rmrru;
4273 struct dmar_atsr_unit *atsru;
4274 struct acpi_dmar_atsr *atsr;
4275 struct acpi_dmar_reserved_memory *rmrr;
4276
4277 if (!intel_iommu_enabled && system_state != SYSTEM_BOOTING)
4278 return 0;
4279
4280 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
4281 rmrr = container_of(rmrru->hdr,
4282 struct acpi_dmar_reserved_memory, header);
4283 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4284 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
4285 ((void *)rmrr) + rmrr->header.length,
4286 rmrr->segment, rmrru->devices,
4287 rmrru->devices_cnt);
Jiang Liu27e24952014-06-20 15:08:06 +08004288 if(ret < 0)
Jiang Liu59ce0512014-02-19 14:07:35 +08004289 return ret;
4290 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
Jiang Liu27e24952014-06-20 15:08:06 +08004291 dmar_remove_dev_scope(info, rmrr->segment,
4292 rmrru->devices, rmrru->devices_cnt);
Jiang Liu59ce0512014-02-19 14:07:35 +08004293 }
4294 }
4295
4296 list_for_each_entry(atsru, &dmar_atsr_units, list) {
4297 if (atsru->include_all)
4298 continue;
4299
4300 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4301 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4302 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
4303 (void *)atsr + atsr->header.length,
4304 atsr->segment, atsru->devices,
4305 atsru->devices_cnt);
4306 if (ret > 0)
4307 break;
4308 else if(ret < 0)
4309 return ret;
4310 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
4311 if (dmar_remove_dev_scope(info, atsr->segment,
4312 atsru->devices, atsru->devices_cnt))
4313 break;
4314 }
4315 }
4316
4317 return 0;
4318}
4319
Fenghua Yu99dcade2009-11-11 07:23:06 -08004320/*
4321 * Here we only respond to action of unbound device from driver.
4322 *
4323 * Added device is not attached to its DMAR domain here yet. That will happen
4324 * when mapping the device to iova.
4325 */
4326static int device_notifier(struct notifier_block *nb,
4327 unsigned long action, void *data)
4328{
4329 struct device *dev = data;
Fenghua Yu99dcade2009-11-11 07:23:06 -08004330 struct dmar_domain *domain;
4331
David Woodhouse3d891942014-03-06 15:59:26 +00004332 if (iommu_dummy(dev))
David Woodhouse44cd6132009-12-02 10:18:30 +00004333 return 0;
4334
Joerg Roedel1196c2f2014-09-30 13:02:03 +02004335 if (action != BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004336 return 0;
4337
David Woodhouse1525a292014-03-06 16:19:30 +00004338 domain = find_domain(dev);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004339 if (!domain)
4340 return 0;
4341
Jiang Liu3a5670e2014-02-19 14:07:33 +08004342 down_read(&dmar_global_lock);
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004343 domain_remove_one_dev_info(domain, dev);
Jiang Liuab8dfe22014-07-11 14:19:27 +08004344 if (!domain_type_is_vm_or_si(domain) && list_empty(&domain->devices))
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004345 domain_exit(domain);
Jiang Liu3a5670e2014-02-19 14:07:33 +08004346 up_read(&dmar_global_lock);
Alex Williamsona97590e2011-03-04 14:52:16 -07004347
Fenghua Yu99dcade2009-11-11 07:23:06 -08004348 return 0;
4349}
4350
4351static struct notifier_block device_nb = {
4352 .notifier_call = device_notifier,
4353};
4354
Jiang Liu75f05562014-02-19 14:07:37 +08004355static int intel_iommu_memory_notifier(struct notifier_block *nb,
4356 unsigned long val, void *v)
4357{
4358 struct memory_notify *mhp = v;
4359 unsigned long long start, end;
4360 unsigned long start_vpfn, last_vpfn;
4361
4362 switch (val) {
4363 case MEM_GOING_ONLINE:
4364 start = mhp->start_pfn << PAGE_SHIFT;
4365 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
4366 if (iommu_domain_identity_map(si_domain, start, end)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004367 pr_warn("Failed to build identity map for [%llx-%llx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004368 start, end);
4369 return NOTIFY_BAD;
4370 }
4371 break;
4372
4373 case MEM_OFFLINE:
4374 case MEM_CANCEL_ONLINE:
4375 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
4376 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
4377 while (start_vpfn <= last_vpfn) {
4378 struct iova *iova;
4379 struct dmar_drhd_unit *drhd;
4380 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00004381 struct page *freelist;
Jiang Liu75f05562014-02-19 14:07:37 +08004382
4383 iova = find_iova(&si_domain->iovad, start_vpfn);
4384 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004385 pr_debug("Failed get IOVA for PFN %lx\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004386 start_vpfn);
4387 break;
4388 }
4389
4390 iova = split_and_remove_iova(&si_domain->iovad, iova,
4391 start_vpfn, last_vpfn);
4392 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004393 pr_warn("Failed to split IOVA PFN [%lx-%lx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004394 start_vpfn, last_vpfn);
4395 return NOTIFY_BAD;
4396 }
4397
David Woodhouseea8ea462014-03-05 17:09:32 +00004398 freelist = domain_unmap(si_domain, iova->pfn_lo,
4399 iova->pfn_hi);
4400
Jiang Liu75f05562014-02-19 14:07:37 +08004401 rcu_read_lock();
4402 for_each_active_iommu(iommu, drhd)
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004403 iommu_flush_iotlb_psi(iommu, si_domain,
Jiang Liua156ef92014-07-11 14:19:36 +08004404 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00004405 !freelist, 0);
Jiang Liu75f05562014-02-19 14:07:37 +08004406 rcu_read_unlock();
David Woodhouseea8ea462014-03-05 17:09:32 +00004407 dma_free_pagelist(freelist);
Jiang Liu75f05562014-02-19 14:07:37 +08004408
4409 start_vpfn = iova->pfn_hi + 1;
4410 free_iova_mem(iova);
4411 }
4412 break;
4413 }
4414
4415 return NOTIFY_OK;
4416}
4417
4418static struct notifier_block intel_iommu_memory_nb = {
4419 .notifier_call = intel_iommu_memory_notifier,
4420 .priority = 0
4421};
4422
Alex Williamsona5459cf2014-06-12 16:12:31 -06004423
4424static ssize_t intel_iommu_show_version(struct device *dev,
4425 struct device_attribute *attr,
4426 char *buf)
4427{
4428 struct intel_iommu *iommu = dev_get_drvdata(dev);
4429 u32 ver = readl(iommu->reg + DMAR_VER_REG);
4430 return sprintf(buf, "%d:%d\n",
4431 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver));
4432}
4433static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL);
4434
4435static ssize_t intel_iommu_show_address(struct device *dev,
4436 struct device_attribute *attr,
4437 char *buf)
4438{
4439 struct intel_iommu *iommu = dev_get_drvdata(dev);
4440 return sprintf(buf, "%llx\n", iommu->reg_phys);
4441}
4442static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL);
4443
4444static ssize_t intel_iommu_show_cap(struct device *dev,
4445 struct device_attribute *attr,
4446 char *buf)
4447{
4448 struct intel_iommu *iommu = dev_get_drvdata(dev);
4449 return sprintf(buf, "%llx\n", iommu->cap);
4450}
4451static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL);
4452
4453static ssize_t intel_iommu_show_ecap(struct device *dev,
4454 struct device_attribute *attr,
4455 char *buf)
4456{
4457 struct intel_iommu *iommu = dev_get_drvdata(dev);
4458 return sprintf(buf, "%llx\n", iommu->ecap);
4459}
4460static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL);
4461
Alex Williamson2238c082015-07-14 15:24:53 -06004462static ssize_t intel_iommu_show_ndoms(struct device *dev,
4463 struct device_attribute *attr,
4464 char *buf)
4465{
4466 struct intel_iommu *iommu = dev_get_drvdata(dev);
4467 return sprintf(buf, "%ld\n", cap_ndoms(iommu->cap));
4468}
4469static DEVICE_ATTR(domains_supported, S_IRUGO, intel_iommu_show_ndoms, NULL);
4470
4471static ssize_t intel_iommu_show_ndoms_used(struct device *dev,
4472 struct device_attribute *attr,
4473 char *buf)
4474{
4475 struct intel_iommu *iommu = dev_get_drvdata(dev);
4476 return sprintf(buf, "%d\n", bitmap_weight(iommu->domain_ids,
4477 cap_ndoms(iommu->cap)));
4478}
4479static DEVICE_ATTR(domains_used, S_IRUGO, intel_iommu_show_ndoms_used, NULL);
4480
Alex Williamsona5459cf2014-06-12 16:12:31 -06004481static struct attribute *intel_iommu_attrs[] = {
4482 &dev_attr_version.attr,
4483 &dev_attr_address.attr,
4484 &dev_attr_cap.attr,
4485 &dev_attr_ecap.attr,
Alex Williamson2238c082015-07-14 15:24:53 -06004486 &dev_attr_domains_supported.attr,
4487 &dev_attr_domains_used.attr,
Alex Williamsona5459cf2014-06-12 16:12:31 -06004488 NULL,
4489};
4490
4491static struct attribute_group intel_iommu_group = {
4492 .name = "intel-iommu",
4493 .attrs = intel_iommu_attrs,
4494};
4495
4496const struct attribute_group *intel_iommu_groups[] = {
4497 &intel_iommu_group,
4498 NULL,
4499};
4500
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004501int __init intel_iommu_init(void)
4502{
Jiang Liu9bdc5312014-01-06 14:18:27 +08004503 int ret = -ENODEV;
Takao Indoh3a93c842013-04-23 17:35:03 +09004504 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08004505 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004506
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004507 /* VT-d is required for a TXT/tboot launch, so enforce that */
4508 force_on = tboot_force_iommu();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004509
Jiang Liu3a5670e2014-02-19 14:07:33 +08004510 if (iommu_init_mempool()) {
4511 if (force_on)
4512 panic("tboot: Failed to initialize iommu memory\n");
4513 return -ENOMEM;
4514 }
4515
4516 down_write(&dmar_global_lock);
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004517 if (dmar_table_init()) {
4518 if (force_on)
4519 panic("tboot: Failed to initialize DMAR table\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004520 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004521 }
4522
Suresh Siddhac2c72862011-08-23 17:05:19 -07004523 if (dmar_dev_scope_init() < 0) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004524 if (force_on)
4525 panic("tboot: Failed to initialize DMAR device scope\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004526 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004527 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -07004528
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004529 if (no_iommu || dmar_disabled)
Jiang Liu9bdc5312014-01-06 14:18:27 +08004530 goto out_free_dmar;
Suresh Siddha2ae21012008-07-10 11:16:43 -07004531
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004532 if (list_empty(&dmar_rmrr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004533 pr_info("No RMRR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004534
4535 if (list_empty(&dmar_atsr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004536 pr_info("No ATSR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004537
Joseph Cihula51a63e62011-03-21 11:04:24 -07004538 if (dmar_init_reserved_ranges()) {
4539 if (force_on)
4540 panic("tboot: Failed to reserve iommu ranges\n");
Jiang Liu3a5670e2014-02-19 14:07:33 +08004541 goto out_free_reserved_range;
Joseph Cihula51a63e62011-03-21 11:04:24 -07004542 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004543
4544 init_no_remapping_devices();
4545
Joseph Cihulab7792602011-05-03 00:08:37 -07004546 ret = init_dmars();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004547 if (ret) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004548 if (force_on)
4549 panic("tboot: Failed to initialize DMARs\n");
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004550 pr_err("Initialization failed\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004551 goto out_free_reserved_range;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004552 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08004553 up_write(&dmar_global_lock);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004554 pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004555
mark gross5e0d2a62008-03-04 15:22:08 -08004556 init_timer(&unmap_timer);
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004557#ifdef CONFIG_SWIOTLB
4558 swiotlb = 0;
4559#endif
David Woodhouse19943b02009-08-04 16:19:20 +01004560 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07004561
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004562 init_iommu_pm_ops();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004563
Alex Williamsona5459cf2014-06-12 16:12:31 -06004564 for_each_active_iommu(iommu, drhd)
4565 iommu->iommu_dev = iommu_device_create(NULL, iommu,
4566 intel_iommu_groups,
Kees Cook2439d4a2015-07-24 16:27:57 -07004567 "%s", iommu->name);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004568
Joerg Roedel4236d97d2011-09-06 17:56:07 +02004569 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004570 bus_register_notifier(&pci_bus_type, &device_nb);
Jiang Liu75f05562014-02-19 14:07:37 +08004571 if (si_domain && !hw_pass_through)
4572 register_memory_notifier(&intel_iommu_memory_nb);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004573
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02004574 intel_iommu_enabled = 1;
4575
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004576 return 0;
Jiang Liu9bdc5312014-01-06 14:18:27 +08004577
4578out_free_reserved_range:
4579 put_iova_domain(&reserved_iova_list);
Jiang Liu9bdc5312014-01-06 14:18:27 +08004580out_free_dmar:
4581 intel_iommu_free_dmars();
Jiang Liu3a5670e2014-02-19 14:07:33 +08004582 up_write(&dmar_global_lock);
4583 iommu_exit_mempool();
Jiang Liu9bdc5312014-01-06 14:18:27 +08004584 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004585}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07004586
Alex Williamson579305f2014-07-03 09:51:43 -06004587static int iommu_detach_dev_cb(struct pci_dev *pdev, u16 alias, void *opaque)
4588{
4589 struct intel_iommu *iommu = opaque;
4590
4591 iommu_detach_dev(iommu, PCI_BUS_NUM(alias), alias & 0xff);
4592 return 0;
4593}
4594
4595/*
4596 * NB - intel-iommu lacks any sort of reference counting for the users of
4597 * dependent devices. If multiple endpoints have intersecting dependent
4598 * devices, unbinding the driver from any one of them will possibly leave
4599 * the others unable to operate.
4600 */
Han, Weidong3199aa62009-02-26 17:31:12 +08004601static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004602 struct device *dev)
Han, Weidong3199aa62009-02-26 17:31:12 +08004603{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004604 if (!iommu || !dev || !dev_is_pci(dev))
Han, Weidong3199aa62009-02-26 17:31:12 +08004605 return;
4606
Alex Williamson579305f2014-07-03 09:51:43 -06004607 pci_for_each_dma_alias(to_pci_dev(dev), &iommu_detach_dev_cb, iommu);
Han, Weidong3199aa62009-02-26 17:31:12 +08004608}
4609
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004610static void domain_remove_one_dev_info(struct dmar_domain *domain,
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004611 struct device *dev)
Weidong Hanc7151a82008-12-08 22:51:37 +08004612{
Yijing Wangbca2b912013-10-31 17:26:04 +08004613 struct device_domain_info *info, *tmp;
Weidong Hanc7151a82008-12-08 22:51:37 +08004614 struct intel_iommu *iommu;
4615 unsigned long flags;
Quentin Lambert2f119c72015-02-06 10:59:53 +01004616 bool found = false;
David Woodhouse156baca2014-03-09 14:00:57 -07004617 u8 bus, devfn;
Weidong Hanc7151a82008-12-08 22:51:37 +08004618
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004619 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08004620 if (!iommu)
4621 return;
4622
4623 spin_lock_irqsave(&device_domain_lock, flags);
Yijing Wangbca2b912013-10-31 17:26:04 +08004624 list_for_each_entry_safe(info, tmp, &domain->devices, link) {
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004625 if (info->iommu == iommu && info->bus == bus &&
4626 info->devfn == devfn) {
David Woodhouse109b9b02012-05-25 17:43:02 +01004627 unlink_domain_info(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004628 spin_unlock_irqrestore(&device_domain_lock, flags);
4629
Yu Zhao93a23a72009-05-18 13:51:37 +08004630 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004631 iommu_detach_dev(iommu, info->bus, info->devfn);
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004632 iommu_detach_dependent_devices(iommu, dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08004633 free_devinfo_mem(info);
4634
4635 spin_lock_irqsave(&device_domain_lock, flags);
4636
4637 if (found)
4638 break;
4639 else
4640 continue;
4641 }
4642
Joerg Roedel29a27712015-07-21 17:17:12 +02004643 /*
4644 * If there is no other devices under the same iommu owned by
4645 * this domain, clear this iommu in iommu_refcnt update iommu
4646 * count and coherency.
Weidong Hanc7151a82008-12-08 22:51:37 +08004647 */
David Woodhouse8bbc4412014-03-09 13:52:37 -07004648 if (info->iommu == iommu)
Quentin Lambert2f119c72015-02-06 10:59:53 +01004649 found = true;
Weidong Hanc7151a82008-12-08 22:51:37 +08004650 }
4651
Roland Dreier3e7abe22011-07-20 06:22:21 -07004652 spin_unlock_irqrestore(&device_domain_lock, flags);
4653
Weidong Hanc7151a82008-12-08 22:51:37 +08004654 if (found == 0) {
Jiang Liufb170fb2014-07-11 14:19:28 +08004655 domain_detach_iommu(domain, iommu);
4656 if (!domain_type_is_vm_or_si(domain))
4657 iommu_detach_domain(domain, iommu);
Weidong Hanc7151a82008-12-08 22:51:37 +08004658 }
Weidong Hanc7151a82008-12-08 22:51:37 +08004659}
4660
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004661static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08004662{
4663 int adjust_width;
4664
Robin Murphy0fb5fe82015-01-12 17:51:16 +00004665 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
4666 DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004667 domain_reserve_special_ranges(domain);
4668
4669 /* calculate AGAW */
4670 domain->gaw = guest_width;
4671 adjust_width = guestwidth_to_adjustwidth(guest_width);
4672 domain->agaw = width_to_agaw(adjust_width);
4673
Weidong Han5e98c4b2008-12-08 23:03:27 +08004674 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08004675 domain->iommu_snooping = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01004676 domain->iommu_superpage = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004677 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08004678
4679 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07004680 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004681 if (!domain->pgd)
4682 return -ENOMEM;
4683 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
4684 return 0;
4685}
4686
Joerg Roedel00a77de2015-03-26 13:43:08 +01004687static struct iommu_domain *intel_iommu_domain_alloc(unsigned type)
Kay, Allen M38717942008-09-09 18:37:29 +03004688{
Joerg Roedel5d450802008-12-03 14:52:32 +01004689 struct dmar_domain *dmar_domain;
Joerg Roedel00a77de2015-03-26 13:43:08 +01004690 struct iommu_domain *domain;
4691
4692 if (type != IOMMU_DOMAIN_UNMANAGED)
4693 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004694
Jiang Liuab8dfe22014-07-11 14:19:27 +08004695 dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE);
Joerg Roedel5d450802008-12-03 14:52:32 +01004696 if (!dmar_domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004697 pr_err("Can't allocate dmar_domain\n");
Joerg Roedel00a77de2015-03-26 13:43:08 +01004698 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004699 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004700 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004701 pr_err("Domain initialization failed\n");
Jiang Liu92d03cc2014-02-19 14:07:28 +08004702 domain_exit(dmar_domain);
Joerg Roedel00a77de2015-03-26 13:43:08 +01004703 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004704 }
Allen Kay8140a952011-10-14 12:32:17 -07004705 domain_update_iommu_cap(dmar_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004706
Joerg Roedel00a77de2015-03-26 13:43:08 +01004707 domain = &dmar_domain->domain;
Joerg Roedel8a0e7152012-01-26 19:40:54 +01004708 domain->geometry.aperture_start = 0;
4709 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
4710 domain->geometry.force_aperture = true;
4711
Joerg Roedel00a77de2015-03-26 13:43:08 +01004712 return domain;
Kay, Allen M38717942008-09-09 18:37:29 +03004713}
Kay, Allen M38717942008-09-09 18:37:29 +03004714
Joerg Roedel00a77de2015-03-26 13:43:08 +01004715static void intel_iommu_domain_free(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03004716{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004717 domain_exit(to_dmar_domain(domain));
Kay, Allen M38717942008-09-09 18:37:29 +03004718}
Kay, Allen M38717942008-09-09 18:37:29 +03004719
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004720static int intel_iommu_attach_device(struct iommu_domain *domain,
4721 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004722{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004723 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004724 struct intel_iommu *iommu;
4725 int addr_width;
David Woodhouse156baca2014-03-09 14:00:57 -07004726 u8 bus, devfn;
Kay, Allen M38717942008-09-09 18:37:29 +03004727
Alex Williamsonc875d2c2014-07-03 09:57:02 -06004728 if (device_is_rmrr_locked(dev)) {
4729 dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n");
4730 return -EPERM;
4731 }
4732
David Woodhouse7207d8f2014-03-09 16:31:06 -07004733 /* normally dev is not mapped */
4734 if (unlikely(domain_context_mapped(dev))) {
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004735 struct dmar_domain *old_domain;
4736
David Woodhouse1525a292014-03-06 16:19:30 +00004737 old_domain = find_domain(dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004738 if (old_domain) {
Jiang Liuab8dfe22014-07-11 14:19:27 +08004739 if (domain_type_is_vm_or_si(dmar_domain))
David Woodhousebf9c9ed2014-03-09 16:19:13 -07004740 domain_remove_one_dev_info(old_domain, dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004741 else
4742 domain_remove_dev_info(old_domain);
Joerg Roedel62c22162014-12-09 12:56:45 +01004743
4744 if (!domain_type_is_vm_or_si(old_domain) &&
4745 list_empty(&old_domain->devices))
4746 domain_exit(old_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004747 }
4748 }
4749
David Woodhouse156baca2014-03-09 14:00:57 -07004750 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004751 if (!iommu)
4752 return -ENODEV;
4753
4754 /* check if this iommu agaw is sufficient for max mapped address */
4755 addr_width = agaw_to_width(iommu->agaw);
Tom Lyona99c47a2010-05-17 08:20:45 +01004756 if (addr_width > cap_mgaw(iommu->cap))
4757 addr_width = cap_mgaw(iommu->cap);
4758
4759 if (dmar_domain->max_addr > (1LL << addr_width)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004760 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004761 "sufficient for the mapped address (%llx)\n",
Tom Lyona99c47a2010-05-17 08:20:45 +01004762 __func__, addr_width, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004763 return -EFAULT;
4764 }
Tom Lyona99c47a2010-05-17 08:20:45 +01004765 dmar_domain->gaw = addr_width;
4766
4767 /*
4768 * Knock out extra levels of page tables if necessary
4769 */
4770 while (iommu->agaw < dmar_domain->agaw) {
4771 struct dma_pte *pte;
4772
4773 pte = dmar_domain->pgd;
4774 if (dma_pte_present(pte)) {
Sheng Yang25cbff12010-06-12 19:21:42 +08004775 dmar_domain->pgd = (struct dma_pte *)
4776 phys_to_virt(dma_pte_addr(pte));
Jan Kiszka7a661012010-11-02 08:05:51 +01004777 free_pgtable_page(pte);
Tom Lyona99c47a2010-05-17 08:20:45 +01004778 }
4779 dmar_domain->agaw--;
4780 }
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004781
Joerg Roedel28ccce02015-07-21 14:45:31 +02004782 return domain_add_dev_info(dmar_domain, dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004783}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004784
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004785static void intel_iommu_detach_device(struct iommu_domain *domain,
4786 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004787{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004788 domain_remove_one_dev_info(to_dmar_domain(domain), dev);
Kay, Allen M38717942008-09-09 18:37:29 +03004789}
Kay, Allen M38717942008-09-09 18:37:29 +03004790
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004791static int intel_iommu_map(struct iommu_domain *domain,
4792 unsigned long iova, phys_addr_t hpa,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004793 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03004794{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004795 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004796 u64 max_addr;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004797 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004798 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004799
Joerg Roedeldde57a22008-12-03 15:04:09 +01004800 if (iommu_prot & IOMMU_READ)
4801 prot |= DMA_PTE_READ;
4802 if (iommu_prot & IOMMU_WRITE)
4803 prot |= DMA_PTE_WRITE;
Sheng Yang9cf066972009-03-18 15:33:07 +08004804 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
4805 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004806
David Woodhouse163cc522009-06-28 00:51:17 +01004807 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004808 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004809 u64 end;
4810
4811 /* check if minimum agaw is sufficient for mapped address */
Tom Lyon8954da12010-05-17 08:19:52 +01004812 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004813 if (end < max_addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004814 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004815 "sufficient for the mapped address (%llx)\n",
Tom Lyon8954da12010-05-17 08:19:52 +01004816 __func__, dmar_domain->gaw, max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004817 return -EFAULT;
4818 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01004819 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004820 }
David Woodhousead051222009-06-28 14:22:28 +01004821 /* Round up size to next multiple of PAGE_SIZE, if it and
4822 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01004823 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01004824 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
4825 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004826 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03004827}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004828
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004829static size_t intel_iommu_unmap(struct iommu_domain *domain,
David Woodhouseea8ea462014-03-05 17:09:32 +00004830 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004831{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004832 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
David Woodhouseea8ea462014-03-05 17:09:32 +00004833 struct page *freelist = NULL;
4834 struct intel_iommu *iommu;
4835 unsigned long start_pfn, last_pfn;
4836 unsigned int npages;
4837 int iommu_id, num, ndomains, level = 0;
Sheng Yang4b99d352009-07-08 11:52:52 +01004838
David Woodhouse5cf0a762014-03-19 16:07:49 +00004839 /* Cope with horrid API which requires us to unmap more than the
4840 size argument if it happens to be a large-page mapping. */
4841 if (!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level))
4842 BUG();
4843
4844 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
4845 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
4846
David Woodhouseea8ea462014-03-05 17:09:32 +00004847 start_pfn = iova >> VTD_PAGE_SHIFT;
4848 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
4849
4850 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
4851
4852 npages = last_pfn - start_pfn + 1;
4853
Joerg Roedel29a27712015-07-21 17:17:12 +02004854 for_each_domain_iommu(iommu_id, dmar_domain) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004855 iommu = g_iommus[iommu_id];
David Woodhouseea8ea462014-03-05 17:09:32 +00004856
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004857 /*
4858 * find bit position of dmar_domain
4859 */
4860 ndomains = cap_ndoms(iommu->cap);
4861 for_each_set_bit(num, iommu->domain_ids, ndomains) {
4862 if (get_iommu_domain(iommu, num) == dmar_domain)
4863 iommu_flush_iotlb_psi(iommu, dmar_domain,
4864 start_pfn, npages,
4865 !freelist, 0);
4866 }
David Woodhouseea8ea462014-03-05 17:09:32 +00004867
4868 }
4869
4870 dma_free_pagelist(freelist);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004871
David Woodhouse163cc522009-06-28 00:51:17 +01004872 if (dmar_domain->max_addr == iova + size)
4873 dmar_domain->max_addr = iova;
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004874
David Woodhouse5cf0a762014-03-19 16:07:49 +00004875 return size;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004876}
Kay, Allen M38717942008-09-09 18:37:29 +03004877
Joerg Roedeld14d6572008-12-03 15:06:57 +01004878static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547ac2013-03-29 01:23:58 +05304879 dma_addr_t iova)
Kay, Allen M38717942008-09-09 18:37:29 +03004880{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004881 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Kay, Allen M38717942008-09-09 18:37:29 +03004882 struct dma_pte *pte;
David Woodhouse5cf0a762014-03-19 16:07:49 +00004883 int level = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004884 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03004885
David Woodhouse5cf0a762014-03-19 16:07:49 +00004886 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
Kay, Allen M38717942008-09-09 18:37:29 +03004887 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004888 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03004889
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004890 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03004891}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004892
Joerg Roedel5d587b82014-09-05 10:50:45 +02004893static bool intel_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004894{
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004895 if (cap == IOMMU_CAP_CACHE_COHERENCY)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004896 return domain_update_iommu_snooping(NULL) == 1;
Tom Lyon323f99c2010-07-02 16:56:14 -04004897 if (cap == IOMMU_CAP_INTR_REMAP)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004898 return irq_remapping_enabled == 1;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004899
Joerg Roedel5d587b82014-09-05 10:50:45 +02004900 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004901}
4902
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004903static int intel_iommu_add_device(struct device *dev)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004904{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004905 struct intel_iommu *iommu;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004906 struct iommu_group *group;
David Woodhouse156baca2014-03-09 14:00:57 -07004907 u8 bus, devfn;
Alex Williamson70ae6f02011-10-21 15:56:11 -04004908
Alex Williamsona5459cf2014-06-12 16:12:31 -06004909 iommu = device_to_iommu(dev, &bus, &devfn);
4910 if (!iommu)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004911 return -ENODEV;
4912
Alex Williamsona5459cf2014-06-12 16:12:31 -06004913 iommu_device_link(iommu->iommu_dev, dev);
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004914
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004915 group = iommu_group_get_for_dev(dev);
Alex Williamson783f1572012-05-30 14:19:43 -06004916
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004917 if (IS_ERR(group))
4918 return PTR_ERR(group);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004919
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004920 iommu_group_put(group);
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004921 return 0;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004922}
4923
4924static void intel_iommu_remove_device(struct device *dev)
4925{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004926 struct intel_iommu *iommu;
4927 u8 bus, devfn;
4928
4929 iommu = device_to_iommu(dev, &bus, &devfn);
4930 if (!iommu)
4931 return;
4932
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004933 iommu_group_remove_device(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004934
4935 iommu_device_unlink(iommu->iommu_dev, dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004936}
4937
Thierry Redingb22f6432014-06-27 09:03:12 +02004938static const struct iommu_ops intel_iommu_ops = {
Joerg Roedel5d587b82014-09-05 10:50:45 +02004939 .capable = intel_iommu_capable,
Joerg Roedel00a77de2015-03-26 13:43:08 +01004940 .domain_alloc = intel_iommu_domain_alloc,
4941 .domain_free = intel_iommu_domain_free,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004942 .attach_dev = intel_iommu_attach_device,
4943 .detach_dev = intel_iommu_detach_device,
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004944 .map = intel_iommu_map,
4945 .unmap = intel_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07004946 .map_sg = default_iommu_map_sg,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004947 .iova_to_phys = intel_iommu_iova_to_phys,
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004948 .add_device = intel_iommu_add_device,
4949 .remove_device = intel_iommu_remove_device,
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +02004950 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004951};
David Woodhouse9af88142009-02-13 23:18:03 +00004952
Daniel Vetter94526182013-01-20 23:50:13 +01004953static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
4954{
4955 /* G4x/GM45 integrated gfx dmar support is totally busted. */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004956 pr_info("Disabling IOMMU for graphics on this chipset\n");
Daniel Vetter94526182013-01-20 23:50:13 +01004957 dmar_map_gfx = 0;
4958}
4959
4960DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
4961DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
4962DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
4963DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
4964DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
4965DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
4966DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
4967
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004968static void quirk_iommu_rwbf(struct pci_dev *dev)
David Woodhouse9af88142009-02-13 23:18:03 +00004969{
4970 /*
4971 * Mobile 4 Series Chipset neglects to set RWBF capability,
Daniel Vetter210561f2013-01-21 19:48:59 +01004972 * but needs it. Same seems to hold for the desktop versions.
David Woodhouse9af88142009-02-13 23:18:03 +00004973 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004974 pr_info("Forcing write-buffer flush capability\n");
David Woodhouse9af88142009-02-13 23:18:03 +00004975 rwbf_quirk = 1;
4976}
4977
4978DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
Daniel Vetter210561f2013-01-21 19:48:59 +01004979DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
4980DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
4981DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
4982DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
4983DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
4984DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
David Woodhousee0fc7e02009-09-30 09:12:17 -07004985
Adam Jacksoneecfd572010-08-25 21:17:34 +01004986#define GGC 0x52
4987#define GGC_MEMORY_SIZE_MASK (0xf << 8)
4988#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
4989#define GGC_MEMORY_SIZE_1M (0x1 << 8)
4990#define GGC_MEMORY_SIZE_2M (0x3 << 8)
4991#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
4992#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
4993#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
4994#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
4995
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004996static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
David Woodhouse9eecabc2010-09-21 22:28:23 +01004997{
4998 unsigned short ggc;
4999
Adam Jacksoneecfd572010-08-25 21:17:34 +01005000 if (pci_read_config_word(dev, GGC, &ggc))
David Woodhouse9eecabc2010-09-21 22:28:23 +01005001 return;
5002
Adam Jacksoneecfd572010-08-25 21:17:34 +01005003 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005004 pr_info("BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
David Woodhouse9eecabc2010-09-21 22:28:23 +01005005 dmar_map_gfx = 0;
David Woodhouse6fbcfb32011-09-25 19:11:14 -07005006 } else if (dmar_map_gfx) {
5007 /* we have to ensure the gfx device is idle before we flush */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005008 pr_info("Disabling batched IOTLB flush on Ironlake\n");
David Woodhouse6fbcfb32011-09-25 19:11:14 -07005009 intel_iommu_strict = 1;
5010 }
David Woodhouse9eecabc2010-09-21 22:28:23 +01005011}
5012DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
5013DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
5014DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
5015DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
5016
David Woodhousee0fc7e02009-09-30 09:12:17 -07005017/* On Tylersburg chipsets, some BIOSes have been known to enable the
5018 ISOCH DMAR unit for the Azalia sound device, but not give it any
5019 TLB entries, which causes it to deadlock. Check for that. We do
5020 this in a function called from init_dmars(), instead of in a PCI
5021 quirk, because we don't want to print the obnoxious "BIOS broken"
5022 message if VT-d is actually disabled.
5023*/
5024static void __init check_tylersburg_isoch(void)
5025{
5026 struct pci_dev *pdev;
5027 uint32_t vtisochctrl;
5028
5029 /* If there's no Azalia in the system anyway, forget it. */
5030 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
5031 if (!pdev)
5032 return;
5033 pci_dev_put(pdev);
5034
5035 /* System Management Registers. Might be hidden, in which case
5036 we can't do the sanity check. But that's OK, because the
5037 known-broken BIOSes _don't_ actually hide it, so far. */
5038 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
5039 if (!pdev)
5040 return;
5041
5042 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
5043 pci_dev_put(pdev);
5044 return;
5045 }
5046
5047 pci_dev_put(pdev);
5048
5049 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
5050 if (vtisochctrl & 1)
5051 return;
5052
5053 /* Drop all bits other than the number of TLB entries */
5054 vtisochctrl &= 0x1c;
5055
5056 /* If we have the recommended number of TLB entries (16), fine. */
5057 if (vtisochctrl == 0x10)
5058 return;
5059
5060 /* Zero TLB entries? You get to ride the short bus to school. */
5061 if (!vtisochctrl) {
5062 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
5063 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
5064 dmi_get_system_info(DMI_BIOS_VENDOR),
5065 dmi_get_system_info(DMI_BIOS_VERSION),
5066 dmi_get_system_info(DMI_PRODUCT_VERSION));
5067 iommu_identity_mapping |= IDENTMAP_AZALIA;
5068 return;
5069 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005070
5071 pr_warn("Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
David Woodhousee0fc7e02009-09-30 09:12:17 -07005072 vtisochctrl);
5073}