blob: 8834765e90c68a6736406a7bc26cd2e206b93cb1 [file] [log] [blame]
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001/*
David Woodhouseea8ea462014-03-05 17:09:32 +00002 * Copyright © 2006-2014 Intel Corporation.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
David Woodhouseea8ea462014-03-05 17:09:32 +000013 * Authors: David Woodhouse <dwmw2@infradead.org>,
14 * Ashok Raj <ashok.raj@intel.com>,
15 * Shaohua Li <shaohua.li@intel.com>,
16 * Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>,
17 * Fenghua Yu <fenghua.yu@intel.com>
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020018 * Joerg Roedel <jroedel@suse.de>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070019 */
20
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020021#define pr_fmt(fmt) "DMAR: " fmt
22
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070023#include <linux/init.h>
24#include <linux/bitmap.h>
mark gross5e0d2a62008-03-04 15:22:08 -080025#include <linux/debugfs.h>
Paul Gortmaker54485c32011-10-29 10:26:25 -040026#include <linux/export.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070027#include <linux/slab.h>
28#include <linux/irq.h>
29#include <linux/interrupt.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070030#include <linux/spinlock.h>
31#include <linux/pci.h>
32#include <linux/dmar.h>
33#include <linux/dma-mapping.h>
34#include <linux/mempool.h>
Jiang Liu75f05562014-02-19 14:07:37 +080035#include <linux/memory.h>
mark gross5e0d2a62008-03-04 15:22:08 -080036#include <linux/timer.h>
Kay, Allen M38717942008-09-09 18:37:29 +030037#include <linux/iova.h>
Joerg Roedel5d450802008-12-03 14:52:32 +010038#include <linux/iommu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030039#include <linux/intel-iommu.h>
Rafael J. Wysocki134fac32011-03-23 22:16:14 +010040#include <linux/syscore_ops.h>
Shane Wang69575d32009-09-01 18:25:07 -070041#include <linux/tboot.h>
Stephen Rothwelladb2fe02009-08-31 15:24:23 +100042#include <linux/dmi.h>
Joerg Roedel5cdede22011-04-04 15:55:18 +020043#include <linux/pci-ats.h>
Tejun Heo0ee332c2011-12-08 10:22:09 -080044#include <linux/memblock.h>
Akinobu Mita36746432014-06-04 16:06:51 -070045#include <linux/dma-contiguous.h>
Joerg Roedel091d42e2015-06-12 11:56:10 +020046#include <linux/crash_dump.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070047#include <asm/irq_remapping.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070048#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090049#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070050
Joerg Roedel078e1ee2012-09-26 12:44:43 +020051#include "irq_remapping.h"
52
Fenghua Yu5b6985c2008-10-16 18:02:32 -070053#define ROOT_SIZE VTD_PAGE_SIZE
54#define CONTEXT_SIZE VTD_PAGE_SIZE
55
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070056#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
David Woodhouse18436af2015-03-25 15:05:47 +000057#define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070058#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
David Woodhousee0fc7e02009-09-30 09:12:17 -070059#define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070060
61#define IOAPIC_RANGE_START (0xfee00000)
62#define IOAPIC_RANGE_END (0xfeefffff)
63#define IOVA_START_ADDR (0x1000)
64
65#define DEFAULT_DOMAIN_ADDRESS_WIDTH 48
66
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070067#define MAX_AGAW_WIDTH 64
Jiang Liu5c645b32014-01-06 14:18:12 +080068#define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT)
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070069
David Woodhouse2ebe3152009-09-19 07:34:04 -070070#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
71#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
72
73/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
74 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
75#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
76 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
77#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070078
Robin Murphy1b722502015-01-12 17:51:15 +000079/* IO virtual address start page frame number */
80#define IOVA_START_PFN (1)
81
Mark McLoughlinf27be032008-11-20 15:49:43 +000082#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
Yang Hongyang284901a2009-04-06 19:01:15 -070083#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
Yang Hongyang6a355282009-04-06 19:01:13 -070084#define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64))
mark gross5e0d2a62008-03-04 15:22:08 -080085
Andrew Mortondf08cdc2010-09-22 13:05:11 -070086/* page table handling */
87#define LEVEL_STRIDE (9)
88#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
89
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +020090/*
91 * This bitmap is used to advertise the page sizes our hardware support
92 * to the IOMMU core, which will then use this information to split
93 * physically contiguous memory regions it is mapping into page sizes
94 * that we support.
95 *
96 * Traditionally the IOMMU core just handed us the mappings directly,
97 * after making sure the size is an order of a 4KiB page and that the
98 * mapping has natural alignment.
99 *
100 * To retain this behavior, we currently advertise that we support
101 * all page sizes that are an order of 4KiB.
102 *
103 * If at some point we'd like to utilize the IOMMU core's new behavior,
104 * we could change this to advertise the real page sizes we support.
105 */
106#define INTEL_IOMMU_PGSIZES (~0xFFFUL)
107
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700108static inline int agaw_to_level(int agaw)
109{
110 return agaw + 2;
111}
112
113static inline int agaw_to_width(int agaw)
114{
Jiang Liu5c645b32014-01-06 14:18:12 +0800115 return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700116}
117
118static inline int width_to_agaw(int width)
119{
Jiang Liu5c645b32014-01-06 14:18:12 +0800120 return DIV_ROUND_UP(width - 30, LEVEL_STRIDE);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700121}
122
123static inline unsigned int level_to_offset_bits(int level)
124{
125 return (level - 1) * LEVEL_STRIDE;
126}
127
128static inline int pfn_level_offset(unsigned long pfn, int level)
129{
130 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
131}
132
133static inline unsigned long level_mask(int level)
134{
135 return -1UL << level_to_offset_bits(level);
136}
137
138static inline unsigned long level_size(int level)
139{
140 return 1UL << level_to_offset_bits(level);
141}
142
143static inline unsigned long align_to_level(unsigned long pfn, int level)
144{
145 return (pfn + level_size(level) - 1) & level_mask(level);
146}
David Woodhousefd18de52009-05-10 23:57:41 +0100147
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100148static inline unsigned long lvl_to_nr_pages(unsigned int lvl)
149{
Jiang Liu5c645b32014-01-06 14:18:12 +0800150 return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100151}
152
David Woodhousedd4e8312009-06-27 16:21:20 +0100153/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
154 are never going to work. */
155static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
156{
157 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
158}
159
160static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
161{
162 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
163}
164static inline unsigned long page_to_dma_pfn(struct page *pg)
165{
166 return mm_to_dma_pfn(page_to_pfn(pg));
167}
168static inline unsigned long virt_to_dma_pfn(void *p)
169{
170 return page_to_dma_pfn(virt_to_page(p));
171}
172
Weidong Hand9630fe2008-12-08 11:06:32 +0800173/* global iommu list, set NULL for ignored DMAR units */
174static struct intel_iommu **g_iommus;
175
David Woodhousee0fc7e02009-09-30 09:12:17 -0700176static void __init check_tylersburg_isoch(void);
David Woodhouse9af88142009-02-13 23:18:03 +0000177static int rwbf_quirk;
178
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000179/*
Joseph Cihulab7792602011-05-03 00:08:37 -0700180 * set to 1 to panic kernel if can't successfully enable VT-d
181 * (used when kernel is launched w/ TXT)
182 */
183static int force_on = 0;
184
185/*
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000186 * 0: Present
187 * 1-11: Reserved
188 * 12-63: Context Ptr (12 - (haw-1))
189 * 64-127: Reserved
190 */
191struct root_entry {
David Woodhouse03ecc322015-02-13 14:35:21 +0000192 u64 lo;
193 u64 hi;
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000194};
195#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000196
Joerg Roedel091d42e2015-06-12 11:56:10 +0200197/*
198 * Take a root_entry and return the Lower Context Table Pointer (LCTP)
199 * if marked present.
200 */
201static phys_addr_t root_entry_lctp(struct root_entry *re)
202{
203 if (!(re->lo & 1))
204 return 0;
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000205
Joerg Roedel091d42e2015-06-12 11:56:10 +0200206 return re->lo & VTD_PAGE_MASK;
207}
208
209/*
210 * Take a root_entry and return the Upper Context Table Pointer (UCTP)
211 * if marked present.
212 */
213static phys_addr_t root_entry_uctp(struct root_entry *re)
214{
215 if (!(re->hi & 1))
216 return 0;
217
218 return re->hi & VTD_PAGE_MASK;
219}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000220/*
221 * low 64 bits:
222 * 0: present
223 * 1: fault processing disable
224 * 2-3: translation type
225 * 12-63: address space root
226 * high 64 bits:
227 * 0-2: address width
228 * 3-6: aval
229 * 8-23: domain id
230 */
231struct context_entry {
232 u64 lo;
233 u64 hi;
234};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000235
Joerg Roedelcf484d02015-06-12 12:21:46 +0200236static inline void context_clear_pasid_enable(struct context_entry *context)
237{
238 context->lo &= ~(1ULL << 11);
239}
240
241static inline bool context_pasid_enabled(struct context_entry *context)
242{
243 return !!(context->lo & (1ULL << 11));
244}
245
246static inline void context_set_copied(struct context_entry *context)
247{
248 context->hi |= (1ull << 3);
249}
250
251static inline bool context_copied(struct context_entry *context)
252{
253 return !!(context->hi & (1ULL << 3));
254}
255
256static inline bool __context_present(struct context_entry *context)
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000257{
258 return (context->lo & 1);
259}
Joerg Roedelcf484d02015-06-12 12:21:46 +0200260
261static inline bool context_present(struct context_entry *context)
262{
263 return context_pasid_enabled(context) ?
264 __context_present(context) :
265 __context_present(context) && !context_copied(context);
266}
267
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000268static inline void context_set_present(struct context_entry *context)
269{
270 context->lo |= 1;
271}
272
273static inline void context_set_fault_enable(struct context_entry *context)
274{
275 context->lo &= (((u64)-1) << 2) | 1;
276}
277
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000278static inline void context_set_translation_type(struct context_entry *context,
279 unsigned long value)
280{
281 context->lo &= (((u64)-1) << 4) | 3;
282 context->lo |= (value & 3) << 2;
283}
284
285static inline void context_set_address_root(struct context_entry *context,
286 unsigned long value)
287{
Li, Zhen-Hua1a2262f2014-11-05 15:30:19 +0800288 context->lo &= ~VTD_PAGE_MASK;
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000289 context->lo |= value & VTD_PAGE_MASK;
290}
291
292static inline void context_set_address_width(struct context_entry *context,
293 unsigned long value)
294{
295 context->hi |= value & 7;
296}
297
298static inline void context_set_domain_id(struct context_entry *context,
299 unsigned long value)
300{
301 context->hi |= (value & ((1 << 16) - 1)) << 8;
302}
303
Joerg Roedeldbcd8612015-06-12 12:02:09 +0200304static inline int context_domain_id(struct context_entry *c)
305{
306 return((c->hi >> 8) & 0xffff);
307}
308
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000309static inline void context_clear_entry(struct context_entry *context)
310{
311 context->lo = 0;
312 context->hi = 0;
313}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000314
Mark McLoughlin622ba122008-11-20 15:49:46 +0000315/*
316 * 0: readable
317 * 1: writable
318 * 2-6: reserved
319 * 7: super page
Sheng Yang9cf06692009-03-18 15:33:07 +0800320 * 8-10: available
321 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000322 * 12-63: Host physcial address
323 */
324struct dma_pte {
325 u64 val;
326};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000327
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000328static inline void dma_clear_pte(struct dma_pte *pte)
329{
330 pte->val = 0;
331}
332
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000333static inline u64 dma_pte_addr(struct dma_pte *pte)
334{
David Woodhousec85994e2009-07-01 19:21:24 +0100335#ifdef CONFIG_64BIT
336 return pte->val & VTD_PAGE_MASK;
337#else
338 /* Must have a full atomic 64-bit read */
David Woodhouse1a8bd482010-08-10 01:38:53 +0100339 return __cmpxchg64(&pte->val, 0ULL, 0ULL) & VTD_PAGE_MASK;
David Woodhousec85994e2009-07-01 19:21:24 +0100340#endif
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000341}
342
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000343static inline bool dma_pte_present(struct dma_pte *pte)
344{
345 return (pte->val & 3) != 0;
346}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000347
Allen Kay4399c8b2011-10-14 12:32:46 -0700348static inline bool dma_pte_superpage(struct dma_pte *pte)
349{
Joerg Roedelc3c75eb2014-07-04 11:19:10 +0200350 return (pte->val & DMA_PTE_LARGE_PAGE);
Allen Kay4399c8b2011-10-14 12:32:46 -0700351}
352
David Woodhouse75e6bf92009-07-02 11:21:16 +0100353static inline int first_pte_in_page(struct dma_pte *pte)
354{
355 return !((unsigned long)pte & ~VTD_PAGE_MASK);
356}
357
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700358/*
359 * This domain is a statically identity mapping domain.
360 * 1. This domain creats a static 1:1 mapping to all usable memory.
361 * 2. It maps to each iommu if successful.
362 * 3. Each iommu mapps to this domain if successful.
363 */
David Woodhouse19943b02009-08-04 16:19:20 +0100364static struct dmar_domain *si_domain;
365static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700366
Joerg Roedel28ccce02015-07-21 14:45:31 +0200367/*
368 * Domain represents a virtual machine, more than one devices
Weidong Han1ce28fe2008-12-08 16:35:39 +0800369 * across iommus may be owned in one domain, e.g. kvm guest.
370 */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800371#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 0)
Weidong Han1ce28fe2008-12-08 16:35:39 +0800372
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700373/* si_domain contains mulitple devices */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800374#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 1)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700375
Joerg Roedel29a27712015-07-21 17:17:12 +0200376#define for_each_domain_iommu(idx, domain) \
377 for (idx = 0; idx < g_num_of_iommus; idx++) \
378 if (domain->iommu_refcnt[idx])
379
Mark McLoughlin99126f72008-11-20 15:49:47 +0000380struct dmar_domain {
Suresh Siddha4c923d42009-10-02 11:01:24 -0700381 int nid; /* node id */
Joerg Roedel29a27712015-07-21 17:17:12 +0200382
383 unsigned iommu_refcnt[DMAR_UNITS_SUPPORTED];
384 /* Refcount of devices per iommu */
385
Mark McLoughlin99126f72008-11-20 15:49:47 +0000386
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +0200387 u16 iommu_did[DMAR_UNITS_SUPPORTED];
388 /* Domain ids per IOMMU. Use u16 since
389 * domain ids are 16 bit wide according
390 * to VT-d spec, section 9.3 */
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 Hanfe40f1e2008-12-08 23:10:23 +0800409 u64 max_addr; /* maximum mapped address */
Joerg Roedel00a77de2015-03-26 13:43:08 +0100410
411 struct iommu_domain domain; /* generic domain data structure for
412 iommu core */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000413};
414
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000415/* PCI domain-device relationship */
416struct device_domain_info {
417 struct list_head link; /* link to domain siblings */
418 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100419 u8 bus; /* PCI bus number */
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000420 u8 devfn; /* PCI devfn number */
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000421 struct device *dev; /* it's NULL for PCIe-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800422 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dacb2008-11-20 15:49:48 +0000423 struct dmar_domain *domain; /* pointer to domain */
424};
425
Jiang Liub94e4112014-02-19 14:07:25 +0800426struct dmar_rmrr_unit {
427 struct list_head list; /* list of rmrr units */
428 struct acpi_dmar_header *hdr; /* ACPI header */
429 u64 base_address; /* reserved base address*/
430 u64 end_address; /* reserved end address */
David Woodhouse832bd852014-03-07 15:08:36 +0000431 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800432 int devices_cnt; /* target device count */
433};
434
435struct dmar_atsr_unit {
436 struct list_head list; /* list of ATSR units */
437 struct acpi_dmar_header *hdr; /* ACPI header */
David Woodhouse832bd852014-03-07 15:08:36 +0000438 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800439 int devices_cnt; /* target device count */
440 u8 include_all:1; /* include all ports */
441};
442
443static LIST_HEAD(dmar_atsr_units);
444static LIST_HEAD(dmar_rmrr_units);
445
446#define for_each_rmrr_units(rmrr) \
447 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
448
mark gross5e0d2a62008-03-04 15:22:08 -0800449static void flush_unmaps_timeout(unsigned long data);
450
Jiang Liub707cb02014-01-06 14:18:26 +0800451static DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
mark gross5e0d2a62008-03-04 15:22:08 -0800452
mark gross80b20dd2008-04-18 13:53:58 -0700453#define HIGH_WATER_MARK 250
454struct deferred_flush_tables {
455 int next;
456 struct iova *iova[HIGH_WATER_MARK];
457 struct dmar_domain *domain[HIGH_WATER_MARK];
David Woodhouseea8ea462014-03-05 17:09:32 +0000458 struct page *freelist[HIGH_WATER_MARK];
mark gross80b20dd2008-04-18 13:53:58 -0700459};
460
461static struct deferred_flush_tables *deferred_flush;
462
mark gross5e0d2a62008-03-04 15:22:08 -0800463/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800464static int g_num_of_iommus;
465
466static DEFINE_SPINLOCK(async_umap_flush_lock);
467static LIST_HEAD(unmaps_to_do);
468
469static int timer_on;
470static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800471
Jiang Liu92d03cc2014-02-19 14:07:28 +0800472static void domain_exit(struct dmar_domain *domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700473static void domain_remove_dev_info(struct dmar_domain *domain);
Joerg Roedele6de0f82015-07-22 16:30:36 +0200474static void dmar_remove_one_dev_info(struct dmar_domain *domain,
475 struct device *dev);
Joerg Roedel127c7612015-07-23 17:44:46 +0200476static void __dmar_remove_one_dev_info(struct device_domain_info *info);
Joerg Roedel2452d9d2015-07-23 16:20:14 +0200477static void domain_context_clear(struct intel_iommu *iommu,
478 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 Woodhouse206a73c2009-07-01 19:30:28 +0100987 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700988 return NULL;
David Woodhouse206a73c2009-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 Woodhouse595badf52009-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 struct device_domain_info *info;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001408 struct pci_dev *pdev;
Yu Zhao93a23a72009-05-18 13:51:37 +08001409
Joerg Roedel55d94042015-07-22 16:50:40 +02001410 assert_spin_locked(&device_domain_lock);
1411
Yu Zhao93a23a72009-05-18 13:51:37 +08001412 if (!ecap_dev_iotlb_support(iommu->ecap))
1413 return NULL;
1414
1415 if (!iommu->qi)
1416 return NULL;
1417
Yu Zhao93a23a72009-05-18 13:51:37 +08001418 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 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001424
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001425 if (!found || !info->dev || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001426 return NULL;
1427
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001428 pdev = to_pci_dev(info->dev);
1429
1430 if (!pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS))
Yu Zhao93a23a72009-05-18 13:51:37 +08001431 return NULL;
1432
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001433 if (!dmar_find_matched_atsr_unit(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001434 return NULL;
1435
Yu Zhao93a23a72009-05-18 13:51:37 +08001436 return info;
1437}
1438
1439static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1440{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001441 if (!info || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001442 return;
1443
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001444 pci_enable_ats(to_pci_dev(info->dev), VTD_PAGE_SHIFT);
Yu Zhao93a23a72009-05-18 13:51:37 +08001445}
1446
1447static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1448{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001449 if (!info->dev || !dev_is_pci(info->dev) ||
1450 !pci_ats_enabled(to_pci_dev(info->dev)))
Yu Zhao93a23a72009-05-18 13:51:37 +08001451 return;
1452
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001453 pci_disable_ats(to_pci_dev(info->dev));
Yu Zhao93a23a72009-05-18 13:51:37 +08001454}
1455
1456static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1457 u64 addr, unsigned mask)
1458{
1459 u16 sid, qdep;
1460 unsigned long flags;
1461 struct device_domain_info *info;
1462
1463 spin_lock_irqsave(&device_domain_lock, flags);
1464 list_for_each_entry(info, &domain->devices, link) {
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001465 struct pci_dev *pdev;
1466 if (!info->dev || !dev_is_pci(info->dev))
1467 continue;
1468
1469 pdev = to_pci_dev(info->dev);
1470 if (!pci_ats_enabled(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001471 continue;
1472
1473 sid = info->bus << 8 | info->devfn;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001474 qdep = pci_ats_queue_depth(pdev);
Yu Zhao93a23a72009-05-18 13:51:37 +08001475 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1476 }
1477 spin_unlock_irqrestore(&device_domain_lock, flags);
1478}
1479
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001480static void iommu_flush_iotlb_psi(struct intel_iommu *iommu,
1481 struct dmar_domain *domain,
1482 unsigned long pfn, unsigned int pages,
1483 int ih, int map)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001484{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001485 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001486 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001487 u16 did = domain->iommu_did[iommu->seq_id];
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001488
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001489 BUG_ON(pages == 0);
1490
David Woodhouseea8ea462014-03-05 17:09:32 +00001491 if (ih)
1492 ih = 1 << 6;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001493 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001494 * Fallback to domain selective flush if no PSI support or the size is
1495 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001496 * PSI requires page size to be 2 ^ x, and the base address is naturally
1497 * aligned to the size
1498 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001499 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1500 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001501 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001502 else
David Woodhouseea8ea462014-03-05 17:09:32 +00001503 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001504 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001505
1506 /*
Nadav Amit82653632010-04-01 13:24:40 +03001507 * In caching mode, changes of pages from non-present to present require
1508 * flush. However, device IOTLB doesn't need to be flushed in this case.
Yu Zhaobf92df32009-06-29 11:31:45 +08001509 */
Nadav Amit82653632010-04-01 13:24:40 +03001510 if (!cap_caching_mode(iommu->cap) || !map)
Joerg Roedel9452d5b2015-07-21 10:00:56 +02001511 iommu_flush_dev_iotlb(get_iommu_domain(iommu, did),
1512 addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001513}
1514
mark grossf8bab732008-02-08 04:18:38 -08001515static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1516{
1517 u32 pmen;
1518 unsigned long flags;
1519
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001520 raw_spin_lock_irqsave(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001521 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1522 pmen &= ~DMA_PMEN_EPM;
1523 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1524
1525 /* wait for the protected region status bit to clear */
1526 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1527 readl, !(pmen & DMA_PMEN_PRS), pmen);
1528
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001529 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001530}
1531
Jiang Liu2a41cce2014-07-11 14:19:33 +08001532static void iommu_enable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001533{
1534 u32 sts;
1535 unsigned long flags;
1536
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001537 raw_spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001538 iommu->gcmd |= DMA_GCMD_TE;
1539 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001540
1541 /* Make sure hardware complete it */
1542 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001543 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001544
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001545 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001546}
1547
Jiang Liu2a41cce2014-07-11 14:19:33 +08001548static void iommu_disable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001549{
1550 u32 sts;
1551 unsigned long flag;
1552
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001553 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001554 iommu->gcmd &= ~DMA_GCMD_TE;
1555 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1556
1557 /* Make sure hardware complete it */
1558 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001559 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001560
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001561 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001562}
1563
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001564
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001565static int iommu_init_domains(struct intel_iommu *iommu)
1566{
Joerg Roedel8bf47812015-07-21 10:41:21 +02001567 u32 ndomains, nlongs;
1568 size_t size;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001569
1570 ndomains = cap_ndoms(iommu->cap);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001571 pr_debug("%s: Number of Domains supported <%d>\n",
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001572 iommu->name, ndomains);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001573 nlongs = BITS_TO_LONGS(ndomains);
1574
Donald Dutile94a91b502009-08-20 16:51:34 -04001575 spin_lock_init(&iommu->lock);
1576
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001577 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1578 if (!iommu->domain_ids) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001579 pr_err("%s: Allocating domain id array failed\n",
1580 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001581 return -ENOMEM;
1582 }
Joerg Roedel8bf47812015-07-21 10:41:21 +02001583
1584 size = ((ndomains >> 8) + 1) * sizeof(struct dmar_domain **);
1585 iommu->domains = kzalloc(size, GFP_KERNEL);
1586
1587 if (iommu->domains) {
1588 size = 256 * sizeof(struct dmar_domain *);
1589 iommu->domains[0] = kzalloc(size, GFP_KERNEL);
1590 }
1591
1592 if (!iommu->domains || !iommu->domains[0]) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001593 pr_err("%s: Allocating domain array failed\n",
1594 iommu->name);
Jiang Liu852bdb02014-01-06 14:18:11 +08001595 kfree(iommu->domain_ids);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001596 kfree(iommu->domains);
Jiang Liu852bdb02014-01-06 14:18:11 +08001597 iommu->domain_ids = NULL;
Joerg Roedel8bf47812015-07-21 10:41:21 +02001598 iommu->domains = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001599 return -ENOMEM;
1600 }
1601
Joerg Roedel8bf47812015-07-21 10:41:21 +02001602
1603
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001604 /*
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001605 * If Caching mode is set, then invalid translations are tagged
1606 * with domain-id 0, hence we need to pre-allocate it. We also
1607 * use domain-id 0 as a marker for non-allocated domain-id, so
1608 * make sure it is not used for a real domain.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001609 */
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001610 set_bit(0, iommu->domain_ids);
1611
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001612 return 0;
1613}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001614
Jiang Liuffebeb42014-11-09 22:48:02 +08001615static void disable_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001616{
Joerg Roedel29a27712015-07-21 17:17:12 +02001617 struct device_domain_info *info, *tmp;
Joerg Roedel55d94042015-07-22 16:50:40 +02001618 unsigned long flags;
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 Roedel55d94042015-07-22 16:50:40 +02001623 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001624 list_for_each_entry_safe(info, tmp, &device_domain_list, global) {
1625 struct dmar_domain *domain;
1626
1627 if (info->iommu != iommu)
1628 continue;
1629
1630 if (!info->dev || !info->domain)
1631 continue;
1632
1633 domain = info->domain;
1634
Joerg Roedele6de0f82015-07-22 16:30:36 +02001635 dmar_remove_one_dev_info(domain, info->dev);
Joerg Roedel29a27712015-07-21 17:17:12 +02001636
1637 if (!domain_type_is_vm_or_si(domain))
1638 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001639 }
Joerg Roedel55d94042015-07-22 16:50:40 +02001640 spin_unlock_irqrestore(&device_domain_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001641
1642 if (iommu->gcmd & DMA_GCMD_TE)
1643 iommu_disable_translation(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08001644}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001645
Jiang Liuffebeb42014-11-09 22:48:02 +08001646static void free_dmar_iommu(struct intel_iommu *iommu)
1647{
1648 if ((iommu->domains) && (iommu->domain_ids)) {
Joerg Roedel8bf47812015-07-21 10:41:21 +02001649 int elems = (cap_ndoms(iommu->cap) >> 8) + 1;
1650 int i;
1651
1652 for (i = 0; i < elems; i++)
1653 kfree(iommu->domains[i]);
Jiang Liuffebeb42014-11-09 22:48:02 +08001654 kfree(iommu->domains);
1655 kfree(iommu->domain_ids);
1656 iommu->domains = NULL;
1657 iommu->domain_ids = NULL;
1658 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001659
Weidong Hand9630fe2008-12-08 11:06:32 +08001660 g_iommus[iommu->seq_id] = NULL;
1661
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001662 /* free context mapping */
1663 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001664}
1665
Jiang Liuab8dfe22014-07-11 14:19:27 +08001666static struct dmar_domain *alloc_domain(int flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001667{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001668 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001669
1670 domain = alloc_domain_mem();
1671 if (!domain)
1672 return NULL;
1673
Jiang Liuab8dfe22014-07-11 14:19:27 +08001674 memset(domain, 0, sizeof(*domain));
Suresh Siddha4c923d42009-10-02 11:01:24 -07001675 domain->nid = -1;
Jiang Liuab8dfe22014-07-11 14:19:27 +08001676 domain->flags = flags;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001677 INIT_LIST_HEAD(&domain->devices);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001678
1679 return domain;
1680}
1681
Joerg Roedeld160aca2015-07-22 11:52:53 +02001682/* Must be called with iommu->lock */
1683static int domain_attach_iommu(struct dmar_domain *domain,
1684 struct intel_iommu *iommu)
Jiang Liufb170fb2014-07-11 14:19:28 +08001685{
Jiang Liufb170fb2014-07-11 14:19:28 +08001686 unsigned long ndomains;
Joerg Roedel55d94042015-07-22 16:50:40 +02001687 int num;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001688
Joerg Roedel55d94042015-07-22 16:50:40 +02001689 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001690 assert_spin_locked(&iommu->lock);
Jiang Liufb170fb2014-07-11 14:19:28 +08001691
Joerg Roedel29a27712015-07-21 17:17:12 +02001692 domain->iommu_refcnt[iommu->seq_id] += 1;
1693 domain->iommu_count += 1;
1694 if (domain->iommu_refcnt[iommu->seq_id] == 1) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02001695 ndomains = cap_ndoms(iommu->cap);
1696 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1697
1698 if (num >= ndomains) {
1699 pr_err("%s: No free domain ids\n", iommu->name);
1700 domain->iommu_refcnt[iommu->seq_id] -= 1;
1701 domain->iommu_count -= 1;
Joerg Roedel55d94042015-07-22 16:50:40 +02001702 return -ENOSPC;
Joerg Roedeld160aca2015-07-22 11:52:53 +02001703 }
1704
1705 set_bit(num, iommu->domain_ids);
1706 set_iommu_domain(iommu, num, domain);
1707
1708 domain->iommu_did[iommu->seq_id] = num;
1709 domain->nid = iommu->node;
1710
Jiang Liufb170fb2014-07-11 14:19:28 +08001711 domain_update_iommu_cap(domain);
1712 }
Joerg Roedeld160aca2015-07-22 11:52:53 +02001713
Joerg Roedel55d94042015-07-22 16:50:40 +02001714 return 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001715}
1716
1717static int domain_detach_iommu(struct dmar_domain *domain,
1718 struct intel_iommu *iommu)
1719{
Joerg Roedeld160aca2015-07-22 11:52:53 +02001720 int num, count = INT_MAX;
Joerg Roedeld160aca2015-07-22 11:52:53 +02001721
Joerg Roedel55d94042015-07-22 16:50:40 +02001722 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001723 assert_spin_locked(&iommu->lock);
Jiang Liufb170fb2014-07-11 14:19:28 +08001724
Joerg Roedel29a27712015-07-21 17:17:12 +02001725 domain->iommu_refcnt[iommu->seq_id] -= 1;
1726 count = --domain->iommu_count;
1727 if (domain->iommu_refcnt[iommu->seq_id] == 0) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02001728 num = domain->iommu_did[iommu->seq_id];
1729 clear_bit(num, iommu->domain_ids);
1730 set_iommu_domain(iommu, num, NULL);
1731
Jiang Liufb170fb2014-07-11 14:19:28 +08001732 domain_update_iommu_cap(domain);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001733 domain->iommu_did[iommu->seq_id] = 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001734 }
Jiang Liufb170fb2014-07-11 14:19:28 +08001735
1736 return count;
1737}
1738
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001739static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001740static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001741
Joseph Cihula51a63e62011-03-21 11:04:24 -07001742static int dmar_init_reserved_ranges(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001743{
1744 struct pci_dev *pdev = NULL;
1745 struct iova *iova;
1746 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001747
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001748 init_iova_domain(&reserved_iova_list, VTD_PAGE_SIZE, IOVA_START_PFN,
1749 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001750
Mark Gross8a443df2008-03-04 14:59:31 -08001751 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1752 &reserved_rbtree_key);
1753
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001754 /* IOAPIC ranges shouldn't be accessed by DMA */
1755 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1756 IOVA_PFN(IOAPIC_RANGE_END));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001757 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001758 pr_err("Reserve IOAPIC range failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001759 return -ENODEV;
1760 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001761
1762 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1763 for_each_pci_dev(pdev) {
1764 struct resource *r;
1765
1766 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1767 r = &pdev->resource[i];
1768 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1769 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001770 iova = reserve_iova(&reserved_iova_list,
1771 IOVA_PFN(r->start),
1772 IOVA_PFN(r->end));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001773 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001774 pr_err("Reserve iova failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001775 return -ENODEV;
1776 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001777 }
1778 }
Joseph Cihula51a63e62011-03-21 11:04:24 -07001779 return 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001780}
1781
1782static void domain_reserve_special_ranges(struct dmar_domain *domain)
1783{
1784 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1785}
1786
1787static inline int guestwidth_to_adjustwidth(int gaw)
1788{
1789 int agaw;
1790 int r = (gaw - 12) % 9;
1791
1792 if (r == 0)
1793 agaw = gaw;
1794 else
1795 agaw = gaw + 9 - r;
1796 if (agaw > 64)
1797 agaw = 64;
1798 return agaw;
1799}
1800
Joerg Roedeldc534b22015-07-22 12:44:02 +02001801static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
1802 int guest_width)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001803{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001804 int adjust_width, agaw;
1805 unsigned long sagaw;
1806
Robin Murphy0fb5fe82015-01-12 17:51:16 +00001807 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
1808 DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001809 domain_reserve_special_ranges(domain);
1810
1811 /* calculate AGAW */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001812 if (guest_width > cap_mgaw(iommu->cap))
1813 guest_width = cap_mgaw(iommu->cap);
1814 domain->gaw = guest_width;
1815 adjust_width = guestwidth_to_adjustwidth(guest_width);
1816 agaw = width_to_agaw(adjust_width);
1817 sagaw = cap_sagaw(iommu->cap);
1818 if (!test_bit(agaw, &sagaw)) {
1819 /* hardware doesn't support it, choose a bigger one */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001820 pr_debug("Hardware doesn't support agaw %d\n", agaw);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001821 agaw = find_next_bit(&sagaw, 5, agaw);
1822 if (agaw >= 5)
1823 return -ENODEV;
1824 }
1825 domain->agaw = agaw;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001826
Weidong Han8e6040972008-12-08 15:49:06 +08001827 if (ecap_coherent(iommu->ecap))
1828 domain->iommu_coherency = 1;
1829 else
1830 domain->iommu_coherency = 0;
1831
Sheng Yang58c610b2009-03-18 15:33:05 +08001832 if (ecap_sc_support(iommu->ecap))
1833 domain->iommu_snooping = 1;
1834 else
1835 domain->iommu_snooping = 0;
1836
David Woodhouse214e39a2014-03-19 10:38:49 +00001837 if (intel_iommu_superpage)
1838 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1839 else
1840 domain->iommu_superpage = 0;
1841
Suresh Siddha4c923d42009-10-02 11:01:24 -07001842 domain->nid = iommu->node;
Weidong Hanc7151a82008-12-08 22:51:37 +08001843
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001844 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07001845 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001846 if (!domain->pgd)
1847 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001848 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001849 return 0;
1850}
1851
1852static void domain_exit(struct dmar_domain *domain)
1853{
David Woodhouseea8ea462014-03-05 17:09:32 +00001854 struct page *freelist = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001855
1856 /* Domain 0 is reserved, so dont process it */
1857 if (!domain)
1858 return;
1859
Alex Williamson7b668352011-05-24 12:02:41 +01001860 /* Flush any lazy unmaps that may reference this domain */
1861 if (!intel_iommu_strict)
1862 flush_unmaps_timeout(0);
1863
Joerg Roedeld160aca2015-07-22 11:52:53 +02001864 /* Remove associated devices and clear attached or cached domains */
1865 rcu_read_lock();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001866 domain_remove_dev_info(domain);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001867 rcu_read_unlock();
Jiang Liu92d03cc2014-02-19 14:07:28 +08001868
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001869 /* destroy iovas */
1870 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001871
David Woodhouseea8ea462014-03-05 17:09:32 +00001872 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001873
David Woodhouseea8ea462014-03-05 17:09:32 +00001874 dma_free_pagelist(freelist);
1875
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001876 free_domain_mem(domain);
1877}
1878
David Woodhouse64ae8922014-03-09 12:52:30 -07001879static int domain_context_mapping_one(struct dmar_domain *domain,
1880 struct intel_iommu *iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001881 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001882{
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001883 u16 did = domain->iommu_did[iommu->seq_id];
Joerg Roedel28ccce02015-07-21 14:45:31 +02001884 int translation = CONTEXT_TT_MULTI_LEVEL;
1885 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001886 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001887 unsigned long flags;
Weidong Hanea6606b2008-12-08 23:08:15 +08001888 struct dma_pte *pgd;
Joerg Roedel55d94042015-07-22 16:50:40 +02001889 int ret, agaw;
Joerg Roedel28ccce02015-07-21 14:45:31 +02001890
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001891 WARN_ON(did == 0);
1892
Joerg Roedel28ccce02015-07-21 14:45:31 +02001893 if (hw_pass_through && domain_type_is_si(domain))
1894 translation = CONTEXT_TT_PASS_THROUGH;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001895
1896 pr_debug("Set context mapping for %02x:%02x.%d\n",
1897 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001898
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001899 BUG_ON(!domain->pgd);
Weidong Han5331fe62008-12-08 23:00:00 +08001900
Joerg Roedel55d94042015-07-22 16:50:40 +02001901 spin_lock_irqsave(&device_domain_lock, flags);
1902 spin_lock(&iommu->lock);
1903
1904 ret = -ENOMEM;
David Woodhouse03ecc322015-02-13 14:35:21 +00001905 context = iommu_context_addr(iommu, bus, devfn, 1);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001906 if (!context)
Joerg Roedel55d94042015-07-22 16:50:40 +02001907 goto out_unlock;
1908
1909 ret = 0;
1910 if (context_present(context))
1911 goto out_unlock;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001912
Weidong Hanea6606b2008-12-08 23:08:15 +08001913 pgd = domain->pgd;
1914
Joerg Roedelde24e552015-07-21 14:53:04 +02001915 context_clear_entry(context);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001916 context_set_domain_id(context, did);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001917
Joerg Roedelde24e552015-07-21 14:53:04 +02001918 /*
1919 * Skip top levels of page tables for iommu which has less agaw
1920 * than default. Unnecessary for PT mode.
1921 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001922 if (translation != CONTEXT_TT_PASS_THROUGH) {
Joerg Roedelde24e552015-07-21 14:53:04 +02001923 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
Joerg Roedel55d94042015-07-22 16:50:40 +02001924 ret = -ENOMEM;
Joerg Roedelde24e552015-07-21 14:53:04 +02001925 pgd = phys_to_virt(dma_pte_addr(pgd));
Joerg Roedel55d94042015-07-22 16:50:40 +02001926 if (!dma_pte_present(pgd))
1927 goto out_unlock;
Joerg Roedelde24e552015-07-21 14:53:04 +02001928 }
1929
David Woodhouse64ae8922014-03-09 12:52:30 -07001930 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
Yu Zhao93a23a72009-05-18 13:51:37 +08001931 translation = info ? CONTEXT_TT_DEV_IOTLB :
1932 CONTEXT_TT_MULTI_LEVEL;
Joerg Roedelde24e552015-07-21 14:53:04 +02001933
Yu Zhao93a23a72009-05-18 13:51:37 +08001934 context_set_address_root(context, virt_to_phys(pgd));
1935 context_set_address_width(context, iommu->agaw);
Joerg Roedelde24e552015-07-21 14:53:04 +02001936 } else {
1937 /*
1938 * In pass through mode, AW must be programmed to
1939 * indicate the largest AGAW value supported by
1940 * hardware. And ASR is ignored by hardware.
1941 */
1942 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001943 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001944
1945 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001946 context_set_fault_enable(context);
1947 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001948 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001949
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001950 /*
1951 * It's a non-present to present mapping. If hardware doesn't cache
1952 * non-present entry we only need to flush the write-buffer. If the
1953 * _does_ cache non-present entries, then it does so in the special
1954 * domain #0, which we have to flush:
1955 */
1956 if (cap_caching_mode(iommu->cap)) {
1957 iommu->flush.flush_context(iommu, 0,
1958 (((u16)bus) << 8) | devfn,
1959 DMA_CCMD_MASK_NOBIT,
1960 DMA_CCMD_DEVICE_INVL);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001961 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001962 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001963 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001964 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001965 iommu_enable_dev_iotlb(info);
Joerg Roedel55d94042015-07-22 16:50:40 +02001966
1967 ret = 0;
1968
1969out_unlock:
1970 spin_unlock(&iommu->lock);
1971 spin_unlock_irqrestore(&device_domain_lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001972
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001973 return 0;
1974}
1975
Alex Williamson579305f2014-07-03 09:51:43 -06001976struct domain_context_mapping_data {
1977 struct dmar_domain *domain;
1978 struct intel_iommu *iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06001979};
1980
1981static int domain_context_mapping_cb(struct pci_dev *pdev,
1982 u16 alias, void *opaque)
1983{
1984 struct domain_context_mapping_data *data = opaque;
1985
1986 return domain_context_mapping_one(data->domain, data->iommu,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001987 PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06001988}
1989
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001990static int
Joerg Roedel28ccce02015-07-21 14:45:31 +02001991domain_context_mapping(struct dmar_domain *domain, struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001992{
David Woodhouse64ae8922014-03-09 12:52:30 -07001993 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07001994 u8 bus, devfn;
Alex Williamson579305f2014-07-03 09:51:43 -06001995 struct domain_context_mapping_data data;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001996
David Woodhousee1f167f2014-03-09 15:24:46 -07001997 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse64ae8922014-03-09 12:52:30 -07001998 if (!iommu)
1999 return -ENODEV;
2000
Alex Williamson579305f2014-07-03 09:51:43 -06002001 if (!dev_is_pci(dev))
Joerg Roedel28ccce02015-07-21 14:45:31 +02002002 return domain_context_mapping_one(domain, iommu, bus, devfn);
Alex Williamson579305f2014-07-03 09:51:43 -06002003
2004 data.domain = domain;
2005 data.iommu = iommu;
Alex Williamson579305f2014-07-03 09:51:43 -06002006
2007 return pci_for_each_dma_alias(to_pci_dev(dev),
2008 &domain_context_mapping_cb, &data);
2009}
2010
2011static int domain_context_mapped_cb(struct pci_dev *pdev,
2012 u16 alias, void *opaque)
2013{
2014 struct intel_iommu *iommu = opaque;
2015
2016 return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002017}
2018
David Woodhousee1f167f2014-03-09 15:24:46 -07002019static int domain_context_mapped(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002020{
Weidong Han5331fe62008-12-08 23:00:00 +08002021 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002022 u8 bus, devfn;
Weidong Han5331fe62008-12-08 23:00:00 +08002023
David Woodhousee1f167f2014-03-09 15:24:46 -07002024 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08002025 if (!iommu)
2026 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002027
Alex Williamson579305f2014-07-03 09:51:43 -06002028 if (!dev_is_pci(dev))
2029 return device_context_mapped(iommu, bus, devfn);
David Woodhousee1f167f2014-03-09 15:24:46 -07002030
Alex Williamson579305f2014-07-03 09:51:43 -06002031 return !pci_for_each_dma_alias(to_pci_dev(dev),
2032 domain_context_mapped_cb, iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002033}
2034
Fenghua Yuf5329592009-08-04 15:09:37 -07002035/* Returns a number of VTD pages, but aligned to MM page size */
2036static inline unsigned long aligned_nrpages(unsigned long host_addr,
2037 size_t size)
2038{
2039 host_addr &= ~PAGE_MASK;
2040 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
2041}
2042
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002043/* Return largest possible superpage level for a given mapping */
2044static inline int hardware_largepage_caps(struct dmar_domain *domain,
2045 unsigned long iov_pfn,
2046 unsigned long phy_pfn,
2047 unsigned long pages)
2048{
2049 int support, level = 1;
2050 unsigned long pfnmerge;
2051
2052 support = domain->iommu_superpage;
2053
2054 /* To use a large page, the virtual *and* physical addresses
2055 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
2056 of them will mean we have to use smaller pages. So just
2057 merge them and check both at once. */
2058 pfnmerge = iov_pfn | phy_pfn;
2059
2060 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
2061 pages >>= VTD_STRIDE_SHIFT;
2062 if (!pages)
2063 break;
2064 pfnmerge >>= VTD_STRIDE_SHIFT;
2065 level++;
2066 support--;
2067 }
2068 return level;
2069}
2070
David Woodhouse9051aa02009-06-29 12:30:54 +01002071static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2072 struct scatterlist *sg, unsigned long phys_pfn,
2073 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01002074{
2075 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01002076 phys_addr_t uninitialized_var(pteval);
Jiang Liucc4f14a2014-11-26 09:42:10 +08002077 unsigned long sg_res = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002078 unsigned int largepage_lvl = 0;
2079 unsigned long lvl_pages = 0;
David Woodhousee1605492009-06-29 11:17:38 +01002080
Jiang Liu162d1b12014-07-11 14:19:35 +08002081 BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1));
David Woodhousee1605492009-06-29 11:17:38 +01002082
2083 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
2084 return -EINVAL;
2085
2086 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
2087
Jiang Liucc4f14a2014-11-26 09:42:10 +08002088 if (!sg) {
2089 sg_res = nr_pages;
David Woodhouse9051aa02009-06-29 12:30:54 +01002090 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
2091 }
2092
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002093 while (nr_pages > 0) {
David Woodhousec85994e2009-07-01 19:21:24 +01002094 uint64_t tmp;
2095
David Woodhousee1605492009-06-29 11:17:38 +01002096 if (!sg_res) {
Fenghua Yuf5329592009-08-04 15:09:37 -07002097 sg_res = aligned_nrpages(sg->offset, sg->length);
David Woodhousee1605492009-06-29 11:17:38 +01002098 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
2099 sg->dma_length = sg->length;
2100 pteval = page_to_phys(sg_page(sg)) | prot;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002101 phys_pfn = pteval >> VTD_PAGE_SHIFT;
David Woodhousee1605492009-06-29 11:17:38 +01002102 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002103
David Woodhousee1605492009-06-29 11:17:38 +01002104 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002105 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
2106
David Woodhouse5cf0a762014-03-19 16:07:49 +00002107 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
David Woodhousee1605492009-06-29 11:17:38 +01002108 if (!pte)
2109 return -ENOMEM;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002110 /* It is large page*/
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002111 if (largepage_lvl > 1) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002112 pteval |= DMA_PTE_LARGE_PAGE;
Jiang Liud41a4ad2014-07-11 14:19:34 +08002113 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2114 /*
2115 * Ensure that old small page tables are
2116 * removed to make room for superpage,
2117 * if they exist.
2118 */
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002119 dma_pte_free_pagetable(domain, iov_pfn,
Jiang Liud41a4ad2014-07-11 14:19:34 +08002120 iov_pfn + lvl_pages - 1);
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002121 } else {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002122 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002123 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002124
David Woodhousee1605492009-06-29 11:17:38 +01002125 }
2126 /* We don't need lock here, nobody else
2127 * touches the iova range
2128 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01002129 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01002130 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01002131 static int dumps = 5;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002132 pr_crit("ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2133 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01002134 if (dumps) {
2135 dumps--;
2136 debug_dma_dump_mappings(NULL);
2137 }
2138 WARN_ON(1);
2139 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002140
2141 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2142
2143 BUG_ON(nr_pages < lvl_pages);
2144 BUG_ON(sg_res < lvl_pages);
2145
2146 nr_pages -= lvl_pages;
2147 iov_pfn += lvl_pages;
2148 phys_pfn += lvl_pages;
2149 pteval += lvl_pages * VTD_PAGE_SIZE;
2150 sg_res -= lvl_pages;
2151
2152 /* If the next PTE would be the first in a new page, then we
2153 need to flush the cache on the entries we've just written.
2154 And then we'll need to recalculate 'pte', so clear it and
2155 let it get set again in the if (!pte) block above.
2156
2157 If we're done (!nr_pages) we need to flush the cache too.
2158
2159 Also if we've been setting superpages, we may need to
2160 recalculate 'pte' and switch back to smaller pages for the
2161 end of the mapping, if the trailing size is not enough to
2162 use another superpage (i.e. sg_res < lvl_pages). */
David Woodhousee1605492009-06-29 11:17:38 +01002163 pte++;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002164 if (!nr_pages || first_pte_in_page(pte) ||
2165 (largepage_lvl > 1 && sg_res < lvl_pages)) {
David Woodhousee1605492009-06-29 11:17:38 +01002166 domain_flush_cache(domain, first_pte,
2167 (void *)pte - (void *)first_pte);
2168 pte = NULL;
2169 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002170
2171 if (!sg_res && nr_pages)
David Woodhousee1605492009-06-29 11:17:38 +01002172 sg = sg_next(sg);
2173 }
2174 return 0;
2175}
2176
David Woodhouse9051aa02009-06-29 12:30:54 +01002177static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2178 struct scatterlist *sg, unsigned long nr_pages,
2179 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002180{
David Woodhouse9051aa02009-06-29 12:30:54 +01002181 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
2182}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002183
David Woodhouse9051aa02009-06-29 12:30:54 +01002184static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2185 unsigned long phys_pfn, unsigned long nr_pages,
2186 int prot)
2187{
2188 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002189}
2190
Joerg Roedel2452d9d2015-07-23 16:20:14 +02002191static void domain_context_clear_one(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002192{
Weidong Hanc7151a82008-12-08 22:51:37 +08002193 if (!iommu)
2194 return;
Weidong Han8c11e792008-12-08 15:29:22 +08002195
2196 clear_context_table(iommu, bus, devfn);
2197 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002198 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002199 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002200}
2201
David Woodhouse109b9b02012-05-25 17:43:02 +01002202static inline void unlink_domain_info(struct device_domain_info *info)
2203{
2204 assert_spin_locked(&device_domain_lock);
2205 list_del(&info->link);
2206 list_del(&info->global);
2207 if (info->dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002208 info->dev->archdata.iommu = NULL;
David Woodhouse109b9b02012-05-25 17:43:02 +01002209}
2210
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002211static void domain_remove_dev_info(struct dmar_domain *domain)
2212{
Yijing Wang3a74ca02014-05-20 20:37:47 +08002213 struct device_domain_info *info, *tmp;
Joerg Roedel55d94042015-07-22 16:50:40 +02002214 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002215
Joerg Roedel55d94042015-07-22 16:50:40 +02002216 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel76f45fe2015-07-21 18:25:11 +02002217 list_for_each_entry_safe(info, tmp, &domain->devices, link)
Joerg Roedel127c7612015-07-23 17:44:46 +02002218 __dmar_remove_one_dev_info(info);
Joerg Roedel55d94042015-07-22 16:50:40 +02002219 spin_unlock_irqrestore(&device_domain_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002220}
2221
2222/*
2223 * find_domain
David Woodhouse1525a292014-03-06 16:19:30 +00002224 * Note: we use struct device->archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002225 */
David Woodhouse1525a292014-03-06 16:19:30 +00002226static struct dmar_domain *find_domain(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002227{
2228 struct device_domain_info *info;
2229
2230 /* No lock here, assumes no domain exit in normal case */
David Woodhouse1525a292014-03-06 16:19:30 +00002231 info = dev->archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002232 if (info)
2233 return info->domain;
2234 return NULL;
2235}
2236
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002237static inline struct device_domain_info *
Jiang Liu745f2582014-02-19 14:07:26 +08002238dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2239{
2240 struct device_domain_info *info;
2241
2242 list_for_each_entry(info, &device_domain_list, global)
David Woodhouse41e80dca2014-03-09 13:55:54 -07002243 if (info->iommu->segment == segment && info->bus == bus &&
Jiang Liu745f2582014-02-19 14:07:26 +08002244 info->devfn == devfn)
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002245 return info;
Jiang Liu745f2582014-02-19 14:07:26 +08002246
2247 return NULL;
2248}
2249
Joerg Roedel5db31562015-07-22 12:40:43 +02002250static struct dmar_domain *dmar_insert_one_dev_info(struct intel_iommu *iommu,
2251 int bus, int devfn,
2252 struct device *dev,
2253 struct dmar_domain *domain)
Jiang Liu745f2582014-02-19 14:07:26 +08002254{
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002255 struct dmar_domain *found = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002256 struct device_domain_info *info;
2257 unsigned long flags;
Joerg Roedeld160aca2015-07-22 11:52:53 +02002258 int ret;
Jiang Liu745f2582014-02-19 14:07:26 +08002259
2260 info = alloc_devinfo_mem();
2261 if (!info)
David Woodhouseb718cd32014-03-09 13:11:33 -07002262 return NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002263
Jiang Liu745f2582014-02-19 14:07:26 +08002264 info->bus = bus;
2265 info->devfn = devfn;
2266 info->dev = dev;
2267 info->domain = domain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002268 info->iommu = iommu;
Jiang Liu745f2582014-02-19 14:07:26 +08002269
2270 spin_lock_irqsave(&device_domain_lock, flags);
2271 if (dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002272 found = find_domain(dev);
Joerg Roedelf303e502015-07-23 18:37:13 +02002273
2274 if (!found) {
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002275 struct device_domain_info *info2;
David Woodhouse41e80dca2014-03-09 13:55:54 -07002276 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
Joerg Roedelf303e502015-07-23 18:37:13 +02002277 if (info2) {
2278 found = info2->domain;
2279 info2->dev = dev;
2280 }
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002281 }
Joerg Roedelf303e502015-07-23 18:37:13 +02002282
Jiang Liu745f2582014-02-19 14:07:26 +08002283 if (found) {
2284 spin_unlock_irqrestore(&device_domain_lock, flags);
2285 free_devinfo_mem(info);
David Woodhouseb718cd32014-03-09 13:11:33 -07002286 /* Caller must free the original domain */
2287 return found;
Jiang Liu745f2582014-02-19 14:07:26 +08002288 }
2289
Joerg Roedeld160aca2015-07-22 11:52:53 +02002290 spin_lock(&iommu->lock);
2291 ret = domain_attach_iommu(domain, iommu);
2292 spin_unlock(&iommu->lock);
2293
2294 if (ret) {
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002295 spin_unlock_irqrestore(&device_domain_lock, flags);
2296 return NULL;
2297 }
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002298
David Woodhouseb718cd32014-03-09 13:11:33 -07002299 list_add(&info->link, &domain->devices);
2300 list_add(&info->global, &device_domain_list);
2301 if (dev)
2302 dev->archdata.iommu = info;
2303 spin_unlock_irqrestore(&device_domain_lock, flags);
2304
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002305 if (dev && domain_context_mapping(domain, dev)) {
2306 pr_err("Domain context map for %s failed\n", dev_name(dev));
Joerg Roedele6de0f82015-07-22 16:30:36 +02002307 dmar_remove_one_dev_info(domain, dev);
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002308 return NULL;
2309 }
2310
David Woodhouseb718cd32014-03-09 13:11:33 -07002311 return domain;
Jiang Liu745f2582014-02-19 14:07:26 +08002312}
2313
Alex Williamson579305f2014-07-03 09:51:43 -06002314static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque)
2315{
2316 *(u16 *)opaque = alias;
2317 return 0;
2318}
2319
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002320/* domain is initialized */
David Woodhouse146922e2014-03-09 15:44:17 -07002321static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002322{
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002323 struct device_domain_info *info = NULL;
Alex Williamson579305f2014-07-03 09:51:43 -06002324 struct dmar_domain *domain, *tmp;
2325 struct intel_iommu *iommu;
Joerg Roedel08a7f452015-07-23 18:09:11 +02002326 u16 req_id, dma_alias;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002327 unsigned long flags;
Yijing Wangaa4d0662014-05-26 20:14:06 +08002328 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002329
David Woodhouse146922e2014-03-09 15:44:17 -07002330 domain = find_domain(dev);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002331 if (domain)
2332 return domain;
2333
David Woodhouse146922e2014-03-09 15:44:17 -07002334 iommu = device_to_iommu(dev, &bus, &devfn);
2335 if (!iommu)
Alex Williamson579305f2014-07-03 09:51:43 -06002336 return NULL;
2337
Joerg Roedel08a7f452015-07-23 18:09:11 +02002338 req_id = ((u16)bus << 8) | devfn;
2339
Alex Williamson579305f2014-07-03 09:51:43 -06002340 if (dev_is_pci(dev)) {
2341 struct pci_dev *pdev = to_pci_dev(dev);
2342
2343 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2344
2345 spin_lock_irqsave(&device_domain_lock, flags);
2346 info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus),
2347 PCI_BUS_NUM(dma_alias),
2348 dma_alias & 0xff);
2349 if (info) {
2350 iommu = info->iommu;
2351 domain = info->domain;
2352 }
2353 spin_unlock_irqrestore(&device_domain_lock, flags);
2354
2355 /* DMA alias already has a domain, uses it */
2356 if (info)
2357 goto found_domain;
2358 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002359
David Woodhouse146922e2014-03-09 15:44:17 -07002360 /* Allocate and initialize new domain for the device */
Jiang Liuab8dfe22014-07-11 14:19:27 +08002361 domain = alloc_domain(0);
Jiang Liu745f2582014-02-19 14:07:26 +08002362 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002363 return NULL;
Joerg Roedeldc534b22015-07-22 12:44:02 +02002364 if (domain_init(domain, iommu, gaw)) {
Alex Williamson579305f2014-07-03 09:51:43 -06002365 domain_exit(domain);
2366 return NULL;
2367 }
2368
2369 /* register PCI DMA alias device */
Joerg Roedel08a7f452015-07-23 18:09:11 +02002370 if (req_id != dma_alias && dev_is_pci(dev)) {
Joerg Roedel5db31562015-07-22 12:40:43 +02002371 tmp = dmar_insert_one_dev_info(iommu, PCI_BUS_NUM(dma_alias),
2372 dma_alias & 0xff, NULL, domain);
Alex Williamson579305f2014-07-03 09:51:43 -06002373
2374 if (!tmp || tmp != domain) {
2375 domain_exit(domain);
2376 domain = tmp;
2377 }
2378
David Woodhouseb718cd32014-03-09 13:11:33 -07002379 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002380 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002381 }
2382
2383found_domain:
Joerg Roedel5db31562015-07-22 12:40:43 +02002384 tmp = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
Alex Williamson579305f2014-07-03 09:51:43 -06002385
2386 if (!tmp || tmp != domain) {
2387 domain_exit(domain);
2388 domain = tmp;
2389 }
David Woodhouseb718cd32014-03-09 13:11:33 -07002390
2391 return domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002392}
2393
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002394static int iommu_identity_mapping;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002395#define IDENTMAP_ALL 1
2396#define IDENTMAP_GFX 2
2397#define IDENTMAP_AZALIA 4
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002398
David Woodhouseb2132032009-06-26 18:50:28 +01002399static int iommu_domain_identity_map(struct dmar_domain *domain,
2400 unsigned long long start,
2401 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002402{
David Woodhousec5395d52009-06-28 16:35:56 +01002403 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2404 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002405
David Woodhousec5395d52009-06-28 16:35:56 +01002406 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2407 dma_to_mm_pfn(last_vpfn))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002408 pr_err("Reserving iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01002409 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002410 }
2411
Joerg Roedelaf1089c2015-07-21 15:45:19 +02002412 pr_debug("Mapping reserved region %llx-%llx\n", start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002413 /*
2414 * RMRR range might have overlap with physical memory range,
2415 * clear it first
2416 */
David Woodhousec5395d52009-06-28 16:35:56 +01002417 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002418
David Woodhousec5395d52009-06-28 16:35:56 +01002419 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
2420 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01002421 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01002422}
2423
David Woodhouse0b9d9752014-03-09 15:48:15 -07002424static int iommu_prepare_identity_map(struct device *dev,
David Woodhouseb2132032009-06-26 18:50:28 +01002425 unsigned long long start,
2426 unsigned long long end)
2427{
2428 struct dmar_domain *domain;
2429 int ret;
2430
David Woodhouse0b9d9752014-03-09 15:48:15 -07002431 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01002432 if (!domain)
2433 return -ENOMEM;
2434
David Woodhouse19943b02009-08-04 16:19:20 +01002435 /* For _hardware_ passthrough, don't bother. But for software
2436 passthrough, we do it anyway -- it may indicate a memory
2437 range which is reserved in E820, so which didn't get set
2438 up to start with in si_domain */
2439 if (domain == si_domain && hw_pass_through) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002440 pr_warn("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
2441 dev_name(dev), start, end);
David Woodhouse19943b02009-08-04 16:19:20 +01002442 return 0;
2443 }
2444
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002445 pr_info("Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
2446 dev_name(dev), start, end);
2447
David Woodhouse5595b522009-12-02 09:21:55 +00002448 if (end < start) {
2449 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2450 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2451 dmi_get_system_info(DMI_BIOS_VENDOR),
2452 dmi_get_system_info(DMI_BIOS_VERSION),
2453 dmi_get_system_info(DMI_PRODUCT_VERSION));
2454 ret = -EIO;
2455 goto error;
2456 }
2457
David Woodhouse2ff729f2009-08-26 14:25:41 +01002458 if (end >> agaw_to_width(domain->agaw)) {
2459 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2460 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2461 agaw_to_width(domain->agaw),
2462 dmi_get_system_info(DMI_BIOS_VENDOR),
2463 dmi_get_system_info(DMI_BIOS_VERSION),
2464 dmi_get_system_info(DMI_PRODUCT_VERSION));
2465 ret = -EIO;
2466 goto error;
2467 }
David Woodhouse19943b02009-08-04 16:19:20 +01002468
David Woodhouseb2132032009-06-26 18:50:28 +01002469 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002470 if (ret)
2471 goto error;
2472
David Woodhouseb2132032009-06-26 18:50:28 +01002473 return 0;
2474
2475 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002476 domain_exit(domain);
2477 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002478}
2479
2480static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
David Woodhouse0b9d9752014-03-09 15:48:15 -07002481 struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002482{
David Woodhouse0b9d9752014-03-09 15:48:15 -07002483 if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002484 return 0;
David Woodhouse0b9d9752014-03-09 15:48:15 -07002485 return iommu_prepare_identity_map(dev, rmrr->base_address,
2486 rmrr->end_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002487}
2488
Suresh Siddhad3f13812011-08-23 17:05:25 -07002489#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002490static inline void iommu_prepare_isa(void)
2491{
2492 struct pci_dev *pdev;
2493 int ret;
2494
2495 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2496 if (!pdev)
2497 return;
2498
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002499 pr_info("Prepare 0-16MiB unity mapping for LPC\n");
David Woodhouse0b9d9752014-03-09 15:48:15 -07002500 ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002501
2502 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002503 pr_err("Failed to create 0-16MiB identity map - floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002504
Yijing Wang9b27e822014-05-20 20:37:52 +08002505 pci_dev_put(pdev);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002506}
2507#else
2508static inline void iommu_prepare_isa(void)
2509{
2510 return;
2511}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002512#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002513
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002514static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002515
Matt Kraai071e1372009-08-23 22:30:22 -07002516static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002517{
David Woodhousec7ab48d2009-06-26 19:10:36 +01002518 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002519
Jiang Liuab8dfe22014-07-11 14:19:27 +08002520 si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002521 if (!si_domain)
2522 return -EFAULT;
2523
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002524 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2525 domain_exit(si_domain);
2526 return -EFAULT;
2527 }
2528
Joerg Roedel0dc79712015-07-21 15:40:06 +02002529 pr_debug("Identity mapping domain allocated\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002530
David Woodhouse19943b02009-08-04 16:19:20 +01002531 if (hw)
2532 return 0;
2533
David Woodhousec7ab48d2009-06-26 19:10:36 +01002534 for_each_online_node(nid) {
Tejun Heod4bbf7e2011-11-28 09:46:22 -08002535 unsigned long start_pfn, end_pfn;
2536 int i;
2537
2538 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2539 ret = iommu_domain_identity_map(si_domain,
2540 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2541 if (ret)
2542 return ret;
2543 }
David Woodhousec7ab48d2009-06-26 19:10:36 +01002544 }
2545
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002546 return 0;
2547}
2548
David Woodhouse9b226622014-03-09 14:03:28 -07002549static int identity_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002550{
2551 struct device_domain_info *info;
2552
2553 if (likely(!iommu_identity_mapping))
2554 return 0;
2555
David Woodhouse9b226622014-03-09 14:03:28 -07002556 info = dev->archdata.iommu;
Mike Traviscb452a42011-05-28 13:15:03 -05002557 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2558 return (info->domain == si_domain);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002559
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002560 return 0;
2561}
2562
Joerg Roedel28ccce02015-07-21 14:45:31 +02002563static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002564{
David Woodhouse0ac72662014-03-09 13:19:22 -07002565 struct dmar_domain *ndomain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002566 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002567 u8 bus, devfn;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002568
David Woodhouse5913c9b2014-03-09 16:27:31 -07002569 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002570 if (!iommu)
2571 return -ENODEV;
2572
Joerg Roedel5db31562015-07-22 12:40:43 +02002573 ndomain = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
David Woodhouse0ac72662014-03-09 13:19:22 -07002574 if (ndomain != domain)
2575 return -EBUSY;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002576
2577 return 0;
2578}
2579
David Woodhouse0b9d9752014-03-09 15:48:15 -07002580static bool device_has_rmrr(struct device *dev)
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002581{
2582 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002583 struct device *tmp;
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002584 int i;
2585
Jiang Liu0e242612014-02-19 14:07:34 +08002586 rcu_read_lock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002587 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002588 /*
2589 * Return TRUE if this RMRR contains the device that
2590 * is passed in.
2591 */
2592 for_each_active_dev_scope(rmrr->devices,
2593 rmrr->devices_cnt, i, tmp)
David Woodhouse0b9d9752014-03-09 15:48:15 -07002594 if (tmp == dev) {
Jiang Liu0e242612014-02-19 14:07:34 +08002595 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002596 return true;
Jiang Liub683b232014-02-19 14:07:32 +08002597 }
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002598 }
Jiang Liu0e242612014-02-19 14:07:34 +08002599 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002600 return false;
2601}
2602
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002603/*
2604 * There are a couple cases where we need to restrict the functionality of
2605 * devices associated with RMRRs. The first is when evaluating a device for
2606 * identity mapping because problems exist when devices are moved in and out
2607 * of domains and their respective RMRR information is lost. This means that
2608 * a device with associated RMRRs will never be in a "passthrough" domain.
2609 * The second is use of the device through the IOMMU API. This interface
2610 * expects to have full control of the IOVA space for the device. We cannot
2611 * satisfy both the requirement that RMRR access is maintained and have an
2612 * unencumbered IOVA space. We also have no ability to quiesce the device's
2613 * use of the RMRR space or even inform the IOMMU API user of the restriction.
2614 * We therefore prevent devices associated with an RMRR from participating in
2615 * the IOMMU API, which eliminates them from device assignment.
2616 *
2617 * In both cases we assume that PCI USB devices with RMRRs have them largely
2618 * for historical reasons and that the RMRR space is not actively used post
2619 * boot. This exclusion may change if vendors begin to abuse it.
David Woodhouse18436af2015-03-25 15:05:47 +00002620 *
2621 * The same exception is made for graphics devices, with the requirement that
2622 * any use of the RMRR regions will be torn down before assigning the device
2623 * to a guest.
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002624 */
2625static bool device_is_rmrr_locked(struct device *dev)
2626{
2627 if (!device_has_rmrr(dev))
2628 return false;
2629
2630 if (dev_is_pci(dev)) {
2631 struct pci_dev *pdev = to_pci_dev(dev);
2632
David Woodhouse18436af2015-03-25 15:05:47 +00002633 if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002634 return false;
2635 }
2636
2637 return true;
2638}
2639
David Woodhouse3bdb2592014-03-09 16:03:08 -07002640static int iommu_should_identity_map(struct device *dev, int startup)
David Woodhouse6941af22009-07-04 18:24:27 +01002641{
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002642
David Woodhouse3bdb2592014-03-09 16:03:08 -07002643 if (dev_is_pci(dev)) {
2644 struct pci_dev *pdev = to_pci_dev(dev);
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002645
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002646 if (device_is_rmrr_locked(dev))
David Woodhouse3bdb2592014-03-09 16:03:08 -07002647 return 0;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002648
David Woodhouse3bdb2592014-03-09 16:03:08 -07002649 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2650 return 1;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002651
David Woodhouse3bdb2592014-03-09 16:03:08 -07002652 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2653 return 1;
2654
2655 if (!(iommu_identity_mapping & IDENTMAP_ALL))
2656 return 0;
2657
2658 /*
2659 * We want to start off with all devices in the 1:1 domain, and
2660 * take them out later if we find they can't access all of memory.
2661 *
2662 * However, we can't do this for PCI devices behind bridges,
2663 * because all PCI devices behind the same bridge will end up
2664 * with the same source-id on their transactions.
2665 *
2666 * Practically speaking, we can't change things around for these
2667 * devices at run-time, because we can't be sure there'll be no
2668 * DMA transactions in flight for any of their siblings.
2669 *
2670 * So PCI devices (unless they're on the root bus) as well as
2671 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2672 * the 1:1 domain, just in _case_ one of their siblings turns out
2673 * not to be able to map all of memory.
2674 */
2675 if (!pci_is_pcie(pdev)) {
2676 if (!pci_is_root_bus(pdev->bus))
2677 return 0;
2678 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2679 return 0;
2680 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
2681 return 0;
2682 } else {
2683 if (device_has_rmrr(dev))
2684 return 0;
2685 }
David Woodhouse6941af22009-07-04 18:24:27 +01002686
David Woodhouse3dfc8132009-07-04 19:11:08 +01002687 /*
David Woodhouse3dfc8132009-07-04 19:11:08 +01002688 * At boot time, we don't yet know if devices will be 64-bit capable.
David Woodhouse3bdb2592014-03-09 16:03:08 -07002689 * Assume that they will — if they turn out not to be, then we can
David Woodhouse3dfc8132009-07-04 19:11:08 +01002690 * take them out of the 1:1 domain later.
2691 */
Chris Wright8fcc5372011-05-28 13:15:02 -05002692 if (!startup) {
2693 /*
2694 * If the device's dma_mask is less than the system's memory
2695 * size then this is not a candidate for identity mapping.
2696 */
David Woodhouse3bdb2592014-03-09 16:03:08 -07002697 u64 dma_mask = *dev->dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002698
David Woodhouse3bdb2592014-03-09 16:03:08 -07002699 if (dev->coherent_dma_mask &&
2700 dev->coherent_dma_mask < dma_mask)
2701 dma_mask = dev->coherent_dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002702
David Woodhouse3bdb2592014-03-09 16:03:08 -07002703 return dma_mask >= dma_get_required_mask(dev);
Chris Wright8fcc5372011-05-28 13:15:02 -05002704 }
David Woodhouse6941af22009-07-04 18:24:27 +01002705
2706 return 1;
2707}
2708
David Woodhousecf04eee2014-03-21 16:49:04 +00002709static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw)
2710{
2711 int ret;
2712
2713 if (!iommu_should_identity_map(dev, 1))
2714 return 0;
2715
Joerg Roedel28ccce02015-07-21 14:45:31 +02002716 ret = domain_add_dev_info(si_domain, dev);
David Woodhousecf04eee2014-03-21 16:49:04 +00002717 if (!ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002718 pr_info("%s identity mapping for device %s\n",
2719 hw ? "Hardware" : "Software", dev_name(dev));
David Woodhousecf04eee2014-03-21 16:49:04 +00002720 else if (ret == -ENODEV)
2721 /* device not associated with an iommu */
2722 ret = 0;
2723
2724 return ret;
2725}
2726
2727
Matt Kraai071e1372009-08-23 22:30:22 -07002728static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002729{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002730 struct pci_dev *pdev = NULL;
David Woodhousecf04eee2014-03-21 16:49:04 +00002731 struct dmar_drhd_unit *drhd;
2732 struct intel_iommu *iommu;
2733 struct device *dev;
2734 int i;
2735 int ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002736
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002737 for_each_pci_dev(pdev) {
David Woodhousecf04eee2014-03-21 16:49:04 +00002738 ret = dev_prepare_static_identity_mapping(&pdev->dev, hw);
2739 if (ret)
2740 return ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002741 }
2742
David Woodhousecf04eee2014-03-21 16:49:04 +00002743 for_each_active_iommu(iommu, drhd)
2744 for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
2745 struct acpi_device_physical_node *pn;
2746 struct acpi_device *adev;
2747
2748 if (dev->bus != &acpi_bus_type)
2749 continue;
Joerg Roedel86080cc2015-06-12 12:27:16 +02002750
David Woodhousecf04eee2014-03-21 16:49:04 +00002751 adev= to_acpi_device(dev);
2752 mutex_lock(&adev->physical_node_lock);
2753 list_for_each_entry(pn, &adev->physical_node_list, node) {
2754 ret = dev_prepare_static_identity_mapping(pn->dev, hw);
2755 if (ret)
2756 break;
2757 }
2758 mutex_unlock(&adev->physical_node_lock);
2759 if (ret)
2760 return ret;
2761 }
2762
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002763 return 0;
2764}
2765
Jiang Liuffebeb42014-11-09 22:48:02 +08002766static void intel_iommu_init_qi(struct intel_iommu *iommu)
2767{
2768 /*
2769 * Start from the sane iommu hardware state.
2770 * If the queued invalidation is already initialized by us
2771 * (for example, while enabling interrupt-remapping) then
2772 * we got the things already rolling from a sane state.
2773 */
2774 if (!iommu->qi) {
2775 /*
2776 * Clear any previous faults.
2777 */
2778 dmar_fault(-1, iommu);
2779 /*
2780 * Disable queued invalidation if supported and already enabled
2781 * before OS handover.
2782 */
2783 dmar_disable_qi(iommu);
2784 }
2785
2786 if (dmar_enable_qi(iommu)) {
2787 /*
2788 * Queued Invalidate not enabled, use Register Based Invalidate
2789 */
2790 iommu->flush.flush_context = __iommu_flush_context;
2791 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002792 pr_info("%s: Using Register based invalidation\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08002793 iommu->name);
2794 } else {
2795 iommu->flush.flush_context = qi_flush_context;
2796 iommu->flush.flush_iotlb = qi_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002797 pr_info("%s: Using Queued invalidation\n", iommu->name);
Jiang Liuffebeb42014-11-09 22:48:02 +08002798 }
2799}
2800
Joerg Roedel091d42e2015-06-12 11:56:10 +02002801static int copy_context_table(struct intel_iommu *iommu,
2802 struct root_entry *old_re,
2803 struct context_entry **tbl,
2804 int bus, bool ext)
2805{
2806 struct context_entry *old_ce = NULL, *new_ce = NULL, ce;
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002807 int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002808 phys_addr_t old_ce_phys;
2809
2810 tbl_idx = ext ? bus * 2 : bus;
2811
2812 for (devfn = 0; devfn < 256; devfn++) {
2813 /* First calculate the correct index */
2814 idx = (ext ? devfn * 2 : devfn) % 256;
2815
2816 if (idx == 0) {
2817 /* First save what we may have and clean up */
2818 if (new_ce) {
2819 tbl[tbl_idx] = new_ce;
2820 __iommu_flush_cache(iommu, new_ce,
2821 VTD_PAGE_SIZE);
2822 pos = 1;
2823 }
2824
2825 if (old_ce)
2826 iounmap(old_ce);
2827
2828 ret = 0;
2829 if (devfn < 0x80)
2830 old_ce_phys = root_entry_lctp(old_re);
2831 else
2832 old_ce_phys = root_entry_uctp(old_re);
2833
2834 if (!old_ce_phys) {
2835 if (ext && devfn == 0) {
2836 /* No LCTP, try UCTP */
2837 devfn = 0x7f;
2838 continue;
2839 } else {
2840 goto out;
2841 }
2842 }
2843
2844 ret = -ENOMEM;
2845 old_ce = ioremap_cache(old_ce_phys, PAGE_SIZE);
2846 if (!old_ce)
2847 goto out;
2848
2849 new_ce = alloc_pgtable_page(iommu->node);
2850 if (!new_ce)
2851 goto out_unmap;
2852
2853 ret = 0;
2854 }
2855
2856 /* Now copy the context entry */
2857 ce = old_ce[idx];
2858
Joerg Roedelcf484d02015-06-12 12:21:46 +02002859 if (!__context_present(&ce))
Joerg Roedel091d42e2015-06-12 11:56:10 +02002860 continue;
2861
Joerg Roedeldbcd8612015-06-12 12:02:09 +02002862 did = context_domain_id(&ce);
2863 if (did >= 0 && did < cap_ndoms(iommu->cap))
2864 set_bit(did, iommu->domain_ids);
2865
Joerg Roedelcf484d02015-06-12 12:21:46 +02002866 /*
2867 * We need a marker for copied context entries. This
2868 * marker needs to work for the old format as well as
2869 * for extended context entries.
2870 *
2871 * Bit 67 of the context entry is used. In the old
2872 * format this bit is available to software, in the
2873 * extended format it is the PGE bit, but PGE is ignored
2874 * by HW if PASIDs are disabled (and thus still
2875 * available).
2876 *
2877 * So disable PASIDs first and then mark the entry
2878 * copied. This means that we don't copy PASID
2879 * translations from the old kernel, but this is fine as
2880 * faults there are not fatal.
2881 */
2882 context_clear_pasid_enable(&ce);
2883 context_set_copied(&ce);
2884
Joerg Roedel091d42e2015-06-12 11:56:10 +02002885 new_ce[idx] = ce;
2886 }
2887
2888 tbl[tbl_idx + pos] = new_ce;
2889
2890 __iommu_flush_cache(iommu, new_ce, VTD_PAGE_SIZE);
2891
2892out_unmap:
2893 iounmap(old_ce);
2894
2895out:
2896 return ret;
2897}
2898
2899static int copy_translation_tables(struct intel_iommu *iommu)
2900{
2901 struct context_entry **ctxt_tbls;
2902 struct root_entry *old_rt;
2903 phys_addr_t old_rt_phys;
2904 int ctxt_table_entries;
2905 unsigned long flags;
2906 u64 rtaddr_reg;
2907 int bus, ret;
Joerg Roedelc3361f22015-06-12 12:39:25 +02002908 bool new_ext, ext;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002909
2910 rtaddr_reg = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
2911 ext = !!(rtaddr_reg & DMA_RTADDR_RTT);
Joerg Roedelc3361f22015-06-12 12:39:25 +02002912 new_ext = !!ecap_ecs(iommu->ecap);
2913
2914 /*
2915 * The RTT bit can only be changed when translation is disabled,
2916 * but disabling translation means to open a window for data
2917 * corruption. So bail out and don't copy anything if we would
2918 * have to change the bit.
2919 */
2920 if (new_ext != ext)
2921 return -EINVAL;
Joerg Roedel091d42e2015-06-12 11:56:10 +02002922
2923 old_rt_phys = rtaddr_reg & VTD_PAGE_MASK;
2924 if (!old_rt_phys)
2925 return -EINVAL;
2926
2927 old_rt = ioremap_cache(old_rt_phys, PAGE_SIZE);
2928 if (!old_rt)
2929 return -ENOMEM;
2930
2931 /* This is too big for the stack - allocate it from slab */
2932 ctxt_table_entries = ext ? 512 : 256;
2933 ret = -ENOMEM;
2934 ctxt_tbls = kzalloc(ctxt_table_entries * sizeof(void *), GFP_KERNEL);
2935 if (!ctxt_tbls)
2936 goto out_unmap;
2937
2938 for (bus = 0; bus < 256; bus++) {
2939 ret = copy_context_table(iommu, &old_rt[bus],
2940 ctxt_tbls, bus, ext);
2941 if (ret) {
2942 pr_err("%s: Failed to copy context table for bus %d\n",
2943 iommu->name, bus);
2944 continue;
2945 }
2946 }
2947
2948 spin_lock_irqsave(&iommu->lock, flags);
2949
2950 /* Context tables are copied, now write them to the root_entry table */
2951 for (bus = 0; bus < 256; bus++) {
2952 int idx = ext ? bus * 2 : bus;
2953 u64 val;
2954
2955 if (ctxt_tbls[idx]) {
2956 val = virt_to_phys(ctxt_tbls[idx]) | 1;
2957 iommu->root_entry[bus].lo = val;
2958 }
2959
2960 if (!ext || !ctxt_tbls[idx + 1])
2961 continue;
2962
2963 val = virt_to_phys(ctxt_tbls[idx + 1]) | 1;
2964 iommu->root_entry[bus].hi = val;
2965 }
2966
2967 spin_unlock_irqrestore(&iommu->lock, flags);
2968
2969 kfree(ctxt_tbls);
2970
2971 __iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
2972
2973 ret = 0;
2974
2975out_unmap:
2976 iounmap(old_rt);
2977
2978 return ret;
2979}
2980
Joseph Cihulab7792602011-05-03 00:08:37 -07002981static int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002982{
2983 struct dmar_drhd_unit *drhd;
2984 struct dmar_rmrr_unit *rmrr;
Joerg Roedela87f4912015-06-12 12:32:54 +02002985 bool copied_tables = false;
David Woodhouse832bd852014-03-07 15:08:36 +00002986 struct device *dev;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002987 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002988 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002989
2990 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002991 * for each drhd
2992 * allocate root
2993 * initialize and program root entry to not present
2994 * endfor
2995 */
2996 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002997 /*
2998 * lock not needed as this is only incremented in the single
2999 * threaded kernel __init code path all other access are read
3000 * only
3001 */
Jiang Liu78d8e702014-11-09 22:47:57 +08003002 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) {
Mike Travis1b198bb2012-03-05 15:05:16 -08003003 g_num_of_iommus++;
3004 continue;
3005 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003006 pr_err_once("Exceeded %d IOMMUs\n", DMAR_UNITS_SUPPORTED);
mark gross5e0d2a62008-03-04 15:22:08 -08003007 }
3008
Jiang Liuffebeb42014-11-09 22:48:02 +08003009 /* Preallocate enough resources for IOMMU hot-addition */
3010 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED)
3011 g_num_of_iommus = DMAR_UNITS_SUPPORTED;
3012
Weidong Hand9630fe2008-12-08 11:06:32 +08003013 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
3014 GFP_KERNEL);
3015 if (!g_iommus) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003016 pr_err("Allocating global iommu array failed\n");
Weidong Hand9630fe2008-12-08 11:06:32 +08003017 ret = -ENOMEM;
3018 goto error;
3019 }
3020
mark gross80b20dd2008-04-18 13:53:58 -07003021 deferred_flush = kzalloc(g_num_of_iommus *
3022 sizeof(struct deferred_flush_tables), GFP_KERNEL);
3023 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08003024 ret = -ENOMEM;
Jiang Liu989d51f2014-02-19 14:07:21 +08003025 goto free_g_iommus;
mark gross5e0d2a62008-03-04 15:22:08 -08003026 }
3027
Jiang Liu7c919772014-01-06 14:18:18 +08003028 for_each_active_iommu(iommu, drhd) {
Weidong Hand9630fe2008-12-08 11:06:32 +08003029 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003030
Joerg Roedelb63d80d2015-06-12 09:14:34 +02003031 intel_iommu_init_qi(iommu);
3032
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003033 ret = iommu_init_domains(iommu);
3034 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003035 goto free_iommu;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003036
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003037 init_translation_status(iommu);
3038
Joerg Roedel091d42e2015-06-12 11:56:10 +02003039 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
3040 iommu_disable_translation(iommu);
3041 clear_translation_pre_enabled(iommu);
3042 pr_warn("Translation was enabled for %s but we are not in kdump mode\n",
3043 iommu->name);
3044 }
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003045
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003046 /*
3047 * TBD:
3048 * we could share the same root & context tables
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003049 * among all IOMMU's. Need to Split it later.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003050 */
3051 ret = iommu_alloc_root_entry(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003052 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003053 goto free_iommu;
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003054
Joerg Roedel091d42e2015-06-12 11:56:10 +02003055 if (translation_pre_enabled(iommu)) {
3056 pr_info("Translation already enabled - trying to copy translation structures\n");
3057
3058 ret = copy_translation_tables(iommu);
3059 if (ret) {
3060 /*
3061 * We found the IOMMU with translation
3062 * enabled - but failed to copy over the
3063 * old root-entry table. Try to proceed
3064 * by disabling translation now and
3065 * allocating a clean root-entry table.
3066 * This might cause DMAR faults, but
3067 * probably the dump will still succeed.
3068 */
3069 pr_err("Failed to copy translation tables from previous kernel for %s\n",
3070 iommu->name);
3071 iommu_disable_translation(iommu);
3072 clear_translation_pre_enabled(iommu);
3073 } else {
3074 pr_info("Copied translation tables from previous kernel for %s\n",
3075 iommu->name);
Joerg Roedela87f4912015-06-12 12:32:54 +02003076 copied_tables = true;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003077 }
3078 }
3079
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003080 iommu_flush_write_buffer(iommu);
3081 iommu_set_root_entry(iommu);
3082 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
3083 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3084
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003085 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01003086 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003087 }
3088
David Woodhouse19943b02009-08-04 16:19:20 +01003089 if (iommu_pass_through)
David Woodhousee0fc7e02009-09-30 09:12:17 -07003090 iommu_identity_mapping |= IDENTMAP_ALL;
3091
Suresh Siddhad3f13812011-08-23 17:05:25 -07003092#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
David Woodhousee0fc7e02009-09-30 09:12:17 -07003093 iommu_identity_mapping |= IDENTMAP_GFX;
David Woodhouse19943b02009-08-04 16:19:20 +01003094#endif
David Woodhousee0fc7e02009-09-30 09:12:17 -07003095
Joerg Roedel86080cc2015-06-12 12:27:16 +02003096 if (iommu_identity_mapping) {
3097 ret = si_domain_init(hw_pass_through);
3098 if (ret)
3099 goto free_iommu;
3100 }
3101
David Woodhousee0fc7e02009-09-30 09:12:17 -07003102 check_tylersburg_isoch();
3103
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003104 /*
Joerg Roedela87f4912015-06-12 12:32:54 +02003105 * If we copied translations from a previous kernel in the kdump
3106 * case, we can not assign the devices to domains now, as that
3107 * would eliminate the old mappings. So skip this part and defer
3108 * the assignment to device driver initialization time.
3109 */
3110 if (copied_tables)
3111 goto domains_done;
3112
3113 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003114 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003115 * identity mappings for rmrr, gfx, and isa and may fall back to static
3116 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003117 */
David Woodhouse19943b02009-08-04 16:19:20 +01003118 if (iommu_identity_mapping) {
3119 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
3120 if (ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003121 pr_crit("Failed to setup IOMMU pass-through\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08003122 goto free_iommu;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003123 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003124 }
David Woodhouse19943b02009-08-04 16:19:20 +01003125 /*
3126 * For each rmrr
3127 * for each dev attached to rmrr
3128 * do
3129 * locate drhd for dev, alloc domain for dev
3130 * allocate free domain
3131 * allocate page table entries for rmrr
3132 * if context not allocated for bus
3133 * allocate and init context
3134 * set present in root table for this bus
3135 * init context with domain, translation etc
3136 * endfor
3137 * endfor
3138 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003139 pr_info("Setting RMRR:\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003140 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08003141 /* some BIOS lists non-exist devices in DMAR table. */
3142 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
David Woodhouse832bd852014-03-07 15:08:36 +00003143 i, dev) {
David Woodhouse0b9d9752014-03-09 15:48:15 -07003144 ret = iommu_prepare_rmrr_dev(rmrr, dev);
David Woodhouse19943b02009-08-04 16:19:20 +01003145 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003146 pr_err("Mapping reserved region failed\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003147 }
3148 }
3149
3150 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07003151
Joerg Roedela87f4912015-06-12 12:32:54 +02003152domains_done:
3153
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003154 /*
3155 * for each drhd
3156 * enable fault log
3157 * global invalidate context cache
3158 * global invalidate iotlb
3159 * enable translation
3160 */
Jiang Liu7c919772014-01-06 14:18:18 +08003161 for_each_iommu(iommu, drhd) {
Joseph Cihula51a63e62011-03-21 11:04:24 -07003162 if (drhd->ignored) {
3163 /*
3164 * we always have to disable PMRs or DMA may fail on
3165 * this device
3166 */
3167 if (force_on)
Jiang Liu7c919772014-01-06 14:18:18 +08003168 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003169 continue;
Joseph Cihula51a63e62011-03-21 11:04:24 -07003170 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003171
3172 iommu_flush_write_buffer(iommu);
3173
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003174 ret = dmar_set_interrupt(iommu);
3175 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003176 goto free_iommu;
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003177
Joerg Roedel8939ddf2015-06-12 14:40:01 +02003178 if (!translation_pre_enabled(iommu))
3179 iommu_enable_translation(iommu);
3180
David Woodhouseb94996c2009-09-19 15:28:12 -07003181 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003182 }
3183
3184 return 0;
Jiang Liu989d51f2014-02-19 14:07:21 +08003185
3186free_iommu:
Jiang Liuffebeb42014-11-09 22:48:02 +08003187 for_each_active_iommu(iommu, drhd) {
3188 disable_dmar_iommu(iommu);
Jiang Liua868e6b2014-01-06 14:18:20 +08003189 free_dmar_iommu(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003190 }
Jiang Liu9bdc5312014-01-06 14:18:27 +08003191 kfree(deferred_flush);
Jiang Liu989d51f2014-02-19 14:07:21 +08003192free_g_iommus:
Weidong Hand9630fe2008-12-08 11:06:32 +08003193 kfree(g_iommus);
Jiang Liu989d51f2014-02-19 14:07:21 +08003194error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003195 return ret;
3196}
3197
David Woodhouse5a5e02a2009-07-04 09:35:44 +01003198/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01003199static struct iova *intel_alloc_iova(struct device *dev,
3200 struct dmar_domain *domain,
3201 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003202{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003203 struct iova *iova = NULL;
3204
David Woodhouse875764d2009-06-28 21:20:51 +01003205 /* Restrict dma_mask to the width that the iommu can handle */
3206 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
3207
3208 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003209 /*
3210 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07003211 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08003212 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003213 */
David Woodhouse875764d2009-06-28 21:20:51 +01003214 iova = alloc_iova(&domain->iovad, nrpages,
3215 IOVA_PFN(DMA_BIT_MASK(32)), 1);
3216 if (iova)
3217 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003218 }
David Woodhouse875764d2009-06-28 21:20:51 +01003219 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
3220 if (unlikely(!iova)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003221 pr_err("Allocating %ld-page iova for %s failed",
David Woodhouse207e3592014-03-09 16:12:32 -07003222 nrpages, dev_name(dev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003223 return NULL;
3224 }
3225
3226 return iova;
3227}
3228
David Woodhoused4b709f2014-03-09 16:07:40 -07003229static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003230{
3231 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003232
David Woodhoused4b709f2014-03-09 16:07:40 -07003233 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003234 if (!domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003235 pr_err("Allocating domain for %s failed\n",
David Woodhoused4b709f2014-03-09 16:07:40 -07003236 dev_name(dev));
Al Viro4fe05bb2007-10-29 04:51:16 +00003237 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003238 }
3239
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003240 return domain;
3241}
3242
David Woodhoused4b709f2014-03-09 16:07:40 -07003243static inline struct dmar_domain *get_valid_domain_for_dev(struct device *dev)
David Woodhouse147202a2009-07-07 19:43:20 +01003244{
3245 struct device_domain_info *info;
3246
3247 /* No lock here, assumes no domain exit in normal case */
David Woodhoused4b709f2014-03-09 16:07:40 -07003248 info = dev->archdata.iommu;
David Woodhouse147202a2009-07-07 19:43:20 +01003249 if (likely(info))
3250 return info->domain;
3251
3252 return __get_valid_domain_for_dev(dev);
3253}
3254
David Woodhouseecb509e2014-03-09 16:29:55 -07003255/* Check if the dev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01003256static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003257{
3258 int found;
3259
David Woodhouse3d891942014-03-06 15:59:26 +00003260 if (iommu_dummy(dev))
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003261 return 1;
3262
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003263 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003264 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003265
David Woodhouse9b226622014-03-09 14:03:28 -07003266 found = identity_mapping(dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003267 if (found) {
David Woodhouseecb509e2014-03-09 16:29:55 -07003268 if (iommu_should_identity_map(dev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003269 return 1;
3270 else {
3271 /*
3272 * 32 bit DMA is removed from si_domain and fall back
3273 * to non-identity mapping.
3274 */
Joerg Roedele6de0f82015-07-22 16:30:36 +02003275 dmar_remove_one_dev_info(si_domain, dev);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003276 pr_info("32bit %s uses non-identity mapping\n",
3277 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003278 return 0;
3279 }
3280 } else {
3281 /*
3282 * In case of a detached 64 bit DMA device from vm, the device
3283 * is put into si_domain for identity mapping.
3284 */
David Woodhouseecb509e2014-03-09 16:29:55 -07003285 if (iommu_should_identity_map(dev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003286 int ret;
Joerg Roedel28ccce02015-07-21 14:45:31 +02003287 ret = domain_add_dev_info(si_domain, dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003288 if (!ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003289 pr_info("64bit %s uses identity mapping\n",
3290 dev_name(dev));
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003291 return 1;
3292 }
3293 }
3294 }
3295
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003296 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003297}
3298
David Woodhouse5040a912014-03-09 16:14:00 -07003299static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003300 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003301{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003302 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003303 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003304 struct iova *iova;
3305 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003306 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08003307 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07003308 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003309
3310 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003311
David Woodhouse5040a912014-03-09 16:14:00 -07003312 if (iommu_no_mapping(dev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003313 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003314
David Woodhouse5040a912014-03-09 16:14:00 -07003315 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003316 if (!domain)
3317 return 0;
3318
Weidong Han8c11e792008-12-08 15:29:22 +08003319 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01003320 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003321
David Woodhouse5040a912014-03-09 16:14:00 -07003322 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003323 if (!iova)
3324 goto error;
3325
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003326 /*
3327 * Check if DMAR supports zero-length reads on write only
3328 * mappings..
3329 */
3330 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003331 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003332 prot |= DMA_PTE_READ;
3333 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3334 prot |= DMA_PTE_WRITE;
3335 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003336 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003337 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003338 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003339 * is not a big problem
3340 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01003341 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
Fenghua Yu33041ec2009-08-04 15:10:59 -07003342 mm_to_dma_pfn(paddr_pfn), size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003343 if (ret)
3344 goto error;
3345
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003346 /* it's a non-present to present mapping. Only flush if caching mode */
3347 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003348 iommu_flush_iotlb_psi(iommu, domain,
3349 mm_to_dma_pfn(iova->pfn_lo),
3350 size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003351 else
Weidong Han8c11e792008-12-08 15:29:22 +08003352 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003353
David Woodhouse03d6a242009-06-28 15:33:46 +01003354 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
3355 start_paddr += paddr & ~PAGE_MASK;
3356 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003357
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003358error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003359 if (iova)
3360 __free_iova(&domain->iovad, iova);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003361 pr_err("Device %s request: %zx@%llx dir %d --- failed\n",
David Woodhouse5040a912014-03-09 16:14:00 -07003362 dev_name(dev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003363 return 0;
3364}
3365
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003366static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3367 unsigned long offset, size_t size,
3368 enum dma_data_direction dir,
3369 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003370{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003371 return __intel_map_single(dev, page_to_phys(page) + offset, size,
David Woodhouse46333e32014-03-10 20:01:21 -07003372 dir, *dev->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003373}
3374
mark gross5e0d2a62008-03-04 15:22:08 -08003375static void flush_unmaps(void)
3376{
mark gross80b20dd2008-04-18 13:53:58 -07003377 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08003378
mark gross5e0d2a62008-03-04 15:22:08 -08003379 timer_on = 0;
3380
3381 /* just flush them all */
3382 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08003383 struct intel_iommu *iommu = g_iommus[i];
3384 if (!iommu)
3385 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003386
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003387 if (!deferred_flush[i].next)
3388 continue;
3389
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003390 /* In caching mode, global flushes turn emulation expensive */
3391 if (!cap_caching_mode(iommu->cap))
3392 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08003393 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003394 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08003395 unsigned long mask;
3396 struct iova *iova = deferred_flush[i].iova[j];
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003397 struct dmar_domain *domain = deferred_flush[i].domain[j];
Yu Zhao93a23a72009-05-18 13:51:37 +08003398
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003399 /* On real hardware multiple invalidations are expensive */
3400 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003401 iommu_flush_iotlb_psi(iommu, domain,
Jiang Liua156ef92014-07-11 14:19:36 +08003402 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00003403 !deferred_flush[i].freelist[j], 0);
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003404 else {
Jiang Liua156ef92014-07-11 14:19:36 +08003405 mask = ilog2(mm_to_dma_pfn(iova_size(iova)));
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003406 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
3407 (uint64_t)iova->pfn_lo << PAGE_SHIFT, mask);
3408 }
Yu Zhao93a23a72009-05-18 13:51:37 +08003409 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003410 if (deferred_flush[i].freelist[j])
3411 dma_free_pagelist(deferred_flush[i].freelist[j]);
mark gross80b20dd2008-04-18 13:53:58 -07003412 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003413 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003414 }
3415
mark gross5e0d2a62008-03-04 15:22:08 -08003416 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003417}
3418
3419static void flush_unmaps_timeout(unsigned long data)
3420{
mark gross80b20dd2008-04-18 13:53:58 -07003421 unsigned long flags;
3422
3423 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003424 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07003425 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003426}
3427
David Woodhouseea8ea462014-03-05 17:09:32 +00003428static void add_unmap(struct dmar_domain *dom, struct iova *iova, struct page *freelist)
mark gross5e0d2a62008-03-04 15:22:08 -08003429{
3430 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07003431 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08003432 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08003433
3434 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07003435 if (list_size == HIGH_WATER_MARK)
3436 flush_unmaps();
3437
Weidong Han8c11e792008-12-08 15:29:22 +08003438 iommu = domain_get_iommu(dom);
3439 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003440
mark gross80b20dd2008-04-18 13:53:58 -07003441 next = deferred_flush[iommu_id].next;
3442 deferred_flush[iommu_id].domain[next] = dom;
3443 deferred_flush[iommu_id].iova[next] = iova;
David Woodhouseea8ea462014-03-05 17:09:32 +00003444 deferred_flush[iommu_id].freelist[next] = freelist;
mark gross80b20dd2008-04-18 13:53:58 -07003445 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08003446
3447 if (!timer_on) {
3448 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
3449 timer_on = 1;
3450 }
3451 list_size++;
3452 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
3453}
3454
Jiang Liud41a4ad2014-07-11 14:19:34 +08003455static void intel_unmap(struct device *dev, dma_addr_t dev_addr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003456{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003457 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003458 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003459 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08003460 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003461 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003462
David Woodhouse73676832009-07-04 14:08:36 +01003463 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003464 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003465
David Woodhouse1525a292014-03-06 16:19:30 +00003466 domain = find_domain(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003467 BUG_ON(!domain);
3468
Weidong Han8c11e792008-12-08 15:29:22 +08003469 iommu = domain_get_iommu(domain);
3470
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003471 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01003472 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
3473 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003474 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003475
David Woodhoused794dc92009-06-28 00:27:49 +01003476 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
3477 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003478
David Woodhoused794dc92009-06-28 00:27:49 +01003479 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
David Woodhouse207e3592014-03-09 16:12:32 -07003480 dev_name(dev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003481
David Woodhouseea8ea462014-03-05 17:09:32 +00003482 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003483
mark gross5e0d2a62008-03-04 15:22:08 -08003484 if (intel_iommu_strict) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003485 iommu_flush_iotlb_psi(iommu, domain, start_pfn,
David Woodhouseea8ea462014-03-05 17:09:32 +00003486 last_pfn - start_pfn + 1, !freelist, 0);
mark gross5e0d2a62008-03-04 15:22:08 -08003487 /* free iova */
3488 __free_iova(&domain->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003489 dma_free_pagelist(freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003490 } else {
David Woodhouseea8ea462014-03-05 17:09:32 +00003491 add_unmap(domain, iova, freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003492 /*
3493 * queue up the release of the unmap to save the 1/6th of the
3494 * cpu used up by the iotlb flush operation...
3495 */
mark gross5e0d2a62008-03-04 15:22:08 -08003496 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003497}
3498
Jiang Liud41a4ad2014-07-11 14:19:34 +08003499static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3500 size_t size, enum dma_data_direction dir,
3501 struct dma_attrs *attrs)
3502{
3503 intel_unmap(dev, dev_addr);
3504}
3505
David Woodhouse5040a912014-03-09 16:14:00 -07003506static void *intel_alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003507 dma_addr_t *dma_handle, gfp_t flags,
3508 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003509{
Akinobu Mita36746432014-06-04 16:06:51 -07003510 struct page *page = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003511 int order;
3512
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003513 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003514 order = get_order(size);
Alex Williamsone8bb9102009-11-04 15:59:34 -07003515
David Woodhouse5040a912014-03-09 16:14:00 -07003516 if (!iommu_no_mapping(dev))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003517 flags &= ~(GFP_DMA | GFP_DMA32);
David Woodhouse5040a912014-03-09 16:14:00 -07003518 else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) {
3519 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
Alex Williamsone8bb9102009-11-04 15:59:34 -07003520 flags |= GFP_DMA;
3521 else
3522 flags |= GFP_DMA32;
3523 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003524
Akinobu Mita36746432014-06-04 16:06:51 -07003525 if (flags & __GFP_WAIT) {
3526 unsigned int count = size >> PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003527
Akinobu Mita36746432014-06-04 16:06:51 -07003528 page = dma_alloc_from_contiguous(dev, count, order);
3529 if (page && iommu_no_mapping(dev) &&
3530 page_to_phys(page) + size > dev->coherent_dma_mask) {
3531 dma_release_from_contiguous(dev, page, count);
3532 page = NULL;
3533 }
3534 }
3535
3536 if (!page)
3537 page = alloc_pages(flags, order);
3538 if (!page)
3539 return NULL;
3540 memset(page_address(page), 0, size);
3541
3542 *dma_handle = __intel_map_single(dev, page_to_phys(page), size,
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003543 DMA_BIDIRECTIONAL,
David Woodhouse5040a912014-03-09 16:14:00 -07003544 dev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003545 if (*dma_handle)
Akinobu Mita36746432014-06-04 16:06:51 -07003546 return page_address(page);
3547 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3548 __free_pages(page, order);
3549
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003550 return NULL;
3551}
3552
David Woodhouse5040a912014-03-09 16:14:00 -07003553static void intel_free_coherent(struct device *dev, size_t size, void *vaddr,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003554 dma_addr_t dma_handle, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003555{
3556 int order;
Akinobu Mita36746432014-06-04 16:06:51 -07003557 struct page *page = virt_to_page(vaddr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003558
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003559 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003560 order = get_order(size);
3561
Jiang Liud41a4ad2014-07-11 14:19:34 +08003562 intel_unmap(dev, dma_handle);
Akinobu Mita36746432014-06-04 16:06:51 -07003563 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3564 __free_pages(page, order);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003565}
3566
David Woodhouse5040a912014-03-09 16:14:00 -07003567static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003568 int nelems, enum dma_data_direction dir,
3569 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003570{
Jiang Liud41a4ad2014-07-11 14:19:34 +08003571 intel_unmap(dev, sglist[0].dma_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003572}
3573
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003574static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003575 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003576{
3577 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003578 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003579
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003580 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02003581 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00003582 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003583 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003584 }
3585 return nelems;
3586}
3587
David Woodhouse5040a912014-03-09 16:14:00 -07003588static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003589 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003590{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003591 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003592 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003593 size_t size = 0;
3594 int prot = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003595 struct iova *iova = NULL;
3596 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003597 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01003598 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003599 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003600
3601 BUG_ON(dir == DMA_NONE);
David Woodhouse5040a912014-03-09 16:14:00 -07003602 if (iommu_no_mapping(dev))
3603 return intel_nontranslate_map_sg(dev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003604
David Woodhouse5040a912014-03-09 16:14:00 -07003605 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003606 if (!domain)
3607 return 0;
3608
Weidong Han8c11e792008-12-08 15:29:22 +08003609 iommu = domain_get_iommu(domain);
3610
David Woodhouseb536d242009-06-28 14:49:31 +01003611 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01003612 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003613
David Woodhouse5040a912014-03-09 16:14:00 -07003614 iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size),
3615 *dev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003616 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003617 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003618 return 0;
3619 }
3620
3621 /*
3622 * Check if DMAR supports zero-length reads on write only
3623 * mappings..
3624 */
3625 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003626 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003627 prot |= DMA_PTE_READ;
3628 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3629 prot |= DMA_PTE_WRITE;
3630
David Woodhouseb536d242009-06-28 14:49:31 +01003631 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01003632
Fenghua Yuf5329592009-08-04 15:09:37 -07003633 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01003634 if (unlikely(ret)) {
David Woodhousee1605492009-06-29 11:17:38 +01003635 dma_pte_free_pagetable(domain, start_vpfn,
3636 start_vpfn + size - 1);
David Woodhousee1605492009-06-29 11:17:38 +01003637 __free_iova(&domain->iovad, iova);
3638 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003639 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003640
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003641 /* it's a non-present to present mapping. Only flush if caching mode */
3642 if (cap_caching_mode(iommu->cap))
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003643 iommu_flush_iotlb_psi(iommu, domain, start_vpfn, size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003644 else
Weidong Han8c11e792008-12-08 15:29:22 +08003645 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003646
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003647 return nelems;
3648}
3649
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003650static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
3651{
3652 return !dma_addr;
3653}
3654
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003655struct dma_map_ops intel_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003656 .alloc = intel_alloc_coherent,
3657 .free = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003658 .map_sg = intel_map_sg,
3659 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003660 .map_page = intel_map_page,
3661 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003662 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003663};
3664
3665static inline int iommu_domain_cache_init(void)
3666{
3667 int ret = 0;
3668
3669 iommu_domain_cache = kmem_cache_create("iommu_domain",
3670 sizeof(struct dmar_domain),
3671 0,
3672 SLAB_HWCACHE_ALIGN,
3673
3674 NULL);
3675 if (!iommu_domain_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003676 pr_err("Couldn't create iommu_domain cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003677 ret = -ENOMEM;
3678 }
3679
3680 return ret;
3681}
3682
3683static inline int iommu_devinfo_cache_init(void)
3684{
3685 int ret = 0;
3686
3687 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3688 sizeof(struct device_domain_info),
3689 0,
3690 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003691 NULL);
3692 if (!iommu_devinfo_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003693 pr_err("Couldn't create devinfo cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003694 ret = -ENOMEM;
3695 }
3696
3697 return ret;
3698}
3699
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003700static int __init iommu_init_mempool(void)
3701{
3702 int ret;
3703 ret = iommu_iova_cache_init();
3704 if (ret)
3705 return ret;
3706
3707 ret = iommu_domain_cache_init();
3708 if (ret)
3709 goto domain_error;
3710
3711 ret = iommu_devinfo_cache_init();
3712 if (!ret)
3713 return ret;
3714
3715 kmem_cache_destroy(iommu_domain_cache);
3716domain_error:
Robin Murphy85b45452015-01-12 17:51:14 +00003717 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003718
3719 return -ENOMEM;
3720}
3721
3722static void __init iommu_exit_mempool(void)
3723{
3724 kmem_cache_destroy(iommu_devinfo_cache);
3725 kmem_cache_destroy(iommu_domain_cache);
Robin Murphy85b45452015-01-12 17:51:14 +00003726 iommu_iova_cache_destroy();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003727}
3728
Dan Williams556ab452010-07-23 15:47:56 -07003729static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
3730{
3731 struct dmar_drhd_unit *drhd;
3732 u32 vtbar;
3733 int rc;
3734
3735 /* We know that this device on this chipset has its own IOMMU.
3736 * If we find it under a different IOMMU, then the BIOS is lying
3737 * to us. Hope that the IOMMU for this device is actually
3738 * disabled, and it needs no translation...
3739 */
3740 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
3741 if (rc) {
3742 /* "can't" happen */
3743 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
3744 return;
3745 }
3746 vtbar &= 0xffff0000;
3747
3748 /* we know that the this iommu should be at offset 0xa000 from vtbar */
3749 drhd = dmar_find_matched_drhd_unit(pdev);
3750 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
3751 TAINT_FIRMWARE_WORKAROUND,
3752 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
3753 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
3754}
3755DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
3756
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003757static void __init init_no_remapping_devices(void)
3758{
3759 struct dmar_drhd_unit *drhd;
David Woodhouse832bd852014-03-07 15:08:36 +00003760 struct device *dev;
Jiang Liub683b232014-02-19 14:07:32 +08003761 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003762
3763 for_each_drhd_unit(drhd) {
3764 if (!drhd->include_all) {
Jiang Liub683b232014-02-19 14:07:32 +08003765 for_each_active_dev_scope(drhd->devices,
3766 drhd->devices_cnt, i, dev)
3767 break;
David Woodhouse832bd852014-03-07 15:08:36 +00003768 /* ignore DMAR unit if no devices exist */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003769 if (i == drhd->devices_cnt)
3770 drhd->ignored = 1;
3771 }
3772 }
3773
Jiang Liu7c919772014-01-06 14:18:18 +08003774 for_each_active_drhd_unit(drhd) {
Jiang Liu7c919772014-01-06 14:18:18 +08003775 if (drhd->include_all)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003776 continue;
3777
Jiang Liub683b232014-02-19 14:07:32 +08003778 for_each_active_dev_scope(drhd->devices,
3779 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003780 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003781 break;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003782 if (i < drhd->devices_cnt)
3783 continue;
3784
David Woodhousec0771df2011-10-14 20:59:46 +01003785 /* This IOMMU has *only* gfx devices. Either bypass it or
3786 set the gfx_mapped flag, as appropriate */
3787 if (dmar_map_gfx) {
3788 intel_iommu_gfx_mapped = 1;
3789 } else {
3790 drhd->ignored = 1;
Jiang Liub683b232014-02-19 14:07:32 +08003791 for_each_active_dev_scope(drhd->devices,
3792 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003793 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003794 }
3795 }
3796}
3797
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003798#ifdef CONFIG_SUSPEND
3799static int init_iommu_hw(void)
3800{
3801 struct dmar_drhd_unit *drhd;
3802 struct intel_iommu *iommu = NULL;
3803
3804 for_each_active_iommu(iommu, drhd)
3805 if (iommu->qi)
3806 dmar_reenable_qi(iommu);
3807
Joseph Cihulab7792602011-05-03 00:08:37 -07003808 for_each_iommu(iommu, drhd) {
3809 if (drhd->ignored) {
3810 /*
3811 * we always have to disable PMRs or DMA may fail on
3812 * this device
3813 */
3814 if (force_on)
3815 iommu_disable_protect_mem_regions(iommu);
3816 continue;
3817 }
3818
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003819 iommu_flush_write_buffer(iommu);
3820
3821 iommu_set_root_entry(iommu);
3822
3823 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003824 DMA_CCMD_GLOBAL_INVL);
Jiang Liu2a41cce2014-07-11 14:19:33 +08003825 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3826 iommu_enable_translation(iommu);
David Woodhouseb94996c2009-09-19 15:28:12 -07003827 iommu_disable_protect_mem_regions(iommu);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003828 }
3829
3830 return 0;
3831}
3832
3833static void iommu_flush_all(void)
3834{
3835 struct dmar_drhd_unit *drhd;
3836 struct intel_iommu *iommu;
3837
3838 for_each_active_iommu(iommu, drhd) {
3839 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003840 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003841 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003842 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003843 }
3844}
3845
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003846static int iommu_suspend(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003847{
3848 struct dmar_drhd_unit *drhd;
3849 struct intel_iommu *iommu = NULL;
3850 unsigned long flag;
3851
3852 for_each_active_iommu(iommu, drhd) {
3853 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3854 GFP_ATOMIC);
3855 if (!iommu->iommu_state)
3856 goto nomem;
3857 }
3858
3859 iommu_flush_all();
3860
3861 for_each_active_iommu(iommu, drhd) {
3862 iommu_disable_translation(iommu);
3863
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003864 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003865
3866 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3867 readl(iommu->reg + DMAR_FECTL_REG);
3868 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3869 readl(iommu->reg + DMAR_FEDATA_REG);
3870 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3871 readl(iommu->reg + DMAR_FEADDR_REG);
3872 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3873 readl(iommu->reg + DMAR_FEUADDR_REG);
3874
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003875 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003876 }
3877 return 0;
3878
3879nomem:
3880 for_each_active_iommu(iommu, drhd)
3881 kfree(iommu->iommu_state);
3882
3883 return -ENOMEM;
3884}
3885
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003886static void iommu_resume(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003887{
3888 struct dmar_drhd_unit *drhd;
3889 struct intel_iommu *iommu = NULL;
3890 unsigned long flag;
3891
3892 if (init_iommu_hw()) {
Joseph Cihulab7792602011-05-03 00:08:37 -07003893 if (force_on)
3894 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
3895 else
3896 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003897 return;
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003898 }
3899
3900 for_each_active_iommu(iommu, drhd) {
3901
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003902 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003903
3904 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3905 iommu->reg + DMAR_FECTL_REG);
3906 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3907 iommu->reg + DMAR_FEDATA_REG);
3908 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3909 iommu->reg + DMAR_FEADDR_REG);
3910 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3911 iommu->reg + DMAR_FEUADDR_REG);
3912
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003913 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003914 }
3915
3916 for_each_active_iommu(iommu, drhd)
3917 kfree(iommu->iommu_state);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003918}
3919
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003920static struct syscore_ops iommu_syscore_ops = {
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003921 .resume = iommu_resume,
3922 .suspend = iommu_suspend,
3923};
3924
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003925static void __init init_iommu_pm_ops(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003926{
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003927 register_syscore_ops(&iommu_syscore_ops);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003928}
3929
3930#else
Rafael J. Wysocki99592ba2011-06-07 21:32:31 +02003931static inline void init_iommu_pm_ops(void) {}
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003932#endif /* CONFIG_PM */
3933
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003934
Jiang Liuc2a0b532014-11-09 22:47:56 +08003935int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003936{
3937 struct acpi_dmar_reserved_memory *rmrr;
3938 struct dmar_rmrr_unit *rmrru;
3939
3940 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
3941 if (!rmrru)
3942 return -ENOMEM;
3943
3944 rmrru->hdr = header;
3945 rmrr = (struct acpi_dmar_reserved_memory *)header;
3946 rmrru->base_address = rmrr->base_address;
3947 rmrru->end_address = rmrr->end_address;
Jiang Liu2e455282014-02-19 14:07:36 +08003948 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
3949 ((void *)rmrr) + rmrr->header.length,
3950 &rmrru->devices_cnt);
3951 if (rmrru->devices_cnt && rmrru->devices == NULL) {
3952 kfree(rmrru);
3953 return -ENOMEM;
3954 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003955
Jiang Liu2e455282014-02-19 14:07:36 +08003956 list_add(&rmrru->list, &dmar_rmrr_units);
3957
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003958 return 0;
3959}
3960
Jiang Liu6b197242014-11-09 22:47:58 +08003961static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr)
3962{
3963 struct dmar_atsr_unit *atsru;
3964 struct acpi_dmar_atsr *tmp;
3965
3966 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
3967 tmp = (struct acpi_dmar_atsr *)atsru->hdr;
3968 if (atsr->segment != tmp->segment)
3969 continue;
3970 if (atsr->header.length != tmp->header.length)
3971 continue;
3972 if (memcmp(atsr, tmp, atsr->header.length) == 0)
3973 return atsru;
3974 }
3975
3976 return NULL;
3977}
3978
3979int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003980{
3981 struct acpi_dmar_atsr *atsr;
3982 struct dmar_atsr_unit *atsru;
3983
Jiang Liu6b197242014-11-09 22:47:58 +08003984 if (system_state != SYSTEM_BOOTING && !intel_iommu_enabled)
3985 return 0;
3986
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003987 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
Jiang Liu6b197242014-11-09 22:47:58 +08003988 atsru = dmar_find_atsr(atsr);
3989 if (atsru)
3990 return 0;
3991
3992 atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003993 if (!atsru)
3994 return -ENOMEM;
3995
Jiang Liu6b197242014-11-09 22:47:58 +08003996 /*
3997 * If memory is allocated from slab by ACPI _DSM method, we need to
3998 * copy the memory content because the memory buffer will be freed
3999 * on return.
4000 */
4001 atsru->hdr = (void *)(atsru + 1);
4002 memcpy(atsru->hdr, hdr, hdr->length);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004003 atsru->include_all = atsr->flags & 0x1;
Jiang Liu2e455282014-02-19 14:07:36 +08004004 if (!atsru->include_all) {
4005 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
4006 (void *)atsr + atsr->header.length,
4007 &atsru->devices_cnt);
4008 if (atsru->devices_cnt && atsru->devices == NULL) {
4009 kfree(atsru);
4010 return -ENOMEM;
4011 }
4012 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004013
Jiang Liu0e242612014-02-19 14:07:34 +08004014 list_add_rcu(&atsru->list, &dmar_atsr_units);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004015
4016 return 0;
4017}
4018
Jiang Liu9bdc5312014-01-06 14:18:27 +08004019static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
4020{
4021 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
4022 kfree(atsru);
4023}
4024
Jiang Liu6b197242014-11-09 22:47:58 +08004025int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4026{
4027 struct acpi_dmar_atsr *atsr;
4028 struct dmar_atsr_unit *atsru;
4029
4030 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4031 atsru = dmar_find_atsr(atsr);
4032 if (atsru) {
4033 list_del_rcu(&atsru->list);
4034 synchronize_rcu();
4035 intel_iommu_free_atsr(atsru);
4036 }
4037
4038 return 0;
4039}
4040
4041int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4042{
4043 int i;
4044 struct device *dev;
4045 struct acpi_dmar_atsr *atsr;
4046 struct dmar_atsr_unit *atsru;
4047
4048 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4049 atsru = dmar_find_atsr(atsr);
4050 if (!atsru)
4051 return 0;
4052
4053 if (!atsru->include_all && atsru->devices && atsru->devices_cnt)
4054 for_each_active_dev_scope(atsru->devices, atsru->devices_cnt,
4055 i, dev)
4056 return -EBUSY;
4057
4058 return 0;
4059}
4060
Jiang Liuffebeb42014-11-09 22:48:02 +08004061static int intel_iommu_add(struct dmar_drhd_unit *dmaru)
4062{
4063 int sp, ret = 0;
4064 struct intel_iommu *iommu = dmaru->iommu;
4065
4066 if (g_iommus[iommu->seq_id])
4067 return 0;
4068
4069 if (hw_pass_through && !ecap_pass_through(iommu->ecap)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004070 pr_warn("%s: Doesn't support hardware pass through.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004071 iommu->name);
4072 return -ENXIO;
4073 }
4074 if (!ecap_sc_support(iommu->ecap) &&
4075 domain_update_iommu_snooping(iommu)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004076 pr_warn("%s: Doesn't support snooping.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004077 iommu->name);
4078 return -ENXIO;
4079 }
4080 sp = domain_update_iommu_superpage(iommu) - 1;
4081 if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004082 pr_warn("%s: Doesn't support large page.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004083 iommu->name);
4084 return -ENXIO;
4085 }
4086
4087 /*
4088 * Disable translation if already enabled prior to OS handover.
4089 */
4090 if (iommu->gcmd & DMA_GCMD_TE)
4091 iommu_disable_translation(iommu);
4092
4093 g_iommus[iommu->seq_id] = iommu;
4094 ret = iommu_init_domains(iommu);
4095 if (ret == 0)
4096 ret = iommu_alloc_root_entry(iommu);
4097 if (ret)
4098 goto out;
4099
4100 if (dmaru->ignored) {
4101 /*
4102 * we always have to disable PMRs or DMA may fail on this device
4103 */
4104 if (force_on)
4105 iommu_disable_protect_mem_regions(iommu);
4106 return 0;
4107 }
4108
4109 intel_iommu_init_qi(iommu);
4110 iommu_flush_write_buffer(iommu);
4111 ret = dmar_set_interrupt(iommu);
4112 if (ret)
4113 goto disable_iommu;
4114
4115 iommu_set_root_entry(iommu);
4116 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
4117 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4118 iommu_enable_translation(iommu);
4119
Jiang Liuffebeb42014-11-09 22:48:02 +08004120 iommu_disable_protect_mem_regions(iommu);
4121 return 0;
4122
4123disable_iommu:
4124 disable_dmar_iommu(iommu);
4125out:
4126 free_dmar_iommu(iommu);
4127 return ret;
4128}
4129
Jiang Liu6b197242014-11-09 22:47:58 +08004130int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
4131{
Jiang Liuffebeb42014-11-09 22:48:02 +08004132 int ret = 0;
4133 struct intel_iommu *iommu = dmaru->iommu;
4134
4135 if (!intel_iommu_enabled)
4136 return 0;
4137 if (iommu == NULL)
4138 return -EINVAL;
4139
4140 if (insert) {
4141 ret = intel_iommu_add(dmaru);
4142 } else {
4143 disable_dmar_iommu(iommu);
4144 free_dmar_iommu(iommu);
4145 }
4146
4147 return ret;
Jiang Liu6b197242014-11-09 22:47:58 +08004148}
4149
Jiang Liu9bdc5312014-01-06 14:18:27 +08004150static void intel_iommu_free_dmars(void)
4151{
4152 struct dmar_rmrr_unit *rmrru, *rmrr_n;
4153 struct dmar_atsr_unit *atsru, *atsr_n;
4154
4155 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
4156 list_del(&rmrru->list);
4157 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
4158 kfree(rmrru);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004159 }
4160
Jiang Liu9bdc5312014-01-06 14:18:27 +08004161 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
4162 list_del(&atsru->list);
4163 intel_iommu_free_atsr(atsru);
4164 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004165}
4166
4167int dmar_find_matched_atsr_unit(struct pci_dev *dev)
4168{
Jiang Liub683b232014-02-19 14:07:32 +08004169 int i, ret = 1;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004170 struct pci_bus *bus;
David Woodhouse832bd852014-03-07 15:08:36 +00004171 struct pci_dev *bridge = NULL;
4172 struct device *tmp;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004173 struct acpi_dmar_atsr *atsr;
4174 struct dmar_atsr_unit *atsru;
4175
4176 dev = pci_physfn(dev);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004177 for (bus = dev->bus; bus; bus = bus->parent) {
Jiang Liub5f82dd2014-02-19 14:07:31 +08004178 bridge = bus->self;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004179 if (!bridge || !pci_is_pcie(bridge) ||
Yijing Wang62f87c02012-07-24 17:20:03 +08004180 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004181 return 0;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004182 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004183 break;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004184 }
Jiang Liub5f82dd2014-02-19 14:07:31 +08004185 if (!bridge)
4186 return 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004187
Jiang Liu0e242612014-02-19 14:07:34 +08004188 rcu_read_lock();
Jiang Liub5f82dd2014-02-19 14:07:31 +08004189 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4190 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4191 if (atsr->segment != pci_domain_nr(dev->bus))
4192 continue;
4193
Jiang Liub683b232014-02-19 14:07:32 +08004194 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00004195 if (tmp == &bridge->dev)
Jiang Liub683b232014-02-19 14:07:32 +08004196 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004197
4198 if (atsru->include_all)
Jiang Liub683b232014-02-19 14:07:32 +08004199 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004200 }
Jiang Liub683b232014-02-19 14:07:32 +08004201 ret = 0;
4202out:
Jiang Liu0e242612014-02-19 14:07:34 +08004203 rcu_read_unlock();
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004204
Jiang Liub683b232014-02-19 14:07:32 +08004205 return ret;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004206}
4207
Jiang Liu59ce0512014-02-19 14:07:35 +08004208int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
4209{
4210 int ret = 0;
4211 struct dmar_rmrr_unit *rmrru;
4212 struct dmar_atsr_unit *atsru;
4213 struct acpi_dmar_atsr *atsr;
4214 struct acpi_dmar_reserved_memory *rmrr;
4215
4216 if (!intel_iommu_enabled && system_state != SYSTEM_BOOTING)
4217 return 0;
4218
4219 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
4220 rmrr = container_of(rmrru->hdr,
4221 struct acpi_dmar_reserved_memory, header);
4222 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4223 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
4224 ((void *)rmrr) + rmrr->header.length,
4225 rmrr->segment, rmrru->devices,
4226 rmrru->devices_cnt);
Jiang Liu27e24952014-06-20 15:08:06 +08004227 if(ret < 0)
Jiang Liu59ce0512014-02-19 14:07:35 +08004228 return ret;
4229 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
Jiang Liu27e24952014-06-20 15:08:06 +08004230 dmar_remove_dev_scope(info, rmrr->segment,
4231 rmrru->devices, rmrru->devices_cnt);
Jiang Liu59ce0512014-02-19 14:07:35 +08004232 }
4233 }
4234
4235 list_for_each_entry(atsru, &dmar_atsr_units, list) {
4236 if (atsru->include_all)
4237 continue;
4238
4239 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4240 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4241 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
4242 (void *)atsr + atsr->header.length,
4243 atsr->segment, atsru->devices,
4244 atsru->devices_cnt);
4245 if (ret > 0)
4246 break;
4247 else if(ret < 0)
4248 return ret;
4249 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
4250 if (dmar_remove_dev_scope(info, atsr->segment,
4251 atsru->devices, atsru->devices_cnt))
4252 break;
4253 }
4254 }
4255
4256 return 0;
4257}
4258
Fenghua Yu99dcade2009-11-11 07:23:06 -08004259/*
4260 * Here we only respond to action of unbound device from driver.
4261 *
4262 * Added device is not attached to its DMAR domain here yet. That will happen
4263 * when mapping the device to iova.
4264 */
4265static int device_notifier(struct notifier_block *nb,
4266 unsigned long action, void *data)
4267{
4268 struct device *dev = data;
Fenghua Yu99dcade2009-11-11 07:23:06 -08004269 struct dmar_domain *domain;
4270
David Woodhouse3d891942014-03-06 15:59:26 +00004271 if (iommu_dummy(dev))
David Woodhouse44cd6132009-12-02 10:18:30 +00004272 return 0;
4273
Joerg Roedel1196c2f2014-09-30 13:02:03 +02004274 if (action != BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004275 return 0;
4276
David Woodhouse1525a292014-03-06 16:19:30 +00004277 domain = find_domain(dev);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004278 if (!domain)
4279 return 0;
4280
Joerg Roedele6de0f82015-07-22 16:30:36 +02004281 dmar_remove_one_dev_info(domain, dev);
Jiang Liuab8dfe22014-07-11 14:19:27 +08004282 if (!domain_type_is_vm_or_si(domain) && list_empty(&domain->devices))
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004283 domain_exit(domain);
Alex Williamsona97590e2011-03-04 14:52:16 -07004284
Fenghua Yu99dcade2009-11-11 07:23:06 -08004285 return 0;
4286}
4287
4288static struct notifier_block device_nb = {
4289 .notifier_call = device_notifier,
4290};
4291
Jiang Liu75f05562014-02-19 14:07:37 +08004292static int intel_iommu_memory_notifier(struct notifier_block *nb,
4293 unsigned long val, void *v)
4294{
4295 struct memory_notify *mhp = v;
4296 unsigned long long start, end;
4297 unsigned long start_vpfn, last_vpfn;
4298
4299 switch (val) {
4300 case MEM_GOING_ONLINE:
4301 start = mhp->start_pfn << PAGE_SHIFT;
4302 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
4303 if (iommu_domain_identity_map(si_domain, start, end)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004304 pr_warn("Failed to build identity map for [%llx-%llx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004305 start, end);
4306 return NOTIFY_BAD;
4307 }
4308 break;
4309
4310 case MEM_OFFLINE:
4311 case MEM_CANCEL_ONLINE:
4312 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
4313 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
4314 while (start_vpfn <= last_vpfn) {
4315 struct iova *iova;
4316 struct dmar_drhd_unit *drhd;
4317 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00004318 struct page *freelist;
Jiang Liu75f05562014-02-19 14:07:37 +08004319
4320 iova = find_iova(&si_domain->iovad, start_vpfn);
4321 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004322 pr_debug("Failed get IOVA for PFN %lx\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004323 start_vpfn);
4324 break;
4325 }
4326
4327 iova = split_and_remove_iova(&si_domain->iovad, iova,
4328 start_vpfn, last_vpfn);
4329 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004330 pr_warn("Failed to split IOVA PFN [%lx-%lx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004331 start_vpfn, last_vpfn);
4332 return NOTIFY_BAD;
4333 }
4334
David Woodhouseea8ea462014-03-05 17:09:32 +00004335 freelist = domain_unmap(si_domain, iova->pfn_lo,
4336 iova->pfn_hi);
4337
Jiang Liu75f05562014-02-19 14:07:37 +08004338 rcu_read_lock();
4339 for_each_active_iommu(iommu, drhd)
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004340 iommu_flush_iotlb_psi(iommu, si_domain,
Jiang Liua156ef92014-07-11 14:19:36 +08004341 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00004342 !freelist, 0);
Jiang Liu75f05562014-02-19 14:07:37 +08004343 rcu_read_unlock();
David Woodhouseea8ea462014-03-05 17:09:32 +00004344 dma_free_pagelist(freelist);
Jiang Liu75f05562014-02-19 14:07:37 +08004345
4346 start_vpfn = iova->pfn_hi + 1;
4347 free_iova_mem(iova);
4348 }
4349 break;
4350 }
4351
4352 return NOTIFY_OK;
4353}
4354
4355static struct notifier_block intel_iommu_memory_nb = {
4356 .notifier_call = intel_iommu_memory_notifier,
4357 .priority = 0
4358};
4359
Alex Williamsona5459cf2014-06-12 16:12:31 -06004360
4361static ssize_t intel_iommu_show_version(struct device *dev,
4362 struct device_attribute *attr,
4363 char *buf)
4364{
4365 struct intel_iommu *iommu = dev_get_drvdata(dev);
4366 u32 ver = readl(iommu->reg + DMAR_VER_REG);
4367 return sprintf(buf, "%d:%d\n",
4368 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver));
4369}
4370static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL);
4371
4372static ssize_t intel_iommu_show_address(struct device *dev,
4373 struct device_attribute *attr,
4374 char *buf)
4375{
4376 struct intel_iommu *iommu = dev_get_drvdata(dev);
4377 return sprintf(buf, "%llx\n", iommu->reg_phys);
4378}
4379static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL);
4380
4381static ssize_t intel_iommu_show_cap(struct device *dev,
4382 struct device_attribute *attr,
4383 char *buf)
4384{
4385 struct intel_iommu *iommu = dev_get_drvdata(dev);
4386 return sprintf(buf, "%llx\n", iommu->cap);
4387}
4388static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL);
4389
4390static ssize_t intel_iommu_show_ecap(struct device *dev,
4391 struct device_attribute *attr,
4392 char *buf)
4393{
4394 struct intel_iommu *iommu = dev_get_drvdata(dev);
4395 return sprintf(buf, "%llx\n", iommu->ecap);
4396}
4397static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL);
4398
Alex Williamson2238c082015-07-14 15:24:53 -06004399static ssize_t intel_iommu_show_ndoms(struct device *dev,
4400 struct device_attribute *attr,
4401 char *buf)
4402{
4403 struct intel_iommu *iommu = dev_get_drvdata(dev);
4404 return sprintf(buf, "%ld\n", cap_ndoms(iommu->cap));
4405}
4406static DEVICE_ATTR(domains_supported, S_IRUGO, intel_iommu_show_ndoms, NULL);
4407
4408static ssize_t intel_iommu_show_ndoms_used(struct device *dev,
4409 struct device_attribute *attr,
4410 char *buf)
4411{
4412 struct intel_iommu *iommu = dev_get_drvdata(dev);
4413 return sprintf(buf, "%d\n", bitmap_weight(iommu->domain_ids,
4414 cap_ndoms(iommu->cap)));
4415}
4416static DEVICE_ATTR(domains_used, S_IRUGO, intel_iommu_show_ndoms_used, NULL);
4417
Alex Williamsona5459cf2014-06-12 16:12:31 -06004418static struct attribute *intel_iommu_attrs[] = {
4419 &dev_attr_version.attr,
4420 &dev_attr_address.attr,
4421 &dev_attr_cap.attr,
4422 &dev_attr_ecap.attr,
Alex Williamson2238c082015-07-14 15:24:53 -06004423 &dev_attr_domains_supported.attr,
4424 &dev_attr_domains_used.attr,
Alex Williamsona5459cf2014-06-12 16:12:31 -06004425 NULL,
4426};
4427
4428static struct attribute_group intel_iommu_group = {
4429 .name = "intel-iommu",
4430 .attrs = intel_iommu_attrs,
4431};
4432
4433const struct attribute_group *intel_iommu_groups[] = {
4434 &intel_iommu_group,
4435 NULL,
4436};
4437
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004438int __init intel_iommu_init(void)
4439{
Jiang Liu9bdc5312014-01-06 14:18:27 +08004440 int ret = -ENODEV;
Takao Indoh3a93c842013-04-23 17:35:03 +09004441 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08004442 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004443
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004444 /* VT-d is required for a TXT/tboot launch, so enforce that */
4445 force_on = tboot_force_iommu();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004446
Jiang Liu3a5670e2014-02-19 14:07:33 +08004447 if (iommu_init_mempool()) {
4448 if (force_on)
4449 panic("tboot: Failed to initialize iommu memory\n");
4450 return -ENOMEM;
4451 }
4452
4453 down_write(&dmar_global_lock);
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004454 if (dmar_table_init()) {
4455 if (force_on)
4456 panic("tboot: Failed to initialize DMAR table\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004457 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004458 }
4459
Suresh Siddhac2c72862011-08-23 17:05:19 -07004460 if (dmar_dev_scope_init() < 0) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004461 if (force_on)
4462 panic("tboot: Failed to initialize DMAR device scope\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004463 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004464 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -07004465
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004466 if (no_iommu || dmar_disabled)
Jiang Liu9bdc5312014-01-06 14:18:27 +08004467 goto out_free_dmar;
Suresh Siddha2ae21012008-07-10 11:16:43 -07004468
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004469 if (list_empty(&dmar_rmrr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004470 pr_info("No RMRR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004471
4472 if (list_empty(&dmar_atsr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004473 pr_info("No ATSR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004474
Joseph Cihula51a63e62011-03-21 11:04:24 -07004475 if (dmar_init_reserved_ranges()) {
4476 if (force_on)
4477 panic("tboot: Failed to reserve iommu ranges\n");
Jiang Liu3a5670e2014-02-19 14:07:33 +08004478 goto out_free_reserved_range;
Joseph Cihula51a63e62011-03-21 11:04:24 -07004479 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004480
4481 init_no_remapping_devices();
4482
Joseph Cihulab7792602011-05-03 00:08:37 -07004483 ret = init_dmars();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004484 if (ret) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004485 if (force_on)
4486 panic("tboot: Failed to initialize DMARs\n");
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004487 pr_err("Initialization failed\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004488 goto out_free_reserved_range;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004489 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08004490 up_write(&dmar_global_lock);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004491 pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004492
mark gross5e0d2a62008-03-04 15:22:08 -08004493 init_timer(&unmap_timer);
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004494#ifdef CONFIG_SWIOTLB
4495 swiotlb = 0;
4496#endif
David Woodhouse19943b02009-08-04 16:19:20 +01004497 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07004498
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004499 init_iommu_pm_ops();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004500
Alex Williamsona5459cf2014-06-12 16:12:31 -06004501 for_each_active_iommu(iommu, drhd)
4502 iommu->iommu_dev = iommu_device_create(NULL, iommu,
4503 intel_iommu_groups,
Kees Cook2439d4a2015-07-24 16:27:57 -07004504 "%s", iommu->name);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004505
Joerg Roedel4236d97d2011-09-06 17:56:07 +02004506 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004507 bus_register_notifier(&pci_bus_type, &device_nb);
Jiang Liu75f05562014-02-19 14:07:37 +08004508 if (si_domain && !hw_pass_through)
4509 register_memory_notifier(&intel_iommu_memory_nb);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004510
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02004511 intel_iommu_enabled = 1;
4512
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004513 return 0;
Jiang Liu9bdc5312014-01-06 14:18:27 +08004514
4515out_free_reserved_range:
4516 put_iova_domain(&reserved_iova_list);
Jiang Liu9bdc5312014-01-06 14:18:27 +08004517out_free_dmar:
4518 intel_iommu_free_dmars();
Jiang Liu3a5670e2014-02-19 14:07:33 +08004519 up_write(&dmar_global_lock);
4520 iommu_exit_mempool();
Jiang Liu9bdc5312014-01-06 14:18:27 +08004521 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004522}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07004523
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004524static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *opaque)
Alex Williamson579305f2014-07-03 09:51:43 -06004525{
4526 struct intel_iommu *iommu = opaque;
4527
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004528 domain_context_clear_one(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06004529 return 0;
4530}
4531
4532/*
4533 * NB - intel-iommu lacks any sort of reference counting for the users of
4534 * dependent devices. If multiple endpoints have intersecting dependent
4535 * devices, unbinding the driver from any one of them will possibly leave
4536 * the others unable to operate.
4537 */
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004538static void domain_context_clear(struct intel_iommu *iommu, struct device *dev)
Han, Weidong3199aa62009-02-26 17:31:12 +08004539{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004540 if (!iommu || !dev || !dev_is_pci(dev))
Han, Weidong3199aa62009-02-26 17:31:12 +08004541 return;
4542
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004543 pci_for_each_dma_alias(to_pci_dev(dev), &domain_context_clear_one_cb, iommu);
Han, Weidong3199aa62009-02-26 17:31:12 +08004544}
4545
Joerg Roedel127c7612015-07-23 17:44:46 +02004546static void __dmar_remove_one_dev_info(struct device_domain_info *info)
Weidong Hanc7151a82008-12-08 22:51:37 +08004547{
Weidong Hanc7151a82008-12-08 22:51:37 +08004548 struct intel_iommu *iommu;
4549 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08004550
Joerg Roedel55d94042015-07-22 16:50:40 +02004551 assert_spin_locked(&device_domain_lock);
4552
Joerg Roedelb608ac32015-07-21 18:19:08 +02004553 if (WARN_ON(!info))
4554 return;
4555
Joerg Roedel127c7612015-07-23 17:44:46 +02004556 iommu = info->iommu;
4557
4558 if (info->dev) {
4559 iommu_disable_dev_iotlb(info);
4560 domain_context_clear(iommu, info->dev);
4561 }
4562
Joerg Roedelb608ac32015-07-21 18:19:08 +02004563 unlink_domain_info(info);
Roland Dreier3e7abe22011-07-20 06:22:21 -07004564
Joerg Roedeld160aca2015-07-22 11:52:53 +02004565 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004566 domain_detach_iommu(info->domain, iommu);
Joerg Roedeld160aca2015-07-22 11:52:53 +02004567 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004568
4569 free_devinfo_mem(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004570}
4571
Joerg Roedel55d94042015-07-22 16:50:40 +02004572static void dmar_remove_one_dev_info(struct dmar_domain *domain,
4573 struct device *dev)
4574{
Joerg Roedel127c7612015-07-23 17:44:46 +02004575 struct device_domain_info *info;
Joerg Roedel55d94042015-07-22 16:50:40 +02004576 unsigned long flags;
4577
4578 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004579 info = dev->archdata.iommu;
4580 __dmar_remove_one_dev_info(info);
Joerg Roedel55d94042015-07-22 16:50:40 +02004581 spin_unlock_irqrestore(&device_domain_lock, flags);
4582}
4583
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004584static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08004585{
4586 int adjust_width;
4587
Robin Murphy0fb5fe82015-01-12 17:51:16 +00004588 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN,
4589 DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004590 domain_reserve_special_ranges(domain);
4591
4592 /* calculate AGAW */
4593 domain->gaw = guest_width;
4594 adjust_width = guestwidth_to_adjustwidth(guest_width);
4595 domain->agaw = width_to_agaw(adjust_width);
4596
Weidong Han5e98c4b2008-12-08 23:03:27 +08004597 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08004598 domain->iommu_snooping = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01004599 domain->iommu_superpage = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004600 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08004601
4602 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07004603 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004604 if (!domain->pgd)
4605 return -ENOMEM;
4606 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
4607 return 0;
4608}
4609
Joerg Roedel00a77de2015-03-26 13:43:08 +01004610static struct iommu_domain *intel_iommu_domain_alloc(unsigned type)
Kay, Allen M38717942008-09-09 18:37:29 +03004611{
Joerg Roedel5d450802008-12-03 14:52:32 +01004612 struct dmar_domain *dmar_domain;
Joerg Roedel00a77de2015-03-26 13:43:08 +01004613 struct iommu_domain *domain;
4614
4615 if (type != IOMMU_DOMAIN_UNMANAGED)
4616 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004617
Jiang Liuab8dfe22014-07-11 14:19:27 +08004618 dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE);
Joerg Roedel5d450802008-12-03 14:52:32 +01004619 if (!dmar_domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004620 pr_err("Can't allocate dmar_domain\n");
Joerg Roedel00a77de2015-03-26 13:43:08 +01004621 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004622 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004623 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004624 pr_err("Domain initialization failed\n");
Jiang Liu92d03cc2014-02-19 14:07:28 +08004625 domain_exit(dmar_domain);
Joerg Roedel00a77de2015-03-26 13:43:08 +01004626 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03004627 }
Allen Kay8140a952011-10-14 12:32:17 -07004628 domain_update_iommu_cap(dmar_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004629
Joerg Roedel00a77de2015-03-26 13:43:08 +01004630 domain = &dmar_domain->domain;
Joerg Roedel8a0e7152012-01-26 19:40:54 +01004631 domain->geometry.aperture_start = 0;
4632 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
4633 domain->geometry.force_aperture = true;
4634
Joerg Roedel00a77de2015-03-26 13:43:08 +01004635 return domain;
Kay, Allen M38717942008-09-09 18:37:29 +03004636}
Kay, Allen M38717942008-09-09 18:37:29 +03004637
Joerg Roedel00a77de2015-03-26 13:43:08 +01004638static void intel_iommu_domain_free(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03004639{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004640 domain_exit(to_dmar_domain(domain));
Kay, Allen M38717942008-09-09 18:37:29 +03004641}
Kay, Allen M38717942008-09-09 18:37:29 +03004642
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004643static int intel_iommu_attach_device(struct iommu_domain *domain,
4644 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004645{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004646 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004647 struct intel_iommu *iommu;
4648 int addr_width;
David Woodhouse156baca2014-03-09 14:00:57 -07004649 u8 bus, devfn;
Kay, Allen M38717942008-09-09 18:37:29 +03004650
Alex Williamsonc875d2c2014-07-03 09:57:02 -06004651 if (device_is_rmrr_locked(dev)) {
4652 dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n");
4653 return -EPERM;
4654 }
4655
David Woodhouse7207d8f2014-03-09 16:31:06 -07004656 /* normally dev is not mapped */
4657 if (unlikely(domain_context_mapped(dev))) {
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004658 struct dmar_domain *old_domain;
4659
David Woodhouse1525a292014-03-06 16:19:30 +00004660 old_domain = find_domain(dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004661 if (old_domain) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02004662 rcu_read_lock();
Joerg Roedelde7e8882015-07-22 11:58:07 +02004663 dmar_remove_one_dev_info(old_domain, dev);
Joerg Roedeld160aca2015-07-22 11:52:53 +02004664 rcu_read_unlock();
Joerg Roedel62c22162014-12-09 12:56:45 +01004665
4666 if (!domain_type_is_vm_or_si(old_domain) &&
4667 list_empty(&old_domain->devices))
4668 domain_exit(old_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004669 }
4670 }
4671
David Woodhouse156baca2014-03-09 14:00:57 -07004672 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004673 if (!iommu)
4674 return -ENODEV;
4675
4676 /* check if this iommu agaw is sufficient for max mapped address */
4677 addr_width = agaw_to_width(iommu->agaw);
Tom Lyona99c47a2010-05-17 08:20:45 +01004678 if (addr_width > cap_mgaw(iommu->cap))
4679 addr_width = cap_mgaw(iommu->cap);
4680
4681 if (dmar_domain->max_addr > (1LL << addr_width)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004682 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004683 "sufficient for the mapped address (%llx)\n",
Tom Lyona99c47a2010-05-17 08:20:45 +01004684 __func__, addr_width, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004685 return -EFAULT;
4686 }
Tom Lyona99c47a2010-05-17 08:20:45 +01004687 dmar_domain->gaw = addr_width;
4688
4689 /*
4690 * Knock out extra levels of page tables if necessary
4691 */
4692 while (iommu->agaw < dmar_domain->agaw) {
4693 struct dma_pte *pte;
4694
4695 pte = dmar_domain->pgd;
4696 if (dma_pte_present(pte)) {
Sheng Yang25cbff12010-06-12 19:21:42 +08004697 dmar_domain->pgd = (struct dma_pte *)
4698 phys_to_virt(dma_pte_addr(pte));
Jan Kiszka7a661012010-11-02 08:05:51 +01004699 free_pgtable_page(pte);
Tom Lyona99c47a2010-05-17 08:20:45 +01004700 }
4701 dmar_domain->agaw--;
4702 }
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004703
Joerg Roedel28ccce02015-07-21 14:45:31 +02004704 return domain_add_dev_info(dmar_domain, dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004705}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004706
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004707static void intel_iommu_detach_device(struct iommu_domain *domain,
4708 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004709{
Joerg Roedele6de0f82015-07-22 16:30:36 +02004710 dmar_remove_one_dev_info(to_dmar_domain(domain), dev);
Kay, Allen M38717942008-09-09 18:37:29 +03004711}
Kay, Allen M38717942008-09-09 18:37:29 +03004712
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004713static int intel_iommu_map(struct iommu_domain *domain,
4714 unsigned long iova, phys_addr_t hpa,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004715 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03004716{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004717 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004718 u64 max_addr;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004719 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004720 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004721
Joerg Roedeldde57a22008-12-03 15:04:09 +01004722 if (iommu_prot & IOMMU_READ)
4723 prot |= DMA_PTE_READ;
4724 if (iommu_prot & IOMMU_WRITE)
4725 prot |= DMA_PTE_WRITE;
Sheng Yang9cf06692009-03-18 15:33:07 +08004726 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
4727 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004728
David Woodhouse163cc522009-06-28 00:51:17 +01004729 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004730 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004731 u64 end;
4732
4733 /* check if minimum agaw is sufficient for mapped address */
Tom Lyon8954da12010-05-17 08:19:52 +01004734 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004735 if (end < max_addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004736 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004737 "sufficient for the mapped address (%llx)\n",
Tom Lyon8954da12010-05-17 08:19:52 +01004738 __func__, dmar_domain->gaw, max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004739 return -EFAULT;
4740 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01004741 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004742 }
David Woodhousead051222009-06-28 14:22:28 +01004743 /* Round up size to next multiple of PAGE_SIZE, if it and
4744 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01004745 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01004746 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
4747 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004748 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03004749}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004750
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004751static size_t intel_iommu_unmap(struct iommu_domain *domain,
David Woodhouseea8ea462014-03-05 17:09:32 +00004752 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004753{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004754 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
David Woodhouseea8ea462014-03-05 17:09:32 +00004755 struct page *freelist = NULL;
4756 struct intel_iommu *iommu;
4757 unsigned long start_pfn, last_pfn;
4758 unsigned int npages;
Joerg Roedel42e8c182015-07-21 15:50:02 +02004759 int iommu_id, level = 0;
Sheng Yang4b99d352009-07-08 11:52:52 +01004760
David Woodhouse5cf0a762014-03-19 16:07:49 +00004761 /* Cope with horrid API which requires us to unmap more than the
4762 size argument if it happens to be a large-page mapping. */
4763 if (!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level))
4764 BUG();
4765
4766 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
4767 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
4768
David Woodhouseea8ea462014-03-05 17:09:32 +00004769 start_pfn = iova >> VTD_PAGE_SHIFT;
4770 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
4771
4772 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
4773
4774 npages = last_pfn - start_pfn + 1;
4775
Joerg Roedel29a27712015-07-21 17:17:12 +02004776 for_each_domain_iommu(iommu_id, dmar_domain) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004777 iommu = g_iommus[iommu_id];
David Woodhouseea8ea462014-03-05 17:09:32 +00004778
Joerg Roedel42e8c182015-07-21 15:50:02 +02004779 iommu_flush_iotlb_psi(g_iommus[iommu_id], dmar_domain,
4780 start_pfn, npages, !freelist, 0);
David Woodhouseea8ea462014-03-05 17:09:32 +00004781 }
4782
4783 dma_free_pagelist(freelist);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004784
David Woodhouse163cc522009-06-28 00:51:17 +01004785 if (dmar_domain->max_addr == iova + size)
4786 dmar_domain->max_addr = iova;
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004787
David Woodhouse5cf0a762014-03-19 16:07:49 +00004788 return size;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004789}
Kay, Allen M38717942008-09-09 18:37:29 +03004790
Joerg Roedeld14d6572008-12-03 15:06:57 +01004791static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547a2013-03-29 01:23:58 +05304792 dma_addr_t iova)
Kay, Allen M38717942008-09-09 18:37:29 +03004793{
Joerg Roedel00a77de2015-03-26 13:43:08 +01004794 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Kay, Allen M38717942008-09-09 18:37:29 +03004795 struct dma_pte *pte;
David Woodhouse5cf0a762014-03-19 16:07:49 +00004796 int level = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004797 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03004798
David Woodhouse5cf0a762014-03-19 16:07:49 +00004799 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
Kay, Allen M38717942008-09-09 18:37:29 +03004800 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004801 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03004802
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004803 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03004804}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004805
Joerg Roedel5d587b82014-09-05 10:50:45 +02004806static bool intel_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004807{
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004808 if (cap == IOMMU_CAP_CACHE_COHERENCY)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004809 return domain_update_iommu_snooping(NULL) == 1;
Tom Lyon323f99c2010-07-02 16:56:14 -04004810 if (cap == IOMMU_CAP_INTR_REMAP)
Joerg Roedel5d587b82014-09-05 10:50:45 +02004811 return irq_remapping_enabled == 1;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004812
Joerg Roedel5d587b82014-09-05 10:50:45 +02004813 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004814}
4815
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004816static int intel_iommu_add_device(struct device *dev)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004817{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004818 struct intel_iommu *iommu;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004819 struct iommu_group *group;
David Woodhouse156baca2014-03-09 14:00:57 -07004820 u8 bus, devfn;
Alex Williamson70ae6f02011-10-21 15:56:11 -04004821
Alex Williamsona5459cf2014-06-12 16:12:31 -06004822 iommu = device_to_iommu(dev, &bus, &devfn);
4823 if (!iommu)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004824 return -ENODEV;
4825
Alex Williamsona5459cf2014-06-12 16:12:31 -06004826 iommu_device_link(iommu->iommu_dev, dev);
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004827
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004828 group = iommu_group_get_for_dev(dev);
Alex Williamson783f1572012-05-30 14:19:43 -06004829
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004830 if (IS_ERR(group))
4831 return PTR_ERR(group);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004832
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004833 iommu_group_put(group);
Alex Williamsone17f9ff2014-07-03 09:51:37 -06004834 return 0;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004835}
4836
4837static void intel_iommu_remove_device(struct device *dev)
4838{
Alex Williamsona5459cf2014-06-12 16:12:31 -06004839 struct intel_iommu *iommu;
4840 u8 bus, devfn;
4841
4842 iommu = device_to_iommu(dev, &bus, &devfn);
4843 if (!iommu)
4844 return;
4845
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004846 iommu_group_remove_device(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004847
4848 iommu_device_unlink(iommu->iommu_dev, dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004849}
4850
Thierry Redingb22f6432014-06-27 09:03:12 +02004851static const struct iommu_ops intel_iommu_ops = {
Joerg Roedel5d587b82014-09-05 10:50:45 +02004852 .capable = intel_iommu_capable,
Joerg Roedel00a77de2015-03-26 13:43:08 +01004853 .domain_alloc = intel_iommu_domain_alloc,
4854 .domain_free = intel_iommu_domain_free,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004855 .attach_dev = intel_iommu_attach_device,
4856 .detach_dev = intel_iommu_detach_device,
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004857 .map = intel_iommu_map,
4858 .unmap = intel_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07004859 .map_sg = default_iommu_map_sg,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004860 .iova_to_phys = intel_iommu_iova_to_phys,
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004861 .add_device = intel_iommu_add_device,
4862 .remove_device = intel_iommu_remove_device,
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +02004863 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004864};
David Woodhouse9af88142009-02-13 23:18:03 +00004865
Daniel Vetter94526182013-01-20 23:50:13 +01004866static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
4867{
4868 /* G4x/GM45 integrated gfx dmar support is totally busted. */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004869 pr_info("Disabling IOMMU for graphics on this chipset\n");
Daniel Vetter94526182013-01-20 23:50:13 +01004870 dmar_map_gfx = 0;
4871}
4872
4873DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
4874DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
4875DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
4876DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
4877DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
4878DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
4879DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
4880
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004881static void quirk_iommu_rwbf(struct pci_dev *dev)
David Woodhouse9af88142009-02-13 23:18:03 +00004882{
4883 /*
4884 * Mobile 4 Series Chipset neglects to set RWBF capability,
Daniel Vetter210561f2013-01-21 19:48:59 +01004885 * but needs it. Same seems to hold for the desktop versions.
David Woodhouse9af88142009-02-13 23:18:03 +00004886 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004887 pr_info("Forcing write-buffer flush capability\n");
David Woodhouse9af88142009-02-13 23:18:03 +00004888 rwbf_quirk = 1;
4889}
4890
4891DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
Daniel Vetter210561f2013-01-21 19:48:59 +01004892DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
4893DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
4894DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
4895DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
4896DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
4897DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
David Woodhousee0fc7e02009-09-30 09:12:17 -07004898
Adam Jacksoneecfd572010-08-25 21:17:34 +01004899#define GGC 0x52
4900#define GGC_MEMORY_SIZE_MASK (0xf << 8)
4901#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
4902#define GGC_MEMORY_SIZE_1M (0x1 << 8)
4903#define GGC_MEMORY_SIZE_2M (0x3 << 8)
4904#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
4905#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
4906#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
4907#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
4908
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004909static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
David Woodhouse9eecabc2010-09-21 22:28:23 +01004910{
4911 unsigned short ggc;
4912
Adam Jacksoneecfd572010-08-25 21:17:34 +01004913 if (pci_read_config_word(dev, GGC, &ggc))
David Woodhouse9eecabc2010-09-21 22:28:23 +01004914 return;
4915
Adam Jacksoneecfd572010-08-25 21:17:34 +01004916 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004917 pr_info("BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
David Woodhouse9eecabc2010-09-21 22:28:23 +01004918 dmar_map_gfx = 0;
David Woodhouse6fbcfb32011-09-25 19:11:14 -07004919 } else if (dmar_map_gfx) {
4920 /* we have to ensure the gfx device is idle before we flush */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004921 pr_info("Disabling batched IOTLB flush on Ironlake\n");
David Woodhouse6fbcfb32011-09-25 19:11:14 -07004922 intel_iommu_strict = 1;
4923 }
David Woodhouse9eecabc2010-09-21 22:28:23 +01004924}
4925DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
4926DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
4927DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
4928DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
4929
David Woodhousee0fc7e02009-09-30 09:12:17 -07004930/* On Tylersburg chipsets, some BIOSes have been known to enable the
4931 ISOCH DMAR unit for the Azalia sound device, but not give it any
4932 TLB entries, which causes it to deadlock. Check for that. We do
4933 this in a function called from init_dmars(), instead of in a PCI
4934 quirk, because we don't want to print the obnoxious "BIOS broken"
4935 message if VT-d is actually disabled.
4936*/
4937static void __init check_tylersburg_isoch(void)
4938{
4939 struct pci_dev *pdev;
4940 uint32_t vtisochctrl;
4941
4942 /* If there's no Azalia in the system anyway, forget it. */
4943 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
4944 if (!pdev)
4945 return;
4946 pci_dev_put(pdev);
4947
4948 /* System Management Registers. Might be hidden, in which case
4949 we can't do the sanity check. But that's OK, because the
4950 known-broken BIOSes _don't_ actually hide it, so far. */
4951 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
4952 if (!pdev)
4953 return;
4954
4955 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
4956 pci_dev_put(pdev);
4957 return;
4958 }
4959
4960 pci_dev_put(pdev);
4961
4962 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
4963 if (vtisochctrl & 1)
4964 return;
4965
4966 /* Drop all bits other than the number of TLB entries */
4967 vtisochctrl &= 0x1c;
4968
4969 /* If we have the recommended number of TLB entries (16), fine. */
4970 if (vtisochctrl == 0x10)
4971 return;
4972
4973 /* Zero TLB entries? You get to ride the short bus to school. */
4974 if (!vtisochctrl) {
4975 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
4976 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
4977 dmi_get_system_info(DMI_BIOS_VENDOR),
4978 dmi_get_system_info(DMI_BIOS_VERSION),
4979 dmi_get_system_info(DMI_PRODUCT_VERSION));
4980 iommu_identity_mapping |= IDENTMAP_AZALIA;
4981 return;
4982 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004983
4984 pr_warn("Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
David Woodhousee0fc7e02009-09-30 09:12:17 -07004985 vtisochctrl);
4986}