blob: cfc5eef81b82fde18c1c92016e640654b4ab7dc5 [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>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070018 */
19
20#include <linux/init.h>
21#include <linux/bitmap.h>
mark gross5e0d2a62008-03-04 15:22:08 -080022#include <linux/debugfs.h>
Paul Gortmaker54485c32011-10-29 10:26:25 -040023#include <linux/export.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070024#include <linux/slab.h>
25#include <linux/irq.h>
26#include <linux/interrupt.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070027#include <linux/spinlock.h>
28#include <linux/pci.h>
29#include <linux/dmar.h>
30#include <linux/dma-mapping.h>
31#include <linux/mempool.h>
Jiang Liu75f05562014-02-19 14:07:37 +080032#include <linux/memory.h>
mark gross5e0d2a62008-03-04 15:22:08 -080033#include <linux/timer.h>
Kay, Allen M38717942008-09-09 18:37:29 +030034#include <linux/iova.h>
Joerg Roedel5d450802008-12-03 14:52:32 +010035#include <linux/iommu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030036#include <linux/intel-iommu.h>
Rafael J. Wysocki134fac32011-03-23 22:16:14 +010037#include <linux/syscore_ops.h>
Shane Wang69575d32009-09-01 18:25:07 -070038#include <linux/tboot.h>
Stephen Rothwelladb2fe02009-08-31 15:24:23 +100039#include <linux/dmi.h>
Joerg Roedel5cdede22011-04-04 15:55:18 +020040#include <linux/pci-ats.h>
Tejun Heo0ee332c2011-12-08 10:22:09 -080041#include <linux/memblock.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070042#include <asm/irq_remapping.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070043#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090044#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070045
Joerg Roedel078e1ee2012-09-26 12:44:43 +020046#include "irq_remapping.h"
Varun Sethi61e015a2013-04-23 10:05:24 +053047#include "pci.h"
Joerg Roedel078e1ee2012-09-26 12:44:43 +020048
Fenghua Yu5b6985c2008-10-16 18:02:32 -070049#define ROOT_SIZE VTD_PAGE_SIZE
50#define CONTEXT_SIZE VTD_PAGE_SIZE
51
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070052#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
53#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
David Woodhousee0fc7e02009-09-30 09:12:17 -070054#define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070055
56#define IOAPIC_RANGE_START (0xfee00000)
57#define IOAPIC_RANGE_END (0xfeefffff)
58#define IOVA_START_ADDR (0x1000)
59
60#define DEFAULT_DOMAIN_ADDRESS_WIDTH 48
61
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070062#define MAX_AGAW_WIDTH 64
Jiang Liu5c645b32014-01-06 14:18:12 +080063#define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT)
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070064
David Woodhouse2ebe3152009-09-19 07:34:04 -070065#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
66#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
67
68/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
69 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
70#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
71 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
72#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070073
Mark McLoughlinf27be032008-11-20 15:49:43 +000074#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
Yang Hongyang284901a2009-04-06 19:01:15 -070075#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
Yang Hongyang6a355282009-04-06 19:01:13 -070076#define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64))
mark gross5e0d2a62008-03-04 15:22:08 -080077
Andrew Mortondf08cdc2010-09-22 13:05:11 -070078/* page table handling */
79#define LEVEL_STRIDE (9)
80#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
81
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +020082/*
83 * This bitmap is used to advertise the page sizes our hardware support
84 * to the IOMMU core, which will then use this information to split
85 * physically contiguous memory regions it is mapping into page sizes
86 * that we support.
87 *
88 * Traditionally the IOMMU core just handed us the mappings directly,
89 * after making sure the size is an order of a 4KiB page and that the
90 * mapping has natural alignment.
91 *
92 * To retain this behavior, we currently advertise that we support
93 * all page sizes that are an order of 4KiB.
94 *
95 * If at some point we'd like to utilize the IOMMU core's new behavior,
96 * we could change this to advertise the real page sizes we support.
97 */
98#define INTEL_IOMMU_PGSIZES (~0xFFFUL)
99
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700100static inline int agaw_to_level(int agaw)
101{
102 return agaw + 2;
103}
104
105static inline int agaw_to_width(int agaw)
106{
Jiang Liu5c645b32014-01-06 14:18:12 +0800107 return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700108}
109
110static inline int width_to_agaw(int width)
111{
Jiang Liu5c645b32014-01-06 14:18:12 +0800112 return DIV_ROUND_UP(width - 30, LEVEL_STRIDE);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700113}
114
115static inline unsigned int level_to_offset_bits(int level)
116{
117 return (level - 1) * LEVEL_STRIDE;
118}
119
120static inline int pfn_level_offset(unsigned long pfn, int level)
121{
122 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
123}
124
125static inline unsigned long level_mask(int level)
126{
127 return -1UL << level_to_offset_bits(level);
128}
129
130static inline unsigned long level_size(int level)
131{
132 return 1UL << level_to_offset_bits(level);
133}
134
135static inline unsigned long align_to_level(unsigned long pfn, int level)
136{
137 return (pfn + level_size(level) - 1) & level_mask(level);
138}
David Woodhousefd18de52009-05-10 23:57:41 +0100139
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100140static inline unsigned long lvl_to_nr_pages(unsigned int lvl)
141{
Jiang Liu5c645b32014-01-06 14:18:12 +0800142 return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100143}
144
David Woodhousedd4e8312009-06-27 16:21:20 +0100145/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
146 are never going to work. */
147static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
148{
149 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
150}
151
152static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
153{
154 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
155}
156static inline unsigned long page_to_dma_pfn(struct page *pg)
157{
158 return mm_to_dma_pfn(page_to_pfn(pg));
159}
160static inline unsigned long virt_to_dma_pfn(void *p)
161{
162 return page_to_dma_pfn(virt_to_page(p));
163}
164
Weidong Hand9630fe2008-12-08 11:06:32 +0800165/* global iommu list, set NULL for ignored DMAR units */
166static struct intel_iommu **g_iommus;
167
David Woodhousee0fc7e02009-09-30 09:12:17 -0700168static void __init check_tylersburg_isoch(void);
David Woodhouse9af88142009-02-13 23:18:03 +0000169static int rwbf_quirk;
170
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000171/*
Joseph Cihulab7792602011-05-03 00:08:37 -0700172 * set to 1 to panic kernel if can't successfully enable VT-d
173 * (used when kernel is launched w/ TXT)
174 */
175static int force_on = 0;
176
177/*
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000178 * 0: Present
179 * 1-11: Reserved
180 * 12-63: Context Ptr (12 - (haw-1))
181 * 64-127: Reserved
182 */
183struct root_entry {
184 u64 val;
185 u64 rsvd1;
186};
187#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
188static inline bool root_present(struct root_entry *root)
189{
190 return (root->val & 1);
191}
192static inline void set_root_present(struct root_entry *root)
193{
194 root->val |= 1;
195}
196static inline void set_root_value(struct root_entry *root, unsigned long value)
197{
198 root->val |= value & VTD_PAGE_MASK;
199}
200
201static inline struct context_entry *
202get_context_addr_from_root(struct root_entry *root)
203{
204 return (struct context_entry *)
205 (root_present(root)?phys_to_virt(
206 root->val & VTD_PAGE_MASK) :
207 NULL);
208}
209
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000210/*
211 * low 64 bits:
212 * 0: present
213 * 1: fault processing disable
214 * 2-3: translation type
215 * 12-63: address space root
216 * high 64 bits:
217 * 0-2: address width
218 * 3-6: aval
219 * 8-23: domain id
220 */
221struct context_entry {
222 u64 lo;
223 u64 hi;
224};
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000225
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000226static inline bool context_present(struct context_entry *context)
227{
228 return (context->lo & 1);
229}
230static inline void context_set_present(struct context_entry *context)
231{
232 context->lo |= 1;
233}
234
235static inline void context_set_fault_enable(struct context_entry *context)
236{
237 context->lo &= (((u64)-1) << 2) | 1;
238}
239
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000240static inline void context_set_translation_type(struct context_entry *context,
241 unsigned long value)
242{
243 context->lo &= (((u64)-1) << 4) | 3;
244 context->lo |= (value & 3) << 2;
245}
246
247static inline void context_set_address_root(struct context_entry *context,
248 unsigned long value)
249{
250 context->lo |= value & VTD_PAGE_MASK;
251}
252
253static inline void context_set_address_width(struct context_entry *context,
254 unsigned long value)
255{
256 context->hi |= value & 7;
257}
258
259static inline void context_set_domain_id(struct context_entry *context,
260 unsigned long value)
261{
262 context->hi |= (value & ((1 << 16) - 1)) << 8;
263}
264
265static inline void context_clear_entry(struct context_entry *context)
266{
267 context->lo = 0;
268 context->hi = 0;
269}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000270
Mark McLoughlin622ba122008-11-20 15:49:46 +0000271/*
272 * 0: readable
273 * 1: writable
274 * 2-6: reserved
275 * 7: super page
Sheng Yang9cf066972009-03-18 15:33:07 +0800276 * 8-10: available
277 * 11: snoop behavior
Mark McLoughlin622ba122008-11-20 15:49:46 +0000278 * 12-63: Host physcial address
279 */
280struct dma_pte {
281 u64 val;
282};
Mark McLoughlin622ba122008-11-20 15:49:46 +0000283
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000284static inline void dma_clear_pte(struct dma_pte *pte)
285{
286 pte->val = 0;
287}
288
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000289static inline u64 dma_pte_addr(struct dma_pte *pte)
290{
David Woodhousec85994e2009-07-01 19:21:24 +0100291#ifdef CONFIG_64BIT
292 return pte->val & VTD_PAGE_MASK;
293#else
294 /* Must have a full atomic 64-bit read */
David Woodhouse1a8bd482010-08-10 01:38:53 +0100295 return __cmpxchg64(&pte->val, 0ULL, 0ULL) & VTD_PAGE_MASK;
David Woodhousec85994e2009-07-01 19:21:24 +0100296#endif
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000297}
298
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000299static inline bool dma_pte_present(struct dma_pte *pte)
300{
301 return (pte->val & 3) != 0;
302}
Mark McLoughlin622ba122008-11-20 15:49:46 +0000303
Allen Kay4399c8b2011-10-14 12:32:46 -0700304static inline bool dma_pte_superpage(struct dma_pte *pte)
305{
306 return (pte->val & (1 << 7));
307}
308
David Woodhouse75e6bf92009-07-02 11:21:16 +0100309static inline int first_pte_in_page(struct dma_pte *pte)
310{
311 return !((unsigned long)pte & ~VTD_PAGE_MASK);
312}
313
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700314/*
315 * This domain is a statically identity mapping domain.
316 * 1. This domain creats a static 1:1 mapping to all usable memory.
317 * 2. It maps to each iommu if successful.
318 * 3. Each iommu mapps to this domain if successful.
319 */
David Woodhouse19943b02009-08-04 16:19:20 +0100320static struct dmar_domain *si_domain;
321static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700322
Weidong Han3b5410e2008-12-08 09:17:15 +0800323/* devices under the same p2p bridge are owned in one domain */
Mike Daycdc7b832008-12-12 17:16:30 +0100324#define DOMAIN_FLAG_P2P_MULTIPLE_DEVICES (1 << 0)
Weidong Han3b5410e2008-12-08 09:17:15 +0800325
Weidong Han1ce28fe2008-12-08 16:35:39 +0800326/* domain represents a virtual machine, more than one devices
327 * across iommus may be owned in one domain, e.g. kvm guest.
328 */
329#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 1)
330
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700331/* si_domain contains mulitple devices */
332#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 2)
333
Mike Travis1b198bb2012-03-05 15:05:16 -0800334/* define the limit of IOMMUs supported in each domain */
335#ifdef CONFIG_X86
336# define IOMMU_UNITS_SUPPORTED MAX_IO_APICS
337#else
338# define IOMMU_UNITS_SUPPORTED 64
339#endif
340
Mark McLoughlin99126f72008-11-20 15:49:47 +0000341struct dmar_domain {
342 int id; /* domain id */
Suresh Siddha4c923d42009-10-02 11:01:24 -0700343 int nid; /* node id */
Mike Travis1b198bb2012-03-05 15:05:16 -0800344 DECLARE_BITMAP(iommu_bmp, IOMMU_UNITS_SUPPORTED);
345 /* bitmap of iommus this domain uses*/
Mark McLoughlin99126f72008-11-20 15:49:47 +0000346
347 struct list_head devices; /* all devices' list */
348 struct iova_domain iovad; /* iova's that belong to this domain */
349
350 struct dma_pte *pgd; /* virtual address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000351 int gaw; /* max guest address width */
352
353 /* adjusted guest address width, 0 is level 2 30-bit */
354 int agaw;
355
Weidong Han3b5410e2008-12-08 09:17:15 +0800356 int flags; /* flags to find out type of domain */
Weidong Han8e6040972008-12-08 15:49:06 +0800357
358 int iommu_coherency;/* indicate coherency of iommu access */
Sheng Yang58c610b2009-03-18 15:33:05 +0800359 int iommu_snooping; /* indicate snooping control feature*/
Weidong Hanc7151a82008-12-08 22:51:37 +0800360 int iommu_count; /* reference count of iommu */
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100361 int iommu_superpage;/* Level of superpages supported:
362 0 == 4KiB (no superpages), 1 == 2MiB,
363 2 == 1GiB, 3 == 512GiB, 4 == 1TiB */
Weidong Hanc7151a82008-12-08 22:51:37 +0800364 spinlock_t iommu_lock; /* protect iommu set in domain */
Weidong Hanfe40f1e2008-12-08 23:10:23 +0800365 u64 max_addr; /* maximum mapped address */
Mark McLoughlin99126f72008-11-20 15:49:47 +0000366};
367
Mark McLoughlina647dac2008-11-20 15:49:48 +0000368/* PCI domain-device relationship */
369struct device_domain_info {
370 struct list_head link; /* link to domain siblings */
371 struct list_head global; /* link to global list */
David Woodhouse276dbf992009-04-04 01:45:37 +0100372 u8 bus; /* PCI bus number */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000373 u8 devfn; /* PCI devfn number */
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000374 struct device *dev; /* it's NULL for PCIe-to-PCI bridge */
Yu Zhao93a23a72009-05-18 13:51:37 +0800375 struct intel_iommu *iommu; /* IOMMU used by this device */
Mark McLoughlina647dac2008-11-20 15:49:48 +0000376 struct dmar_domain *domain; /* pointer to domain */
377};
378
Jiang Liub94e4112014-02-19 14:07:25 +0800379struct dmar_rmrr_unit {
380 struct list_head list; /* list of rmrr units */
381 struct acpi_dmar_header *hdr; /* ACPI header */
382 u64 base_address; /* reserved base address*/
383 u64 end_address; /* reserved end address */
David Woodhouse832bd852014-03-07 15:08:36 +0000384 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800385 int devices_cnt; /* target device count */
386};
387
388struct dmar_atsr_unit {
389 struct list_head list; /* list of ATSR units */
390 struct acpi_dmar_header *hdr; /* ACPI header */
David Woodhouse832bd852014-03-07 15:08:36 +0000391 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800392 int devices_cnt; /* target device count */
393 u8 include_all:1; /* include all ports */
394};
395
396static LIST_HEAD(dmar_atsr_units);
397static LIST_HEAD(dmar_rmrr_units);
398
399#define for_each_rmrr_units(rmrr) \
400 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
401
mark gross5e0d2a62008-03-04 15:22:08 -0800402static void flush_unmaps_timeout(unsigned long data);
403
Jiang Liub707cb02014-01-06 14:18:26 +0800404static DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0);
mark gross5e0d2a62008-03-04 15:22:08 -0800405
mark gross80b20dd2008-04-18 13:53:58 -0700406#define HIGH_WATER_MARK 250
407struct deferred_flush_tables {
408 int next;
409 struct iova *iova[HIGH_WATER_MARK];
410 struct dmar_domain *domain[HIGH_WATER_MARK];
David Woodhouseea8ea462014-03-05 17:09:32 +0000411 struct page *freelist[HIGH_WATER_MARK];
mark gross80b20dd2008-04-18 13:53:58 -0700412};
413
414static struct deferred_flush_tables *deferred_flush;
415
mark gross5e0d2a62008-03-04 15:22:08 -0800416/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800417static int g_num_of_iommus;
418
419static DEFINE_SPINLOCK(async_umap_flush_lock);
420static LIST_HEAD(unmaps_to_do);
421
422static int timer_on;
423static long list_size;
mark gross5e0d2a62008-03-04 15:22:08 -0800424
Jiang Liu92d03cc2014-02-19 14:07:28 +0800425static void domain_exit(struct dmar_domain *domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700426static void domain_remove_dev_info(struct dmar_domain *domain);
Jiang Liub94e4112014-02-19 14:07:25 +0800427static void domain_remove_one_dev_info(struct dmar_domain *domain,
428 struct pci_dev *pdev);
Jiang Liu92d03cc2014-02-19 14:07:28 +0800429static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
David Woodhouse0bcb3e22014-03-06 17:12:03 +0000430 struct device *dev);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700431
Suresh Siddhad3f13812011-08-23 17:05:25 -0700432#ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800433int dmar_disabled = 0;
434#else
435int dmar_disabled = 1;
Suresh Siddhad3f13812011-08-23 17:05:25 -0700436#endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800437
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -0200438int intel_iommu_enabled = 0;
439EXPORT_SYMBOL_GPL(intel_iommu_enabled);
440
David Woodhouse2d9e6672010-06-15 10:57:57 +0100441static int dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700442static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800443static int intel_iommu_strict;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100444static int intel_iommu_superpage = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700445
David Woodhousec0771df2011-10-14 20:59:46 +0100446int intel_iommu_gfx_mapped;
447EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped);
448
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700449#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
450static DEFINE_SPINLOCK(device_domain_lock);
451static LIST_HEAD(device_domain_list);
452
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100453static struct iommu_ops intel_iommu_ops;
454
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700455static int __init intel_iommu_setup(char *str)
456{
457 if (!str)
458 return -EINVAL;
459 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800460 if (!strncmp(str, "on", 2)) {
461 dmar_disabled = 0;
462 printk(KERN_INFO "Intel-IOMMU: enabled\n");
463 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700464 dmar_disabled = 1;
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800465 printk(KERN_INFO "Intel-IOMMU: disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700466 } else if (!strncmp(str, "igfx_off", 8)) {
467 dmar_map_gfx = 0;
468 printk(KERN_INFO
469 "Intel-IOMMU: disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700470 } else if (!strncmp(str, "forcedac", 8)) {
mark gross5e0d2a62008-03-04 15:22:08 -0800471 printk(KERN_INFO
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700472 "Intel-IOMMU: Forcing DAC for PCI devices\n");
473 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800474 } else if (!strncmp(str, "strict", 6)) {
475 printk(KERN_INFO
476 "Intel-IOMMU: disable batched IOTLB flush\n");
477 intel_iommu_strict = 1;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100478 } else if (!strncmp(str, "sp_off", 6)) {
479 printk(KERN_INFO
480 "Intel-IOMMU: disable supported super page\n");
481 intel_iommu_superpage = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700482 }
483
484 str += strcspn(str, ",");
485 while (*str == ',')
486 str++;
487 }
488 return 0;
489}
490__setup("intel_iommu=", intel_iommu_setup);
491
492static struct kmem_cache *iommu_domain_cache;
493static struct kmem_cache *iommu_devinfo_cache;
494static struct kmem_cache *iommu_iova_cache;
495
Suresh Siddha4c923d42009-10-02 11:01:24 -0700496static inline void *alloc_pgtable_page(int node)
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700497{
Suresh Siddha4c923d42009-10-02 11:01:24 -0700498 struct page *page;
499 void *vaddr = NULL;
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700500
Suresh Siddha4c923d42009-10-02 11:01:24 -0700501 page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0);
502 if (page)
503 vaddr = page_address(page);
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700504 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700505}
506
507static inline void free_pgtable_page(void *vaddr)
508{
509 free_page((unsigned long)vaddr);
510}
511
512static inline void *alloc_domain_mem(void)
513{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900514 return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700515}
516
Kay, Allen M38717942008-09-09 18:37:29 +0300517static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700518{
519 kmem_cache_free(iommu_domain_cache, vaddr);
520}
521
522static inline void * alloc_devinfo_mem(void)
523{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900524 return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700525}
526
527static inline void free_devinfo_mem(void *vaddr)
528{
529 kmem_cache_free(iommu_devinfo_cache, vaddr);
530}
531
532struct iova *alloc_iova_mem(void)
533{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900534 return kmem_cache_alloc(iommu_iova_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700535}
536
537void free_iova_mem(struct iova *iova)
538{
539 kmem_cache_free(iommu_iova_cache, iova);
540}
541
Weidong Han1b573682008-12-08 15:34:06 +0800542
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700543static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800544{
545 unsigned long sagaw;
546 int agaw = -1;
547
548 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700549 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800550 agaw >= 0; agaw--) {
551 if (test_bit(agaw, &sagaw))
552 break;
553 }
554
555 return agaw;
556}
557
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700558/*
559 * Calculate max SAGAW for each iommu.
560 */
561int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
562{
563 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
564}
565
566/*
567 * calculate agaw for each iommu.
568 * "SAGAW" may be different across iommus, use a default agaw, and
569 * get a supported less agaw for iommus that don't support the default agaw.
570 */
571int iommu_calculate_agaw(struct intel_iommu *iommu)
572{
573 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
574}
575
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700576/* This functionin only returns single iommu in a domain */
Weidong Han8c11e792008-12-08 15:29:22 +0800577static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
578{
579 int iommu_id;
580
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700581 /* si_domain and vm domain should not get here. */
Weidong Han1ce28fe2008-12-08 16:35:39 +0800582 BUG_ON(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700583 BUG_ON(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY);
Weidong Han1ce28fe2008-12-08 16:35:39 +0800584
Mike Travis1b198bb2012-03-05 15:05:16 -0800585 iommu_id = find_first_bit(domain->iommu_bmp, g_num_of_iommus);
Weidong Han8c11e792008-12-08 15:29:22 +0800586 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
587 return NULL;
588
589 return g_iommus[iommu_id];
590}
591
Weidong Han8e6040972008-12-08 15:49:06 +0800592static void domain_update_iommu_coherency(struct dmar_domain *domain)
593{
David Woodhoused0501962014-03-11 17:10:29 -0700594 struct dmar_drhd_unit *drhd;
595 struct intel_iommu *iommu;
596 int i, found = 0;
Weidong Han8e6040972008-12-08 15:49:06 +0800597
David Woodhoused0501962014-03-11 17:10:29 -0700598 domain->iommu_coherency = 1;
Weidong Han8e6040972008-12-08 15:49:06 +0800599
Mike Travis1b198bb2012-03-05 15:05:16 -0800600 for_each_set_bit(i, domain->iommu_bmp, g_num_of_iommus) {
David Woodhoused0501962014-03-11 17:10:29 -0700601 found = 1;
Weidong Han8e6040972008-12-08 15:49:06 +0800602 if (!ecap_coherent(g_iommus[i]->ecap)) {
603 domain->iommu_coherency = 0;
604 break;
605 }
Weidong Han8e6040972008-12-08 15:49:06 +0800606 }
David Woodhoused0501962014-03-11 17:10:29 -0700607 if (found)
608 return;
609
610 /* No hardware attached; use lowest common denominator */
611 rcu_read_lock();
612 for_each_active_iommu(iommu, drhd) {
613 if (!ecap_coherent(iommu->ecap)) {
614 domain->iommu_coherency = 0;
615 break;
616 }
617 }
618 rcu_read_unlock();
Weidong Han8e6040972008-12-08 15:49:06 +0800619}
620
Sheng Yang58c610b2009-03-18 15:33:05 +0800621static void domain_update_iommu_snooping(struct dmar_domain *domain)
622{
623 int i;
624
625 domain->iommu_snooping = 1;
626
Mike Travis1b198bb2012-03-05 15:05:16 -0800627 for_each_set_bit(i, domain->iommu_bmp, g_num_of_iommus) {
Sheng Yang58c610b2009-03-18 15:33:05 +0800628 if (!ecap_sc_support(g_iommus[i]->ecap)) {
629 domain->iommu_snooping = 0;
630 break;
631 }
Sheng Yang58c610b2009-03-18 15:33:05 +0800632 }
633}
634
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100635static void domain_update_iommu_superpage(struct dmar_domain *domain)
636{
Allen Kay8140a952011-10-14 12:32:17 -0700637 struct dmar_drhd_unit *drhd;
638 struct intel_iommu *iommu = NULL;
639 int mask = 0xf;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100640
641 if (!intel_iommu_superpage) {
642 domain->iommu_superpage = 0;
643 return;
644 }
645
Allen Kay8140a952011-10-14 12:32:17 -0700646 /* set iommu_superpage to the smallest common denominator */
Jiang Liu0e242612014-02-19 14:07:34 +0800647 rcu_read_lock();
Allen Kay8140a952011-10-14 12:32:17 -0700648 for_each_active_iommu(iommu, drhd) {
649 mask &= cap_super_page_val(iommu->cap);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100650 if (!mask) {
651 break;
652 }
653 }
Jiang Liu0e242612014-02-19 14:07:34 +0800654 rcu_read_unlock();
655
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100656 domain->iommu_superpage = fls(mask);
657}
658
Sheng Yang58c610b2009-03-18 15:33:05 +0800659/* Some capabilities may be different across iommus */
660static void domain_update_iommu_cap(struct dmar_domain *domain)
661{
662 domain_update_iommu_coherency(domain);
663 domain_update_iommu_snooping(domain);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100664 domain_update_iommu_superpage(domain);
Sheng Yang58c610b2009-03-18 15:33:05 +0800665}
666
David Woodhouse156baca2014-03-09 14:00:57 -0700667static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800668{
669 struct dmar_drhd_unit *drhd = NULL;
Jiang Liub683b232014-02-19 14:07:32 +0800670 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -0700671 struct device *tmp;
672 struct pci_dev *ptmp, *pdev = NULL;
673 u16 segment;
Weidong Hanc7151a82008-12-08 22:51:37 +0800674 int i;
675
David Woodhouse156baca2014-03-09 14:00:57 -0700676 if (dev_is_pci(dev)) {
677 pdev = to_pci_dev(dev);
678 segment = pci_domain_nr(pdev->bus);
679 } else if (ACPI_COMPANION(dev))
680 dev = &ACPI_COMPANION(dev)->dev;
681
Jiang Liu0e242612014-02-19 14:07:34 +0800682 rcu_read_lock();
Jiang Liub683b232014-02-19 14:07:32 +0800683 for_each_active_iommu(iommu, drhd) {
David Woodhouse156baca2014-03-09 14:00:57 -0700684 if (pdev && segment != drhd->segment)
David Woodhouse276dbf992009-04-04 01:45:37 +0100685 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800686
Jiang Liub683b232014-02-19 14:07:32 +0800687 for_each_active_dev_scope(drhd->devices,
David Woodhouse156baca2014-03-09 14:00:57 -0700688 drhd->devices_cnt, i, tmp) {
689 if (tmp == dev) {
690 *bus = drhd->devices[i].bus;
691 *devfn = drhd->devices[i].devfn;
692 goto out;
693 }
694
695 if (!pdev || !dev_is_pci(tmp))
David Woodhouse832bd852014-03-07 15:08:36 +0000696 continue;
David Woodhouse156baca2014-03-09 14:00:57 -0700697
698 ptmp = to_pci_dev(tmp);
699 if (ptmp->subordinate &&
700 ptmp->subordinate->number <= pdev->bus->number &&
701 ptmp->subordinate->busn_res.end >= pdev->bus->number)
702 goto got_pdev;
David Woodhouse924b6232009-04-04 00:39:25 +0100703 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800704
David Woodhouse156baca2014-03-09 14:00:57 -0700705 if (pdev && drhd->include_all) {
706 got_pdev:
707 *bus = pdev->bus->number;
708 *devfn = pdev->devfn;
Jiang Liub683b232014-02-19 14:07:32 +0800709 goto out;
David Woodhouse156baca2014-03-09 14:00:57 -0700710 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800711 }
Jiang Liub683b232014-02-19 14:07:32 +0800712 iommu = NULL;
David Woodhouse156baca2014-03-09 14:00:57 -0700713 out:
Jiang Liu0e242612014-02-19 14:07:34 +0800714 rcu_read_unlock();
Weidong Hanc7151a82008-12-08 22:51:37 +0800715
Jiang Liub683b232014-02-19 14:07:32 +0800716 return iommu;
Weidong Hanc7151a82008-12-08 22:51:37 +0800717}
718
Weidong Han5331fe62008-12-08 23:00:00 +0800719static void domain_flush_cache(struct dmar_domain *domain,
720 void *addr, int size)
721{
722 if (!domain->iommu_coherency)
723 clflush_cache_range(addr, size);
724}
725
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700726/* Gets context entry for a given bus and devfn */
727static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
728 u8 bus, u8 devfn)
729{
730 struct root_entry *root;
731 struct context_entry *context;
732 unsigned long phy_addr;
733 unsigned long flags;
734
735 spin_lock_irqsave(&iommu->lock, flags);
736 root = &iommu->root_entry[bus];
737 context = get_context_addr_from_root(root);
738 if (!context) {
Suresh Siddha4c923d42009-10-02 11:01:24 -0700739 context = (struct context_entry *)
740 alloc_pgtable_page(iommu->node);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700741 if (!context) {
742 spin_unlock_irqrestore(&iommu->lock, flags);
743 return NULL;
744 }
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700745 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700746 phy_addr = virt_to_phys((void *)context);
747 set_root_value(root, phy_addr);
748 set_root_present(root);
749 __iommu_flush_cache(iommu, root, sizeof(*root));
750 }
751 spin_unlock_irqrestore(&iommu->lock, flags);
752 return &context[devfn];
753}
754
755static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
756{
757 struct root_entry *root;
758 struct context_entry *context;
759 int ret;
760 unsigned long flags;
761
762 spin_lock_irqsave(&iommu->lock, flags);
763 root = &iommu->root_entry[bus];
764 context = get_context_addr_from_root(root);
765 if (!context) {
766 ret = 0;
767 goto out;
768 }
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000769 ret = context_present(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700770out:
771 spin_unlock_irqrestore(&iommu->lock, flags);
772 return ret;
773}
774
775static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn)
776{
777 struct root_entry *root;
778 struct context_entry *context;
779 unsigned long flags;
780
781 spin_lock_irqsave(&iommu->lock, flags);
782 root = &iommu->root_entry[bus];
783 context = get_context_addr_from_root(root);
784 if (context) {
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000785 context_clear_entry(&context[devfn]);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700786 __iommu_flush_cache(iommu, &context[devfn], \
787 sizeof(*context));
788 }
789 spin_unlock_irqrestore(&iommu->lock, flags);
790}
791
792static void free_context_table(struct intel_iommu *iommu)
793{
794 struct root_entry *root;
795 int i;
796 unsigned long flags;
797 struct context_entry *context;
798
799 spin_lock_irqsave(&iommu->lock, flags);
800 if (!iommu->root_entry) {
801 goto out;
802 }
803 for (i = 0; i < ROOT_ENTRY_NR; i++) {
804 root = &iommu->root_entry[i];
805 context = get_context_addr_from_root(root);
806 if (context)
807 free_pgtable_page(context);
808 }
809 free_pgtable_page(iommu->root_entry);
810 iommu->root_entry = NULL;
811out:
812 spin_unlock_irqrestore(&iommu->lock, flags);
813}
814
David Woodhouseb026fd22009-06-28 10:37:25 +0100815static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
David Woodhouse5cf0a762014-03-19 16:07:49 +0000816 unsigned long pfn, int *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700817{
David Woodhouseb026fd22009-06-28 10:37:25 +0100818 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700819 struct dma_pte *parent, *pte = NULL;
820 int level = agaw_to_level(domain->agaw);
Allen Kay4399c8b2011-10-14 12:32:46 -0700821 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700822
823 BUG_ON(!domain->pgd);
Julian Stecklinaf9423602013-10-09 10:03:52 +0200824
825 if (addr_width < BITS_PER_LONG && pfn >> addr_width)
826 /* Address beyond IOMMU's addressing capabilities. */
827 return NULL;
828
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700829 parent = domain->pgd;
830
David Woodhouse5cf0a762014-03-19 16:07:49 +0000831 while (1) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700832 void *tmp_page;
833
David Woodhouseb026fd22009-06-28 10:37:25 +0100834 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700835 pte = &parent[offset];
David Woodhouse5cf0a762014-03-19 16:07:49 +0000836 if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte)))
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100837 break;
David Woodhouse5cf0a762014-03-19 16:07:49 +0000838 if (level == *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700839 break;
840
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000841 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100842 uint64_t pteval;
843
Suresh Siddha4c923d42009-10-02 11:01:24 -0700844 tmp_page = alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700845
David Woodhouse206a73c12009-07-01 19:30:28 +0100846 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700847 return NULL;
David Woodhouse206a73c12009-07-01 19:30:28 +0100848
David Woodhousec85994e2009-07-01 19:21:24 +0100849 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
Benjamin LaHaise64de5af2009-09-16 21:05:55 -0400850 pteval = ((uint64_t)virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
David Woodhousec85994e2009-07-01 19:21:24 +0100851 if (cmpxchg64(&pte->val, 0ULL, pteval)) {
852 /* Someone else set it while we were thinking; use theirs. */
853 free_pgtable_page(tmp_page);
854 } else {
855 dma_pte_addr(pte);
856 domain_flush_cache(domain, pte, sizeof(*pte));
857 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700858 }
David Woodhouse5cf0a762014-03-19 16:07:49 +0000859 if (level == 1)
860 break;
861
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000862 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700863 level--;
864 }
865
David Woodhouse5cf0a762014-03-19 16:07:49 +0000866 if (!*target_level)
867 *target_level = level;
868
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700869 return pte;
870}
871
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100872
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700873/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100874static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
875 unsigned long pfn,
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100876 int level, int *large_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700877{
878 struct dma_pte *parent, *pte = NULL;
879 int total = agaw_to_level(domain->agaw);
880 int offset;
881
882 parent = domain->pgd;
883 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100884 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700885 pte = &parent[offset];
886 if (level == total)
887 return pte;
888
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100889 if (!dma_pte_present(pte)) {
890 *large_page = total;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700891 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100892 }
893
894 if (pte->val & DMA_PTE_LARGE_PAGE) {
895 *large_page = total;
896 return pte;
897 }
898
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000899 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700900 total--;
901 }
902 return NULL;
903}
904
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700905/* clear last level pte, a tlb flush should be followed */
David Woodhouse5cf0a762014-03-19 16:07:49 +0000906static void dma_pte_clear_range(struct dmar_domain *domain,
David Woodhouse595badf2009-06-27 22:09:11 +0100907 unsigned long start_pfn,
908 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700909{
David Woodhouse04b18e62009-06-27 19:15:01 +0100910 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100911 unsigned int large_page = 1;
David Woodhouse310a5ab2009-06-28 18:52:20 +0100912 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700913
David Woodhouse04b18e62009-06-27 19:15:01 +0100914 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
David Woodhouse595badf2009-06-27 22:09:11 +0100915 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse59c36282009-09-19 07:36:28 -0700916 BUG_ON(start_pfn > last_pfn);
David Woodhouse66eae842009-06-27 19:00:32 +0100917
David Woodhouse04b18e62009-06-27 19:15:01 +0100918 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse59c36282009-09-19 07:36:28 -0700919 do {
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100920 large_page = 1;
921 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100922 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100923 start_pfn = align_to_level(start_pfn + 1, large_page + 1);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100924 continue;
925 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100926 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100927 dma_clear_pte(pte);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100928 start_pfn += lvl_to_nr_pages(large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100929 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +0100930 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
931
David Woodhouse310a5ab2009-06-28 18:52:20 +0100932 domain_flush_cache(domain, first_pte,
933 (void *)pte - (void *)first_pte);
David Woodhouse59c36282009-09-19 07:36:28 -0700934
935 } while (start_pfn && start_pfn <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700936}
937
Alex Williamson3269ee02013-06-15 10:27:19 -0600938static void dma_pte_free_level(struct dmar_domain *domain, int level,
939 struct dma_pte *pte, unsigned long pfn,
940 unsigned long start_pfn, unsigned long last_pfn)
941{
942 pfn = max(start_pfn, pfn);
943 pte = &pte[pfn_level_offset(pfn, level)];
944
945 do {
946 unsigned long level_pfn;
947 struct dma_pte *level_pte;
948
949 if (!dma_pte_present(pte) || dma_pte_superpage(pte))
950 goto next;
951
952 level_pfn = pfn & level_mask(level - 1);
953 level_pte = phys_to_virt(dma_pte_addr(pte));
954
955 if (level > 2)
956 dma_pte_free_level(domain, level - 1, level_pte,
957 level_pfn, start_pfn, last_pfn);
958
959 /* If range covers entire pagetable, free it */
960 if (!(start_pfn > level_pfn ||
Alex Williamson08336fd2014-01-21 15:48:18 -0800961 last_pfn < level_pfn + level_size(level) - 1)) {
Alex Williamson3269ee02013-06-15 10:27:19 -0600962 dma_clear_pte(pte);
963 domain_flush_cache(domain, pte, sizeof(*pte));
964 free_pgtable_page(level_pte);
965 }
966next:
967 pfn += level_size(level);
968 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
969}
970
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700971/* free page table pages. last level pte should already be cleared */
972static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +0100973 unsigned long start_pfn,
974 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700975{
David Woodhouse6660c632009-06-27 22:41:00 +0100976 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700977
David Woodhouse6660c632009-06-27 22:41:00 +0100978 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
979 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
David Woodhouse59c36282009-09-19 07:36:28 -0700980 BUG_ON(start_pfn > last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700981
David Woodhousef3a0a522009-06-30 03:40:07 +0100982 /* We don't need lock here; nobody else touches the iova range */
Alex Williamson3269ee02013-06-15 10:27:19 -0600983 dma_pte_free_level(domain, agaw_to_level(domain->agaw),
984 domain->pgd, 0, start_pfn, last_pfn);
David Woodhouse6660c632009-06-27 22:41:00 +0100985
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700986 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +0100987 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700988 free_pgtable_page(domain->pgd);
989 domain->pgd = NULL;
990 }
991}
992
David Woodhouseea8ea462014-03-05 17:09:32 +0000993/* When a page at a given level is being unlinked from its parent, we don't
994 need to *modify* it at all. All we need to do is make a list of all the
995 pages which can be freed just as soon as we've flushed the IOTLB and we
996 know the hardware page-walk will no longer touch them.
997 The 'pte' argument is the *parent* PTE, pointing to the page that is to
998 be freed. */
999static struct page *dma_pte_list_pagetables(struct dmar_domain *domain,
1000 int level, struct dma_pte *pte,
1001 struct page *freelist)
1002{
1003 struct page *pg;
1004
1005 pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT);
1006 pg->freelist = freelist;
1007 freelist = pg;
1008
1009 if (level == 1)
1010 return freelist;
1011
1012 for (pte = page_address(pg); !first_pte_in_page(pte); pte++) {
1013 if (dma_pte_present(pte) && !dma_pte_superpage(pte))
1014 freelist = dma_pte_list_pagetables(domain, level - 1,
1015 pte, freelist);
1016 }
1017
1018 return freelist;
1019}
1020
1021static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level,
1022 struct dma_pte *pte, unsigned long pfn,
1023 unsigned long start_pfn,
1024 unsigned long last_pfn,
1025 struct page *freelist)
1026{
1027 struct dma_pte *first_pte = NULL, *last_pte = NULL;
1028
1029 pfn = max(start_pfn, pfn);
1030 pte = &pte[pfn_level_offset(pfn, level)];
1031
1032 do {
1033 unsigned long level_pfn;
1034
1035 if (!dma_pte_present(pte))
1036 goto next;
1037
1038 level_pfn = pfn & level_mask(level);
1039
1040 /* If range covers entire pagetable, free it */
1041 if (start_pfn <= level_pfn &&
1042 last_pfn >= level_pfn + level_size(level) - 1) {
1043 /* These suborbinate page tables are going away entirely. Don't
1044 bother to clear them; we're just going to *free* them. */
1045 if (level > 1 && !dma_pte_superpage(pte))
1046 freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist);
1047
1048 dma_clear_pte(pte);
1049 if (!first_pte)
1050 first_pte = pte;
1051 last_pte = pte;
1052 } else if (level > 1) {
1053 /* Recurse down into a level that isn't *entirely* obsolete */
1054 freelist = dma_pte_clear_level(domain, level - 1,
1055 phys_to_virt(dma_pte_addr(pte)),
1056 level_pfn, start_pfn, last_pfn,
1057 freelist);
1058 }
1059next:
1060 pfn += level_size(level);
1061 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1062
1063 if (first_pte)
1064 domain_flush_cache(domain, first_pte,
1065 (void *)++last_pte - (void *)first_pte);
1066
1067 return freelist;
1068}
1069
1070/* We can't just free the pages because the IOMMU may still be walking
1071 the page tables, and may have cached the intermediate levels. The
1072 pages can only be freed after the IOTLB flush has been done. */
1073struct page *domain_unmap(struct dmar_domain *domain,
1074 unsigned long start_pfn,
1075 unsigned long last_pfn)
1076{
1077 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
1078 struct page *freelist = NULL;
1079
1080 BUG_ON(addr_width < BITS_PER_LONG && start_pfn >> addr_width);
1081 BUG_ON(addr_width < BITS_PER_LONG && last_pfn >> addr_width);
1082 BUG_ON(start_pfn > last_pfn);
1083
1084 /* we don't need lock here; nobody else touches the iova range */
1085 freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw),
1086 domain->pgd, 0, start_pfn, last_pfn, NULL);
1087
1088 /* free pgd */
1089 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
1090 struct page *pgd_page = virt_to_page(domain->pgd);
1091 pgd_page->freelist = freelist;
1092 freelist = pgd_page;
1093
1094 domain->pgd = NULL;
1095 }
1096
1097 return freelist;
1098}
1099
1100void dma_free_pagelist(struct page *freelist)
1101{
1102 struct page *pg;
1103
1104 while ((pg = freelist)) {
1105 freelist = pg->freelist;
1106 free_pgtable_page(page_address(pg));
1107 }
1108}
1109
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001110/* iommu handling */
1111static int iommu_alloc_root_entry(struct intel_iommu *iommu)
1112{
1113 struct root_entry *root;
1114 unsigned long flags;
1115
Suresh Siddha4c923d42009-10-02 11:01:24 -07001116 root = (struct root_entry *)alloc_pgtable_page(iommu->node);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001117 if (!root)
1118 return -ENOMEM;
1119
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001120 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001121
1122 spin_lock_irqsave(&iommu->lock, flags);
1123 iommu->root_entry = root;
1124 spin_unlock_irqrestore(&iommu->lock, flags);
1125
1126 return 0;
1127}
1128
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001129static void iommu_set_root_entry(struct intel_iommu *iommu)
1130{
1131 void *addr;
David Woodhousec416daa2009-05-10 20:30:58 +01001132 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001133 unsigned long flag;
1134
1135 addr = iommu->root_entry;
1136
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001137 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001138 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, virt_to_phys(addr));
1139
David Woodhousec416daa2009-05-10 20:30:58 +01001140 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001141
1142 /* Make sure hardware complete it */
1143 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001144 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001145
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001146 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001147}
1148
1149static void iommu_flush_write_buffer(struct intel_iommu *iommu)
1150{
1151 u32 val;
1152 unsigned long flag;
1153
David Woodhouse9af88142009-02-13 23:18:03 +00001154 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001155 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001156
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001157 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +01001158 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001159
1160 /* Make sure hardware complete it */
1161 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001162 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001163
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001164 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001165}
1166
1167/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001168static void __iommu_flush_context(struct intel_iommu *iommu,
1169 u16 did, u16 source_id, u8 function_mask,
1170 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001171{
1172 u64 val = 0;
1173 unsigned long flag;
1174
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001175 switch (type) {
1176 case DMA_CCMD_GLOBAL_INVL:
1177 val = DMA_CCMD_GLOBAL_INVL;
1178 break;
1179 case DMA_CCMD_DOMAIN_INVL:
1180 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
1181 break;
1182 case DMA_CCMD_DEVICE_INVL:
1183 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
1184 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
1185 break;
1186 default:
1187 BUG();
1188 }
1189 val |= DMA_CCMD_ICC;
1190
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001191 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001192 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
1193
1194 /* Make sure hardware complete it */
1195 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
1196 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
1197
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001198 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001199}
1200
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001201/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001202static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
1203 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001204{
1205 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
1206 u64 val = 0, val_iva = 0;
1207 unsigned long flag;
1208
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001209 switch (type) {
1210 case DMA_TLB_GLOBAL_FLUSH:
1211 /* global flush doesn't need set IVA_REG */
1212 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
1213 break;
1214 case DMA_TLB_DSI_FLUSH:
1215 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
1216 break;
1217 case DMA_TLB_PSI_FLUSH:
1218 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
David Woodhouseea8ea462014-03-05 17:09:32 +00001219 /* IH bit is passed in as part of address */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001220 val_iva = size_order | addr;
1221 break;
1222 default:
1223 BUG();
1224 }
1225 /* Note: set drain read/write */
1226#if 0
1227 /*
1228 * This is probably to be super secure.. Looks like we can
1229 * ignore it without any impact.
1230 */
1231 if (cap_read_drain(iommu->cap))
1232 val |= DMA_TLB_READ_DRAIN;
1233#endif
1234 if (cap_write_drain(iommu->cap))
1235 val |= DMA_TLB_WRITE_DRAIN;
1236
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001237 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001238 /* Note: Only uses first TLB reg currently */
1239 if (val_iva)
1240 dmar_writeq(iommu->reg + tlb_offset, val_iva);
1241 dmar_writeq(iommu->reg + tlb_offset + 8, val);
1242
1243 /* Make sure hardware complete it */
1244 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
1245 dmar_readq, (!(val & DMA_TLB_IVT)), val);
1246
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001247 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001248
1249 /* check IOTLB invalidation granularity */
1250 if (DMA_TLB_IAIG(val) == 0)
1251 printk(KERN_ERR"IOMMU: flush IOTLB failed\n");
1252 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
1253 pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001254 (unsigned long long)DMA_TLB_IIRG(type),
1255 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001256}
1257
David Woodhouse64ae8922014-03-09 12:52:30 -07001258static struct device_domain_info *
1259iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu,
1260 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001261{
Yu Zhao93a23a72009-05-18 13:51:37 +08001262 int found = 0;
1263 unsigned long flags;
1264 struct device_domain_info *info;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001265 struct pci_dev *pdev;
Yu Zhao93a23a72009-05-18 13:51:37 +08001266
1267 if (!ecap_dev_iotlb_support(iommu->ecap))
1268 return NULL;
1269
1270 if (!iommu->qi)
1271 return NULL;
1272
1273 spin_lock_irqsave(&device_domain_lock, flags);
1274 list_for_each_entry(info, &domain->devices, link)
1275 if (info->bus == bus && info->devfn == devfn) {
1276 found = 1;
1277 break;
1278 }
1279 spin_unlock_irqrestore(&device_domain_lock, flags);
1280
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001281 if (!found || !info->dev || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001282 return NULL;
1283
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001284 pdev = to_pci_dev(info->dev);
1285
1286 if (!pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS))
Yu Zhao93a23a72009-05-18 13:51:37 +08001287 return NULL;
1288
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001289 if (!dmar_find_matched_atsr_unit(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001290 return NULL;
1291
Yu Zhao93a23a72009-05-18 13:51:37 +08001292 return info;
1293}
1294
1295static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1296{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001297 if (!info || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001298 return;
1299
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001300 pci_enable_ats(to_pci_dev(info->dev), VTD_PAGE_SHIFT);
Yu Zhao93a23a72009-05-18 13:51:37 +08001301}
1302
1303static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1304{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001305 if (!info->dev || !dev_is_pci(info->dev) ||
1306 !pci_ats_enabled(to_pci_dev(info->dev)))
Yu Zhao93a23a72009-05-18 13:51:37 +08001307 return;
1308
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001309 pci_disable_ats(to_pci_dev(info->dev));
Yu Zhao93a23a72009-05-18 13:51:37 +08001310}
1311
1312static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1313 u64 addr, unsigned mask)
1314{
1315 u16 sid, qdep;
1316 unsigned long flags;
1317 struct device_domain_info *info;
1318
1319 spin_lock_irqsave(&device_domain_lock, flags);
1320 list_for_each_entry(info, &domain->devices, link) {
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001321 struct pci_dev *pdev;
1322 if (!info->dev || !dev_is_pci(info->dev))
1323 continue;
1324
1325 pdev = to_pci_dev(info->dev);
1326 if (!pci_ats_enabled(pdev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001327 continue;
1328
1329 sid = info->bus << 8 | info->devfn;
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001330 qdep = pci_ats_queue_depth(pdev);
Yu Zhao93a23a72009-05-18 13:51:37 +08001331 qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask);
1332 }
1333 spin_unlock_irqrestore(&device_domain_lock, flags);
1334}
1335
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001336static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did,
David Woodhouseea8ea462014-03-05 17:09:32 +00001337 unsigned long pfn, unsigned int pages, int ih, int map)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001338{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001339 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001340 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001341
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001342 BUG_ON(pages == 0);
1343
David Woodhouseea8ea462014-03-05 17:09:32 +00001344 if (ih)
1345 ih = 1 << 6;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001346 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001347 * Fallback to domain selective flush if no PSI support or the size is
1348 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001349 * PSI requires page size to be 2 ^ x, and the base address is naturally
1350 * aligned to the size
1351 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001352 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1353 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001354 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001355 else
David Woodhouseea8ea462014-03-05 17:09:32 +00001356 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001357 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001358
1359 /*
Nadav Amit82653632010-04-01 13:24:40 +03001360 * In caching mode, changes of pages from non-present to present require
1361 * flush. However, device IOTLB doesn't need to be flushed in this case.
Yu Zhaobf92df32009-06-29 11:31:45 +08001362 */
Nadav Amit82653632010-04-01 13:24:40 +03001363 if (!cap_caching_mode(iommu->cap) || !map)
Yu Zhao93a23a72009-05-18 13:51:37 +08001364 iommu_flush_dev_iotlb(iommu->domains[did], addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001365}
1366
mark grossf8bab732008-02-08 04:18:38 -08001367static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1368{
1369 u32 pmen;
1370 unsigned long flags;
1371
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001372 raw_spin_lock_irqsave(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001373 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1374 pmen &= ~DMA_PMEN_EPM;
1375 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1376
1377 /* wait for the protected region status bit to clear */
1378 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1379 readl, !(pmen & DMA_PMEN_PRS), pmen);
1380
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001381 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001382}
1383
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001384static int iommu_enable_translation(struct intel_iommu *iommu)
1385{
1386 u32 sts;
1387 unsigned long flags;
1388
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001389 raw_spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001390 iommu->gcmd |= DMA_GCMD_TE;
1391 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001392
1393 /* Make sure hardware complete it */
1394 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001395 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001396
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001397 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001398 return 0;
1399}
1400
1401static int iommu_disable_translation(struct intel_iommu *iommu)
1402{
1403 u32 sts;
1404 unsigned long flag;
1405
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001406 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001407 iommu->gcmd &= ~DMA_GCMD_TE;
1408 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1409
1410 /* Make sure hardware complete it */
1411 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001412 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001413
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001414 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001415 return 0;
1416}
1417
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001418
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001419static int iommu_init_domains(struct intel_iommu *iommu)
1420{
1421 unsigned long ndomains;
1422 unsigned long nlongs;
1423
1424 ndomains = cap_ndoms(iommu->cap);
Jiang Liu852bdb02014-01-06 14:18:11 +08001425 pr_debug("IOMMU%d: Number of Domains supported <%ld>\n",
1426 iommu->seq_id, ndomains);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001427 nlongs = BITS_TO_LONGS(ndomains);
1428
Donald Dutile94a91b52009-08-20 16:51:34 -04001429 spin_lock_init(&iommu->lock);
1430
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001431 /* TBD: there might be 64K domains,
1432 * consider other allocation for future chip
1433 */
1434 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1435 if (!iommu->domain_ids) {
Jiang Liu852bdb02014-01-06 14:18:11 +08001436 pr_err("IOMMU%d: allocating domain id array failed\n",
1437 iommu->seq_id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001438 return -ENOMEM;
1439 }
1440 iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *),
1441 GFP_KERNEL);
1442 if (!iommu->domains) {
Jiang Liu852bdb02014-01-06 14:18:11 +08001443 pr_err("IOMMU%d: allocating domain array failed\n",
1444 iommu->seq_id);
1445 kfree(iommu->domain_ids);
1446 iommu->domain_ids = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001447 return -ENOMEM;
1448 }
1449
1450 /*
1451 * if Caching mode is set, then invalid translations are tagged
1452 * with domainid 0. Hence we need to pre-allocate it.
1453 */
1454 if (cap_caching_mode(iommu->cap))
1455 set_bit(0, iommu->domain_ids);
1456 return 0;
1457}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001458
Jiang Liua868e6b2014-01-06 14:18:20 +08001459static void free_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001460{
1461 struct dmar_domain *domain;
Jiang Liu5ced12a2014-01-06 14:18:22 +08001462 int i, count;
Weidong Hanc7151a82008-12-08 22:51:37 +08001463 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001464
Donald Dutile94a91b52009-08-20 16:51:34 -04001465 if ((iommu->domains) && (iommu->domain_ids)) {
Akinobu Mitaa45946a2010-03-11 14:04:08 -08001466 for_each_set_bit(i, iommu->domain_ids, cap_ndoms(iommu->cap)) {
Jiang Liua4eaa862014-02-19 14:07:30 +08001467 /*
1468 * Domain id 0 is reserved for invalid translation
1469 * if hardware supports caching mode.
1470 */
1471 if (cap_caching_mode(iommu->cap) && i == 0)
1472 continue;
1473
Donald Dutile94a91b52009-08-20 16:51:34 -04001474 domain = iommu->domains[i];
1475 clear_bit(i, iommu->domain_ids);
Weidong Hanc7151a82008-12-08 22:51:37 +08001476
Donald Dutile94a91b52009-08-20 16:51:34 -04001477 spin_lock_irqsave(&domain->iommu_lock, flags);
Jiang Liu5ced12a2014-01-06 14:18:22 +08001478 count = --domain->iommu_count;
1479 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Jiang Liu92d03cc2014-02-19 14:07:28 +08001480 if (count == 0)
1481 domain_exit(domain);
Weidong Han5e98c4b2008-12-08 23:03:27 +08001482 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001483 }
1484
1485 if (iommu->gcmd & DMA_GCMD_TE)
1486 iommu_disable_translation(iommu);
1487
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001488 kfree(iommu->domains);
1489 kfree(iommu->domain_ids);
Jiang Liua868e6b2014-01-06 14:18:20 +08001490 iommu->domains = NULL;
1491 iommu->domain_ids = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001492
Weidong Hand9630fe2008-12-08 11:06:32 +08001493 g_iommus[iommu->seq_id] = NULL;
1494
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001495 /* free context mapping */
1496 free_context_table(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001497}
1498
Jiang Liu92d03cc2014-02-19 14:07:28 +08001499static struct dmar_domain *alloc_domain(bool vm)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001500{
Jiang Liu92d03cc2014-02-19 14:07:28 +08001501 /* domain id for virtual machine, it won't be set in context */
1502 static atomic_t vm_domid = ATOMIC_INIT(0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001503 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001504
1505 domain = alloc_domain_mem();
1506 if (!domain)
1507 return NULL;
1508
Suresh Siddha4c923d42009-10-02 11:01:24 -07001509 domain->nid = -1;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001510 domain->iommu_count = 0;
Mike Travis1b198bb2012-03-05 15:05:16 -08001511 memset(domain->iommu_bmp, 0, sizeof(domain->iommu_bmp));
Weidong Hand71a2f32008-12-07 21:13:41 +08001512 domain->flags = 0;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001513 spin_lock_init(&domain->iommu_lock);
1514 INIT_LIST_HEAD(&domain->devices);
1515 if (vm) {
1516 domain->id = atomic_inc_return(&vm_domid);
1517 domain->flags = DOMAIN_FLAG_VIRTUAL_MACHINE;
1518 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001519
1520 return domain;
1521}
1522
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001523static int iommu_attach_domain(struct dmar_domain *domain,
1524 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001525{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001526 int num;
1527 unsigned long ndomains;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001528 unsigned long flags;
1529
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001530 ndomains = cap_ndoms(iommu->cap);
Weidong Han8c11e792008-12-08 15:29:22 +08001531
1532 spin_lock_irqsave(&iommu->lock, flags);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001533
1534 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1535 if (num >= ndomains) {
1536 spin_unlock_irqrestore(&iommu->lock, flags);
1537 printk(KERN_ERR "IOMMU: no free domain ids\n");
1538 return -ENOMEM;
1539 }
1540
1541 domain->id = num;
Jiang Liu9ebd6822014-02-19 14:07:29 +08001542 domain->iommu_count++;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001543 set_bit(num, iommu->domain_ids);
Mike Travis1b198bb2012-03-05 15:05:16 -08001544 set_bit(iommu->seq_id, domain->iommu_bmp);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001545 iommu->domains[num] = domain;
1546 spin_unlock_irqrestore(&iommu->lock, flags);
1547
1548 return 0;
1549}
1550
1551static void iommu_detach_domain(struct dmar_domain *domain,
1552 struct intel_iommu *iommu)
1553{
1554 unsigned long flags;
1555 int num, ndomains;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001556
1557 spin_lock_irqsave(&iommu->lock, flags);
1558 ndomains = cap_ndoms(iommu->cap);
Akinobu Mitaa45946a2010-03-11 14:04:08 -08001559 for_each_set_bit(num, iommu->domain_ids, ndomains) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001560 if (iommu->domains[num] == domain) {
Jiang Liu92d03cc2014-02-19 14:07:28 +08001561 clear_bit(num, iommu->domain_ids);
1562 iommu->domains[num] = NULL;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001563 break;
1564 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001565 }
Weidong Han8c11e792008-12-08 15:29:22 +08001566 spin_unlock_irqrestore(&iommu->lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001567}
1568
1569static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001570static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001571
Joseph Cihula51a63e62011-03-21 11:04:24 -07001572static int dmar_init_reserved_ranges(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001573{
1574 struct pci_dev *pdev = NULL;
1575 struct iova *iova;
1576 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001577
David Millerf6611972008-02-06 01:36:23 -08001578 init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001579
Mark Gross8a443df2008-03-04 14:59:31 -08001580 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1581 &reserved_rbtree_key);
1582
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001583 /* IOAPIC ranges shouldn't be accessed by DMA */
1584 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1585 IOVA_PFN(IOAPIC_RANGE_END));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001586 if (!iova) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001587 printk(KERN_ERR "Reserve IOAPIC range failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001588 return -ENODEV;
1589 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001590
1591 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1592 for_each_pci_dev(pdev) {
1593 struct resource *r;
1594
1595 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1596 r = &pdev->resource[i];
1597 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1598 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001599 iova = reserve_iova(&reserved_iova_list,
1600 IOVA_PFN(r->start),
1601 IOVA_PFN(r->end));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001602 if (!iova) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001603 printk(KERN_ERR "Reserve iova failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001604 return -ENODEV;
1605 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001606 }
1607 }
Joseph Cihula51a63e62011-03-21 11:04:24 -07001608 return 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001609}
1610
1611static void domain_reserve_special_ranges(struct dmar_domain *domain)
1612{
1613 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1614}
1615
1616static inline int guestwidth_to_adjustwidth(int gaw)
1617{
1618 int agaw;
1619 int r = (gaw - 12) % 9;
1620
1621 if (r == 0)
1622 agaw = gaw;
1623 else
1624 agaw = gaw + 9 - r;
1625 if (agaw > 64)
1626 agaw = 64;
1627 return agaw;
1628}
1629
1630static int domain_init(struct dmar_domain *domain, int guest_width)
1631{
1632 struct intel_iommu *iommu;
1633 int adjust_width, agaw;
1634 unsigned long sagaw;
1635
David Millerf6611972008-02-06 01:36:23 -08001636 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001637 domain_reserve_special_ranges(domain);
1638
1639 /* calculate AGAW */
Weidong Han8c11e792008-12-08 15:29:22 +08001640 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001641 if (guest_width > cap_mgaw(iommu->cap))
1642 guest_width = cap_mgaw(iommu->cap);
1643 domain->gaw = guest_width;
1644 adjust_width = guestwidth_to_adjustwidth(guest_width);
1645 agaw = width_to_agaw(adjust_width);
1646 sagaw = cap_sagaw(iommu->cap);
1647 if (!test_bit(agaw, &sagaw)) {
1648 /* hardware doesn't support it, choose a bigger one */
1649 pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw);
1650 agaw = find_next_bit(&sagaw, 5, agaw);
1651 if (agaw >= 5)
1652 return -ENODEV;
1653 }
1654 domain->agaw = agaw;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001655
Weidong Han8e6040972008-12-08 15:49:06 +08001656 if (ecap_coherent(iommu->ecap))
1657 domain->iommu_coherency = 1;
1658 else
1659 domain->iommu_coherency = 0;
1660
Sheng Yang58c610b2009-03-18 15:33:05 +08001661 if (ecap_sc_support(iommu->ecap))
1662 domain->iommu_snooping = 1;
1663 else
1664 domain->iommu_snooping = 0;
1665
David Woodhouse214e39a2014-03-19 10:38:49 +00001666 if (intel_iommu_superpage)
1667 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1668 else
1669 domain->iommu_superpage = 0;
1670
Suresh Siddha4c923d42009-10-02 11:01:24 -07001671 domain->nid = iommu->node;
Weidong Hanc7151a82008-12-08 22:51:37 +08001672
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001673 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07001674 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001675 if (!domain->pgd)
1676 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001677 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001678 return 0;
1679}
1680
1681static void domain_exit(struct dmar_domain *domain)
1682{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001683 struct dmar_drhd_unit *drhd;
1684 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00001685 struct page *freelist = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001686
1687 /* Domain 0 is reserved, so dont process it */
1688 if (!domain)
1689 return;
1690
Alex Williamson7b668352011-05-24 12:02:41 +01001691 /* Flush any lazy unmaps that may reference this domain */
1692 if (!intel_iommu_strict)
1693 flush_unmaps_timeout(0);
1694
Jiang Liu92d03cc2014-02-19 14:07:28 +08001695 /* remove associated devices */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001696 domain_remove_dev_info(domain);
Jiang Liu92d03cc2014-02-19 14:07:28 +08001697
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001698 /* destroy iovas */
1699 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001700
David Woodhouseea8ea462014-03-05 17:09:32 +00001701 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001702
Jiang Liu92d03cc2014-02-19 14:07:28 +08001703 /* clear attached or cached domains */
Jiang Liu0e242612014-02-19 14:07:34 +08001704 rcu_read_lock();
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001705 for_each_active_iommu(iommu, drhd)
Jiang Liu92d03cc2014-02-19 14:07:28 +08001706 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1707 test_bit(iommu->seq_id, domain->iommu_bmp))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001708 iommu_detach_domain(domain, iommu);
Jiang Liu0e242612014-02-19 14:07:34 +08001709 rcu_read_unlock();
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001710
David Woodhouseea8ea462014-03-05 17:09:32 +00001711 dma_free_pagelist(freelist);
1712
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001713 free_domain_mem(domain);
1714}
1715
David Woodhouse64ae8922014-03-09 12:52:30 -07001716static int domain_context_mapping_one(struct dmar_domain *domain,
1717 struct intel_iommu *iommu,
1718 u8 bus, u8 devfn, int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001719{
1720 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001721 unsigned long flags;
Weidong Hanea6606b2008-12-08 23:08:15 +08001722 struct dma_pte *pgd;
1723 unsigned long num;
1724 unsigned long ndomains;
1725 int id;
1726 int agaw;
Yu Zhao93a23a72009-05-18 13:51:37 +08001727 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001728
1729 pr_debug("Set context mapping for %02x:%02x.%d\n",
1730 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001731
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001732 BUG_ON(!domain->pgd);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001733 BUG_ON(translation != CONTEXT_TT_PASS_THROUGH &&
1734 translation != CONTEXT_TT_MULTI_LEVEL);
Weidong Han5331fe62008-12-08 23:00:00 +08001735
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001736 context = device_to_context_entry(iommu, bus, devfn);
1737 if (!context)
1738 return -ENOMEM;
1739 spin_lock_irqsave(&iommu->lock, flags);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001740 if (context_present(context)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001741 spin_unlock_irqrestore(&iommu->lock, flags);
1742 return 0;
1743 }
1744
Weidong Hanea6606b2008-12-08 23:08:15 +08001745 id = domain->id;
1746 pgd = domain->pgd;
1747
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001748 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
1749 domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001750 int found = 0;
1751
1752 /* find an available domain id for this device in iommu */
1753 ndomains = cap_ndoms(iommu->cap);
Akinobu Mitaa45946a2010-03-11 14:04:08 -08001754 for_each_set_bit(num, iommu->domain_ids, ndomains) {
Weidong Hanea6606b2008-12-08 23:08:15 +08001755 if (iommu->domains[num] == domain) {
1756 id = num;
1757 found = 1;
1758 break;
1759 }
Weidong Hanea6606b2008-12-08 23:08:15 +08001760 }
1761
1762 if (found == 0) {
1763 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1764 if (num >= ndomains) {
1765 spin_unlock_irqrestore(&iommu->lock, flags);
1766 printk(KERN_ERR "IOMMU: no free domain ids\n");
1767 return -EFAULT;
1768 }
1769
1770 set_bit(num, iommu->domain_ids);
1771 iommu->domains[num] = domain;
1772 id = num;
1773 }
1774
1775 /* Skip top levels of page tables for
1776 * iommu which has less agaw than default.
Chris Wright1672af12009-12-02 12:06:34 -08001777 * Unnecessary for PT mode.
Weidong Hanea6606b2008-12-08 23:08:15 +08001778 */
Chris Wright1672af12009-12-02 12:06:34 -08001779 if (translation != CONTEXT_TT_PASS_THROUGH) {
1780 for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) {
1781 pgd = phys_to_virt(dma_pte_addr(pgd));
1782 if (!dma_pte_present(pgd)) {
1783 spin_unlock_irqrestore(&iommu->lock, flags);
1784 return -ENOMEM;
1785 }
Weidong Hanea6606b2008-12-08 23:08:15 +08001786 }
1787 }
1788 }
1789
1790 context_set_domain_id(context, id);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001791
Yu Zhao93a23a72009-05-18 13:51:37 +08001792 if (translation != CONTEXT_TT_PASS_THROUGH) {
David Woodhouse64ae8922014-03-09 12:52:30 -07001793 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
Yu Zhao93a23a72009-05-18 13:51:37 +08001794 translation = info ? CONTEXT_TT_DEV_IOTLB :
1795 CONTEXT_TT_MULTI_LEVEL;
1796 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001797 /*
1798 * In pass through mode, AW must be programmed to indicate the largest
1799 * AGAW value supported by hardware. And ASR is ignored by hardware.
1800 */
Yu Zhao93a23a72009-05-18 13:51:37 +08001801 if (unlikely(translation == CONTEXT_TT_PASS_THROUGH))
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001802 context_set_address_width(context, iommu->msagaw);
Yu Zhao93a23a72009-05-18 13:51:37 +08001803 else {
1804 context_set_address_root(context, virt_to_phys(pgd));
1805 context_set_address_width(context, iommu->agaw);
1806 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001807
1808 context_set_translation_type(context, translation);
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00001809 context_set_fault_enable(context);
1810 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08001811 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001812
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001813 /*
1814 * It's a non-present to present mapping. If hardware doesn't cache
1815 * non-present entry we only need to flush the write-buffer. If the
1816 * _does_ cache non-present entries, then it does so in the special
1817 * domain #0, which we have to flush:
1818 */
1819 if (cap_caching_mode(iommu->cap)) {
1820 iommu->flush.flush_context(iommu, 0,
1821 (((u16)bus) << 8) | devfn,
1822 DMA_CCMD_MASK_NOBIT,
1823 DMA_CCMD_DEVICE_INVL);
Nadav Amit82653632010-04-01 13:24:40 +03001824 iommu->flush.flush_iotlb(iommu, domain->id, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001825 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001826 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001827 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001828 iommu_enable_dev_iotlb(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001829 spin_unlock_irqrestore(&iommu->lock, flags);
Weidong Hanc7151a82008-12-08 22:51:37 +08001830
1831 spin_lock_irqsave(&domain->iommu_lock, flags);
Mike Travis1b198bb2012-03-05 15:05:16 -08001832 if (!test_and_set_bit(iommu->seq_id, domain->iommu_bmp)) {
Weidong Hanc7151a82008-12-08 22:51:37 +08001833 domain->iommu_count++;
Suresh Siddha4c923d42009-10-02 11:01:24 -07001834 if (domain->iommu_count == 1)
1835 domain->nid = iommu->node;
Sheng Yang58c610b2009-03-18 15:33:05 +08001836 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08001837 }
1838 spin_unlock_irqrestore(&domain->iommu_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001839 return 0;
1840}
1841
1842static int
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001843domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev,
1844 int translation)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001845{
1846 int ret;
1847 struct pci_dev *tmp, *parent;
David Woodhouse64ae8922014-03-09 12:52:30 -07001848 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07001849 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001850
David Woodhouse156baca2014-03-09 14:00:57 -07001851 iommu = device_to_iommu(&pdev->dev, &bus, &devfn);
David Woodhouse64ae8922014-03-09 12:52:30 -07001852 if (!iommu)
1853 return -ENODEV;
1854
David Woodhouse156baca2014-03-09 14:00:57 -07001855 ret = domain_context_mapping_one(domain, iommu, bus, devfn,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001856 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001857 if (ret)
1858 return ret;
1859
1860 /* dependent device mapping */
1861 tmp = pci_find_upstream_pcie_bridge(pdev);
1862 if (!tmp)
1863 return 0;
1864 /* Secondary interface's bus number and devfn 0 */
1865 parent = pdev->bus->self;
1866 while (parent != tmp) {
David Woodhouse64ae8922014-03-09 12:52:30 -07001867 ret = domain_context_mapping_one(domain, iommu,
David Woodhouse276dbf992009-04-04 01:45:37 +01001868 parent->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001869 parent->devfn, translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001870 if (ret)
1871 return ret;
1872 parent = parent->bus->self;
1873 }
Stefan Assmann45e829e2009-12-03 06:49:24 -05001874 if (pci_is_pcie(tmp)) /* this is a PCIe-to-PCI bridge */
David Woodhouse64ae8922014-03-09 12:52:30 -07001875 return domain_context_mapping_one(domain, iommu,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001876 tmp->subordinate->number, 0,
1877 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001878 else /* this is a legacy PCI bridge */
David Woodhouse64ae8922014-03-09 12:52:30 -07001879 return domain_context_mapping_one(domain, iommu,
David Woodhouse276dbf992009-04-04 01:45:37 +01001880 tmp->bus->number,
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001881 tmp->devfn,
1882 translation);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001883}
1884
Weidong Han5331fe62008-12-08 23:00:00 +08001885static int domain_context_mapped(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001886{
1887 int ret;
1888 struct pci_dev *tmp, *parent;
Weidong Han5331fe62008-12-08 23:00:00 +08001889 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07001890 u8 bus, devfn;
Weidong Han5331fe62008-12-08 23:00:00 +08001891
David Woodhouse156baca2014-03-09 14:00:57 -07001892 iommu = device_to_iommu(&pdev->dev, &bus, &devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08001893 if (!iommu)
1894 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001895
David Woodhouse156baca2014-03-09 14:00:57 -07001896 ret = device_context_mapped(iommu, bus, devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001897 if (!ret)
1898 return ret;
1899 /* dependent device mapping */
1900 tmp = pci_find_upstream_pcie_bridge(pdev);
1901 if (!tmp)
1902 return ret;
1903 /* Secondary interface's bus number and devfn 0 */
1904 parent = pdev->bus->self;
1905 while (parent != tmp) {
Weidong Han8c11e792008-12-08 15:29:22 +08001906 ret = device_context_mapped(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01001907 parent->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001908 if (!ret)
1909 return ret;
1910 parent = parent->bus->self;
1911 }
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09001912 if (pci_is_pcie(tmp))
David Woodhouse276dbf992009-04-04 01:45:37 +01001913 return device_context_mapped(iommu, tmp->subordinate->number,
1914 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001915 else
David Woodhouse276dbf992009-04-04 01:45:37 +01001916 return device_context_mapped(iommu, tmp->bus->number,
1917 tmp->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001918}
1919
Fenghua Yuf5329592009-08-04 15:09:37 -07001920/* Returns a number of VTD pages, but aligned to MM page size */
1921static inline unsigned long aligned_nrpages(unsigned long host_addr,
1922 size_t size)
1923{
1924 host_addr &= ~PAGE_MASK;
1925 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
1926}
1927
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001928/* Return largest possible superpage level for a given mapping */
1929static inline int hardware_largepage_caps(struct dmar_domain *domain,
1930 unsigned long iov_pfn,
1931 unsigned long phy_pfn,
1932 unsigned long pages)
1933{
1934 int support, level = 1;
1935 unsigned long pfnmerge;
1936
1937 support = domain->iommu_superpage;
1938
1939 /* To use a large page, the virtual *and* physical addresses
1940 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
1941 of them will mean we have to use smaller pages. So just
1942 merge them and check both at once. */
1943 pfnmerge = iov_pfn | phy_pfn;
1944
1945 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
1946 pages >>= VTD_STRIDE_SHIFT;
1947 if (!pages)
1948 break;
1949 pfnmerge >>= VTD_STRIDE_SHIFT;
1950 level++;
1951 support--;
1952 }
1953 return level;
1954}
1955
David Woodhouse9051aa02009-06-29 12:30:54 +01001956static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
1957 struct scatterlist *sg, unsigned long phys_pfn,
1958 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01001959{
1960 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01001961 phys_addr_t uninitialized_var(pteval);
David Woodhousee1605492009-06-29 11:17:38 +01001962 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
David Woodhouse9051aa02009-06-29 12:30:54 +01001963 unsigned long sg_res;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001964 unsigned int largepage_lvl = 0;
1965 unsigned long lvl_pages = 0;
David Woodhousee1605492009-06-29 11:17:38 +01001966
1967 BUG_ON(addr_width < BITS_PER_LONG && (iov_pfn + nr_pages - 1) >> addr_width);
1968
1969 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
1970 return -EINVAL;
1971
1972 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
1973
David Woodhouse9051aa02009-06-29 12:30:54 +01001974 if (sg)
1975 sg_res = 0;
1976 else {
1977 sg_res = nr_pages + 1;
1978 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
1979 }
1980
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001981 while (nr_pages > 0) {
David Woodhousec85994e2009-07-01 19:21:24 +01001982 uint64_t tmp;
1983
David Woodhousee1605492009-06-29 11:17:38 +01001984 if (!sg_res) {
Fenghua Yuf5329592009-08-04 15:09:37 -07001985 sg_res = aligned_nrpages(sg->offset, sg->length);
David Woodhousee1605492009-06-29 11:17:38 +01001986 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset;
1987 sg->dma_length = sg->length;
1988 pteval = page_to_phys(sg_page(sg)) | prot;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001989 phys_pfn = pteval >> VTD_PAGE_SHIFT;
David Woodhousee1605492009-06-29 11:17:38 +01001990 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001991
David Woodhousee1605492009-06-29 11:17:38 +01001992 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001993 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
1994
David Woodhouse5cf0a762014-03-19 16:07:49 +00001995 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
David Woodhousee1605492009-06-29 11:17:38 +01001996 if (!pte)
1997 return -ENOMEM;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01001998 /* It is large page*/
Woodhouse, David6491d4d2012-12-19 13:25:35 +00001999 if (largepage_lvl > 1) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002000 pteval |= DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002001 /* Ensure that old small page tables are removed to make room
2002 for superpage, if they exist. */
2003 dma_pte_clear_range(domain, iov_pfn,
2004 iov_pfn + lvl_to_nr_pages(largepage_lvl) - 1);
2005 dma_pte_free_pagetable(domain, iov_pfn,
2006 iov_pfn + lvl_to_nr_pages(largepage_lvl) - 1);
2007 } else {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002008 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002009 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002010
David Woodhousee1605492009-06-29 11:17:38 +01002011 }
2012 /* We don't need lock here, nobody else
2013 * touches the iova range
2014 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01002015 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01002016 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01002017 static int dumps = 5;
David Woodhousec85994e2009-07-01 19:21:24 +01002018 printk(KERN_CRIT "ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2019 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01002020 if (dumps) {
2021 dumps--;
2022 debug_dma_dump_mappings(NULL);
2023 }
2024 WARN_ON(1);
2025 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002026
2027 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2028
2029 BUG_ON(nr_pages < lvl_pages);
2030 BUG_ON(sg_res < lvl_pages);
2031
2032 nr_pages -= lvl_pages;
2033 iov_pfn += lvl_pages;
2034 phys_pfn += lvl_pages;
2035 pteval += lvl_pages * VTD_PAGE_SIZE;
2036 sg_res -= lvl_pages;
2037
2038 /* If the next PTE would be the first in a new page, then we
2039 need to flush the cache on the entries we've just written.
2040 And then we'll need to recalculate 'pte', so clear it and
2041 let it get set again in the if (!pte) block above.
2042
2043 If we're done (!nr_pages) we need to flush the cache too.
2044
2045 Also if we've been setting superpages, we may need to
2046 recalculate 'pte' and switch back to smaller pages for the
2047 end of the mapping, if the trailing size is not enough to
2048 use another superpage (i.e. sg_res < lvl_pages). */
David Woodhousee1605492009-06-29 11:17:38 +01002049 pte++;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002050 if (!nr_pages || first_pte_in_page(pte) ||
2051 (largepage_lvl > 1 && sg_res < lvl_pages)) {
David Woodhousee1605492009-06-29 11:17:38 +01002052 domain_flush_cache(domain, first_pte,
2053 (void *)pte - (void *)first_pte);
2054 pte = NULL;
2055 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002056
2057 if (!sg_res && nr_pages)
David Woodhousee1605492009-06-29 11:17:38 +01002058 sg = sg_next(sg);
2059 }
2060 return 0;
2061}
2062
David Woodhouse9051aa02009-06-29 12:30:54 +01002063static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2064 struct scatterlist *sg, unsigned long nr_pages,
2065 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002066{
David Woodhouse9051aa02009-06-29 12:30:54 +01002067 return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
2068}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002069
David Woodhouse9051aa02009-06-29 12:30:54 +01002070static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2071 unsigned long phys_pfn, unsigned long nr_pages,
2072 int prot)
2073{
2074 return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002075}
2076
Weidong Hanc7151a82008-12-08 22:51:37 +08002077static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002078{
Weidong Hanc7151a82008-12-08 22:51:37 +08002079 if (!iommu)
2080 return;
Weidong Han8c11e792008-12-08 15:29:22 +08002081
2082 clear_context_table(iommu, bus, devfn);
2083 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002084 DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002085 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002086}
2087
David Woodhouse109b9b02012-05-25 17:43:02 +01002088static inline void unlink_domain_info(struct device_domain_info *info)
2089{
2090 assert_spin_locked(&device_domain_lock);
2091 list_del(&info->link);
2092 list_del(&info->global);
2093 if (info->dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002094 info->dev->archdata.iommu = NULL;
David Woodhouse109b9b02012-05-25 17:43:02 +01002095}
2096
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002097static void domain_remove_dev_info(struct dmar_domain *domain)
2098{
2099 struct device_domain_info *info;
Jiang Liu92d03cc2014-02-19 14:07:28 +08002100 unsigned long flags, flags2;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002101
2102 spin_lock_irqsave(&device_domain_lock, flags);
2103 while (!list_empty(&domain->devices)) {
2104 info = list_entry(domain->devices.next,
2105 struct device_domain_info, link);
David Woodhouse109b9b02012-05-25 17:43:02 +01002106 unlink_domain_info(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002107 spin_unlock_irqrestore(&device_domain_lock, flags);
2108
Yu Zhao93a23a72009-05-18 13:51:37 +08002109 iommu_disable_dev_iotlb(info);
David Woodhouse7c7faa12014-03-09 13:33:06 -07002110 iommu_detach_dev(info->iommu, info->bus, info->devfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002111
Jiang Liu92d03cc2014-02-19 14:07:28 +08002112 if (domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE) {
David Woodhouse7c7faa12014-03-09 13:33:06 -07002113 iommu_detach_dependent_devices(info->iommu, info->dev);
Jiang Liu92d03cc2014-02-19 14:07:28 +08002114 /* clear this iommu in iommu_bmp, update iommu count
2115 * and capabilities
2116 */
2117 spin_lock_irqsave(&domain->iommu_lock, flags2);
David Woodhouse7c7faa12014-03-09 13:33:06 -07002118 if (test_and_clear_bit(info->iommu->seq_id,
Jiang Liu92d03cc2014-02-19 14:07:28 +08002119 domain->iommu_bmp)) {
2120 domain->iommu_count--;
2121 domain_update_iommu_cap(domain);
2122 }
2123 spin_unlock_irqrestore(&domain->iommu_lock, flags2);
2124 }
2125
2126 free_devinfo_mem(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002127 spin_lock_irqsave(&device_domain_lock, flags);
2128 }
2129 spin_unlock_irqrestore(&device_domain_lock, flags);
2130}
2131
2132/*
2133 * find_domain
David Woodhouse1525a292014-03-06 16:19:30 +00002134 * Note: we use struct device->archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002135 */
David Woodhouse1525a292014-03-06 16:19:30 +00002136static struct dmar_domain *find_domain(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002137{
2138 struct device_domain_info *info;
2139
2140 /* No lock here, assumes no domain exit in normal case */
David Woodhouse1525a292014-03-06 16:19:30 +00002141 info = dev->archdata.iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002142 if (info)
2143 return info->domain;
2144 return NULL;
2145}
2146
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002147static inline struct device_domain_info *
Jiang Liu745f2582014-02-19 14:07:26 +08002148dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2149{
2150 struct device_domain_info *info;
2151
2152 list_for_each_entry(info, &device_domain_list, global)
David Woodhouse41e80dca2014-03-09 13:55:54 -07002153 if (info->iommu->segment == segment && info->bus == bus &&
Jiang Liu745f2582014-02-19 14:07:26 +08002154 info->devfn == devfn)
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002155 return info;
Jiang Liu745f2582014-02-19 14:07:26 +08002156
2157 return NULL;
2158}
2159
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002160static struct dmar_domain *dmar_insert_dev_info(struct intel_iommu *iommu,
David Woodhouse41e80dca2014-03-09 13:55:54 -07002161 int bus, int devfn,
David Woodhouseb718cd32014-03-09 13:11:33 -07002162 struct device *dev,
2163 struct dmar_domain *domain)
Jiang Liu745f2582014-02-19 14:07:26 +08002164{
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002165 struct dmar_domain *found = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002166 struct device_domain_info *info;
2167 unsigned long flags;
2168
2169 info = alloc_devinfo_mem();
2170 if (!info)
David Woodhouseb718cd32014-03-09 13:11:33 -07002171 return NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002172
Jiang Liu745f2582014-02-19 14:07:26 +08002173 info->bus = bus;
2174 info->devfn = devfn;
2175 info->dev = dev;
2176 info->domain = domain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002177 info->iommu = iommu;
Jiang Liu745f2582014-02-19 14:07:26 +08002178 if (!dev)
2179 domain->flags |= DOMAIN_FLAG_P2P_MULTIPLE_DEVICES;
2180
2181 spin_lock_irqsave(&device_domain_lock, flags);
2182 if (dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002183 found = find_domain(dev);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002184 else {
2185 struct device_domain_info *info2;
David Woodhouse41e80dca2014-03-09 13:55:54 -07002186 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002187 if (info2)
2188 found = info2->domain;
2189 }
Jiang Liu745f2582014-02-19 14:07:26 +08002190 if (found) {
2191 spin_unlock_irqrestore(&device_domain_lock, flags);
2192 free_devinfo_mem(info);
David Woodhouseb718cd32014-03-09 13:11:33 -07002193 /* Caller must free the original domain */
2194 return found;
Jiang Liu745f2582014-02-19 14:07:26 +08002195 }
2196
David Woodhouseb718cd32014-03-09 13:11:33 -07002197 list_add(&info->link, &domain->devices);
2198 list_add(&info->global, &device_domain_list);
2199 if (dev)
2200 dev->archdata.iommu = info;
2201 spin_unlock_irqrestore(&device_domain_lock, flags);
2202
2203 return domain;
Jiang Liu745f2582014-02-19 14:07:26 +08002204}
2205
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002206/* domain is initialized */
2207static struct dmar_domain *get_domain_for_dev(struct pci_dev *pdev, int gaw)
2208{
Jiang Liue85bb5d2014-02-19 14:07:27 +08002209 struct dmar_domain *domain, *free = NULL;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002210 struct intel_iommu *iommu = NULL;
2211 struct device_domain_info *info;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002212 struct dmar_drhd_unit *drhd;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002213 struct pci_dev *dev_tmp;
2214 unsigned long flags;
2215 int bus = 0, devfn = 0;
David Woodhouse276dbf992009-04-04 01:45:37 +01002216 int segment;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002217
David Woodhouse1525a292014-03-06 16:19:30 +00002218 domain = find_domain(&pdev->dev);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002219 if (domain)
2220 return domain;
2221
David Woodhouse276dbf992009-04-04 01:45:37 +01002222 segment = pci_domain_nr(pdev->bus);
2223
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002224 dev_tmp = pci_find_upstream_pcie_bridge(pdev);
2225 if (dev_tmp) {
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09002226 if (pci_is_pcie(dev_tmp)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002227 bus = dev_tmp->subordinate->number;
2228 devfn = 0;
2229 } else {
2230 bus = dev_tmp->bus->number;
2231 devfn = dev_tmp->devfn;
2232 }
2233 spin_lock_irqsave(&device_domain_lock, flags);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002234 info = dmar_search_domain_by_dev_info(segment, bus, devfn);
2235 if (info) {
2236 iommu = info->iommu;
2237 domain = info->domain;
2238 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002239 spin_unlock_irqrestore(&device_domain_lock, flags);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002240 if (info)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002241 goto found_domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002242 }
2243
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002244 drhd = dmar_find_matched_drhd_unit(pdev);
2245 if (!drhd) {
2246 printk(KERN_ERR "IOMMU: can't find DMAR for device %s\n",
2247 pci_name(pdev));
2248 return NULL;
2249 }
2250 iommu = drhd->iommu;
2251
Jiang Liu745f2582014-02-19 14:07:26 +08002252 /* Allocate and intialize new domain for the device */
Jiang Liu92d03cc2014-02-19 14:07:28 +08002253 domain = alloc_domain(false);
Jiang Liu745f2582014-02-19 14:07:26 +08002254 if (!domain)
2255 goto error;
2256 if (iommu_attach_domain(domain, iommu)) {
Alex Williamson2fe9723d2011-03-04 14:52:30 -07002257 free_domain_mem(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002258 goto error;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002259 }
Jiang Liue85bb5d2014-02-19 14:07:27 +08002260 free = domain;
2261 if (domain_init(domain, gaw))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002262 goto error;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002263
2264 /* register pcie-to-pci device */
2265 if (dev_tmp) {
David Woodhouse41e80dca2014-03-09 13:55:54 -07002266 domain = dmar_insert_dev_info(iommu, bus, devfn, NULL,
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002267 domain);
David Woodhouseb718cd32014-03-09 13:11:33 -07002268 if (!domain)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002269 goto error;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002270 }
2271
2272found_domain:
David Woodhouse41e80dca2014-03-09 13:55:54 -07002273 domain = dmar_insert_dev_info(iommu, pdev->bus->number,
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002274 pdev->devfn, &pdev->dev, domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002275error:
David Woodhouseb718cd32014-03-09 13:11:33 -07002276 if (free != domain)
Jiang Liue85bb5d2014-02-19 14:07:27 +08002277 domain_exit(free);
David Woodhouseb718cd32014-03-09 13:11:33 -07002278
2279 return domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002280}
2281
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002282static int iommu_identity_mapping;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002283#define IDENTMAP_ALL 1
2284#define IDENTMAP_GFX 2
2285#define IDENTMAP_AZALIA 4
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002286
David Woodhouseb2132032009-06-26 18:50:28 +01002287static int iommu_domain_identity_map(struct dmar_domain *domain,
2288 unsigned long long start,
2289 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002290{
David Woodhousec5395d52009-06-28 16:35:56 +01002291 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2292 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002293
David Woodhousec5395d52009-06-28 16:35:56 +01002294 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2295 dma_to_mm_pfn(last_vpfn))) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002296 printk(KERN_ERR "IOMMU: reserve iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01002297 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002298 }
2299
David Woodhousec5395d52009-06-28 16:35:56 +01002300 pr_debug("Mapping reserved region %llx-%llx for domain %d\n",
2301 start, end, domain->id);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002302 /*
2303 * RMRR range might have overlap with physical memory range,
2304 * clear it first
2305 */
David Woodhousec5395d52009-06-28 16:35:56 +01002306 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002307
David Woodhousec5395d52009-06-28 16:35:56 +01002308 return domain_pfn_mapping(domain, first_vpfn, first_vpfn,
2309 last_vpfn - first_vpfn + 1,
David Woodhouse61df7442009-06-28 11:55:58 +01002310 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01002311}
2312
2313static int iommu_prepare_identity_map(struct pci_dev *pdev,
2314 unsigned long long start,
2315 unsigned long long end)
2316{
2317 struct dmar_domain *domain;
2318 int ret;
2319
David Woodhousec7ab48d2009-06-26 19:10:36 +01002320 domain = get_domain_for_dev(pdev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
David Woodhouseb2132032009-06-26 18:50:28 +01002321 if (!domain)
2322 return -ENOMEM;
2323
David Woodhouse19943b02009-08-04 16:19:20 +01002324 /* For _hardware_ passthrough, don't bother. But for software
2325 passthrough, we do it anyway -- it may indicate a memory
2326 range which is reserved in E820, so which didn't get set
2327 up to start with in si_domain */
2328 if (domain == si_domain && hw_pass_through) {
2329 printk("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n",
2330 pci_name(pdev), start, end);
2331 return 0;
2332 }
2333
2334 printk(KERN_INFO
2335 "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n",
2336 pci_name(pdev), start, end);
David Woodhouse2ff729f2009-08-26 14:25:41 +01002337
David Woodhouse5595b522009-12-02 09:21:55 +00002338 if (end < start) {
2339 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2340 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2341 dmi_get_system_info(DMI_BIOS_VENDOR),
2342 dmi_get_system_info(DMI_BIOS_VERSION),
2343 dmi_get_system_info(DMI_PRODUCT_VERSION));
2344 ret = -EIO;
2345 goto error;
2346 }
2347
David Woodhouse2ff729f2009-08-26 14:25:41 +01002348 if (end >> agaw_to_width(domain->agaw)) {
2349 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2350 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2351 agaw_to_width(domain->agaw),
2352 dmi_get_system_info(DMI_BIOS_VENDOR),
2353 dmi_get_system_info(DMI_BIOS_VERSION),
2354 dmi_get_system_info(DMI_PRODUCT_VERSION));
2355 ret = -EIO;
2356 goto error;
2357 }
David Woodhouse19943b02009-08-04 16:19:20 +01002358
David Woodhouseb2132032009-06-26 18:50:28 +01002359 ret = iommu_domain_identity_map(domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002360 if (ret)
2361 goto error;
2362
2363 /* context entry init */
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002364 ret = domain_context_mapping(domain, pdev, CONTEXT_TT_MULTI_LEVEL);
David Woodhouseb2132032009-06-26 18:50:28 +01002365 if (ret)
2366 goto error;
2367
2368 return 0;
2369
2370 error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002371 domain_exit(domain);
2372 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002373}
2374
2375static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
2376 struct pci_dev *pdev)
2377{
Keshavamurthy, Anil S358dd8a2007-10-21 16:41:59 -07002378 if (pdev->dev.archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002379 return 0;
2380 return iommu_prepare_identity_map(pdev, rmrr->base_address,
David Woodhouse70e535d2011-05-31 00:22:52 +01002381 rmrr->end_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002382}
2383
Suresh Siddhad3f13812011-08-23 17:05:25 -07002384#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002385static inline void iommu_prepare_isa(void)
2386{
2387 struct pci_dev *pdev;
2388 int ret;
2389
2390 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2391 if (!pdev)
2392 return;
2393
David Woodhousec7ab48d2009-06-26 19:10:36 +01002394 printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n");
David Woodhouse70e535d2011-05-31 00:22:52 +01002395 ret = iommu_prepare_identity_map(pdev, 0, 16*1024*1024 - 1);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002396
2397 if (ret)
David Woodhousec7ab48d2009-06-26 19:10:36 +01002398 printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; "
2399 "floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002400
2401}
2402#else
2403static inline void iommu_prepare_isa(void)
2404{
2405 return;
2406}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002407#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002408
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002409static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002410
Matt Kraai071e1372009-08-23 22:30:22 -07002411static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002412{
2413 struct dmar_drhd_unit *drhd;
2414 struct intel_iommu *iommu;
David Woodhousec7ab48d2009-06-26 19:10:36 +01002415 int nid, ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002416
Jiang Liu92d03cc2014-02-19 14:07:28 +08002417 si_domain = alloc_domain(false);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002418 if (!si_domain)
2419 return -EFAULT;
2420
Jiang Liu92d03cc2014-02-19 14:07:28 +08002421 si_domain->flags = DOMAIN_FLAG_STATIC_IDENTITY;
2422
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002423 for_each_active_iommu(iommu, drhd) {
2424 ret = iommu_attach_domain(si_domain, iommu);
2425 if (ret) {
2426 domain_exit(si_domain);
2427 return -EFAULT;
2428 }
2429 }
2430
2431 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2432 domain_exit(si_domain);
2433 return -EFAULT;
2434 }
2435
Jiang Liu9544c002014-01-06 14:18:13 +08002436 pr_debug("IOMMU: identity mapping domain is domain %d\n",
2437 si_domain->id);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002438
David Woodhouse19943b02009-08-04 16:19:20 +01002439 if (hw)
2440 return 0;
2441
David Woodhousec7ab48d2009-06-26 19:10:36 +01002442 for_each_online_node(nid) {
Tejun Heod4bbf7e2011-11-28 09:46:22 -08002443 unsigned long start_pfn, end_pfn;
2444 int i;
2445
2446 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2447 ret = iommu_domain_identity_map(si_domain,
2448 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2449 if (ret)
2450 return ret;
2451 }
David Woodhousec7ab48d2009-06-26 19:10:36 +01002452 }
2453
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002454 return 0;
2455}
2456
David Woodhouse9b226622014-03-09 14:03:28 -07002457static int identity_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002458{
2459 struct device_domain_info *info;
2460
2461 if (likely(!iommu_identity_mapping))
2462 return 0;
2463
David Woodhouse9b226622014-03-09 14:03:28 -07002464 info = dev->archdata.iommu;
Mike Traviscb452a42011-05-28 13:15:03 -05002465 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2466 return (info->domain == si_domain);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002467
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002468 return 0;
2469}
2470
2471static int domain_add_dev_info(struct dmar_domain *domain,
David Woodhouse5fe60f42009-08-09 10:53:41 +01002472 struct pci_dev *pdev,
2473 int translation)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002474{
David Woodhouse0ac72662014-03-09 13:19:22 -07002475 struct dmar_domain *ndomain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002476 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002477 u8 bus, devfn;
David Woodhouse5fe60f42009-08-09 10:53:41 +01002478 int ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002479
David Woodhouse156baca2014-03-09 14:00:57 -07002480 iommu = device_to_iommu(&pdev->dev, &bus, &devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002481 if (!iommu)
2482 return -ENODEV;
2483
David Woodhouse156baca2014-03-09 14:00:57 -07002484 ndomain = dmar_insert_dev_info(iommu, bus, devfn, &pdev->dev, domain);
David Woodhouse0ac72662014-03-09 13:19:22 -07002485 if (ndomain != domain)
2486 return -EBUSY;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002487
David Woodhousee2ad23d2012-05-25 17:42:54 +01002488 ret = domain_context_mapping(domain, pdev, translation);
2489 if (ret) {
David Woodhousee2f8c5f2014-03-09 13:25:07 -07002490 domain_remove_one_dev_info(domain, pdev);
David Woodhousee2ad23d2012-05-25 17:42:54 +01002491 return ret;
2492 }
2493
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002494 return 0;
2495}
2496
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002497static bool device_has_rmrr(struct pci_dev *dev)
2498{
2499 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002500 struct device *tmp;
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002501 int i;
2502
Jiang Liu0e242612014-02-19 14:07:34 +08002503 rcu_read_lock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002504 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002505 /*
2506 * Return TRUE if this RMRR contains the device that
2507 * is passed in.
2508 */
2509 for_each_active_dev_scope(rmrr->devices,
2510 rmrr->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00002511 if (tmp == &dev->dev) {
Jiang Liu0e242612014-02-19 14:07:34 +08002512 rcu_read_unlock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002513 return true;
Jiang Liub683b232014-02-19 14:07:32 +08002514 }
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002515 }
Jiang Liu0e242612014-02-19 14:07:34 +08002516 rcu_read_unlock();
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002517 return false;
2518}
2519
David Woodhouse6941af22009-07-04 18:24:27 +01002520static int iommu_should_identity_map(struct pci_dev *pdev, int startup)
2521{
Tom Mingarelliea2447f2012-11-20 19:43:17 +00002522
2523 /*
2524 * We want to prevent any device associated with an RMRR from
2525 * getting placed into the SI Domain. This is done because
2526 * problems exist when devices are moved in and out of domains
2527 * and their respective RMRR info is lost. We exempt USB devices
2528 * from this process due to their usage of RMRRs that are known
2529 * to not be needed after BIOS hand-off to OS.
2530 */
2531 if (device_has_rmrr(pdev) &&
2532 (pdev->class >> 8) != PCI_CLASS_SERIAL_USB)
2533 return 0;
2534
David Woodhousee0fc7e02009-09-30 09:12:17 -07002535 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2536 return 1;
2537
2538 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2539 return 1;
2540
2541 if (!(iommu_identity_mapping & IDENTMAP_ALL))
2542 return 0;
David Woodhouse6941af22009-07-04 18:24:27 +01002543
David Woodhouse3dfc8132009-07-04 19:11:08 +01002544 /*
2545 * We want to start off with all devices in the 1:1 domain, and
2546 * take them out later if we find they can't access all of memory.
2547 *
2548 * However, we can't do this for PCI devices behind bridges,
2549 * because all PCI devices behind the same bridge will end up
2550 * with the same source-id on their transactions.
2551 *
2552 * Practically speaking, we can't change things around for these
2553 * devices at run-time, because we can't be sure there'll be no
2554 * DMA transactions in flight for any of their siblings.
2555 *
2556 * So PCI devices (unless they're on the root bus) as well as
2557 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2558 * the 1:1 domain, just in _case_ one of their siblings turns out
2559 * not to be able to map all of memory.
2560 */
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +09002561 if (!pci_is_pcie(pdev)) {
David Woodhouse3dfc8132009-07-04 19:11:08 +01002562 if (!pci_is_root_bus(pdev->bus))
2563 return 0;
2564 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2565 return 0;
Yijing Wang62f87c02012-07-24 17:20:03 +08002566 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
David Woodhouse3dfc8132009-07-04 19:11:08 +01002567 return 0;
2568
2569 /*
2570 * At boot time, we don't yet know if devices will be 64-bit capable.
2571 * Assume that they will -- if they turn out not to be, then we can
2572 * take them out of the 1:1 domain later.
2573 */
Chris Wright8fcc5372011-05-28 13:15:02 -05002574 if (!startup) {
2575 /*
2576 * If the device's dma_mask is less than the system's memory
2577 * size then this is not a candidate for identity mapping.
2578 */
2579 u64 dma_mask = pdev->dma_mask;
2580
2581 if (pdev->dev.coherent_dma_mask &&
2582 pdev->dev.coherent_dma_mask < dma_mask)
2583 dma_mask = pdev->dev.coherent_dma_mask;
2584
2585 return dma_mask >= dma_get_required_mask(&pdev->dev);
2586 }
David Woodhouse6941af22009-07-04 18:24:27 +01002587
2588 return 1;
2589}
2590
Matt Kraai071e1372009-08-23 22:30:22 -07002591static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002592{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002593 struct pci_dev *pdev = NULL;
2594 int ret;
2595
David Woodhouse19943b02009-08-04 16:19:20 +01002596 ret = si_domain_init(hw);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002597 if (ret)
2598 return -EFAULT;
2599
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002600 for_each_pci_dev(pdev) {
David Woodhouse6941af22009-07-04 18:24:27 +01002601 if (iommu_should_identity_map(pdev, 1)) {
David Woodhouse5fe60f42009-08-09 10:53:41 +01002602 ret = domain_add_dev_info(si_domain, pdev,
Mike Traviseae460b2012-03-05 15:05:16 -08002603 hw ? CONTEXT_TT_PASS_THROUGH :
2604 CONTEXT_TT_MULTI_LEVEL);
2605 if (ret) {
2606 /* device not associated with an iommu */
2607 if (ret == -ENODEV)
2608 continue;
David Woodhouse62edf5d2009-07-04 10:59:46 +01002609 return ret;
Mike Traviseae460b2012-03-05 15:05:16 -08002610 }
2611 pr_info("IOMMU: %s identity mapping for device %s\n",
2612 hw ? "hardware" : "software", pci_name(pdev));
David Woodhouse62edf5d2009-07-04 10:59:46 +01002613 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002614 }
2615
2616 return 0;
2617}
2618
Joseph Cihulab7792602011-05-03 00:08:37 -07002619static int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002620{
2621 struct dmar_drhd_unit *drhd;
2622 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002623 struct device *dev;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002624 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07002625 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002626
2627 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002628 * for each drhd
2629 * allocate root
2630 * initialize and program root entry to not present
2631 * endfor
2632 */
2633 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08002634 /*
2635 * lock not needed as this is only incremented in the single
2636 * threaded kernel __init code path all other access are read
2637 * only
2638 */
Mike Travis1b198bb2012-03-05 15:05:16 -08002639 if (g_num_of_iommus < IOMMU_UNITS_SUPPORTED) {
2640 g_num_of_iommus++;
2641 continue;
2642 }
2643 printk_once(KERN_ERR "intel-iommu: exceeded %d IOMMUs\n",
2644 IOMMU_UNITS_SUPPORTED);
mark gross5e0d2a62008-03-04 15:22:08 -08002645 }
2646
Weidong Hand9630fe2008-12-08 11:06:32 +08002647 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
2648 GFP_KERNEL);
2649 if (!g_iommus) {
2650 printk(KERN_ERR "Allocating global iommu array failed\n");
2651 ret = -ENOMEM;
2652 goto error;
2653 }
2654
mark gross80b20dd2008-04-18 13:53:58 -07002655 deferred_flush = kzalloc(g_num_of_iommus *
2656 sizeof(struct deferred_flush_tables), GFP_KERNEL);
2657 if (!deferred_flush) {
mark gross5e0d2a62008-03-04 15:22:08 -08002658 ret = -ENOMEM;
Jiang Liu989d51f2014-02-19 14:07:21 +08002659 goto free_g_iommus;
mark gross5e0d2a62008-03-04 15:22:08 -08002660 }
2661
Jiang Liu7c919772014-01-06 14:18:18 +08002662 for_each_active_iommu(iommu, drhd) {
Weidong Hand9630fe2008-12-08 11:06:32 +08002663 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002664
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002665 ret = iommu_init_domains(iommu);
2666 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08002667 goto free_iommu;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07002668
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002669 /*
2670 * TBD:
2671 * we could share the same root & context tables
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002672 * among all IOMMU's. Need to Split it later.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002673 */
2674 ret = iommu_alloc_root_entry(iommu);
2675 if (ret) {
2676 printk(KERN_ERR "IOMMU: allocate root entry failed\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08002677 goto free_iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002678 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002679 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01002680 hw_pass_through = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002681 }
2682
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002683 /*
2684 * Start from the sane iommu hardware state.
2685 */
Jiang Liu7c919772014-01-06 14:18:18 +08002686 for_each_active_iommu(iommu, drhd) {
Suresh Siddha1531a6a2009-03-16 17:04:57 -07002687 /*
2688 * If the queued invalidation is already initialized by us
2689 * (for example, while enabling interrupt-remapping) then
2690 * we got the things already rolling from a sane state.
2691 */
2692 if (iommu->qi)
2693 continue;
2694
2695 /*
2696 * Clear any previous faults.
2697 */
2698 dmar_fault(-1, iommu);
2699 /*
2700 * Disable queued invalidation if supported and already enabled
2701 * before OS handover.
2702 */
2703 dmar_disable_qi(iommu);
2704 }
2705
Jiang Liu7c919772014-01-06 14:18:18 +08002706 for_each_active_iommu(iommu, drhd) {
Youquan Songa77b67d2008-10-16 16:31:56 -07002707 if (dmar_enable_qi(iommu)) {
2708 /*
2709 * Queued Invalidate not enabled, use Register Based
2710 * Invalidate
2711 */
2712 iommu->flush.flush_context = __iommu_flush_context;
2713 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
Yinghai Lu680a7522010-04-08 19:58:23 +01002714 printk(KERN_INFO "IOMMU %d 0x%Lx: using Register based "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002715 "invalidation\n",
Yinghai Lu680a7522010-04-08 19:58:23 +01002716 iommu->seq_id,
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002717 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002718 } else {
2719 iommu->flush.flush_context = qi_flush_context;
2720 iommu->flush.flush_iotlb = qi_flush_iotlb;
Yinghai Lu680a7522010-04-08 19:58:23 +01002721 printk(KERN_INFO "IOMMU %d 0x%Lx: using Queued "
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002722 "invalidation\n",
Yinghai Lu680a7522010-04-08 19:58:23 +01002723 iommu->seq_id,
FUJITA Tomonorib4e0f9e2008-11-19 13:53:42 +09002724 (unsigned long long)drhd->reg_base_addr);
Youquan Songa77b67d2008-10-16 16:31:56 -07002725 }
2726 }
2727
David Woodhouse19943b02009-08-04 16:19:20 +01002728 if (iommu_pass_through)
David Woodhousee0fc7e02009-09-30 09:12:17 -07002729 iommu_identity_mapping |= IDENTMAP_ALL;
2730
Suresh Siddhad3f13812011-08-23 17:05:25 -07002731#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
David Woodhousee0fc7e02009-09-30 09:12:17 -07002732 iommu_identity_mapping |= IDENTMAP_GFX;
David Woodhouse19943b02009-08-04 16:19:20 +01002733#endif
David Woodhousee0fc7e02009-09-30 09:12:17 -07002734
2735 check_tylersburg_isoch();
2736
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002737 /*
2738 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002739 * identity mappings for rmrr, gfx, and isa and may fall back to static
2740 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002741 */
David Woodhouse19943b02009-08-04 16:19:20 +01002742 if (iommu_identity_mapping) {
2743 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
2744 if (ret) {
2745 printk(KERN_CRIT "Failed to setup IOMMU pass-through\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08002746 goto free_iommu;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002747 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002748 }
David Woodhouse19943b02009-08-04 16:19:20 +01002749 /*
2750 * For each rmrr
2751 * for each dev attached to rmrr
2752 * do
2753 * locate drhd for dev, alloc domain for dev
2754 * allocate free domain
2755 * allocate page table entries for rmrr
2756 * if context not allocated for bus
2757 * allocate and init context
2758 * set present in root table for this bus
2759 * init context with domain, translation etc
2760 * endfor
2761 * endfor
2762 */
2763 printk(KERN_INFO "IOMMU: Setting RMRR:\n");
2764 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002765 /* some BIOS lists non-exist devices in DMAR table. */
2766 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
David Woodhouse832bd852014-03-07 15:08:36 +00002767 i, dev) {
2768 if (!dev_is_pci(dev))
2769 continue;
2770 ret = iommu_prepare_rmrr_dev(rmrr, to_pci_dev(dev));
David Woodhouse19943b02009-08-04 16:19:20 +01002771 if (ret)
2772 printk(KERN_ERR
2773 "IOMMU: mapping reserved region failed\n");
2774 }
2775 }
2776
2777 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002778
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002779 /*
2780 * for each drhd
2781 * enable fault log
2782 * global invalidate context cache
2783 * global invalidate iotlb
2784 * enable translation
2785 */
Jiang Liu7c919772014-01-06 14:18:18 +08002786 for_each_iommu(iommu, drhd) {
Joseph Cihula51a63e62011-03-21 11:04:24 -07002787 if (drhd->ignored) {
2788 /*
2789 * we always have to disable PMRs or DMA may fail on
2790 * this device
2791 */
2792 if (force_on)
Jiang Liu7c919772014-01-06 14:18:18 +08002793 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002794 continue;
Joseph Cihula51a63e62011-03-21 11:04:24 -07002795 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002796
2797 iommu_flush_write_buffer(iommu);
2798
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002799 ret = dmar_set_interrupt(iommu);
2800 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08002801 goto free_iommu;
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07002802
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002803 iommu_set_root_entry(iommu);
2804
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002805 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01002806 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
mark grossf8bab732008-02-08 04:18:38 -08002807
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002808 ret = iommu_enable_translation(iommu);
2809 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08002810 goto free_iommu;
David Woodhouseb94996c2009-09-19 15:28:12 -07002811
2812 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002813 }
2814
2815 return 0;
Jiang Liu989d51f2014-02-19 14:07:21 +08002816
2817free_iommu:
Jiang Liu7c919772014-01-06 14:18:18 +08002818 for_each_active_iommu(iommu, drhd)
Jiang Liua868e6b2014-01-06 14:18:20 +08002819 free_dmar_iommu(iommu);
Jiang Liu9bdc5312014-01-06 14:18:27 +08002820 kfree(deferred_flush);
Jiang Liu989d51f2014-02-19 14:07:21 +08002821free_g_iommus:
Weidong Hand9630fe2008-12-08 11:06:32 +08002822 kfree(g_iommus);
Jiang Liu989d51f2014-02-19 14:07:21 +08002823error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002824 return ret;
2825}
2826
David Woodhouse5a5e02a2009-07-04 09:35:44 +01002827/* This takes a number of _MM_ pages, not VTD pages */
David Woodhouse875764d2009-06-28 21:20:51 +01002828static struct iova *intel_alloc_iova(struct device *dev,
2829 struct dmar_domain *domain,
2830 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002831{
2832 struct pci_dev *pdev = to_pci_dev(dev);
2833 struct iova *iova = NULL;
2834
David Woodhouse875764d2009-06-28 21:20:51 +01002835 /* Restrict dma_mask to the width that the iommu can handle */
2836 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
2837
2838 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002839 /*
2840 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07002841 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08002842 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002843 */
David Woodhouse875764d2009-06-28 21:20:51 +01002844 iova = alloc_iova(&domain->iovad, nrpages,
2845 IOVA_PFN(DMA_BIT_MASK(32)), 1);
2846 if (iova)
2847 return iova;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002848 }
David Woodhouse875764d2009-06-28 21:20:51 +01002849 iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1);
2850 if (unlikely(!iova)) {
2851 printk(KERN_ERR "Allocating %ld-page iova for %s failed",
2852 nrpages, pci_name(pdev));
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002853 return NULL;
2854 }
2855
2856 return iova;
2857}
2858
David Woodhouse147202a2009-07-07 19:43:20 +01002859static struct dmar_domain *__get_valid_domain_for_dev(struct pci_dev *pdev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002860{
2861 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002862 int ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002863
2864 domain = get_domain_for_dev(pdev,
2865 DEFAULT_DOMAIN_ADDRESS_WIDTH);
2866 if (!domain) {
2867 printk(KERN_ERR
2868 "Allocating domain for %s failed", pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002869 return NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002870 }
2871
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002872 /* make sure context mapping is ok */
Weidong Han5331fe62008-12-08 23:00:00 +08002873 if (unlikely(!domain_context_mapped(pdev))) {
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002874 ret = domain_context_mapping(domain, pdev,
2875 CONTEXT_TT_MULTI_LEVEL);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002876 if (ret) {
2877 printk(KERN_ERR
2878 "Domain context map for %s failed",
2879 pci_name(pdev));
Al Viro4fe05bb2007-10-29 04:51:16 +00002880 return NULL;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002881 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002882 }
2883
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002884 return domain;
2885}
2886
David Woodhouse147202a2009-07-07 19:43:20 +01002887static inline struct dmar_domain *get_valid_domain_for_dev(struct pci_dev *dev)
2888{
2889 struct device_domain_info *info;
2890
2891 /* No lock here, assumes no domain exit in normal case */
2892 info = dev->dev.archdata.iommu;
2893 if (likely(info))
2894 return info->domain;
2895
2896 return __get_valid_domain_for_dev(dev);
2897}
2898
David Woodhouse3d891942014-03-06 15:59:26 +00002899static int iommu_dummy(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002900{
David Woodhouse3d891942014-03-06 15:59:26 +00002901 return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002902}
2903
2904/* Check if the pdev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01002905static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002906{
David Woodhouse73676832009-07-04 14:08:36 +01002907 struct pci_dev *pdev;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002908 int found;
2909
Yijing Wangdbad0862013-12-05 19:43:42 +08002910 if (unlikely(!dev_is_pci(dev)))
David Woodhouse73676832009-07-04 14:08:36 +01002911 return 1;
2912
David Woodhouse3d891942014-03-06 15:59:26 +00002913 if (iommu_dummy(dev))
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002914 return 1;
2915
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002916 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002917 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002918
David Woodhouse3d891942014-03-06 15:59:26 +00002919 pdev = to_pci_dev(dev);
David Woodhouse9b226622014-03-09 14:03:28 -07002920 found = identity_mapping(dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002921 if (found) {
David Woodhouse6941af22009-07-04 18:24:27 +01002922 if (iommu_should_identity_map(pdev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002923 return 1;
2924 else {
2925 /*
2926 * 32 bit DMA is removed from si_domain and fall back
2927 * to non-identity mapping.
2928 */
2929 domain_remove_one_dev_info(si_domain, pdev);
2930 printk(KERN_INFO "32bit %s uses non-identity mapping\n",
2931 pci_name(pdev));
2932 return 0;
2933 }
2934 } else {
2935 /*
2936 * In case of a detached 64 bit DMA device from vm, the device
2937 * is put into si_domain for identity mapping.
2938 */
David Woodhouse6941af22009-07-04 18:24:27 +01002939 if (iommu_should_identity_map(pdev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002940 int ret;
David Woodhouse5fe60f42009-08-09 10:53:41 +01002941 ret = domain_add_dev_info(si_domain, pdev,
2942 hw_pass_through ?
2943 CONTEXT_TT_PASS_THROUGH :
2944 CONTEXT_TT_MULTI_LEVEL);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002945 if (!ret) {
2946 printk(KERN_INFO "64bit %s uses identity mapping\n",
2947 pci_name(pdev));
2948 return 1;
2949 }
2950 }
2951 }
2952
David Woodhouse1e4c64c2009-07-04 10:40:38 +01002953 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002954}
2955
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09002956static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
2957 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002958{
2959 struct pci_dev *pdev = to_pci_dev(hwdev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002960 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002961 phys_addr_t start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002962 struct iova *iova;
2963 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002964 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08002965 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07002966 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002967
2968 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002969
David Woodhouse73676832009-07-04 14:08:36 +01002970 if (iommu_no_mapping(hwdev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002971 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002972
2973 domain = get_valid_domain_for_dev(pdev);
2974 if (!domain)
2975 return 0;
2976
Weidong Han8c11e792008-12-08 15:29:22 +08002977 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01002978 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002979
Mike Travisc681d0b2011-05-28 13:15:05 -05002980 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size), dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07002981 if (!iova)
2982 goto error;
2983
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002984 /*
2985 * Check if DMAR supports zero-length reads on write only
2986 * mappings..
2987 */
2988 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08002989 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002990 prot |= DMA_PTE_READ;
2991 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
2992 prot |= DMA_PTE_WRITE;
2993 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002994 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002995 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02002996 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002997 * is not a big problem
2998 */
David Woodhouse0ab36de2009-06-28 14:01:43 +01002999 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo),
Fenghua Yu33041ec2009-08-04 15:10:59 -07003000 mm_to_dma_pfn(paddr_pfn), size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003001 if (ret)
3002 goto error;
3003
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003004 /* it's a non-present to present mapping. Only flush if caching mode */
3005 if (cap_caching_mode(iommu->cap))
David Woodhouseea8ea462014-03-05 17:09:32 +00003006 iommu_flush_iotlb_psi(iommu, domain->id, mm_to_dma_pfn(iova->pfn_lo), size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003007 else
Weidong Han8c11e792008-12-08 15:29:22 +08003008 iommu_flush_write_buffer(iommu);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003009
David Woodhouse03d6a242009-06-28 15:33:46 +01003010 start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT;
3011 start_paddr += paddr & ~PAGE_MASK;
3012 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003013
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003014error:
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003015 if (iova)
3016 __free_iova(&domain->iovad, iova);
David Woodhouse4cf2e752009-02-11 17:23:43 +00003017 printk(KERN_ERR"Device %s request: %zx@%llx dir %d --- failed\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003018 pci_name(pdev), size, (unsigned long long)paddr, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003019 return 0;
3020}
3021
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003022static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3023 unsigned long offset, size_t size,
3024 enum dma_data_direction dir,
3025 struct dma_attrs *attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003026{
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003027 return __intel_map_single(dev, page_to_phys(page) + offset, size,
3028 dir, to_pci_dev(dev)->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003029}
3030
mark gross5e0d2a62008-03-04 15:22:08 -08003031static void flush_unmaps(void)
3032{
mark gross80b20dd2008-04-18 13:53:58 -07003033 int i, j;
mark gross5e0d2a62008-03-04 15:22:08 -08003034
mark gross5e0d2a62008-03-04 15:22:08 -08003035 timer_on = 0;
3036
3037 /* just flush them all */
3038 for (i = 0; i < g_num_of_iommus; i++) {
Weidong Hana2bb8452008-12-08 11:24:12 +08003039 struct intel_iommu *iommu = g_iommus[i];
3040 if (!iommu)
3041 continue;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003042
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003043 if (!deferred_flush[i].next)
3044 continue;
3045
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003046 /* In caching mode, global flushes turn emulation expensive */
3047 if (!cap_caching_mode(iommu->cap))
3048 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
Yu Zhao93a23a72009-05-18 13:51:37 +08003049 DMA_TLB_GLOBAL_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003050 for (j = 0; j < deferred_flush[i].next; j++) {
Yu Zhao93a23a72009-05-18 13:51:37 +08003051 unsigned long mask;
3052 struct iova *iova = deferred_flush[i].iova[j];
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003053 struct dmar_domain *domain = deferred_flush[i].domain[j];
Yu Zhao93a23a72009-05-18 13:51:37 +08003054
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003055 /* On real hardware multiple invalidations are expensive */
3056 if (cap_caching_mode(iommu->cap))
3057 iommu_flush_iotlb_psi(iommu, domain->id,
David Woodhouseea8ea462014-03-05 17:09:32 +00003058 iova->pfn_lo, iova->pfn_hi - iova->pfn_lo + 1,
3059 !deferred_flush[i].freelist[j], 0);
Nadav Amit78d5f0f2010-04-08 23:00:41 +03003060 else {
3061 mask = ilog2(mm_to_dma_pfn(iova->pfn_hi - iova->pfn_lo + 1));
3062 iommu_flush_dev_iotlb(deferred_flush[i].domain[j],
3063 (uint64_t)iova->pfn_lo << PAGE_SHIFT, mask);
3064 }
Yu Zhao93a23a72009-05-18 13:51:37 +08003065 __free_iova(&deferred_flush[i].domain[j]->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003066 if (deferred_flush[i].freelist[j])
3067 dma_free_pagelist(deferred_flush[i].freelist[j]);
mark gross80b20dd2008-04-18 13:53:58 -07003068 }
Yu Zhao9dd2fe82009-05-18 13:51:36 +08003069 deferred_flush[i].next = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003070 }
3071
mark gross5e0d2a62008-03-04 15:22:08 -08003072 list_size = 0;
mark gross5e0d2a62008-03-04 15:22:08 -08003073}
3074
3075static void flush_unmaps_timeout(unsigned long data)
3076{
mark gross80b20dd2008-04-18 13:53:58 -07003077 unsigned long flags;
3078
3079 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003080 flush_unmaps();
mark gross80b20dd2008-04-18 13:53:58 -07003081 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
mark gross5e0d2a62008-03-04 15:22:08 -08003082}
3083
David Woodhouseea8ea462014-03-05 17:09:32 +00003084static void add_unmap(struct dmar_domain *dom, struct iova *iova, struct page *freelist)
mark gross5e0d2a62008-03-04 15:22:08 -08003085{
3086 unsigned long flags;
mark gross80b20dd2008-04-18 13:53:58 -07003087 int next, iommu_id;
Weidong Han8c11e792008-12-08 15:29:22 +08003088 struct intel_iommu *iommu;
mark gross5e0d2a62008-03-04 15:22:08 -08003089
3090 spin_lock_irqsave(&async_umap_flush_lock, flags);
mark gross80b20dd2008-04-18 13:53:58 -07003091 if (list_size == HIGH_WATER_MARK)
3092 flush_unmaps();
3093
Weidong Han8c11e792008-12-08 15:29:22 +08003094 iommu = domain_get_iommu(dom);
3095 iommu_id = iommu->seq_id;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07003096
mark gross80b20dd2008-04-18 13:53:58 -07003097 next = deferred_flush[iommu_id].next;
3098 deferred_flush[iommu_id].domain[next] = dom;
3099 deferred_flush[iommu_id].iova[next] = iova;
David Woodhouseea8ea462014-03-05 17:09:32 +00003100 deferred_flush[iommu_id].freelist[next] = freelist;
mark gross80b20dd2008-04-18 13:53:58 -07003101 deferred_flush[iommu_id].next++;
mark gross5e0d2a62008-03-04 15:22:08 -08003102
3103 if (!timer_on) {
3104 mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10));
3105 timer_on = 1;
3106 }
3107 list_size++;
3108 spin_unlock_irqrestore(&async_umap_flush_lock, flags);
3109}
3110
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003111static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3112 size_t size, enum dma_data_direction dir,
3113 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003114{
3115 struct pci_dev *pdev = to_pci_dev(dev);
3116 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003117 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003118 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08003119 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003120 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003121
David Woodhouse73676832009-07-04 14:08:36 +01003122 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003123 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003124
David Woodhouse1525a292014-03-06 16:19:30 +00003125 domain = find_domain(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003126 BUG_ON(!domain);
3127
Weidong Han8c11e792008-12-08 15:29:22 +08003128 iommu = domain_get_iommu(domain);
3129
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003130 iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
David Woodhouse85b98272009-07-01 19:27:53 +01003131 if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n",
3132 (unsigned long long)dev_addr))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003133 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003134
David Woodhoused794dc92009-06-28 00:27:49 +01003135 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
3136 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003137
David Woodhoused794dc92009-06-28 00:27:49 +01003138 pr_debug("Device %s unmapping: pfn %lx-%lx\n",
3139 pci_name(pdev), start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003140
David Woodhouseea8ea462014-03-05 17:09:32 +00003141 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003142
mark gross5e0d2a62008-03-04 15:22:08 -08003143 if (intel_iommu_strict) {
David Woodhouse03d6a242009-06-28 15:33:46 +01003144 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
David Woodhouseea8ea462014-03-05 17:09:32 +00003145 last_pfn - start_pfn + 1, !freelist, 0);
mark gross5e0d2a62008-03-04 15:22:08 -08003146 /* free iova */
3147 __free_iova(&domain->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003148 dma_free_pagelist(freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003149 } else {
David Woodhouseea8ea462014-03-05 17:09:32 +00003150 add_unmap(domain, iova, freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003151 /*
3152 * queue up the release of the unmap to save the 1/6th of the
3153 * cpu used up by the iotlb flush operation...
3154 */
mark gross5e0d2a62008-03-04 15:22:08 -08003155 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003156}
3157
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003158static void *intel_alloc_coherent(struct device *hwdev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003159 dma_addr_t *dma_handle, gfp_t flags,
3160 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003161{
3162 void *vaddr;
3163 int order;
3164
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003165 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003166 order = get_order(size);
Alex Williamsone8bb9102009-11-04 15:59:34 -07003167
3168 if (!iommu_no_mapping(hwdev))
3169 flags &= ~(GFP_DMA | GFP_DMA32);
3170 else if (hwdev->coherent_dma_mask < dma_get_required_mask(hwdev)) {
3171 if (hwdev->coherent_dma_mask < DMA_BIT_MASK(32))
3172 flags |= GFP_DMA;
3173 else
3174 flags |= GFP_DMA32;
3175 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003176
3177 vaddr = (void *)__get_free_pages(flags, order);
3178 if (!vaddr)
3179 return NULL;
3180 memset(vaddr, 0, size);
3181
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003182 *dma_handle = __intel_map_single(hwdev, virt_to_bus(vaddr), size,
3183 DMA_BIDIRECTIONAL,
3184 hwdev->coherent_dma_mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003185 if (*dma_handle)
3186 return vaddr;
3187 free_pages((unsigned long)vaddr, order);
3188 return NULL;
3189}
3190
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003191static void intel_free_coherent(struct device *hwdev, size_t size, void *vaddr,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003192 dma_addr_t dma_handle, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003193{
3194 int order;
3195
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003196 size = PAGE_ALIGN(size);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003197 order = get_order(size);
3198
David Woodhouse0db9b7a2009-07-14 02:01:57 +01003199 intel_unmap_page(hwdev, dma_handle, size, DMA_BIDIRECTIONAL, NULL);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003200 free_pages((unsigned long)vaddr, order);
3201}
3202
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003203static void intel_unmap_sg(struct device *hwdev, struct scatterlist *sglist,
3204 int nelems, enum dma_data_direction dir,
3205 struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003206{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003207 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003208 unsigned long start_pfn, last_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003209 struct iova *iova;
Weidong Han8c11e792008-12-08 15:29:22 +08003210 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003211 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003212
David Woodhouse73676832009-07-04 14:08:36 +01003213 if (iommu_no_mapping(hwdev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003214 return;
3215
David Woodhouse1525a292014-03-06 16:19:30 +00003216 domain = find_domain(hwdev);
Weidong Han8c11e792008-12-08 15:29:22 +08003217 BUG_ON(!domain);
3218
3219 iommu = domain_get_iommu(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003220
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003221 iova = find_iova(&domain->iovad, IOVA_PFN(sglist[0].dma_address));
David Woodhouse85b98272009-07-01 19:27:53 +01003222 if (WARN_ONCE(!iova, "Driver unmaps unmatched sglist at PFN %llx\n",
3223 (unsigned long long)sglist[0].dma_address))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003224 return;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003225
David Woodhoused794dc92009-06-28 00:27:49 +01003226 start_pfn = mm_to_dma_pfn(iova->pfn_lo);
3227 last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003228
David Woodhouseea8ea462014-03-05 17:09:32 +00003229 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003230
David Woodhouseacea0012009-07-14 01:55:11 +01003231 if (intel_iommu_strict) {
3232 iommu_flush_iotlb_psi(iommu, domain->id, start_pfn,
David Woodhouseea8ea462014-03-05 17:09:32 +00003233 last_pfn - start_pfn + 1, !freelist, 0);
David Woodhouseacea0012009-07-14 01:55:11 +01003234 /* free iova */
3235 __free_iova(&domain->iovad, iova);
David Woodhouseea8ea462014-03-05 17:09:32 +00003236 dma_free_pagelist(freelist);
David Woodhouseacea0012009-07-14 01:55:11 +01003237 } else {
David Woodhouseea8ea462014-03-05 17:09:32 +00003238 add_unmap(domain, iova, freelist);
David Woodhouseacea0012009-07-14 01:55:11 +01003239 /*
3240 * queue up the release of the unmap to save the 1/6th of the
3241 * cpu used up by the iotlb flush operation...
3242 */
3243 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003244}
3245
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003246static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003247 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003248{
3249 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003250 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003251
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003252 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02003253 BUG_ON(!sg_page(sg));
David Woodhouse4cf2e752009-02-11 17:23:43 +00003254 sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003255 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003256 }
3257 return nelems;
3258}
3259
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003260static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int nelems,
3261 enum dma_data_direction dir, struct dma_attrs *attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003262{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003263 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003264 struct pci_dev *pdev = to_pci_dev(hwdev);
3265 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003266 size_t size = 0;
3267 int prot = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003268 struct iova *iova = NULL;
3269 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003270 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01003271 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003272 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003273
3274 BUG_ON(dir == DMA_NONE);
David Woodhouse73676832009-07-04 14:08:36 +01003275 if (iommu_no_mapping(hwdev))
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003276 return intel_nontranslate_map_sg(hwdev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003277
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003278 domain = get_valid_domain_for_dev(pdev);
3279 if (!domain)
3280 return 0;
3281
Weidong Han8c11e792008-12-08 15:29:22 +08003282 iommu = domain_get_iommu(domain);
3283
David Woodhouseb536d242009-06-28 14:49:31 +01003284 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01003285 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003286
David Woodhouse5a5e02a2009-07-04 09:35:44 +01003287 iova = intel_alloc_iova(hwdev, domain, dma_to_mm_pfn(size),
3288 pdev->dma_mask);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003289 if (!iova) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003290 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003291 return 0;
3292 }
3293
3294 /*
3295 * Check if DMAR supports zero-length reads on write only
3296 * mappings..
3297 */
3298 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003299 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003300 prot |= DMA_PTE_READ;
3301 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3302 prot |= DMA_PTE_WRITE;
3303
David Woodhouseb536d242009-06-28 14:49:31 +01003304 start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
David Woodhousee1605492009-06-29 11:17:38 +01003305
Fenghua Yuf5329592009-08-04 15:09:37 -07003306 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01003307 if (unlikely(ret)) {
3308 /* clear the page */
3309 dma_pte_clear_range(domain, start_vpfn,
3310 start_vpfn + size - 1);
3311 /* free page tables */
3312 dma_pte_free_pagetable(domain, start_vpfn,
3313 start_vpfn + size - 1);
3314 /* free iova */
3315 __free_iova(&domain->iovad, iova);
3316 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003317 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003318
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003319 /* it's a non-present to present mapping. Only flush if caching mode */
3320 if (cap_caching_mode(iommu->cap))
David Woodhouseea8ea462014-03-05 17:09:32 +00003321 iommu_flush_iotlb_psi(iommu, domain->id, start_vpfn, size, 0, 1);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003322 else
Weidong Han8c11e792008-12-08 15:29:22 +08003323 iommu_flush_write_buffer(iommu);
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003324
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003325 return nelems;
3326}
3327
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003328static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr)
3329{
3330 return !dma_addr;
3331}
3332
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003333struct dma_map_ops intel_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003334 .alloc = intel_alloc_coherent,
3335 .free = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003336 .map_sg = intel_map_sg,
3337 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003338 .map_page = intel_map_page,
3339 .unmap_page = intel_unmap_page,
FUJITA Tomonoridfb805e2009-01-28 21:53:17 +09003340 .mapping_error = intel_mapping_error,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003341};
3342
3343static inline int iommu_domain_cache_init(void)
3344{
3345 int ret = 0;
3346
3347 iommu_domain_cache = kmem_cache_create("iommu_domain",
3348 sizeof(struct dmar_domain),
3349 0,
3350 SLAB_HWCACHE_ALIGN,
3351
3352 NULL);
3353 if (!iommu_domain_cache) {
3354 printk(KERN_ERR "Couldn't create iommu_domain cache\n");
3355 ret = -ENOMEM;
3356 }
3357
3358 return ret;
3359}
3360
3361static inline int iommu_devinfo_cache_init(void)
3362{
3363 int ret = 0;
3364
3365 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3366 sizeof(struct device_domain_info),
3367 0,
3368 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003369 NULL);
3370 if (!iommu_devinfo_cache) {
3371 printk(KERN_ERR "Couldn't create devinfo cache\n");
3372 ret = -ENOMEM;
3373 }
3374
3375 return ret;
3376}
3377
3378static inline int iommu_iova_cache_init(void)
3379{
3380 int ret = 0;
3381
3382 iommu_iova_cache = kmem_cache_create("iommu_iova",
3383 sizeof(struct iova),
3384 0,
3385 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003386 NULL);
3387 if (!iommu_iova_cache) {
3388 printk(KERN_ERR "Couldn't create iova cache\n");
3389 ret = -ENOMEM;
3390 }
3391
3392 return ret;
3393}
3394
3395static int __init iommu_init_mempool(void)
3396{
3397 int ret;
3398 ret = iommu_iova_cache_init();
3399 if (ret)
3400 return ret;
3401
3402 ret = iommu_domain_cache_init();
3403 if (ret)
3404 goto domain_error;
3405
3406 ret = iommu_devinfo_cache_init();
3407 if (!ret)
3408 return ret;
3409
3410 kmem_cache_destroy(iommu_domain_cache);
3411domain_error:
3412 kmem_cache_destroy(iommu_iova_cache);
3413
3414 return -ENOMEM;
3415}
3416
3417static void __init iommu_exit_mempool(void)
3418{
3419 kmem_cache_destroy(iommu_devinfo_cache);
3420 kmem_cache_destroy(iommu_domain_cache);
3421 kmem_cache_destroy(iommu_iova_cache);
3422
3423}
3424
Dan Williams556ab452010-07-23 15:47:56 -07003425static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
3426{
3427 struct dmar_drhd_unit *drhd;
3428 u32 vtbar;
3429 int rc;
3430
3431 /* We know that this device on this chipset has its own IOMMU.
3432 * If we find it under a different IOMMU, then the BIOS is lying
3433 * to us. Hope that the IOMMU for this device is actually
3434 * disabled, and it needs no translation...
3435 */
3436 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
3437 if (rc) {
3438 /* "can't" happen */
3439 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
3440 return;
3441 }
3442 vtbar &= 0xffff0000;
3443
3444 /* we know that the this iommu should be at offset 0xa000 from vtbar */
3445 drhd = dmar_find_matched_drhd_unit(pdev);
3446 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
3447 TAINT_FIRMWARE_WORKAROUND,
3448 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
3449 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
3450}
3451DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
3452
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003453static void __init init_no_remapping_devices(void)
3454{
3455 struct dmar_drhd_unit *drhd;
David Woodhouse832bd852014-03-07 15:08:36 +00003456 struct device *dev;
Jiang Liub683b232014-02-19 14:07:32 +08003457 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003458
3459 for_each_drhd_unit(drhd) {
3460 if (!drhd->include_all) {
Jiang Liub683b232014-02-19 14:07:32 +08003461 for_each_active_dev_scope(drhd->devices,
3462 drhd->devices_cnt, i, dev)
3463 break;
David Woodhouse832bd852014-03-07 15:08:36 +00003464 /* ignore DMAR unit if no devices exist */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003465 if (i == drhd->devices_cnt)
3466 drhd->ignored = 1;
3467 }
3468 }
3469
Jiang Liu7c919772014-01-06 14:18:18 +08003470 for_each_active_drhd_unit(drhd) {
Jiang Liu7c919772014-01-06 14:18:18 +08003471 if (drhd->include_all)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003472 continue;
3473
Jiang Liub683b232014-02-19 14:07:32 +08003474 for_each_active_dev_scope(drhd->devices,
3475 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003476 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003477 break;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003478 if (i < drhd->devices_cnt)
3479 continue;
3480
David Woodhousec0771df2011-10-14 20:59:46 +01003481 /* This IOMMU has *only* gfx devices. Either bypass it or
3482 set the gfx_mapped flag, as appropriate */
3483 if (dmar_map_gfx) {
3484 intel_iommu_gfx_mapped = 1;
3485 } else {
3486 drhd->ignored = 1;
Jiang Liub683b232014-02-19 14:07:32 +08003487 for_each_active_dev_scope(drhd->devices,
3488 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00003489 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003490 }
3491 }
3492}
3493
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003494#ifdef CONFIG_SUSPEND
3495static int init_iommu_hw(void)
3496{
3497 struct dmar_drhd_unit *drhd;
3498 struct intel_iommu *iommu = NULL;
3499
3500 for_each_active_iommu(iommu, drhd)
3501 if (iommu->qi)
3502 dmar_reenable_qi(iommu);
3503
Joseph Cihulab7792602011-05-03 00:08:37 -07003504 for_each_iommu(iommu, drhd) {
3505 if (drhd->ignored) {
3506 /*
3507 * we always have to disable PMRs or DMA may fail on
3508 * this device
3509 */
3510 if (force_on)
3511 iommu_disable_protect_mem_regions(iommu);
3512 continue;
3513 }
3514
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003515 iommu_flush_write_buffer(iommu);
3516
3517 iommu_set_root_entry(iommu);
3518
3519 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003520 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003521 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003522 DMA_TLB_GLOBAL_FLUSH);
Joseph Cihulab7792602011-05-03 00:08:37 -07003523 if (iommu_enable_translation(iommu))
3524 return 1;
David Woodhouseb94996c2009-09-19 15:28:12 -07003525 iommu_disable_protect_mem_regions(iommu);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003526 }
3527
3528 return 0;
3529}
3530
3531static void iommu_flush_all(void)
3532{
3533 struct dmar_drhd_unit *drhd;
3534 struct intel_iommu *iommu;
3535
3536 for_each_active_iommu(iommu, drhd) {
3537 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003538 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003539 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01003540 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003541 }
3542}
3543
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003544static int iommu_suspend(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003545{
3546 struct dmar_drhd_unit *drhd;
3547 struct intel_iommu *iommu = NULL;
3548 unsigned long flag;
3549
3550 for_each_active_iommu(iommu, drhd) {
3551 iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS,
3552 GFP_ATOMIC);
3553 if (!iommu->iommu_state)
3554 goto nomem;
3555 }
3556
3557 iommu_flush_all();
3558
3559 for_each_active_iommu(iommu, drhd) {
3560 iommu_disable_translation(iommu);
3561
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003562 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003563
3564 iommu->iommu_state[SR_DMAR_FECTL_REG] =
3565 readl(iommu->reg + DMAR_FECTL_REG);
3566 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
3567 readl(iommu->reg + DMAR_FEDATA_REG);
3568 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
3569 readl(iommu->reg + DMAR_FEADDR_REG);
3570 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
3571 readl(iommu->reg + DMAR_FEUADDR_REG);
3572
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003573 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003574 }
3575 return 0;
3576
3577nomem:
3578 for_each_active_iommu(iommu, drhd)
3579 kfree(iommu->iommu_state);
3580
3581 return -ENOMEM;
3582}
3583
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003584static void iommu_resume(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003585{
3586 struct dmar_drhd_unit *drhd;
3587 struct intel_iommu *iommu = NULL;
3588 unsigned long flag;
3589
3590 if (init_iommu_hw()) {
Joseph Cihulab7792602011-05-03 00:08:37 -07003591 if (force_on)
3592 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
3593 else
3594 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003595 return;
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003596 }
3597
3598 for_each_active_iommu(iommu, drhd) {
3599
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003600 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003601
3602 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
3603 iommu->reg + DMAR_FECTL_REG);
3604 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
3605 iommu->reg + DMAR_FEDATA_REG);
3606 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
3607 iommu->reg + DMAR_FEADDR_REG);
3608 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
3609 iommu->reg + DMAR_FEUADDR_REG);
3610
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02003611 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003612 }
3613
3614 for_each_active_iommu(iommu, drhd)
3615 kfree(iommu->iommu_state);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003616}
3617
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003618static struct syscore_ops iommu_syscore_ops = {
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003619 .resume = iommu_resume,
3620 .suspend = iommu_suspend,
3621};
3622
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003623static void __init init_iommu_pm_ops(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003624{
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003625 register_syscore_ops(&iommu_syscore_ops);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003626}
3627
3628#else
Rafael J. Wysocki99592ba2011-06-07 21:32:31 +02003629static inline void init_iommu_pm_ops(void) {}
Fenghua Yuf59c7b62009-03-27 14:22:42 -07003630#endif /* CONFIG_PM */
3631
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003632
3633int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header)
3634{
3635 struct acpi_dmar_reserved_memory *rmrr;
3636 struct dmar_rmrr_unit *rmrru;
3637
3638 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
3639 if (!rmrru)
3640 return -ENOMEM;
3641
3642 rmrru->hdr = header;
3643 rmrr = (struct acpi_dmar_reserved_memory *)header;
3644 rmrru->base_address = rmrr->base_address;
3645 rmrru->end_address = rmrr->end_address;
Jiang Liu2e455282014-02-19 14:07:36 +08003646 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
3647 ((void *)rmrr) + rmrr->header.length,
3648 &rmrru->devices_cnt);
3649 if (rmrru->devices_cnt && rmrru->devices == NULL) {
3650 kfree(rmrru);
3651 return -ENOMEM;
3652 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003653
Jiang Liu2e455282014-02-19 14:07:36 +08003654 list_add(&rmrru->list, &dmar_rmrr_units);
3655
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003656 return 0;
3657}
3658
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003659int __init dmar_parse_one_atsr(struct acpi_dmar_header *hdr)
3660{
3661 struct acpi_dmar_atsr *atsr;
3662 struct dmar_atsr_unit *atsru;
3663
3664 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
3665 atsru = kzalloc(sizeof(*atsru), GFP_KERNEL);
3666 if (!atsru)
3667 return -ENOMEM;
3668
3669 atsru->hdr = hdr;
3670 atsru->include_all = atsr->flags & 0x1;
Jiang Liu2e455282014-02-19 14:07:36 +08003671 if (!atsru->include_all) {
3672 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
3673 (void *)atsr + atsr->header.length,
3674 &atsru->devices_cnt);
3675 if (atsru->devices_cnt && atsru->devices == NULL) {
3676 kfree(atsru);
3677 return -ENOMEM;
3678 }
3679 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003680
Jiang Liu0e242612014-02-19 14:07:34 +08003681 list_add_rcu(&atsru->list, &dmar_atsr_units);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003682
3683 return 0;
3684}
3685
Jiang Liu9bdc5312014-01-06 14:18:27 +08003686static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
3687{
3688 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
3689 kfree(atsru);
3690}
3691
3692static void intel_iommu_free_dmars(void)
3693{
3694 struct dmar_rmrr_unit *rmrru, *rmrr_n;
3695 struct dmar_atsr_unit *atsru, *atsr_n;
3696
3697 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
3698 list_del(&rmrru->list);
3699 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
3700 kfree(rmrru);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003701 }
3702
Jiang Liu9bdc5312014-01-06 14:18:27 +08003703 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
3704 list_del(&atsru->list);
3705 intel_iommu_free_atsr(atsru);
3706 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003707}
3708
3709int dmar_find_matched_atsr_unit(struct pci_dev *dev)
3710{
Jiang Liub683b232014-02-19 14:07:32 +08003711 int i, ret = 1;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003712 struct pci_bus *bus;
David Woodhouse832bd852014-03-07 15:08:36 +00003713 struct pci_dev *bridge = NULL;
3714 struct device *tmp;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003715 struct acpi_dmar_atsr *atsr;
3716 struct dmar_atsr_unit *atsru;
3717
3718 dev = pci_physfn(dev);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003719 for (bus = dev->bus; bus; bus = bus->parent) {
Jiang Liub5f82dd2014-02-19 14:07:31 +08003720 bridge = bus->self;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003721 if (!bridge || !pci_is_pcie(bridge) ||
Yijing Wang62f87c02012-07-24 17:20:03 +08003722 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003723 return 0;
Jiang Liub5f82dd2014-02-19 14:07:31 +08003724 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003725 break;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003726 }
Jiang Liub5f82dd2014-02-19 14:07:31 +08003727 if (!bridge)
3728 return 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003729
Jiang Liu0e242612014-02-19 14:07:34 +08003730 rcu_read_lock();
Jiang Liub5f82dd2014-02-19 14:07:31 +08003731 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
3732 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
3733 if (atsr->segment != pci_domain_nr(dev->bus))
3734 continue;
3735
Jiang Liub683b232014-02-19 14:07:32 +08003736 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00003737 if (tmp == &bridge->dev)
Jiang Liub683b232014-02-19 14:07:32 +08003738 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08003739
3740 if (atsru->include_all)
Jiang Liub683b232014-02-19 14:07:32 +08003741 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08003742 }
Jiang Liub683b232014-02-19 14:07:32 +08003743 ret = 0;
3744out:
Jiang Liu0e242612014-02-19 14:07:34 +08003745 rcu_read_unlock();
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003746
Jiang Liub683b232014-02-19 14:07:32 +08003747 return ret;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003748}
3749
Jiang Liu59ce0512014-02-19 14:07:35 +08003750int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
3751{
3752 int ret = 0;
3753 struct dmar_rmrr_unit *rmrru;
3754 struct dmar_atsr_unit *atsru;
3755 struct acpi_dmar_atsr *atsr;
3756 struct acpi_dmar_reserved_memory *rmrr;
3757
3758 if (!intel_iommu_enabled && system_state != SYSTEM_BOOTING)
3759 return 0;
3760
3761 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
3762 rmrr = container_of(rmrru->hdr,
3763 struct acpi_dmar_reserved_memory, header);
3764 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
3765 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
3766 ((void *)rmrr) + rmrr->header.length,
3767 rmrr->segment, rmrru->devices,
3768 rmrru->devices_cnt);
3769 if (ret > 0)
3770 break;
3771 else if(ret < 0)
3772 return ret;
3773 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
3774 if (dmar_remove_dev_scope(info, rmrr->segment,
3775 rmrru->devices, rmrru->devices_cnt))
3776 break;
3777 }
3778 }
3779
3780 list_for_each_entry(atsru, &dmar_atsr_units, list) {
3781 if (atsru->include_all)
3782 continue;
3783
3784 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
3785 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
3786 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
3787 (void *)atsr + atsr->header.length,
3788 atsr->segment, atsru->devices,
3789 atsru->devices_cnt);
3790 if (ret > 0)
3791 break;
3792 else if(ret < 0)
3793 return ret;
3794 } else if (info->event == BUS_NOTIFY_DEL_DEVICE) {
3795 if (dmar_remove_dev_scope(info, atsr->segment,
3796 atsru->devices, atsru->devices_cnt))
3797 break;
3798 }
3799 }
3800
3801 return 0;
3802}
3803
Fenghua Yu99dcade2009-11-11 07:23:06 -08003804/*
3805 * Here we only respond to action of unbound device from driver.
3806 *
3807 * Added device is not attached to its DMAR domain here yet. That will happen
3808 * when mapping the device to iova.
3809 */
3810static int device_notifier(struct notifier_block *nb,
3811 unsigned long action, void *data)
3812{
3813 struct device *dev = data;
3814 struct pci_dev *pdev = to_pci_dev(dev);
3815 struct dmar_domain *domain;
3816
David Woodhouse3d891942014-03-06 15:59:26 +00003817 if (iommu_dummy(dev))
David Woodhouse44cd6132009-12-02 10:18:30 +00003818 return 0;
3819
Jiang Liu7e7dfab2014-02-19 14:07:23 +08003820 if (action != BUS_NOTIFY_UNBOUND_DRIVER &&
3821 action != BUS_NOTIFY_DEL_DEVICE)
3822 return 0;
3823
David Woodhouse1525a292014-03-06 16:19:30 +00003824 domain = find_domain(dev);
Fenghua Yu99dcade2009-11-11 07:23:06 -08003825 if (!domain)
3826 return 0;
3827
Jiang Liu3a5670e2014-02-19 14:07:33 +08003828 down_read(&dmar_global_lock);
Jiang Liu7e7dfab2014-02-19 14:07:23 +08003829 domain_remove_one_dev_info(domain, pdev);
3830 if (!(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE) &&
3831 !(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) &&
3832 list_empty(&domain->devices))
3833 domain_exit(domain);
Jiang Liu3a5670e2014-02-19 14:07:33 +08003834 up_read(&dmar_global_lock);
Alex Williamsona97590e2011-03-04 14:52:16 -07003835
Fenghua Yu99dcade2009-11-11 07:23:06 -08003836 return 0;
3837}
3838
3839static struct notifier_block device_nb = {
3840 .notifier_call = device_notifier,
3841};
3842
Jiang Liu75f05562014-02-19 14:07:37 +08003843static int intel_iommu_memory_notifier(struct notifier_block *nb,
3844 unsigned long val, void *v)
3845{
3846 struct memory_notify *mhp = v;
3847 unsigned long long start, end;
3848 unsigned long start_vpfn, last_vpfn;
3849
3850 switch (val) {
3851 case MEM_GOING_ONLINE:
3852 start = mhp->start_pfn << PAGE_SHIFT;
3853 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
3854 if (iommu_domain_identity_map(si_domain, start, end)) {
3855 pr_warn("dmar: failed to build identity map for [%llx-%llx]\n",
3856 start, end);
3857 return NOTIFY_BAD;
3858 }
3859 break;
3860
3861 case MEM_OFFLINE:
3862 case MEM_CANCEL_ONLINE:
3863 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
3864 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
3865 while (start_vpfn <= last_vpfn) {
3866 struct iova *iova;
3867 struct dmar_drhd_unit *drhd;
3868 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003869 struct page *freelist;
Jiang Liu75f05562014-02-19 14:07:37 +08003870
3871 iova = find_iova(&si_domain->iovad, start_vpfn);
3872 if (iova == NULL) {
3873 pr_debug("dmar: failed get IOVA for PFN %lx\n",
3874 start_vpfn);
3875 break;
3876 }
3877
3878 iova = split_and_remove_iova(&si_domain->iovad, iova,
3879 start_vpfn, last_vpfn);
3880 if (iova == NULL) {
3881 pr_warn("dmar: failed to split IOVA PFN [%lx-%lx]\n",
3882 start_vpfn, last_vpfn);
3883 return NOTIFY_BAD;
3884 }
3885
David Woodhouseea8ea462014-03-05 17:09:32 +00003886 freelist = domain_unmap(si_domain, iova->pfn_lo,
3887 iova->pfn_hi);
3888
Jiang Liu75f05562014-02-19 14:07:37 +08003889 rcu_read_lock();
3890 for_each_active_iommu(iommu, drhd)
3891 iommu_flush_iotlb_psi(iommu, si_domain->id,
3892 iova->pfn_lo,
David Woodhouseea8ea462014-03-05 17:09:32 +00003893 iova->pfn_hi - iova->pfn_lo + 1,
3894 !freelist, 0);
Jiang Liu75f05562014-02-19 14:07:37 +08003895 rcu_read_unlock();
David Woodhouseea8ea462014-03-05 17:09:32 +00003896 dma_free_pagelist(freelist);
Jiang Liu75f05562014-02-19 14:07:37 +08003897
3898 start_vpfn = iova->pfn_hi + 1;
3899 free_iova_mem(iova);
3900 }
3901 break;
3902 }
3903
3904 return NOTIFY_OK;
3905}
3906
3907static struct notifier_block intel_iommu_memory_nb = {
3908 .notifier_call = intel_iommu_memory_notifier,
3909 .priority = 0
3910};
3911
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003912int __init intel_iommu_init(void)
3913{
Jiang Liu9bdc5312014-01-06 14:18:27 +08003914 int ret = -ENODEV;
Takao Indoh3a93c842013-04-23 17:35:03 +09003915 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08003916 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003917
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003918 /* VT-d is required for a TXT/tboot launch, so enforce that */
3919 force_on = tboot_force_iommu();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003920
Jiang Liu3a5670e2014-02-19 14:07:33 +08003921 if (iommu_init_mempool()) {
3922 if (force_on)
3923 panic("tboot: Failed to initialize iommu memory\n");
3924 return -ENOMEM;
3925 }
3926
3927 down_write(&dmar_global_lock);
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003928 if (dmar_table_init()) {
3929 if (force_on)
3930 panic("tboot: Failed to initialize DMAR table\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08003931 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003932 }
3933
Takao Indoh3a93c842013-04-23 17:35:03 +09003934 /*
3935 * Disable translation if already enabled prior to OS handover.
3936 */
Jiang Liu7c919772014-01-06 14:18:18 +08003937 for_each_active_iommu(iommu, drhd)
Takao Indoh3a93c842013-04-23 17:35:03 +09003938 if (iommu->gcmd & DMA_GCMD_TE)
3939 iommu_disable_translation(iommu);
Takao Indoh3a93c842013-04-23 17:35:03 +09003940
Suresh Siddhac2c72862011-08-23 17:05:19 -07003941 if (dmar_dev_scope_init() < 0) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003942 if (force_on)
3943 panic("tboot: Failed to initialize DMAR device scope\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08003944 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003945 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -07003946
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003947 if (no_iommu || dmar_disabled)
Jiang Liu9bdc5312014-01-06 14:18:27 +08003948 goto out_free_dmar;
Suresh Siddha2ae21012008-07-10 11:16:43 -07003949
Suresh Siddha318fe7d2011-08-23 17:05:20 -07003950 if (list_empty(&dmar_rmrr_units))
3951 printk(KERN_INFO "DMAR: No RMRR found\n");
3952
3953 if (list_empty(&dmar_atsr_units))
3954 printk(KERN_INFO "DMAR: No ATSR found\n");
3955
Joseph Cihula51a63e62011-03-21 11:04:24 -07003956 if (dmar_init_reserved_ranges()) {
3957 if (force_on)
3958 panic("tboot: Failed to reserve iommu ranges\n");
Jiang Liu3a5670e2014-02-19 14:07:33 +08003959 goto out_free_reserved_range;
Joseph Cihula51a63e62011-03-21 11:04:24 -07003960 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003961
3962 init_no_remapping_devices();
3963
Joseph Cihulab7792602011-05-03 00:08:37 -07003964 ret = init_dmars();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003965 if (ret) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07003966 if (force_on)
3967 panic("tboot: Failed to initialize DMARs\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003968 printk(KERN_ERR "IOMMU: dmar init failed\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08003969 goto out_free_reserved_range;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003970 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08003971 up_write(&dmar_global_lock);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003972 printk(KERN_INFO
3973 "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n");
3974
mark gross5e0d2a62008-03-04 15:22:08 -08003975 init_timer(&unmap_timer);
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003976#ifdef CONFIG_SWIOTLB
3977 swiotlb = 0;
3978#endif
David Woodhouse19943b02009-08-04 16:19:20 +01003979 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003980
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01003981 init_iommu_pm_ops();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01003982
Joerg Roedel4236d97d2011-09-06 17:56:07 +02003983 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
Fenghua Yu99dcade2009-11-11 07:23:06 -08003984 bus_register_notifier(&pci_bus_type, &device_nb);
Jiang Liu75f05562014-02-19 14:07:37 +08003985 if (si_domain && !hw_pass_through)
3986 register_memory_notifier(&intel_iommu_memory_nb);
Fenghua Yu99dcade2009-11-11 07:23:06 -08003987
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02003988 intel_iommu_enabled = 1;
3989
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003990 return 0;
Jiang Liu9bdc5312014-01-06 14:18:27 +08003991
3992out_free_reserved_range:
3993 put_iova_domain(&reserved_iova_list);
Jiang Liu9bdc5312014-01-06 14:18:27 +08003994out_free_dmar:
3995 intel_iommu_free_dmars();
Jiang Liu3a5670e2014-02-19 14:07:33 +08003996 up_write(&dmar_global_lock);
3997 iommu_exit_mempool();
Jiang Liu9bdc5312014-01-06 14:18:27 +08003998 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003999}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07004000
Han, Weidong3199aa62009-02-26 17:31:12 +08004001static void iommu_detach_dependent_devices(struct intel_iommu *iommu,
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004002 struct device *dev)
Han, Weidong3199aa62009-02-26 17:31:12 +08004003{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004004 struct pci_dev *tmp, *parent, *pdev;
Han, Weidong3199aa62009-02-26 17:31:12 +08004005
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004006 if (!iommu || !dev || !dev_is_pci(dev))
Han, Weidong3199aa62009-02-26 17:31:12 +08004007 return;
4008
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004009 pdev = to_pci_dev(dev);
4010
Han, Weidong3199aa62009-02-26 17:31:12 +08004011 /* dependent device detach */
4012 tmp = pci_find_upstream_pcie_bridge(pdev);
4013 /* Secondary interface's bus number and devfn 0 */
4014 if (tmp) {
4015 parent = pdev->bus->self;
4016 while (parent != tmp) {
4017 iommu_detach_dev(iommu, parent->bus->number,
David Woodhouse276dbf992009-04-04 01:45:37 +01004018 parent->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08004019 parent = parent->bus->self;
4020 }
Stefan Assmann45e829e2009-12-03 06:49:24 -05004021 if (pci_is_pcie(tmp)) /* this is a PCIe-to-PCI bridge */
Han, Weidong3199aa62009-02-26 17:31:12 +08004022 iommu_detach_dev(iommu,
4023 tmp->subordinate->number, 0);
4024 else /* this is a legacy PCI bridge */
David Woodhouse276dbf992009-04-04 01:45:37 +01004025 iommu_detach_dev(iommu, tmp->bus->number,
4026 tmp->devfn);
Han, Weidong3199aa62009-02-26 17:31:12 +08004027 }
4028}
4029
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004030static void domain_remove_one_dev_info(struct dmar_domain *domain,
Weidong Hanc7151a82008-12-08 22:51:37 +08004031 struct pci_dev *pdev)
4032{
Yijing Wangbca2b912013-10-31 17:26:04 +08004033 struct device_domain_info *info, *tmp;
Weidong Hanc7151a82008-12-08 22:51:37 +08004034 struct intel_iommu *iommu;
4035 unsigned long flags;
4036 int found = 0;
David Woodhouse156baca2014-03-09 14:00:57 -07004037 u8 bus, devfn;
Weidong Hanc7151a82008-12-08 22:51:37 +08004038
David Woodhouse156baca2014-03-09 14:00:57 -07004039 iommu = device_to_iommu(&pdev->dev, &bus, &devfn);
Weidong Hanc7151a82008-12-08 22:51:37 +08004040 if (!iommu)
4041 return;
4042
4043 spin_lock_irqsave(&device_domain_lock, flags);
Yijing Wangbca2b912013-10-31 17:26:04 +08004044 list_for_each_entry_safe(info, tmp, &domain->devices, link) {
David Woodhouse41e80dca2014-03-09 13:55:54 -07004045 if (info->iommu->segment == pci_domain_nr(pdev->bus) &&
Mike Habeck8519dc42011-05-28 13:15:07 -05004046 info->bus == pdev->bus->number &&
Weidong Hanc7151a82008-12-08 22:51:37 +08004047 info->devfn == pdev->devfn) {
David Woodhouse109b9b02012-05-25 17:43:02 +01004048 unlink_domain_info(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004049 spin_unlock_irqrestore(&device_domain_lock, flags);
4050
Yu Zhao93a23a72009-05-18 13:51:37 +08004051 iommu_disable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004052 iommu_detach_dev(iommu, info->bus, info->devfn);
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004053 iommu_detach_dependent_devices(iommu, &pdev->dev);
Weidong Hanc7151a82008-12-08 22:51:37 +08004054 free_devinfo_mem(info);
4055
4056 spin_lock_irqsave(&device_domain_lock, flags);
4057
4058 if (found)
4059 break;
4060 else
4061 continue;
4062 }
4063
4064 /* if there is no other devices under the same iommu
4065 * owned by this domain, clear this iommu in iommu_bmp
4066 * update iommu count and coherency
4067 */
David Woodhouse8bbc4412014-03-09 13:52:37 -07004068 if (info->iommu == iommu)
Weidong Hanc7151a82008-12-08 22:51:37 +08004069 found = 1;
4070 }
4071
Roland Dreier3e7abe22011-07-20 06:22:21 -07004072 spin_unlock_irqrestore(&device_domain_lock, flags);
4073
Weidong Hanc7151a82008-12-08 22:51:37 +08004074 if (found == 0) {
4075 unsigned long tmp_flags;
4076 spin_lock_irqsave(&domain->iommu_lock, tmp_flags);
Mike Travis1b198bb2012-03-05 15:05:16 -08004077 clear_bit(iommu->seq_id, domain->iommu_bmp);
Weidong Hanc7151a82008-12-08 22:51:37 +08004078 domain->iommu_count--;
Sheng Yang58c610b2009-03-18 15:33:05 +08004079 domain_update_iommu_cap(domain);
Weidong Hanc7151a82008-12-08 22:51:37 +08004080 spin_unlock_irqrestore(&domain->iommu_lock, tmp_flags);
Alex Williamsona97590e2011-03-04 14:52:16 -07004081
Alex Williamson9b4554b2011-05-24 12:19:04 -04004082 if (!(domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE) &&
4083 !(domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)) {
4084 spin_lock_irqsave(&iommu->lock, tmp_flags);
4085 clear_bit(domain->id, iommu->domain_ids);
4086 iommu->domains[domain->id] = NULL;
4087 spin_unlock_irqrestore(&iommu->lock, tmp_flags);
4088 }
Weidong Hanc7151a82008-12-08 22:51:37 +08004089 }
Weidong Hanc7151a82008-12-08 22:51:37 +08004090}
4091
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004092static int md_domain_init(struct dmar_domain *domain, int guest_width)
Weidong Han5e98c4b2008-12-08 23:03:27 +08004093{
4094 int adjust_width;
4095
4096 init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004097 domain_reserve_special_ranges(domain);
4098
4099 /* calculate AGAW */
4100 domain->gaw = guest_width;
4101 adjust_width = guestwidth_to_adjustwidth(guest_width);
4102 domain->agaw = width_to_agaw(adjust_width);
4103
Weidong Han5e98c4b2008-12-08 23:03:27 +08004104 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08004105 domain->iommu_snooping = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01004106 domain->iommu_superpage = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004107 domain->max_addr = 0;
Suresh Siddha4c923d42009-10-02 11:01:24 -07004108 domain->nid = -1;
Weidong Han5e98c4b2008-12-08 23:03:27 +08004109
4110 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07004111 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Weidong Han5e98c4b2008-12-08 23:03:27 +08004112 if (!domain->pgd)
4113 return -ENOMEM;
4114 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
4115 return 0;
4116}
4117
Joerg Roedel5d450802008-12-03 14:52:32 +01004118static int intel_iommu_domain_init(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03004119{
Joerg Roedel5d450802008-12-03 14:52:32 +01004120 struct dmar_domain *dmar_domain;
Kay, Allen M38717942008-09-09 18:37:29 +03004121
Jiang Liu92d03cc2014-02-19 14:07:28 +08004122 dmar_domain = alloc_domain(true);
Joerg Roedel5d450802008-12-03 14:52:32 +01004123 if (!dmar_domain) {
Kay, Allen M38717942008-09-09 18:37:29 +03004124 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01004125 "intel_iommu_domain_init: dmar_domain == NULL\n");
4126 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03004127 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004128 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Kay, Allen M38717942008-09-09 18:37:29 +03004129 printk(KERN_ERR
Joerg Roedel5d450802008-12-03 14:52:32 +01004130 "intel_iommu_domain_init() failed\n");
Jiang Liu92d03cc2014-02-19 14:07:28 +08004131 domain_exit(dmar_domain);
Joerg Roedel5d450802008-12-03 14:52:32 +01004132 return -ENOMEM;
Kay, Allen M38717942008-09-09 18:37:29 +03004133 }
Allen Kay8140a952011-10-14 12:32:17 -07004134 domain_update_iommu_cap(dmar_domain);
Joerg Roedel5d450802008-12-03 14:52:32 +01004135 domain->priv = dmar_domain;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004136
Joerg Roedel8a0e7152012-01-26 19:40:54 +01004137 domain->geometry.aperture_start = 0;
4138 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
4139 domain->geometry.force_aperture = true;
4140
Joerg Roedel5d450802008-12-03 14:52:32 +01004141 return 0;
Kay, Allen M38717942008-09-09 18:37:29 +03004142}
Kay, Allen M38717942008-09-09 18:37:29 +03004143
Joerg Roedel5d450802008-12-03 14:52:32 +01004144static void intel_iommu_domain_destroy(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03004145{
Joerg Roedel5d450802008-12-03 14:52:32 +01004146 struct dmar_domain *dmar_domain = domain->priv;
4147
4148 domain->priv = NULL;
Jiang Liu92d03cc2014-02-19 14:07:28 +08004149 domain_exit(dmar_domain);
Kay, Allen M38717942008-09-09 18:37:29 +03004150}
Kay, Allen M38717942008-09-09 18:37:29 +03004151
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004152static int intel_iommu_attach_device(struct iommu_domain *domain,
4153 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004154{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004155 struct dmar_domain *dmar_domain = domain->priv;
4156 struct pci_dev *pdev = to_pci_dev(dev);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004157 struct intel_iommu *iommu;
4158 int addr_width;
David Woodhouse156baca2014-03-09 14:00:57 -07004159 u8 bus, devfn;
Kay, Allen M38717942008-09-09 18:37:29 +03004160
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004161 /* normally pdev is not mapped */
4162 if (unlikely(domain_context_mapped(pdev))) {
4163 struct dmar_domain *old_domain;
4164
David Woodhouse1525a292014-03-06 16:19:30 +00004165 old_domain = find_domain(dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004166 if (old_domain) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004167 if (dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE ||
4168 dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY)
4169 domain_remove_one_dev_info(old_domain, pdev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004170 else
4171 domain_remove_dev_info(old_domain);
4172 }
4173 }
4174
David Woodhouse156baca2014-03-09 14:00:57 -07004175 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004176 if (!iommu)
4177 return -ENODEV;
4178
4179 /* check if this iommu agaw is sufficient for max mapped address */
4180 addr_width = agaw_to_width(iommu->agaw);
Tom Lyona99c47a2010-05-17 08:20:45 +01004181 if (addr_width > cap_mgaw(iommu->cap))
4182 addr_width = cap_mgaw(iommu->cap);
4183
4184 if (dmar_domain->max_addr > (1LL << addr_width)) {
4185 printk(KERN_ERR "%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004186 "sufficient for the mapped address (%llx)\n",
Tom Lyona99c47a2010-05-17 08:20:45 +01004187 __func__, addr_width, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004188 return -EFAULT;
4189 }
Tom Lyona99c47a2010-05-17 08:20:45 +01004190 dmar_domain->gaw = addr_width;
4191
4192 /*
4193 * Knock out extra levels of page tables if necessary
4194 */
4195 while (iommu->agaw < dmar_domain->agaw) {
4196 struct dma_pte *pte;
4197
4198 pte = dmar_domain->pgd;
4199 if (dma_pte_present(pte)) {
Sheng Yang25cbff12010-06-12 19:21:42 +08004200 dmar_domain->pgd = (struct dma_pte *)
4201 phys_to_virt(dma_pte_addr(pte));
Jan Kiszka7a661012010-11-02 08:05:51 +01004202 free_pgtable_page(pte);
Tom Lyona99c47a2010-05-17 08:20:45 +01004203 }
4204 dmar_domain->agaw--;
4205 }
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004206
David Woodhouse5fe60f42009-08-09 10:53:41 +01004207 return domain_add_dev_info(dmar_domain, pdev, CONTEXT_TT_MULTI_LEVEL);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004208}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004209
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004210static void intel_iommu_detach_device(struct iommu_domain *domain,
4211 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03004212{
Joerg Roedel4c5478c2008-12-03 14:58:24 +01004213 struct dmar_domain *dmar_domain = domain->priv;
4214 struct pci_dev *pdev = to_pci_dev(dev);
4215
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07004216 domain_remove_one_dev_info(dmar_domain, pdev);
Kay, Allen M38717942008-09-09 18:37:29 +03004217}
Kay, Allen M38717942008-09-09 18:37:29 +03004218
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004219static int intel_iommu_map(struct iommu_domain *domain,
4220 unsigned long iova, phys_addr_t hpa,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004221 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03004222{
Joerg Roedeldde57a22008-12-03 15:04:09 +01004223 struct dmar_domain *dmar_domain = domain->priv;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004224 u64 max_addr;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004225 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004226 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004227
Joerg Roedeldde57a22008-12-03 15:04:09 +01004228 if (iommu_prot & IOMMU_READ)
4229 prot |= DMA_PTE_READ;
4230 if (iommu_prot & IOMMU_WRITE)
4231 prot |= DMA_PTE_WRITE;
Sheng Yang9cf066972009-03-18 15:33:07 +08004232 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
4233 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004234
David Woodhouse163cc522009-06-28 00:51:17 +01004235 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01004236 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004237 u64 end;
4238
4239 /* check if minimum agaw is sufficient for mapped address */
Tom Lyon8954da12010-05-17 08:19:52 +01004240 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004241 if (end < max_addr) {
Tom Lyon8954da12010-05-17 08:19:52 +01004242 printk(KERN_ERR "%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004243 "sufficient for the mapped address (%llx)\n",
Tom Lyon8954da12010-05-17 08:19:52 +01004244 __func__, dmar_domain->gaw, max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004245 return -EFAULT;
4246 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01004247 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004248 }
David Woodhousead051222009-06-28 14:22:28 +01004249 /* Round up size to next multiple of PAGE_SIZE, if it and
4250 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01004251 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01004252 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
4253 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004254 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03004255}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004256
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02004257static size_t intel_iommu_unmap(struct iommu_domain *domain,
David Woodhouseea8ea462014-03-05 17:09:32 +00004258 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004259{
Joerg Roedeldde57a22008-12-03 15:04:09 +01004260 struct dmar_domain *dmar_domain = domain->priv;
David Woodhouseea8ea462014-03-05 17:09:32 +00004261 struct page *freelist = NULL;
4262 struct intel_iommu *iommu;
4263 unsigned long start_pfn, last_pfn;
4264 unsigned int npages;
4265 int iommu_id, num, ndomains, level = 0;
Sheng Yang4b99d352009-07-08 11:52:52 +01004266
David Woodhouse5cf0a762014-03-19 16:07:49 +00004267 /* Cope with horrid API which requires us to unmap more than the
4268 size argument if it happens to be a large-page mapping. */
4269 if (!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level))
4270 BUG();
4271
4272 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
4273 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
4274
David Woodhouseea8ea462014-03-05 17:09:32 +00004275 start_pfn = iova >> VTD_PAGE_SHIFT;
4276 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
4277
4278 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
4279
4280 npages = last_pfn - start_pfn + 1;
4281
4282 for_each_set_bit(iommu_id, dmar_domain->iommu_bmp, g_num_of_iommus) {
4283 iommu = g_iommus[iommu_id];
4284
4285 /*
4286 * find bit position of dmar_domain
4287 */
4288 ndomains = cap_ndoms(iommu->cap);
4289 for_each_set_bit(num, iommu->domain_ids, ndomains) {
4290 if (iommu->domains[num] == dmar_domain)
4291 iommu_flush_iotlb_psi(iommu, num, start_pfn,
4292 npages, !freelist, 0);
4293 }
4294
4295 }
4296
4297 dma_free_pagelist(freelist);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08004298
David Woodhouse163cc522009-06-28 00:51:17 +01004299 if (dmar_domain->max_addr == iova + size)
4300 dmar_domain->max_addr = iova;
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004301
David Woodhouse5cf0a762014-03-19 16:07:49 +00004302 return size;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004303}
Kay, Allen M38717942008-09-09 18:37:29 +03004304
Joerg Roedeld14d6572008-12-03 15:06:57 +01004305static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547ac2013-03-29 01:23:58 +05304306 dma_addr_t iova)
Kay, Allen M38717942008-09-09 18:37:29 +03004307{
Joerg Roedeld14d6572008-12-03 15:06:57 +01004308 struct dmar_domain *dmar_domain = domain->priv;
Kay, Allen M38717942008-09-09 18:37:29 +03004309 struct dma_pte *pte;
David Woodhouse5cf0a762014-03-19 16:07:49 +00004310 int level = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004311 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03004312
David Woodhouse5cf0a762014-03-19 16:07:49 +00004313 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
Kay, Allen M38717942008-09-09 18:37:29 +03004314 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004315 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03004316
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08004317 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03004318}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004319
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004320static int intel_iommu_domain_has_cap(struct iommu_domain *domain,
4321 unsigned long cap)
4322{
4323 struct dmar_domain *dmar_domain = domain->priv;
4324
4325 if (cap == IOMMU_CAP_CACHE_COHERENCY)
4326 return dmar_domain->iommu_snooping;
Tom Lyon323f99c2010-07-02 16:56:14 -04004327 if (cap == IOMMU_CAP_INTR_REMAP)
Suresh Siddha95a02e92012-03-30 11:47:07 -07004328 return irq_remapping_enabled;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004329
4330 return 0;
4331}
4332
Alex Williamson783f1572012-05-30 14:19:43 -06004333#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
4334
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004335static int intel_iommu_add_device(struct device *dev)
Alex Williamson70ae6f02011-10-21 15:56:11 -04004336{
4337 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson3da4af0a2012-11-13 10:22:03 -07004338 struct pci_dev *bridge, *dma_pdev = NULL;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004339 struct iommu_group *group;
4340 int ret;
David Woodhouse156baca2014-03-09 14:00:57 -07004341 u8 bus, devfn;
Alex Williamson70ae6f02011-10-21 15:56:11 -04004342
David Woodhouse156baca2014-03-09 14:00:57 -07004343 if (!device_to_iommu(dev, &bus, &devfn))
Alex Williamson70ae6f02011-10-21 15:56:11 -04004344 return -ENODEV;
4345
4346 bridge = pci_find_upstream_pcie_bridge(pdev);
4347 if (bridge) {
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004348 if (pci_is_pcie(bridge))
4349 dma_pdev = pci_get_domain_bus_and_slot(
4350 pci_domain_nr(pdev->bus),
4351 bridge->subordinate->number, 0);
Alex Williamson3da4af0a2012-11-13 10:22:03 -07004352 if (!dma_pdev)
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004353 dma_pdev = pci_dev_get(bridge);
4354 } else
4355 dma_pdev = pci_dev_get(pdev);
4356
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004357 /* Account for quirked devices */
Alex Williamson783f1572012-05-30 14:19:43 -06004358 swap_pci_ref(&dma_pdev, pci_get_dma_source(dma_pdev));
4359
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004360 /*
4361 * If it's a multifunction device that does not support our
Alex Williamsonc14d2692013-05-30 12:39:18 -06004362 * required ACS flags, add to the same group as lowest numbered
4363 * function that also does not suport the required ACS flags.
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004364 */
Alex Williamson783f1572012-05-30 14:19:43 -06004365 if (dma_pdev->multifunction &&
Alex Williamsonc14d2692013-05-30 12:39:18 -06004366 !pci_acs_enabled(dma_pdev, REQ_ACS_FLAGS)) {
4367 u8 i, slot = PCI_SLOT(dma_pdev->devfn);
4368
4369 for (i = 0; i < 8; i++) {
4370 struct pci_dev *tmp;
4371
4372 tmp = pci_get_slot(dma_pdev->bus, PCI_DEVFN(slot, i));
4373 if (!tmp)
4374 continue;
4375
4376 if (!pci_acs_enabled(tmp, REQ_ACS_FLAGS)) {
4377 swap_pci_ref(&dma_pdev, tmp);
4378 break;
4379 }
4380 pci_dev_put(tmp);
4381 }
4382 }
Alex Williamson783f1572012-05-30 14:19:43 -06004383
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004384 /*
4385 * Devices on the root bus go through the iommu. If that's not us,
4386 * find the next upstream device and test ACS up to the root bus.
4387 * Finding the next device may require skipping virtual buses.
4388 */
Alex Williamson783f1572012-05-30 14:19:43 -06004389 while (!pci_is_root_bus(dma_pdev->bus)) {
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004390 struct pci_bus *bus = dma_pdev->bus;
4391
4392 while (!bus->self) {
4393 if (!pci_is_root_bus(bus))
4394 bus = bus->parent;
4395 else
4396 goto root_bus;
4397 }
4398
4399 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
Alex Williamson783f1572012-05-30 14:19:43 -06004400 break;
4401
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004402 swap_pci_ref(&dma_pdev, pci_dev_get(bus->self));
Alex Williamson70ae6f02011-10-21 15:56:11 -04004403 }
4404
Alex Williamsona4ff1fc2012-08-04 12:08:55 -06004405root_bus:
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004406 group = iommu_group_get(&dma_pdev->dev);
4407 pci_dev_put(dma_pdev);
4408 if (!group) {
4409 group = iommu_group_alloc();
4410 if (IS_ERR(group))
4411 return PTR_ERR(group);
4412 }
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04004413
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004414 ret = iommu_group_add_device(group, dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004415
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004416 iommu_group_put(group);
4417 return ret;
4418}
4419
4420static void intel_iommu_remove_device(struct device *dev)
4421{
4422 iommu_group_remove_device(dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04004423}
4424
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004425static struct iommu_ops intel_iommu_ops = {
4426 .domain_init = intel_iommu_domain_init,
4427 .domain_destroy = intel_iommu_domain_destroy,
4428 .attach_dev = intel_iommu_attach_device,
4429 .detach_dev = intel_iommu_detach_device,
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01004430 .map = intel_iommu_map,
4431 .unmap = intel_iommu_unmap,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004432 .iova_to_phys = intel_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08004433 .domain_has_cap = intel_iommu_domain_has_cap,
Alex Williamsonabdfdde2012-05-30 14:19:19 -06004434 .add_device = intel_iommu_add_device,
4435 .remove_device = intel_iommu_remove_device,
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +02004436 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004437};
David Woodhouse9af88142009-02-13 23:18:03 +00004438
Daniel Vetter94526182013-01-20 23:50:13 +01004439static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
4440{
4441 /* G4x/GM45 integrated gfx dmar support is totally busted. */
4442 printk(KERN_INFO "DMAR: Disabling IOMMU for graphics on this chipset\n");
4443 dmar_map_gfx = 0;
4444}
4445
4446DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
4447DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
4448DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
4449DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
4450DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
4451DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
4452DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
4453
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004454static void quirk_iommu_rwbf(struct pci_dev *dev)
David Woodhouse9af88142009-02-13 23:18:03 +00004455{
4456 /*
4457 * Mobile 4 Series Chipset neglects to set RWBF capability,
Daniel Vetter210561f2013-01-21 19:48:59 +01004458 * but needs it. Same seems to hold for the desktop versions.
David Woodhouse9af88142009-02-13 23:18:03 +00004459 */
4460 printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n");
4461 rwbf_quirk = 1;
4462}
4463
4464DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
Daniel Vetter210561f2013-01-21 19:48:59 +01004465DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
4466DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
4467DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
4468DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
4469DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
4470DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
David Woodhousee0fc7e02009-09-30 09:12:17 -07004471
Adam Jacksoneecfd572010-08-25 21:17:34 +01004472#define GGC 0x52
4473#define GGC_MEMORY_SIZE_MASK (0xf << 8)
4474#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
4475#define GGC_MEMORY_SIZE_1M (0x1 << 8)
4476#define GGC_MEMORY_SIZE_2M (0x3 << 8)
4477#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
4478#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
4479#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
4480#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
4481
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08004482static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
David Woodhouse9eecabc2010-09-21 22:28:23 +01004483{
4484 unsigned short ggc;
4485
Adam Jacksoneecfd572010-08-25 21:17:34 +01004486 if (pci_read_config_word(dev, GGC, &ggc))
David Woodhouse9eecabc2010-09-21 22:28:23 +01004487 return;
4488
Adam Jacksoneecfd572010-08-25 21:17:34 +01004489 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
David Woodhouse9eecabc2010-09-21 22:28:23 +01004490 printk(KERN_INFO "DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
4491 dmar_map_gfx = 0;
David Woodhouse6fbcfb32011-09-25 19:11:14 -07004492 } else if (dmar_map_gfx) {
4493 /* we have to ensure the gfx device is idle before we flush */
4494 printk(KERN_INFO "DMAR: Disabling batched IOTLB flush on Ironlake\n");
4495 intel_iommu_strict = 1;
4496 }
David Woodhouse9eecabc2010-09-21 22:28:23 +01004497}
4498DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
4499DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
4500DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
4501DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
4502
David Woodhousee0fc7e02009-09-30 09:12:17 -07004503/* On Tylersburg chipsets, some BIOSes have been known to enable the
4504 ISOCH DMAR unit for the Azalia sound device, but not give it any
4505 TLB entries, which causes it to deadlock. Check for that. We do
4506 this in a function called from init_dmars(), instead of in a PCI
4507 quirk, because we don't want to print the obnoxious "BIOS broken"
4508 message if VT-d is actually disabled.
4509*/
4510static void __init check_tylersburg_isoch(void)
4511{
4512 struct pci_dev *pdev;
4513 uint32_t vtisochctrl;
4514
4515 /* If there's no Azalia in the system anyway, forget it. */
4516 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
4517 if (!pdev)
4518 return;
4519 pci_dev_put(pdev);
4520
4521 /* System Management Registers. Might be hidden, in which case
4522 we can't do the sanity check. But that's OK, because the
4523 known-broken BIOSes _don't_ actually hide it, so far. */
4524 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
4525 if (!pdev)
4526 return;
4527
4528 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
4529 pci_dev_put(pdev);
4530 return;
4531 }
4532
4533 pci_dev_put(pdev);
4534
4535 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
4536 if (vtisochctrl & 1)
4537 return;
4538
4539 /* Drop all bits other than the number of TLB entries */
4540 vtisochctrl &= 0x1c;
4541
4542 /* If we have the recommended number of TLB entries (16), fine. */
4543 if (vtisochctrl == 0x10)
4544 return;
4545
4546 /* Zero TLB entries? You get to ride the short bus to school. */
4547 if (!vtisochctrl) {
4548 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
4549 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
4550 dmi_get_system_info(DMI_BIOS_VENDOR),
4551 dmi_get_system_info(DMI_BIOS_VERSION),
4552 dmi_get_system_info(DMI_PRODUCT_VERSION));
4553 iommu_identity_mapping |= IDENTMAP_AZALIA;
4554 return;
4555 }
4556
4557 printk(KERN_WARNING "DMAR: Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
4558 vtisochctrl);
4559}