blob: 64ce780336a895aec9c222501ebc8965af708f2d [file] [log] [blame]
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001/*
David Woodhouseea8ea462014-03-05 17:09:32 +00002 * Copyright © 2006-2014 Intel Corporation.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
David Woodhouseea8ea462014-03-05 17:09:32 +000013 * Authors: David Woodhouse <dwmw2@infradead.org>,
14 * Ashok Raj <ashok.raj@intel.com>,
15 * Shaohua Li <shaohua.li@intel.com>,
16 * Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>,
17 * Fenghua Yu <fenghua.yu@intel.com>
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020018 * Joerg Roedel <jroedel@suse.de>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070019 */
20
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020021#define pr_fmt(fmt) "DMAR: " fmt
Bjorn Helgaas932a6522019-02-08 16:06:00 -060022#define dev_fmt(fmt) pr_fmt(fmt)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020023
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070024#include <linux/init.h>
25#include <linux/bitmap.h>
mark gross5e0d2a62008-03-04 15:22:08 -080026#include <linux/debugfs.h>
Paul Gortmaker54485c32011-10-29 10:26:25 -040027#include <linux/export.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070028#include <linux/slab.h>
29#include <linux/irq.h>
30#include <linux/interrupt.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070031#include <linux/spinlock.h>
32#include <linux/pci.h>
33#include <linux/dmar.h>
34#include <linux/dma-mapping.h>
35#include <linux/mempool.h>
Jiang Liu75f05562014-02-19 14:07:37 +080036#include <linux/memory.h>
Omer Pelegaa473242016-04-20 11:33:02 +030037#include <linux/cpu.h>
mark gross5e0d2a62008-03-04 15:22:08 -080038#include <linux/timer.h>
Dan Williamsdfddb962015-10-09 18:16:46 -040039#include <linux/io.h>
Kay, Allen M38717942008-09-09 18:37:29 +030040#include <linux/iova.h>
Joerg Roedel5d450802008-12-03 14:52:32 +010041#include <linux/iommu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030042#include <linux/intel-iommu.h>
Rafael J. Wysocki134fac32011-03-23 22:16:14 +010043#include <linux/syscore_ops.h>
Shane Wang69575d32009-09-01 18:25:07 -070044#include <linux/tboot.h>
Stephen Rothwelladb2fe02009-08-31 15:24:23 +100045#include <linux/dmi.h>
Joerg Roedel5cdede22011-04-04 15:55:18 +020046#include <linux/pci-ats.h>
Tejun Heo0ee332c2011-12-08 10:22:09 -080047#include <linux/memblock.h>
Akinobu Mita36746432014-06-04 16:06:51 -070048#include <linux/dma-contiguous.h>
Christoph Hellwigfec777c2018-03-19 11:38:15 +010049#include <linux/dma-direct.h>
Joerg Roedel091d42e2015-06-12 11:56:10 +020050#include <linux/crash_dump.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070051#include <asm/irq_remapping.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070052#include <asm/cacheflush.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090053#include <asm/iommu.h>
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070054
Joerg Roedel078e1ee2012-09-26 12:44:43 +020055#include "irq_remapping.h"
Lu Baolu56283172018-07-14 15:46:54 +080056#include "intel-pasid.h"
Joerg Roedel078e1ee2012-09-26 12:44:43 +020057
Fenghua Yu5b6985c2008-10-16 18:02:32 -070058#define ROOT_SIZE VTD_PAGE_SIZE
59#define CONTEXT_SIZE VTD_PAGE_SIZE
60
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070061#define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
David Woodhouse18436af2015-03-25 15:05:47 +000062#define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070063#define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
David Woodhousee0fc7e02009-09-30 09:12:17 -070064#define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070065
66#define IOAPIC_RANGE_START (0xfee00000)
67#define IOAPIC_RANGE_END (0xfeefffff)
68#define IOVA_START_ADDR (0x1000)
69
Sohil Mehta5e3b4a12017-12-20 11:59:24 -080070#define DEFAULT_DOMAIN_ADDRESS_WIDTH 57
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070071
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070072#define MAX_AGAW_WIDTH 64
Jiang Liu5c645b32014-01-06 14:18:12 +080073#define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT)
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070074
David Woodhouse2ebe3152009-09-19 07:34:04 -070075#define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1)
76#define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1)
77
78/* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR
79 to match. That way, we can use 'unsigned long' for PFNs with impunity. */
80#define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \
81 __DOMAIN_MAX_PFN(gaw), (unsigned long)-1))
82#define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -070083
Robin Murphy1b722502015-01-12 17:51:15 +000084/* IO virtual address start page frame number */
85#define IOVA_START_PFN (1)
86
Mark McLoughlinf27be032008-11-20 15:49:43 +000087#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
mark gross5e0d2a62008-03-04 15:22:08 -080088
Andrew Mortondf08cdc2010-09-22 13:05:11 -070089/* page table handling */
90#define LEVEL_STRIDE (9)
91#define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1)
92
Ohad Ben-Cohen6d1c56a2011-11-10 11:32:30 +020093/*
94 * This bitmap is used to advertise the page sizes our hardware support
95 * to the IOMMU core, which will then use this information to split
96 * physically contiguous memory regions it is mapping into page sizes
97 * that we support.
98 *
99 * Traditionally the IOMMU core just handed us the mappings directly,
100 * after making sure the size is an order of a 4KiB page and that the
101 * mapping has natural alignment.
102 *
103 * To retain this behavior, we currently advertise that we support
104 * all page sizes that are an order of 4KiB.
105 *
106 * If at some point we'd like to utilize the IOMMU core's new behavior,
107 * we could change this to advertise the real page sizes we support.
108 */
109#define INTEL_IOMMU_PGSIZES (~0xFFFUL)
110
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700111static inline int agaw_to_level(int agaw)
112{
113 return agaw + 2;
114}
115
116static inline int agaw_to_width(int agaw)
117{
Jiang Liu5c645b32014-01-06 14:18:12 +0800118 return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700119}
120
121static inline int width_to_agaw(int width)
122{
Jiang Liu5c645b32014-01-06 14:18:12 +0800123 return DIV_ROUND_UP(width - 30, LEVEL_STRIDE);
Andrew Mortondf08cdc2010-09-22 13:05:11 -0700124}
125
126static inline unsigned int level_to_offset_bits(int level)
127{
128 return (level - 1) * LEVEL_STRIDE;
129}
130
131static inline int pfn_level_offset(unsigned long pfn, int level)
132{
133 return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK;
134}
135
136static inline unsigned long level_mask(int level)
137{
138 return -1UL << level_to_offset_bits(level);
139}
140
141static inline unsigned long level_size(int level)
142{
143 return 1UL << level_to_offset_bits(level);
144}
145
146static inline unsigned long align_to_level(unsigned long pfn, int level)
147{
148 return (pfn + level_size(level) - 1) & level_mask(level);
149}
David Woodhousefd18de52009-05-10 23:57:41 +0100150
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100151static inline unsigned long lvl_to_nr_pages(unsigned int lvl)
152{
Jiang Liu5c645b32014-01-06 14:18:12 +0800153 return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100154}
155
David Woodhousedd4e8312009-06-27 16:21:20 +0100156/* VT-d pages must always be _smaller_ than MM pages. Otherwise things
157 are never going to work. */
158static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn)
159{
160 return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT);
161}
162
163static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn)
164{
165 return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT);
166}
167static inline unsigned long page_to_dma_pfn(struct page *pg)
168{
169 return mm_to_dma_pfn(page_to_pfn(pg));
170}
171static inline unsigned long virt_to_dma_pfn(void *p)
172{
173 return page_to_dma_pfn(virt_to_page(p));
174}
175
Weidong Hand9630fe2008-12-08 11:06:32 +0800176/* global iommu list, set NULL for ignored DMAR units */
177static struct intel_iommu **g_iommus;
178
David Woodhousee0fc7e02009-09-30 09:12:17 -0700179static void __init check_tylersburg_isoch(void);
David Woodhouse9af88142009-02-13 23:18:03 +0000180static int rwbf_quirk;
181
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000182/*
Joseph Cihulab7792602011-05-03 00:08:37 -0700183 * set to 1 to panic kernel if can't successfully enable VT-d
184 * (used when kernel is launched w/ TXT)
185 */
186static int force_on = 0;
Shaohua Libfd20f12017-04-26 09:18:35 -0700187int intel_iommu_tboot_noforce;
Lu Baolu89a60792018-10-23 15:45:01 +0800188static int no_platform_optin;
Joseph Cihulab7792602011-05-03 00:08:37 -0700189
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000190#define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry))
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000191
Joerg Roedel091d42e2015-06-12 11:56:10 +0200192/*
193 * Take a root_entry and return the Lower Context Table Pointer (LCTP)
194 * if marked present.
195 */
196static phys_addr_t root_entry_lctp(struct root_entry *re)
197{
198 if (!(re->lo & 1))
199 return 0;
Mark McLoughlin46b08e12008-11-20 15:49:44 +0000200
Joerg Roedel091d42e2015-06-12 11:56:10 +0200201 return re->lo & VTD_PAGE_MASK;
202}
203
204/*
205 * Take a root_entry and return the Upper Context Table Pointer (UCTP)
206 * if marked present.
207 */
208static phys_addr_t root_entry_uctp(struct root_entry *re)
209{
210 if (!(re->hi & 1))
211 return 0;
212
213 return re->hi & VTD_PAGE_MASK;
214}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000215
Joerg Roedelcf484d02015-06-12 12:21:46 +0200216static inline void context_clear_pasid_enable(struct context_entry *context)
217{
218 context->lo &= ~(1ULL << 11);
219}
220
221static inline bool context_pasid_enabled(struct context_entry *context)
222{
223 return !!(context->lo & (1ULL << 11));
224}
225
226static inline void context_set_copied(struct context_entry *context)
227{
228 context->hi |= (1ull << 3);
229}
230
231static inline bool context_copied(struct context_entry *context)
232{
233 return !!(context->hi & (1ULL << 3));
234}
235
236static inline bool __context_present(struct context_entry *context)
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000237{
238 return (context->lo & 1);
239}
Joerg Roedelcf484d02015-06-12 12:21:46 +0200240
Sohil Mehta26b86092018-09-11 17:11:36 -0700241bool context_present(struct context_entry *context)
Joerg Roedelcf484d02015-06-12 12:21:46 +0200242{
243 return context_pasid_enabled(context) ?
244 __context_present(context) :
245 __context_present(context) && !context_copied(context);
246}
247
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000248static inline void context_set_present(struct context_entry *context)
249{
250 context->lo |= 1;
251}
252
253static inline void context_set_fault_enable(struct context_entry *context)
254{
255 context->lo &= (((u64)-1) << 2) | 1;
256}
257
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000258static inline void context_set_translation_type(struct context_entry *context,
259 unsigned long value)
260{
261 context->lo &= (((u64)-1) << 4) | 3;
262 context->lo |= (value & 3) << 2;
263}
264
265static inline void context_set_address_root(struct context_entry *context,
266 unsigned long value)
267{
Li, Zhen-Hua1a2262f2014-11-05 15:30:19 +0800268 context->lo &= ~VTD_PAGE_MASK;
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000269 context->lo |= value & VTD_PAGE_MASK;
270}
271
272static inline void context_set_address_width(struct context_entry *context,
273 unsigned long value)
274{
275 context->hi |= value & 7;
276}
277
278static inline void context_set_domain_id(struct context_entry *context,
279 unsigned long value)
280{
281 context->hi |= (value & ((1 << 16) - 1)) << 8;
282}
283
Joerg Roedeldbcd8612015-06-12 12:02:09 +0200284static inline int context_domain_id(struct context_entry *c)
285{
286 return((c->hi >> 8) & 0xffff);
287}
288
Mark McLoughlinc07e7d22008-11-21 16:54:46 +0000289static inline void context_clear_entry(struct context_entry *context)
290{
291 context->lo = 0;
292 context->hi = 0;
293}
Mark McLoughlin7a8fc252008-11-20 15:49:45 +0000294
Mark McLoughlin622ba122008-11-20 15:49:46 +0000295/*
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700296 * This domain is a statically identity mapping domain.
297 * 1. This domain creats a static 1:1 mapping to all usable memory.
298 * 2. It maps to each iommu if successful.
299 * 3. Each iommu mapps to this domain if successful.
300 */
David Woodhouse19943b02009-08-04 16:19:20 +0100301static struct dmar_domain *si_domain;
302static int hw_pass_through = 1;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700303
Joerg Roedel28ccce02015-07-21 14:45:31 +0200304/*
305 * Domain represents a virtual machine, more than one devices
Weidong Han1ce28fe2008-12-08 16:35:39 +0800306 * across iommus may be owned in one domain, e.g. kvm guest.
307 */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800308#define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 0)
Weidong Han1ce28fe2008-12-08 16:35:39 +0800309
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700310/* si_domain contains mulitple devices */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800311#define DOMAIN_FLAG_STATIC_IDENTITY (1 << 1)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700312
Joerg Roedel29a27712015-07-21 17:17:12 +0200313#define for_each_domain_iommu(idx, domain) \
314 for (idx = 0; idx < g_num_of_iommus; idx++) \
315 if (domain->iommu_refcnt[idx])
316
Jiang Liub94e4112014-02-19 14:07:25 +0800317struct dmar_rmrr_unit {
318 struct list_head list; /* list of rmrr units */
319 struct acpi_dmar_header *hdr; /* ACPI header */
320 u64 base_address; /* reserved base address*/
321 u64 end_address; /* reserved end address */
David Woodhouse832bd852014-03-07 15:08:36 +0000322 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800323 int devices_cnt; /* target device count */
Eric Auger0659b8d2017-01-19 20:57:53 +0000324 struct iommu_resv_region *resv; /* reserved region handle */
Jiang Liub94e4112014-02-19 14:07:25 +0800325};
326
327struct dmar_atsr_unit {
328 struct list_head list; /* list of ATSR units */
329 struct acpi_dmar_header *hdr; /* ACPI header */
David Woodhouse832bd852014-03-07 15:08:36 +0000330 struct dmar_dev_scope *devices; /* target devices */
Jiang Liub94e4112014-02-19 14:07:25 +0800331 int devices_cnt; /* target device count */
332 u8 include_all:1; /* include all ports */
333};
334
335static LIST_HEAD(dmar_atsr_units);
336static LIST_HEAD(dmar_rmrr_units);
337
338#define for_each_rmrr_units(rmrr) \
339 list_for_each_entry(rmrr, &dmar_rmrr_units, list)
340
mark gross5e0d2a62008-03-04 15:22:08 -0800341/* bitmap for indexing intel_iommus */
mark gross5e0d2a62008-03-04 15:22:08 -0800342static int g_num_of_iommus;
343
Jiang Liu92d03cc2014-02-19 14:07:28 +0800344static void domain_exit(struct dmar_domain *domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700345static void domain_remove_dev_info(struct dmar_domain *domain);
Bjorn Helgaas71753232019-02-08 16:06:15 -0600346static void dmar_remove_one_dev_info(struct device *dev);
Joerg Roedel127c7612015-07-23 17:44:46 +0200347static void __dmar_remove_one_dev_info(struct device_domain_info *info);
Joerg Roedel2452d9d2015-07-23 16:20:14 +0200348static void domain_context_clear(struct intel_iommu *iommu,
349 struct device *dev);
Jiang Liu2a46ddf2014-07-11 14:19:30 +0800350static int domain_detach_iommu(struct dmar_domain *domain,
351 struct intel_iommu *iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700352
Suresh Siddhad3f13812011-08-23 17:05:25 -0700353#ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800354int dmar_disabled = 0;
355#else
356int dmar_disabled = 1;
Suresh Siddhad3f13812011-08-23 17:05:25 -0700357#endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800358
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -0200359int intel_iommu_enabled = 0;
360EXPORT_SYMBOL_GPL(intel_iommu_enabled);
361
David Woodhouse2d9e6672010-06-15 10:57:57 +0100362static int dmar_map_gfx = 1;
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700363static int dmar_forcedac;
mark gross5e0d2a62008-03-04 15:22:08 -0800364static int intel_iommu_strict;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100365static int intel_iommu_superpage = 1;
Lu Baolu765b6a92018-12-10 09:58:55 +0800366static int intel_iommu_sm = 1;
David Woodhouseae853dd2015-09-09 11:58:59 +0100367static int iommu_identity_mapping;
David Woodhousec83b2f22015-06-12 10:15:49 +0100368
David Woodhouseae853dd2015-09-09 11:58:59 +0100369#define IDENTMAP_ALL 1
370#define IDENTMAP_GFX 2
371#define IDENTMAP_AZALIA 4
David Woodhousec83b2f22015-06-12 10:15:49 +0100372
Lu Baolu765b6a92018-12-10 09:58:55 +0800373#define sm_supported(iommu) (intel_iommu_sm && ecap_smts((iommu)->ecap))
374#define pasid_supported(iommu) (sm_supported(iommu) && \
375 ecap_pasid((iommu)->ecap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700376
David Woodhousec0771df2011-10-14 20:59:46 +0100377int intel_iommu_gfx_mapped;
378EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped);
379
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700380#define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1))
381static DEFINE_SPINLOCK(device_domain_lock);
382static LIST_HEAD(device_domain_list);
383
Lu Baolu85319dc2018-07-14 15:46:58 +0800384/*
385 * Iterate over elements in device_domain_list and call the specified
Lu Baolu0bbeb012018-12-10 09:58:56 +0800386 * callback @fn against each element.
Lu Baolu85319dc2018-07-14 15:46:58 +0800387 */
388int for_each_device_domain(int (*fn)(struct device_domain_info *info,
389 void *data), void *data)
390{
391 int ret = 0;
Lu Baolu0bbeb012018-12-10 09:58:56 +0800392 unsigned long flags;
Lu Baolu85319dc2018-07-14 15:46:58 +0800393 struct device_domain_info *info;
394
Lu Baolu0bbeb012018-12-10 09:58:56 +0800395 spin_lock_irqsave(&device_domain_lock, flags);
Lu Baolu85319dc2018-07-14 15:46:58 +0800396 list_for_each_entry(info, &device_domain_list, global) {
397 ret = fn(info, data);
Lu Baolu0bbeb012018-12-10 09:58:56 +0800398 if (ret) {
399 spin_unlock_irqrestore(&device_domain_lock, flags);
Lu Baolu85319dc2018-07-14 15:46:58 +0800400 return ret;
Lu Baolu0bbeb012018-12-10 09:58:56 +0800401 }
Lu Baolu85319dc2018-07-14 15:46:58 +0800402 }
Lu Baolu0bbeb012018-12-10 09:58:56 +0800403 spin_unlock_irqrestore(&device_domain_lock, flags);
Lu Baolu85319dc2018-07-14 15:46:58 +0800404
405 return 0;
406}
407
Joerg Roedelb0119e82017-02-01 13:23:08 +0100408const struct iommu_ops intel_iommu_ops;
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +0100409
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200410static bool translation_pre_enabled(struct intel_iommu *iommu)
411{
412 return (iommu->flags & VTD_FLAG_TRANS_PRE_ENABLED);
413}
414
Joerg Roedel091d42e2015-06-12 11:56:10 +0200415static void clear_translation_pre_enabled(struct intel_iommu *iommu)
416{
417 iommu->flags &= ~VTD_FLAG_TRANS_PRE_ENABLED;
418}
419
Joerg Roedel4158c2e2015-06-12 10:14:02 +0200420static void init_translation_status(struct intel_iommu *iommu)
421{
422 u32 gsts;
423
424 gsts = readl(iommu->reg + DMAR_GSTS_REG);
425 if (gsts & DMA_GSTS_TES)
426 iommu->flags |= VTD_FLAG_TRANS_PRE_ENABLED;
427}
428
Joerg Roedel00a77de2015-03-26 13:43:08 +0100429/* Convert generic 'struct iommu_domain to private struct dmar_domain */
430static struct dmar_domain *to_dmar_domain(struct iommu_domain *dom)
431{
432 return container_of(dom, struct dmar_domain, domain);
433}
434
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700435static int __init intel_iommu_setup(char *str)
436{
437 if (!str)
438 return -EINVAL;
439 while (*str) {
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800440 if (!strncmp(str, "on", 2)) {
441 dmar_disabled = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200442 pr_info("IOMMU enabled\n");
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -0800443 } else if (!strncmp(str, "off", 3)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700444 dmar_disabled = 1;
Lu Baolu89a60792018-10-23 15:45:01 +0800445 no_platform_optin = 1;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200446 pr_info("IOMMU disabled\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700447 } else if (!strncmp(str, "igfx_off", 8)) {
448 dmar_map_gfx = 0;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200449 pr_info("Disable GFX device mapping\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700450 } else if (!strncmp(str, "forcedac", 8)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200451 pr_info("Forcing DAC for PCI devices\n");
Keshavamurthy, Anil S7d3b03c2007-10-21 16:41:53 -0700452 dmar_forcedac = 1;
mark gross5e0d2a62008-03-04 15:22:08 -0800453 } else if (!strncmp(str, "strict", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200454 pr_info("Disable batched IOTLB flush\n");
mark gross5e0d2a62008-03-04 15:22:08 -0800455 intel_iommu_strict = 1;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100456 } else if (!strncmp(str, "sp_off", 6)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200457 pr_info("Disable supported super page\n");
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100458 intel_iommu_superpage = 0;
Lu Baolu765b6a92018-12-10 09:58:55 +0800459 } else if (!strncmp(str, "sm_off", 6)) {
460 pr_info("Intel-IOMMU: disable scalable mode support\n");
461 intel_iommu_sm = 0;
Shaohua Libfd20f12017-04-26 09:18:35 -0700462 } else if (!strncmp(str, "tboot_noforce", 13)) {
463 printk(KERN_INFO
464 "Intel-IOMMU: not forcing on after tboot. This could expose security risk for tboot\n");
465 intel_iommu_tboot_noforce = 1;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700466 }
467
468 str += strcspn(str, ",");
469 while (*str == ',')
470 str++;
471 }
472 return 0;
473}
474__setup("intel_iommu=", intel_iommu_setup);
475
476static struct kmem_cache *iommu_domain_cache;
477static struct kmem_cache *iommu_devinfo_cache;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700478
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200479static struct dmar_domain* get_iommu_domain(struct intel_iommu *iommu, u16 did)
480{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200481 struct dmar_domain **domains;
482 int idx = did >> 8;
483
484 domains = iommu->domains[idx];
485 if (!domains)
486 return NULL;
487
488 return domains[did & 0xff];
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200489}
490
491static void set_iommu_domain(struct intel_iommu *iommu, u16 did,
492 struct dmar_domain *domain)
493{
Joerg Roedel8bf47812015-07-21 10:41:21 +0200494 struct dmar_domain **domains;
495 int idx = did >> 8;
496
497 if (!iommu->domains[idx]) {
498 size_t size = 256 * sizeof(struct dmar_domain *);
499 iommu->domains[idx] = kzalloc(size, GFP_ATOMIC);
500 }
501
502 domains = iommu->domains[idx];
503 if (WARN_ON(!domains))
504 return;
505 else
506 domains[did & 0xff] = domain;
Joerg Roedel9452d5b2015-07-21 10:00:56 +0200507}
508
Lu Baolu9ddbfb42018-07-14 15:46:57 +0800509void *alloc_pgtable_page(int node)
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700510{
Suresh Siddha4c923d42009-10-02 11:01:24 -0700511 struct page *page;
512 void *vaddr = NULL;
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700513
Suresh Siddha4c923d42009-10-02 11:01:24 -0700514 page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0);
515 if (page)
516 vaddr = page_address(page);
Keshavamurthy, Anil Seb3fa7c2007-10-21 16:41:52 -0700517 return vaddr;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700518}
519
Lu Baolu9ddbfb42018-07-14 15:46:57 +0800520void free_pgtable_page(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700521{
522 free_page((unsigned long)vaddr);
523}
524
525static inline void *alloc_domain_mem(void)
526{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900527 return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700528}
529
Kay, Allen M38717942008-09-09 18:37:29 +0300530static void free_domain_mem(void *vaddr)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700531{
532 kmem_cache_free(iommu_domain_cache, vaddr);
533}
534
535static inline void * alloc_devinfo_mem(void)
536{
KOSAKI Motohiro354bb652009-11-17 16:21:09 +0900537 return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700538}
539
540static inline void free_devinfo_mem(void *vaddr)
541{
542 kmem_cache_free(iommu_devinfo_cache, vaddr);
543}
544
Jiang Liuab8dfe22014-07-11 14:19:27 +0800545static inline int domain_type_is_vm(struct dmar_domain *domain)
546{
547 return domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE;
548}
549
Joerg Roedel28ccce02015-07-21 14:45:31 +0200550static inline int domain_type_is_si(struct dmar_domain *domain)
551{
552 return domain->flags & DOMAIN_FLAG_STATIC_IDENTITY;
553}
554
Jiang Liuab8dfe22014-07-11 14:19:27 +0800555static inline int domain_type_is_vm_or_si(struct dmar_domain *domain)
556{
557 return domain->flags & (DOMAIN_FLAG_VIRTUAL_MACHINE |
558 DOMAIN_FLAG_STATIC_IDENTITY);
559}
Weidong Han1b573682008-12-08 15:34:06 +0800560
Jiang Liu162d1b12014-07-11 14:19:35 +0800561static inline int domain_pfn_supported(struct dmar_domain *domain,
562 unsigned long pfn)
563{
564 int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT;
565
566 return !(addr_width < BITS_PER_LONG && pfn >> addr_width);
567}
568
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700569static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw)
Weidong Han1b573682008-12-08 15:34:06 +0800570{
571 unsigned long sagaw;
572 int agaw = -1;
573
574 sagaw = cap_sagaw(iommu->cap);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700575 for (agaw = width_to_agaw(max_gaw);
Weidong Han1b573682008-12-08 15:34:06 +0800576 agaw >= 0; agaw--) {
577 if (test_bit(agaw, &sagaw))
578 break;
579 }
580
581 return agaw;
582}
583
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -0700584/*
585 * Calculate max SAGAW for each iommu.
586 */
587int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
588{
589 return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH);
590}
591
592/*
593 * calculate agaw for each iommu.
594 * "SAGAW" may be different across iommus, use a default agaw, and
595 * get a supported less agaw for iommus that don't support the default agaw.
596 */
597int iommu_calculate_agaw(struct intel_iommu *iommu)
598{
599 return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH);
600}
601
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700602/* This functionin only returns single iommu in a domain */
Lu Baolu9ddbfb42018-07-14 15:46:57 +0800603struct intel_iommu *domain_get_iommu(struct dmar_domain *domain)
Weidong Han8c11e792008-12-08 15:29:22 +0800604{
605 int iommu_id;
606
Fenghua Yu2c2e2c32009-06-19 13:47:29 -0700607 /* si_domain and vm domain should not get here. */
Jiang Liuab8dfe22014-07-11 14:19:27 +0800608 BUG_ON(domain_type_is_vm_or_si(domain));
Joerg Roedel29a27712015-07-21 17:17:12 +0200609 for_each_domain_iommu(iommu_id, domain)
610 break;
611
Weidong Han8c11e792008-12-08 15:29:22 +0800612 if (iommu_id < 0 || iommu_id >= g_num_of_iommus)
613 return NULL;
614
615 return g_iommus[iommu_id];
616}
617
Weidong Han8e6040972008-12-08 15:49:06 +0800618static void domain_update_iommu_coherency(struct dmar_domain *domain)
619{
David Woodhoused0501962014-03-11 17:10:29 -0700620 struct dmar_drhd_unit *drhd;
621 struct intel_iommu *iommu;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100622 bool found = false;
623 int i;
Weidong Han8e6040972008-12-08 15:49:06 +0800624
David Woodhoused0501962014-03-11 17:10:29 -0700625 domain->iommu_coherency = 1;
Weidong Han8e6040972008-12-08 15:49:06 +0800626
Joerg Roedel29a27712015-07-21 17:17:12 +0200627 for_each_domain_iommu(i, domain) {
Quentin Lambert2f119c72015-02-06 10:59:53 +0100628 found = true;
Weidong Han8e6040972008-12-08 15:49:06 +0800629 if (!ecap_coherent(g_iommus[i]->ecap)) {
630 domain->iommu_coherency = 0;
631 break;
632 }
Weidong Han8e6040972008-12-08 15:49:06 +0800633 }
David Woodhoused0501962014-03-11 17:10:29 -0700634 if (found)
635 return;
636
637 /* No hardware attached; use lowest common denominator */
638 rcu_read_lock();
639 for_each_active_iommu(iommu, drhd) {
640 if (!ecap_coherent(iommu->ecap)) {
641 domain->iommu_coherency = 0;
642 break;
643 }
644 }
645 rcu_read_unlock();
Weidong Han8e6040972008-12-08 15:49:06 +0800646}
647
Jiang Liu161f6932014-07-11 14:19:37 +0800648static int domain_update_iommu_snooping(struct intel_iommu *skip)
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100649{
Allen Kay8140a952011-10-14 12:32:17 -0700650 struct dmar_drhd_unit *drhd;
Jiang Liu161f6932014-07-11 14:19:37 +0800651 struct intel_iommu *iommu;
652 int ret = 1;
653
654 rcu_read_lock();
655 for_each_active_iommu(iommu, drhd) {
656 if (iommu != skip) {
657 if (!ecap_sc_support(iommu->ecap)) {
658 ret = 0;
659 break;
660 }
661 }
662 }
663 rcu_read_unlock();
664
665 return ret;
666}
667
668static int domain_update_iommu_superpage(struct intel_iommu *skip)
669{
670 struct dmar_drhd_unit *drhd;
671 struct intel_iommu *iommu;
Allen Kay8140a952011-10-14 12:32:17 -0700672 int mask = 0xf;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100673
674 if (!intel_iommu_superpage) {
Jiang Liu161f6932014-07-11 14:19:37 +0800675 return 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100676 }
677
Allen Kay8140a952011-10-14 12:32:17 -0700678 /* set iommu_superpage to the smallest common denominator */
Jiang Liu0e242612014-02-19 14:07:34 +0800679 rcu_read_lock();
Allen Kay8140a952011-10-14 12:32:17 -0700680 for_each_active_iommu(iommu, drhd) {
Jiang Liu161f6932014-07-11 14:19:37 +0800681 if (iommu != skip) {
682 mask &= cap_super_page_val(iommu->cap);
683 if (!mask)
684 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100685 }
686 }
Jiang Liu0e242612014-02-19 14:07:34 +0800687 rcu_read_unlock();
688
Jiang Liu161f6932014-07-11 14:19:37 +0800689 return fls(mask);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100690}
691
Sheng Yang58c610b2009-03-18 15:33:05 +0800692/* Some capabilities may be different across iommus */
693static void domain_update_iommu_cap(struct dmar_domain *domain)
694{
695 domain_update_iommu_coherency(domain);
Jiang Liu161f6932014-07-11 14:19:37 +0800696 domain->iommu_snooping = domain_update_iommu_snooping(NULL);
697 domain->iommu_superpage = domain_update_iommu_superpage(NULL);
Sheng Yang58c610b2009-03-18 15:33:05 +0800698}
699
Sohil Mehta26b86092018-09-11 17:11:36 -0700700struct context_entry *iommu_context_addr(struct intel_iommu *iommu, u8 bus,
701 u8 devfn, int alloc)
David Woodhouse03ecc322015-02-13 14:35:21 +0000702{
703 struct root_entry *root = &iommu->root_entry[bus];
704 struct context_entry *context;
705 u64 *entry;
706
Joerg Roedel4df4eab2015-08-25 10:54:28 +0200707 entry = &root->lo;
Lu Baolu765b6a92018-12-10 09:58:55 +0800708 if (sm_supported(iommu)) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000709 if (devfn >= 0x80) {
710 devfn -= 0x80;
711 entry = &root->hi;
712 }
713 devfn *= 2;
714 }
David Woodhouse03ecc322015-02-13 14:35:21 +0000715 if (*entry & 1)
716 context = phys_to_virt(*entry & VTD_PAGE_MASK);
717 else {
718 unsigned long phy_addr;
719 if (!alloc)
720 return NULL;
721
722 context = alloc_pgtable_page(iommu->node);
723 if (!context)
724 return NULL;
725
726 __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE);
727 phy_addr = virt_to_phys((void *)context);
728 *entry = phy_addr | 1;
729 __iommu_flush_cache(iommu, entry, sizeof(*entry));
730 }
731 return &context[devfn];
732}
733
David Woodhouse4ed6a542015-05-11 14:59:20 +0100734static int iommu_dummy(struct device *dev)
735{
736 return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO;
737}
738
David Woodhouse156baca2014-03-09 14:00:57 -0700739static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn)
Weidong Hanc7151a82008-12-08 22:51:37 +0800740{
741 struct dmar_drhd_unit *drhd = NULL;
Jiang Liub683b232014-02-19 14:07:32 +0800742 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -0700743 struct device *tmp;
744 struct pci_dev *ptmp, *pdev = NULL;
Yijing Wangaa4d0662014-05-26 20:14:06 +0800745 u16 segment = 0;
Weidong Hanc7151a82008-12-08 22:51:37 +0800746 int i;
747
David Woodhouse4ed6a542015-05-11 14:59:20 +0100748 if (iommu_dummy(dev))
749 return NULL;
750
David Woodhouse156baca2014-03-09 14:00:57 -0700751 if (dev_is_pci(dev)) {
Ashok Raj1c387182016-10-21 15:32:05 -0700752 struct pci_dev *pf_pdev;
753
David Woodhouse156baca2014-03-09 14:00:57 -0700754 pdev = to_pci_dev(dev);
Jon Derrick5823e332017-08-30 15:05:59 -0600755
756#ifdef CONFIG_X86
757 /* VMD child devices currently cannot be handled individually */
758 if (is_vmd(pdev->bus))
759 return NULL;
760#endif
761
Ashok Raj1c387182016-10-21 15:32:05 -0700762 /* VFs aren't listed in scope tables; we need to look up
763 * the PF instead to find the IOMMU. */
764 pf_pdev = pci_physfn(pdev);
765 dev = &pf_pdev->dev;
David Woodhouse156baca2014-03-09 14:00:57 -0700766 segment = pci_domain_nr(pdev->bus);
Rafael J. Wysockica5b74d2015-03-16 23:49:08 +0100767 } else if (has_acpi_companion(dev))
David Woodhouse156baca2014-03-09 14:00:57 -0700768 dev = &ACPI_COMPANION(dev)->dev;
769
Jiang Liu0e242612014-02-19 14:07:34 +0800770 rcu_read_lock();
Jiang Liub683b232014-02-19 14:07:32 +0800771 for_each_active_iommu(iommu, drhd) {
David Woodhouse156baca2014-03-09 14:00:57 -0700772 if (pdev && segment != drhd->segment)
David Woodhouse276dbf992009-04-04 01:45:37 +0100773 continue;
Weidong Hanc7151a82008-12-08 22:51:37 +0800774
Jiang Liub683b232014-02-19 14:07:32 +0800775 for_each_active_dev_scope(drhd->devices,
David Woodhouse156baca2014-03-09 14:00:57 -0700776 drhd->devices_cnt, i, tmp) {
777 if (tmp == dev) {
Ashok Raj1c387182016-10-21 15:32:05 -0700778 /* For a VF use its original BDF# not that of the PF
779 * which we used for the IOMMU lookup. Strictly speaking
780 * we could do this for all PCI devices; we only need to
781 * get the BDF# from the scope table for ACPI matches. */
Koos Vriezen5003ae12017-03-01 21:02:50 +0100782 if (pdev && pdev->is_virtfn)
Ashok Raj1c387182016-10-21 15:32:05 -0700783 goto got_pdev;
784
David Woodhouse156baca2014-03-09 14:00:57 -0700785 *bus = drhd->devices[i].bus;
786 *devfn = drhd->devices[i].devfn;
787 goto out;
788 }
789
790 if (!pdev || !dev_is_pci(tmp))
David Woodhouse832bd852014-03-07 15:08:36 +0000791 continue;
David Woodhouse156baca2014-03-09 14:00:57 -0700792
793 ptmp = to_pci_dev(tmp);
794 if (ptmp->subordinate &&
795 ptmp->subordinate->number <= pdev->bus->number &&
796 ptmp->subordinate->busn_res.end >= pdev->bus->number)
797 goto got_pdev;
David Woodhouse924b6232009-04-04 00:39:25 +0100798 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800799
David Woodhouse156baca2014-03-09 14:00:57 -0700800 if (pdev && drhd->include_all) {
801 got_pdev:
802 *bus = pdev->bus->number;
803 *devfn = pdev->devfn;
Jiang Liub683b232014-02-19 14:07:32 +0800804 goto out;
David Woodhouse156baca2014-03-09 14:00:57 -0700805 }
Weidong Hanc7151a82008-12-08 22:51:37 +0800806 }
Jiang Liub683b232014-02-19 14:07:32 +0800807 iommu = NULL;
David Woodhouse156baca2014-03-09 14:00:57 -0700808 out:
Jiang Liu0e242612014-02-19 14:07:34 +0800809 rcu_read_unlock();
Weidong Hanc7151a82008-12-08 22:51:37 +0800810
Jiang Liub683b232014-02-19 14:07:32 +0800811 return iommu;
Weidong Hanc7151a82008-12-08 22:51:37 +0800812}
813
Weidong Han5331fe62008-12-08 23:00:00 +0800814static void domain_flush_cache(struct dmar_domain *domain,
815 void *addr, int size)
816{
817 if (!domain->iommu_coherency)
818 clflush_cache_range(addr, size);
819}
820
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700821static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn)
822{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700823 struct context_entry *context;
David Woodhouse03ecc322015-02-13 14:35:21 +0000824 int ret = 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700825 unsigned long flags;
826
827 spin_lock_irqsave(&iommu->lock, flags);
David Woodhouse03ecc322015-02-13 14:35:21 +0000828 context = iommu_context_addr(iommu, bus, devfn, 0);
829 if (context)
830 ret = context_present(context);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700831 spin_unlock_irqrestore(&iommu->lock, flags);
832 return ret;
833}
834
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700835static void free_context_table(struct intel_iommu *iommu)
836{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700837 int i;
838 unsigned long flags;
839 struct context_entry *context;
840
841 spin_lock_irqsave(&iommu->lock, flags);
842 if (!iommu->root_entry) {
843 goto out;
844 }
845 for (i = 0; i < ROOT_ENTRY_NR; i++) {
David Woodhouse03ecc322015-02-13 14:35:21 +0000846 context = iommu_context_addr(iommu, i, 0, 0);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700847 if (context)
848 free_pgtable_page(context);
David Woodhouse03ecc322015-02-13 14:35:21 +0000849
Lu Baolu765b6a92018-12-10 09:58:55 +0800850 if (!sm_supported(iommu))
David Woodhouse03ecc322015-02-13 14:35:21 +0000851 continue;
852
853 context = iommu_context_addr(iommu, i, 0x80, 0);
854 if (context)
855 free_pgtable_page(context);
856
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700857 }
858 free_pgtable_page(iommu->root_entry);
859 iommu->root_entry = NULL;
860out:
861 spin_unlock_irqrestore(&iommu->lock, flags);
862}
863
David Woodhouseb026fd22009-06-28 10:37:25 +0100864static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
David Woodhouse5cf0a762014-03-19 16:07:49 +0000865 unsigned long pfn, int *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700866{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -0600867 struct dma_pte *parent, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700868 int level = agaw_to_level(domain->agaw);
Allen Kay4399c8b2011-10-14 12:32:46 -0700869 int offset;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700870
871 BUG_ON(!domain->pgd);
Julian Stecklinaf9423602013-10-09 10:03:52 +0200872
Jiang Liu162d1b12014-07-11 14:19:35 +0800873 if (!domain_pfn_supported(domain, pfn))
Julian Stecklinaf9423602013-10-09 10:03:52 +0200874 /* Address beyond IOMMU's addressing capabilities. */
875 return NULL;
876
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700877 parent = domain->pgd;
878
David Woodhouse5cf0a762014-03-19 16:07:49 +0000879 while (1) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700880 void *tmp_page;
881
David Woodhouseb026fd22009-06-28 10:37:25 +0100882 offset = pfn_level_offset(pfn, level);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700883 pte = &parent[offset];
David Woodhouse5cf0a762014-03-19 16:07:49 +0000884 if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte)))
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100885 break;
David Woodhouse5cf0a762014-03-19 16:07:49 +0000886 if (level == *target_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700887 break;
888
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000889 if (!dma_pte_present(pte)) {
David Woodhousec85994e2009-07-01 19:21:24 +0100890 uint64_t pteval;
891
Suresh Siddha4c923d42009-10-02 11:01:24 -0700892 tmp_page = alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700893
David Woodhouse206a73c2009-07-01 19:30:28 +0100894 if (!tmp_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700895 return NULL;
David Woodhouse206a73c2009-07-01 19:30:28 +0100896
David Woodhousec85994e2009-07-01 19:21:24 +0100897 domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE);
Benjamin LaHaise64de5af2009-09-16 21:05:55 -0400898 pteval = ((uint64_t)virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE;
Yijing Wangeffad4b2014-05-26 20:13:47 +0800899 if (cmpxchg64(&pte->val, 0ULL, pteval))
David Woodhousec85994e2009-07-01 19:21:24 +0100900 /* Someone else set it while we were thinking; use theirs. */
901 free_pgtable_page(tmp_page);
Yijing Wangeffad4b2014-05-26 20:13:47 +0800902 else
David Woodhousec85994e2009-07-01 19:21:24 +0100903 domain_flush_cache(domain, pte, sizeof(*pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700904 }
David Woodhouse5cf0a762014-03-19 16:07:49 +0000905 if (level == 1)
906 break;
907
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000908 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700909 level--;
910 }
911
David Woodhouse5cf0a762014-03-19 16:07:49 +0000912 if (!*target_level)
913 *target_level = level;
914
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700915 return pte;
916}
917
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100918
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700919/* return address's pte at specific level */
David Woodhouse90dcfb52009-06-27 17:14:59 +0100920static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain,
921 unsigned long pfn,
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100922 int level, int *large_page)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700923{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -0600924 struct dma_pte *parent, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700925 int total = agaw_to_level(domain->agaw);
926 int offset;
927
928 parent = domain->pgd;
929 while (level <= total) {
David Woodhouse90dcfb52009-06-27 17:14:59 +0100930 offset = pfn_level_offset(pfn, total);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700931 pte = &parent[offset];
932 if (level == total)
933 return pte;
934
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100935 if (!dma_pte_present(pte)) {
936 *large_page = total;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700937 break;
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100938 }
939
Yijing Wange16922a2014-05-20 20:37:51 +0800940 if (dma_pte_superpage(pte)) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100941 *large_page = total;
942 return pte;
943 }
944
Mark McLoughlin19c239c2008-11-21 16:56:53 +0000945 parent = phys_to_virt(dma_pte_addr(pte));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700946 total--;
947 }
948 return NULL;
949}
950
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700951/* clear last level pte, a tlb flush should be followed */
David Woodhouse5cf0a762014-03-19 16:07:49 +0000952static void dma_pte_clear_range(struct dmar_domain *domain,
David Woodhouse595badf52009-06-27 22:09:11 +0100953 unsigned long start_pfn,
954 unsigned long last_pfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700955{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -0600956 unsigned int large_page;
David Woodhouse310a5ab2009-06-28 18:52:20 +0100957 struct dma_pte *first_pte, *pte;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700958
Jiang Liu162d1b12014-07-11 14:19:35 +0800959 BUG_ON(!domain_pfn_supported(domain, start_pfn));
960 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -0700961 BUG_ON(start_pfn > last_pfn);
David Woodhouse66eae842009-06-27 19:00:32 +0100962
David Woodhouse04b18e62009-06-27 19:15:01 +0100963 /* we don't need lock here; nobody else touches the iova range */
David Woodhouse59c36282009-09-19 07:36:28 -0700964 do {
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100965 large_page = 1;
966 first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100967 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100968 start_pfn = align_to_level(start_pfn + 1, large_page + 1);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100969 continue;
970 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100971 do {
David Woodhouse310a5ab2009-06-28 18:52:20 +0100972 dma_clear_pte(pte);
Youquan Song6dd9a7c2011-05-25 19:13:49 +0100973 start_pfn += lvl_to_nr_pages(large_page);
David Woodhouse310a5ab2009-06-28 18:52:20 +0100974 pte++;
David Woodhouse75e6bf92009-07-02 11:21:16 +0100975 } while (start_pfn <= last_pfn && !first_pte_in_page(pte));
976
David Woodhouse310a5ab2009-06-28 18:52:20 +0100977 domain_flush_cache(domain, first_pte,
978 (void *)pte - (void *)first_pte);
David Woodhouse59c36282009-09-19 07:36:28 -0700979
980 } while (start_pfn && start_pfn <= last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -0700981}
982
Alex Williamson3269ee02013-06-15 10:27:19 -0600983static void dma_pte_free_level(struct dmar_domain *domain, int level,
David Dillowbc24c572017-06-28 19:42:23 -0700984 int retain_level, struct dma_pte *pte,
985 unsigned long pfn, unsigned long start_pfn,
986 unsigned long last_pfn)
Alex Williamson3269ee02013-06-15 10:27:19 -0600987{
988 pfn = max(start_pfn, pfn);
989 pte = &pte[pfn_level_offset(pfn, level)];
990
991 do {
992 unsigned long level_pfn;
993 struct dma_pte *level_pte;
994
995 if (!dma_pte_present(pte) || dma_pte_superpage(pte))
996 goto next;
997
David Dillowf7116e12017-01-30 19:11:11 -0800998 level_pfn = pfn & level_mask(level);
Alex Williamson3269ee02013-06-15 10:27:19 -0600999 level_pte = phys_to_virt(dma_pte_addr(pte));
1000
David Dillowbc24c572017-06-28 19:42:23 -07001001 if (level > 2) {
1002 dma_pte_free_level(domain, level - 1, retain_level,
1003 level_pte, level_pfn, start_pfn,
1004 last_pfn);
1005 }
Alex Williamson3269ee02013-06-15 10:27:19 -06001006
David Dillowbc24c572017-06-28 19:42:23 -07001007 /*
1008 * Free the page table if we're below the level we want to
1009 * retain and the range covers the entire table.
1010 */
1011 if (level < retain_level && !(start_pfn > level_pfn ||
Alex Williamson08336fd2014-01-21 15:48:18 -08001012 last_pfn < level_pfn + level_size(level) - 1)) {
Alex Williamson3269ee02013-06-15 10:27:19 -06001013 dma_clear_pte(pte);
1014 domain_flush_cache(domain, pte, sizeof(*pte));
1015 free_pgtable_page(level_pte);
1016 }
1017next:
1018 pfn += level_size(level);
1019 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1020}
1021
David Dillowbc24c572017-06-28 19:42:23 -07001022/*
1023 * clear last level (leaf) ptes and free page table pages below the
1024 * level we wish to keep intact.
1025 */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001026static void dma_pte_free_pagetable(struct dmar_domain *domain,
David Woodhoused794dc92009-06-28 00:27:49 +01001027 unsigned long start_pfn,
David Dillowbc24c572017-06-28 19:42:23 -07001028 unsigned long last_pfn,
1029 int retain_level)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001030{
Jiang Liu162d1b12014-07-11 14:19:35 +08001031 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1032 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouse59c36282009-09-19 07:36:28 -07001033 BUG_ON(start_pfn > last_pfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001034
Jiang Liud41a4ad2014-07-11 14:19:34 +08001035 dma_pte_clear_range(domain, start_pfn, last_pfn);
1036
David Woodhousef3a0a522009-06-30 03:40:07 +01001037 /* We don't need lock here; nobody else touches the iova range */
David Dillowbc24c572017-06-28 19:42:23 -07001038 dma_pte_free_level(domain, agaw_to_level(domain->agaw), retain_level,
Alex Williamson3269ee02013-06-15 10:27:19 -06001039 domain->pgd, 0, start_pfn, last_pfn);
David Woodhouse6660c632009-06-27 22:41:00 +01001040
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001041 /* free pgd */
David Woodhoused794dc92009-06-28 00:27:49 +01001042 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001043 free_pgtable_page(domain->pgd);
1044 domain->pgd = NULL;
1045 }
1046}
1047
David Woodhouseea8ea462014-03-05 17:09:32 +00001048/* When a page at a given level is being unlinked from its parent, we don't
1049 need to *modify* it at all. All we need to do is make a list of all the
1050 pages which can be freed just as soon as we've flushed the IOTLB and we
1051 know the hardware page-walk will no longer touch them.
1052 The 'pte' argument is the *parent* PTE, pointing to the page that is to
1053 be freed. */
1054static struct page *dma_pte_list_pagetables(struct dmar_domain *domain,
1055 int level, struct dma_pte *pte,
1056 struct page *freelist)
1057{
1058 struct page *pg;
1059
1060 pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT);
1061 pg->freelist = freelist;
1062 freelist = pg;
1063
1064 if (level == 1)
1065 return freelist;
1066
Jiang Liuadeb2592014-04-09 10:20:39 +08001067 pte = page_address(pg);
1068 do {
David Woodhouseea8ea462014-03-05 17:09:32 +00001069 if (dma_pte_present(pte) && !dma_pte_superpage(pte))
1070 freelist = dma_pte_list_pagetables(domain, level - 1,
1071 pte, freelist);
Jiang Liuadeb2592014-04-09 10:20:39 +08001072 pte++;
1073 } while (!first_pte_in_page(pte));
David Woodhouseea8ea462014-03-05 17:09:32 +00001074
1075 return freelist;
1076}
1077
1078static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level,
1079 struct dma_pte *pte, unsigned long pfn,
1080 unsigned long start_pfn,
1081 unsigned long last_pfn,
1082 struct page *freelist)
1083{
1084 struct dma_pte *first_pte = NULL, *last_pte = NULL;
1085
1086 pfn = max(start_pfn, pfn);
1087 pte = &pte[pfn_level_offset(pfn, level)];
1088
1089 do {
1090 unsigned long level_pfn;
1091
1092 if (!dma_pte_present(pte))
1093 goto next;
1094
1095 level_pfn = pfn & level_mask(level);
1096
1097 /* If range covers entire pagetable, free it */
1098 if (start_pfn <= level_pfn &&
1099 last_pfn >= level_pfn + level_size(level) - 1) {
1100 /* These suborbinate page tables are going away entirely. Don't
1101 bother to clear them; we're just going to *free* them. */
1102 if (level > 1 && !dma_pte_superpage(pte))
1103 freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist);
1104
1105 dma_clear_pte(pte);
1106 if (!first_pte)
1107 first_pte = pte;
1108 last_pte = pte;
1109 } else if (level > 1) {
1110 /* Recurse down into a level that isn't *entirely* obsolete */
1111 freelist = dma_pte_clear_level(domain, level - 1,
1112 phys_to_virt(dma_pte_addr(pte)),
1113 level_pfn, start_pfn, last_pfn,
1114 freelist);
1115 }
1116next:
1117 pfn += level_size(level);
1118 } while (!first_pte_in_page(++pte) && pfn <= last_pfn);
1119
1120 if (first_pte)
1121 domain_flush_cache(domain, first_pte,
1122 (void *)++last_pte - (void *)first_pte);
1123
1124 return freelist;
1125}
1126
1127/* We can't just free the pages because the IOMMU may still be walking
1128 the page tables, and may have cached the intermediate levels. The
1129 pages can only be freed after the IOTLB flush has been done. */
Joerg Roedelb6904202015-08-13 11:32:18 +02001130static struct page *domain_unmap(struct dmar_domain *domain,
1131 unsigned long start_pfn,
1132 unsigned long last_pfn)
David Woodhouseea8ea462014-03-05 17:09:32 +00001133{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06001134 struct page *freelist;
David Woodhouseea8ea462014-03-05 17:09:32 +00001135
Jiang Liu162d1b12014-07-11 14:19:35 +08001136 BUG_ON(!domain_pfn_supported(domain, start_pfn));
1137 BUG_ON(!domain_pfn_supported(domain, last_pfn));
David Woodhouseea8ea462014-03-05 17:09:32 +00001138 BUG_ON(start_pfn > last_pfn);
1139
1140 /* we don't need lock here; nobody else touches the iova range */
1141 freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw),
1142 domain->pgd, 0, start_pfn, last_pfn, NULL);
1143
1144 /* free pgd */
1145 if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) {
1146 struct page *pgd_page = virt_to_page(domain->pgd);
1147 pgd_page->freelist = freelist;
1148 freelist = pgd_page;
1149
1150 domain->pgd = NULL;
1151 }
1152
1153 return freelist;
1154}
1155
Joerg Roedelb6904202015-08-13 11:32:18 +02001156static void dma_free_pagelist(struct page *freelist)
David Woodhouseea8ea462014-03-05 17:09:32 +00001157{
1158 struct page *pg;
1159
1160 while ((pg = freelist)) {
1161 freelist = pg->freelist;
1162 free_pgtable_page(page_address(pg));
1163 }
1164}
1165
Joerg Roedel13cf0172017-08-11 11:40:10 +02001166static void iova_entry_free(unsigned long data)
1167{
1168 struct page *freelist = (struct page *)data;
1169
1170 dma_free_pagelist(freelist);
1171}
1172
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001173/* iommu handling */
1174static int iommu_alloc_root_entry(struct intel_iommu *iommu)
1175{
1176 struct root_entry *root;
1177 unsigned long flags;
1178
Suresh Siddha4c923d42009-10-02 11:01:24 -07001179 root = (struct root_entry *)alloc_pgtable_page(iommu->node);
Jiang Liuffebeb42014-11-09 22:48:02 +08001180 if (!root) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001181 pr_err("Allocating root entry for %s failed\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08001182 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001183 return -ENOMEM;
Jiang Liuffebeb42014-11-09 22:48:02 +08001184 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001185
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001186 __iommu_flush_cache(iommu, root, ROOT_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001187
1188 spin_lock_irqsave(&iommu->lock, flags);
1189 iommu->root_entry = root;
1190 spin_unlock_irqrestore(&iommu->lock, flags);
1191
1192 return 0;
1193}
1194
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001195static void iommu_set_root_entry(struct intel_iommu *iommu)
1196{
David Woodhouse03ecc322015-02-13 14:35:21 +00001197 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +01001198 u32 sts;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001199 unsigned long flag;
1200
David Woodhouse03ecc322015-02-13 14:35:21 +00001201 addr = virt_to_phys(iommu->root_entry);
Lu Baolu7373a8c2018-12-10 09:59:03 +08001202 if (sm_supported(iommu))
1203 addr |= DMA_RTADDR_SMT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001204
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001205 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse03ecc322015-02-13 14:35:21 +00001206 dmar_writeq(iommu->reg + DMAR_RTADDR_REG, addr);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001207
David Woodhousec416daa2009-05-10 20:30:58 +01001208 writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001209
1210 /* Make sure hardware complete it */
1211 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001212 readl, (sts & DMA_GSTS_RTPS), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001213
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001214 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001215}
1216
Lu Baolu6f7db752018-12-10 09:59:00 +08001217void iommu_flush_write_buffer(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001218{
1219 u32 val;
1220 unsigned long flag;
1221
David Woodhouse9af88142009-02-13 23:18:03 +00001222 if (!rwbf_quirk && !cap_rwbf(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001223 return;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001224
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001225 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse462b60f2009-05-10 20:18:18 +01001226 writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001227
1228 /* Make sure hardware complete it */
1229 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001230 readl, (!(val & DMA_GSTS_WBFS)), val);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001231
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001232 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001233}
1234
1235/* return value determine if we need a write buffer flush */
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001236static void __iommu_flush_context(struct intel_iommu *iommu,
1237 u16 did, u16 source_id, u8 function_mask,
1238 u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001239{
1240 u64 val = 0;
1241 unsigned long flag;
1242
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001243 switch (type) {
1244 case DMA_CCMD_GLOBAL_INVL:
1245 val = DMA_CCMD_GLOBAL_INVL;
1246 break;
1247 case DMA_CCMD_DOMAIN_INVL:
1248 val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did);
1249 break;
1250 case DMA_CCMD_DEVICE_INVL:
1251 val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did)
1252 | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask);
1253 break;
1254 default:
1255 BUG();
1256 }
1257 val |= DMA_CCMD_ICC;
1258
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001259 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001260 dmar_writeq(iommu->reg + DMAR_CCMD_REG, val);
1261
1262 /* Make sure hardware complete it */
1263 IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG,
1264 dmar_readq, (!(val & DMA_CCMD_ICC)), val);
1265
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001266 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001267}
1268
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001269/* return value determine if we need a write buffer flush */
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001270static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did,
1271 u64 addr, unsigned int size_order, u64 type)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001272{
1273 int tlb_offset = ecap_iotlb_offset(iommu->ecap);
1274 u64 val = 0, val_iva = 0;
1275 unsigned long flag;
1276
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001277 switch (type) {
1278 case DMA_TLB_GLOBAL_FLUSH:
1279 /* global flush doesn't need set IVA_REG */
1280 val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT;
1281 break;
1282 case DMA_TLB_DSI_FLUSH:
1283 val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
1284 break;
1285 case DMA_TLB_PSI_FLUSH:
1286 val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did);
David Woodhouseea8ea462014-03-05 17:09:32 +00001287 /* IH bit is passed in as part of address */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001288 val_iva = size_order | addr;
1289 break;
1290 default:
1291 BUG();
1292 }
1293 /* Note: set drain read/write */
1294#if 0
1295 /*
1296 * This is probably to be super secure.. Looks like we can
1297 * ignore it without any impact.
1298 */
1299 if (cap_read_drain(iommu->cap))
1300 val |= DMA_TLB_READ_DRAIN;
1301#endif
1302 if (cap_write_drain(iommu->cap))
1303 val |= DMA_TLB_WRITE_DRAIN;
1304
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001305 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001306 /* Note: Only uses first TLB reg currently */
1307 if (val_iva)
1308 dmar_writeq(iommu->reg + tlb_offset, val_iva);
1309 dmar_writeq(iommu->reg + tlb_offset + 8, val);
1310
1311 /* Make sure hardware complete it */
1312 IOMMU_WAIT_OP(iommu, tlb_offset + 8,
1313 dmar_readq, (!(val & DMA_TLB_IVT)), val);
1314
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001315 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001316
1317 /* check IOTLB invalidation granularity */
1318 if (DMA_TLB_IAIG(val) == 0)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001319 pr_err("Flush IOTLB failed\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001320 if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001321 pr_debug("TLB flush request %Lx, actual %Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001322 (unsigned long long)DMA_TLB_IIRG(type),
1323 (unsigned long long)DMA_TLB_IAIG(val));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001324}
1325
David Woodhouse64ae8922014-03-09 12:52:30 -07001326static struct device_domain_info *
1327iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu,
1328 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001329{
Yu Zhao93a23a72009-05-18 13:51:37 +08001330 struct device_domain_info *info;
Yu Zhao93a23a72009-05-18 13:51:37 +08001331
Joerg Roedel55d94042015-07-22 16:50:40 +02001332 assert_spin_locked(&device_domain_lock);
1333
Yu Zhao93a23a72009-05-18 13:51:37 +08001334 if (!iommu->qi)
1335 return NULL;
1336
Yu Zhao93a23a72009-05-18 13:51:37 +08001337 list_for_each_entry(info, &domain->devices, link)
Jiang Liuc3b497c2014-07-11 14:19:25 +08001338 if (info->iommu == iommu && info->bus == bus &&
1339 info->devfn == devfn) {
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001340 if (info->ats_supported && info->dev)
1341 return info;
Yu Zhao93a23a72009-05-18 13:51:37 +08001342 break;
1343 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001344
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001345 return NULL;
Yu Zhao93a23a72009-05-18 13:51:37 +08001346}
1347
Omer Peleg0824c592016-04-20 19:03:35 +03001348static void domain_update_iotlb(struct dmar_domain *domain)
1349{
1350 struct device_domain_info *info;
1351 bool has_iotlb_device = false;
1352
1353 assert_spin_locked(&device_domain_lock);
1354
1355 list_for_each_entry(info, &domain->devices, link) {
1356 struct pci_dev *pdev;
1357
1358 if (!info->dev || !dev_is_pci(info->dev))
1359 continue;
1360
1361 pdev = to_pci_dev(info->dev);
1362 if (pdev->ats_enabled) {
1363 has_iotlb_device = true;
1364 break;
1365 }
1366 }
1367
1368 domain->has_iotlb_device = has_iotlb_device;
1369}
1370
Yu Zhao93a23a72009-05-18 13:51:37 +08001371static void iommu_enable_dev_iotlb(struct device_domain_info *info)
1372{
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001373 struct pci_dev *pdev;
1374
Omer Peleg0824c592016-04-20 19:03:35 +03001375 assert_spin_locked(&device_domain_lock);
1376
David Woodhouse0bcb3e22014-03-06 17:12:03 +00001377 if (!info || !dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001378 return;
1379
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001380 pdev = to_pci_dev(info->dev);
Jacob Pan1c48db42018-06-07 09:57:00 -07001381 /* For IOMMU that supports device IOTLB throttling (DIT), we assign
1382 * PFSID to the invalidation desc of a VF such that IOMMU HW can gauge
1383 * queue depth at PF level. If DIT is not set, PFSID will be treated as
1384 * reserved, which should be set to 0.
1385 */
1386 if (!ecap_dit(info->iommu->ecap))
1387 info->pfsid = 0;
1388 else {
1389 struct pci_dev *pf_pdev;
1390
1391 /* pdev will be returned if device is not a vf */
1392 pf_pdev = pci_physfn(pdev);
1393 info->pfsid = PCI_DEVID(pf_pdev->bus->number, pf_pdev->devfn);
1394 }
Bjorn Helgaasfb0cc3a2015-07-20 09:10:36 -05001395
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001396#ifdef CONFIG_INTEL_IOMMU_SVM
1397 /* The PCIe spec, in its wisdom, declares that the behaviour of
1398 the device if you enable PASID support after ATS support is
1399 undefined. So always enable PASID support on devices which
1400 have it, even if we can't yet know if we're ever going to
1401 use it. */
1402 if (info->pasid_supported && !pci_enable_pasid(pdev, info->pasid_supported & ~1))
1403 info->pasid_enabled = 1;
1404
Kuppuswamy Sathyanarayanan1b84778a2019-02-19 11:04:52 -08001405 if (info->pri_supported &&
1406 (info->pasid_enabled ? pci_prg_resp_pasid_required(pdev) : 1) &&
1407 !pci_reset_pri(pdev) && !pci_enable_pri(pdev, 32))
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001408 info->pri_enabled = 1;
1409#endif
Mika Westerbergfb58fdc2018-10-29 13:47:08 +03001410 if (!pdev->untrusted && info->ats_supported &&
Kuppuswamy Sathyanarayanan61363c12019-02-19 11:06:10 -08001411 pci_ats_page_aligned(pdev) &&
Mika Westerbergfb58fdc2018-10-29 13:47:08 +03001412 !pci_enable_ats(pdev, VTD_PAGE_SHIFT)) {
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001413 info->ats_enabled = 1;
Omer Peleg0824c592016-04-20 19:03:35 +03001414 domain_update_iotlb(info->domain);
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001415 info->ats_qdep = pci_ats_queue_depth(pdev);
1416 }
Yu Zhao93a23a72009-05-18 13:51:37 +08001417}
1418
1419static void iommu_disable_dev_iotlb(struct device_domain_info *info)
1420{
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001421 struct pci_dev *pdev;
1422
Omer Peleg0824c592016-04-20 19:03:35 +03001423 assert_spin_locked(&device_domain_lock);
1424
Jeremy McNicollda972fb2016-01-14 21:33:06 -08001425 if (!dev_is_pci(info->dev))
Yu Zhao93a23a72009-05-18 13:51:37 +08001426 return;
1427
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001428 pdev = to_pci_dev(info->dev);
1429
1430 if (info->ats_enabled) {
1431 pci_disable_ats(pdev);
1432 info->ats_enabled = 0;
Omer Peleg0824c592016-04-20 19:03:35 +03001433 domain_update_iotlb(info->domain);
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001434 }
1435#ifdef CONFIG_INTEL_IOMMU_SVM
1436 if (info->pri_enabled) {
1437 pci_disable_pri(pdev);
1438 info->pri_enabled = 0;
1439 }
1440 if (info->pasid_enabled) {
1441 pci_disable_pasid(pdev);
1442 info->pasid_enabled = 0;
1443 }
1444#endif
Yu Zhao93a23a72009-05-18 13:51:37 +08001445}
1446
1447static void iommu_flush_dev_iotlb(struct dmar_domain *domain,
1448 u64 addr, unsigned mask)
1449{
1450 u16 sid, qdep;
1451 unsigned long flags;
1452 struct device_domain_info *info;
1453
Omer Peleg0824c592016-04-20 19:03:35 +03001454 if (!domain->has_iotlb_device)
1455 return;
1456
Yu Zhao93a23a72009-05-18 13:51:37 +08001457 spin_lock_irqsave(&device_domain_lock, flags);
1458 list_for_each_entry(info, &domain->devices, link) {
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001459 if (!info->ats_enabled)
Yu Zhao93a23a72009-05-18 13:51:37 +08001460 continue;
1461
1462 sid = info->bus << 8 | info->devfn;
David Woodhouseb16d0cb2015-10-12 14:17:37 +01001463 qdep = info->ats_qdep;
Jacob Pan1c48db42018-06-07 09:57:00 -07001464 qi_flush_dev_iotlb(info->iommu, sid, info->pfsid,
1465 qdep, addr, mask);
Yu Zhao93a23a72009-05-18 13:51:37 +08001466 }
1467 spin_unlock_irqrestore(&device_domain_lock, flags);
1468}
1469
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001470static void iommu_flush_iotlb_psi(struct intel_iommu *iommu,
1471 struct dmar_domain *domain,
1472 unsigned long pfn, unsigned int pages,
1473 int ih, int map)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001474{
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001475 unsigned int mask = ilog2(__roundup_pow_of_two(pages));
David Woodhouse03d6a242009-06-28 15:33:46 +01001476 uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT;
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02001477 u16 did = domain->iommu_did[iommu->seq_id];
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001478
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001479 BUG_ON(pages == 0);
1480
David Woodhouseea8ea462014-03-05 17:09:32 +00001481 if (ih)
1482 ih = 1 << 6;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001483 /*
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001484 * Fallback to domain selective flush if no PSI support or the size is
1485 * too big.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001486 * PSI requires page size to be 2 ^ x, and the base address is naturally
1487 * aligned to the size
1488 */
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001489 if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap))
1490 iommu->flush.flush_iotlb(iommu, did, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001491 DMA_TLB_DSI_FLUSH);
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001492 else
David Woodhouseea8ea462014-03-05 17:09:32 +00001493 iommu->flush.flush_iotlb(iommu, did, addr | ih, mask,
Yu Zhao9dd2fe82009-05-18 13:51:36 +08001494 DMA_TLB_PSI_FLUSH);
Yu Zhaobf92df32009-06-29 11:31:45 +08001495
1496 /*
Nadav Amit82653632010-04-01 13:24:40 +03001497 * In caching mode, changes of pages from non-present to present require
1498 * flush. However, device IOTLB doesn't need to be flushed in this case.
Yu Zhaobf92df32009-06-29 11:31:45 +08001499 */
Nadav Amit82653632010-04-01 13:24:40 +03001500 if (!cap_caching_mode(iommu->cap) || !map)
Peter Xu9d2e6502018-01-10 13:51:37 +08001501 iommu_flush_dev_iotlb(domain, addr, mask);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001502}
1503
Peter Xueed91a02018-05-04 10:34:52 +08001504/* Notification for newly created mappings */
1505static inline void __mapping_notify_one(struct intel_iommu *iommu,
1506 struct dmar_domain *domain,
1507 unsigned long pfn, unsigned int pages)
1508{
1509 /* It's a non-present to present mapping. Only flush if caching mode */
1510 if (cap_caching_mode(iommu->cap))
1511 iommu_flush_iotlb_psi(iommu, domain, pfn, pages, 0, 1);
1512 else
1513 iommu_flush_write_buffer(iommu);
1514}
1515
Joerg Roedel13cf0172017-08-11 11:40:10 +02001516static void iommu_flush_iova(struct iova_domain *iovad)
1517{
1518 struct dmar_domain *domain;
1519 int idx;
1520
1521 domain = container_of(iovad, struct dmar_domain, iovad);
1522
1523 for_each_domain_iommu(idx, domain) {
1524 struct intel_iommu *iommu = g_iommus[idx];
1525 u16 did = domain->iommu_did[iommu->seq_id];
1526
1527 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
1528
1529 if (!cap_caching_mode(iommu->cap))
1530 iommu_flush_dev_iotlb(get_iommu_domain(iommu, did),
1531 0, MAX_AGAW_PFN_WIDTH);
1532 }
1533}
1534
mark grossf8bab732008-02-08 04:18:38 -08001535static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu)
1536{
1537 u32 pmen;
1538 unsigned long flags;
1539
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001540 raw_spin_lock_irqsave(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001541 pmen = readl(iommu->reg + DMAR_PMEN_REG);
1542 pmen &= ~DMA_PMEN_EPM;
1543 writel(pmen, iommu->reg + DMAR_PMEN_REG);
1544
1545 /* wait for the protected region status bit to clear */
1546 IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG,
1547 readl, !(pmen & DMA_PMEN_PRS), pmen);
1548
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001549 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
mark grossf8bab732008-02-08 04:18:38 -08001550}
1551
Jiang Liu2a41cce2014-07-11 14:19:33 +08001552static void iommu_enable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001553{
1554 u32 sts;
1555 unsigned long flags;
1556
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001557 raw_spin_lock_irqsave(&iommu->register_lock, flags);
David Woodhousec416daa2009-05-10 20:30:58 +01001558 iommu->gcmd |= DMA_GCMD_TE;
1559 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001560
1561 /* Make sure hardware complete it */
1562 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001563 readl, (sts & DMA_GSTS_TES), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001564
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001565 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001566}
1567
Jiang Liu2a41cce2014-07-11 14:19:33 +08001568static void iommu_disable_translation(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001569{
1570 u32 sts;
1571 unsigned long flag;
1572
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001573 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001574 iommu->gcmd &= ~DMA_GCMD_TE;
1575 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1576
1577 /* Make sure hardware complete it */
1578 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
David Woodhousec416daa2009-05-10 20:30:58 +01001579 readl, (!(sts & DMA_GSTS_TES)), sts);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001580
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001581 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001582}
1583
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07001584
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001585static int iommu_init_domains(struct intel_iommu *iommu)
1586{
Joerg Roedel8bf47812015-07-21 10:41:21 +02001587 u32 ndomains, nlongs;
1588 size_t size;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001589
1590 ndomains = cap_ndoms(iommu->cap);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001591 pr_debug("%s: Number of Domains supported <%d>\n",
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001592 iommu->name, ndomains);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001593 nlongs = BITS_TO_LONGS(ndomains);
1594
Donald Dutile94a91b502009-08-20 16:51:34 -04001595 spin_lock_init(&iommu->lock);
1596
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001597 iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL);
1598 if (!iommu->domain_ids) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001599 pr_err("%s: Allocating domain id array failed\n",
1600 iommu->name);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001601 return -ENOMEM;
1602 }
Joerg Roedel8bf47812015-07-21 10:41:21 +02001603
Wei Yang86f004c2016-05-21 02:41:51 +00001604 size = (ALIGN(ndomains, 256) >> 8) * sizeof(struct dmar_domain **);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001605 iommu->domains = kzalloc(size, GFP_KERNEL);
1606
1607 if (iommu->domains) {
1608 size = 256 * sizeof(struct dmar_domain *);
1609 iommu->domains[0] = kzalloc(size, GFP_KERNEL);
1610 }
1611
1612 if (!iommu->domains || !iommu->domains[0]) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001613 pr_err("%s: Allocating domain array failed\n",
1614 iommu->name);
Jiang Liu852bdb02014-01-06 14:18:11 +08001615 kfree(iommu->domain_ids);
Joerg Roedel8bf47812015-07-21 10:41:21 +02001616 kfree(iommu->domains);
Jiang Liu852bdb02014-01-06 14:18:11 +08001617 iommu->domain_ids = NULL;
Joerg Roedel8bf47812015-07-21 10:41:21 +02001618 iommu->domains = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001619 return -ENOMEM;
1620 }
1621
Joerg Roedel8bf47812015-07-21 10:41:21 +02001622
1623
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001624 /*
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001625 * If Caching mode is set, then invalid translations are tagged
1626 * with domain-id 0, hence we need to pre-allocate it. We also
1627 * use domain-id 0 as a marker for non-allocated domain-id, so
1628 * make sure it is not used for a real domain.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001629 */
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001630 set_bit(0, iommu->domain_ids);
1631
Lu Baolu3b33d4a2018-12-10 09:58:59 +08001632 /*
1633 * Vt-d spec rev3.0 (section 6.2.3.1) requires that each pasid
1634 * entry for first-level or pass-through translation modes should
1635 * be programmed with a domain id different from those used for
1636 * second-level or nested translation. We reserve a domain id for
1637 * this purpose.
1638 */
1639 if (sm_supported(iommu))
1640 set_bit(FLPT_DEFAULT_DID, iommu->domain_ids);
1641
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001642 return 0;
1643}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001644
Jiang Liuffebeb42014-11-09 22:48:02 +08001645static void disable_dmar_iommu(struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001646{
Joerg Roedel29a27712015-07-21 17:17:12 +02001647 struct device_domain_info *info, *tmp;
Joerg Roedel55d94042015-07-22 16:50:40 +02001648 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001649
Joerg Roedel29a27712015-07-21 17:17:12 +02001650 if (!iommu->domains || !iommu->domain_ids)
1651 return;
Jiang Liua4eaa862014-02-19 14:07:30 +08001652
Joerg Roedelbea64032016-11-08 15:08:26 +01001653again:
Joerg Roedel55d94042015-07-22 16:50:40 +02001654 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001655 list_for_each_entry_safe(info, tmp, &device_domain_list, global) {
1656 struct dmar_domain *domain;
1657
1658 if (info->iommu != iommu)
1659 continue;
1660
1661 if (!info->dev || !info->domain)
1662 continue;
1663
1664 domain = info->domain;
1665
Joerg Roedelbea64032016-11-08 15:08:26 +01001666 __dmar_remove_one_dev_info(info);
Joerg Roedel29a27712015-07-21 17:17:12 +02001667
Joerg Roedelbea64032016-11-08 15:08:26 +01001668 if (!domain_type_is_vm_or_si(domain)) {
1669 /*
1670 * The domain_exit() function can't be called under
1671 * device_domain_lock, as it takes this lock itself.
1672 * So release the lock here and re-run the loop
1673 * afterwards.
1674 */
1675 spin_unlock_irqrestore(&device_domain_lock, flags);
Joerg Roedel29a27712015-07-21 17:17:12 +02001676 domain_exit(domain);
Joerg Roedelbea64032016-11-08 15:08:26 +01001677 goto again;
1678 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001679 }
Joerg Roedel55d94042015-07-22 16:50:40 +02001680 spin_unlock_irqrestore(&device_domain_lock, flags);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001681
1682 if (iommu->gcmd & DMA_GCMD_TE)
1683 iommu_disable_translation(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08001684}
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001685
Jiang Liuffebeb42014-11-09 22:48:02 +08001686static void free_dmar_iommu(struct intel_iommu *iommu)
1687{
1688 if ((iommu->domains) && (iommu->domain_ids)) {
Wei Yang86f004c2016-05-21 02:41:51 +00001689 int elems = ALIGN(cap_ndoms(iommu->cap), 256) >> 8;
Joerg Roedel8bf47812015-07-21 10:41:21 +02001690 int i;
1691
1692 for (i = 0; i < elems; i++)
1693 kfree(iommu->domains[i]);
Jiang Liuffebeb42014-11-09 22:48:02 +08001694 kfree(iommu->domains);
1695 kfree(iommu->domain_ids);
1696 iommu->domains = NULL;
1697 iommu->domain_ids = NULL;
1698 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001699
Weidong Hand9630fe2008-12-08 11:06:32 +08001700 g_iommus[iommu->seq_id] = NULL;
1701
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001702 /* free context mapping */
1703 free_context_table(iommu);
David Woodhouse8a94ade2015-03-24 14:54:56 +00001704
1705#ifdef CONFIG_INTEL_IOMMU_SVM
Lu Baolu765b6a92018-12-10 09:58:55 +08001706 if (pasid_supported(iommu)) {
David Woodhousea222a7f2015-10-07 23:35:18 +01001707 if (ecap_prs(iommu->ecap))
1708 intel_svm_finish_prq(iommu);
David Woodhousea222a7f2015-10-07 23:35:18 +01001709 }
David Woodhouse8a94ade2015-03-24 14:54:56 +00001710#endif
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001711}
1712
Jiang Liuab8dfe22014-07-11 14:19:27 +08001713static struct dmar_domain *alloc_domain(int flags)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001714{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001715 struct dmar_domain *domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001716
1717 domain = alloc_domain_mem();
1718 if (!domain)
1719 return NULL;
1720
Jiang Liuab8dfe22014-07-11 14:19:27 +08001721 memset(domain, 0, sizeof(*domain));
Suresh Siddha4c923d42009-10-02 11:01:24 -07001722 domain->nid = -1;
Jiang Liuab8dfe22014-07-11 14:19:27 +08001723 domain->flags = flags;
Omer Peleg0824c592016-04-20 19:03:35 +03001724 domain->has_iotlb_device = false;
Jiang Liu92d03cc2014-02-19 14:07:28 +08001725 INIT_LIST_HEAD(&domain->devices);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001726
1727 return domain;
1728}
1729
Joerg Roedeld160aca2015-07-22 11:52:53 +02001730/* Must be called with iommu->lock */
1731static int domain_attach_iommu(struct dmar_domain *domain,
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001732 struct intel_iommu *iommu)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001733{
Jiang Liu44bde612014-07-11 14:19:29 +08001734 unsigned long ndomains;
Joerg Roedel55d94042015-07-22 16:50:40 +02001735 int num;
Jiang Liu44bde612014-07-11 14:19:29 +08001736
Joerg Roedel55d94042015-07-22 16:50:40 +02001737 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001738 assert_spin_locked(&iommu->lock);
Jiang Liu44bde612014-07-11 14:19:29 +08001739
Joerg Roedel29a27712015-07-21 17:17:12 +02001740 domain->iommu_refcnt[iommu->seq_id] += 1;
1741 domain->iommu_count += 1;
1742 if (domain->iommu_refcnt[iommu->seq_id] == 1) {
Jiang Liufb170fb2014-07-11 14:19:28 +08001743 ndomains = cap_ndoms(iommu->cap);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001744 num = find_first_zero_bit(iommu->domain_ids, ndomains);
1745
1746 if (num >= ndomains) {
1747 pr_err("%s: No free domain ids\n", iommu->name);
1748 domain->iommu_refcnt[iommu->seq_id] -= 1;
1749 domain->iommu_count -= 1;
Joerg Roedel55d94042015-07-22 16:50:40 +02001750 return -ENOSPC;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07001751 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001752
Joerg Roedeld160aca2015-07-22 11:52:53 +02001753 set_bit(num, iommu->domain_ids);
1754 set_iommu_domain(iommu, num, domain);
Jiang Liufb170fb2014-07-11 14:19:28 +08001755
Joerg Roedeld160aca2015-07-22 11:52:53 +02001756 domain->iommu_did[iommu->seq_id] = num;
1757 domain->nid = iommu->node;
1758
Jiang Liufb170fb2014-07-11 14:19:28 +08001759 domain_update_iommu_cap(domain);
1760 }
Joerg Roedeld160aca2015-07-22 11:52:53 +02001761
Joerg Roedel55d94042015-07-22 16:50:40 +02001762 return 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001763}
1764
1765static int domain_detach_iommu(struct dmar_domain *domain,
1766 struct intel_iommu *iommu)
1767{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06001768 int num, count;
Jiang Liufb170fb2014-07-11 14:19:28 +08001769
Joerg Roedel55d94042015-07-22 16:50:40 +02001770 assert_spin_locked(&device_domain_lock);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001771 assert_spin_locked(&iommu->lock);
Jiang Liufb170fb2014-07-11 14:19:28 +08001772
Joerg Roedel29a27712015-07-21 17:17:12 +02001773 domain->iommu_refcnt[iommu->seq_id] -= 1;
1774 count = --domain->iommu_count;
1775 if (domain->iommu_refcnt[iommu->seq_id] == 0) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02001776 num = domain->iommu_did[iommu->seq_id];
1777 clear_bit(num, iommu->domain_ids);
1778 set_iommu_domain(iommu, num, NULL);
1779
Jiang Liufb170fb2014-07-11 14:19:28 +08001780 domain_update_iommu_cap(domain);
Joerg Roedelc0e8a6c2015-07-21 09:39:46 +02001781 domain->iommu_did[iommu->seq_id] = 0;
Jiang Liufb170fb2014-07-11 14:19:28 +08001782 }
Jiang Liufb170fb2014-07-11 14:19:28 +08001783
1784 return count;
1785}
1786
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001787static struct iova_domain reserved_iova_list;
Mark Gross8a443df2008-03-04 14:59:31 -08001788static struct lock_class_key reserved_rbtree_key;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001789
Joseph Cihula51a63e62011-03-21 11:04:24 -07001790static int dmar_init_reserved_ranges(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001791{
1792 struct pci_dev *pdev = NULL;
1793 struct iova *iova;
1794 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001795
Zhen Leiaa3ac942017-09-21 16:52:45 +01001796 init_iova_domain(&reserved_iova_list, VTD_PAGE_SIZE, IOVA_START_PFN);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001797
Mark Gross8a443df2008-03-04 14:59:31 -08001798 lockdep_set_class(&reserved_iova_list.iova_rbtree_lock,
1799 &reserved_rbtree_key);
1800
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001801 /* IOAPIC ranges shouldn't be accessed by DMA */
1802 iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START),
1803 IOVA_PFN(IOAPIC_RANGE_END));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001804 if (!iova) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001805 pr_err("Reserve IOAPIC range failed\n");
Joseph Cihula51a63e62011-03-21 11:04:24 -07001806 return -ENODEV;
1807 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001808
1809 /* Reserve all PCI MMIO to avoid peer-to-peer access */
1810 for_each_pci_dev(pdev) {
1811 struct resource *r;
1812
1813 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1814 r = &pdev->resource[i];
1815 if (!r->flags || !(r->flags & IORESOURCE_MEM))
1816 continue;
David Woodhouse1a4a4552009-06-28 16:00:42 +01001817 iova = reserve_iova(&reserved_iova_list,
1818 IOVA_PFN(r->start),
1819 IOVA_PFN(r->end));
Joseph Cihula51a63e62011-03-21 11:04:24 -07001820 if (!iova) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06001821 pci_err(pdev, "Reserve iova for %pR failed\n", r);
Joseph Cihula51a63e62011-03-21 11:04:24 -07001822 return -ENODEV;
1823 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001824 }
1825 }
Joseph Cihula51a63e62011-03-21 11:04:24 -07001826 return 0;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001827}
1828
1829static void domain_reserve_special_ranges(struct dmar_domain *domain)
1830{
1831 copy_reserved_iova(&reserved_iova_list, &domain->iovad);
1832}
1833
1834static inline int guestwidth_to_adjustwidth(int gaw)
1835{
1836 int agaw;
1837 int r = (gaw - 12) % 9;
1838
1839 if (r == 0)
1840 agaw = gaw;
1841 else
1842 agaw = gaw + 9 - r;
1843 if (agaw > 64)
1844 agaw = 64;
1845 return agaw;
1846}
1847
Joerg Roedeldc534b22015-07-22 12:44:02 +02001848static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
1849 int guest_width)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001850{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001851 int adjust_width, agaw;
1852 unsigned long sagaw;
Joerg Roedel13cf0172017-08-11 11:40:10 +02001853 int err;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001854
Zhen Leiaa3ac942017-09-21 16:52:45 +01001855 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN);
Joerg Roedel13cf0172017-08-11 11:40:10 +02001856
1857 err = init_iova_flush_queue(&domain->iovad,
1858 iommu_flush_iova, iova_entry_free);
1859 if (err)
1860 return err;
1861
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001862 domain_reserve_special_ranges(domain);
1863
1864 /* calculate AGAW */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001865 if (guest_width > cap_mgaw(iommu->cap))
1866 guest_width = cap_mgaw(iommu->cap);
1867 domain->gaw = guest_width;
1868 adjust_width = guestwidth_to_adjustwidth(guest_width);
1869 agaw = width_to_agaw(adjust_width);
1870 sagaw = cap_sagaw(iommu->cap);
1871 if (!test_bit(agaw, &sagaw)) {
1872 /* hardware doesn't support it, choose a bigger one */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001873 pr_debug("Hardware doesn't support agaw %d\n", agaw);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001874 agaw = find_next_bit(&sagaw, 5, agaw);
1875 if (agaw >= 5)
1876 return -ENODEV;
1877 }
1878 domain->agaw = agaw;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001879
Weidong Han8e6040972008-12-08 15:49:06 +08001880 if (ecap_coherent(iommu->ecap))
1881 domain->iommu_coherency = 1;
1882 else
1883 domain->iommu_coherency = 0;
1884
Sheng Yang58c610b2009-03-18 15:33:05 +08001885 if (ecap_sc_support(iommu->ecap))
1886 domain->iommu_snooping = 1;
1887 else
1888 domain->iommu_snooping = 0;
1889
David Woodhouse214e39a2014-03-19 10:38:49 +00001890 if (intel_iommu_superpage)
1891 domain->iommu_superpage = fls(cap_super_page_val(iommu->cap));
1892 else
1893 domain->iommu_superpage = 0;
1894
Suresh Siddha4c923d42009-10-02 11:01:24 -07001895 domain->nid = iommu->node;
Weidong Hanc7151a82008-12-08 22:51:37 +08001896
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001897 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07001898 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001899 if (!domain->pgd)
1900 return -ENOMEM;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001901 __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001902 return 0;
1903}
1904
1905static void domain_exit(struct dmar_domain *domain)
1906{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06001907 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001908
Joerg Roedeld160aca2015-07-22 11:52:53 +02001909 /* Remove associated devices and clear attached or cached domains */
1910 rcu_read_lock();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001911 domain_remove_dev_info(domain);
Joerg Roedeld160aca2015-07-22 11:52:53 +02001912 rcu_read_unlock();
Jiang Liu92d03cc2014-02-19 14:07:28 +08001913
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001914 /* destroy iovas */
1915 put_iova_domain(&domain->iovad);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001916
David Woodhouseea8ea462014-03-05 17:09:32 +00001917 freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001918
David Woodhouseea8ea462014-03-05 17:09:32 +00001919 dma_free_pagelist(freelist);
1920
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001921 free_domain_mem(domain);
1922}
1923
Lu Baolu7373a8c2018-12-10 09:59:03 +08001924/*
1925 * Get the PASID directory size for scalable mode context entry.
1926 * Value of X in the PDTS field of a scalable mode context entry
1927 * indicates PASID directory with 2^(X + 7) entries.
1928 */
1929static inline unsigned long context_get_sm_pds(struct pasid_table *table)
1930{
1931 int pds, max_pde;
1932
1933 max_pde = table->max_pasid >> PASID_PDE_SHIFT;
1934 pds = find_first_bit((unsigned long *)&max_pde, MAX_NR_PASID_BITS);
1935 if (pds < 7)
1936 return 0;
1937
1938 return pds - 7;
1939}
1940
1941/*
1942 * Set the RID_PASID field of a scalable mode context entry. The
1943 * IOMMU hardware will use the PASID value set in this field for
1944 * DMA translations of DMA requests without PASID.
1945 */
1946static inline void
1947context_set_sm_rid2pasid(struct context_entry *context, unsigned long pasid)
1948{
1949 context->hi |= pasid & ((1 << 20) - 1);
1950 context->hi |= (1 << 20);
1951}
1952
1953/*
1954 * Set the DTE(Device-TLB Enable) field of a scalable mode context
1955 * entry.
1956 */
1957static inline void context_set_sm_dte(struct context_entry *context)
1958{
1959 context->lo |= (1 << 2);
1960}
1961
1962/*
1963 * Set the PRE(Page Request Enable) field of a scalable mode context
1964 * entry.
1965 */
1966static inline void context_set_sm_pre(struct context_entry *context)
1967{
1968 context->lo |= (1 << 4);
1969}
1970
1971/* Convert value to context PASID directory size field coding. */
1972#define context_pdts(pds) (((pds) & 0x7) << 9)
1973
David Woodhouse64ae8922014-03-09 12:52:30 -07001974static int domain_context_mapping_one(struct dmar_domain *domain,
1975 struct intel_iommu *iommu,
Lu Baoluca6e3222018-12-10 09:59:02 +08001976 struct pasid_table *table,
Joerg Roedel28ccce02015-07-21 14:45:31 +02001977 u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001978{
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001979 u16 did = domain->iommu_did[iommu->seq_id];
Joerg Roedel28ccce02015-07-21 14:45:31 +02001980 int translation = CONTEXT_TT_MULTI_LEVEL;
1981 struct device_domain_info *info = NULL;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001982 struct context_entry *context;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001983 unsigned long flags;
Lu Baolu7373a8c2018-12-10 09:59:03 +08001984 int ret;
Joerg Roedel28ccce02015-07-21 14:45:31 +02001985
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02001986 WARN_ON(did == 0);
1987
Joerg Roedel28ccce02015-07-21 14:45:31 +02001988 if (hw_pass_through && domain_type_is_si(domain))
1989 translation = CONTEXT_TT_PASS_THROUGH;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001990
1991 pr_debug("Set context mapping for %02x:%02x.%d\n",
1992 bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001993
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07001994 BUG_ON(!domain->pgd);
Weidong Han5331fe62008-12-08 23:00:00 +08001995
Joerg Roedel55d94042015-07-22 16:50:40 +02001996 spin_lock_irqsave(&device_domain_lock, flags);
1997 spin_lock(&iommu->lock);
1998
1999 ret = -ENOMEM;
David Woodhouse03ecc322015-02-13 14:35:21 +00002000 context = iommu_context_addr(iommu, bus, devfn, 1);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002001 if (!context)
Joerg Roedel55d94042015-07-22 16:50:40 +02002002 goto out_unlock;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002003
Joerg Roedel55d94042015-07-22 16:50:40 +02002004 ret = 0;
2005 if (context_present(context))
2006 goto out_unlock;
Joerg Roedelcf484d02015-06-12 12:21:46 +02002007
Xunlei Pangaec0e862016-12-05 20:09:07 +08002008 /*
2009 * For kdump cases, old valid entries may be cached due to the
2010 * in-flight DMA and copied pgtable, but there is no unmapping
2011 * behaviour for them, thus we need an explicit cache flush for
2012 * the newly-mapped device. For kdump, at this point, the device
2013 * is supposed to finish reset at its driver probe stage, so no
2014 * in-flight DMA will exist, and we don't need to worry anymore
2015 * hereafter.
2016 */
2017 if (context_copied(context)) {
2018 u16 did_old = context_domain_id(context);
2019
Christos Gkekasb117e032017-10-08 23:33:31 +01002020 if (did_old < cap_ndoms(iommu->cap)) {
Xunlei Pangaec0e862016-12-05 20:09:07 +08002021 iommu->flush.flush_context(iommu, did_old,
2022 (((u16)bus) << 8) | devfn,
2023 DMA_CCMD_MASK_NOBIT,
2024 DMA_CCMD_DEVICE_INVL);
KarimAllah Ahmedf73a7ee2017-05-05 11:39:59 -07002025 iommu->flush.flush_iotlb(iommu, did_old, 0, 0,
2026 DMA_TLB_DSI_FLUSH);
2027 }
Xunlei Pangaec0e862016-12-05 20:09:07 +08002028 }
2029
Joerg Roedelde24e552015-07-21 14:53:04 +02002030 context_clear_entry(context);
Weidong Hanea6606b2008-12-08 23:08:15 +08002031
Lu Baolu7373a8c2018-12-10 09:59:03 +08002032 if (sm_supported(iommu)) {
2033 unsigned long pds;
Joerg Roedelde24e552015-07-21 14:53:04 +02002034
Lu Baolu7373a8c2018-12-10 09:59:03 +08002035 WARN_ON(!table);
2036
2037 /* Setup the PASID DIR pointer: */
2038 pds = context_get_sm_pds(table);
2039 context->lo = (u64)virt_to_phys(table->table) |
2040 context_pdts(pds);
2041
2042 /* Setup the RID_PASID field: */
2043 context_set_sm_rid2pasid(context, PASID_RID2PASID);
2044
2045 /*
2046 * Setup the Device-TLB enable bit and Page request
2047 * Enable bit:
2048 */
David Woodhouse64ae8922014-03-09 12:52:30 -07002049 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
David Woodhouseb16d0cb2015-10-12 14:17:37 +01002050 if (info && info->ats_supported)
Lu Baolu7373a8c2018-12-10 09:59:03 +08002051 context_set_sm_dte(context);
2052 if (info && info->pri_supported)
2053 context_set_sm_pre(context);
Joerg Roedelde24e552015-07-21 14:53:04 +02002054 } else {
Lu Baolu7373a8c2018-12-10 09:59:03 +08002055 struct dma_pte *pgd = domain->pgd;
2056 int agaw;
2057
2058 context_set_domain_id(context, did);
2059 context_set_translation_type(context, translation);
2060
2061 if (translation != CONTEXT_TT_PASS_THROUGH) {
2062 /*
2063 * Skip top levels of page tables for iommu which has
2064 * less agaw than default. Unnecessary for PT mode.
2065 */
2066 for (agaw = domain->agaw; agaw > iommu->agaw; agaw--) {
2067 ret = -ENOMEM;
2068 pgd = phys_to_virt(dma_pte_addr(pgd));
2069 if (!dma_pte_present(pgd))
2070 goto out_unlock;
2071 }
2072
2073 info = iommu_support_dev_iotlb(domain, iommu, bus, devfn);
2074 if (info && info->ats_supported)
2075 translation = CONTEXT_TT_DEV_IOTLB;
2076 else
2077 translation = CONTEXT_TT_MULTI_LEVEL;
2078
2079 context_set_address_root(context, virt_to_phys(pgd));
2080 context_set_address_width(context, agaw);
2081 } else {
2082 /*
2083 * In pass through mode, AW must be programmed to
2084 * indicate the largest AGAW value supported by
2085 * hardware. And ASR is ignored by hardware.
2086 */
2087 context_set_address_width(context, iommu->msagaw);
2088 }
Yu Zhao93a23a72009-05-18 13:51:37 +08002089 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07002090
Mark McLoughlinc07e7d22008-11-21 16:54:46 +00002091 context_set_fault_enable(context);
2092 context_set_present(context);
Weidong Han5331fe62008-12-08 23:00:00 +08002093 domain_flush_cache(domain, context, sizeof(*context));
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002094
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002095 /*
2096 * It's a non-present to present mapping. If hardware doesn't cache
2097 * non-present entry we only need to flush the write-buffer. If the
2098 * _does_ cache non-present entries, then it does so in the special
2099 * domain #0, which we have to flush:
2100 */
2101 if (cap_caching_mode(iommu->cap)) {
2102 iommu->flush.flush_context(iommu, 0,
2103 (((u16)bus) << 8) | devfn,
2104 DMA_CCMD_MASK_NOBIT,
2105 DMA_CCMD_DEVICE_INVL);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002106 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002107 } else {
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002108 iommu_flush_write_buffer(iommu);
David Woodhouse4c25a2c2009-05-10 17:16:06 +01002109 }
Yu Zhao93a23a72009-05-18 13:51:37 +08002110 iommu_enable_dev_iotlb(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08002111
Joerg Roedel55d94042015-07-22 16:50:40 +02002112 ret = 0;
2113
2114out_unlock:
2115 spin_unlock(&iommu->lock);
2116 spin_unlock_irqrestore(&device_domain_lock, flags);
Jiang Liufb170fb2014-07-11 14:19:28 +08002117
Wei Yang5c365d12016-07-13 13:53:21 +00002118 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002119}
2120
Alex Williamson579305f2014-07-03 09:51:43 -06002121struct domain_context_mapping_data {
2122 struct dmar_domain *domain;
2123 struct intel_iommu *iommu;
Lu Baoluca6e3222018-12-10 09:59:02 +08002124 struct pasid_table *table;
Alex Williamson579305f2014-07-03 09:51:43 -06002125};
2126
2127static int domain_context_mapping_cb(struct pci_dev *pdev,
2128 u16 alias, void *opaque)
2129{
2130 struct domain_context_mapping_data *data = opaque;
2131
2132 return domain_context_mapping_one(data->domain, data->iommu,
Lu Baoluca6e3222018-12-10 09:59:02 +08002133 data->table, PCI_BUS_NUM(alias),
2134 alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06002135}
2136
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002137static int
Joerg Roedel28ccce02015-07-21 14:45:31 +02002138domain_context_mapping(struct dmar_domain *domain, struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002139{
Lu Baoluca6e3222018-12-10 09:59:02 +08002140 struct domain_context_mapping_data data;
2141 struct pasid_table *table;
David Woodhouse64ae8922014-03-09 12:52:30 -07002142 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002143 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002144
David Woodhousee1f167f2014-03-09 15:24:46 -07002145 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse64ae8922014-03-09 12:52:30 -07002146 if (!iommu)
2147 return -ENODEV;
2148
Lu Baoluca6e3222018-12-10 09:59:02 +08002149 table = intel_pasid_get_table(dev);
2150
Alex Williamson579305f2014-07-03 09:51:43 -06002151 if (!dev_is_pci(dev))
Lu Baoluca6e3222018-12-10 09:59:02 +08002152 return domain_context_mapping_one(domain, iommu, table,
2153 bus, devfn);
Alex Williamson579305f2014-07-03 09:51:43 -06002154
2155 data.domain = domain;
2156 data.iommu = iommu;
Lu Baoluca6e3222018-12-10 09:59:02 +08002157 data.table = table;
Alex Williamson579305f2014-07-03 09:51:43 -06002158
2159 return pci_for_each_dma_alias(to_pci_dev(dev),
2160 &domain_context_mapping_cb, &data);
2161}
2162
2163static int domain_context_mapped_cb(struct pci_dev *pdev,
2164 u16 alias, void *opaque)
2165{
2166 struct intel_iommu *iommu = opaque;
2167
2168 return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002169}
2170
David Woodhousee1f167f2014-03-09 15:24:46 -07002171static int domain_context_mapped(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002172{
Weidong Han5331fe62008-12-08 23:00:00 +08002173 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002174 u8 bus, devfn;
Weidong Han5331fe62008-12-08 23:00:00 +08002175
David Woodhousee1f167f2014-03-09 15:24:46 -07002176 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Han5331fe62008-12-08 23:00:00 +08002177 if (!iommu)
2178 return -ENODEV;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002179
Alex Williamson579305f2014-07-03 09:51:43 -06002180 if (!dev_is_pci(dev))
2181 return device_context_mapped(iommu, bus, devfn);
David Woodhousee1f167f2014-03-09 15:24:46 -07002182
Alex Williamson579305f2014-07-03 09:51:43 -06002183 return !pci_for_each_dma_alias(to_pci_dev(dev),
2184 domain_context_mapped_cb, iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002185}
2186
Fenghua Yuf5329592009-08-04 15:09:37 -07002187/* Returns a number of VTD pages, but aligned to MM page size */
2188static inline unsigned long aligned_nrpages(unsigned long host_addr,
2189 size_t size)
2190{
2191 host_addr &= ~PAGE_MASK;
2192 return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT;
2193}
2194
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002195/* Return largest possible superpage level for a given mapping */
2196static inline int hardware_largepage_caps(struct dmar_domain *domain,
2197 unsigned long iov_pfn,
2198 unsigned long phy_pfn,
2199 unsigned long pages)
2200{
2201 int support, level = 1;
2202 unsigned long pfnmerge;
2203
2204 support = domain->iommu_superpage;
2205
2206 /* To use a large page, the virtual *and* physical addresses
2207 must be aligned to 2MiB/1GiB/etc. Lower bits set in either
2208 of them will mean we have to use smaller pages. So just
2209 merge them and check both at once. */
2210 pfnmerge = iov_pfn | phy_pfn;
2211
2212 while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) {
2213 pages >>= VTD_STRIDE_SHIFT;
2214 if (!pages)
2215 break;
2216 pfnmerge >>= VTD_STRIDE_SHIFT;
2217 level++;
2218 support--;
2219 }
2220 return level;
2221}
2222
David Woodhouse9051aa02009-06-29 12:30:54 +01002223static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2224 struct scatterlist *sg, unsigned long phys_pfn,
2225 unsigned long nr_pages, int prot)
David Woodhousee1605492009-06-29 11:17:38 +01002226{
2227 struct dma_pte *first_pte = NULL, *pte = NULL;
David Woodhouse9051aa02009-06-29 12:30:54 +01002228 phys_addr_t uninitialized_var(pteval);
Jiang Liucc4f14a2014-11-26 09:42:10 +08002229 unsigned long sg_res = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002230 unsigned int largepage_lvl = 0;
2231 unsigned long lvl_pages = 0;
David Woodhousee1605492009-06-29 11:17:38 +01002232
Jiang Liu162d1b12014-07-11 14:19:35 +08002233 BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1));
David Woodhousee1605492009-06-29 11:17:38 +01002234
2235 if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0)
2236 return -EINVAL;
2237
2238 prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP;
2239
Jiang Liucc4f14a2014-11-26 09:42:10 +08002240 if (!sg) {
2241 sg_res = nr_pages;
David Woodhouse9051aa02009-06-29 12:30:54 +01002242 pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot;
2243 }
2244
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002245 while (nr_pages > 0) {
David Woodhousec85994e2009-07-01 19:21:24 +01002246 uint64_t tmp;
2247
David Woodhousee1605492009-06-29 11:17:38 +01002248 if (!sg_res) {
Robin Murphy29a90b72017-09-28 15:14:01 +01002249 unsigned int pgoff = sg->offset & ~PAGE_MASK;
2250
Fenghua Yuf5329592009-08-04 15:09:37 -07002251 sg_res = aligned_nrpages(sg->offset, sg->length);
Robin Murphy29a90b72017-09-28 15:14:01 +01002252 sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + pgoff;
David Woodhousee1605492009-06-29 11:17:38 +01002253 sg->dma_length = sg->length;
Robin Murphy29a90b72017-09-28 15:14:01 +01002254 pteval = (sg_phys(sg) - pgoff) | prot;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002255 phys_pfn = pteval >> VTD_PAGE_SHIFT;
David Woodhousee1605492009-06-29 11:17:38 +01002256 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002257
David Woodhousee1605492009-06-29 11:17:38 +01002258 if (!pte) {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002259 largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res);
2260
David Woodhouse5cf0a762014-03-19 16:07:49 +00002261 first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl);
David Woodhousee1605492009-06-29 11:17:38 +01002262 if (!pte)
2263 return -ENOMEM;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002264 /* It is large page*/
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002265 if (largepage_lvl > 1) {
Christian Zanderba2374f2015-06-10 09:41:45 -07002266 unsigned long nr_superpages, end_pfn;
2267
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002268 pteval |= DMA_PTE_LARGE_PAGE;
Jiang Liud41a4ad2014-07-11 14:19:34 +08002269 lvl_pages = lvl_to_nr_pages(largepage_lvl);
Christian Zanderba2374f2015-06-10 09:41:45 -07002270
2271 nr_superpages = sg_res / lvl_pages;
2272 end_pfn = iov_pfn + nr_superpages * lvl_pages - 1;
2273
Jiang Liud41a4ad2014-07-11 14:19:34 +08002274 /*
2275 * Ensure that old small page tables are
Christian Zanderba2374f2015-06-10 09:41:45 -07002276 * removed to make room for superpage(s).
David Dillowbc24c572017-06-28 19:42:23 -07002277 * We're adding new large pages, so make sure
2278 * we don't remove their parent tables.
Jiang Liud41a4ad2014-07-11 14:19:34 +08002279 */
David Dillowbc24c572017-06-28 19:42:23 -07002280 dma_pte_free_pagetable(domain, iov_pfn, end_pfn,
2281 largepage_lvl + 1);
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002282 } else {
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002283 pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE;
Woodhouse, David6491d4d2012-12-19 13:25:35 +00002284 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002285
David Woodhousee1605492009-06-29 11:17:38 +01002286 }
2287 /* We don't need lock here, nobody else
2288 * touches the iova range
2289 */
David Woodhouse7766a3f2009-07-01 20:27:03 +01002290 tmp = cmpxchg64_local(&pte->val, 0ULL, pteval);
David Woodhousec85994e2009-07-01 19:21:24 +01002291 if (tmp) {
David Woodhouse1bf20f02009-06-29 22:06:43 +01002292 static int dumps = 5;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002293 pr_crit("ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n",
2294 iov_pfn, tmp, (unsigned long long)pteval);
David Woodhouse1bf20f02009-06-29 22:06:43 +01002295 if (dumps) {
2296 dumps--;
2297 debug_dma_dump_mappings(NULL);
2298 }
2299 WARN_ON(1);
2300 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002301
2302 lvl_pages = lvl_to_nr_pages(largepage_lvl);
2303
2304 BUG_ON(nr_pages < lvl_pages);
2305 BUG_ON(sg_res < lvl_pages);
2306
2307 nr_pages -= lvl_pages;
2308 iov_pfn += lvl_pages;
2309 phys_pfn += lvl_pages;
2310 pteval += lvl_pages * VTD_PAGE_SIZE;
2311 sg_res -= lvl_pages;
2312
2313 /* If the next PTE would be the first in a new page, then we
2314 need to flush the cache on the entries we've just written.
2315 And then we'll need to recalculate 'pte', so clear it and
2316 let it get set again in the if (!pte) block above.
2317
2318 If we're done (!nr_pages) we need to flush the cache too.
2319
2320 Also if we've been setting superpages, we may need to
2321 recalculate 'pte' and switch back to smaller pages for the
2322 end of the mapping, if the trailing size is not enough to
2323 use another superpage (i.e. sg_res < lvl_pages). */
David Woodhousee1605492009-06-29 11:17:38 +01002324 pte++;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002325 if (!nr_pages || first_pte_in_page(pte) ||
2326 (largepage_lvl > 1 && sg_res < lvl_pages)) {
David Woodhousee1605492009-06-29 11:17:38 +01002327 domain_flush_cache(domain, first_pte,
2328 (void *)pte - (void *)first_pte);
2329 pte = NULL;
2330 }
Youquan Song6dd9a7c2011-05-25 19:13:49 +01002331
2332 if (!sg_res && nr_pages)
David Woodhousee1605492009-06-29 11:17:38 +01002333 sg = sg_next(sg);
2334 }
2335 return 0;
2336}
2337
Peter Xu87684fd2018-05-04 10:34:53 +08002338static int domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2339 struct scatterlist *sg, unsigned long phys_pfn,
2340 unsigned long nr_pages, int prot)
2341{
2342 int ret;
2343 struct intel_iommu *iommu;
2344
2345 /* Do the real mapping first */
2346 ret = __domain_mapping(domain, iov_pfn, sg, phys_pfn, nr_pages, prot);
2347 if (ret)
2348 return ret;
2349
2350 /* Notify about the new mapping */
2351 if (domain_type_is_vm(domain)) {
2352 /* VM typed domains can have more than one IOMMUs */
2353 int iommu_id;
2354 for_each_domain_iommu(iommu_id, domain) {
2355 iommu = g_iommus[iommu_id];
2356 __mapping_notify_one(iommu, domain, iov_pfn, nr_pages);
2357 }
2358 } else {
2359 /* General domains only have one IOMMU */
2360 iommu = domain_get_iommu(domain);
2361 __mapping_notify_one(iommu, domain, iov_pfn, nr_pages);
2362 }
2363
2364 return 0;
2365}
2366
David Woodhouse9051aa02009-06-29 12:30:54 +01002367static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2368 struct scatterlist *sg, unsigned long nr_pages,
2369 int prot)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002370{
Peter Xu87684fd2018-05-04 10:34:53 +08002371 return domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot);
David Woodhouse9051aa02009-06-29 12:30:54 +01002372}
Fenghua Yu5b6985c2008-10-16 18:02:32 -07002373
David Woodhouse9051aa02009-06-29 12:30:54 +01002374static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn,
2375 unsigned long phys_pfn, unsigned long nr_pages,
2376 int prot)
2377{
Peter Xu87684fd2018-05-04 10:34:53 +08002378 return domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002379}
2380
Joerg Roedel2452d9d2015-07-23 16:20:14 +02002381static void domain_context_clear_one(struct intel_iommu *iommu, u8 bus, u8 devfn)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002382{
Filippo Sironi50822192017-08-31 10:58:11 +02002383 unsigned long flags;
2384 struct context_entry *context;
2385 u16 did_old;
2386
Weidong Hanc7151a82008-12-08 22:51:37 +08002387 if (!iommu)
2388 return;
Weidong Han8c11e792008-12-08 15:29:22 +08002389
Filippo Sironi50822192017-08-31 10:58:11 +02002390 spin_lock_irqsave(&iommu->lock, flags);
2391 context = iommu_context_addr(iommu, bus, devfn, 0);
2392 if (!context) {
2393 spin_unlock_irqrestore(&iommu->lock, flags);
2394 return;
2395 }
2396 did_old = context_domain_id(context);
2397 context_clear_entry(context);
2398 __iommu_flush_cache(iommu, context, sizeof(*context));
2399 spin_unlock_irqrestore(&iommu->lock, flags);
2400 iommu->flush.flush_context(iommu,
2401 did_old,
2402 (((u16)bus) << 8) | devfn,
2403 DMA_CCMD_MASK_NOBIT,
2404 DMA_CCMD_DEVICE_INVL);
2405 iommu->flush.flush_iotlb(iommu,
2406 did_old,
2407 0,
2408 0,
2409 DMA_TLB_DSI_FLUSH);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002410}
2411
David Woodhouse109b9b02012-05-25 17:43:02 +01002412static inline void unlink_domain_info(struct device_domain_info *info)
2413{
2414 assert_spin_locked(&device_domain_lock);
2415 list_del(&info->link);
2416 list_del(&info->global);
2417 if (info->dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002418 info->dev->archdata.iommu = NULL;
David Woodhouse109b9b02012-05-25 17:43:02 +01002419}
2420
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002421static void domain_remove_dev_info(struct dmar_domain *domain)
2422{
Yijing Wang3a74ca02014-05-20 20:37:47 +08002423 struct device_domain_info *info, *tmp;
Jiang Liufb170fb2014-07-11 14:19:28 +08002424 unsigned long flags;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002425
2426 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel76f45fe2015-07-21 18:25:11 +02002427 list_for_each_entry_safe(info, tmp, &domain->devices, link)
Joerg Roedel127c7612015-07-23 17:44:46 +02002428 __dmar_remove_one_dev_info(info);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002429 spin_unlock_irqrestore(&device_domain_lock, flags);
2430}
2431
2432/*
2433 * find_domain
David Woodhouse1525a292014-03-06 16:19:30 +00002434 * Note: we use struct device->archdata.iommu stores the info
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002435 */
David Woodhouse1525a292014-03-06 16:19:30 +00002436static struct dmar_domain *find_domain(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002437{
2438 struct device_domain_info *info;
2439
2440 /* No lock here, assumes no domain exit in normal case */
David Woodhouse1525a292014-03-06 16:19:30 +00002441 info = dev->archdata.iommu;
Peter Xub316d022017-05-22 18:28:51 +08002442 if (likely(info))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002443 return info->domain;
2444 return NULL;
2445}
2446
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002447static inline struct device_domain_info *
Jiang Liu745f2582014-02-19 14:07:26 +08002448dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
2449{
2450 struct device_domain_info *info;
2451
2452 list_for_each_entry(info, &device_domain_list, global)
David Woodhouse41e80dca2014-03-09 13:55:54 -07002453 if (info->iommu->segment == segment && info->bus == bus &&
Jiang Liu745f2582014-02-19 14:07:26 +08002454 info->devfn == devfn)
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002455 return info;
Jiang Liu745f2582014-02-19 14:07:26 +08002456
2457 return NULL;
2458}
2459
Joerg Roedel5db31562015-07-22 12:40:43 +02002460static struct dmar_domain *dmar_insert_one_dev_info(struct intel_iommu *iommu,
2461 int bus, int devfn,
2462 struct device *dev,
2463 struct dmar_domain *domain)
Jiang Liu745f2582014-02-19 14:07:26 +08002464{
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002465 struct dmar_domain *found = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002466 struct device_domain_info *info;
2467 unsigned long flags;
Joerg Roedeld160aca2015-07-22 11:52:53 +02002468 int ret;
Jiang Liu745f2582014-02-19 14:07:26 +08002469
2470 info = alloc_devinfo_mem();
2471 if (!info)
David Woodhouseb718cd32014-03-09 13:11:33 -07002472 return NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002473
Jiang Liu745f2582014-02-19 14:07:26 +08002474 info->bus = bus;
2475 info->devfn = devfn;
David Woodhouseb16d0cb2015-10-12 14:17:37 +01002476 info->ats_supported = info->pasid_supported = info->pri_supported = 0;
2477 info->ats_enabled = info->pasid_enabled = info->pri_enabled = 0;
2478 info->ats_qdep = 0;
Jiang Liu745f2582014-02-19 14:07:26 +08002479 info->dev = dev;
2480 info->domain = domain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002481 info->iommu = iommu;
Lu Baolucc580e42018-07-14 15:46:59 +08002482 info->pasid_table = NULL;
Jiang Liu745f2582014-02-19 14:07:26 +08002483
David Woodhouseb16d0cb2015-10-12 14:17:37 +01002484 if (dev && dev_is_pci(dev)) {
2485 struct pci_dev *pdev = to_pci_dev(info->dev);
2486
Lu Baolud8b85912019-03-01 11:23:10 +08002487 if (!pdev->untrusted &&
2488 !pci_ats_disabled() &&
Gil Kupfercef74402018-05-10 17:56:02 -05002489 ecap_dev_iotlb_support(iommu->ecap) &&
David Woodhouseb16d0cb2015-10-12 14:17:37 +01002490 pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS) &&
2491 dmar_find_matched_atsr_unit(pdev))
2492 info->ats_supported = 1;
2493
Lu Baolu765b6a92018-12-10 09:58:55 +08002494 if (sm_supported(iommu)) {
2495 if (pasid_supported(iommu)) {
David Woodhouseb16d0cb2015-10-12 14:17:37 +01002496 int features = pci_pasid_features(pdev);
2497 if (features >= 0)
2498 info->pasid_supported = features | 1;
2499 }
2500
2501 if (info->ats_supported && ecap_prs(iommu->ecap) &&
2502 pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI))
2503 info->pri_supported = 1;
2504 }
2505 }
2506
Jiang Liu745f2582014-02-19 14:07:26 +08002507 spin_lock_irqsave(&device_domain_lock, flags);
2508 if (dev)
David Woodhouse0bcb3e22014-03-06 17:12:03 +00002509 found = find_domain(dev);
Joerg Roedelf303e502015-07-23 18:37:13 +02002510
2511 if (!found) {
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002512 struct device_domain_info *info2;
David Woodhouse41e80dca2014-03-09 13:55:54 -07002513 info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn);
Joerg Roedelf303e502015-07-23 18:37:13 +02002514 if (info2) {
2515 found = info2->domain;
2516 info2->dev = dev;
2517 }
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002518 }
Joerg Roedelf303e502015-07-23 18:37:13 +02002519
Jiang Liu745f2582014-02-19 14:07:26 +08002520 if (found) {
2521 spin_unlock_irqrestore(&device_domain_lock, flags);
2522 free_devinfo_mem(info);
David Woodhouseb718cd32014-03-09 13:11:33 -07002523 /* Caller must free the original domain */
2524 return found;
Jiang Liu745f2582014-02-19 14:07:26 +08002525 }
2526
Joerg Roedeld160aca2015-07-22 11:52:53 +02002527 spin_lock(&iommu->lock);
2528 ret = domain_attach_iommu(domain, iommu);
2529 spin_unlock(&iommu->lock);
2530
2531 if (ret) {
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002532 spin_unlock_irqrestore(&device_domain_lock, flags);
Sudip Mukherjee499f3aa2015-09-18 16:27:07 +05302533 free_devinfo_mem(info);
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002534 return NULL;
2535 }
Joerg Roedelc6c2ceb2015-07-22 13:11:53 +02002536
David Woodhouseb718cd32014-03-09 13:11:33 -07002537 list_add(&info->link, &domain->devices);
2538 list_add(&info->global, &device_domain_list);
2539 if (dev)
2540 dev->archdata.iommu = info;
Lu Baolu0bbeb012018-12-10 09:58:56 +08002541 spin_unlock_irqrestore(&device_domain_lock, flags);
Lu Baolua7fc93f2018-07-14 15:47:00 +08002542
Lu Baolu0bbeb012018-12-10 09:58:56 +08002543 /* PASID table is mandatory for a PCI device in scalable mode. */
2544 if (dev && dev_is_pci(dev) && sm_supported(iommu)) {
Lu Baolua7fc93f2018-07-14 15:47:00 +08002545 ret = intel_pasid_alloc_table(dev);
2546 if (ret) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06002547 dev_err(dev, "PASID table allocation failed\n");
Bjorn Helgaas71753232019-02-08 16:06:15 -06002548 dmar_remove_one_dev_info(dev);
Lu Baolu0bbeb012018-12-10 09:58:56 +08002549 return NULL;
Lu Baolua7fc93f2018-07-14 15:47:00 +08002550 }
Lu Baoluef848b72018-12-10 09:59:01 +08002551
2552 /* Setup the PASID entry for requests without PASID: */
2553 spin_lock(&iommu->lock);
2554 if (hw_pass_through && domain_type_is_si(domain))
2555 ret = intel_pasid_setup_pass_through(iommu, domain,
2556 dev, PASID_RID2PASID);
2557 else
2558 ret = intel_pasid_setup_second_level(iommu, domain,
2559 dev, PASID_RID2PASID);
2560 spin_unlock(&iommu->lock);
2561 if (ret) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06002562 dev_err(dev, "Setup RID2PASID failed\n");
Bjorn Helgaas71753232019-02-08 16:06:15 -06002563 dmar_remove_one_dev_info(dev);
Lu Baoluef848b72018-12-10 09:59:01 +08002564 return NULL;
Lu Baolua7fc93f2018-07-14 15:47:00 +08002565 }
2566 }
David Woodhouseb718cd32014-03-09 13:11:33 -07002567
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002568 if (dev && domain_context_mapping(domain, dev)) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06002569 dev_err(dev, "Domain context map failed\n");
Bjorn Helgaas71753232019-02-08 16:06:15 -06002570 dmar_remove_one_dev_info(dev);
Joerg Roedelcc4e2572015-07-22 10:04:36 +02002571 return NULL;
2572 }
2573
David Woodhouseb718cd32014-03-09 13:11:33 -07002574 return domain;
Jiang Liu745f2582014-02-19 14:07:26 +08002575}
2576
Alex Williamson579305f2014-07-03 09:51:43 -06002577static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque)
2578{
2579 *(u16 *)opaque = alias;
2580 return 0;
2581}
2582
Joerg Roedel76208352016-08-25 14:25:12 +02002583static struct dmar_domain *find_or_alloc_domain(struct device *dev, int gaw)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002584{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06002585 struct device_domain_info *info;
Joerg Roedel76208352016-08-25 14:25:12 +02002586 struct dmar_domain *domain = NULL;
Alex Williamson579305f2014-07-03 09:51:43 -06002587 struct intel_iommu *iommu;
Lu Baolufcc35c62018-05-04 13:08:17 +08002588 u16 dma_alias;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002589 unsigned long flags;
Yijing Wangaa4d0662014-05-26 20:14:06 +08002590 u8 bus, devfn;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002591
David Woodhouse146922e2014-03-09 15:44:17 -07002592 iommu = device_to_iommu(dev, &bus, &devfn);
2593 if (!iommu)
Alex Williamson579305f2014-07-03 09:51:43 -06002594 return NULL;
2595
2596 if (dev_is_pci(dev)) {
2597 struct pci_dev *pdev = to_pci_dev(dev);
2598
2599 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2600
2601 spin_lock_irqsave(&device_domain_lock, flags);
2602 info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus),
2603 PCI_BUS_NUM(dma_alias),
2604 dma_alias & 0xff);
2605 if (info) {
2606 iommu = info->iommu;
2607 domain = info->domain;
2608 }
2609 spin_unlock_irqrestore(&device_domain_lock, flags);
2610
Joerg Roedel76208352016-08-25 14:25:12 +02002611 /* DMA alias already has a domain, use it */
Alex Williamson579305f2014-07-03 09:51:43 -06002612 if (info)
Joerg Roedel76208352016-08-25 14:25:12 +02002613 goto out;
Alex Williamson579305f2014-07-03 09:51:43 -06002614 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002615
David Woodhouse146922e2014-03-09 15:44:17 -07002616 /* Allocate and initialize new domain for the device */
Jiang Liuab8dfe22014-07-11 14:19:27 +08002617 domain = alloc_domain(0);
Jiang Liu745f2582014-02-19 14:07:26 +08002618 if (!domain)
Alex Williamson579305f2014-07-03 09:51:43 -06002619 return NULL;
Joerg Roedeldc534b22015-07-22 12:44:02 +02002620 if (domain_init(domain, iommu, gaw)) {
Alex Williamson579305f2014-07-03 09:51:43 -06002621 domain_exit(domain);
2622 return NULL;
2623 }
2624
Joerg Roedel76208352016-08-25 14:25:12 +02002625out:
Alex Williamson579305f2014-07-03 09:51:43 -06002626
Joerg Roedel76208352016-08-25 14:25:12 +02002627 return domain;
2628}
2629
2630static struct dmar_domain *set_domain_for_dev(struct device *dev,
2631 struct dmar_domain *domain)
2632{
2633 struct intel_iommu *iommu;
2634 struct dmar_domain *tmp;
2635 u16 req_id, dma_alias;
2636 u8 bus, devfn;
2637
2638 iommu = device_to_iommu(dev, &bus, &devfn);
2639 if (!iommu)
2640 return NULL;
2641
2642 req_id = ((u16)bus << 8) | devfn;
2643
2644 if (dev_is_pci(dev)) {
2645 struct pci_dev *pdev = to_pci_dev(dev);
2646
2647 pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias);
2648
2649 /* register PCI DMA alias device */
2650 if (req_id != dma_alias) {
2651 tmp = dmar_insert_one_dev_info(iommu, PCI_BUS_NUM(dma_alias),
2652 dma_alias & 0xff, NULL, domain);
2653
2654 if (!tmp || tmp != domain)
2655 return tmp;
Alex Williamson579305f2014-07-03 09:51:43 -06002656 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002657 }
2658
Joerg Roedel5db31562015-07-22 12:40:43 +02002659 tmp = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
Joerg Roedel76208352016-08-25 14:25:12 +02002660 if (!tmp || tmp != domain)
2661 return tmp;
Alex Williamson579305f2014-07-03 09:51:43 -06002662
Joerg Roedel76208352016-08-25 14:25:12 +02002663 return domain;
2664}
2665
2666static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
2667{
2668 struct dmar_domain *domain, *tmp;
2669
2670 domain = find_domain(dev);
2671 if (domain)
2672 goto out;
2673
2674 domain = find_or_alloc_domain(dev, gaw);
2675 if (!domain)
2676 goto out;
2677
2678 tmp = set_domain_for_dev(dev, domain);
2679 if (!tmp || domain != tmp) {
Alex Williamson579305f2014-07-03 09:51:43 -06002680 domain_exit(domain);
2681 domain = tmp;
2682 }
David Woodhouseb718cd32014-03-09 13:11:33 -07002683
Joerg Roedel76208352016-08-25 14:25:12 +02002684out:
2685
David Woodhouseb718cd32014-03-09 13:11:33 -07002686 return domain;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002687}
2688
David Woodhouseb2132032009-06-26 18:50:28 +01002689static int iommu_domain_identity_map(struct dmar_domain *domain,
2690 unsigned long long start,
2691 unsigned long long end)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002692{
David Woodhousec5395d52009-06-28 16:35:56 +01002693 unsigned long first_vpfn = start >> VTD_PAGE_SHIFT;
2694 unsigned long last_vpfn = end >> VTD_PAGE_SHIFT;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002695
David Woodhousec5395d52009-06-28 16:35:56 +01002696 if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn),
2697 dma_to_mm_pfn(last_vpfn))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002698 pr_err("Reserving iova failed\n");
David Woodhouseb2132032009-06-26 18:50:28 +01002699 return -ENOMEM;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002700 }
2701
Joerg Roedelaf1089c2015-07-21 15:45:19 +02002702 pr_debug("Mapping reserved region %llx-%llx\n", start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002703 /*
2704 * RMRR range might have overlap with physical memory range,
2705 * clear it first
2706 */
David Woodhousec5395d52009-06-28 16:35:56 +01002707 dma_pte_clear_range(domain, first_vpfn, last_vpfn);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002708
Peter Xu87684fd2018-05-04 10:34:53 +08002709 return __domain_mapping(domain, first_vpfn, NULL,
2710 first_vpfn, last_vpfn - first_vpfn + 1,
2711 DMA_PTE_READ|DMA_PTE_WRITE);
David Woodhouseb2132032009-06-26 18:50:28 +01002712}
2713
Joerg Roedeld66ce542015-09-23 19:00:10 +02002714static int domain_prepare_identity_map(struct device *dev,
2715 struct dmar_domain *domain,
2716 unsigned long long start,
2717 unsigned long long end)
David Woodhouseb2132032009-06-26 18:50:28 +01002718{
David Woodhouse19943b02009-08-04 16:19:20 +01002719 /* For _hardware_ passthrough, don't bother. But for software
2720 passthrough, we do it anyway -- it may indicate a memory
2721 range which is reserved in E820, so which didn't get set
2722 up to start with in si_domain */
2723 if (domain == si_domain && hw_pass_through) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06002724 dev_warn(dev, "Ignoring identity map for HW passthrough [0x%Lx - 0x%Lx]\n",
2725 start, end);
David Woodhouse19943b02009-08-04 16:19:20 +01002726 return 0;
2727 }
2728
Bjorn Helgaas932a6522019-02-08 16:06:00 -06002729 dev_info(dev, "Setting identity map [0x%Lx - 0x%Lx]\n", start, end);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002730
David Woodhouse5595b522009-12-02 09:21:55 +00002731 if (end < start) {
2732 WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n"
2733 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2734 dmi_get_system_info(DMI_BIOS_VENDOR),
2735 dmi_get_system_info(DMI_BIOS_VERSION),
2736 dmi_get_system_info(DMI_PRODUCT_VERSION));
Joerg Roedeld66ce542015-09-23 19:00:10 +02002737 return -EIO;
David Woodhouse5595b522009-12-02 09:21:55 +00002738 }
2739
David Woodhouse2ff729f2009-08-26 14:25:41 +01002740 if (end >> agaw_to_width(domain->agaw)) {
2741 WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n"
2742 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
2743 agaw_to_width(domain->agaw),
2744 dmi_get_system_info(DMI_BIOS_VENDOR),
2745 dmi_get_system_info(DMI_BIOS_VERSION),
2746 dmi_get_system_info(DMI_PRODUCT_VERSION));
Joerg Roedeld66ce542015-09-23 19:00:10 +02002747 return -EIO;
David Woodhouse2ff729f2009-08-26 14:25:41 +01002748 }
David Woodhouse19943b02009-08-04 16:19:20 +01002749
Joerg Roedeld66ce542015-09-23 19:00:10 +02002750 return iommu_domain_identity_map(domain, start, end);
2751}
2752
2753static int iommu_prepare_identity_map(struct device *dev,
2754 unsigned long long start,
2755 unsigned long long end)
2756{
2757 struct dmar_domain *domain;
2758 int ret;
2759
2760 domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
2761 if (!domain)
2762 return -ENOMEM;
2763
2764 ret = domain_prepare_identity_map(dev, domain, start, end);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002765 if (ret)
Joerg Roedeld66ce542015-09-23 19:00:10 +02002766 domain_exit(domain);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002767
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002768 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002769}
2770
2771static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr,
David Woodhouse0b9d9752014-03-09 15:48:15 -07002772 struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002773{
David Woodhouse0b9d9752014-03-09 15:48:15 -07002774 if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002775 return 0;
David Woodhouse0b9d9752014-03-09 15:48:15 -07002776 return iommu_prepare_identity_map(dev, rmrr->base_address,
2777 rmrr->end_address);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07002778}
2779
Suresh Siddhad3f13812011-08-23 17:05:25 -07002780#ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002781static inline void iommu_prepare_isa(void)
2782{
2783 struct pci_dev *pdev;
2784 int ret;
2785
2786 pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
2787 if (!pdev)
2788 return;
2789
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002790 pr_info("Prepare 0-16MiB unity mapping for LPC\n");
David Woodhouse0b9d9752014-03-09 15:48:15 -07002791 ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002792
2793 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02002794 pr_err("Failed to create 0-16MiB identity map - floppy might not work\n");
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002795
Yijing Wang9b27e822014-05-20 20:37:52 +08002796 pci_dev_put(pdev);
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002797}
2798#else
2799static inline void iommu_prepare_isa(void)
2800{
2801 return;
2802}
Suresh Siddhad3f13812011-08-23 17:05:25 -07002803#endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07002804
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002805static int md_domain_init(struct dmar_domain *domain, int guest_width);
David Woodhousec7ab48d2009-06-26 19:10:36 +01002806
Matt Kraai071e1372009-08-23 22:30:22 -07002807static int __init si_domain_init(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002808{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06002809 int nid, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002810
Jiang Liuab8dfe22014-07-11 14:19:27 +08002811 si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002812 if (!si_domain)
2813 return -EFAULT;
2814
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002815 if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
2816 domain_exit(si_domain);
2817 return -EFAULT;
2818 }
2819
Joerg Roedel0dc79712015-07-21 15:40:06 +02002820 pr_debug("Identity mapping domain allocated\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002821
David Woodhouse19943b02009-08-04 16:19:20 +01002822 if (hw)
2823 return 0;
2824
David Woodhousec7ab48d2009-06-26 19:10:36 +01002825 for_each_online_node(nid) {
Tejun Heod4bbf7e2011-11-28 09:46:22 -08002826 unsigned long start_pfn, end_pfn;
2827 int i;
2828
2829 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2830 ret = iommu_domain_identity_map(si_domain,
2831 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
2832 if (ret)
2833 return ret;
2834 }
David Woodhousec7ab48d2009-06-26 19:10:36 +01002835 }
2836
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002837 return 0;
2838}
2839
David Woodhouse9b226622014-03-09 14:03:28 -07002840static int identity_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002841{
2842 struct device_domain_info *info;
2843
2844 if (likely(!iommu_identity_mapping))
2845 return 0;
2846
David Woodhouse9b226622014-03-09 14:03:28 -07002847 info = dev->archdata.iommu;
Mike Traviscb452a42011-05-28 13:15:03 -05002848 if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
2849 return (info->domain == si_domain);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002850
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002851 return 0;
2852}
2853
Joerg Roedel28ccce02015-07-21 14:45:31 +02002854static int domain_add_dev_info(struct dmar_domain *domain, struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002855{
David Woodhouse0ac72662014-03-09 13:19:22 -07002856 struct dmar_domain *ndomain;
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002857 struct intel_iommu *iommu;
David Woodhouse156baca2014-03-09 14:00:57 -07002858 u8 bus, devfn;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002859
David Woodhouse5913c9b2014-03-09 16:27:31 -07002860 iommu = device_to_iommu(dev, &bus, &devfn);
David Woodhouse5a8f40e2014-03-09 13:31:18 -07002861 if (!iommu)
2862 return -ENODEV;
2863
Joerg Roedel5db31562015-07-22 12:40:43 +02002864 ndomain = dmar_insert_one_dev_info(iommu, bus, devfn, dev, domain);
David Woodhouse0ac72662014-03-09 13:19:22 -07002865 if (ndomain != domain)
2866 return -EBUSY;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07002867
2868 return 0;
2869}
2870
David Woodhouse0b9d9752014-03-09 15:48:15 -07002871static bool device_has_rmrr(struct device *dev)
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002872{
2873 struct dmar_rmrr_unit *rmrr;
David Woodhouse832bd852014-03-07 15:08:36 +00002874 struct device *tmp;
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002875 int i;
2876
Jiang Liu0e242612014-02-19 14:07:34 +08002877 rcu_read_lock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002878 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08002879 /*
2880 * Return TRUE if this RMRR contains the device that
2881 * is passed in.
2882 */
2883 for_each_active_dev_scope(rmrr->devices,
2884 rmrr->devices_cnt, i, tmp)
David Woodhouse0b9d9752014-03-09 15:48:15 -07002885 if (tmp == dev) {
Jiang Liu0e242612014-02-19 14:07:34 +08002886 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002887 return true;
Jiang Liub683b232014-02-19 14:07:32 +08002888 }
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002889 }
Jiang Liu0e242612014-02-19 14:07:34 +08002890 rcu_read_unlock();
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002891 return false;
2892}
2893
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002894/*
2895 * There are a couple cases where we need to restrict the functionality of
2896 * devices associated with RMRRs. The first is when evaluating a device for
2897 * identity mapping because problems exist when devices are moved in and out
2898 * of domains and their respective RMRR information is lost. This means that
2899 * a device with associated RMRRs will never be in a "passthrough" domain.
2900 * The second is use of the device through the IOMMU API. This interface
2901 * expects to have full control of the IOVA space for the device. We cannot
2902 * satisfy both the requirement that RMRR access is maintained and have an
2903 * unencumbered IOVA space. We also have no ability to quiesce the device's
2904 * use of the RMRR space or even inform the IOMMU API user of the restriction.
2905 * We therefore prevent devices associated with an RMRR from participating in
2906 * the IOMMU API, which eliminates them from device assignment.
2907 *
2908 * In both cases we assume that PCI USB devices with RMRRs have them largely
2909 * for historical reasons and that the RMRR space is not actively used post
2910 * boot. This exclusion may change if vendors begin to abuse it.
David Woodhouse18436af2015-03-25 15:05:47 +00002911 *
2912 * The same exception is made for graphics devices, with the requirement that
2913 * any use of the RMRR regions will be torn down before assigning the device
2914 * to a guest.
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002915 */
2916static bool device_is_rmrr_locked(struct device *dev)
2917{
2918 if (!device_has_rmrr(dev))
2919 return false;
2920
2921 if (dev_is_pci(dev)) {
2922 struct pci_dev *pdev = to_pci_dev(dev);
2923
David Woodhouse18436af2015-03-25 15:05:47 +00002924 if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002925 return false;
2926 }
2927
2928 return true;
2929}
2930
David Woodhouse3bdb2592014-03-09 16:03:08 -07002931static int iommu_should_identity_map(struct device *dev, int startup)
David Woodhouse6941af22009-07-04 18:24:27 +01002932{
David Woodhouse3bdb2592014-03-09 16:03:08 -07002933 if (dev_is_pci(dev)) {
2934 struct pci_dev *pdev = to_pci_dev(dev);
Tom Mingarelliea2447f72012-11-20 19:43:17 +00002935
Alex Williamsonc875d2c2014-07-03 09:57:02 -06002936 if (device_is_rmrr_locked(dev))
David Woodhouse3bdb2592014-03-09 16:03:08 -07002937 return 0;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002938
Lu Baolu89a60792018-10-23 15:45:01 +08002939 /*
2940 * Prevent any device marked as untrusted from getting
2941 * placed into the statically identity mapping domain.
2942 */
2943 if (pdev->untrusted)
2944 return 0;
2945
David Woodhouse3bdb2592014-03-09 16:03:08 -07002946 if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev))
2947 return 1;
David Woodhousee0fc7e02009-09-30 09:12:17 -07002948
David Woodhouse3bdb2592014-03-09 16:03:08 -07002949 if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
2950 return 1;
2951
2952 if (!(iommu_identity_mapping & IDENTMAP_ALL))
2953 return 0;
2954
2955 /*
2956 * We want to start off with all devices in the 1:1 domain, and
2957 * take them out later if we find they can't access all of memory.
2958 *
2959 * However, we can't do this for PCI devices behind bridges,
2960 * because all PCI devices behind the same bridge will end up
2961 * with the same source-id on their transactions.
2962 *
2963 * Practically speaking, we can't change things around for these
2964 * devices at run-time, because we can't be sure there'll be no
2965 * DMA transactions in flight for any of their siblings.
2966 *
2967 * So PCI devices (unless they're on the root bus) as well as
2968 * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of
2969 * the 1:1 domain, just in _case_ one of their siblings turns out
2970 * not to be able to map all of memory.
2971 */
2972 if (!pci_is_pcie(pdev)) {
2973 if (!pci_is_root_bus(pdev->bus))
2974 return 0;
2975 if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI)
2976 return 0;
2977 } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE)
2978 return 0;
2979 } else {
2980 if (device_has_rmrr(dev))
2981 return 0;
2982 }
David Woodhouse6941af22009-07-04 18:24:27 +01002983
David Woodhouse3dfc8132009-07-04 19:11:08 +01002984 /*
David Woodhouse3dfc8132009-07-04 19:11:08 +01002985 * At boot time, we don't yet know if devices will be 64-bit capable.
David Woodhouse3bdb2592014-03-09 16:03:08 -07002986 * Assume that they will — if they turn out not to be, then we can
David Woodhouse3dfc8132009-07-04 19:11:08 +01002987 * take them out of the 1:1 domain later.
2988 */
Chris Wright8fcc5372011-05-28 13:15:02 -05002989 if (!startup) {
2990 /*
2991 * If the device's dma_mask is less than the system's memory
2992 * size then this is not a candidate for identity mapping.
2993 */
David Woodhouse3bdb2592014-03-09 16:03:08 -07002994 u64 dma_mask = *dev->dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002995
David Woodhouse3bdb2592014-03-09 16:03:08 -07002996 if (dev->coherent_dma_mask &&
2997 dev->coherent_dma_mask < dma_mask)
2998 dma_mask = dev->coherent_dma_mask;
Chris Wright8fcc5372011-05-28 13:15:02 -05002999
David Woodhouse3bdb2592014-03-09 16:03:08 -07003000 return dma_mask >= dma_get_required_mask(dev);
Chris Wright8fcc5372011-05-28 13:15:02 -05003001 }
David Woodhouse6941af22009-07-04 18:24:27 +01003002
3003 return 1;
3004}
3005
David Woodhousecf04eee2014-03-21 16:49:04 +00003006static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw)
3007{
3008 int ret;
3009
3010 if (!iommu_should_identity_map(dev, 1))
3011 return 0;
3012
Joerg Roedel28ccce02015-07-21 14:45:31 +02003013 ret = domain_add_dev_info(si_domain, dev);
David Woodhousecf04eee2014-03-21 16:49:04 +00003014 if (!ret)
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003015 dev_info(dev, "%s identity mapping\n",
3016 hw ? "Hardware" : "Software");
David Woodhousecf04eee2014-03-21 16:49:04 +00003017 else if (ret == -ENODEV)
3018 /* device not associated with an iommu */
3019 ret = 0;
3020
3021 return ret;
3022}
3023
3024
Matt Kraai071e1372009-08-23 22:30:22 -07003025static int __init iommu_prepare_static_identity_mapping(int hw)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003026{
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003027 struct pci_dev *pdev = NULL;
David Woodhousecf04eee2014-03-21 16:49:04 +00003028 struct dmar_drhd_unit *drhd;
3029 struct intel_iommu *iommu;
3030 struct device *dev;
3031 int i;
3032 int ret = 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003033
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003034 for_each_pci_dev(pdev) {
David Woodhousecf04eee2014-03-21 16:49:04 +00003035 ret = dev_prepare_static_identity_mapping(&pdev->dev, hw);
3036 if (ret)
3037 return ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003038 }
3039
David Woodhousecf04eee2014-03-21 16:49:04 +00003040 for_each_active_iommu(iommu, drhd)
3041 for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
3042 struct acpi_device_physical_node *pn;
3043 struct acpi_device *adev;
3044
3045 if (dev->bus != &acpi_bus_type)
3046 continue;
Joerg Roedel86080cc2015-06-12 12:27:16 +02003047
David Woodhousecf04eee2014-03-21 16:49:04 +00003048 adev= to_acpi_device(dev);
3049 mutex_lock(&adev->physical_node_lock);
3050 list_for_each_entry(pn, &adev->physical_node_list, node) {
3051 ret = dev_prepare_static_identity_mapping(pn->dev, hw);
3052 if (ret)
3053 break;
3054 }
3055 mutex_unlock(&adev->physical_node_lock);
3056 if (ret)
3057 return ret;
3058 }
3059
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003060 return 0;
3061}
3062
Jiang Liuffebeb42014-11-09 22:48:02 +08003063static void intel_iommu_init_qi(struct intel_iommu *iommu)
3064{
3065 /*
3066 * Start from the sane iommu hardware state.
3067 * If the queued invalidation is already initialized by us
3068 * (for example, while enabling interrupt-remapping) then
3069 * we got the things already rolling from a sane state.
3070 */
3071 if (!iommu->qi) {
3072 /*
3073 * Clear any previous faults.
3074 */
3075 dmar_fault(-1, iommu);
3076 /*
3077 * Disable queued invalidation if supported and already enabled
3078 * before OS handover.
3079 */
3080 dmar_disable_qi(iommu);
3081 }
3082
3083 if (dmar_enable_qi(iommu)) {
3084 /*
3085 * Queued Invalidate not enabled, use Register Based Invalidate
3086 */
3087 iommu->flush.flush_context = __iommu_flush_context;
3088 iommu->flush.flush_iotlb = __iommu_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003089 pr_info("%s: Using Register based invalidation\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08003090 iommu->name);
3091 } else {
3092 iommu->flush.flush_context = qi_flush_context;
3093 iommu->flush.flush_iotlb = qi_flush_iotlb;
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003094 pr_info("%s: Using Queued invalidation\n", iommu->name);
Jiang Liuffebeb42014-11-09 22:48:02 +08003095 }
3096}
3097
Joerg Roedel091d42e2015-06-12 11:56:10 +02003098static int copy_context_table(struct intel_iommu *iommu,
Dan Williamsdfddb962015-10-09 18:16:46 -04003099 struct root_entry *old_re,
Joerg Roedel091d42e2015-06-12 11:56:10 +02003100 struct context_entry **tbl,
3101 int bus, bool ext)
3102{
Joerg Roedeldbcd8612015-06-12 12:02:09 +02003103 int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
Joerg Roedel543c8dc2015-08-13 11:56:59 +02003104 struct context_entry *new_ce = NULL, ce;
Dan Williamsdfddb962015-10-09 18:16:46 -04003105 struct context_entry *old_ce = NULL;
Joerg Roedel543c8dc2015-08-13 11:56:59 +02003106 struct root_entry re;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003107 phys_addr_t old_ce_phys;
3108
3109 tbl_idx = ext ? bus * 2 : bus;
Dan Williamsdfddb962015-10-09 18:16:46 -04003110 memcpy(&re, old_re, sizeof(re));
Joerg Roedel091d42e2015-06-12 11:56:10 +02003111
3112 for (devfn = 0; devfn < 256; devfn++) {
3113 /* First calculate the correct index */
3114 idx = (ext ? devfn * 2 : devfn) % 256;
3115
3116 if (idx == 0) {
3117 /* First save what we may have and clean up */
3118 if (new_ce) {
3119 tbl[tbl_idx] = new_ce;
3120 __iommu_flush_cache(iommu, new_ce,
3121 VTD_PAGE_SIZE);
3122 pos = 1;
3123 }
3124
3125 if (old_ce)
Pan Bian829383e2018-11-21 17:53:47 +08003126 memunmap(old_ce);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003127
3128 ret = 0;
3129 if (devfn < 0x80)
Joerg Roedel543c8dc2015-08-13 11:56:59 +02003130 old_ce_phys = root_entry_lctp(&re);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003131 else
Joerg Roedel543c8dc2015-08-13 11:56:59 +02003132 old_ce_phys = root_entry_uctp(&re);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003133
3134 if (!old_ce_phys) {
3135 if (ext && devfn == 0) {
3136 /* No LCTP, try UCTP */
3137 devfn = 0x7f;
3138 continue;
3139 } else {
3140 goto out;
3141 }
3142 }
3143
3144 ret = -ENOMEM;
Dan Williamsdfddb962015-10-09 18:16:46 -04003145 old_ce = memremap(old_ce_phys, PAGE_SIZE,
3146 MEMREMAP_WB);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003147 if (!old_ce)
3148 goto out;
3149
3150 new_ce = alloc_pgtable_page(iommu->node);
3151 if (!new_ce)
3152 goto out_unmap;
3153
3154 ret = 0;
3155 }
3156
3157 /* Now copy the context entry */
Dan Williamsdfddb962015-10-09 18:16:46 -04003158 memcpy(&ce, old_ce + idx, sizeof(ce));
Joerg Roedel091d42e2015-06-12 11:56:10 +02003159
Joerg Roedelcf484d02015-06-12 12:21:46 +02003160 if (!__context_present(&ce))
Joerg Roedel091d42e2015-06-12 11:56:10 +02003161 continue;
3162
Joerg Roedeldbcd8612015-06-12 12:02:09 +02003163 did = context_domain_id(&ce);
3164 if (did >= 0 && did < cap_ndoms(iommu->cap))
3165 set_bit(did, iommu->domain_ids);
3166
Joerg Roedelcf484d02015-06-12 12:21:46 +02003167 /*
3168 * We need a marker for copied context entries. This
3169 * marker needs to work for the old format as well as
3170 * for extended context entries.
3171 *
3172 * Bit 67 of the context entry is used. In the old
3173 * format this bit is available to software, in the
3174 * extended format it is the PGE bit, but PGE is ignored
3175 * by HW if PASIDs are disabled (and thus still
3176 * available).
3177 *
3178 * So disable PASIDs first and then mark the entry
3179 * copied. This means that we don't copy PASID
3180 * translations from the old kernel, but this is fine as
3181 * faults there are not fatal.
3182 */
3183 context_clear_pasid_enable(&ce);
3184 context_set_copied(&ce);
3185
Joerg Roedel091d42e2015-06-12 11:56:10 +02003186 new_ce[idx] = ce;
3187 }
3188
3189 tbl[tbl_idx + pos] = new_ce;
3190
3191 __iommu_flush_cache(iommu, new_ce, VTD_PAGE_SIZE);
3192
3193out_unmap:
Dan Williamsdfddb962015-10-09 18:16:46 -04003194 memunmap(old_ce);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003195
3196out:
3197 return ret;
3198}
3199
3200static int copy_translation_tables(struct intel_iommu *iommu)
3201{
3202 struct context_entry **ctxt_tbls;
Dan Williamsdfddb962015-10-09 18:16:46 -04003203 struct root_entry *old_rt;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003204 phys_addr_t old_rt_phys;
3205 int ctxt_table_entries;
3206 unsigned long flags;
3207 u64 rtaddr_reg;
3208 int bus, ret;
Joerg Roedelc3361f22015-06-12 12:39:25 +02003209 bool new_ext, ext;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003210
3211 rtaddr_reg = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
3212 ext = !!(rtaddr_reg & DMA_RTADDR_RTT);
Joerg Roedelc3361f22015-06-12 12:39:25 +02003213 new_ext = !!ecap_ecs(iommu->ecap);
3214
3215 /*
3216 * The RTT bit can only be changed when translation is disabled,
3217 * but disabling translation means to open a window for data
3218 * corruption. So bail out and don't copy anything if we would
3219 * have to change the bit.
3220 */
3221 if (new_ext != ext)
3222 return -EINVAL;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003223
3224 old_rt_phys = rtaddr_reg & VTD_PAGE_MASK;
3225 if (!old_rt_phys)
3226 return -EINVAL;
3227
Dan Williamsdfddb962015-10-09 18:16:46 -04003228 old_rt = memremap(old_rt_phys, PAGE_SIZE, MEMREMAP_WB);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003229 if (!old_rt)
3230 return -ENOMEM;
3231
3232 /* This is too big for the stack - allocate it from slab */
3233 ctxt_table_entries = ext ? 512 : 256;
3234 ret = -ENOMEM;
Kees Cook6396bb22018-06-12 14:03:40 -07003235 ctxt_tbls = kcalloc(ctxt_table_entries, sizeof(void *), GFP_KERNEL);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003236 if (!ctxt_tbls)
3237 goto out_unmap;
3238
3239 for (bus = 0; bus < 256; bus++) {
3240 ret = copy_context_table(iommu, &old_rt[bus],
3241 ctxt_tbls, bus, ext);
3242 if (ret) {
3243 pr_err("%s: Failed to copy context table for bus %d\n",
3244 iommu->name, bus);
3245 continue;
3246 }
3247 }
3248
3249 spin_lock_irqsave(&iommu->lock, flags);
3250
3251 /* Context tables are copied, now write them to the root_entry table */
3252 for (bus = 0; bus < 256; bus++) {
3253 int idx = ext ? bus * 2 : bus;
3254 u64 val;
3255
3256 if (ctxt_tbls[idx]) {
3257 val = virt_to_phys(ctxt_tbls[idx]) | 1;
3258 iommu->root_entry[bus].lo = val;
3259 }
3260
3261 if (!ext || !ctxt_tbls[idx + 1])
3262 continue;
3263
3264 val = virt_to_phys(ctxt_tbls[idx + 1]) | 1;
3265 iommu->root_entry[bus].hi = val;
3266 }
3267
3268 spin_unlock_irqrestore(&iommu->lock, flags);
3269
3270 kfree(ctxt_tbls);
3271
3272 __iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
3273
3274 ret = 0;
3275
3276out_unmap:
Dan Williamsdfddb962015-10-09 18:16:46 -04003277 memunmap(old_rt);
Joerg Roedel091d42e2015-06-12 11:56:10 +02003278
3279 return ret;
3280}
3281
Joseph Cihulab7792602011-05-03 00:08:37 -07003282static int __init init_dmars(void)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003283{
3284 struct dmar_drhd_unit *drhd;
3285 struct dmar_rmrr_unit *rmrr;
Joerg Roedela87f4912015-06-12 12:32:54 +02003286 bool copied_tables = false;
David Woodhouse832bd852014-03-07 15:08:36 +00003287 struct device *dev;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003288 struct intel_iommu *iommu;
Joerg Roedel13cf0172017-08-11 11:40:10 +02003289 int i, ret;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003290
3291 /*
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003292 * for each drhd
3293 * allocate root
3294 * initialize and program root entry to not present
3295 * endfor
3296 */
3297 for_each_drhd_unit(drhd) {
mark gross5e0d2a62008-03-04 15:22:08 -08003298 /*
3299 * lock not needed as this is only incremented in the single
3300 * threaded kernel __init code path all other access are read
3301 * only
3302 */
Jiang Liu78d8e702014-11-09 22:47:57 +08003303 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) {
Mike Travis1b198bb2012-03-05 15:05:16 -08003304 g_num_of_iommus++;
3305 continue;
3306 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003307 pr_err_once("Exceeded %d IOMMUs\n", DMAR_UNITS_SUPPORTED);
mark gross5e0d2a62008-03-04 15:22:08 -08003308 }
3309
Jiang Liuffebeb42014-11-09 22:48:02 +08003310 /* Preallocate enough resources for IOMMU hot-addition */
3311 if (g_num_of_iommus < DMAR_UNITS_SUPPORTED)
3312 g_num_of_iommus = DMAR_UNITS_SUPPORTED;
3313
Weidong Hand9630fe2008-12-08 11:06:32 +08003314 g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *),
3315 GFP_KERNEL);
3316 if (!g_iommus) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003317 pr_err("Allocating global iommu array failed\n");
Weidong Hand9630fe2008-12-08 11:06:32 +08003318 ret = -ENOMEM;
3319 goto error;
3320 }
3321
Jiang Liu7c919772014-01-06 14:18:18 +08003322 for_each_active_iommu(iommu, drhd) {
Lu Baolu56283172018-07-14 15:46:54 +08003323 /*
3324 * Find the max pasid size of all IOMMU's in the system.
3325 * We need to ensure the system pasid table is no bigger
3326 * than the smallest supported.
3327 */
Lu Baolu765b6a92018-12-10 09:58:55 +08003328 if (pasid_supported(iommu)) {
Lu Baolu56283172018-07-14 15:46:54 +08003329 u32 temp = 2 << ecap_pss(iommu->ecap);
3330
3331 intel_pasid_max_id = min_t(u32, temp,
3332 intel_pasid_max_id);
3333 }
3334
Weidong Hand9630fe2008-12-08 11:06:32 +08003335 g_iommus[iommu->seq_id] = iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003336
Joerg Roedelb63d80d2015-06-12 09:14:34 +02003337 intel_iommu_init_qi(iommu);
3338
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003339 ret = iommu_init_domains(iommu);
3340 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003341 goto free_iommu;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07003342
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003343 init_translation_status(iommu);
3344
Joerg Roedel091d42e2015-06-12 11:56:10 +02003345 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
3346 iommu_disable_translation(iommu);
3347 clear_translation_pre_enabled(iommu);
3348 pr_warn("Translation was enabled for %s but we are not in kdump mode\n",
3349 iommu->name);
3350 }
Joerg Roedel4158c2e2015-06-12 10:14:02 +02003351
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003352 /*
3353 * TBD:
3354 * we could share the same root & context tables
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003355 * among all IOMMU's. Need to Split it later.
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003356 */
3357 ret = iommu_alloc_root_entry(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003358 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003359 goto free_iommu;
Joerg Roedel5f0a7f72015-06-12 09:18:53 +02003360
Joerg Roedel091d42e2015-06-12 11:56:10 +02003361 if (translation_pre_enabled(iommu)) {
3362 pr_info("Translation already enabled - trying to copy translation structures\n");
3363
3364 ret = copy_translation_tables(iommu);
3365 if (ret) {
3366 /*
3367 * We found the IOMMU with translation
3368 * enabled - but failed to copy over the
3369 * old root-entry table. Try to proceed
3370 * by disabling translation now and
3371 * allocating a clean root-entry table.
3372 * This might cause DMAR faults, but
3373 * probably the dump will still succeed.
3374 */
3375 pr_err("Failed to copy translation tables from previous kernel for %s\n",
3376 iommu->name);
3377 iommu_disable_translation(iommu);
3378 clear_translation_pre_enabled(iommu);
3379 } else {
3380 pr_info("Copied translation tables from previous kernel for %s\n",
3381 iommu->name);
Joerg Roedela87f4912015-06-12 12:32:54 +02003382 copied_tables = true;
Joerg Roedel091d42e2015-06-12 11:56:10 +02003383 }
3384 }
3385
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003386 if (!ecap_pass_through(iommu->ecap))
David Woodhouse19943b02009-08-04 16:19:20 +01003387 hw_pass_through = 0;
David Woodhouse8a94ade2015-03-24 14:54:56 +00003388#ifdef CONFIG_INTEL_IOMMU_SVM
Lu Baolu765b6a92018-12-10 09:58:55 +08003389 if (pasid_supported(iommu))
Lu Baolud9737952018-07-14 15:47:02 +08003390 intel_svm_init(iommu);
David Woodhouse8a94ade2015-03-24 14:54:56 +00003391#endif
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003392 }
3393
Joerg Roedela4c34ff2016-06-17 11:29:48 +02003394 /*
3395 * Now that qi is enabled on all iommus, set the root entry and flush
3396 * caches. This is required on some Intel X58 chipsets, otherwise the
3397 * flush_context function will loop forever and the boot hangs.
3398 */
3399 for_each_active_iommu(iommu, drhd) {
3400 iommu_flush_write_buffer(iommu);
3401 iommu_set_root_entry(iommu);
3402 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
3403 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
3404 }
3405
David Woodhouse19943b02009-08-04 16:19:20 +01003406 if (iommu_pass_through)
David Woodhousee0fc7e02009-09-30 09:12:17 -07003407 iommu_identity_mapping |= IDENTMAP_ALL;
3408
Suresh Siddhad3f13812011-08-23 17:05:25 -07003409#ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
David Woodhousee0fc7e02009-09-30 09:12:17 -07003410 iommu_identity_mapping |= IDENTMAP_GFX;
David Woodhouse19943b02009-08-04 16:19:20 +01003411#endif
David Woodhousee0fc7e02009-09-30 09:12:17 -07003412
Ashok Raj21e722c2017-01-30 09:39:53 -08003413 check_tylersburg_isoch();
3414
Joerg Roedel86080cc2015-06-12 12:27:16 +02003415 if (iommu_identity_mapping) {
3416 ret = si_domain_init(hw_pass_through);
3417 if (ret)
3418 goto free_iommu;
3419 }
3420
David Woodhousee0fc7e02009-09-30 09:12:17 -07003421
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003422 /*
Joerg Roedela87f4912015-06-12 12:32:54 +02003423 * If we copied translations from a previous kernel in the kdump
3424 * case, we can not assign the devices to domains now, as that
3425 * would eliminate the old mappings. So skip this part and defer
3426 * the assignment to device driver initialization time.
3427 */
3428 if (copied_tables)
3429 goto domains_done;
3430
3431 /*
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003432 * If pass through is not set or not enabled, setup context entries for
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003433 * identity mappings for rmrr, gfx, and isa and may fall back to static
3434 * identity mapping if iommu_identity_mapping is set.
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003435 */
David Woodhouse19943b02009-08-04 16:19:20 +01003436 if (iommu_identity_mapping) {
3437 ret = iommu_prepare_static_identity_mapping(hw_pass_through);
3438 if (ret) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003439 pr_crit("Failed to setup IOMMU pass-through\n");
Jiang Liu989d51f2014-02-19 14:07:21 +08003440 goto free_iommu;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003441 }
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07003442 }
David Woodhouse19943b02009-08-04 16:19:20 +01003443 /*
3444 * For each rmrr
3445 * for each dev attached to rmrr
3446 * do
3447 * locate drhd for dev, alloc domain for dev
3448 * allocate free domain
3449 * allocate page table entries for rmrr
3450 * if context not allocated for bus
3451 * allocate and init context
3452 * set present in root table for this bus
3453 * init context with domain, translation etc
3454 * endfor
3455 * endfor
3456 */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003457 pr_info("Setting RMRR:\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003458 for_each_rmrr_units(rmrr) {
Jiang Liub683b232014-02-19 14:07:32 +08003459 /* some BIOS lists non-exist devices in DMAR table. */
3460 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
David Woodhouse832bd852014-03-07 15:08:36 +00003461 i, dev) {
David Woodhouse0b9d9752014-03-09 15:48:15 -07003462 ret = iommu_prepare_rmrr_dev(rmrr, dev);
David Woodhouse19943b02009-08-04 16:19:20 +01003463 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003464 pr_err("Mapping reserved region failed\n");
David Woodhouse19943b02009-08-04 16:19:20 +01003465 }
3466 }
3467
3468 iommu_prepare_isa();
Keshavamurthy, Anil S49a04292007-10-21 16:41:57 -07003469
Joerg Roedela87f4912015-06-12 12:32:54 +02003470domains_done:
3471
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003472 /*
3473 * for each drhd
3474 * enable fault log
3475 * global invalidate context cache
3476 * global invalidate iotlb
3477 * enable translation
3478 */
Jiang Liu7c919772014-01-06 14:18:18 +08003479 for_each_iommu(iommu, drhd) {
Joseph Cihula51a63e62011-03-21 11:04:24 -07003480 if (drhd->ignored) {
3481 /*
3482 * we always have to disable PMRs or DMA may fail on
3483 * this device
3484 */
3485 if (force_on)
Jiang Liu7c919772014-01-06 14:18:18 +08003486 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003487 continue;
Joseph Cihula51a63e62011-03-21 11:04:24 -07003488 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003489
3490 iommu_flush_write_buffer(iommu);
3491
David Woodhousea222a7f2015-10-07 23:35:18 +01003492#ifdef CONFIG_INTEL_IOMMU_SVM
Lu Baolu765b6a92018-12-10 09:58:55 +08003493 if (pasid_supported(iommu) && ecap_prs(iommu->ecap)) {
David Woodhousea222a7f2015-10-07 23:35:18 +01003494 ret = intel_svm_enable_prq(iommu);
3495 if (ret)
3496 goto free_iommu;
3497 }
3498#endif
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003499 ret = dmar_set_interrupt(iommu);
3500 if (ret)
Jiang Liu989d51f2014-02-19 14:07:21 +08003501 goto free_iommu;
Keshavamurthy, Anil S3460a6d2007-10-21 16:41:54 -07003502
Joerg Roedel8939ddf2015-06-12 14:40:01 +02003503 if (!translation_pre_enabled(iommu))
3504 iommu_enable_translation(iommu);
3505
David Woodhouseb94996c2009-09-19 15:28:12 -07003506 iommu_disable_protect_mem_regions(iommu);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003507 }
3508
3509 return 0;
Jiang Liu989d51f2014-02-19 14:07:21 +08003510
3511free_iommu:
Jiang Liuffebeb42014-11-09 22:48:02 +08003512 for_each_active_iommu(iommu, drhd) {
3513 disable_dmar_iommu(iommu);
Jiang Liua868e6b2014-01-06 14:18:20 +08003514 free_dmar_iommu(iommu);
Jiang Liuffebeb42014-11-09 22:48:02 +08003515 }
Joerg Roedel13cf0172017-08-11 11:40:10 +02003516
Weidong Hand9630fe2008-12-08 11:06:32 +08003517 kfree(g_iommus);
Joerg Roedel13cf0172017-08-11 11:40:10 +02003518
Jiang Liu989d51f2014-02-19 14:07:21 +08003519error:
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003520 return ret;
3521}
3522
David Woodhouse5a5e02a2009-07-04 09:35:44 +01003523/* This takes a number of _MM_ pages, not VTD pages */
Omer Peleg2aac6302016-04-20 11:33:57 +03003524static unsigned long intel_alloc_iova(struct device *dev,
David Woodhouse875764d2009-06-28 21:20:51 +01003525 struct dmar_domain *domain,
3526 unsigned long nrpages, uint64_t dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003527{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06003528 unsigned long iova_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003529
David Woodhouse875764d2009-06-28 21:20:51 +01003530 /* Restrict dma_mask to the width that the iommu can handle */
3531 dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask);
Robin Murphy8f6429c2015-07-16 19:40:12 +01003532 /* Ensure we reserve the whole size-aligned region */
3533 nrpages = __roundup_pow_of_two(nrpages);
David Woodhouse875764d2009-06-28 21:20:51 +01003534
3535 if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) {
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003536 /*
3537 * First try to allocate an io virtual address in
Yang Hongyang284901a2009-04-06 19:01:15 -07003538 * DMA_BIT_MASK(32) and if that fails then try allocating
Joe Perches36098012007-12-17 11:40:11 -08003539 * from higher range
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003540 */
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003541 iova_pfn = alloc_iova_fast(&domain->iovad, nrpages,
Tomasz Nowicki538d5b32017-09-20 10:52:02 +02003542 IOVA_PFN(DMA_BIT_MASK(32)), false);
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003543 if (iova_pfn)
3544 return iova_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003545 }
Tomasz Nowicki538d5b32017-09-20 10:52:02 +02003546 iova_pfn = alloc_iova_fast(&domain->iovad, nrpages,
3547 IOVA_PFN(dma_mask), true);
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003548 if (unlikely(!iova_pfn)) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003549 dev_err(dev, "Allocating %ld-page iova failed", nrpages);
Omer Peleg2aac6302016-04-20 11:33:57 +03003550 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003551 }
3552
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003553 return iova_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003554}
3555
Lu Baolu9ddbfb42018-07-14 15:46:57 +08003556struct dmar_domain *get_valid_domain_for_dev(struct device *dev)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003557{
Joerg Roedel1c5ebba2016-08-25 13:52:51 +02003558 struct dmar_domain *domain, *tmp;
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003559 struct dmar_rmrr_unit *rmrr;
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003560 struct device *i_dev;
3561 int i, ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003562
Joerg Roedel1c5ebba2016-08-25 13:52:51 +02003563 domain = find_domain(dev);
3564 if (domain)
3565 goto out;
3566
3567 domain = find_or_alloc_domain(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
3568 if (!domain)
3569 goto out;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003570
Joerg Roedelb1ce5b72015-09-23 19:16:01 +02003571 /* We have a new domain - setup possible RMRRs for the device */
3572 rcu_read_lock();
3573 for_each_rmrr_units(rmrr) {
3574 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
3575 i, i_dev) {
3576 if (i_dev != dev)
3577 continue;
3578
3579 ret = domain_prepare_identity_map(dev, domain,
3580 rmrr->base_address,
3581 rmrr->end_address);
3582 if (ret)
3583 dev_err(dev, "Mapping reserved region failed\n");
3584 }
3585 }
3586 rcu_read_unlock();
3587
Joerg Roedel1c5ebba2016-08-25 13:52:51 +02003588 tmp = set_domain_for_dev(dev, domain);
3589 if (!tmp || domain != tmp) {
3590 domain_exit(domain);
3591 domain = tmp;
3592 }
3593
3594out:
3595
3596 if (!domain)
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003597 dev_err(dev, "Allocating domain failed\n");
Joerg Roedel1c5ebba2016-08-25 13:52:51 +02003598
3599
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003600 return domain;
3601}
3602
David Woodhouseecb509e2014-03-09 16:29:55 -07003603/* Check if the dev needs to go through non-identity map and unmap process.*/
David Woodhouse73676832009-07-04 14:08:36 +01003604static int iommu_no_mapping(struct device *dev)
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003605{
3606 int found;
3607
David Woodhouse3d891942014-03-06 15:59:26 +00003608 if (iommu_dummy(dev))
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003609 return 1;
3610
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003611 if (!iommu_identity_mapping)
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003612 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003613
David Woodhouse9b226622014-03-09 14:03:28 -07003614 found = identity_mapping(dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003615 if (found) {
David Woodhouseecb509e2014-03-09 16:29:55 -07003616 if (iommu_should_identity_map(dev, 0))
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003617 return 1;
3618 else {
3619 /*
3620 * 32 bit DMA is removed from si_domain and fall back
3621 * to non-identity mapping.
3622 */
Bjorn Helgaas71753232019-02-08 16:06:15 -06003623 dmar_remove_one_dev_info(dev);
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003624 dev_info(dev, "32bit DMA uses non-identity mapping\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003625 return 0;
3626 }
3627 } else {
3628 /*
3629 * In case of a detached 64 bit DMA device from vm, the device
3630 * is put into si_domain for identity mapping.
3631 */
David Woodhouseecb509e2014-03-09 16:29:55 -07003632 if (iommu_should_identity_map(dev, 0)) {
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003633 int ret;
Joerg Roedel28ccce02015-07-21 14:45:31 +02003634 ret = domain_add_dev_info(si_domain, dev);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003635 if (!ret) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003636 dev_info(dev, "64bit DMA uses identity mapping\n");
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003637 return 1;
3638 }
3639 }
3640 }
3641
David Woodhouse1e4c64c2009-07-04 10:40:38 +01003642 return 0;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003643}
3644
Logan Gunthorpe21d5d272019-01-22 14:30:45 -07003645static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
3646 size_t size, int dir, u64 dma_mask)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003647{
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003648 struct dmar_domain *domain;
Fenghua Yu5b6985c2008-10-16 18:02:32 -07003649 phys_addr_t start_paddr;
Omer Peleg2aac6302016-04-20 11:33:57 +03003650 unsigned long iova_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003651 int prot = 0;
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003652 int ret;
Weidong Han8c11e792008-12-08 15:29:22 +08003653 struct intel_iommu *iommu;
Fenghua Yu33041ec2009-08-04 15:10:59 -07003654 unsigned long paddr_pfn = paddr >> PAGE_SHIFT;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003655
3656 BUG_ON(dir == DMA_NONE);
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003657
David Woodhouse5040a912014-03-09 16:14:00 -07003658 if (iommu_no_mapping(dev))
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003659 return paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003660
David Woodhouse5040a912014-03-09 16:14:00 -07003661 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003662 if (!domain)
Christoph Hellwig524a6692018-11-21 19:34:10 +01003663 return DMA_MAPPING_ERROR;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003664
Weidong Han8c11e792008-12-08 15:29:22 +08003665 iommu = domain_get_iommu(domain);
David Woodhouse88cb6a72009-06-28 15:03:06 +01003666 size = aligned_nrpages(paddr, size);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003667
Omer Peleg2aac6302016-04-20 11:33:57 +03003668 iova_pfn = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask);
3669 if (!iova_pfn)
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003670 goto error;
3671
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003672 /*
3673 * Check if DMAR supports zero-length reads on write only
3674 * mappings..
3675 */
3676 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003677 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003678 prot |= DMA_PTE_READ;
3679 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3680 prot |= DMA_PTE_WRITE;
3681 /*
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003682 * paddr - (paddr + size) might be partial page, we should map the whole
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003683 * page. Note: if two part of one page are separately mapped, we
Ingo Molnar6865f0d2008-04-22 11:09:04 +02003684 * might have two guest_addr mapping to the same host paddr, but this
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003685 * is not a big problem
3686 */
Omer Peleg2aac6302016-04-20 11:33:57 +03003687 ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova_pfn),
Fenghua Yu33041ec2009-08-04 15:10:59 -07003688 mm_to_dma_pfn(paddr_pfn), size, prot);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003689 if (ret)
3690 goto error;
3691
Omer Peleg2aac6302016-04-20 11:33:57 +03003692 start_paddr = (phys_addr_t)iova_pfn << PAGE_SHIFT;
David Woodhouse03d6a242009-06-28 15:33:46 +01003693 start_paddr += paddr & ~PAGE_MASK;
3694 return start_paddr;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003695
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003696error:
Omer Peleg2aac6302016-04-20 11:33:57 +03003697 if (iova_pfn)
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003698 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(size));
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003699 dev_err(dev, "Device request: %zx@%llx dir %d --- failed\n",
3700 size, (unsigned long long)paddr, dir);
Christoph Hellwig524a6692018-11-21 19:34:10 +01003701 return DMA_MAPPING_ERROR;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003702}
3703
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003704static dma_addr_t intel_map_page(struct device *dev, struct page *page,
3705 unsigned long offset, size_t size,
3706 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003707 unsigned long attrs)
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003708{
Logan Gunthorpe21d5d272019-01-22 14:30:45 -07003709 return __intel_map_single(dev, page_to_phys(page) + offset, size,
3710 dir, *dev->dma_mask);
3711}
3712
3713static dma_addr_t intel_map_resource(struct device *dev, phys_addr_t phys_addr,
3714 size_t size, enum dma_data_direction dir,
3715 unsigned long attrs)
3716{
3717 return __intel_map_single(dev, phys_addr, size, dir, *dev->dma_mask);
FUJITA Tomonoribb9e6d62008-10-15 16:08:28 +09003718}
3719
Omer Peleg769530e2016-04-20 11:33:25 +03003720static void intel_unmap(struct device *dev, dma_addr_t dev_addr, size_t size)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003721{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003722 struct dmar_domain *domain;
David Woodhoused794dc92009-06-28 00:27:49 +01003723 unsigned long start_pfn, last_pfn;
Omer Peleg769530e2016-04-20 11:33:25 +03003724 unsigned long nrpages;
Omer Peleg2aac6302016-04-20 11:33:57 +03003725 unsigned long iova_pfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003726 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00003727 struct page *freelist;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003728
David Woodhouse73676832009-07-04 14:08:36 +01003729 if (iommu_no_mapping(dev))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003730 return;
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07003731
David Woodhouse1525a292014-03-06 16:19:30 +00003732 domain = find_domain(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003733 BUG_ON(!domain);
3734
Weidong Han8c11e792008-12-08 15:29:22 +08003735 iommu = domain_get_iommu(domain);
3736
Omer Peleg2aac6302016-04-20 11:33:57 +03003737 iova_pfn = IOVA_PFN(dev_addr);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003738
Omer Peleg769530e2016-04-20 11:33:25 +03003739 nrpages = aligned_nrpages(dev_addr, size);
Omer Peleg2aac6302016-04-20 11:33:57 +03003740 start_pfn = mm_to_dma_pfn(iova_pfn);
Omer Peleg769530e2016-04-20 11:33:25 +03003741 last_pfn = start_pfn + nrpages - 1;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003742
Bjorn Helgaas932a6522019-02-08 16:06:00 -06003743 dev_dbg(dev, "Device unmapping: pfn %lx-%lx\n", start_pfn, last_pfn);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003744
David Woodhouseea8ea462014-03-05 17:09:32 +00003745 freelist = domain_unmap(domain, start_pfn, last_pfn);
David Woodhoused794dc92009-06-28 00:27:49 +01003746
mark gross5e0d2a62008-03-04 15:22:08 -08003747 if (intel_iommu_strict) {
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02003748 iommu_flush_iotlb_psi(iommu, domain, start_pfn,
Omer Peleg769530e2016-04-20 11:33:25 +03003749 nrpages, !freelist, 0);
mark gross5e0d2a62008-03-04 15:22:08 -08003750 /* free iova */
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003751 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(nrpages));
David Woodhouseea8ea462014-03-05 17:09:32 +00003752 dma_free_pagelist(freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003753 } else {
Joerg Roedel13cf0172017-08-11 11:40:10 +02003754 queue_iova(&domain->iovad, iova_pfn, nrpages,
3755 (unsigned long)freelist);
mark gross5e0d2a62008-03-04 15:22:08 -08003756 /*
3757 * queue up the release of the unmap to save the 1/6th of the
3758 * cpu used up by the iotlb flush operation...
3759 */
mark gross5e0d2a62008-03-04 15:22:08 -08003760 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003761}
3762
Jiang Liud41a4ad2014-07-11 14:19:34 +08003763static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr,
3764 size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003765 unsigned long attrs)
Jiang Liud41a4ad2014-07-11 14:19:34 +08003766{
Omer Peleg769530e2016-04-20 11:33:25 +03003767 intel_unmap(dev, dev_addr, size);
Jiang Liud41a4ad2014-07-11 14:19:34 +08003768}
3769
David Woodhouse5040a912014-03-09 16:14:00 -07003770static void *intel_alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003771 dma_addr_t *dma_handle, gfp_t flags,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003772 unsigned long attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003773{
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003774 struct page *page = NULL;
3775 int order;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003776
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003777 size = PAGE_ALIGN(size);
3778 order = get_order(size);
Alex Williamsone8bb9102009-11-04 15:59:34 -07003779
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003780 if (!iommu_no_mapping(dev))
3781 flags &= ~(GFP_DMA | GFP_DMA32);
3782 else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) {
3783 if (dev->coherent_dma_mask < DMA_BIT_MASK(32))
3784 flags |= GFP_DMA;
3785 else
3786 flags |= GFP_DMA32;
3787 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003788
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003789 if (gfpflags_allow_blocking(flags)) {
3790 unsigned int count = size >> PAGE_SHIFT;
3791
Marek Szyprowskid834c5a2018-08-17 15:49:00 -07003792 page = dma_alloc_from_contiguous(dev, count, order,
3793 flags & __GFP_NOWARN);
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003794 if (page && iommu_no_mapping(dev) &&
3795 page_to_phys(page) + size > dev->coherent_dma_mask) {
3796 dma_release_from_contiguous(dev, page, count);
3797 page = NULL;
3798 }
3799 }
3800
3801 if (!page)
3802 page = alloc_pages(flags, order);
3803 if (!page)
3804 return NULL;
3805 memset(page_address(page), 0, size);
3806
Logan Gunthorpe21d5d272019-01-22 14:30:45 -07003807 *dma_handle = __intel_map_single(dev, page_to_phys(page), size,
3808 DMA_BIDIRECTIONAL,
3809 dev->coherent_dma_mask);
Christoph Hellwig524a6692018-11-21 19:34:10 +01003810 if (*dma_handle != DMA_MAPPING_ERROR)
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003811 return page_address(page);
3812 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3813 __free_pages(page, order);
3814
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003815 return NULL;
3816}
3817
David Woodhouse5040a912014-03-09 16:14:00 -07003818static void intel_free_coherent(struct device *dev, size_t size, void *vaddr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003819 dma_addr_t dma_handle, unsigned long attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003820{
Christoph Hellwig7ec916f2018-07-05 13:29:55 -06003821 int order;
3822 struct page *page = virt_to_page(vaddr);
3823
3824 size = PAGE_ALIGN(size);
3825 order = get_order(size);
3826
3827 intel_unmap(dev, dma_handle, size);
3828 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3829 __free_pages(page, order);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003830}
3831
David Woodhouse5040a912014-03-09 16:14:00 -07003832static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonorid7ab5c42009-01-28 21:53:18 +09003833 int nelems, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003834 unsigned long attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003835{
Omer Peleg769530e2016-04-20 11:33:25 +03003836 dma_addr_t startaddr = sg_dma_address(sglist) & PAGE_MASK;
3837 unsigned long nrpages = 0;
3838 struct scatterlist *sg;
3839 int i;
3840
3841 for_each_sg(sglist, sg, nelems, i) {
3842 nrpages += aligned_nrpages(sg_dma_address(sg), sg_dma_len(sg));
3843 }
3844
3845 intel_unmap(dev, startaddr, nrpages << VTD_PAGE_SHIFT);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003846}
3847
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003848static int intel_nontranslate_map_sg(struct device *hddev,
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003849 struct scatterlist *sglist, int nelems, int dir)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003850{
3851 int i;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003852 struct scatterlist *sg;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003853
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003854 for_each_sg(sglist, sg, nelems, i) {
FUJITA Tomonori12d4d402007-10-23 09:32:25 +02003855 BUG_ON(!sg_page(sg));
Robin Murphy29a90b72017-09-28 15:14:01 +01003856 sg->dma_address = sg_phys(sg);
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003857 sg->dma_length = sg->length;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003858 }
3859 return nelems;
3860}
3861
David Woodhouse5040a912014-03-09 16:14:00 -07003862static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07003863 enum dma_data_direction dir, unsigned long attrs)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003864{
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003865 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003866 struct dmar_domain *domain;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003867 size_t size = 0;
3868 int prot = 0;
Omer Peleg2aac6302016-04-20 11:33:57 +03003869 unsigned long iova_pfn;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003870 int ret;
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003871 struct scatterlist *sg;
David Woodhouseb536d242009-06-28 14:49:31 +01003872 unsigned long start_vpfn;
Weidong Han8c11e792008-12-08 15:29:22 +08003873 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003874
3875 BUG_ON(dir == DMA_NONE);
David Woodhouse5040a912014-03-09 16:14:00 -07003876 if (iommu_no_mapping(dev))
3877 return intel_nontranslate_map_sg(dev, sglist, nelems, dir);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003878
David Woodhouse5040a912014-03-09 16:14:00 -07003879 domain = get_valid_domain_for_dev(dev);
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003880 if (!domain)
3881 return 0;
3882
Weidong Han8c11e792008-12-08 15:29:22 +08003883 iommu = domain_get_iommu(domain);
3884
David Woodhouseb536d242009-06-28 14:49:31 +01003885 for_each_sg(sglist, sg, nelems, i)
David Woodhouse88cb6a72009-06-28 15:03:06 +01003886 size += aligned_nrpages(sg->offset, sg->length);
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003887
Omer Peleg2aac6302016-04-20 11:33:57 +03003888 iova_pfn = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size),
David Woodhouse5040a912014-03-09 16:14:00 -07003889 *dev->dma_mask);
Omer Peleg2aac6302016-04-20 11:33:57 +03003890 if (!iova_pfn) {
FUJITA Tomonoric03ab372007-10-21 16:42:00 -07003891 sglist->dma_length = 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003892 return 0;
3893 }
3894
3895 /*
3896 * Check if DMAR supports zero-length reads on write only
3897 * mappings..
3898 */
3899 if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \
Weidong Han8c11e792008-12-08 15:29:22 +08003900 !cap_zlr(iommu->cap))
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003901 prot |= DMA_PTE_READ;
3902 if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
3903 prot |= DMA_PTE_WRITE;
3904
Omer Peleg2aac6302016-04-20 11:33:57 +03003905 start_vpfn = mm_to_dma_pfn(iova_pfn);
David Woodhousee1605492009-06-29 11:17:38 +01003906
Fenghua Yuf5329592009-08-04 15:09:37 -07003907 ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot);
David Woodhousee1605492009-06-29 11:17:38 +01003908 if (unlikely(ret)) {
David Woodhousee1605492009-06-29 11:17:38 +01003909 dma_pte_free_pagetable(domain, start_vpfn,
David Dillowbc24c572017-06-28 19:42:23 -07003910 start_vpfn + size - 1,
3911 agaw_to_level(domain->agaw) + 1);
Omer Peleg22e2f9f2016-04-20 11:34:11 +03003912 free_iova_fast(&domain->iovad, iova_pfn, dma_to_mm_pfn(size));
David Woodhousee1605492009-06-29 11:17:38 +01003913 return 0;
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -07003914 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003915
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003916 return nelems;
3917}
3918
Christoph Hellwig02b4da52018-09-17 19:10:31 +02003919static const struct dma_map_ops intel_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003920 .alloc = intel_alloc_coherent,
3921 .free = intel_free_coherent,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003922 .map_sg = intel_map_sg,
3923 .unmap_sg = intel_unmap_sg,
FUJITA Tomonoriffbbef52009-01-05 23:47:26 +09003924 .map_page = intel_map_page,
3925 .unmap_page = intel_unmap_page,
Logan Gunthorpe21d5d272019-01-22 14:30:45 -07003926 .map_resource = intel_map_resource,
3927 .unmap_resource = intel_unmap_page,
Christoph Hellwigfec777c2018-03-19 11:38:15 +01003928 .dma_supported = dma_direct_supported,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003929};
3930
3931static inline int iommu_domain_cache_init(void)
3932{
3933 int ret = 0;
3934
3935 iommu_domain_cache = kmem_cache_create("iommu_domain",
3936 sizeof(struct dmar_domain),
3937 0,
3938 SLAB_HWCACHE_ALIGN,
3939
3940 NULL);
3941 if (!iommu_domain_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003942 pr_err("Couldn't create iommu_domain cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003943 ret = -ENOMEM;
3944 }
3945
3946 return ret;
3947}
3948
3949static inline int iommu_devinfo_cache_init(void)
3950{
3951 int ret = 0;
3952
3953 iommu_devinfo_cache = kmem_cache_create("iommu_devinfo",
3954 sizeof(struct device_domain_info),
3955 0,
3956 SLAB_HWCACHE_ALIGN,
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003957 NULL);
3958 if (!iommu_devinfo_cache) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02003959 pr_err("Couldn't create devinfo cache\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003960 ret = -ENOMEM;
3961 }
3962
3963 return ret;
3964}
3965
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003966static int __init iommu_init_mempool(void)
3967{
3968 int ret;
Sakari Ailusae1ff3d2015-07-13 14:31:28 +03003969 ret = iova_cache_get();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003970 if (ret)
3971 return ret;
3972
3973 ret = iommu_domain_cache_init();
3974 if (ret)
3975 goto domain_error;
3976
3977 ret = iommu_devinfo_cache_init();
3978 if (!ret)
3979 return ret;
3980
3981 kmem_cache_destroy(iommu_domain_cache);
3982domain_error:
Sakari Ailusae1ff3d2015-07-13 14:31:28 +03003983 iova_cache_put();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003984
3985 return -ENOMEM;
3986}
3987
3988static void __init iommu_exit_mempool(void)
3989{
3990 kmem_cache_destroy(iommu_devinfo_cache);
3991 kmem_cache_destroy(iommu_domain_cache);
Sakari Ailusae1ff3d2015-07-13 14:31:28 +03003992 iova_cache_put();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07003993}
3994
Dan Williams556ab452010-07-23 15:47:56 -07003995static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev)
3996{
3997 struct dmar_drhd_unit *drhd;
3998 u32 vtbar;
3999 int rc;
4000
4001 /* We know that this device on this chipset has its own IOMMU.
4002 * If we find it under a different IOMMU, then the BIOS is lying
4003 * to us. Hope that the IOMMU for this device is actually
4004 * disabled, and it needs no translation...
4005 */
4006 rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar);
4007 if (rc) {
4008 /* "can't" happen */
4009 dev_info(&pdev->dev, "failed to run vt-d quirk\n");
4010 return;
4011 }
4012 vtbar &= 0xffff0000;
4013
4014 /* we know that the this iommu should be at offset 0xa000 from vtbar */
4015 drhd = dmar_find_matched_drhd_unit(pdev);
4016 if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000,
4017 TAINT_FIRMWARE_WORKAROUND,
4018 "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n"))
4019 pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
4020}
4021DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu);
4022
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004023static void __init init_no_remapping_devices(void)
4024{
4025 struct dmar_drhd_unit *drhd;
David Woodhouse832bd852014-03-07 15:08:36 +00004026 struct device *dev;
Jiang Liub683b232014-02-19 14:07:32 +08004027 int i;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004028
4029 for_each_drhd_unit(drhd) {
4030 if (!drhd->include_all) {
Jiang Liub683b232014-02-19 14:07:32 +08004031 for_each_active_dev_scope(drhd->devices,
4032 drhd->devices_cnt, i, dev)
4033 break;
David Woodhouse832bd852014-03-07 15:08:36 +00004034 /* ignore DMAR unit if no devices exist */
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004035 if (i == drhd->devices_cnt)
4036 drhd->ignored = 1;
4037 }
4038 }
4039
Jiang Liu7c919772014-01-06 14:18:18 +08004040 for_each_active_drhd_unit(drhd) {
Jiang Liu7c919772014-01-06 14:18:18 +08004041 if (drhd->include_all)
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004042 continue;
4043
Jiang Liub683b232014-02-19 14:07:32 +08004044 for_each_active_dev_scope(drhd->devices,
4045 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00004046 if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev)))
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004047 break;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004048 if (i < drhd->devices_cnt)
4049 continue;
4050
David Woodhousec0771df2011-10-14 20:59:46 +01004051 /* This IOMMU has *only* gfx devices. Either bypass it or
4052 set the gfx_mapped flag, as appropriate */
4053 if (dmar_map_gfx) {
4054 intel_iommu_gfx_mapped = 1;
4055 } else {
4056 drhd->ignored = 1;
Jiang Liub683b232014-02-19 14:07:32 +08004057 for_each_active_dev_scope(drhd->devices,
4058 drhd->devices_cnt, i, dev)
David Woodhouse832bd852014-03-07 15:08:36 +00004059 dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004060 }
4061 }
4062}
4063
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004064#ifdef CONFIG_SUSPEND
4065static int init_iommu_hw(void)
4066{
4067 struct dmar_drhd_unit *drhd;
4068 struct intel_iommu *iommu = NULL;
4069
4070 for_each_active_iommu(iommu, drhd)
4071 if (iommu->qi)
4072 dmar_reenable_qi(iommu);
4073
Joseph Cihulab7792602011-05-03 00:08:37 -07004074 for_each_iommu(iommu, drhd) {
4075 if (drhd->ignored) {
4076 /*
4077 * we always have to disable PMRs or DMA may fail on
4078 * this device
4079 */
4080 if (force_on)
4081 iommu_disable_protect_mem_regions(iommu);
4082 continue;
4083 }
4084
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004085 iommu_flush_write_buffer(iommu);
4086
4087 iommu_set_root_entry(iommu);
4088
4089 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01004090 DMA_CCMD_GLOBAL_INVL);
Jiang Liu2a41cce2014-07-11 14:19:33 +08004091 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4092 iommu_enable_translation(iommu);
David Woodhouseb94996c2009-09-19 15:28:12 -07004093 iommu_disable_protect_mem_regions(iommu);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004094 }
4095
4096 return 0;
4097}
4098
4099static void iommu_flush_all(void)
4100{
4101 struct dmar_drhd_unit *drhd;
4102 struct intel_iommu *iommu;
4103
4104 for_each_active_iommu(iommu, drhd) {
4105 iommu->flush.flush_context(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01004106 DMA_CCMD_GLOBAL_INVL);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004107 iommu->flush.flush_iotlb(iommu, 0, 0, 0,
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01004108 DMA_TLB_GLOBAL_FLUSH);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004109 }
4110}
4111
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004112static int iommu_suspend(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004113{
4114 struct dmar_drhd_unit *drhd;
4115 struct intel_iommu *iommu = NULL;
4116 unsigned long flag;
4117
4118 for_each_active_iommu(iommu, drhd) {
Kees Cook6396bb22018-06-12 14:03:40 -07004119 iommu->iommu_state = kcalloc(MAX_SR_DMAR_REGS, sizeof(u32),
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004120 GFP_ATOMIC);
4121 if (!iommu->iommu_state)
4122 goto nomem;
4123 }
4124
4125 iommu_flush_all();
4126
4127 for_each_active_iommu(iommu, drhd) {
4128 iommu_disable_translation(iommu);
4129
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02004130 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004131
4132 iommu->iommu_state[SR_DMAR_FECTL_REG] =
4133 readl(iommu->reg + DMAR_FECTL_REG);
4134 iommu->iommu_state[SR_DMAR_FEDATA_REG] =
4135 readl(iommu->reg + DMAR_FEDATA_REG);
4136 iommu->iommu_state[SR_DMAR_FEADDR_REG] =
4137 readl(iommu->reg + DMAR_FEADDR_REG);
4138 iommu->iommu_state[SR_DMAR_FEUADDR_REG] =
4139 readl(iommu->reg + DMAR_FEUADDR_REG);
4140
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02004141 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004142 }
4143 return 0;
4144
4145nomem:
4146 for_each_active_iommu(iommu, drhd)
4147 kfree(iommu->iommu_state);
4148
4149 return -ENOMEM;
4150}
4151
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004152static void iommu_resume(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004153{
4154 struct dmar_drhd_unit *drhd;
4155 struct intel_iommu *iommu = NULL;
4156 unsigned long flag;
4157
4158 if (init_iommu_hw()) {
Joseph Cihulab7792602011-05-03 00:08:37 -07004159 if (force_on)
4160 panic("tboot: IOMMU setup failed, DMAR can not resume!\n");
4161 else
4162 WARN(1, "IOMMU setup failed, DMAR can not resume!\n");
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004163 return;
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004164 }
4165
4166 for_each_active_iommu(iommu, drhd) {
4167
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02004168 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004169
4170 writel(iommu->iommu_state[SR_DMAR_FECTL_REG],
4171 iommu->reg + DMAR_FECTL_REG);
4172 writel(iommu->iommu_state[SR_DMAR_FEDATA_REG],
4173 iommu->reg + DMAR_FEDATA_REG);
4174 writel(iommu->iommu_state[SR_DMAR_FEADDR_REG],
4175 iommu->reg + DMAR_FEADDR_REG);
4176 writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG],
4177 iommu->reg + DMAR_FEUADDR_REG);
4178
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02004179 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004180 }
4181
4182 for_each_active_iommu(iommu, drhd)
4183 kfree(iommu->iommu_state);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004184}
4185
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004186static struct syscore_ops iommu_syscore_ops = {
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004187 .resume = iommu_resume,
4188 .suspend = iommu_suspend,
4189};
4190
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004191static void __init init_iommu_pm_ops(void)
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004192{
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004193 register_syscore_ops(&iommu_syscore_ops);
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004194}
4195
4196#else
Rafael J. Wysocki99592ba2011-06-07 21:32:31 +02004197static inline void init_iommu_pm_ops(void) {}
Fenghua Yuf59c7b62009-03-27 14:22:42 -07004198#endif /* CONFIG_PM */
4199
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004200
Jiang Liuc2a0b532014-11-09 22:47:56 +08004201int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004202{
4203 struct acpi_dmar_reserved_memory *rmrr;
Eric Auger0659b8d2017-01-19 20:57:53 +00004204 int prot = DMA_PTE_READ|DMA_PTE_WRITE;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004205 struct dmar_rmrr_unit *rmrru;
Eric Auger0659b8d2017-01-19 20:57:53 +00004206 size_t length;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004207
4208 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
4209 if (!rmrru)
Eric Auger0659b8d2017-01-19 20:57:53 +00004210 goto out;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004211
4212 rmrru->hdr = header;
4213 rmrr = (struct acpi_dmar_reserved_memory *)header;
4214 rmrru->base_address = rmrr->base_address;
4215 rmrru->end_address = rmrr->end_address;
Eric Auger0659b8d2017-01-19 20:57:53 +00004216
4217 length = rmrr->end_address - rmrr->base_address + 1;
4218 rmrru->resv = iommu_alloc_resv_region(rmrr->base_address, length, prot,
4219 IOMMU_RESV_DIRECT);
4220 if (!rmrru->resv)
4221 goto free_rmrru;
4222
Jiang Liu2e455282014-02-19 14:07:36 +08004223 rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1),
4224 ((void *)rmrr) + rmrr->header.length,
4225 &rmrru->devices_cnt);
Eric Auger0659b8d2017-01-19 20:57:53 +00004226 if (rmrru->devices_cnt && rmrru->devices == NULL)
4227 goto free_all;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004228
Jiang Liu2e455282014-02-19 14:07:36 +08004229 list_add(&rmrru->list, &dmar_rmrr_units);
4230
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004231 return 0;
Eric Auger0659b8d2017-01-19 20:57:53 +00004232free_all:
4233 kfree(rmrru->resv);
4234free_rmrru:
4235 kfree(rmrru);
4236out:
4237 return -ENOMEM;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004238}
4239
Jiang Liu6b197242014-11-09 22:47:58 +08004240static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr)
4241{
4242 struct dmar_atsr_unit *atsru;
4243 struct acpi_dmar_atsr *tmp;
4244
4245 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4246 tmp = (struct acpi_dmar_atsr *)atsru->hdr;
4247 if (atsr->segment != tmp->segment)
4248 continue;
4249 if (atsr->header.length != tmp->header.length)
4250 continue;
4251 if (memcmp(atsr, tmp, atsr->header.length) == 0)
4252 return atsru;
4253 }
4254
4255 return NULL;
4256}
4257
4258int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004259{
4260 struct acpi_dmar_atsr *atsr;
4261 struct dmar_atsr_unit *atsru;
4262
Thomas Gleixnerb608fe32017-05-16 20:42:41 +02004263 if (system_state >= SYSTEM_RUNNING && !intel_iommu_enabled)
Jiang Liu6b197242014-11-09 22:47:58 +08004264 return 0;
4265
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004266 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
Jiang Liu6b197242014-11-09 22:47:58 +08004267 atsru = dmar_find_atsr(atsr);
4268 if (atsru)
4269 return 0;
4270
4271 atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004272 if (!atsru)
4273 return -ENOMEM;
4274
Jiang Liu6b197242014-11-09 22:47:58 +08004275 /*
4276 * If memory is allocated from slab by ACPI _DSM method, we need to
4277 * copy the memory content because the memory buffer will be freed
4278 * on return.
4279 */
4280 atsru->hdr = (void *)(atsru + 1);
4281 memcpy(atsru->hdr, hdr, hdr->length);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004282 atsru->include_all = atsr->flags & 0x1;
Jiang Liu2e455282014-02-19 14:07:36 +08004283 if (!atsru->include_all) {
4284 atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1),
4285 (void *)atsr + atsr->header.length,
4286 &atsru->devices_cnt);
4287 if (atsru->devices_cnt && atsru->devices == NULL) {
4288 kfree(atsru);
4289 return -ENOMEM;
4290 }
4291 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004292
Jiang Liu0e242612014-02-19 14:07:34 +08004293 list_add_rcu(&atsru->list, &dmar_atsr_units);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004294
4295 return 0;
4296}
4297
Jiang Liu9bdc5312014-01-06 14:18:27 +08004298static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru)
4299{
4300 dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt);
4301 kfree(atsru);
4302}
4303
Jiang Liu6b197242014-11-09 22:47:58 +08004304int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4305{
4306 struct acpi_dmar_atsr *atsr;
4307 struct dmar_atsr_unit *atsru;
4308
4309 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4310 atsru = dmar_find_atsr(atsr);
4311 if (atsru) {
4312 list_del_rcu(&atsru->list);
4313 synchronize_rcu();
4314 intel_iommu_free_atsr(atsru);
4315 }
4316
4317 return 0;
4318}
4319
4320int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg)
4321{
4322 int i;
4323 struct device *dev;
4324 struct acpi_dmar_atsr *atsr;
4325 struct dmar_atsr_unit *atsru;
4326
4327 atsr = container_of(hdr, struct acpi_dmar_atsr, header);
4328 atsru = dmar_find_atsr(atsr);
4329 if (!atsru)
4330 return 0;
4331
Linus Torvalds194dc872016-07-27 20:03:31 -07004332 if (!atsru->include_all && atsru->devices && atsru->devices_cnt) {
Jiang Liu6b197242014-11-09 22:47:58 +08004333 for_each_active_dev_scope(atsru->devices, atsru->devices_cnt,
4334 i, dev)
4335 return -EBUSY;
Linus Torvalds194dc872016-07-27 20:03:31 -07004336 }
Jiang Liu6b197242014-11-09 22:47:58 +08004337
4338 return 0;
4339}
4340
Jiang Liuffebeb42014-11-09 22:48:02 +08004341static int intel_iommu_add(struct dmar_drhd_unit *dmaru)
4342{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06004343 int sp, ret;
Jiang Liuffebeb42014-11-09 22:48:02 +08004344 struct intel_iommu *iommu = dmaru->iommu;
4345
4346 if (g_iommus[iommu->seq_id])
4347 return 0;
4348
4349 if (hw_pass_through && !ecap_pass_through(iommu->ecap)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004350 pr_warn("%s: Doesn't support hardware pass through.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004351 iommu->name);
4352 return -ENXIO;
4353 }
4354 if (!ecap_sc_support(iommu->ecap) &&
4355 domain_update_iommu_snooping(iommu)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004356 pr_warn("%s: Doesn't support snooping.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004357 iommu->name);
4358 return -ENXIO;
4359 }
4360 sp = domain_update_iommu_superpage(iommu) - 1;
4361 if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004362 pr_warn("%s: Doesn't support large page.\n",
Jiang Liuffebeb42014-11-09 22:48:02 +08004363 iommu->name);
4364 return -ENXIO;
4365 }
4366
4367 /*
4368 * Disable translation if already enabled prior to OS handover.
4369 */
4370 if (iommu->gcmd & DMA_GCMD_TE)
4371 iommu_disable_translation(iommu);
4372
4373 g_iommus[iommu->seq_id] = iommu;
4374 ret = iommu_init_domains(iommu);
4375 if (ret == 0)
4376 ret = iommu_alloc_root_entry(iommu);
4377 if (ret)
4378 goto out;
4379
David Woodhouse8a94ade2015-03-24 14:54:56 +00004380#ifdef CONFIG_INTEL_IOMMU_SVM
Lu Baolu765b6a92018-12-10 09:58:55 +08004381 if (pasid_supported(iommu))
Lu Baolud9737952018-07-14 15:47:02 +08004382 intel_svm_init(iommu);
David Woodhouse8a94ade2015-03-24 14:54:56 +00004383#endif
4384
Jiang Liuffebeb42014-11-09 22:48:02 +08004385 if (dmaru->ignored) {
4386 /*
4387 * we always have to disable PMRs or DMA may fail on this device
4388 */
4389 if (force_on)
4390 iommu_disable_protect_mem_regions(iommu);
4391 return 0;
4392 }
4393
4394 intel_iommu_init_qi(iommu);
4395 iommu_flush_write_buffer(iommu);
David Woodhousea222a7f2015-10-07 23:35:18 +01004396
4397#ifdef CONFIG_INTEL_IOMMU_SVM
Lu Baolu765b6a92018-12-10 09:58:55 +08004398 if (pasid_supported(iommu) && ecap_prs(iommu->ecap)) {
David Woodhousea222a7f2015-10-07 23:35:18 +01004399 ret = intel_svm_enable_prq(iommu);
4400 if (ret)
4401 goto disable_iommu;
4402 }
4403#endif
Jiang Liuffebeb42014-11-09 22:48:02 +08004404 ret = dmar_set_interrupt(iommu);
4405 if (ret)
4406 goto disable_iommu;
4407
4408 iommu_set_root_entry(iommu);
4409 iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
4410 iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
4411 iommu_enable_translation(iommu);
4412
Jiang Liuffebeb42014-11-09 22:48:02 +08004413 iommu_disable_protect_mem_regions(iommu);
4414 return 0;
4415
4416disable_iommu:
4417 disable_dmar_iommu(iommu);
4418out:
4419 free_dmar_iommu(iommu);
4420 return ret;
4421}
4422
Jiang Liu6b197242014-11-09 22:47:58 +08004423int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
4424{
Jiang Liuffebeb42014-11-09 22:48:02 +08004425 int ret = 0;
4426 struct intel_iommu *iommu = dmaru->iommu;
4427
4428 if (!intel_iommu_enabled)
4429 return 0;
4430 if (iommu == NULL)
4431 return -EINVAL;
4432
4433 if (insert) {
4434 ret = intel_iommu_add(dmaru);
4435 } else {
4436 disable_dmar_iommu(iommu);
4437 free_dmar_iommu(iommu);
4438 }
4439
4440 return ret;
Jiang Liu6b197242014-11-09 22:47:58 +08004441}
4442
Jiang Liu9bdc5312014-01-06 14:18:27 +08004443static void intel_iommu_free_dmars(void)
4444{
4445 struct dmar_rmrr_unit *rmrru, *rmrr_n;
4446 struct dmar_atsr_unit *atsru, *atsr_n;
4447
4448 list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) {
4449 list_del(&rmrru->list);
4450 dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt);
Eric Auger0659b8d2017-01-19 20:57:53 +00004451 kfree(rmrru->resv);
Jiang Liu9bdc5312014-01-06 14:18:27 +08004452 kfree(rmrru);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004453 }
4454
Jiang Liu9bdc5312014-01-06 14:18:27 +08004455 list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) {
4456 list_del(&atsru->list);
4457 intel_iommu_free_atsr(atsru);
4458 }
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004459}
4460
4461int dmar_find_matched_atsr_unit(struct pci_dev *dev)
4462{
Jiang Liub683b232014-02-19 14:07:32 +08004463 int i, ret = 1;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004464 struct pci_bus *bus;
David Woodhouse832bd852014-03-07 15:08:36 +00004465 struct pci_dev *bridge = NULL;
4466 struct device *tmp;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004467 struct acpi_dmar_atsr *atsr;
4468 struct dmar_atsr_unit *atsru;
4469
4470 dev = pci_physfn(dev);
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004471 for (bus = dev->bus; bus; bus = bus->parent) {
Jiang Liub5f82dd2014-02-19 14:07:31 +08004472 bridge = bus->self;
David Woodhoused14053b32015-10-15 09:28:06 +01004473 /* If it's an integrated device, allow ATS */
4474 if (!bridge)
4475 return 1;
4476 /* Connected via non-PCIe: no ATS */
4477 if (!pci_is_pcie(bridge) ||
Yijing Wang62f87c02012-07-24 17:20:03 +08004478 pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004479 return 0;
David Woodhoused14053b32015-10-15 09:28:06 +01004480 /* If we found the root port, look it up in the ATSR */
Jiang Liub5f82dd2014-02-19 14:07:31 +08004481 if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT)
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004482 break;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004483 }
4484
Jiang Liu0e242612014-02-19 14:07:34 +08004485 rcu_read_lock();
Jiang Liub5f82dd2014-02-19 14:07:31 +08004486 list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) {
4487 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4488 if (atsr->segment != pci_domain_nr(dev->bus))
4489 continue;
4490
Jiang Liub683b232014-02-19 14:07:32 +08004491 for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +00004492 if (tmp == &bridge->dev)
Jiang Liub683b232014-02-19 14:07:32 +08004493 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004494
4495 if (atsru->include_all)
Jiang Liub683b232014-02-19 14:07:32 +08004496 goto out;
Jiang Liub5f82dd2014-02-19 14:07:31 +08004497 }
Jiang Liub683b232014-02-19 14:07:32 +08004498 ret = 0;
4499out:
Jiang Liu0e242612014-02-19 14:07:34 +08004500 rcu_read_unlock();
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004501
Jiang Liub683b232014-02-19 14:07:32 +08004502 return ret;
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004503}
4504
Jiang Liu59ce0512014-02-19 14:07:35 +08004505int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
4506{
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06004507 int ret;
Jiang Liu59ce0512014-02-19 14:07:35 +08004508 struct dmar_rmrr_unit *rmrru;
4509 struct dmar_atsr_unit *atsru;
4510 struct acpi_dmar_atsr *atsr;
4511 struct acpi_dmar_reserved_memory *rmrr;
4512
Thomas Gleixnerb608fe32017-05-16 20:42:41 +02004513 if (!intel_iommu_enabled && system_state >= SYSTEM_RUNNING)
Jiang Liu59ce0512014-02-19 14:07:35 +08004514 return 0;
4515
4516 list_for_each_entry(rmrru, &dmar_rmrr_units, list) {
4517 rmrr = container_of(rmrru->hdr,
4518 struct acpi_dmar_reserved_memory, header);
4519 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4520 ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1),
4521 ((void *)rmrr) + rmrr->header.length,
4522 rmrr->segment, rmrru->devices,
4523 rmrru->devices_cnt);
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06004524 if (ret < 0)
Jiang Liu59ce0512014-02-19 14:07:35 +08004525 return ret;
Joerg Roedele6a8c9b2016-02-29 23:49:47 +01004526 } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) {
Jiang Liu27e24952014-06-20 15:08:06 +08004527 dmar_remove_dev_scope(info, rmrr->segment,
4528 rmrru->devices, rmrru->devices_cnt);
Jiang Liu59ce0512014-02-19 14:07:35 +08004529 }
4530 }
4531
4532 list_for_each_entry(atsru, &dmar_atsr_units, list) {
4533 if (atsru->include_all)
4534 continue;
4535
4536 atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header);
4537 if (info->event == BUS_NOTIFY_ADD_DEVICE) {
4538 ret = dmar_insert_dev_scope(info, (void *)(atsr + 1),
4539 (void *)atsr + atsr->header.length,
4540 atsr->segment, atsru->devices,
4541 atsru->devices_cnt);
4542 if (ret > 0)
4543 break;
Bjorn Helgaase083ea5b2019-02-08 16:06:08 -06004544 else if (ret < 0)
Jiang Liu59ce0512014-02-19 14:07:35 +08004545 return ret;
Joerg Roedele6a8c9b2016-02-29 23:49:47 +01004546 } else if (info->event == BUS_NOTIFY_REMOVED_DEVICE) {
Jiang Liu59ce0512014-02-19 14:07:35 +08004547 if (dmar_remove_dev_scope(info, atsr->segment,
4548 atsru->devices, atsru->devices_cnt))
4549 break;
4550 }
4551 }
4552
4553 return 0;
4554}
4555
Fenghua Yu99dcade2009-11-11 07:23:06 -08004556/*
4557 * Here we only respond to action of unbound device from driver.
4558 *
4559 * Added device is not attached to its DMAR domain here yet. That will happen
4560 * when mapping the device to iova.
4561 */
4562static int device_notifier(struct notifier_block *nb,
4563 unsigned long action, void *data)
4564{
4565 struct device *dev = data;
Fenghua Yu99dcade2009-11-11 07:23:06 -08004566 struct dmar_domain *domain;
4567
David Woodhouse3d891942014-03-06 15:59:26 +00004568 if (iommu_dummy(dev))
David Woodhouse44cd6132009-12-02 10:18:30 +00004569 return 0;
4570
Lu Baolu117266f2019-02-25 10:46:36 +08004571 if (action == BUS_NOTIFY_REMOVED_DEVICE) {
4572 domain = find_domain(dev);
4573 if (!domain)
4574 return 0;
Jiang Liu7e7dfab2014-02-19 14:07:23 +08004575
Lu Baolu117266f2019-02-25 10:46:36 +08004576 dmar_remove_one_dev_info(dev);
4577 if (!domain_type_is_vm_or_si(domain) &&
4578 list_empty(&domain->devices))
4579 domain_exit(domain);
4580 } else if (action == BUS_NOTIFY_ADD_DEVICE) {
4581 if (iommu_should_identity_map(dev, 1))
4582 domain_add_dev_info(si_domain, dev);
4583 }
Alex Williamsona97590e2011-03-04 14:52:16 -07004584
Fenghua Yu99dcade2009-11-11 07:23:06 -08004585 return 0;
4586}
4587
4588static struct notifier_block device_nb = {
4589 .notifier_call = device_notifier,
4590};
4591
Jiang Liu75f05562014-02-19 14:07:37 +08004592static int intel_iommu_memory_notifier(struct notifier_block *nb,
4593 unsigned long val, void *v)
4594{
4595 struct memory_notify *mhp = v;
4596 unsigned long long start, end;
4597 unsigned long start_vpfn, last_vpfn;
4598
4599 switch (val) {
4600 case MEM_GOING_ONLINE:
4601 start = mhp->start_pfn << PAGE_SHIFT;
4602 end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1;
4603 if (iommu_domain_identity_map(si_domain, start, end)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004604 pr_warn("Failed to build identity map for [%llx-%llx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004605 start, end);
4606 return NOTIFY_BAD;
4607 }
4608 break;
4609
4610 case MEM_OFFLINE:
4611 case MEM_CANCEL_ONLINE:
4612 start_vpfn = mm_to_dma_pfn(mhp->start_pfn);
4613 last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1);
4614 while (start_vpfn <= last_vpfn) {
4615 struct iova *iova;
4616 struct dmar_drhd_unit *drhd;
4617 struct intel_iommu *iommu;
David Woodhouseea8ea462014-03-05 17:09:32 +00004618 struct page *freelist;
Jiang Liu75f05562014-02-19 14:07:37 +08004619
4620 iova = find_iova(&si_domain->iovad, start_vpfn);
4621 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004622 pr_debug("Failed get IOVA for PFN %lx\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004623 start_vpfn);
4624 break;
4625 }
4626
4627 iova = split_and_remove_iova(&si_domain->iovad, iova,
4628 start_vpfn, last_vpfn);
4629 if (iova == NULL) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004630 pr_warn("Failed to split IOVA PFN [%lx-%lx]\n",
Jiang Liu75f05562014-02-19 14:07:37 +08004631 start_vpfn, last_vpfn);
4632 return NOTIFY_BAD;
4633 }
4634
David Woodhouseea8ea462014-03-05 17:09:32 +00004635 freelist = domain_unmap(si_domain, iova->pfn_lo,
4636 iova->pfn_hi);
4637
Jiang Liu75f05562014-02-19 14:07:37 +08004638 rcu_read_lock();
4639 for_each_active_iommu(iommu, drhd)
Joerg Roedela1ddcbe2015-07-21 15:20:32 +02004640 iommu_flush_iotlb_psi(iommu, si_domain,
Jiang Liua156ef92014-07-11 14:19:36 +08004641 iova->pfn_lo, iova_size(iova),
David Woodhouseea8ea462014-03-05 17:09:32 +00004642 !freelist, 0);
Jiang Liu75f05562014-02-19 14:07:37 +08004643 rcu_read_unlock();
David Woodhouseea8ea462014-03-05 17:09:32 +00004644 dma_free_pagelist(freelist);
Jiang Liu75f05562014-02-19 14:07:37 +08004645
4646 start_vpfn = iova->pfn_hi + 1;
4647 free_iova_mem(iova);
4648 }
4649 break;
4650 }
4651
4652 return NOTIFY_OK;
4653}
4654
4655static struct notifier_block intel_iommu_memory_nb = {
4656 .notifier_call = intel_iommu_memory_notifier,
4657 .priority = 0
4658};
4659
Omer Peleg22e2f9f2016-04-20 11:34:11 +03004660static void free_all_cpu_cached_iovas(unsigned int cpu)
4661{
4662 int i;
4663
4664 for (i = 0; i < g_num_of_iommus; i++) {
4665 struct intel_iommu *iommu = g_iommus[i];
4666 struct dmar_domain *domain;
Aaron Campbell0caa7612016-07-02 21:23:24 -03004667 int did;
Omer Peleg22e2f9f2016-04-20 11:34:11 +03004668
4669 if (!iommu)
4670 continue;
4671
Jan Niehusmann3bd4f912016-06-06 14:20:11 +02004672 for (did = 0; did < cap_ndoms(iommu->cap); did++) {
Aaron Campbell0caa7612016-07-02 21:23:24 -03004673 domain = get_iommu_domain(iommu, (u16)did);
Omer Peleg22e2f9f2016-04-20 11:34:11 +03004674
4675 if (!domain)
4676 continue;
4677 free_cpu_cached_iovas(cpu, &domain->iovad);
4678 }
4679 }
4680}
4681
Anna-Maria Gleixner21647612016-11-27 00:13:41 +01004682static int intel_iommu_cpu_dead(unsigned int cpu)
Omer Pelegaa473242016-04-20 11:33:02 +03004683{
Anna-Maria Gleixner21647612016-11-27 00:13:41 +01004684 free_all_cpu_cached_iovas(cpu);
Anna-Maria Gleixner21647612016-11-27 00:13:41 +01004685 return 0;
Omer Pelegaa473242016-04-20 11:33:02 +03004686}
4687
Joerg Roedel161b28a2017-03-28 17:04:52 +02004688static void intel_disable_iommus(void)
4689{
4690 struct intel_iommu *iommu = NULL;
4691 struct dmar_drhd_unit *drhd;
4692
4693 for_each_iommu(iommu, drhd)
4694 iommu_disable_translation(iommu);
4695}
4696
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004697static inline struct intel_iommu *dev_to_intel_iommu(struct device *dev)
4698{
Joerg Roedel2926a2aa2017-08-14 17:19:26 +02004699 struct iommu_device *iommu_dev = dev_to_iommu_device(dev);
4700
4701 return container_of(iommu_dev, struct intel_iommu, iommu);
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004702}
4703
Alex Williamsona5459cf2014-06-12 16:12:31 -06004704static ssize_t intel_iommu_show_version(struct device *dev,
4705 struct device_attribute *attr,
4706 char *buf)
4707{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004708 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004709 u32 ver = readl(iommu->reg + DMAR_VER_REG);
4710 return sprintf(buf, "%d:%d\n",
4711 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver));
4712}
4713static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL);
4714
4715static ssize_t intel_iommu_show_address(struct device *dev,
4716 struct device_attribute *attr,
4717 char *buf)
4718{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004719 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004720 return sprintf(buf, "%llx\n", iommu->reg_phys);
4721}
4722static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL);
4723
4724static ssize_t intel_iommu_show_cap(struct device *dev,
4725 struct device_attribute *attr,
4726 char *buf)
4727{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004728 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004729 return sprintf(buf, "%llx\n", iommu->cap);
4730}
4731static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL);
4732
4733static ssize_t intel_iommu_show_ecap(struct device *dev,
4734 struct device_attribute *attr,
4735 char *buf)
4736{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004737 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06004738 return sprintf(buf, "%llx\n", iommu->ecap);
4739}
4740static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL);
4741
Alex Williamson2238c082015-07-14 15:24:53 -06004742static ssize_t intel_iommu_show_ndoms(struct device *dev,
4743 struct device_attribute *attr,
4744 char *buf)
4745{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004746 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamson2238c082015-07-14 15:24:53 -06004747 return sprintf(buf, "%ld\n", cap_ndoms(iommu->cap));
4748}
4749static DEVICE_ATTR(domains_supported, S_IRUGO, intel_iommu_show_ndoms, NULL);
4750
4751static ssize_t intel_iommu_show_ndoms_used(struct device *dev,
4752 struct device_attribute *attr,
4753 char *buf)
4754{
Joerg Roedela7fdb6e2017-02-28 13:57:18 +01004755 struct intel_iommu *iommu = dev_to_intel_iommu(dev);
Alex Williamson2238c082015-07-14 15:24:53 -06004756 return sprintf(buf, "%d\n", bitmap_weight(iommu->domain_ids,
4757 cap_ndoms(iommu->cap)));
4758}
4759static DEVICE_ATTR(domains_used, S_IRUGO, intel_iommu_show_ndoms_used, NULL);
4760
Alex Williamsona5459cf2014-06-12 16:12:31 -06004761static struct attribute *intel_iommu_attrs[] = {
4762 &dev_attr_version.attr,
4763 &dev_attr_address.attr,
4764 &dev_attr_cap.attr,
4765 &dev_attr_ecap.attr,
Alex Williamson2238c082015-07-14 15:24:53 -06004766 &dev_attr_domains_supported.attr,
4767 &dev_attr_domains_used.attr,
Alex Williamsona5459cf2014-06-12 16:12:31 -06004768 NULL,
4769};
4770
4771static struct attribute_group intel_iommu_group = {
4772 .name = "intel-iommu",
4773 .attrs = intel_iommu_attrs,
4774};
4775
4776const struct attribute_group *intel_iommu_groups[] = {
4777 &intel_iommu_group,
4778 NULL,
4779};
4780
Lu Baolu89a60792018-10-23 15:45:01 +08004781static int __init platform_optin_force_iommu(void)
4782{
4783 struct pci_dev *pdev = NULL;
4784 bool has_untrusted_dev = false;
4785
4786 if (!dmar_platform_optin() || no_platform_optin)
4787 return 0;
4788
4789 for_each_pci_dev(pdev) {
4790 if (pdev->untrusted) {
4791 has_untrusted_dev = true;
4792 break;
4793 }
4794 }
4795
4796 if (!has_untrusted_dev)
4797 return 0;
4798
4799 if (no_iommu || dmar_disabled)
4800 pr_info("Intel-IOMMU force enabled due to platform opt in\n");
4801
4802 /*
4803 * If Intel-IOMMU is disabled by default, we will apply identity
4804 * map for all devices except those marked as being untrusted.
4805 */
4806 if (dmar_disabled)
4807 iommu_identity_mapping |= IDENTMAP_ALL;
4808
4809 dmar_disabled = 0;
4810#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB)
4811 swiotlb = 0;
4812#endif
4813 no_iommu = 0;
4814
4815 return 1;
4816}
4817
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004818int __init intel_iommu_init(void)
4819{
Jiang Liu9bdc5312014-01-06 14:18:27 +08004820 int ret = -ENODEV;
Takao Indoh3a93c842013-04-23 17:35:03 +09004821 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08004822 struct intel_iommu *iommu;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004823
Lu Baolu89a60792018-10-23 15:45:01 +08004824 /*
4825 * Intel IOMMU is required for a TXT/tboot launch or platform
4826 * opt in, so enforce that.
4827 */
4828 force_on = tboot_force_iommu() || platform_optin_force_iommu();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004829
Jiang Liu3a5670e2014-02-19 14:07:33 +08004830 if (iommu_init_mempool()) {
4831 if (force_on)
4832 panic("tboot: Failed to initialize iommu memory\n");
4833 return -ENOMEM;
4834 }
4835
4836 down_write(&dmar_global_lock);
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004837 if (dmar_table_init()) {
4838 if (force_on)
4839 panic("tboot: Failed to initialize DMAR table\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004840 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004841 }
4842
Suresh Siddhac2c72862011-08-23 17:05:19 -07004843 if (dmar_dev_scope_init() < 0) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004844 if (force_on)
4845 panic("tboot: Failed to initialize DMAR device scope\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004846 goto out_free_dmar;
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004847 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -07004848
Joerg Roedelec154bf2017-10-06 15:00:53 +02004849 up_write(&dmar_global_lock);
4850
4851 /*
4852 * The bus notifier takes the dmar_global_lock, so lockdep will
4853 * complain later when we register it under the lock.
4854 */
4855 dmar_register_bus_notifier();
4856
4857 down_write(&dmar_global_lock);
4858
Joerg Roedel161b28a2017-03-28 17:04:52 +02004859 if (no_iommu || dmar_disabled) {
4860 /*
Shaohua Libfd20f12017-04-26 09:18:35 -07004861 * We exit the function here to ensure IOMMU's remapping and
4862 * mempool aren't setup, which means that the IOMMU's PMRs
4863 * won't be disabled via the call to init_dmars(). So disable
4864 * it explicitly here. The PMRs were setup by tboot prior to
4865 * calling SENTER, but the kernel is expected to reset/tear
4866 * down the PMRs.
4867 */
4868 if (intel_iommu_tboot_noforce) {
4869 for_each_iommu(iommu, drhd)
4870 iommu_disable_protect_mem_regions(iommu);
4871 }
4872
4873 /*
Joerg Roedel161b28a2017-03-28 17:04:52 +02004874 * Make sure the IOMMUs are switched off, even when we
4875 * boot into a kexec kernel and the previous kernel left
4876 * them enabled
4877 */
4878 intel_disable_iommus();
Jiang Liu9bdc5312014-01-06 14:18:27 +08004879 goto out_free_dmar;
Joerg Roedel161b28a2017-03-28 17:04:52 +02004880 }
Suresh Siddha2ae21012008-07-10 11:16:43 -07004881
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004882 if (list_empty(&dmar_rmrr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004883 pr_info("No RMRR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004884
4885 if (list_empty(&dmar_atsr_units))
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004886 pr_info("No ATSR found\n");
Suresh Siddha318fe7d2011-08-23 17:05:20 -07004887
Joseph Cihula51a63e62011-03-21 11:04:24 -07004888 if (dmar_init_reserved_ranges()) {
4889 if (force_on)
4890 panic("tboot: Failed to reserve iommu ranges\n");
Jiang Liu3a5670e2014-02-19 14:07:33 +08004891 goto out_free_reserved_range;
Joseph Cihula51a63e62011-03-21 11:04:24 -07004892 }
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004893
4894 init_no_remapping_devices();
4895
Joseph Cihulab7792602011-05-03 00:08:37 -07004896 ret = init_dmars();
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004897 if (ret) {
Joseph Cihulaa59b50e2009-06-30 19:31:10 -07004898 if (force_on)
4899 panic("tboot: Failed to initialize DMARs\n");
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004900 pr_err("Initialization failed\n");
Jiang Liu9bdc5312014-01-06 14:18:27 +08004901 goto out_free_reserved_range;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004902 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08004903 up_write(&dmar_global_lock);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02004904 pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004905
Christoph Hellwig4fac8072017-12-24 13:57:08 +01004906#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB)
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09004907 swiotlb = 0;
4908#endif
David Woodhouse19943b02009-08-04 16:19:20 +01004909 dma_ops = &intel_dma_ops;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07004910
Rafael J. Wysocki134fac32011-03-23 22:16:14 +01004911 init_iommu_pm_ops();
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01004912
Joerg Roedel39ab9552017-02-01 16:56:46 +01004913 for_each_active_iommu(iommu, drhd) {
4914 iommu_device_sysfs_add(&iommu->iommu, NULL,
4915 intel_iommu_groups,
4916 "%s", iommu->name);
4917 iommu_device_set_ops(&iommu->iommu, &intel_iommu_ops);
4918 iommu_device_register(&iommu->iommu);
4919 }
Alex Williamsona5459cf2014-06-12 16:12:31 -06004920
Joerg Roedel4236d97d2011-09-06 17:56:07 +02004921 bus_set_iommu(&pci_bus_type, &intel_iommu_ops);
Fenghua Yu99dcade2009-11-11 07:23:06 -08004922 bus_register_notifier(&pci_bus_type, &device_nb);
Jiang Liu75f05562014-02-19 14:07:37 +08004923 if (si_domain && !hw_pass_through)
4924 register_memory_notifier(&intel_iommu_memory_nb);
Anna-Maria Gleixner21647612016-11-27 00:13:41 +01004925 cpuhp_setup_state(CPUHP_IOMMU_INTEL_DEAD, "iommu/intel:dead", NULL,
4926 intel_iommu_cpu_dead);
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02004927 intel_iommu_enabled = 1;
Sohil Mehtaee2636b2018-09-11 17:11:38 -07004928 intel_iommu_debugfs_init();
Eugeni Dodonov8bc1f852011-11-23 16:42:14 -02004929
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004930 return 0;
Jiang Liu9bdc5312014-01-06 14:18:27 +08004931
4932out_free_reserved_range:
4933 put_iova_domain(&reserved_iova_list);
Jiang Liu9bdc5312014-01-06 14:18:27 +08004934out_free_dmar:
4935 intel_iommu_free_dmars();
Jiang Liu3a5670e2014-02-19 14:07:33 +08004936 up_write(&dmar_global_lock);
4937 iommu_exit_mempool();
Jiang Liu9bdc5312014-01-06 14:18:27 +08004938 return ret;
Keshavamurthy, Anil Sba395922007-10-21 16:41:49 -07004939}
Keshavamurthy, Anil Se8204822007-10-21 16:41:55 -07004940
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004941static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *opaque)
Alex Williamson579305f2014-07-03 09:51:43 -06004942{
4943 struct intel_iommu *iommu = opaque;
4944
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004945 domain_context_clear_one(iommu, PCI_BUS_NUM(alias), alias & 0xff);
Alex Williamson579305f2014-07-03 09:51:43 -06004946 return 0;
4947}
4948
4949/*
4950 * NB - intel-iommu lacks any sort of reference counting for the users of
4951 * dependent devices. If multiple endpoints have intersecting dependent
4952 * devices, unbinding the driver from any one of them will possibly leave
4953 * the others unable to operate.
4954 */
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004955static void domain_context_clear(struct intel_iommu *iommu, struct device *dev)
Han, Weidong3199aa62009-02-26 17:31:12 +08004956{
David Woodhouse0bcb3e22014-03-06 17:12:03 +00004957 if (!iommu || !dev || !dev_is_pci(dev))
Han, Weidong3199aa62009-02-26 17:31:12 +08004958 return;
4959
Joerg Roedel2452d9d2015-07-23 16:20:14 +02004960 pci_for_each_dma_alias(to_pci_dev(dev), &domain_context_clear_one_cb, iommu);
Han, Weidong3199aa62009-02-26 17:31:12 +08004961}
4962
Joerg Roedel127c7612015-07-23 17:44:46 +02004963static void __dmar_remove_one_dev_info(struct device_domain_info *info)
Weidong Hanc7151a82008-12-08 22:51:37 +08004964{
Weidong Hanc7151a82008-12-08 22:51:37 +08004965 struct intel_iommu *iommu;
4966 unsigned long flags;
Weidong Hanc7151a82008-12-08 22:51:37 +08004967
Joerg Roedel55d94042015-07-22 16:50:40 +02004968 assert_spin_locked(&device_domain_lock);
4969
Joerg Roedelb608ac32015-07-21 18:19:08 +02004970 if (WARN_ON(!info))
Weidong Hanc7151a82008-12-08 22:51:37 +08004971 return;
4972
Joerg Roedel127c7612015-07-23 17:44:46 +02004973 iommu = info->iommu;
4974
4975 if (info->dev) {
Lu Baoluef848b72018-12-10 09:59:01 +08004976 if (dev_is_pci(info->dev) && sm_supported(iommu))
4977 intel_pasid_tear_down_entry(iommu, info->dev,
4978 PASID_RID2PASID);
4979
Joerg Roedel127c7612015-07-23 17:44:46 +02004980 iommu_disable_dev_iotlb(info);
4981 domain_context_clear(iommu, info->dev);
Lu Baolua7fc93f2018-07-14 15:47:00 +08004982 intel_pasid_free_table(info->dev);
Joerg Roedel127c7612015-07-23 17:44:46 +02004983 }
4984
Joerg Roedelb608ac32015-07-21 18:19:08 +02004985 unlink_domain_info(info);
Roland Dreier3e7abe22011-07-20 06:22:21 -07004986
Joerg Roedeld160aca2015-07-22 11:52:53 +02004987 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004988 domain_detach_iommu(info->domain, iommu);
Joerg Roedeld160aca2015-07-22 11:52:53 +02004989 spin_unlock_irqrestore(&iommu->lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02004990
4991 free_devinfo_mem(info);
Weidong Hanc7151a82008-12-08 22:51:37 +08004992}
4993
Bjorn Helgaas71753232019-02-08 16:06:15 -06004994static void dmar_remove_one_dev_info(struct device *dev)
Joerg Roedel55d94042015-07-22 16:50:40 +02004995{
Joerg Roedel127c7612015-07-23 17:44:46 +02004996 struct device_domain_info *info;
Joerg Roedel55d94042015-07-22 16:50:40 +02004997 unsigned long flags;
4998
Weidong Hanc7151a82008-12-08 22:51:37 +08004999 spin_lock_irqsave(&device_domain_lock, flags);
Joerg Roedel127c7612015-07-23 17:44:46 +02005000 info = dev->archdata.iommu;
5001 __dmar_remove_one_dev_info(info);
Weidong Han5e98c4b2008-12-08 23:03:27 +08005002 spin_unlock_irqrestore(&device_domain_lock, flags);
Weidong Han5e98c4b2008-12-08 23:03:27 +08005003}
5004
5005static int md_domain_init(struct dmar_domain *domain, int guest_width)
5006{
5007 int adjust_width;
5008
Zhen Leiaa3ac942017-09-21 16:52:45 +01005009 init_iova_domain(&domain->iovad, VTD_PAGE_SIZE, IOVA_START_PFN);
Weidong Han5e98c4b2008-12-08 23:03:27 +08005010 domain_reserve_special_ranges(domain);
5011
5012 /* calculate AGAW */
5013 domain->gaw = guest_width;
5014 adjust_width = guestwidth_to_adjustwidth(guest_width);
5015 domain->agaw = width_to_agaw(adjust_width);
5016
Weidong Han5e98c4b2008-12-08 23:03:27 +08005017 domain->iommu_coherency = 0;
Sheng Yangc5b15252009-08-06 13:31:56 +08005018 domain->iommu_snooping = 0;
Youquan Song6dd9a7c2011-05-25 19:13:49 +01005019 domain->iommu_superpage = 0;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005020 domain->max_addr = 0;
Weidong Han5e98c4b2008-12-08 23:03:27 +08005021
5022 /* always allocate the top pgd */
Suresh Siddha4c923d42009-10-02 11:01:24 -07005023 domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid);
Weidong Han5e98c4b2008-12-08 23:03:27 +08005024 if (!domain->pgd)
5025 return -ENOMEM;
5026 domain_flush_cache(domain, domain->pgd, PAGE_SIZE);
5027 return 0;
5028}
5029
Joerg Roedel00a77de2015-03-26 13:43:08 +01005030static struct iommu_domain *intel_iommu_domain_alloc(unsigned type)
Kay, Allen M38717942008-09-09 18:37:29 +03005031{
Joerg Roedel5d450802008-12-03 14:52:32 +01005032 struct dmar_domain *dmar_domain;
Joerg Roedel00a77de2015-03-26 13:43:08 +01005033 struct iommu_domain *domain;
5034
5035 if (type != IOMMU_DOMAIN_UNMANAGED)
5036 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03005037
Jiang Liuab8dfe22014-07-11 14:19:27 +08005038 dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE);
Joerg Roedel5d450802008-12-03 14:52:32 +01005039 if (!dmar_domain) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005040 pr_err("Can't allocate dmar_domain\n");
Joerg Roedel00a77de2015-03-26 13:43:08 +01005041 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03005042 }
Fenghua Yu2c2e2c32009-06-19 13:47:29 -07005043 if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005044 pr_err("Domain initialization failed\n");
Jiang Liu92d03cc2014-02-19 14:07:28 +08005045 domain_exit(dmar_domain);
Joerg Roedel00a77de2015-03-26 13:43:08 +01005046 return NULL;
Kay, Allen M38717942008-09-09 18:37:29 +03005047 }
Allen Kay8140a952011-10-14 12:32:17 -07005048 domain_update_iommu_cap(dmar_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005049
Joerg Roedel00a77de2015-03-26 13:43:08 +01005050 domain = &dmar_domain->domain;
Joerg Roedel8a0e7152012-01-26 19:40:54 +01005051 domain->geometry.aperture_start = 0;
5052 domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw);
5053 domain->geometry.force_aperture = true;
5054
Joerg Roedel00a77de2015-03-26 13:43:08 +01005055 return domain;
Kay, Allen M38717942008-09-09 18:37:29 +03005056}
Kay, Allen M38717942008-09-09 18:37:29 +03005057
Joerg Roedel00a77de2015-03-26 13:43:08 +01005058static void intel_iommu_domain_free(struct iommu_domain *domain)
Kay, Allen M38717942008-09-09 18:37:29 +03005059{
Joerg Roedel00a77de2015-03-26 13:43:08 +01005060 domain_exit(to_dmar_domain(domain));
Kay, Allen M38717942008-09-09 18:37:29 +03005061}
Kay, Allen M38717942008-09-09 18:37:29 +03005062
Joerg Roedel4c5478c2008-12-03 14:58:24 +01005063static int intel_iommu_attach_device(struct iommu_domain *domain,
5064 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03005065{
Joerg Roedel00a77de2015-03-26 13:43:08 +01005066 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005067 struct intel_iommu *iommu;
5068 int addr_width;
David Woodhouse156baca2014-03-09 14:00:57 -07005069 u8 bus, devfn;
Kay, Allen M38717942008-09-09 18:37:29 +03005070
Alex Williamsonc875d2c2014-07-03 09:57:02 -06005071 if (device_is_rmrr_locked(dev)) {
5072 dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n");
5073 return -EPERM;
5074 }
5075
David Woodhouse7207d8f2014-03-09 16:31:06 -07005076 /* normally dev is not mapped */
5077 if (unlikely(domain_context_mapped(dev))) {
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005078 struct dmar_domain *old_domain;
5079
David Woodhouse1525a292014-03-06 16:19:30 +00005080 old_domain = find_domain(dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005081 if (old_domain) {
Joerg Roedeld160aca2015-07-22 11:52:53 +02005082 rcu_read_lock();
Bjorn Helgaas71753232019-02-08 16:06:15 -06005083 dmar_remove_one_dev_info(dev);
Joerg Roedeld160aca2015-07-22 11:52:53 +02005084 rcu_read_unlock();
Joerg Roedel62c22162014-12-09 12:56:45 +01005085
5086 if (!domain_type_is_vm_or_si(old_domain) &&
5087 list_empty(&old_domain->devices))
5088 domain_exit(old_domain);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005089 }
5090 }
5091
David Woodhouse156baca2014-03-09 14:00:57 -07005092 iommu = device_to_iommu(dev, &bus, &devfn);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005093 if (!iommu)
5094 return -ENODEV;
5095
5096 /* check if this iommu agaw is sufficient for max mapped address */
5097 addr_width = agaw_to_width(iommu->agaw);
Tom Lyona99c47a2010-05-17 08:20:45 +01005098 if (addr_width > cap_mgaw(iommu->cap))
5099 addr_width = cap_mgaw(iommu->cap);
5100
5101 if (dmar_domain->max_addr > (1LL << addr_width)) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06005102 dev_err(dev, "%s: iommu width (%d) is not "
5103 "sufficient for the mapped address (%llx)\n",
5104 __func__, addr_width, dmar_domain->max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005105 return -EFAULT;
5106 }
Tom Lyona99c47a2010-05-17 08:20:45 +01005107 dmar_domain->gaw = addr_width;
5108
5109 /*
5110 * Knock out extra levels of page tables if necessary
5111 */
5112 while (iommu->agaw < dmar_domain->agaw) {
5113 struct dma_pte *pte;
5114
5115 pte = dmar_domain->pgd;
5116 if (dma_pte_present(pte)) {
Sheng Yang25cbff12010-06-12 19:21:42 +08005117 dmar_domain->pgd = (struct dma_pte *)
5118 phys_to_virt(dma_pte_addr(pte));
Jan Kiszka7a661012010-11-02 08:05:51 +01005119 free_pgtable_page(pte);
Tom Lyona99c47a2010-05-17 08:20:45 +01005120 }
5121 dmar_domain->agaw--;
5122 }
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005123
Joerg Roedel28ccce02015-07-21 14:45:31 +02005124 return domain_add_dev_info(dmar_domain, dev);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005125}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005126
Joerg Roedel4c5478c2008-12-03 14:58:24 +01005127static void intel_iommu_detach_device(struct iommu_domain *domain,
5128 struct device *dev)
Kay, Allen M38717942008-09-09 18:37:29 +03005129{
Bjorn Helgaas71753232019-02-08 16:06:15 -06005130 dmar_remove_one_dev_info(dev);
Kay, Allen M38717942008-09-09 18:37:29 +03005131}
Kay, Allen M38717942008-09-09 18:37:29 +03005132
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01005133static int intel_iommu_map(struct iommu_domain *domain,
5134 unsigned long iova, phys_addr_t hpa,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02005135 size_t size, int iommu_prot)
Kay, Allen M38717942008-09-09 18:37:29 +03005136{
Joerg Roedel00a77de2015-03-26 13:43:08 +01005137 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005138 u64 max_addr;
Joerg Roedeldde57a22008-12-03 15:04:09 +01005139 int prot = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005140 int ret;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005141
Joerg Roedeldde57a22008-12-03 15:04:09 +01005142 if (iommu_prot & IOMMU_READ)
5143 prot |= DMA_PTE_READ;
5144 if (iommu_prot & IOMMU_WRITE)
5145 prot |= DMA_PTE_WRITE;
Sheng Yang9cf06692009-03-18 15:33:07 +08005146 if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping)
5147 prot |= DMA_PTE_SNP;
Joerg Roedeldde57a22008-12-03 15:04:09 +01005148
David Woodhouse163cc522009-06-28 00:51:17 +01005149 max_addr = iova + size;
Joerg Roedeldde57a22008-12-03 15:04:09 +01005150 if (dmar_domain->max_addr < max_addr) {
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005151 u64 end;
5152
5153 /* check if minimum agaw is sufficient for mapped address */
Tom Lyon8954da12010-05-17 08:19:52 +01005154 end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005155 if (end < max_addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005156 pr_err("%s: iommu width (%d) is not "
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005157 "sufficient for the mapped address (%llx)\n",
Tom Lyon8954da12010-05-17 08:19:52 +01005158 __func__, dmar_domain->gaw, max_addr);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005159 return -EFAULT;
5160 }
Joerg Roedeldde57a22008-12-03 15:04:09 +01005161 dmar_domain->max_addr = max_addr;
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005162 }
David Woodhousead051222009-06-28 14:22:28 +01005163 /* Round up size to next multiple of PAGE_SIZE, if it and
5164 the low bits of hpa would take us onto the next page */
David Woodhouse88cb6a72009-06-28 15:03:06 +01005165 size = aligned_nrpages(hpa, size);
David Woodhousead051222009-06-28 14:22:28 +01005166 ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
5167 hpa >> VTD_PAGE_SHIFT, size, prot);
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005168 return ret;
Kay, Allen M38717942008-09-09 18:37:29 +03005169}
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005170
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02005171static size_t intel_iommu_unmap(struct iommu_domain *domain,
David Woodhouseea8ea462014-03-05 17:09:32 +00005172 unsigned long iova, size_t size)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005173{
Joerg Roedel00a77de2015-03-26 13:43:08 +01005174 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
David Woodhouseea8ea462014-03-05 17:09:32 +00005175 struct page *freelist = NULL;
David Woodhouseea8ea462014-03-05 17:09:32 +00005176 unsigned long start_pfn, last_pfn;
5177 unsigned int npages;
Joerg Roedel42e8c182015-07-21 15:50:02 +02005178 int iommu_id, level = 0;
Sheng Yang4b99d352009-07-08 11:52:52 +01005179
David Woodhouse5cf0a762014-03-19 16:07:49 +00005180 /* Cope with horrid API which requires us to unmap more than the
5181 size argument if it happens to be a large-page mapping. */
Joerg Roedeldc02e462015-08-13 11:15:13 +02005182 BUG_ON(!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level));
David Woodhouse5cf0a762014-03-19 16:07:49 +00005183
5184 if (size < VTD_PAGE_SIZE << level_to_offset_bits(level))
5185 size = VTD_PAGE_SIZE << level_to_offset_bits(level);
5186
David Woodhouseea8ea462014-03-05 17:09:32 +00005187 start_pfn = iova >> VTD_PAGE_SHIFT;
5188 last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT;
5189
5190 freelist = domain_unmap(dmar_domain, start_pfn, last_pfn);
5191
5192 npages = last_pfn - start_pfn + 1;
5193
Shaokun Zhangf746a022018-03-22 18:18:06 +08005194 for_each_domain_iommu(iommu_id, dmar_domain)
Joerg Roedel42e8c182015-07-21 15:50:02 +02005195 iommu_flush_iotlb_psi(g_iommus[iommu_id], dmar_domain,
5196 start_pfn, npages, !freelist, 0);
David Woodhouseea8ea462014-03-05 17:09:32 +00005197
5198 dma_free_pagelist(freelist);
Weidong Hanfe40f1e2008-12-08 23:10:23 +08005199
David Woodhouse163cc522009-06-28 00:51:17 +01005200 if (dmar_domain->max_addr == iova + size)
5201 dmar_domain->max_addr = iova;
Joerg Roedelb146a1c9f2010-01-20 17:17:37 +01005202
David Woodhouse5cf0a762014-03-19 16:07:49 +00005203 return size;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005204}
Kay, Allen M38717942008-09-09 18:37:29 +03005205
Joerg Roedeld14d6572008-12-03 15:06:57 +01005206static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547a2013-03-29 01:23:58 +05305207 dma_addr_t iova)
Kay, Allen M38717942008-09-09 18:37:29 +03005208{
Joerg Roedel00a77de2015-03-26 13:43:08 +01005209 struct dmar_domain *dmar_domain = to_dmar_domain(domain);
Kay, Allen M38717942008-09-09 18:37:29 +03005210 struct dma_pte *pte;
David Woodhouse5cf0a762014-03-19 16:07:49 +00005211 int level = 0;
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005212 u64 phys = 0;
Kay, Allen M38717942008-09-09 18:37:29 +03005213
David Woodhouse5cf0a762014-03-19 16:07:49 +00005214 pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level);
Kay, Allen M38717942008-09-09 18:37:29 +03005215 if (pte)
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005216 phys = dma_pte_addr(pte);
Kay, Allen M38717942008-09-09 18:37:29 +03005217
Weidong Hanfaa3d6f2008-12-08 23:09:29 +08005218 return phys;
Kay, Allen M38717942008-09-09 18:37:29 +03005219}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01005220
Joerg Roedel5d587b82014-09-05 10:50:45 +02005221static bool intel_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08005222{
Sheng Yangdbb9fd82009-03-18 15:33:06 +08005223 if (cap == IOMMU_CAP_CACHE_COHERENCY)
Joerg Roedel5d587b82014-09-05 10:50:45 +02005224 return domain_update_iommu_snooping(NULL) == 1;
Tom Lyon323f99c2010-07-02 16:56:14 -04005225 if (cap == IOMMU_CAP_INTR_REMAP)
Joerg Roedel5d587b82014-09-05 10:50:45 +02005226 return irq_remapping_enabled == 1;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08005227
Joerg Roedel5d587b82014-09-05 10:50:45 +02005228 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08005229}
5230
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005231static int intel_iommu_add_device(struct device *dev)
Alex Williamson70ae6f02011-10-21 15:56:11 -04005232{
Alex Williamsona5459cf2014-06-12 16:12:31 -06005233 struct intel_iommu *iommu;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005234 struct iommu_group *group;
David Woodhouse156baca2014-03-09 14:00:57 -07005235 u8 bus, devfn;
Alex Williamson70ae6f02011-10-21 15:56:11 -04005236
Alex Williamsona5459cf2014-06-12 16:12:31 -06005237 iommu = device_to_iommu(dev, &bus, &devfn);
5238 if (!iommu)
Alex Williamson70ae6f02011-10-21 15:56:11 -04005239 return -ENODEV;
5240
Joerg Roedele3d10af2017-02-01 17:23:22 +01005241 iommu_device_link(&iommu->iommu, dev);
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005242
Alex Williamsone17f9ff2014-07-03 09:51:37 -06005243 group = iommu_group_get_for_dev(dev);
Alex Williamson783f1572012-05-30 14:19:43 -06005244
Alex Williamsone17f9ff2014-07-03 09:51:37 -06005245 if (IS_ERR(group))
5246 return PTR_ERR(group);
Alex Williamson70ae6f02011-10-21 15:56:11 -04005247
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005248 iommu_group_put(group);
Alex Williamsone17f9ff2014-07-03 09:51:37 -06005249 return 0;
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005250}
5251
5252static void intel_iommu_remove_device(struct device *dev)
5253{
Alex Williamsona5459cf2014-06-12 16:12:31 -06005254 struct intel_iommu *iommu;
5255 u8 bus, devfn;
5256
5257 iommu = device_to_iommu(dev, &bus, &devfn);
5258 if (!iommu)
5259 return;
5260
Alex Williamsonabdfdde2012-05-30 14:19:19 -06005261 iommu_group_remove_device(dev);
Alex Williamsona5459cf2014-06-12 16:12:31 -06005262
Joerg Roedele3d10af2017-02-01 17:23:22 +01005263 iommu_device_unlink(&iommu->iommu, dev);
Alex Williamson70ae6f02011-10-21 15:56:11 -04005264}
5265
Eric Auger0659b8d2017-01-19 20:57:53 +00005266static void intel_iommu_get_resv_regions(struct device *device,
5267 struct list_head *head)
5268{
5269 struct iommu_resv_region *reg;
5270 struct dmar_rmrr_unit *rmrr;
5271 struct device *i_dev;
5272 int i;
5273
5274 rcu_read_lock();
5275 for_each_rmrr_units(rmrr) {
5276 for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt,
5277 i, i_dev) {
5278 if (i_dev != device)
5279 continue;
5280
5281 list_add_tail(&rmrr->resv->list, head);
5282 }
5283 }
5284 rcu_read_unlock();
5285
5286 reg = iommu_alloc_resv_region(IOAPIC_RANGE_START,
5287 IOAPIC_RANGE_END - IOAPIC_RANGE_START + 1,
Robin Murphy9d3a4de2017-03-16 17:00:16 +00005288 0, IOMMU_RESV_MSI);
Eric Auger0659b8d2017-01-19 20:57:53 +00005289 if (!reg)
5290 return;
5291 list_add_tail(&reg->list, head);
5292}
5293
5294static void intel_iommu_put_resv_regions(struct device *dev,
5295 struct list_head *head)
5296{
5297 struct iommu_resv_region *entry, *next;
5298
5299 list_for_each_entry_safe(entry, next, head, list) {
5300 if (entry->type == IOMMU_RESV_RESERVED)
5301 kfree(entry);
5302 }
Kay, Allen M38717942008-09-09 18:37:29 +03005303}
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01005304
David Woodhouse2f26e0a2015-09-09 11:40:47 +01005305#ifdef CONFIG_INTEL_IOMMU_SVM
5306int intel_iommu_enable_pasid(struct intel_iommu *iommu, struct intel_svm_dev *sdev)
5307{
5308 struct device_domain_info *info;
5309 struct context_entry *context;
5310 struct dmar_domain *domain;
5311 unsigned long flags;
5312 u64 ctx_lo;
5313 int ret;
5314
5315 domain = get_valid_domain_for_dev(sdev->dev);
5316 if (!domain)
5317 return -EINVAL;
5318
5319 spin_lock_irqsave(&device_domain_lock, flags);
5320 spin_lock(&iommu->lock);
5321
5322 ret = -EINVAL;
5323 info = sdev->dev->archdata.iommu;
5324 if (!info || !info->pasid_supported)
5325 goto out;
5326
5327 context = iommu_context_addr(iommu, info->bus, info->devfn, 0);
5328 if (WARN_ON(!context))
5329 goto out;
5330
5331 ctx_lo = context[0].lo;
5332
5333 sdev->did = domain->iommu_did[iommu->seq_id];
5334 sdev->sid = PCI_DEVID(info->bus, info->devfn);
5335
5336 if (!(ctx_lo & CONTEXT_PASIDE)) {
David Woodhouse2f26e0a2015-09-09 11:40:47 +01005337 ctx_lo |= CONTEXT_PASIDE;
5338 context[0].lo = ctx_lo;
5339 wmb();
5340 iommu->flush.flush_context(iommu, sdev->did, sdev->sid,
5341 DMA_CCMD_MASK_NOBIT,
5342 DMA_CCMD_DEVICE_INVL);
5343 }
5344
5345 /* Enable PASID support in the device, if it wasn't already */
5346 if (!info->pasid_enabled)
5347 iommu_enable_dev_iotlb(info);
5348
5349 if (info->ats_enabled) {
5350 sdev->dev_iotlb = 1;
5351 sdev->qdep = info->ats_qdep;
5352 if (sdev->qdep >= QI_DEV_EIOTLB_MAX_INVS)
5353 sdev->qdep = 0;
5354 }
5355 ret = 0;
5356
5357 out:
5358 spin_unlock(&iommu->lock);
5359 spin_unlock_irqrestore(&device_domain_lock, flags);
5360
5361 return ret;
5362}
5363
5364struct intel_iommu *intel_svm_device_to_iommu(struct device *dev)
5365{
5366 struct intel_iommu *iommu;
5367 u8 bus, devfn;
5368
5369 if (iommu_dummy(dev)) {
5370 dev_warn(dev,
5371 "No IOMMU translation for device; cannot enable SVM\n");
5372 return NULL;
5373 }
5374
5375 iommu = device_to_iommu(dev, &bus, &devfn);
5376 if ((!iommu)) {
Sudeep Duttb9997e32015-10-18 20:54:37 -07005377 dev_err(dev, "No IOMMU for device; cannot enable SVM\n");
David Woodhouse2f26e0a2015-09-09 11:40:47 +01005378 return NULL;
5379 }
5380
David Woodhouse2f26e0a2015-09-09 11:40:47 +01005381 return iommu;
5382}
5383#endif /* CONFIG_INTEL_IOMMU_SVM */
5384
Joerg Roedelb0119e82017-02-01 13:23:08 +01005385const struct iommu_ops intel_iommu_ops = {
Eric Auger0659b8d2017-01-19 20:57:53 +00005386 .capable = intel_iommu_capable,
5387 .domain_alloc = intel_iommu_domain_alloc,
5388 .domain_free = intel_iommu_domain_free,
5389 .attach_dev = intel_iommu_attach_device,
5390 .detach_dev = intel_iommu_detach_device,
5391 .map = intel_iommu_map,
5392 .unmap = intel_iommu_unmap,
Eric Auger0659b8d2017-01-19 20:57:53 +00005393 .iova_to_phys = intel_iommu_iova_to_phys,
5394 .add_device = intel_iommu_add_device,
5395 .remove_device = intel_iommu_remove_device,
5396 .get_resv_regions = intel_iommu_get_resv_regions,
5397 .put_resv_regions = intel_iommu_put_resv_regions,
5398 .device_group = pci_device_group,
5399 .pgsize_bitmap = INTEL_IOMMU_PGSIZES,
Joerg Roedela8bcbb0d2008-12-03 15:14:02 +01005400};
David Woodhouse9af88142009-02-13 23:18:03 +00005401
Daniel Vetter94526182013-01-20 23:50:13 +01005402static void quirk_iommu_g4x_gfx(struct pci_dev *dev)
5403{
5404 /* G4x/GM45 integrated gfx dmar support is totally busted. */
Bjorn Helgaas932a6522019-02-08 16:06:00 -06005405 pci_info(dev, "Disabling IOMMU for graphics on this chipset\n");
Daniel Vetter94526182013-01-20 23:50:13 +01005406 dmar_map_gfx = 0;
5407}
5408
5409DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx);
5410DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx);
5411DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx);
5412DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx);
5413DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx);
5414DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx);
5415DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx);
5416
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08005417static void quirk_iommu_rwbf(struct pci_dev *dev)
David Woodhouse9af88142009-02-13 23:18:03 +00005418{
5419 /*
5420 * Mobile 4 Series Chipset neglects to set RWBF capability,
Daniel Vetter210561f2013-01-21 19:48:59 +01005421 * but needs it. Same seems to hold for the desktop versions.
David Woodhouse9af88142009-02-13 23:18:03 +00005422 */
Bjorn Helgaas932a6522019-02-08 16:06:00 -06005423 pci_info(dev, "Forcing write-buffer flush capability\n");
David Woodhouse9af88142009-02-13 23:18:03 +00005424 rwbf_quirk = 1;
5425}
5426
5427DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf);
Daniel Vetter210561f2013-01-21 19:48:59 +01005428DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf);
5429DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf);
5430DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf);
5431DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf);
5432DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf);
5433DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf);
David Woodhousee0fc7e02009-09-30 09:12:17 -07005434
Adam Jacksoneecfd572010-08-25 21:17:34 +01005435#define GGC 0x52
5436#define GGC_MEMORY_SIZE_MASK (0xf << 8)
5437#define GGC_MEMORY_SIZE_NONE (0x0 << 8)
5438#define GGC_MEMORY_SIZE_1M (0x1 << 8)
5439#define GGC_MEMORY_SIZE_2M (0x3 << 8)
5440#define GGC_MEMORY_VT_ENABLED (0x8 << 8)
5441#define GGC_MEMORY_SIZE_2M_VT (0x9 << 8)
5442#define GGC_MEMORY_SIZE_3M_VT (0xa << 8)
5443#define GGC_MEMORY_SIZE_4M_VT (0xb << 8)
5444
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08005445static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev)
David Woodhouse9eecabc2010-09-21 22:28:23 +01005446{
5447 unsigned short ggc;
5448
Adam Jacksoneecfd572010-08-25 21:17:34 +01005449 if (pci_read_config_word(dev, GGC, &ggc))
David Woodhouse9eecabc2010-09-21 22:28:23 +01005450 return;
5451
Adam Jacksoneecfd572010-08-25 21:17:34 +01005452 if (!(ggc & GGC_MEMORY_VT_ENABLED)) {
Bjorn Helgaas932a6522019-02-08 16:06:00 -06005453 pci_info(dev, "BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n");
David Woodhouse9eecabc2010-09-21 22:28:23 +01005454 dmar_map_gfx = 0;
David Woodhouse6fbcfb32011-09-25 19:11:14 -07005455 } else if (dmar_map_gfx) {
5456 /* we have to ensure the gfx device is idle before we flush */
Bjorn Helgaas932a6522019-02-08 16:06:00 -06005457 pci_info(dev, "Disabling batched IOTLB flush on Ironlake\n");
David Woodhouse6fbcfb32011-09-25 19:11:14 -07005458 intel_iommu_strict = 1;
5459 }
David Woodhouse9eecabc2010-09-21 22:28:23 +01005460}
5461DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt);
5462DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt);
5463DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt);
5464DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt);
5465
David Woodhousee0fc7e02009-09-30 09:12:17 -07005466/* On Tylersburg chipsets, some BIOSes have been known to enable the
5467 ISOCH DMAR unit for the Azalia sound device, but not give it any
5468 TLB entries, which causes it to deadlock. Check for that. We do
5469 this in a function called from init_dmars(), instead of in a PCI
5470 quirk, because we don't want to print the obnoxious "BIOS broken"
5471 message if VT-d is actually disabled.
5472*/
5473static void __init check_tylersburg_isoch(void)
5474{
5475 struct pci_dev *pdev;
5476 uint32_t vtisochctrl;
5477
5478 /* If there's no Azalia in the system anyway, forget it. */
5479 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL);
5480 if (!pdev)
5481 return;
5482 pci_dev_put(pdev);
5483
5484 /* System Management Registers. Might be hidden, in which case
5485 we can't do the sanity check. But that's OK, because the
5486 known-broken BIOSes _don't_ actually hide it, so far. */
5487 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL);
5488 if (!pdev)
5489 return;
5490
5491 if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) {
5492 pci_dev_put(pdev);
5493 return;
5494 }
5495
5496 pci_dev_put(pdev);
5497
5498 /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */
5499 if (vtisochctrl & 1)
5500 return;
5501
5502 /* Drop all bits other than the number of TLB entries */
5503 vtisochctrl &= 0x1c;
5504
5505 /* If we have the recommended number of TLB entries (16), fine. */
5506 if (vtisochctrl == 0x10)
5507 return;
5508
5509 /* Zero TLB entries? You get to ride the short bus to school. */
5510 if (!vtisochctrl) {
5511 WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n"
5512 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
5513 dmi_get_system_info(DMI_BIOS_VENDOR),
5514 dmi_get_system_info(DMI_BIOS_VERSION),
5515 dmi_get_system_info(DMI_PRODUCT_VERSION));
5516 iommu_identity_mapping |= IDENTMAP_AZALIA;
5517 return;
5518 }
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02005519
5520 pr_warn("Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
David Woodhousee0fc7e02009-09-30 09:12:17 -07005521 vtisochctrl);
5522}