Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1 | /* |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 2 | * Copyright © 2006-2014 Intel Corporation. |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3 | * |
| 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 Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 13 | * Authors: David Woodhouse <dwmw2@infradead.org>, |
| 14 | * Ashok Raj <ashok.raj@intel.com>, |
| 15 | * Shaohua Li <shaohua.li@intel.com>, |
| 16 | * Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>, |
| 17 | * Fenghua Yu <fenghua.yu@intel.com> |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/bitmap.h> |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 22 | #include <linux/debugfs.h> |
Paul Gortmaker | 54485c3 | 2011-10-29 10:26:25 -0400 | [diff] [blame] | 23 | #include <linux/export.h> |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
| 25 | #include <linux/irq.h> |
| 26 | #include <linux/interrupt.h> |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/pci.h> |
| 29 | #include <linux/dmar.h> |
| 30 | #include <linux/dma-mapping.h> |
| 31 | #include <linux/mempool.h> |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 32 | #include <linux/memory.h> |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 33 | #include <linux/timer.h> |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 34 | #include <linux/iova.h> |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 35 | #include <linux/iommu.h> |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 36 | #include <linux/intel-iommu.h> |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 37 | #include <linux/syscore_ops.h> |
Shane Wang | 69575d3 | 2009-09-01 18:25:07 -0700 | [diff] [blame] | 38 | #include <linux/tboot.h> |
Stephen Rothwell | adb2fe0 | 2009-08-31 15:24:23 +1000 | [diff] [blame] | 39 | #include <linux/dmi.h> |
Joerg Roedel | 5cdede2 | 2011-04-04 15:55:18 +0200 | [diff] [blame] | 40 | #include <linux/pci-ats.h> |
Tejun Heo | 0ee332c | 2011-12-08 10:22:09 -0800 | [diff] [blame] | 41 | #include <linux/memblock.h> |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 42 | #include <linux/dma-contiguous.h> |
Suresh Siddha | 8a8f422 | 2012-03-30 11:47:08 -0700 | [diff] [blame] | 43 | #include <asm/irq_remapping.h> |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 44 | #include <asm/cacheflush.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 45 | #include <asm/iommu.h> |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 46 | |
Joerg Roedel | 078e1ee | 2012-09-26 12:44:43 +0200 | [diff] [blame] | 47 | #include "irq_remapping.h" |
| 48 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 49 | #define ROOT_SIZE VTD_PAGE_SIZE |
| 50 | #define CONTEXT_SIZE VTD_PAGE_SIZE |
| 51 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 52 | #define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY) |
David Woodhouse | 18436af | 2015-03-25 15:05:47 +0000 | [diff] [blame] | 53 | #define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 54 | #define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA) |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 55 | #define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 56 | |
| 57 | #define IOAPIC_RANGE_START (0xfee00000) |
| 58 | #define IOAPIC_RANGE_END (0xfeefffff) |
| 59 | #define IOVA_START_ADDR (0x1000) |
| 60 | |
| 61 | #define DEFAULT_DOMAIN_ADDRESS_WIDTH 48 |
| 62 | |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 63 | #define MAX_AGAW_WIDTH 64 |
Jiang Liu | 5c645b3 | 2014-01-06 14:18:12 +0800 | [diff] [blame] | 64 | #define MAX_AGAW_PFN_WIDTH (MAX_AGAW_WIDTH - VTD_PAGE_SHIFT) |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 65 | |
David Woodhouse | 2ebe315 | 2009-09-19 07:34:04 -0700 | [diff] [blame] | 66 | #define __DOMAIN_MAX_PFN(gaw) ((((uint64_t)1) << (gaw-VTD_PAGE_SHIFT)) - 1) |
| 67 | #define __DOMAIN_MAX_ADDR(gaw) ((((uint64_t)1) << gaw) - 1) |
| 68 | |
| 69 | /* We limit DOMAIN_MAX_PFN to fit in an unsigned long, and DOMAIN_MAX_ADDR |
| 70 | to match. That way, we can use 'unsigned long' for PFNs with impunity. */ |
| 71 | #define DOMAIN_MAX_PFN(gaw) ((unsigned long) min_t(uint64_t, \ |
| 72 | __DOMAIN_MAX_PFN(gaw), (unsigned long)-1)) |
| 73 | #define DOMAIN_MAX_ADDR(gaw) (((uint64_t)__DOMAIN_MAX_PFN(gaw)) << VTD_PAGE_SHIFT) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 74 | |
Mark McLoughlin | f27be03 | 2008-11-20 15:49:43 +0000 | [diff] [blame] | 75 | #define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT) |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 76 | #define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32)) |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 77 | #define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64)) |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 78 | |
Andrew Morton | df08cdc | 2010-09-22 13:05:11 -0700 | [diff] [blame] | 79 | /* page table handling */ |
| 80 | #define LEVEL_STRIDE (9) |
| 81 | #define LEVEL_MASK (((u64)1 << LEVEL_STRIDE) - 1) |
| 82 | |
Ohad Ben-Cohen | 6d1c56a | 2011-11-10 11:32:30 +0200 | [diff] [blame] | 83 | /* |
| 84 | * This bitmap is used to advertise the page sizes our hardware support |
| 85 | * to the IOMMU core, which will then use this information to split |
| 86 | * physically contiguous memory regions it is mapping into page sizes |
| 87 | * that we support. |
| 88 | * |
| 89 | * Traditionally the IOMMU core just handed us the mappings directly, |
| 90 | * after making sure the size is an order of a 4KiB page and that the |
| 91 | * mapping has natural alignment. |
| 92 | * |
| 93 | * To retain this behavior, we currently advertise that we support |
| 94 | * all page sizes that are an order of 4KiB. |
| 95 | * |
| 96 | * If at some point we'd like to utilize the IOMMU core's new behavior, |
| 97 | * we could change this to advertise the real page sizes we support. |
| 98 | */ |
| 99 | #define INTEL_IOMMU_PGSIZES (~0xFFFUL) |
| 100 | |
Andrew Morton | df08cdc | 2010-09-22 13:05:11 -0700 | [diff] [blame] | 101 | static inline int agaw_to_level(int agaw) |
| 102 | { |
| 103 | return agaw + 2; |
| 104 | } |
| 105 | |
| 106 | static inline int agaw_to_width(int agaw) |
| 107 | { |
Jiang Liu | 5c645b3 | 2014-01-06 14:18:12 +0800 | [diff] [blame] | 108 | return min_t(int, 30 + agaw * LEVEL_STRIDE, MAX_AGAW_WIDTH); |
Andrew Morton | df08cdc | 2010-09-22 13:05:11 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static inline int width_to_agaw(int width) |
| 112 | { |
Jiang Liu | 5c645b3 | 2014-01-06 14:18:12 +0800 | [diff] [blame] | 113 | return DIV_ROUND_UP(width - 30, LEVEL_STRIDE); |
Andrew Morton | df08cdc | 2010-09-22 13:05:11 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | static inline unsigned int level_to_offset_bits(int level) |
| 117 | { |
| 118 | return (level - 1) * LEVEL_STRIDE; |
| 119 | } |
| 120 | |
| 121 | static inline int pfn_level_offset(unsigned long pfn, int level) |
| 122 | { |
| 123 | return (pfn >> level_to_offset_bits(level)) & LEVEL_MASK; |
| 124 | } |
| 125 | |
| 126 | static inline unsigned long level_mask(int level) |
| 127 | { |
| 128 | return -1UL << level_to_offset_bits(level); |
| 129 | } |
| 130 | |
| 131 | static inline unsigned long level_size(int level) |
| 132 | { |
| 133 | return 1UL << level_to_offset_bits(level); |
| 134 | } |
| 135 | |
| 136 | static inline unsigned long align_to_level(unsigned long pfn, int level) |
| 137 | { |
| 138 | return (pfn + level_size(level) - 1) & level_mask(level); |
| 139 | } |
David Woodhouse | fd18de5 | 2009-05-10 23:57:41 +0100 | [diff] [blame] | 140 | |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 141 | static inline unsigned long lvl_to_nr_pages(unsigned int lvl) |
| 142 | { |
Jiang Liu | 5c645b3 | 2014-01-06 14:18:12 +0800 | [diff] [blame] | 143 | return 1 << min_t(int, (lvl - 1) * LEVEL_STRIDE, MAX_AGAW_PFN_WIDTH); |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 144 | } |
| 145 | |
David Woodhouse | dd4e831 | 2009-06-27 16:21:20 +0100 | [diff] [blame] | 146 | /* VT-d pages must always be _smaller_ than MM pages. Otherwise things |
| 147 | are never going to work. */ |
| 148 | static inline unsigned long dma_to_mm_pfn(unsigned long dma_pfn) |
| 149 | { |
| 150 | return dma_pfn >> (PAGE_SHIFT - VTD_PAGE_SHIFT); |
| 151 | } |
| 152 | |
| 153 | static inline unsigned long mm_to_dma_pfn(unsigned long mm_pfn) |
| 154 | { |
| 155 | return mm_pfn << (PAGE_SHIFT - VTD_PAGE_SHIFT); |
| 156 | } |
| 157 | static inline unsigned long page_to_dma_pfn(struct page *pg) |
| 158 | { |
| 159 | return mm_to_dma_pfn(page_to_pfn(pg)); |
| 160 | } |
| 161 | static inline unsigned long virt_to_dma_pfn(void *p) |
| 162 | { |
| 163 | return page_to_dma_pfn(virt_to_page(p)); |
| 164 | } |
| 165 | |
Weidong Han | d9630fe | 2008-12-08 11:06:32 +0800 | [diff] [blame] | 166 | /* global iommu list, set NULL for ignored DMAR units */ |
| 167 | static struct intel_iommu **g_iommus; |
| 168 | |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 169 | static void __init check_tylersburg_isoch(void); |
David Woodhouse | 9af8814 | 2009-02-13 23:18:03 +0000 | [diff] [blame] | 170 | static int rwbf_quirk; |
| 171 | |
Mark McLoughlin | 46b08e1 | 2008-11-20 15:49:44 +0000 | [diff] [blame] | 172 | /* |
Joseph Cihula | b779260 | 2011-05-03 00:08:37 -0700 | [diff] [blame] | 173 | * set to 1 to panic kernel if can't successfully enable VT-d |
| 174 | * (used when kernel is launched w/ TXT) |
| 175 | */ |
| 176 | static int force_on = 0; |
| 177 | |
| 178 | /* |
Mark McLoughlin | 46b08e1 | 2008-11-20 15:49:44 +0000 | [diff] [blame] | 179 | * 0: Present |
| 180 | * 1-11: Reserved |
| 181 | * 12-63: Context Ptr (12 - (haw-1)) |
| 182 | * 64-127: Reserved |
| 183 | */ |
| 184 | struct root_entry { |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 185 | u64 lo; |
| 186 | u64 hi; |
Mark McLoughlin | 46b08e1 | 2008-11-20 15:49:44 +0000 | [diff] [blame] | 187 | }; |
| 188 | #define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry)) |
Mark McLoughlin | 46b08e1 | 2008-11-20 15:49:44 +0000 | [diff] [blame] | 189 | |
Mark McLoughlin | 46b08e1 | 2008-11-20 15:49:44 +0000 | [diff] [blame] | 190 | |
Mark McLoughlin | 7a8fc25 | 2008-11-20 15:49:45 +0000 | [diff] [blame] | 191 | /* |
| 192 | * low 64 bits: |
| 193 | * 0: present |
| 194 | * 1: fault processing disable |
| 195 | * 2-3: translation type |
| 196 | * 12-63: address space root |
| 197 | * high 64 bits: |
| 198 | * 0-2: address width |
| 199 | * 3-6: aval |
| 200 | * 8-23: domain id |
| 201 | */ |
| 202 | struct context_entry { |
| 203 | u64 lo; |
| 204 | u64 hi; |
| 205 | }; |
Mark McLoughlin | 7a8fc25 | 2008-11-20 15:49:45 +0000 | [diff] [blame] | 206 | |
Mark McLoughlin | c07e7d2 | 2008-11-21 16:54:46 +0000 | [diff] [blame] | 207 | static inline bool context_present(struct context_entry *context) |
| 208 | { |
| 209 | return (context->lo & 1); |
| 210 | } |
| 211 | static inline void context_set_present(struct context_entry *context) |
| 212 | { |
| 213 | context->lo |= 1; |
| 214 | } |
| 215 | |
| 216 | static inline void context_set_fault_enable(struct context_entry *context) |
| 217 | { |
| 218 | context->lo &= (((u64)-1) << 2) | 1; |
| 219 | } |
| 220 | |
Mark McLoughlin | c07e7d2 | 2008-11-21 16:54:46 +0000 | [diff] [blame] | 221 | static inline void context_set_translation_type(struct context_entry *context, |
| 222 | unsigned long value) |
| 223 | { |
| 224 | context->lo &= (((u64)-1) << 4) | 3; |
| 225 | context->lo |= (value & 3) << 2; |
| 226 | } |
| 227 | |
| 228 | static inline void context_set_address_root(struct context_entry *context, |
| 229 | unsigned long value) |
| 230 | { |
Li, Zhen-Hua | 1a2262f | 2014-11-05 15:30:19 +0800 | [diff] [blame] | 231 | context->lo &= ~VTD_PAGE_MASK; |
Mark McLoughlin | c07e7d2 | 2008-11-21 16:54:46 +0000 | [diff] [blame] | 232 | context->lo |= value & VTD_PAGE_MASK; |
| 233 | } |
| 234 | |
| 235 | static inline void context_set_address_width(struct context_entry *context, |
| 236 | unsigned long value) |
| 237 | { |
| 238 | context->hi |= value & 7; |
| 239 | } |
| 240 | |
| 241 | static inline void context_set_domain_id(struct context_entry *context, |
| 242 | unsigned long value) |
| 243 | { |
| 244 | context->hi |= (value & ((1 << 16) - 1)) << 8; |
| 245 | } |
| 246 | |
| 247 | static inline void context_clear_entry(struct context_entry *context) |
| 248 | { |
| 249 | context->lo = 0; |
| 250 | context->hi = 0; |
| 251 | } |
Mark McLoughlin | 7a8fc25 | 2008-11-20 15:49:45 +0000 | [diff] [blame] | 252 | |
Mark McLoughlin | 622ba12 | 2008-11-20 15:49:46 +0000 | [diff] [blame] | 253 | /* |
| 254 | * 0: readable |
| 255 | * 1: writable |
| 256 | * 2-6: reserved |
| 257 | * 7: super page |
Sheng Yang | 9cf0669 | 2009-03-18 15:33:07 +0800 | [diff] [blame] | 258 | * 8-10: available |
| 259 | * 11: snoop behavior |
Mark McLoughlin | 622ba12 | 2008-11-20 15:49:46 +0000 | [diff] [blame] | 260 | * 12-63: Host physcial address |
| 261 | */ |
| 262 | struct dma_pte { |
| 263 | u64 val; |
| 264 | }; |
Mark McLoughlin | 622ba12 | 2008-11-20 15:49:46 +0000 | [diff] [blame] | 265 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 266 | static inline void dma_clear_pte(struct dma_pte *pte) |
| 267 | { |
| 268 | pte->val = 0; |
| 269 | } |
| 270 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 271 | static inline u64 dma_pte_addr(struct dma_pte *pte) |
| 272 | { |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 273 | #ifdef CONFIG_64BIT |
| 274 | return pte->val & VTD_PAGE_MASK; |
| 275 | #else |
| 276 | /* Must have a full atomic 64-bit read */ |
David Woodhouse | 1a8bd48 | 2010-08-10 01:38:53 +0100 | [diff] [blame] | 277 | return __cmpxchg64(&pte->val, 0ULL, 0ULL) & VTD_PAGE_MASK; |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 278 | #endif |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 281 | static inline bool dma_pte_present(struct dma_pte *pte) |
| 282 | { |
| 283 | return (pte->val & 3) != 0; |
| 284 | } |
Mark McLoughlin | 622ba12 | 2008-11-20 15:49:46 +0000 | [diff] [blame] | 285 | |
Allen Kay | 4399c8b | 2011-10-14 12:32:46 -0700 | [diff] [blame] | 286 | static inline bool dma_pte_superpage(struct dma_pte *pte) |
| 287 | { |
Joerg Roedel | c3c75eb | 2014-07-04 11:19:10 +0200 | [diff] [blame] | 288 | return (pte->val & DMA_PTE_LARGE_PAGE); |
Allen Kay | 4399c8b | 2011-10-14 12:32:46 -0700 | [diff] [blame] | 289 | } |
| 290 | |
David Woodhouse | 75e6bf9 | 2009-07-02 11:21:16 +0100 | [diff] [blame] | 291 | static inline int first_pte_in_page(struct dma_pte *pte) |
| 292 | { |
| 293 | return !((unsigned long)pte & ~VTD_PAGE_MASK); |
| 294 | } |
| 295 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 296 | /* |
| 297 | * This domain is a statically identity mapping domain. |
| 298 | * 1. This domain creats a static 1:1 mapping to all usable memory. |
| 299 | * 2. It maps to each iommu if successful. |
| 300 | * 3. Each iommu mapps to this domain if successful. |
| 301 | */ |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 302 | static struct dmar_domain *si_domain; |
| 303 | static int hw_pass_through = 1; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 304 | |
Weidong Han | 1ce28fe | 2008-12-08 16:35:39 +0800 | [diff] [blame] | 305 | /* domain represents a virtual machine, more than one devices |
| 306 | * across iommus may be owned in one domain, e.g. kvm guest. |
| 307 | */ |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 308 | #define DOMAIN_FLAG_VIRTUAL_MACHINE (1 << 0) |
Weidong Han | 1ce28fe | 2008-12-08 16:35:39 +0800 | [diff] [blame] | 309 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 310 | /* si_domain contains mulitple devices */ |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 311 | #define DOMAIN_FLAG_STATIC_IDENTITY (1 << 1) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 312 | |
Mark McLoughlin | 99126f7 | 2008-11-20 15:49:47 +0000 | [diff] [blame] | 313 | struct dmar_domain { |
| 314 | int id; /* domain id */ |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 315 | int nid; /* node id */ |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 316 | DECLARE_BITMAP(iommu_bmp, DMAR_UNITS_SUPPORTED); |
Mike Travis | 1b198bb | 2012-03-05 15:05:16 -0800 | [diff] [blame] | 317 | /* bitmap of iommus this domain uses*/ |
Mark McLoughlin | 99126f7 | 2008-11-20 15:49:47 +0000 | [diff] [blame] | 318 | |
| 319 | struct list_head devices; /* all devices' list */ |
| 320 | struct iova_domain iovad; /* iova's that belong to this domain */ |
| 321 | |
| 322 | struct dma_pte *pgd; /* virtual address */ |
Mark McLoughlin | 99126f7 | 2008-11-20 15:49:47 +0000 | [diff] [blame] | 323 | int gaw; /* max guest address width */ |
| 324 | |
| 325 | /* adjusted guest address width, 0 is level 2 30-bit */ |
| 326 | int agaw; |
| 327 | |
Weidong Han | 3b5410e | 2008-12-08 09:17:15 +0800 | [diff] [blame] | 328 | int flags; /* flags to find out type of domain */ |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 329 | |
| 330 | int iommu_coherency;/* indicate coherency of iommu access */ |
Sheng Yang | 58c610b | 2009-03-18 15:33:05 +0800 | [diff] [blame] | 331 | int iommu_snooping; /* indicate snooping control feature*/ |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 332 | int iommu_count; /* reference count of iommu */ |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 333 | int iommu_superpage;/* Level of superpages supported: |
| 334 | 0 == 4KiB (no superpages), 1 == 2MiB, |
| 335 | 2 == 1GiB, 3 == 512GiB, 4 == 1TiB */ |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 336 | spinlock_t iommu_lock; /* protect iommu set in domain */ |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 337 | u64 max_addr; /* maximum mapped address */ |
Mark McLoughlin | 99126f7 | 2008-11-20 15:49:47 +0000 | [diff] [blame] | 338 | }; |
| 339 | |
Mark McLoughlin | a647dac | 2008-11-20 15:49:48 +0000 | [diff] [blame] | 340 | /* PCI domain-device relationship */ |
| 341 | struct device_domain_info { |
| 342 | struct list_head link; /* link to domain siblings */ |
| 343 | struct list_head global; /* link to global list */ |
David Woodhouse | 276dbf99 | 2009-04-04 01:45:37 +0100 | [diff] [blame] | 344 | u8 bus; /* PCI bus number */ |
Mark McLoughlin | a647dac | 2008-11-20 15:49:48 +0000 | [diff] [blame] | 345 | u8 devfn; /* PCI devfn number */ |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 346 | struct device *dev; /* it's NULL for PCIe-to-PCI bridge */ |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 347 | struct intel_iommu *iommu; /* IOMMU used by this device */ |
Mark McLoughlin | a647dac | 2008-11-20 15:49:48 +0000 | [diff] [blame] | 348 | struct dmar_domain *domain; /* pointer to domain */ |
| 349 | }; |
| 350 | |
Jiang Liu | b94e411 | 2014-02-19 14:07:25 +0800 | [diff] [blame] | 351 | struct dmar_rmrr_unit { |
| 352 | struct list_head list; /* list of rmrr units */ |
| 353 | struct acpi_dmar_header *hdr; /* ACPI header */ |
| 354 | u64 base_address; /* reserved base address*/ |
| 355 | u64 end_address; /* reserved end address */ |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 356 | struct dmar_dev_scope *devices; /* target devices */ |
Jiang Liu | b94e411 | 2014-02-19 14:07:25 +0800 | [diff] [blame] | 357 | int devices_cnt; /* target device count */ |
| 358 | }; |
| 359 | |
| 360 | struct dmar_atsr_unit { |
| 361 | struct list_head list; /* list of ATSR units */ |
| 362 | struct acpi_dmar_header *hdr; /* ACPI header */ |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 363 | struct dmar_dev_scope *devices; /* target devices */ |
Jiang Liu | b94e411 | 2014-02-19 14:07:25 +0800 | [diff] [blame] | 364 | int devices_cnt; /* target device count */ |
| 365 | u8 include_all:1; /* include all ports */ |
| 366 | }; |
| 367 | |
| 368 | static LIST_HEAD(dmar_atsr_units); |
| 369 | static LIST_HEAD(dmar_rmrr_units); |
| 370 | |
| 371 | #define for_each_rmrr_units(rmrr) \ |
| 372 | list_for_each_entry(rmrr, &dmar_rmrr_units, list) |
| 373 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 374 | static void flush_unmaps_timeout(unsigned long data); |
| 375 | |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 376 | static DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 377 | |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 378 | #define HIGH_WATER_MARK 250 |
| 379 | struct deferred_flush_tables { |
| 380 | int next; |
| 381 | struct iova *iova[HIGH_WATER_MARK]; |
| 382 | struct dmar_domain *domain[HIGH_WATER_MARK]; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 383 | struct page *freelist[HIGH_WATER_MARK]; |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 384 | }; |
| 385 | |
| 386 | static struct deferred_flush_tables *deferred_flush; |
| 387 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 388 | /* bitmap for indexing intel_iommus */ |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 389 | static int g_num_of_iommus; |
| 390 | |
| 391 | static DEFINE_SPINLOCK(async_umap_flush_lock); |
| 392 | static LIST_HEAD(unmaps_to_do); |
| 393 | |
| 394 | static int timer_on; |
| 395 | static long list_size; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 396 | |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 397 | static void domain_exit(struct dmar_domain *domain); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 398 | static void domain_remove_dev_info(struct dmar_domain *domain); |
Jiang Liu | b94e411 | 2014-02-19 14:07:25 +0800 | [diff] [blame] | 399 | static void domain_remove_one_dev_info(struct dmar_domain *domain, |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 400 | struct device *dev); |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 401 | static void iommu_detach_dependent_devices(struct intel_iommu *iommu, |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 402 | struct device *dev); |
Jiang Liu | 2a46ddf | 2014-07-11 14:19:30 +0800 | [diff] [blame] | 403 | static int domain_detach_iommu(struct dmar_domain *domain, |
| 404 | struct intel_iommu *iommu); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 405 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 406 | #ifdef CONFIG_INTEL_IOMMU_DEFAULT_ON |
Kyle McMartin | 0cd5c3c | 2009-02-04 14:29:19 -0800 | [diff] [blame] | 407 | int dmar_disabled = 0; |
| 408 | #else |
| 409 | int dmar_disabled = 1; |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 410 | #endif /*CONFIG_INTEL_IOMMU_DEFAULT_ON*/ |
Kyle McMartin | 0cd5c3c | 2009-02-04 14:29:19 -0800 | [diff] [blame] | 411 | |
Eugeni Dodonov | 8bc1f85 | 2011-11-23 16:42:14 -0200 | [diff] [blame] | 412 | int intel_iommu_enabled = 0; |
| 413 | EXPORT_SYMBOL_GPL(intel_iommu_enabled); |
| 414 | |
David Woodhouse | 2d9e667 | 2010-06-15 10:57:57 +0100 | [diff] [blame] | 415 | static int dmar_map_gfx = 1; |
Keshavamurthy, Anil S | 7d3b03c | 2007-10-21 16:41:53 -0700 | [diff] [blame] | 416 | static int dmar_forcedac; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 417 | static int intel_iommu_strict; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 418 | static int intel_iommu_superpage = 1; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 419 | |
David Woodhouse | c0771df | 2011-10-14 20:59:46 +0100 | [diff] [blame] | 420 | int intel_iommu_gfx_mapped; |
| 421 | EXPORT_SYMBOL_GPL(intel_iommu_gfx_mapped); |
| 422 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 423 | #define DUMMY_DEVICE_DOMAIN_INFO ((struct device_domain_info *)(-1)) |
| 424 | static DEFINE_SPINLOCK(device_domain_lock); |
| 425 | static LIST_HEAD(device_domain_list); |
| 426 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 427 | static const struct iommu_ops intel_iommu_ops; |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 428 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 429 | static int __init intel_iommu_setup(char *str) |
| 430 | { |
| 431 | if (!str) |
| 432 | return -EINVAL; |
| 433 | while (*str) { |
Kyle McMartin | 0cd5c3c | 2009-02-04 14:29:19 -0800 | [diff] [blame] | 434 | if (!strncmp(str, "on", 2)) { |
| 435 | dmar_disabled = 0; |
| 436 | printk(KERN_INFO "Intel-IOMMU: enabled\n"); |
| 437 | } else if (!strncmp(str, "off", 3)) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 438 | dmar_disabled = 1; |
Kyle McMartin | 0cd5c3c | 2009-02-04 14:29:19 -0800 | [diff] [blame] | 439 | printk(KERN_INFO "Intel-IOMMU: disabled\n"); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 440 | } else if (!strncmp(str, "igfx_off", 8)) { |
| 441 | dmar_map_gfx = 0; |
| 442 | printk(KERN_INFO |
| 443 | "Intel-IOMMU: disable GFX device mapping\n"); |
Keshavamurthy, Anil S | 7d3b03c | 2007-10-21 16:41:53 -0700 | [diff] [blame] | 444 | } else if (!strncmp(str, "forcedac", 8)) { |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 445 | printk(KERN_INFO |
Keshavamurthy, Anil S | 7d3b03c | 2007-10-21 16:41:53 -0700 | [diff] [blame] | 446 | "Intel-IOMMU: Forcing DAC for PCI devices\n"); |
| 447 | dmar_forcedac = 1; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 448 | } else if (!strncmp(str, "strict", 6)) { |
| 449 | printk(KERN_INFO |
| 450 | "Intel-IOMMU: disable batched IOTLB flush\n"); |
| 451 | intel_iommu_strict = 1; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 452 | } else if (!strncmp(str, "sp_off", 6)) { |
| 453 | printk(KERN_INFO |
| 454 | "Intel-IOMMU: disable supported super page\n"); |
| 455 | intel_iommu_superpage = 0; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | str += strcspn(str, ","); |
| 459 | while (*str == ',') |
| 460 | str++; |
| 461 | } |
| 462 | return 0; |
| 463 | } |
| 464 | __setup("intel_iommu=", intel_iommu_setup); |
| 465 | |
| 466 | static struct kmem_cache *iommu_domain_cache; |
| 467 | static struct kmem_cache *iommu_devinfo_cache; |
| 468 | static struct kmem_cache *iommu_iova_cache; |
| 469 | |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 470 | static inline void *alloc_pgtable_page(int node) |
Keshavamurthy, Anil S | eb3fa7c | 2007-10-21 16:41:52 -0700 | [diff] [blame] | 471 | { |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 472 | struct page *page; |
| 473 | void *vaddr = NULL; |
Keshavamurthy, Anil S | eb3fa7c | 2007-10-21 16:41:52 -0700 | [diff] [blame] | 474 | |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 475 | page = alloc_pages_node(node, GFP_ATOMIC | __GFP_ZERO, 0); |
| 476 | if (page) |
| 477 | vaddr = page_address(page); |
Keshavamurthy, Anil S | eb3fa7c | 2007-10-21 16:41:52 -0700 | [diff] [blame] | 478 | return vaddr; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | static inline void free_pgtable_page(void *vaddr) |
| 482 | { |
| 483 | free_page((unsigned long)vaddr); |
| 484 | } |
| 485 | |
| 486 | static inline void *alloc_domain_mem(void) |
| 487 | { |
KOSAKI Motohiro | 354bb65 | 2009-11-17 16:21:09 +0900 | [diff] [blame] | 488 | return kmem_cache_alloc(iommu_domain_cache, GFP_ATOMIC); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 491 | static void free_domain_mem(void *vaddr) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 492 | { |
| 493 | kmem_cache_free(iommu_domain_cache, vaddr); |
| 494 | } |
| 495 | |
| 496 | static inline void * alloc_devinfo_mem(void) |
| 497 | { |
KOSAKI Motohiro | 354bb65 | 2009-11-17 16:21:09 +0900 | [diff] [blame] | 498 | return kmem_cache_alloc(iommu_devinfo_cache, GFP_ATOMIC); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static inline void free_devinfo_mem(void *vaddr) |
| 502 | { |
| 503 | kmem_cache_free(iommu_devinfo_cache, vaddr); |
| 504 | } |
| 505 | |
| 506 | struct iova *alloc_iova_mem(void) |
| 507 | { |
KOSAKI Motohiro | 354bb65 | 2009-11-17 16:21:09 +0900 | [diff] [blame] | 508 | return kmem_cache_alloc(iommu_iova_cache, GFP_ATOMIC); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | void free_iova_mem(struct iova *iova) |
| 512 | { |
| 513 | kmem_cache_free(iommu_iova_cache, iova); |
| 514 | } |
| 515 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 516 | static inline int domain_type_is_vm(struct dmar_domain *domain) |
| 517 | { |
| 518 | return domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE; |
| 519 | } |
| 520 | |
| 521 | static inline int domain_type_is_vm_or_si(struct dmar_domain *domain) |
| 522 | { |
| 523 | return domain->flags & (DOMAIN_FLAG_VIRTUAL_MACHINE | |
| 524 | DOMAIN_FLAG_STATIC_IDENTITY); |
| 525 | } |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 526 | |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 527 | static inline int domain_pfn_supported(struct dmar_domain *domain, |
| 528 | unsigned long pfn) |
| 529 | { |
| 530 | int addr_width = agaw_to_width(domain->agaw) - VTD_PAGE_SHIFT; |
| 531 | |
| 532 | return !(addr_width < BITS_PER_LONG && pfn >> addr_width); |
| 533 | } |
| 534 | |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 535 | static int __iommu_calculate_agaw(struct intel_iommu *iommu, int max_gaw) |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 536 | { |
| 537 | unsigned long sagaw; |
| 538 | int agaw = -1; |
| 539 | |
| 540 | sagaw = cap_sagaw(iommu->cap); |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 541 | for (agaw = width_to_agaw(max_gaw); |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 542 | agaw >= 0; agaw--) { |
| 543 | if (test_bit(agaw, &sagaw)) |
| 544 | break; |
| 545 | } |
| 546 | |
| 547 | return agaw; |
| 548 | } |
| 549 | |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 550 | /* |
| 551 | * Calculate max SAGAW for each iommu. |
| 552 | */ |
| 553 | int iommu_calculate_max_sagaw(struct intel_iommu *iommu) |
| 554 | { |
| 555 | return __iommu_calculate_agaw(iommu, MAX_AGAW_WIDTH); |
| 556 | } |
| 557 | |
| 558 | /* |
| 559 | * calculate agaw for each iommu. |
| 560 | * "SAGAW" may be different across iommus, use a default agaw, and |
| 561 | * get a supported less agaw for iommus that don't support the default agaw. |
| 562 | */ |
| 563 | int iommu_calculate_agaw(struct intel_iommu *iommu) |
| 564 | { |
| 565 | return __iommu_calculate_agaw(iommu, DEFAULT_DOMAIN_ADDRESS_WIDTH); |
| 566 | } |
| 567 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 568 | /* This functionin only returns single iommu in a domain */ |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 569 | static struct intel_iommu *domain_get_iommu(struct dmar_domain *domain) |
| 570 | { |
| 571 | int iommu_id; |
| 572 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 573 | /* si_domain and vm domain should not get here. */ |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 574 | BUG_ON(domain_type_is_vm_or_si(domain)); |
Mike Travis | 1b198bb | 2012-03-05 15:05:16 -0800 | [diff] [blame] | 575 | iommu_id = find_first_bit(domain->iommu_bmp, g_num_of_iommus); |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 576 | if (iommu_id < 0 || iommu_id >= g_num_of_iommus) |
| 577 | return NULL; |
| 578 | |
| 579 | return g_iommus[iommu_id]; |
| 580 | } |
| 581 | |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 582 | static void domain_update_iommu_coherency(struct dmar_domain *domain) |
| 583 | { |
David Woodhouse | d050196 | 2014-03-11 17:10:29 -0700 | [diff] [blame] | 584 | struct dmar_drhd_unit *drhd; |
| 585 | struct intel_iommu *iommu; |
| 586 | int i, found = 0; |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 587 | |
David Woodhouse | d050196 | 2014-03-11 17:10:29 -0700 | [diff] [blame] | 588 | domain->iommu_coherency = 1; |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 589 | |
Mike Travis | 1b198bb | 2012-03-05 15:05:16 -0800 | [diff] [blame] | 590 | for_each_set_bit(i, domain->iommu_bmp, g_num_of_iommus) { |
David Woodhouse | d050196 | 2014-03-11 17:10:29 -0700 | [diff] [blame] | 591 | found = 1; |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 592 | if (!ecap_coherent(g_iommus[i]->ecap)) { |
| 593 | domain->iommu_coherency = 0; |
| 594 | break; |
| 595 | } |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 596 | } |
David Woodhouse | d050196 | 2014-03-11 17:10:29 -0700 | [diff] [blame] | 597 | if (found) |
| 598 | return; |
| 599 | |
| 600 | /* No hardware attached; use lowest common denominator */ |
| 601 | rcu_read_lock(); |
| 602 | for_each_active_iommu(iommu, drhd) { |
| 603 | if (!ecap_coherent(iommu->ecap)) { |
| 604 | domain->iommu_coherency = 0; |
| 605 | break; |
| 606 | } |
| 607 | } |
| 608 | rcu_read_unlock(); |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 609 | } |
| 610 | |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 611 | static int domain_update_iommu_snooping(struct intel_iommu *skip) |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 612 | { |
Allen Kay | 8140a95 | 2011-10-14 12:32:17 -0700 | [diff] [blame] | 613 | struct dmar_drhd_unit *drhd; |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 614 | struct intel_iommu *iommu; |
| 615 | int ret = 1; |
| 616 | |
| 617 | rcu_read_lock(); |
| 618 | for_each_active_iommu(iommu, drhd) { |
| 619 | if (iommu != skip) { |
| 620 | if (!ecap_sc_support(iommu->ecap)) { |
| 621 | ret = 0; |
| 622 | break; |
| 623 | } |
| 624 | } |
| 625 | } |
| 626 | rcu_read_unlock(); |
| 627 | |
| 628 | return ret; |
| 629 | } |
| 630 | |
| 631 | static int domain_update_iommu_superpage(struct intel_iommu *skip) |
| 632 | { |
| 633 | struct dmar_drhd_unit *drhd; |
| 634 | struct intel_iommu *iommu; |
Allen Kay | 8140a95 | 2011-10-14 12:32:17 -0700 | [diff] [blame] | 635 | int mask = 0xf; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 636 | |
| 637 | if (!intel_iommu_superpage) { |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 638 | return 0; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 639 | } |
| 640 | |
Allen Kay | 8140a95 | 2011-10-14 12:32:17 -0700 | [diff] [blame] | 641 | /* set iommu_superpage to the smallest common denominator */ |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 642 | rcu_read_lock(); |
Allen Kay | 8140a95 | 2011-10-14 12:32:17 -0700 | [diff] [blame] | 643 | for_each_active_iommu(iommu, drhd) { |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 644 | if (iommu != skip) { |
| 645 | mask &= cap_super_page_val(iommu->cap); |
| 646 | if (!mask) |
| 647 | break; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 648 | } |
| 649 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 650 | rcu_read_unlock(); |
| 651 | |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 652 | return fls(mask); |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 653 | } |
| 654 | |
Sheng Yang | 58c610b | 2009-03-18 15:33:05 +0800 | [diff] [blame] | 655 | /* Some capabilities may be different across iommus */ |
| 656 | static void domain_update_iommu_cap(struct dmar_domain *domain) |
| 657 | { |
| 658 | domain_update_iommu_coherency(domain); |
Jiang Liu | 161f693 | 2014-07-11 14:19:37 +0800 | [diff] [blame] | 659 | domain->iommu_snooping = domain_update_iommu_snooping(NULL); |
| 660 | domain->iommu_superpage = domain_update_iommu_superpage(NULL); |
Sheng Yang | 58c610b | 2009-03-18 15:33:05 +0800 | [diff] [blame] | 661 | } |
| 662 | |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 663 | static inline struct context_entry *iommu_context_addr(struct intel_iommu *iommu, |
| 664 | u8 bus, u8 devfn, int alloc) |
| 665 | { |
| 666 | struct root_entry *root = &iommu->root_entry[bus]; |
| 667 | struct context_entry *context; |
| 668 | u64 *entry; |
| 669 | |
| 670 | if (ecap_ecs(iommu->ecap)) { |
| 671 | if (devfn >= 0x80) { |
| 672 | devfn -= 0x80; |
| 673 | entry = &root->hi; |
| 674 | } |
| 675 | devfn *= 2; |
| 676 | } |
| 677 | entry = &root->lo; |
| 678 | if (*entry & 1) |
| 679 | context = phys_to_virt(*entry & VTD_PAGE_MASK); |
| 680 | else { |
| 681 | unsigned long phy_addr; |
| 682 | if (!alloc) |
| 683 | return NULL; |
| 684 | |
| 685 | context = alloc_pgtable_page(iommu->node); |
| 686 | if (!context) |
| 687 | return NULL; |
| 688 | |
| 689 | __iommu_flush_cache(iommu, (void *)context, CONTEXT_SIZE); |
| 690 | phy_addr = virt_to_phys((void *)context); |
| 691 | *entry = phy_addr | 1; |
| 692 | __iommu_flush_cache(iommu, entry, sizeof(*entry)); |
| 693 | } |
| 694 | return &context[devfn]; |
| 695 | } |
| 696 | |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 697 | static struct intel_iommu *device_to_iommu(struct device *dev, u8 *bus, u8 *devfn) |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 698 | { |
| 699 | struct dmar_drhd_unit *drhd = NULL; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 700 | struct intel_iommu *iommu; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 701 | struct device *tmp; |
| 702 | struct pci_dev *ptmp, *pdev = NULL; |
Yijing Wang | aa4d066 | 2014-05-26 20:14:06 +0800 | [diff] [blame] | 703 | u16 segment = 0; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 704 | int i; |
| 705 | |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 706 | if (dev_is_pci(dev)) { |
| 707 | pdev = to_pci_dev(dev); |
| 708 | segment = pci_domain_nr(pdev->bus); |
| 709 | } else if (ACPI_COMPANION(dev)) |
| 710 | dev = &ACPI_COMPANION(dev)->dev; |
| 711 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 712 | rcu_read_lock(); |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 713 | for_each_active_iommu(iommu, drhd) { |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 714 | if (pdev && segment != drhd->segment) |
David Woodhouse | 276dbf99 | 2009-04-04 01:45:37 +0100 | [diff] [blame] | 715 | continue; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 716 | |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 717 | for_each_active_dev_scope(drhd->devices, |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 718 | drhd->devices_cnt, i, tmp) { |
| 719 | if (tmp == dev) { |
| 720 | *bus = drhd->devices[i].bus; |
| 721 | *devfn = drhd->devices[i].devfn; |
| 722 | goto out; |
| 723 | } |
| 724 | |
| 725 | if (!pdev || !dev_is_pci(tmp)) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 726 | continue; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 727 | |
| 728 | ptmp = to_pci_dev(tmp); |
| 729 | if (ptmp->subordinate && |
| 730 | ptmp->subordinate->number <= pdev->bus->number && |
| 731 | ptmp->subordinate->busn_res.end >= pdev->bus->number) |
| 732 | goto got_pdev; |
David Woodhouse | 924b623 | 2009-04-04 00:39:25 +0100 | [diff] [blame] | 733 | } |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 734 | |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 735 | if (pdev && drhd->include_all) { |
| 736 | got_pdev: |
| 737 | *bus = pdev->bus->number; |
| 738 | *devfn = pdev->devfn; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 739 | goto out; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 740 | } |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 741 | } |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 742 | iommu = NULL; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 743 | out: |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 744 | rcu_read_unlock(); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 745 | |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 746 | return iommu; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 747 | } |
| 748 | |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 749 | static void domain_flush_cache(struct dmar_domain *domain, |
| 750 | void *addr, int size) |
| 751 | { |
| 752 | if (!domain->iommu_coherency) |
| 753 | clflush_cache_range(addr, size); |
| 754 | } |
| 755 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 756 | static int device_context_mapped(struct intel_iommu *iommu, u8 bus, u8 devfn) |
| 757 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 758 | struct context_entry *context; |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 759 | int ret = 0; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 760 | unsigned long flags; |
| 761 | |
| 762 | spin_lock_irqsave(&iommu->lock, flags); |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 763 | context = iommu_context_addr(iommu, bus, devfn, 0); |
| 764 | if (context) |
| 765 | ret = context_present(context); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 766 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 767 | return ret; |
| 768 | } |
| 769 | |
| 770 | static void clear_context_table(struct intel_iommu *iommu, u8 bus, u8 devfn) |
| 771 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 772 | struct context_entry *context; |
| 773 | unsigned long flags; |
| 774 | |
| 775 | spin_lock_irqsave(&iommu->lock, flags); |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 776 | context = iommu_context_addr(iommu, bus, devfn, 0); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 777 | if (context) { |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 778 | context_clear_entry(context); |
| 779 | __iommu_flush_cache(iommu, context, sizeof(*context)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 780 | } |
| 781 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 782 | } |
| 783 | |
| 784 | static void free_context_table(struct intel_iommu *iommu) |
| 785 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 786 | int i; |
| 787 | unsigned long flags; |
| 788 | struct context_entry *context; |
| 789 | |
| 790 | spin_lock_irqsave(&iommu->lock, flags); |
| 791 | if (!iommu->root_entry) { |
| 792 | goto out; |
| 793 | } |
| 794 | for (i = 0; i < ROOT_ENTRY_NR; i++) { |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 795 | context = iommu_context_addr(iommu, i, 0, 0); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 796 | if (context) |
| 797 | free_pgtable_page(context); |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 798 | |
| 799 | if (!ecap_ecs(iommu->ecap)) |
| 800 | continue; |
| 801 | |
| 802 | context = iommu_context_addr(iommu, i, 0x80, 0); |
| 803 | if (context) |
| 804 | free_pgtable_page(context); |
| 805 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 806 | } |
| 807 | free_pgtable_page(iommu->root_entry); |
| 808 | iommu->root_entry = NULL; |
| 809 | out: |
| 810 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 811 | } |
| 812 | |
David Woodhouse | b026fd2 | 2009-06-28 10:37:25 +0100 | [diff] [blame] | 813 | static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain, |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 814 | unsigned long pfn, int *target_level) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 815 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 816 | struct dma_pte *parent, *pte = NULL; |
| 817 | int level = agaw_to_level(domain->agaw); |
Allen Kay | 4399c8b | 2011-10-14 12:32:46 -0700 | [diff] [blame] | 818 | int offset; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 819 | |
| 820 | BUG_ON(!domain->pgd); |
Julian Stecklina | f942360 | 2013-10-09 10:03:52 +0200 | [diff] [blame] | 821 | |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 822 | if (!domain_pfn_supported(domain, pfn)) |
Julian Stecklina | f942360 | 2013-10-09 10:03:52 +0200 | [diff] [blame] | 823 | /* Address beyond IOMMU's addressing capabilities. */ |
| 824 | return NULL; |
| 825 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 826 | parent = domain->pgd; |
| 827 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 828 | while (1) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 829 | void *tmp_page; |
| 830 | |
David Woodhouse | b026fd2 | 2009-06-28 10:37:25 +0100 | [diff] [blame] | 831 | offset = pfn_level_offset(pfn, level); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 832 | pte = &parent[offset]; |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 833 | if (!*target_level && (dma_pte_superpage(pte) || !dma_pte_present(pte))) |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 834 | break; |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 835 | if (level == *target_level) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 836 | break; |
| 837 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 838 | if (!dma_pte_present(pte)) { |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 839 | uint64_t pteval; |
| 840 | |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 841 | tmp_page = alloc_pgtable_page(domain->nid); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 842 | |
David Woodhouse | 206a73c | 2009-07-01 19:30:28 +0100 | [diff] [blame] | 843 | if (!tmp_page) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 844 | return NULL; |
David Woodhouse | 206a73c | 2009-07-01 19:30:28 +0100 | [diff] [blame] | 845 | |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 846 | domain_flush_cache(domain, tmp_page, VTD_PAGE_SIZE); |
Benjamin LaHaise | 64de5af | 2009-09-16 21:05:55 -0400 | [diff] [blame] | 847 | pteval = ((uint64_t)virt_to_dma_pfn(tmp_page) << VTD_PAGE_SHIFT) | DMA_PTE_READ | DMA_PTE_WRITE; |
Yijing Wang | effad4b | 2014-05-26 20:13:47 +0800 | [diff] [blame] | 848 | if (cmpxchg64(&pte->val, 0ULL, pteval)) |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 849 | /* Someone else set it while we were thinking; use theirs. */ |
| 850 | free_pgtable_page(tmp_page); |
Yijing Wang | effad4b | 2014-05-26 20:13:47 +0800 | [diff] [blame] | 851 | else |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 852 | domain_flush_cache(domain, pte, sizeof(*pte)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 853 | } |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 854 | if (level == 1) |
| 855 | break; |
| 856 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 857 | parent = phys_to_virt(dma_pte_addr(pte)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 858 | level--; |
| 859 | } |
| 860 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 861 | if (!*target_level) |
| 862 | *target_level = level; |
| 863 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 864 | return pte; |
| 865 | } |
| 866 | |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 867 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 868 | /* return address's pte at specific level */ |
David Woodhouse | 90dcfb5 | 2009-06-27 17:14:59 +0100 | [diff] [blame] | 869 | static struct dma_pte *dma_pfn_level_pte(struct dmar_domain *domain, |
| 870 | unsigned long pfn, |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 871 | int level, int *large_page) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 872 | { |
| 873 | struct dma_pte *parent, *pte = NULL; |
| 874 | int total = agaw_to_level(domain->agaw); |
| 875 | int offset; |
| 876 | |
| 877 | parent = domain->pgd; |
| 878 | while (level <= total) { |
David Woodhouse | 90dcfb5 | 2009-06-27 17:14:59 +0100 | [diff] [blame] | 879 | offset = pfn_level_offset(pfn, total); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 880 | pte = &parent[offset]; |
| 881 | if (level == total) |
| 882 | return pte; |
| 883 | |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 884 | if (!dma_pte_present(pte)) { |
| 885 | *large_page = total; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 886 | break; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 887 | } |
| 888 | |
Yijing Wang | e16922a | 2014-05-20 20:37:51 +0800 | [diff] [blame] | 889 | if (dma_pte_superpage(pte)) { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 890 | *large_page = total; |
| 891 | return pte; |
| 892 | } |
| 893 | |
Mark McLoughlin | 19c239c | 2008-11-21 16:56:53 +0000 | [diff] [blame] | 894 | parent = phys_to_virt(dma_pte_addr(pte)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 895 | total--; |
| 896 | } |
| 897 | return NULL; |
| 898 | } |
| 899 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 900 | /* clear last level pte, a tlb flush should be followed */ |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 901 | static void dma_pte_clear_range(struct dmar_domain *domain, |
David Woodhouse | 595badf | 2009-06-27 22:09:11 +0100 | [diff] [blame] | 902 | unsigned long start_pfn, |
| 903 | unsigned long last_pfn) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 904 | { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 905 | unsigned int large_page = 1; |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 906 | struct dma_pte *first_pte, *pte; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 907 | |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 908 | BUG_ON(!domain_pfn_supported(domain, start_pfn)); |
| 909 | BUG_ON(!domain_pfn_supported(domain, last_pfn)); |
David Woodhouse | 59c3628 | 2009-09-19 07:36:28 -0700 | [diff] [blame] | 910 | BUG_ON(start_pfn > last_pfn); |
David Woodhouse | 66eae84 | 2009-06-27 19:00:32 +0100 | [diff] [blame] | 911 | |
David Woodhouse | 04b18e6 | 2009-06-27 19:15:01 +0100 | [diff] [blame] | 912 | /* we don't need lock here; nobody else touches the iova range */ |
David Woodhouse | 59c3628 | 2009-09-19 07:36:28 -0700 | [diff] [blame] | 913 | do { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 914 | large_page = 1; |
| 915 | first_pte = pte = dma_pfn_level_pte(domain, start_pfn, 1, &large_page); |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 916 | if (!pte) { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 917 | start_pfn = align_to_level(start_pfn + 1, large_page + 1); |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 918 | continue; |
| 919 | } |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 920 | do { |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 921 | dma_clear_pte(pte); |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 922 | start_pfn += lvl_to_nr_pages(large_page); |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 923 | pte++; |
David Woodhouse | 75e6bf9 | 2009-07-02 11:21:16 +0100 | [diff] [blame] | 924 | } while (start_pfn <= last_pfn && !first_pte_in_page(pte)); |
| 925 | |
David Woodhouse | 310a5ab | 2009-06-28 18:52:20 +0100 | [diff] [blame] | 926 | domain_flush_cache(domain, first_pte, |
| 927 | (void *)pte - (void *)first_pte); |
David Woodhouse | 59c3628 | 2009-09-19 07:36:28 -0700 | [diff] [blame] | 928 | |
| 929 | } while (start_pfn && start_pfn <= last_pfn); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 930 | } |
| 931 | |
Alex Williamson | 3269ee0 | 2013-06-15 10:27:19 -0600 | [diff] [blame] | 932 | static void dma_pte_free_level(struct dmar_domain *domain, int level, |
| 933 | struct dma_pte *pte, unsigned long pfn, |
| 934 | unsigned long start_pfn, unsigned long last_pfn) |
| 935 | { |
| 936 | pfn = max(start_pfn, pfn); |
| 937 | pte = &pte[pfn_level_offset(pfn, level)]; |
| 938 | |
| 939 | do { |
| 940 | unsigned long level_pfn; |
| 941 | struct dma_pte *level_pte; |
| 942 | |
| 943 | if (!dma_pte_present(pte) || dma_pte_superpage(pte)) |
| 944 | goto next; |
| 945 | |
| 946 | level_pfn = pfn & level_mask(level - 1); |
| 947 | level_pte = phys_to_virt(dma_pte_addr(pte)); |
| 948 | |
| 949 | if (level > 2) |
| 950 | dma_pte_free_level(domain, level - 1, level_pte, |
| 951 | level_pfn, start_pfn, last_pfn); |
| 952 | |
| 953 | /* If range covers entire pagetable, free it */ |
| 954 | if (!(start_pfn > level_pfn || |
Alex Williamson | 08336fd | 2014-01-21 15:48:18 -0800 | [diff] [blame] | 955 | last_pfn < level_pfn + level_size(level) - 1)) { |
Alex Williamson | 3269ee0 | 2013-06-15 10:27:19 -0600 | [diff] [blame] | 956 | dma_clear_pte(pte); |
| 957 | domain_flush_cache(domain, pte, sizeof(*pte)); |
| 958 | free_pgtable_page(level_pte); |
| 959 | } |
| 960 | next: |
| 961 | pfn += level_size(level); |
| 962 | } while (!first_pte_in_page(++pte) && pfn <= last_pfn); |
| 963 | } |
| 964 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 965 | /* free page table pages. last level pte should already be cleared */ |
| 966 | static void dma_pte_free_pagetable(struct dmar_domain *domain, |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 967 | unsigned long start_pfn, |
| 968 | unsigned long last_pfn) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 969 | { |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 970 | BUG_ON(!domain_pfn_supported(domain, start_pfn)); |
| 971 | BUG_ON(!domain_pfn_supported(domain, last_pfn)); |
David Woodhouse | 59c3628 | 2009-09-19 07:36:28 -0700 | [diff] [blame] | 972 | BUG_ON(start_pfn > last_pfn); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 973 | |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 974 | dma_pte_clear_range(domain, start_pfn, last_pfn); |
| 975 | |
David Woodhouse | f3a0a52 | 2009-06-30 03:40:07 +0100 | [diff] [blame] | 976 | /* We don't need lock here; nobody else touches the iova range */ |
Alex Williamson | 3269ee0 | 2013-06-15 10:27:19 -0600 | [diff] [blame] | 977 | dma_pte_free_level(domain, agaw_to_level(domain->agaw), |
| 978 | domain->pgd, 0, start_pfn, last_pfn); |
David Woodhouse | 6660c63 | 2009-06-27 22:41:00 +0100 | [diff] [blame] | 979 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 980 | /* free pgd */ |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 981 | if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 982 | free_pgtable_page(domain->pgd); |
| 983 | domain->pgd = NULL; |
| 984 | } |
| 985 | } |
| 986 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 987 | /* When a page at a given level is being unlinked from its parent, we don't |
| 988 | need to *modify* it at all. All we need to do is make a list of all the |
| 989 | pages which can be freed just as soon as we've flushed the IOTLB and we |
| 990 | know the hardware page-walk will no longer touch them. |
| 991 | The 'pte' argument is the *parent* PTE, pointing to the page that is to |
| 992 | be freed. */ |
| 993 | static struct page *dma_pte_list_pagetables(struct dmar_domain *domain, |
| 994 | int level, struct dma_pte *pte, |
| 995 | struct page *freelist) |
| 996 | { |
| 997 | struct page *pg; |
| 998 | |
| 999 | pg = pfn_to_page(dma_pte_addr(pte) >> PAGE_SHIFT); |
| 1000 | pg->freelist = freelist; |
| 1001 | freelist = pg; |
| 1002 | |
| 1003 | if (level == 1) |
| 1004 | return freelist; |
| 1005 | |
Jiang Liu | adeb259 | 2014-04-09 10:20:39 +0800 | [diff] [blame] | 1006 | pte = page_address(pg); |
| 1007 | do { |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1008 | if (dma_pte_present(pte) && !dma_pte_superpage(pte)) |
| 1009 | freelist = dma_pte_list_pagetables(domain, level - 1, |
| 1010 | pte, freelist); |
Jiang Liu | adeb259 | 2014-04-09 10:20:39 +0800 | [diff] [blame] | 1011 | pte++; |
| 1012 | } while (!first_pte_in_page(pte)); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1013 | |
| 1014 | return freelist; |
| 1015 | } |
| 1016 | |
| 1017 | static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level, |
| 1018 | struct dma_pte *pte, unsigned long pfn, |
| 1019 | unsigned long start_pfn, |
| 1020 | unsigned long last_pfn, |
| 1021 | struct page *freelist) |
| 1022 | { |
| 1023 | struct dma_pte *first_pte = NULL, *last_pte = NULL; |
| 1024 | |
| 1025 | pfn = max(start_pfn, pfn); |
| 1026 | pte = &pte[pfn_level_offset(pfn, level)]; |
| 1027 | |
| 1028 | do { |
| 1029 | unsigned long level_pfn; |
| 1030 | |
| 1031 | if (!dma_pte_present(pte)) |
| 1032 | goto next; |
| 1033 | |
| 1034 | level_pfn = pfn & level_mask(level); |
| 1035 | |
| 1036 | /* If range covers entire pagetable, free it */ |
| 1037 | if (start_pfn <= level_pfn && |
| 1038 | last_pfn >= level_pfn + level_size(level) - 1) { |
| 1039 | /* These suborbinate page tables are going away entirely. Don't |
| 1040 | bother to clear them; we're just going to *free* them. */ |
| 1041 | if (level > 1 && !dma_pte_superpage(pte)) |
| 1042 | freelist = dma_pte_list_pagetables(domain, level - 1, pte, freelist); |
| 1043 | |
| 1044 | dma_clear_pte(pte); |
| 1045 | if (!first_pte) |
| 1046 | first_pte = pte; |
| 1047 | last_pte = pte; |
| 1048 | } else if (level > 1) { |
| 1049 | /* Recurse down into a level that isn't *entirely* obsolete */ |
| 1050 | freelist = dma_pte_clear_level(domain, level - 1, |
| 1051 | phys_to_virt(dma_pte_addr(pte)), |
| 1052 | level_pfn, start_pfn, last_pfn, |
| 1053 | freelist); |
| 1054 | } |
| 1055 | next: |
| 1056 | pfn += level_size(level); |
| 1057 | } while (!first_pte_in_page(++pte) && pfn <= last_pfn); |
| 1058 | |
| 1059 | if (first_pte) |
| 1060 | domain_flush_cache(domain, first_pte, |
| 1061 | (void *)++last_pte - (void *)first_pte); |
| 1062 | |
| 1063 | return freelist; |
| 1064 | } |
| 1065 | |
| 1066 | /* We can't just free the pages because the IOMMU may still be walking |
| 1067 | the page tables, and may have cached the intermediate levels. The |
| 1068 | pages can only be freed after the IOTLB flush has been done. */ |
| 1069 | struct page *domain_unmap(struct dmar_domain *domain, |
| 1070 | unsigned long start_pfn, |
| 1071 | unsigned long last_pfn) |
| 1072 | { |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1073 | struct page *freelist = NULL; |
| 1074 | |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 1075 | BUG_ON(!domain_pfn_supported(domain, start_pfn)); |
| 1076 | BUG_ON(!domain_pfn_supported(domain, last_pfn)); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1077 | BUG_ON(start_pfn > last_pfn); |
| 1078 | |
| 1079 | /* we don't need lock here; nobody else touches the iova range */ |
| 1080 | freelist = dma_pte_clear_level(domain, agaw_to_level(domain->agaw), |
| 1081 | domain->pgd, 0, start_pfn, last_pfn, NULL); |
| 1082 | |
| 1083 | /* free pgd */ |
| 1084 | if (start_pfn == 0 && last_pfn == DOMAIN_MAX_PFN(domain->gaw)) { |
| 1085 | struct page *pgd_page = virt_to_page(domain->pgd); |
| 1086 | pgd_page->freelist = freelist; |
| 1087 | freelist = pgd_page; |
| 1088 | |
| 1089 | domain->pgd = NULL; |
| 1090 | } |
| 1091 | |
| 1092 | return freelist; |
| 1093 | } |
| 1094 | |
| 1095 | void dma_free_pagelist(struct page *freelist) |
| 1096 | { |
| 1097 | struct page *pg; |
| 1098 | |
| 1099 | while ((pg = freelist)) { |
| 1100 | freelist = pg->freelist; |
| 1101 | free_pgtable_page(page_address(pg)); |
| 1102 | } |
| 1103 | } |
| 1104 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1105 | /* iommu handling */ |
| 1106 | static int iommu_alloc_root_entry(struct intel_iommu *iommu) |
| 1107 | { |
| 1108 | struct root_entry *root; |
| 1109 | unsigned long flags; |
| 1110 | |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 1111 | root = (struct root_entry *)alloc_pgtable_page(iommu->node); |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 1112 | if (!root) { |
| 1113 | pr_err("IOMMU: allocating root entry for %s failed\n", |
| 1114 | iommu->name); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1115 | return -ENOMEM; |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 1116 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1117 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 1118 | __iommu_flush_cache(iommu, root, ROOT_SIZE); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1119 | |
| 1120 | spin_lock_irqsave(&iommu->lock, flags); |
| 1121 | iommu->root_entry = root; |
| 1122 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 1123 | |
| 1124 | return 0; |
| 1125 | } |
| 1126 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1127 | static void iommu_set_root_entry(struct intel_iommu *iommu) |
| 1128 | { |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 1129 | u64 addr; |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1130 | u32 sts; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1131 | unsigned long flag; |
| 1132 | |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 1133 | addr = virt_to_phys(iommu->root_entry); |
| 1134 | if (ecap_ecs(iommu->ecap)) |
| 1135 | addr |= DMA_RTADDR_RTT; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1136 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1137 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 1138 | dmar_writeq(iommu->reg + DMAR_RTADDR_REG, addr); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1139 | |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1140 | writel(iommu->gcmd | DMA_GCMD_SRTP, iommu->reg + DMAR_GCMD_REG); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1141 | |
| 1142 | /* Make sure hardware complete it */ |
| 1143 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1144 | readl, (sts & DMA_GSTS_RTPS), sts); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1145 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1146 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | static void iommu_flush_write_buffer(struct intel_iommu *iommu) |
| 1150 | { |
| 1151 | u32 val; |
| 1152 | unsigned long flag; |
| 1153 | |
David Woodhouse | 9af8814 | 2009-02-13 23:18:03 +0000 | [diff] [blame] | 1154 | if (!rwbf_quirk && !cap_rwbf(iommu->cap)) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1155 | return; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1156 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1157 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 462b60f | 2009-05-10 20:18:18 +0100 | [diff] [blame] | 1158 | writel(iommu->gcmd | DMA_GCMD_WBF, iommu->reg + DMAR_GCMD_REG); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1159 | |
| 1160 | /* Make sure hardware complete it */ |
| 1161 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1162 | readl, (!(val & DMA_GSTS_WBFS)), val); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1163 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1164 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
| 1167 | /* return value determine if we need a write buffer flush */ |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1168 | static void __iommu_flush_context(struct intel_iommu *iommu, |
| 1169 | u16 did, u16 source_id, u8 function_mask, |
| 1170 | u64 type) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1171 | { |
| 1172 | u64 val = 0; |
| 1173 | unsigned long flag; |
| 1174 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1175 | switch (type) { |
| 1176 | case DMA_CCMD_GLOBAL_INVL: |
| 1177 | val = DMA_CCMD_GLOBAL_INVL; |
| 1178 | break; |
| 1179 | case DMA_CCMD_DOMAIN_INVL: |
| 1180 | val = DMA_CCMD_DOMAIN_INVL|DMA_CCMD_DID(did); |
| 1181 | break; |
| 1182 | case DMA_CCMD_DEVICE_INVL: |
| 1183 | val = DMA_CCMD_DEVICE_INVL|DMA_CCMD_DID(did) |
| 1184 | | DMA_CCMD_SID(source_id) | DMA_CCMD_FM(function_mask); |
| 1185 | break; |
| 1186 | default: |
| 1187 | BUG(); |
| 1188 | } |
| 1189 | val |= DMA_CCMD_ICC; |
| 1190 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1191 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1192 | dmar_writeq(iommu->reg + DMAR_CCMD_REG, val); |
| 1193 | |
| 1194 | /* Make sure hardware complete it */ |
| 1195 | IOMMU_WAIT_OP(iommu, DMAR_CCMD_REG, |
| 1196 | dmar_readq, (!(val & DMA_CCMD_ICC)), val); |
| 1197 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1198 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1199 | } |
| 1200 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1201 | /* return value determine if we need a write buffer flush */ |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1202 | static void __iommu_flush_iotlb(struct intel_iommu *iommu, u16 did, |
| 1203 | u64 addr, unsigned int size_order, u64 type) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1204 | { |
| 1205 | int tlb_offset = ecap_iotlb_offset(iommu->ecap); |
| 1206 | u64 val = 0, val_iva = 0; |
| 1207 | unsigned long flag; |
| 1208 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1209 | switch (type) { |
| 1210 | case DMA_TLB_GLOBAL_FLUSH: |
| 1211 | /* global flush doesn't need set IVA_REG */ |
| 1212 | val = DMA_TLB_GLOBAL_FLUSH|DMA_TLB_IVT; |
| 1213 | break; |
| 1214 | case DMA_TLB_DSI_FLUSH: |
| 1215 | val = DMA_TLB_DSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did); |
| 1216 | break; |
| 1217 | case DMA_TLB_PSI_FLUSH: |
| 1218 | val = DMA_TLB_PSI_FLUSH|DMA_TLB_IVT|DMA_TLB_DID(did); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1219 | /* IH bit is passed in as part of address */ |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1220 | val_iva = size_order | addr; |
| 1221 | break; |
| 1222 | default: |
| 1223 | BUG(); |
| 1224 | } |
| 1225 | /* Note: set drain read/write */ |
| 1226 | #if 0 |
| 1227 | /* |
| 1228 | * This is probably to be super secure.. Looks like we can |
| 1229 | * ignore it without any impact. |
| 1230 | */ |
| 1231 | if (cap_read_drain(iommu->cap)) |
| 1232 | val |= DMA_TLB_READ_DRAIN; |
| 1233 | #endif |
| 1234 | if (cap_write_drain(iommu->cap)) |
| 1235 | val |= DMA_TLB_WRITE_DRAIN; |
| 1236 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1237 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1238 | /* Note: Only uses first TLB reg currently */ |
| 1239 | if (val_iva) |
| 1240 | dmar_writeq(iommu->reg + tlb_offset, val_iva); |
| 1241 | dmar_writeq(iommu->reg + tlb_offset + 8, val); |
| 1242 | |
| 1243 | /* Make sure hardware complete it */ |
| 1244 | IOMMU_WAIT_OP(iommu, tlb_offset + 8, |
| 1245 | dmar_readq, (!(val & DMA_TLB_IVT)), val); |
| 1246 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1247 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1248 | |
| 1249 | /* check IOTLB invalidation granularity */ |
| 1250 | if (DMA_TLB_IAIG(val) == 0) |
| 1251 | printk(KERN_ERR"IOMMU: flush IOTLB failed\n"); |
| 1252 | if (DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type)) |
| 1253 | pr_debug("IOMMU: tlb flush request %Lx, actual %Lx\n", |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 1254 | (unsigned long long)DMA_TLB_IIRG(type), |
| 1255 | (unsigned long long)DMA_TLB_IAIG(val)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
David Woodhouse | 64ae892 | 2014-03-09 12:52:30 -0700 | [diff] [blame] | 1258 | static struct device_domain_info * |
| 1259 | iommu_support_dev_iotlb (struct dmar_domain *domain, struct intel_iommu *iommu, |
| 1260 | u8 bus, u8 devfn) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1261 | { |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1262 | int found = 0; |
| 1263 | unsigned long flags; |
| 1264 | struct device_domain_info *info; |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1265 | struct pci_dev *pdev; |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1266 | |
| 1267 | if (!ecap_dev_iotlb_support(iommu->ecap)) |
| 1268 | return NULL; |
| 1269 | |
| 1270 | if (!iommu->qi) |
| 1271 | return NULL; |
| 1272 | |
| 1273 | spin_lock_irqsave(&device_domain_lock, flags); |
| 1274 | list_for_each_entry(info, &domain->devices, link) |
Jiang Liu | c3b497c | 2014-07-11 14:19:25 +0800 | [diff] [blame] | 1275 | if (info->iommu == iommu && info->bus == bus && |
| 1276 | info->devfn == devfn) { |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1277 | found = 1; |
| 1278 | break; |
| 1279 | } |
| 1280 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 1281 | |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1282 | if (!found || !info->dev || !dev_is_pci(info->dev)) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1283 | return NULL; |
| 1284 | |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1285 | pdev = to_pci_dev(info->dev); |
| 1286 | |
| 1287 | if (!pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS)) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1288 | return NULL; |
| 1289 | |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1290 | if (!dmar_find_matched_atsr_unit(pdev)) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1291 | return NULL; |
| 1292 | |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1293 | return info; |
| 1294 | } |
| 1295 | |
| 1296 | static void iommu_enable_dev_iotlb(struct device_domain_info *info) |
| 1297 | { |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1298 | if (!info || !dev_is_pci(info->dev)) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1299 | return; |
| 1300 | |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1301 | pci_enable_ats(to_pci_dev(info->dev), VTD_PAGE_SHIFT); |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1302 | } |
| 1303 | |
| 1304 | static void iommu_disable_dev_iotlb(struct device_domain_info *info) |
| 1305 | { |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1306 | if (!info->dev || !dev_is_pci(info->dev) || |
| 1307 | !pci_ats_enabled(to_pci_dev(info->dev))) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1308 | return; |
| 1309 | |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1310 | pci_disable_ats(to_pci_dev(info->dev)); |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | static void iommu_flush_dev_iotlb(struct dmar_domain *domain, |
| 1314 | u64 addr, unsigned mask) |
| 1315 | { |
| 1316 | u16 sid, qdep; |
| 1317 | unsigned long flags; |
| 1318 | struct device_domain_info *info; |
| 1319 | |
| 1320 | spin_lock_irqsave(&device_domain_lock, flags); |
| 1321 | list_for_each_entry(info, &domain->devices, link) { |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1322 | struct pci_dev *pdev; |
| 1323 | if (!info->dev || !dev_is_pci(info->dev)) |
| 1324 | continue; |
| 1325 | |
| 1326 | pdev = to_pci_dev(info->dev); |
| 1327 | if (!pci_ats_enabled(pdev)) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1328 | continue; |
| 1329 | |
| 1330 | sid = info->bus << 8 | info->devfn; |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 1331 | qdep = pci_ats_queue_depth(pdev); |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1332 | qi_flush_dev_iotlb(info->iommu, sid, qdep, addr, mask); |
| 1333 | } |
| 1334 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 1335 | } |
| 1336 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1337 | static void iommu_flush_iotlb_psi(struct intel_iommu *iommu, u16 did, |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1338 | unsigned long pfn, unsigned int pages, int ih, int map) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1339 | { |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 1340 | unsigned int mask = ilog2(__roundup_pow_of_two(pages)); |
David Woodhouse | 03d6a24 | 2009-06-28 15:33:46 +0100 | [diff] [blame] | 1341 | uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1342 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1343 | BUG_ON(pages == 0); |
| 1344 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1345 | if (ih) |
| 1346 | ih = 1 << 6; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1347 | /* |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 1348 | * Fallback to domain selective flush if no PSI support or the size is |
| 1349 | * too big. |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1350 | * PSI requires page size to be 2 ^ x, and the base address is naturally |
| 1351 | * aligned to the size |
| 1352 | */ |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 1353 | if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap)) |
| 1354 | iommu->flush.flush_iotlb(iommu, did, 0, 0, |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1355 | DMA_TLB_DSI_FLUSH); |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 1356 | else |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1357 | iommu->flush.flush_iotlb(iommu, did, addr | ih, mask, |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 1358 | DMA_TLB_PSI_FLUSH); |
Yu Zhao | bf92df3 | 2009-06-29 11:31:45 +0800 | [diff] [blame] | 1359 | |
| 1360 | /* |
Nadav Amit | 8265363 | 2010-04-01 13:24:40 +0300 | [diff] [blame] | 1361 | * In caching mode, changes of pages from non-present to present require |
| 1362 | * flush. However, device IOTLB doesn't need to be flushed in this case. |
Yu Zhao | bf92df3 | 2009-06-29 11:31:45 +0800 | [diff] [blame] | 1363 | */ |
Nadav Amit | 8265363 | 2010-04-01 13:24:40 +0300 | [diff] [blame] | 1364 | if (!cap_caching_mode(iommu->cap) || !map) |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1365 | iommu_flush_dev_iotlb(iommu->domains[did], addr, mask); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1366 | } |
| 1367 | |
mark gross | f8bab73 | 2008-02-08 04:18:38 -0800 | [diff] [blame] | 1368 | static void iommu_disable_protect_mem_regions(struct intel_iommu *iommu) |
| 1369 | { |
| 1370 | u32 pmen; |
| 1371 | unsigned long flags; |
| 1372 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1373 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
mark gross | f8bab73 | 2008-02-08 04:18:38 -0800 | [diff] [blame] | 1374 | pmen = readl(iommu->reg + DMAR_PMEN_REG); |
| 1375 | pmen &= ~DMA_PMEN_EPM; |
| 1376 | writel(pmen, iommu->reg + DMAR_PMEN_REG); |
| 1377 | |
| 1378 | /* wait for the protected region status bit to clear */ |
| 1379 | IOMMU_WAIT_OP(iommu, DMAR_PMEN_REG, |
| 1380 | readl, !(pmen & DMA_PMEN_PRS), pmen); |
| 1381 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1382 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
mark gross | f8bab73 | 2008-02-08 04:18:38 -0800 | [diff] [blame] | 1383 | } |
| 1384 | |
Jiang Liu | 2a41cce | 2014-07-11 14:19:33 +0800 | [diff] [blame] | 1385 | static void iommu_enable_translation(struct intel_iommu *iommu) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1386 | { |
| 1387 | u32 sts; |
| 1388 | unsigned long flags; |
| 1389 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1390 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1391 | iommu->gcmd |= DMA_GCMD_TE; |
| 1392 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1393 | |
| 1394 | /* Make sure hardware complete it */ |
| 1395 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1396 | readl, (sts & DMA_GSTS_TES), sts); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1397 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1398 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
Jiang Liu | 2a41cce | 2014-07-11 14:19:33 +0800 | [diff] [blame] | 1401 | static void iommu_disable_translation(struct intel_iommu *iommu) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1402 | { |
| 1403 | u32 sts; |
| 1404 | unsigned long flag; |
| 1405 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1406 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1407 | iommu->gcmd &= ~DMA_GCMD_TE; |
| 1408 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
| 1409 | |
| 1410 | /* Make sure hardware complete it */ |
| 1411 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1412 | readl, (!(sts & DMA_GSTS_TES)), sts); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1413 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1414 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1415 | } |
| 1416 | |
Keshavamurthy, Anil S | 3460a6d | 2007-10-21 16:41:54 -0700 | [diff] [blame] | 1417 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1418 | static int iommu_init_domains(struct intel_iommu *iommu) |
| 1419 | { |
| 1420 | unsigned long ndomains; |
| 1421 | unsigned long nlongs; |
| 1422 | |
| 1423 | ndomains = cap_ndoms(iommu->cap); |
Jiang Liu | 852bdb0 | 2014-01-06 14:18:11 +0800 | [diff] [blame] | 1424 | pr_debug("IOMMU%d: Number of Domains supported <%ld>\n", |
| 1425 | iommu->seq_id, ndomains); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1426 | nlongs = BITS_TO_LONGS(ndomains); |
| 1427 | |
Donald Dutile | 94a91b5 | 2009-08-20 16:51:34 -0400 | [diff] [blame] | 1428 | spin_lock_init(&iommu->lock); |
| 1429 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1430 | /* TBD: there might be 64K domains, |
| 1431 | * consider other allocation for future chip |
| 1432 | */ |
| 1433 | iommu->domain_ids = kcalloc(nlongs, sizeof(unsigned long), GFP_KERNEL); |
| 1434 | if (!iommu->domain_ids) { |
Jiang Liu | 852bdb0 | 2014-01-06 14:18:11 +0800 | [diff] [blame] | 1435 | pr_err("IOMMU%d: allocating domain id array failed\n", |
| 1436 | iommu->seq_id); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1437 | return -ENOMEM; |
| 1438 | } |
| 1439 | iommu->domains = kcalloc(ndomains, sizeof(struct dmar_domain *), |
| 1440 | GFP_KERNEL); |
| 1441 | if (!iommu->domains) { |
Jiang Liu | 852bdb0 | 2014-01-06 14:18:11 +0800 | [diff] [blame] | 1442 | pr_err("IOMMU%d: allocating domain array failed\n", |
| 1443 | iommu->seq_id); |
| 1444 | kfree(iommu->domain_ids); |
| 1445 | iommu->domain_ids = NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1446 | return -ENOMEM; |
| 1447 | } |
| 1448 | |
| 1449 | /* |
| 1450 | * if Caching mode is set, then invalid translations are tagged |
| 1451 | * with domainid 0. Hence we need to pre-allocate it. |
| 1452 | */ |
| 1453 | if (cap_caching_mode(iommu->cap)) |
| 1454 | set_bit(0, iommu->domain_ids); |
| 1455 | return 0; |
| 1456 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1457 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 1458 | static void disable_dmar_iommu(struct intel_iommu *iommu) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1459 | { |
| 1460 | struct dmar_domain *domain; |
Jiang Liu | 2a46ddf | 2014-07-11 14:19:30 +0800 | [diff] [blame] | 1461 | int i; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1462 | |
Donald Dutile | 94a91b5 | 2009-08-20 16:51:34 -0400 | [diff] [blame] | 1463 | if ((iommu->domains) && (iommu->domain_ids)) { |
Akinobu Mita | a45946a | 2010-03-11 14:04:08 -0800 | [diff] [blame] | 1464 | for_each_set_bit(i, iommu->domain_ids, cap_ndoms(iommu->cap)) { |
Jiang Liu | a4eaa86 | 2014-02-19 14:07:30 +0800 | [diff] [blame] | 1465 | /* |
| 1466 | * Domain id 0 is reserved for invalid translation |
| 1467 | * if hardware supports caching mode. |
| 1468 | */ |
| 1469 | if (cap_caching_mode(iommu->cap) && i == 0) |
| 1470 | continue; |
| 1471 | |
Donald Dutile | 94a91b5 | 2009-08-20 16:51:34 -0400 | [diff] [blame] | 1472 | domain = iommu->domains[i]; |
| 1473 | clear_bit(i, iommu->domain_ids); |
Jiang Liu | 129ad28 | 2014-07-11 14:19:31 +0800 | [diff] [blame] | 1474 | if (domain_detach_iommu(domain, iommu) == 0 && |
| 1475 | !domain_type_is_vm(domain)) |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1476 | domain_exit(domain); |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 1477 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1478 | } |
| 1479 | |
| 1480 | if (iommu->gcmd & DMA_GCMD_TE) |
| 1481 | iommu_disable_translation(iommu); |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 1482 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1483 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 1484 | static void free_dmar_iommu(struct intel_iommu *iommu) |
| 1485 | { |
| 1486 | if ((iommu->domains) && (iommu->domain_ids)) { |
| 1487 | kfree(iommu->domains); |
| 1488 | kfree(iommu->domain_ids); |
| 1489 | iommu->domains = NULL; |
| 1490 | iommu->domain_ids = NULL; |
| 1491 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1492 | |
Weidong Han | d9630fe | 2008-12-08 11:06:32 +0800 | [diff] [blame] | 1493 | g_iommus[iommu->seq_id] = NULL; |
| 1494 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1495 | /* free context mapping */ |
| 1496 | free_context_table(iommu); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1497 | } |
| 1498 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 1499 | static struct dmar_domain *alloc_domain(int flags) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1500 | { |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1501 | /* domain id for virtual machine, it won't be set in context */ |
| 1502 | static atomic_t vm_domid = ATOMIC_INIT(0); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1503 | struct dmar_domain *domain; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1504 | |
| 1505 | domain = alloc_domain_mem(); |
| 1506 | if (!domain) |
| 1507 | return NULL; |
| 1508 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 1509 | memset(domain, 0, sizeof(*domain)); |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 1510 | domain->nid = -1; |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 1511 | domain->flags = flags; |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1512 | spin_lock_init(&domain->iommu_lock); |
| 1513 | INIT_LIST_HEAD(&domain->devices); |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 1514 | if (flags & DOMAIN_FLAG_VIRTUAL_MACHINE) |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1515 | domain->id = atomic_inc_return(&vm_domid); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1516 | |
| 1517 | return domain; |
| 1518 | } |
| 1519 | |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1520 | static int __iommu_attach_domain(struct dmar_domain *domain, |
| 1521 | struct intel_iommu *iommu) |
| 1522 | { |
| 1523 | int num; |
| 1524 | unsigned long ndomains; |
| 1525 | |
| 1526 | ndomains = cap_ndoms(iommu->cap); |
| 1527 | num = find_first_zero_bit(iommu->domain_ids, ndomains); |
| 1528 | if (num < ndomains) { |
| 1529 | set_bit(num, iommu->domain_ids); |
| 1530 | iommu->domains[num] = domain; |
| 1531 | } else { |
| 1532 | num = -ENOSPC; |
| 1533 | } |
| 1534 | |
| 1535 | return num; |
| 1536 | } |
| 1537 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1538 | static int iommu_attach_domain(struct dmar_domain *domain, |
| 1539 | struct intel_iommu *iommu) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1540 | { |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1541 | int num; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1542 | unsigned long flags; |
| 1543 | |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 1544 | spin_lock_irqsave(&iommu->lock, flags); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1545 | num = __iommu_attach_domain(domain, iommu); |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 1546 | spin_unlock_irqrestore(&iommu->lock, flags); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1547 | if (num < 0) |
| 1548 | pr_err("IOMMU: no free domain ids\n"); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1549 | |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1550 | return num; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 1553 | static int iommu_attach_vm_domain(struct dmar_domain *domain, |
| 1554 | struct intel_iommu *iommu) |
| 1555 | { |
| 1556 | int num; |
| 1557 | unsigned long ndomains; |
| 1558 | |
| 1559 | ndomains = cap_ndoms(iommu->cap); |
| 1560 | for_each_set_bit(num, iommu->domain_ids, ndomains) |
| 1561 | if (iommu->domains[num] == domain) |
| 1562 | return num; |
| 1563 | |
| 1564 | return __iommu_attach_domain(domain, iommu); |
| 1565 | } |
| 1566 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1567 | static void iommu_detach_domain(struct dmar_domain *domain, |
| 1568 | struct intel_iommu *iommu) |
| 1569 | { |
| 1570 | unsigned long flags; |
| 1571 | int num, ndomains; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1572 | |
| 1573 | spin_lock_irqsave(&iommu->lock, flags); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1574 | if (domain_type_is_vm_or_si(domain)) { |
| 1575 | ndomains = cap_ndoms(iommu->cap); |
| 1576 | for_each_set_bit(num, iommu->domain_ids, ndomains) { |
| 1577 | if (iommu->domains[num] == domain) { |
| 1578 | clear_bit(num, iommu->domain_ids); |
| 1579 | iommu->domains[num] = NULL; |
| 1580 | break; |
| 1581 | } |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1582 | } |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1583 | } else { |
| 1584 | clear_bit(domain->id, iommu->domain_ids); |
| 1585 | iommu->domains[domain->id] = NULL; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1586 | } |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 1587 | spin_unlock_irqrestore(&iommu->lock, flags); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1588 | } |
| 1589 | |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1590 | static void domain_attach_iommu(struct dmar_domain *domain, |
| 1591 | struct intel_iommu *iommu) |
| 1592 | { |
| 1593 | unsigned long flags; |
| 1594 | |
| 1595 | spin_lock_irqsave(&domain->iommu_lock, flags); |
| 1596 | if (!test_and_set_bit(iommu->seq_id, domain->iommu_bmp)) { |
| 1597 | domain->iommu_count++; |
| 1598 | if (domain->iommu_count == 1) |
| 1599 | domain->nid = iommu->node; |
| 1600 | domain_update_iommu_cap(domain); |
| 1601 | } |
| 1602 | spin_unlock_irqrestore(&domain->iommu_lock, flags); |
| 1603 | } |
| 1604 | |
| 1605 | static int domain_detach_iommu(struct dmar_domain *domain, |
| 1606 | struct intel_iommu *iommu) |
| 1607 | { |
| 1608 | unsigned long flags; |
| 1609 | int count = INT_MAX; |
| 1610 | |
| 1611 | spin_lock_irqsave(&domain->iommu_lock, flags); |
| 1612 | if (test_and_clear_bit(iommu->seq_id, domain->iommu_bmp)) { |
| 1613 | count = --domain->iommu_count; |
| 1614 | domain_update_iommu_cap(domain); |
| 1615 | } |
| 1616 | spin_unlock_irqrestore(&domain->iommu_lock, flags); |
| 1617 | |
| 1618 | return count; |
| 1619 | } |
| 1620 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1621 | static struct iova_domain reserved_iova_list; |
Mark Gross | 8a443df | 2008-03-04 14:59:31 -0800 | [diff] [blame] | 1622 | static struct lock_class_key reserved_rbtree_key; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1623 | |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1624 | static int dmar_init_reserved_ranges(void) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1625 | { |
| 1626 | struct pci_dev *pdev = NULL; |
| 1627 | struct iova *iova; |
| 1628 | int i; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1629 | |
David Miller | f661197 | 2008-02-06 01:36:23 -0800 | [diff] [blame] | 1630 | init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1631 | |
Mark Gross | 8a443df | 2008-03-04 14:59:31 -0800 | [diff] [blame] | 1632 | lockdep_set_class(&reserved_iova_list.iova_rbtree_lock, |
| 1633 | &reserved_rbtree_key); |
| 1634 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1635 | /* IOAPIC ranges shouldn't be accessed by DMA */ |
| 1636 | iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START), |
| 1637 | IOVA_PFN(IOAPIC_RANGE_END)); |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1638 | if (!iova) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1639 | printk(KERN_ERR "Reserve IOAPIC range failed\n"); |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1640 | return -ENODEV; |
| 1641 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1642 | |
| 1643 | /* Reserve all PCI MMIO to avoid peer-to-peer access */ |
| 1644 | for_each_pci_dev(pdev) { |
| 1645 | struct resource *r; |
| 1646 | |
| 1647 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 1648 | r = &pdev->resource[i]; |
| 1649 | if (!r->flags || !(r->flags & IORESOURCE_MEM)) |
| 1650 | continue; |
David Woodhouse | 1a4a455 | 2009-06-28 16:00:42 +0100 | [diff] [blame] | 1651 | iova = reserve_iova(&reserved_iova_list, |
| 1652 | IOVA_PFN(r->start), |
| 1653 | IOVA_PFN(r->end)); |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1654 | if (!iova) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1655 | printk(KERN_ERR "Reserve iova failed\n"); |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1656 | return -ENODEV; |
| 1657 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1658 | } |
| 1659 | } |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 1660 | return 0; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | static void domain_reserve_special_ranges(struct dmar_domain *domain) |
| 1664 | { |
| 1665 | copy_reserved_iova(&reserved_iova_list, &domain->iovad); |
| 1666 | } |
| 1667 | |
| 1668 | static inline int guestwidth_to_adjustwidth(int gaw) |
| 1669 | { |
| 1670 | int agaw; |
| 1671 | int r = (gaw - 12) % 9; |
| 1672 | |
| 1673 | if (r == 0) |
| 1674 | agaw = gaw; |
| 1675 | else |
| 1676 | agaw = gaw + 9 - r; |
| 1677 | if (agaw > 64) |
| 1678 | agaw = 64; |
| 1679 | return agaw; |
| 1680 | } |
| 1681 | |
| 1682 | static int domain_init(struct dmar_domain *domain, int guest_width) |
| 1683 | { |
| 1684 | struct intel_iommu *iommu; |
| 1685 | int adjust_width, agaw; |
| 1686 | unsigned long sagaw; |
| 1687 | |
David Miller | f661197 | 2008-02-06 01:36:23 -0800 | [diff] [blame] | 1688 | init_iova_domain(&domain->iovad, DMA_32BIT_PFN); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1689 | domain_reserve_special_ranges(domain); |
| 1690 | |
| 1691 | /* calculate AGAW */ |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 1692 | iommu = domain_get_iommu(domain); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1693 | if (guest_width > cap_mgaw(iommu->cap)) |
| 1694 | guest_width = cap_mgaw(iommu->cap); |
| 1695 | domain->gaw = guest_width; |
| 1696 | adjust_width = guestwidth_to_adjustwidth(guest_width); |
| 1697 | agaw = width_to_agaw(adjust_width); |
| 1698 | sagaw = cap_sagaw(iommu->cap); |
| 1699 | if (!test_bit(agaw, &sagaw)) { |
| 1700 | /* hardware doesn't support it, choose a bigger one */ |
| 1701 | pr_debug("IOMMU: hardware doesn't support agaw %d\n", agaw); |
| 1702 | agaw = find_next_bit(&sagaw, 5, agaw); |
| 1703 | if (agaw >= 5) |
| 1704 | return -ENODEV; |
| 1705 | } |
| 1706 | domain->agaw = agaw; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1707 | |
Weidong Han | 8e604097 | 2008-12-08 15:49:06 +0800 | [diff] [blame] | 1708 | if (ecap_coherent(iommu->ecap)) |
| 1709 | domain->iommu_coherency = 1; |
| 1710 | else |
| 1711 | domain->iommu_coherency = 0; |
| 1712 | |
Sheng Yang | 58c610b | 2009-03-18 15:33:05 +0800 | [diff] [blame] | 1713 | if (ecap_sc_support(iommu->ecap)) |
| 1714 | domain->iommu_snooping = 1; |
| 1715 | else |
| 1716 | domain->iommu_snooping = 0; |
| 1717 | |
David Woodhouse | 214e39a | 2014-03-19 10:38:49 +0000 | [diff] [blame] | 1718 | if (intel_iommu_superpage) |
| 1719 | domain->iommu_superpage = fls(cap_super_page_val(iommu->cap)); |
| 1720 | else |
| 1721 | domain->iommu_superpage = 0; |
| 1722 | |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 1723 | domain->nid = iommu->node; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 1724 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1725 | /* always allocate the top pgd */ |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 1726 | domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1727 | if (!domain->pgd) |
| 1728 | return -ENOMEM; |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 1729 | __iommu_flush_cache(iommu, domain->pgd, PAGE_SIZE); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1730 | return 0; |
| 1731 | } |
| 1732 | |
| 1733 | static void domain_exit(struct dmar_domain *domain) |
| 1734 | { |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1735 | struct dmar_drhd_unit *drhd; |
| 1736 | struct intel_iommu *iommu; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1737 | struct page *freelist = NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1738 | |
| 1739 | /* Domain 0 is reserved, so dont process it */ |
| 1740 | if (!domain) |
| 1741 | return; |
| 1742 | |
Alex Williamson | 7b66835 | 2011-05-24 12:02:41 +0100 | [diff] [blame] | 1743 | /* Flush any lazy unmaps that may reference this domain */ |
| 1744 | if (!intel_iommu_strict) |
| 1745 | flush_unmaps_timeout(0); |
| 1746 | |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1747 | /* remove associated devices */ |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1748 | domain_remove_dev_info(domain); |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1749 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1750 | /* destroy iovas */ |
| 1751 | put_iova_domain(&domain->iovad); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1752 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1753 | freelist = domain_unmap(domain, 0, DOMAIN_MAX_PFN(domain->gaw)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1754 | |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 1755 | /* clear attached or cached domains */ |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 1756 | rcu_read_lock(); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1757 | for_each_active_iommu(iommu, drhd) |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1758 | iommu_detach_domain(domain, iommu); |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 1759 | rcu_read_unlock(); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 1760 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 1761 | dma_free_pagelist(freelist); |
| 1762 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1763 | free_domain_mem(domain); |
| 1764 | } |
| 1765 | |
David Woodhouse | 64ae892 | 2014-03-09 12:52:30 -0700 | [diff] [blame] | 1766 | static int domain_context_mapping_one(struct dmar_domain *domain, |
| 1767 | struct intel_iommu *iommu, |
| 1768 | u8 bus, u8 devfn, int translation) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1769 | { |
| 1770 | struct context_entry *context; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1771 | unsigned long flags; |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1772 | struct dma_pte *pgd; |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1773 | int id; |
| 1774 | int agaw; |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1775 | struct device_domain_info *info = NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1776 | |
| 1777 | pr_debug("Set context mapping for %02x:%02x.%d\n", |
| 1778 | bus, PCI_SLOT(devfn), PCI_FUNC(devfn)); |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1779 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1780 | BUG_ON(!domain->pgd); |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1781 | BUG_ON(translation != CONTEXT_TT_PASS_THROUGH && |
| 1782 | translation != CONTEXT_TT_MULTI_LEVEL); |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 1783 | |
David Woodhouse | 03ecc32 | 2015-02-13 14:35:21 +0000 | [diff] [blame^] | 1784 | spin_lock_irqsave(&iommu->lock, flags); |
| 1785 | context = iommu_context_addr(iommu, bus, devfn, 1); |
| 1786 | spin_unlock_irqrestore(&iommu->lock, flags); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1787 | if (!context) |
| 1788 | return -ENOMEM; |
| 1789 | spin_lock_irqsave(&iommu->lock, flags); |
Mark McLoughlin | c07e7d2 | 2008-11-21 16:54:46 +0000 | [diff] [blame] | 1790 | if (context_present(context)) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1791 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 1792 | return 0; |
| 1793 | } |
| 1794 | |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1795 | id = domain->id; |
| 1796 | pgd = domain->pgd; |
| 1797 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 1798 | if (domain_type_is_vm_or_si(domain)) { |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 1799 | if (domain_type_is_vm(domain)) { |
| 1800 | id = iommu_attach_vm_domain(domain, iommu); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1801 | if (id < 0) { |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1802 | spin_unlock_irqrestore(&iommu->lock, flags); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1803 | pr_err("IOMMU: no free domain ids\n"); |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1804 | return -EFAULT; |
| 1805 | } |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | /* Skip top levels of page tables for |
| 1809 | * iommu which has less agaw than default. |
Chris Wright | 1672af1 | 2009-12-02 12:06:34 -0800 | [diff] [blame] | 1810 | * Unnecessary for PT mode. |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1811 | */ |
Chris Wright | 1672af1 | 2009-12-02 12:06:34 -0800 | [diff] [blame] | 1812 | if (translation != CONTEXT_TT_PASS_THROUGH) { |
| 1813 | for (agaw = domain->agaw; agaw != iommu->agaw; agaw--) { |
| 1814 | pgd = phys_to_virt(dma_pte_addr(pgd)); |
| 1815 | if (!dma_pte_present(pgd)) { |
| 1816 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 1817 | return -ENOMEM; |
| 1818 | } |
Weidong Han | ea6606b | 2008-12-08 23:08:15 +0800 | [diff] [blame] | 1819 | } |
| 1820 | } |
| 1821 | } |
| 1822 | |
| 1823 | context_set_domain_id(context, id); |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1824 | |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1825 | if (translation != CONTEXT_TT_PASS_THROUGH) { |
David Woodhouse | 64ae892 | 2014-03-09 12:52:30 -0700 | [diff] [blame] | 1826 | info = iommu_support_dev_iotlb(domain, iommu, bus, devfn); |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1827 | translation = info ? CONTEXT_TT_DEV_IOTLB : |
| 1828 | CONTEXT_TT_MULTI_LEVEL; |
| 1829 | } |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1830 | /* |
| 1831 | * In pass through mode, AW must be programmed to indicate the largest |
| 1832 | * AGAW value supported by hardware. And ASR is ignored by hardware. |
| 1833 | */ |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1834 | if (unlikely(translation == CONTEXT_TT_PASS_THROUGH)) |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1835 | context_set_address_width(context, iommu->msagaw); |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1836 | else { |
| 1837 | context_set_address_root(context, virt_to_phys(pgd)); |
| 1838 | context_set_address_width(context, iommu->agaw); |
| 1839 | } |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1840 | |
| 1841 | context_set_translation_type(context, translation); |
Mark McLoughlin | c07e7d2 | 2008-11-21 16:54:46 +0000 | [diff] [blame] | 1842 | context_set_fault_enable(context); |
| 1843 | context_set_present(context); |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 1844 | domain_flush_cache(domain, context, sizeof(*context)); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1845 | |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1846 | /* |
| 1847 | * It's a non-present to present mapping. If hardware doesn't cache |
| 1848 | * non-present entry we only need to flush the write-buffer. If the |
| 1849 | * _does_ cache non-present entries, then it does so in the special |
| 1850 | * domain #0, which we have to flush: |
| 1851 | */ |
| 1852 | if (cap_caching_mode(iommu->cap)) { |
| 1853 | iommu->flush.flush_context(iommu, 0, |
| 1854 | (((u16)bus) << 8) | devfn, |
| 1855 | DMA_CCMD_MASK_NOBIT, |
| 1856 | DMA_CCMD_DEVICE_INVL); |
Jiang Liu | 18fd779 | 2014-07-11 14:19:26 +0800 | [diff] [blame] | 1857 | iommu->flush.flush_iotlb(iommu, id, 0, 0, DMA_TLB_DSI_FLUSH); |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1858 | } else { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1859 | iommu_flush_write_buffer(iommu); |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1860 | } |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 1861 | iommu_enable_dev_iotlb(info); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1862 | spin_unlock_irqrestore(&iommu->lock, flags); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 1863 | |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 1864 | domain_attach_iommu(domain, iommu); |
| 1865 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1866 | return 0; |
| 1867 | } |
| 1868 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1869 | struct domain_context_mapping_data { |
| 1870 | struct dmar_domain *domain; |
| 1871 | struct intel_iommu *iommu; |
| 1872 | int translation; |
| 1873 | }; |
| 1874 | |
| 1875 | static int domain_context_mapping_cb(struct pci_dev *pdev, |
| 1876 | u16 alias, void *opaque) |
| 1877 | { |
| 1878 | struct domain_context_mapping_data *data = opaque; |
| 1879 | |
| 1880 | return domain_context_mapping_one(data->domain, data->iommu, |
| 1881 | PCI_BUS_NUM(alias), alias & 0xff, |
| 1882 | data->translation); |
| 1883 | } |
| 1884 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1885 | static int |
David Woodhouse | e1f167f | 2014-03-09 15:24:46 -0700 | [diff] [blame] | 1886 | domain_context_mapping(struct dmar_domain *domain, struct device *dev, |
| 1887 | int translation) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1888 | { |
David Woodhouse | 64ae892 | 2014-03-09 12:52:30 -0700 | [diff] [blame] | 1889 | struct intel_iommu *iommu; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 1890 | u8 bus, devfn; |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1891 | struct domain_context_mapping_data data; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1892 | |
David Woodhouse | e1f167f | 2014-03-09 15:24:46 -0700 | [diff] [blame] | 1893 | iommu = device_to_iommu(dev, &bus, &devfn); |
David Woodhouse | 64ae892 | 2014-03-09 12:52:30 -0700 | [diff] [blame] | 1894 | if (!iommu) |
| 1895 | return -ENODEV; |
| 1896 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1897 | if (!dev_is_pci(dev)) |
| 1898 | return domain_context_mapping_one(domain, iommu, bus, devfn, |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1899 | translation); |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1900 | |
| 1901 | data.domain = domain; |
| 1902 | data.iommu = iommu; |
| 1903 | data.translation = translation; |
| 1904 | |
| 1905 | return pci_for_each_dma_alias(to_pci_dev(dev), |
| 1906 | &domain_context_mapping_cb, &data); |
| 1907 | } |
| 1908 | |
| 1909 | static int domain_context_mapped_cb(struct pci_dev *pdev, |
| 1910 | u16 alias, void *opaque) |
| 1911 | { |
| 1912 | struct intel_iommu *iommu = opaque; |
| 1913 | |
| 1914 | return !device_context_mapped(iommu, PCI_BUS_NUM(alias), alias & 0xff); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1915 | } |
| 1916 | |
David Woodhouse | e1f167f | 2014-03-09 15:24:46 -0700 | [diff] [blame] | 1917 | static int domain_context_mapped(struct device *dev) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1918 | { |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 1919 | struct intel_iommu *iommu; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 1920 | u8 bus, devfn; |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 1921 | |
David Woodhouse | e1f167f | 2014-03-09 15:24:46 -0700 | [diff] [blame] | 1922 | iommu = device_to_iommu(dev, &bus, &devfn); |
Weidong Han | 5331fe6 | 2008-12-08 23:00:00 +0800 | [diff] [blame] | 1923 | if (!iommu) |
| 1924 | return -ENODEV; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1925 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1926 | if (!dev_is_pci(dev)) |
| 1927 | return device_context_mapped(iommu, bus, devfn); |
David Woodhouse | e1f167f | 2014-03-09 15:24:46 -0700 | [diff] [blame] | 1928 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 1929 | return !pci_for_each_dma_alias(to_pci_dev(dev), |
| 1930 | domain_context_mapped_cb, iommu); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
Fenghua Yu | f532959 | 2009-08-04 15:09:37 -0700 | [diff] [blame] | 1933 | /* Returns a number of VTD pages, but aligned to MM page size */ |
| 1934 | static inline unsigned long aligned_nrpages(unsigned long host_addr, |
| 1935 | size_t size) |
| 1936 | { |
| 1937 | host_addr &= ~PAGE_MASK; |
| 1938 | return PAGE_ALIGN(host_addr + size) >> VTD_PAGE_SHIFT; |
| 1939 | } |
| 1940 | |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 1941 | /* Return largest possible superpage level for a given mapping */ |
| 1942 | static inline int hardware_largepage_caps(struct dmar_domain *domain, |
| 1943 | unsigned long iov_pfn, |
| 1944 | unsigned long phy_pfn, |
| 1945 | unsigned long pages) |
| 1946 | { |
| 1947 | int support, level = 1; |
| 1948 | unsigned long pfnmerge; |
| 1949 | |
| 1950 | support = domain->iommu_superpage; |
| 1951 | |
| 1952 | /* To use a large page, the virtual *and* physical addresses |
| 1953 | must be aligned to 2MiB/1GiB/etc. Lower bits set in either |
| 1954 | of them will mean we have to use smaller pages. So just |
| 1955 | merge them and check both at once. */ |
| 1956 | pfnmerge = iov_pfn | phy_pfn; |
| 1957 | |
| 1958 | while (support && !(pfnmerge & ~VTD_STRIDE_MASK)) { |
| 1959 | pages >>= VTD_STRIDE_SHIFT; |
| 1960 | if (!pages) |
| 1961 | break; |
| 1962 | pfnmerge >>= VTD_STRIDE_SHIFT; |
| 1963 | level++; |
| 1964 | support--; |
| 1965 | } |
| 1966 | return level; |
| 1967 | } |
| 1968 | |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 1969 | static int __domain_mapping(struct dmar_domain *domain, unsigned long iov_pfn, |
| 1970 | struct scatterlist *sg, unsigned long phys_pfn, |
| 1971 | unsigned long nr_pages, int prot) |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 1972 | { |
| 1973 | struct dma_pte *first_pte = NULL, *pte = NULL; |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 1974 | phys_addr_t uninitialized_var(pteval); |
Jiang Liu | cc4f14a | 2014-11-26 09:42:10 +0800 | [diff] [blame] | 1975 | unsigned long sg_res = 0; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 1976 | unsigned int largepage_lvl = 0; |
| 1977 | unsigned long lvl_pages = 0; |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 1978 | |
Jiang Liu | 162d1b1 | 2014-07-11 14:19:35 +0800 | [diff] [blame] | 1979 | BUG_ON(!domain_pfn_supported(domain, iov_pfn + nr_pages - 1)); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 1980 | |
| 1981 | if ((prot & (DMA_PTE_READ|DMA_PTE_WRITE)) == 0) |
| 1982 | return -EINVAL; |
| 1983 | |
| 1984 | prot &= DMA_PTE_READ | DMA_PTE_WRITE | DMA_PTE_SNP; |
| 1985 | |
Jiang Liu | cc4f14a | 2014-11-26 09:42:10 +0800 | [diff] [blame] | 1986 | if (!sg) { |
| 1987 | sg_res = nr_pages; |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 1988 | pteval = ((phys_addr_t)phys_pfn << VTD_PAGE_SHIFT) | prot; |
| 1989 | } |
| 1990 | |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 1991 | while (nr_pages > 0) { |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 1992 | uint64_t tmp; |
| 1993 | |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 1994 | if (!sg_res) { |
Fenghua Yu | f532959 | 2009-08-04 15:09:37 -0700 | [diff] [blame] | 1995 | sg_res = aligned_nrpages(sg->offset, sg->length); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 1996 | sg->dma_address = ((dma_addr_t)iov_pfn << VTD_PAGE_SHIFT) + sg->offset; |
| 1997 | sg->dma_length = sg->length; |
| 1998 | pteval = page_to_phys(sg_page(sg)) | prot; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 1999 | phys_pfn = pteval >> VTD_PAGE_SHIFT; |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2000 | } |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2001 | |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2002 | if (!pte) { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2003 | largepage_lvl = hardware_largepage_caps(domain, iov_pfn, phys_pfn, sg_res); |
| 2004 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 2005 | first_pte = pte = pfn_to_dma_pte(domain, iov_pfn, &largepage_lvl); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2006 | if (!pte) |
| 2007 | return -ENOMEM; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2008 | /* It is large page*/ |
Woodhouse, David | 6491d4d | 2012-12-19 13:25:35 +0000 | [diff] [blame] | 2009 | if (largepage_lvl > 1) { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2010 | pteval |= DMA_PTE_LARGE_PAGE; |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 2011 | lvl_pages = lvl_to_nr_pages(largepage_lvl); |
| 2012 | /* |
| 2013 | * Ensure that old small page tables are |
| 2014 | * removed to make room for superpage, |
| 2015 | * if they exist. |
| 2016 | */ |
Woodhouse, David | 6491d4d | 2012-12-19 13:25:35 +0000 | [diff] [blame] | 2017 | dma_pte_free_pagetable(domain, iov_pfn, |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 2018 | iov_pfn + lvl_pages - 1); |
Woodhouse, David | 6491d4d | 2012-12-19 13:25:35 +0000 | [diff] [blame] | 2019 | } else { |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2020 | pteval &= ~(uint64_t)DMA_PTE_LARGE_PAGE; |
Woodhouse, David | 6491d4d | 2012-12-19 13:25:35 +0000 | [diff] [blame] | 2021 | } |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2022 | |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2023 | } |
| 2024 | /* We don't need lock here, nobody else |
| 2025 | * touches the iova range |
| 2026 | */ |
David Woodhouse | 7766a3f | 2009-07-01 20:27:03 +0100 | [diff] [blame] | 2027 | tmp = cmpxchg64_local(&pte->val, 0ULL, pteval); |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 2028 | if (tmp) { |
David Woodhouse | 1bf20f0 | 2009-06-29 22:06:43 +0100 | [diff] [blame] | 2029 | static int dumps = 5; |
David Woodhouse | c85994e | 2009-07-01 19:21:24 +0100 | [diff] [blame] | 2030 | printk(KERN_CRIT "ERROR: DMA PTE for vPFN 0x%lx already set (to %llx not %llx)\n", |
| 2031 | iov_pfn, tmp, (unsigned long long)pteval); |
David Woodhouse | 1bf20f0 | 2009-06-29 22:06:43 +0100 | [diff] [blame] | 2032 | if (dumps) { |
| 2033 | dumps--; |
| 2034 | debug_dma_dump_mappings(NULL); |
| 2035 | } |
| 2036 | WARN_ON(1); |
| 2037 | } |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2038 | |
| 2039 | lvl_pages = lvl_to_nr_pages(largepage_lvl); |
| 2040 | |
| 2041 | BUG_ON(nr_pages < lvl_pages); |
| 2042 | BUG_ON(sg_res < lvl_pages); |
| 2043 | |
| 2044 | nr_pages -= lvl_pages; |
| 2045 | iov_pfn += lvl_pages; |
| 2046 | phys_pfn += lvl_pages; |
| 2047 | pteval += lvl_pages * VTD_PAGE_SIZE; |
| 2048 | sg_res -= lvl_pages; |
| 2049 | |
| 2050 | /* If the next PTE would be the first in a new page, then we |
| 2051 | need to flush the cache on the entries we've just written. |
| 2052 | And then we'll need to recalculate 'pte', so clear it and |
| 2053 | let it get set again in the if (!pte) block above. |
| 2054 | |
| 2055 | If we're done (!nr_pages) we need to flush the cache too. |
| 2056 | |
| 2057 | Also if we've been setting superpages, we may need to |
| 2058 | recalculate 'pte' and switch back to smaller pages for the |
| 2059 | end of the mapping, if the trailing size is not enough to |
| 2060 | use another superpage (i.e. sg_res < lvl_pages). */ |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2061 | pte++; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2062 | if (!nr_pages || first_pte_in_page(pte) || |
| 2063 | (largepage_lvl > 1 && sg_res < lvl_pages)) { |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2064 | domain_flush_cache(domain, first_pte, |
| 2065 | (void *)pte - (void *)first_pte); |
| 2066 | pte = NULL; |
| 2067 | } |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 2068 | |
| 2069 | if (!sg_res && nr_pages) |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 2070 | sg = sg_next(sg); |
| 2071 | } |
| 2072 | return 0; |
| 2073 | } |
| 2074 | |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 2075 | static inline int domain_sg_mapping(struct dmar_domain *domain, unsigned long iov_pfn, |
| 2076 | struct scatterlist *sg, unsigned long nr_pages, |
| 2077 | int prot) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2078 | { |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 2079 | return __domain_mapping(domain, iov_pfn, sg, 0, nr_pages, prot); |
| 2080 | } |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 2081 | |
David Woodhouse | 9051aa0 | 2009-06-29 12:30:54 +0100 | [diff] [blame] | 2082 | static inline int domain_pfn_mapping(struct dmar_domain *domain, unsigned long iov_pfn, |
| 2083 | unsigned long phys_pfn, unsigned long nr_pages, |
| 2084 | int prot) |
| 2085 | { |
| 2086 | return __domain_mapping(domain, iov_pfn, NULL, phys_pfn, nr_pages, prot); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2087 | } |
| 2088 | |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 2089 | static void iommu_detach_dev(struct intel_iommu *iommu, u8 bus, u8 devfn) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2090 | { |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 2091 | if (!iommu) |
| 2092 | return; |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 2093 | |
| 2094 | clear_context_table(iommu, bus, devfn); |
| 2095 | iommu->flush.flush_context(iommu, 0, 0, 0, |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 2096 | DMA_CCMD_GLOBAL_INVL); |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 2097 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2098 | } |
| 2099 | |
David Woodhouse | 109b9b0 | 2012-05-25 17:43:02 +0100 | [diff] [blame] | 2100 | static inline void unlink_domain_info(struct device_domain_info *info) |
| 2101 | { |
| 2102 | assert_spin_locked(&device_domain_lock); |
| 2103 | list_del(&info->link); |
| 2104 | list_del(&info->global); |
| 2105 | if (info->dev) |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 2106 | info->dev->archdata.iommu = NULL; |
David Woodhouse | 109b9b0 | 2012-05-25 17:43:02 +0100 | [diff] [blame] | 2107 | } |
| 2108 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2109 | static void domain_remove_dev_info(struct dmar_domain *domain) |
| 2110 | { |
Yijing Wang | 3a74ca0 | 2014-05-20 20:37:47 +0800 | [diff] [blame] | 2111 | struct device_domain_info *info, *tmp; |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 2112 | unsigned long flags; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2113 | |
| 2114 | spin_lock_irqsave(&device_domain_lock, flags); |
Yijing Wang | 3a74ca0 | 2014-05-20 20:37:47 +0800 | [diff] [blame] | 2115 | list_for_each_entry_safe(info, tmp, &domain->devices, link) { |
David Woodhouse | 109b9b0 | 2012-05-25 17:43:02 +0100 | [diff] [blame] | 2116 | unlink_domain_info(info); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2117 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 2118 | |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 2119 | iommu_disable_dev_iotlb(info); |
David Woodhouse | 7c7faa1 | 2014-03-09 13:33:06 -0700 | [diff] [blame] | 2120 | iommu_detach_dev(info->iommu, info->bus, info->devfn); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2121 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 2122 | if (domain_type_is_vm(domain)) { |
David Woodhouse | 7c7faa1 | 2014-03-09 13:33:06 -0700 | [diff] [blame] | 2123 | iommu_detach_dependent_devices(info->iommu, info->dev); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 2124 | domain_detach_iommu(domain, info->iommu); |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 2125 | } |
| 2126 | |
| 2127 | free_devinfo_mem(info); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2128 | spin_lock_irqsave(&device_domain_lock, flags); |
| 2129 | } |
| 2130 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 2131 | } |
| 2132 | |
| 2133 | /* |
| 2134 | * find_domain |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 2135 | * Note: we use struct device->archdata.iommu stores the info |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2136 | */ |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 2137 | static struct dmar_domain *find_domain(struct device *dev) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2138 | { |
| 2139 | struct device_domain_info *info; |
| 2140 | |
| 2141 | /* No lock here, assumes no domain exit in normal case */ |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 2142 | info = dev->archdata.iommu; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2143 | if (info) |
| 2144 | return info->domain; |
| 2145 | return NULL; |
| 2146 | } |
| 2147 | |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2148 | static inline struct device_domain_info * |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2149 | dmar_search_domain_by_dev_info(int segment, int bus, int devfn) |
| 2150 | { |
| 2151 | struct device_domain_info *info; |
| 2152 | |
| 2153 | list_for_each_entry(info, &device_domain_list, global) |
David Woodhouse | 41e80dca | 2014-03-09 13:55:54 -0700 | [diff] [blame] | 2154 | if (info->iommu->segment == segment && info->bus == bus && |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2155 | info->devfn == devfn) |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2156 | return info; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2157 | |
| 2158 | return NULL; |
| 2159 | } |
| 2160 | |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2161 | static struct dmar_domain *dmar_insert_dev_info(struct intel_iommu *iommu, |
David Woodhouse | 41e80dca | 2014-03-09 13:55:54 -0700 | [diff] [blame] | 2162 | int bus, int devfn, |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2163 | struct device *dev, |
| 2164 | struct dmar_domain *domain) |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2165 | { |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2166 | struct dmar_domain *found = NULL; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2167 | struct device_domain_info *info; |
| 2168 | unsigned long flags; |
| 2169 | |
| 2170 | info = alloc_devinfo_mem(); |
| 2171 | if (!info) |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2172 | return NULL; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2173 | |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2174 | info->bus = bus; |
| 2175 | info->devfn = devfn; |
| 2176 | info->dev = dev; |
| 2177 | info->domain = domain; |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2178 | info->iommu = iommu; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2179 | |
| 2180 | spin_lock_irqsave(&device_domain_lock, flags); |
| 2181 | if (dev) |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 2182 | found = find_domain(dev); |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2183 | else { |
| 2184 | struct device_domain_info *info2; |
David Woodhouse | 41e80dca | 2014-03-09 13:55:54 -0700 | [diff] [blame] | 2185 | info2 = dmar_search_domain_by_dev_info(iommu->segment, bus, devfn); |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2186 | if (info2) |
| 2187 | found = info2->domain; |
| 2188 | } |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2189 | if (found) { |
| 2190 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 2191 | free_devinfo_mem(info); |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2192 | /* Caller must free the original domain */ |
| 2193 | return found; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2194 | } |
| 2195 | |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2196 | list_add(&info->link, &domain->devices); |
| 2197 | list_add(&info->global, &device_domain_list); |
| 2198 | if (dev) |
| 2199 | dev->archdata.iommu = info; |
| 2200 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 2201 | |
| 2202 | return domain; |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2203 | } |
| 2204 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2205 | static int get_last_alias(struct pci_dev *pdev, u16 alias, void *opaque) |
| 2206 | { |
| 2207 | *(u16 *)opaque = alias; |
| 2208 | return 0; |
| 2209 | } |
| 2210 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2211 | /* domain is initialized */ |
David Woodhouse | 146922e | 2014-03-09 15:44:17 -0700 | [diff] [blame] | 2212 | static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2213 | { |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2214 | struct dmar_domain *domain, *tmp; |
| 2215 | struct intel_iommu *iommu; |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2216 | struct device_domain_info *info; |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2217 | u16 dma_alias; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2218 | unsigned long flags; |
Yijing Wang | aa4d066 | 2014-05-26 20:14:06 +0800 | [diff] [blame] | 2219 | u8 bus, devfn; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2220 | |
David Woodhouse | 146922e | 2014-03-09 15:44:17 -0700 | [diff] [blame] | 2221 | domain = find_domain(dev); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2222 | if (domain) |
| 2223 | return domain; |
| 2224 | |
David Woodhouse | 146922e | 2014-03-09 15:44:17 -0700 | [diff] [blame] | 2225 | iommu = device_to_iommu(dev, &bus, &devfn); |
| 2226 | if (!iommu) |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2227 | return NULL; |
| 2228 | |
| 2229 | if (dev_is_pci(dev)) { |
| 2230 | struct pci_dev *pdev = to_pci_dev(dev); |
| 2231 | |
| 2232 | pci_for_each_dma_alias(pdev, get_last_alias, &dma_alias); |
| 2233 | |
| 2234 | spin_lock_irqsave(&device_domain_lock, flags); |
| 2235 | info = dmar_search_domain_by_dev_info(pci_domain_nr(pdev->bus), |
| 2236 | PCI_BUS_NUM(dma_alias), |
| 2237 | dma_alias & 0xff); |
| 2238 | if (info) { |
| 2239 | iommu = info->iommu; |
| 2240 | domain = info->domain; |
| 2241 | } |
| 2242 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 2243 | |
| 2244 | /* DMA alias already has a domain, uses it */ |
| 2245 | if (info) |
| 2246 | goto found_domain; |
| 2247 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2248 | |
David Woodhouse | 146922e | 2014-03-09 15:44:17 -0700 | [diff] [blame] | 2249 | /* Allocate and initialize new domain for the device */ |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 2250 | domain = alloc_domain(0); |
Jiang Liu | 745f258 | 2014-02-19 14:07:26 +0800 | [diff] [blame] | 2251 | if (!domain) |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2252 | return NULL; |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 2253 | domain->id = iommu_attach_domain(domain, iommu); |
| 2254 | if (domain->id < 0) { |
Alex Williamson | 2fe9723d | 2011-03-04 14:52:30 -0700 | [diff] [blame] | 2255 | free_domain_mem(domain); |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2256 | return NULL; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2257 | } |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 2258 | domain_attach_iommu(domain, iommu); |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2259 | if (domain_init(domain, gaw)) { |
| 2260 | domain_exit(domain); |
| 2261 | return NULL; |
| 2262 | } |
| 2263 | |
| 2264 | /* register PCI DMA alias device */ |
| 2265 | if (dev_is_pci(dev)) { |
| 2266 | tmp = dmar_insert_dev_info(iommu, PCI_BUS_NUM(dma_alias), |
| 2267 | dma_alias & 0xff, NULL, domain); |
| 2268 | |
| 2269 | if (!tmp || tmp != domain) { |
| 2270 | domain_exit(domain); |
| 2271 | domain = tmp; |
| 2272 | } |
| 2273 | |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2274 | if (!domain) |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2275 | return NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2276 | } |
| 2277 | |
| 2278 | found_domain: |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 2279 | tmp = dmar_insert_dev_info(iommu, bus, devfn, dev, domain); |
| 2280 | |
| 2281 | if (!tmp || tmp != domain) { |
| 2282 | domain_exit(domain); |
| 2283 | domain = tmp; |
| 2284 | } |
David Woodhouse | b718cd3 | 2014-03-09 13:11:33 -0700 | [diff] [blame] | 2285 | |
| 2286 | return domain; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2289 | static int iommu_identity_mapping; |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2290 | #define IDENTMAP_ALL 1 |
| 2291 | #define IDENTMAP_GFX 2 |
| 2292 | #define IDENTMAP_AZALIA 4 |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2293 | |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2294 | static int iommu_domain_identity_map(struct dmar_domain *domain, |
| 2295 | unsigned long long start, |
| 2296 | unsigned long long end) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2297 | { |
David Woodhouse | c5395d5 | 2009-06-28 16:35:56 +0100 | [diff] [blame] | 2298 | unsigned long first_vpfn = start >> VTD_PAGE_SHIFT; |
| 2299 | unsigned long last_vpfn = end >> VTD_PAGE_SHIFT; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2300 | |
David Woodhouse | c5395d5 | 2009-06-28 16:35:56 +0100 | [diff] [blame] | 2301 | if (!reserve_iova(&domain->iovad, dma_to_mm_pfn(first_vpfn), |
| 2302 | dma_to_mm_pfn(last_vpfn))) { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2303 | printk(KERN_ERR "IOMMU: reserve iova failed\n"); |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2304 | return -ENOMEM; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2305 | } |
| 2306 | |
David Woodhouse | c5395d5 | 2009-06-28 16:35:56 +0100 | [diff] [blame] | 2307 | pr_debug("Mapping reserved region %llx-%llx for domain %d\n", |
| 2308 | start, end, domain->id); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2309 | /* |
| 2310 | * RMRR range might have overlap with physical memory range, |
| 2311 | * clear it first |
| 2312 | */ |
David Woodhouse | c5395d5 | 2009-06-28 16:35:56 +0100 | [diff] [blame] | 2313 | dma_pte_clear_range(domain, first_vpfn, last_vpfn); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2314 | |
David Woodhouse | c5395d5 | 2009-06-28 16:35:56 +0100 | [diff] [blame] | 2315 | return domain_pfn_mapping(domain, first_vpfn, first_vpfn, |
| 2316 | last_vpfn - first_vpfn + 1, |
David Woodhouse | 61df744 | 2009-06-28 11:55:58 +0100 | [diff] [blame] | 2317 | DMA_PTE_READ|DMA_PTE_WRITE); |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2318 | } |
| 2319 | |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2320 | static int iommu_prepare_identity_map(struct device *dev, |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2321 | unsigned long long start, |
| 2322 | unsigned long long end) |
| 2323 | { |
| 2324 | struct dmar_domain *domain; |
| 2325 | int ret; |
| 2326 | |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2327 | domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH); |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2328 | if (!domain) |
| 2329 | return -ENOMEM; |
| 2330 | |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2331 | /* For _hardware_ passthrough, don't bother. But for software |
| 2332 | passthrough, we do it anyway -- it may indicate a memory |
| 2333 | range which is reserved in E820, so which didn't get set |
| 2334 | up to start with in si_domain */ |
| 2335 | if (domain == si_domain && hw_pass_through) { |
| 2336 | printk("Ignoring identity map for HW passthrough device %s [0x%Lx - 0x%Lx]\n", |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2337 | dev_name(dev), start, end); |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2338 | return 0; |
| 2339 | } |
| 2340 | |
| 2341 | printk(KERN_INFO |
| 2342 | "IOMMU: Setting identity map for device %s [0x%Lx - 0x%Lx]\n", |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2343 | dev_name(dev), start, end); |
David Woodhouse | 2ff729f | 2009-08-26 14:25:41 +0100 | [diff] [blame] | 2344 | |
David Woodhouse | 5595b52 | 2009-12-02 09:21:55 +0000 | [diff] [blame] | 2345 | if (end < start) { |
| 2346 | WARN(1, "Your BIOS is broken; RMRR ends before it starts!\n" |
| 2347 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 2348 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 2349 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 2350 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
| 2351 | ret = -EIO; |
| 2352 | goto error; |
| 2353 | } |
| 2354 | |
David Woodhouse | 2ff729f | 2009-08-26 14:25:41 +0100 | [diff] [blame] | 2355 | if (end >> agaw_to_width(domain->agaw)) { |
| 2356 | WARN(1, "Your BIOS is broken; RMRR exceeds permitted address width (%d bits)\n" |
| 2357 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 2358 | agaw_to_width(domain->agaw), |
| 2359 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 2360 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 2361 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
| 2362 | ret = -EIO; |
| 2363 | goto error; |
| 2364 | } |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2365 | |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2366 | ret = iommu_domain_identity_map(domain, start, end); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2367 | if (ret) |
| 2368 | goto error; |
| 2369 | |
| 2370 | /* context entry init */ |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2371 | ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL); |
David Woodhouse | b213203 | 2009-06-26 18:50:28 +0100 | [diff] [blame] | 2372 | if (ret) |
| 2373 | goto error; |
| 2374 | |
| 2375 | return 0; |
| 2376 | |
| 2377 | error: |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2378 | domain_exit(domain); |
| 2379 | return ret; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2380 | } |
| 2381 | |
| 2382 | static inline int iommu_prepare_rmrr_dev(struct dmar_rmrr_unit *rmrr, |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2383 | struct device *dev) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2384 | { |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2385 | if (dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2386 | return 0; |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2387 | return iommu_prepare_identity_map(dev, rmrr->base_address, |
| 2388 | rmrr->end_address); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2389 | } |
| 2390 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 2391 | #ifdef CONFIG_INTEL_IOMMU_FLOPPY_WA |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2392 | static inline void iommu_prepare_isa(void) |
| 2393 | { |
| 2394 | struct pci_dev *pdev; |
| 2395 | int ret; |
| 2396 | |
| 2397 | pdev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL); |
| 2398 | if (!pdev) |
| 2399 | return; |
| 2400 | |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2401 | printk(KERN_INFO "IOMMU: Prepare 0-16MiB unity mapping for LPC\n"); |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2402 | ret = iommu_prepare_identity_map(&pdev->dev, 0, 16*1024*1024 - 1); |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2403 | |
| 2404 | if (ret) |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2405 | printk(KERN_ERR "IOMMU: Failed to create 0-16MiB identity map; " |
| 2406 | "floppy might not work\n"); |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2407 | |
Yijing Wang | 9b27e82 | 2014-05-20 20:37:52 +0800 | [diff] [blame] | 2408 | pci_dev_put(pdev); |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2409 | } |
| 2410 | #else |
| 2411 | static inline void iommu_prepare_isa(void) |
| 2412 | { |
| 2413 | return; |
| 2414 | } |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 2415 | #endif /* !CONFIG_INTEL_IOMMU_FLPY_WA */ |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2416 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2417 | static int md_domain_init(struct dmar_domain *domain, int guest_width); |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2418 | |
Matt Kraai | 071e137 | 2009-08-23 22:30:22 -0700 | [diff] [blame] | 2419 | static int __init si_domain_init(int hw) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2420 | { |
| 2421 | struct dmar_drhd_unit *drhd; |
| 2422 | struct intel_iommu *iommu; |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2423 | int nid, ret = 0; |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 2424 | bool first = true; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2425 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 2426 | si_domain = alloc_domain(DOMAIN_FLAG_STATIC_IDENTITY); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2427 | if (!si_domain) |
| 2428 | return -EFAULT; |
| 2429 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2430 | for_each_active_iommu(iommu, drhd) { |
| 2431 | ret = iommu_attach_domain(si_domain, iommu); |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 2432 | if (ret < 0) { |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2433 | domain_exit(si_domain); |
| 2434 | return -EFAULT; |
Jiang Liu | 44bde61 | 2014-07-11 14:19:29 +0800 | [diff] [blame] | 2435 | } else if (first) { |
| 2436 | si_domain->id = ret; |
| 2437 | first = false; |
| 2438 | } else if (si_domain->id != ret) { |
| 2439 | domain_exit(si_domain); |
| 2440 | return -EFAULT; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2441 | } |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 2442 | domain_attach_iommu(si_domain, iommu); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2443 | } |
| 2444 | |
| 2445 | if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) { |
| 2446 | domain_exit(si_domain); |
| 2447 | return -EFAULT; |
| 2448 | } |
| 2449 | |
Jiang Liu | 9544c00 | 2014-01-06 14:18:13 +0800 | [diff] [blame] | 2450 | pr_debug("IOMMU: identity mapping domain is domain %d\n", |
| 2451 | si_domain->id); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2452 | |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2453 | if (hw) |
| 2454 | return 0; |
| 2455 | |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2456 | for_each_online_node(nid) { |
Tejun Heo | d4bbf7e | 2011-11-28 09:46:22 -0800 | [diff] [blame] | 2457 | unsigned long start_pfn, end_pfn; |
| 2458 | int i; |
| 2459 | |
| 2460 | for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) { |
| 2461 | ret = iommu_domain_identity_map(si_domain, |
| 2462 | PFN_PHYS(start_pfn), PFN_PHYS(end_pfn)); |
| 2463 | if (ret) |
| 2464 | return ret; |
| 2465 | } |
David Woodhouse | c7ab48d | 2009-06-26 19:10:36 +0100 | [diff] [blame] | 2466 | } |
| 2467 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2468 | return 0; |
| 2469 | } |
| 2470 | |
David Woodhouse | 9b22662 | 2014-03-09 14:03:28 -0700 | [diff] [blame] | 2471 | static int identity_mapping(struct device *dev) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2472 | { |
| 2473 | struct device_domain_info *info; |
| 2474 | |
| 2475 | if (likely(!iommu_identity_mapping)) |
| 2476 | return 0; |
| 2477 | |
David Woodhouse | 9b22662 | 2014-03-09 14:03:28 -0700 | [diff] [blame] | 2478 | info = dev->archdata.iommu; |
Mike Travis | cb452a4 | 2011-05-28 13:15:03 -0500 | [diff] [blame] | 2479 | if (info && info != DUMMY_DEVICE_DOMAIN_INFO) |
| 2480 | return (info->domain == si_domain); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2481 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2482 | return 0; |
| 2483 | } |
| 2484 | |
| 2485 | static int domain_add_dev_info(struct dmar_domain *domain, |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 2486 | struct device *dev, int translation) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2487 | { |
David Woodhouse | 0ac7266 | 2014-03-09 13:19:22 -0700 | [diff] [blame] | 2488 | struct dmar_domain *ndomain; |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2489 | struct intel_iommu *iommu; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 2490 | u8 bus, devfn; |
David Woodhouse | 5fe60f4 | 2009-08-09 10:53:41 +0100 | [diff] [blame] | 2491 | int ret; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2492 | |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 2493 | iommu = device_to_iommu(dev, &bus, &devfn); |
David Woodhouse | 5a8f40e | 2014-03-09 13:31:18 -0700 | [diff] [blame] | 2494 | if (!iommu) |
| 2495 | return -ENODEV; |
| 2496 | |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 2497 | ndomain = dmar_insert_dev_info(iommu, bus, devfn, dev, domain); |
David Woodhouse | 0ac7266 | 2014-03-09 13:19:22 -0700 | [diff] [blame] | 2498 | if (ndomain != domain) |
| 2499 | return -EBUSY; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2500 | |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 2501 | ret = domain_context_mapping(domain, dev, translation); |
David Woodhouse | e2ad23d | 2012-05-25 17:42:54 +0100 | [diff] [blame] | 2502 | if (ret) { |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 2503 | domain_remove_one_dev_info(domain, dev); |
David Woodhouse | e2ad23d | 2012-05-25 17:42:54 +0100 | [diff] [blame] | 2504 | return ret; |
| 2505 | } |
| 2506 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2507 | return 0; |
| 2508 | } |
| 2509 | |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2510 | static bool device_has_rmrr(struct device *dev) |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2511 | { |
| 2512 | struct dmar_rmrr_unit *rmrr; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 2513 | struct device *tmp; |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2514 | int i; |
| 2515 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 2516 | rcu_read_lock(); |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2517 | for_each_rmrr_units(rmrr) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 2518 | /* |
| 2519 | * Return TRUE if this RMRR contains the device that |
| 2520 | * is passed in. |
| 2521 | */ |
| 2522 | for_each_active_dev_scope(rmrr->devices, |
| 2523 | rmrr->devices_cnt, i, tmp) |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2524 | if (tmp == dev) { |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 2525 | rcu_read_unlock(); |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2526 | return true; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 2527 | } |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2528 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 2529 | rcu_read_unlock(); |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2530 | return false; |
| 2531 | } |
| 2532 | |
Alex Williamson | c875d2c | 2014-07-03 09:57:02 -0600 | [diff] [blame] | 2533 | /* |
| 2534 | * There are a couple cases where we need to restrict the functionality of |
| 2535 | * devices associated with RMRRs. The first is when evaluating a device for |
| 2536 | * identity mapping because problems exist when devices are moved in and out |
| 2537 | * of domains and their respective RMRR information is lost. This means that |
| 2538 | * a device with associated RMRRs will never be in a "passthrough" domain. |
| 2539 | * The second is use of the device through the IOMMU API. This interface |
| 2540 | * expects to have full control of the IOVA space for the device. We cannot |
| 2541 | * satisfy both the requirement that RMRR access is maintained and have an |
| 2542 | * unencumbered IOVA space. We also have no ability to quiesce the device's |
| 2543 | * use of the RMRR space or even inform the IOMMU API user of the restriction. |
| 2544 | * We therefore prevent devices associated with an RMRR from participating in |
| 2545 | * the IOMMU API, which eliminates them from device assignment. |
| 2546 | * |
| 2547 | * In both cases we assume that PCI USB devices with RMRRs have them largely |
| 2548 | * for historical reasons and that the RMRR space is not actively used post |
| 2549 | * boot. This exclusion may change if vendors begin to abuse it. |
David Woodhouse | 18436af | 2015-03-25 15:05:47 +0000 | [diff] [blame] | 2550 | * |
| 2551 | * The same exception is made for graphics devices, with the requirement that |
| 2552 | * any use of the RMRR regions will be torn down before assigning the device |
| 2553 | * to a guest. |
Alex Williamson | c875d2c | 2014-07-03 09:57:02 -0600 | [diff] [blame] | 2554 | */ |
| 2555 | static bool device_is_rmrr_locked(struct device *dev) |
| 2556 | { |
| 2557 | if (!device_has_rmrr(dev)) |
| 2558 | return false; |
| 2559 | |
| 2560 | if (dev_is_pci(dev)) { |
| 2561 | struct pci_dev *pdev = to_pci_dev(dev); |
| 2562 | |
David Woodhouse | 18436af | 2015-03-25 15:05:47 +0000 | [diff] [blame] | 2563 | if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev)) |
Alex Williamson | c875d2c | 2014-07-03 09:57:02 -0600 | [diff] [blame] | 2564 | return false; |
| 2565 | } |
| 2566 | |
| 2567 | return true; |
| 2568 | } |
| 2569 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2570 | static int iommu_should_identity_map(struct device *dev, int startup) |
David Woodhouse | 6941af2 | 2009-07-04 18:24:27 +0100 | [diff] [blame] | 2571 | { |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2572 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2573 | if (dev_is_pci(dev)) { |
| 2574 | struct pci_dev *pdev = to_pci_dev(dev); |
Tom Mingarelli | ea2447f | 2012-11-20 19:43:17 +0000 | [diff] [blame] | 2575 | |
Alex Williamson | c875d2c | 2014-07-03 09:57:02 -0600 | [diff] [blame] | 2576 | if (device_is_rmrr_locked(dev)) |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2577 | return 0; |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2578 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2579 | if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(pdev)) |
| 2580 | return 1; |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2581 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2582 | if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev)) |
| 2583 | return 1; |
| 2584 | |
| 2585 | if (!(iommu_identity_mapping & IDENTMAP_ALL)) |
| 2586 | return 0; |
| 2587 | |
| 2588 | /* |
| 2589 | * We want to start off with all devices in the 1:1 domain, and |
| 2590 | * take them out later if we find they can't access all of memory. |
| 2591 | * |
| 2592 | * However, we can't do this for PCI devices behind bridges, |
| 2593 | * because all PCI devices behind the same bridge will end up |
| 2594 | * with the same source-id on their transactions. |
| 2595 | * |
| 2596 | * Practically speaking, we can't change things around for these |
| 2597 | * devices at run-time, because we can't be sure there'll be no |
| 2598 | * DMA transactions in flight for any of their siblings. |
| 2599 | * |
| 2600 | * So PCI devices (unless they're on the root bus) as well as |
| 2601 | * their parent PCI-PCI or PCIe-PCI bridges must be left _out_ of |
| 2602 | * the 1:1 domain, just in _case_ one of their siblings turns out |
| 2603 | * not to be able to map all of memory. |
| 2604 | */ |
| 2605 | if (!pci_is_pcie(pdev)) { |
| 2606 | if (!pci_is_root_bus(pdev->bus)) |
| 2607 | return 0; |
| 2608 | if (pdev->class >> 8 == PCI_CLASS_BRIDGE_PCI) |
| 2609 | return 0; |
| 2610 | } else if (pci_pcie_type(pdev) == PCI_EXP_TYPE_PCI_BRIDGE) |
| 2611 | return 0; |
| 2612 | } else { |
| 2613 | if (device_has_rmrr(dev)) |
| 2614 | return 0; |
| 2615 | } |
David Woodhouse | 6941af2 | 2009-07-04 18:24:27 +0100 | [diff] [blame] | 2616 | |
David Woodhouse | 3dfc813 | 2009-07-04 19:11:08 +0100 | [diff] [blame] | 2617 | /* |
David Woodhouse | 3dfc813 | 2009-07-04 19:11:08 +0100 | [diff] [blame] | 2618 | * At boot time, we don't yet know if devices will be 64-bit capable. |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2619 | * Assume that they will — if they turn out not to be, then we can |
David Woodhouse | 3dfc813 | 2009-07-04 19:11:08 +0100 | [diff] [blame] | 2620 | * take them out of the 1:1 domain later. |
| 2621 | */ |
Chris Wright | 8fcc537 | 2011-05-28 13:15:02 -0500 | [diff] [blame] | 2622 | if (!startup) { |
| 2623 | /* |
| 2624 | * If the device's dma_mask is less than the system's memory |
| 2625 | * size then this is not a candidate for identity mapping. |
| 2626 | */ |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2627 | u64 dma_mask = *dev->dma_mask; |
Chris Wright | 8fcc537 | 2011-05-28 13:15:02 -0500 | [diff] [blame] | 2628 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2629 | if (dev->coherent_dma_mask && |
| 2630 | dev->coherent_dma_mask < dma_mask) |
| 2631 | dma_mask = dev->coherent_dma_mask; |
Chris Wright | 8fcc537 | 2011-05-28 13:15:02 -0500 | [diff] [blame] | 2632 | |
David Woodhouse | 3bdb259 | 2014-03-09 16:03:08 -0700 | [diff] [blame] | 2633 | return dma_mask >= dma_get_required_mask(dev); |
Chris Wright | 8fcc537 | 2011-05-28 13:15:02 -0500 | [diff] [blame] | 2634 | } |
David Woodhouse | 6941af2 | 2009-07-04 18:24:27 +0100 | [diff] [blame] | 2635 | |
| 2636 | return 1; |
| 2637 | } |
| 2638 | |
David Woodhouse | cf04eee | 2014-03-21 16:49:04 +0000 | [diff] [blame] | 2639 | static int __init dev_prepare_static_identity_mapping(struct device *dev, int hw) |
| 2640 | { |
| 2641 | int ret; |
| 2642 | |
| 2643 | if (!iommu_should_identity_map(dev, 1)) |
| 2644 | return 0; |
| 2645 | |
| 2646 | ret = domain_add_dev_info(si_domain, dev, |
| 2647 | hw ? CONTEXT_TT_PASS_THROUGH : |
| 2648 | CONTEXT_TT_MULTI_LEVEL); |
| 2649 | if (!ret) |
| 2650 | pr_info("IOMMU: %s identity mapping for device %s\n", |
| 2651 | hw ? "hardware" : "software", dev_name(dev)); |
| 2652 | else if (ret == -ENODEV) |
| 2653 | /* device not associated with an iommu */ |
| 2654 | ret = 0; |
| 2655 | |
| 2656 | return ret; |
| 2657 | } |
| 2658 | |
| 2659 | |
Matt Kraai | 071e137 | 2009-08-23 22:30:22 -0700 | [diff] [blame] | 2660 | static int __init iommu_prepare_static_identity_mapping(int hw) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2661 | { |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2662 | struct pci_dev *pdev = NULL; |
David Woodhouse | cf04eee | 2014-03-21 16:49:04 +0000 | [diff] [blame] | 2663 | struct dmar_drhd_unit *drhd; |
| 2664 | struct intel_iommu *iommu; |
| 2665 | struct device *dev; |
| 2666 | int i; |
| 2667 | int ret = 0; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2668 | |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2669 | ret = si_domain_init(hw); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2670 | if (ret) |
| 2671 | return -EFAULT; |
| 2672 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2673 | for_each_pci_dev(pdev) { |
David Woodhouse | cf04eee | 2014-03-21 16:49:04 +0000 | [diff] [blame] | 2674 | ret = dev_prepare_static_identity_mapping(&pdev->dev, hw); |
| 2675 | if (ret) |
| 2676 | return ret; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2677 | } |
| 2678 | |
David Woodhouse | cf04eee | 2014-03-21 16:49:04 +0000 | [diff] [blame] | 2679 | for_each_active_iommu(iommu, drhd) |
| 2680 | for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) { |
| 2681 | struct acpi_device_physical_node *pn; |
| 2682 | struct acpi_device *adev; |
| 2683 | |
| 2684 | if (dev->bus != &acpi_bus_type) |
| 2685 | continue; |
| 2686 | |
| 2687 | adev= to_acpi_device(dev); |
| 2688 | mutex_lock(&adev->physical_node_lock); |
| 2689 | list_for_each_entry(pn, &adev->physical_node_list, node) { |
| 2690 | ret = dev_prepare_static_identity_mapping(pn->dev, hw); |
| 2691 | if (ret) |
| 2692 | break; |
| 2693 | } |
| 2694 | mutex_unlock(&adev->physical_node_lock); |
| 2695 | if (ret) |
| 2696 | return ret; |
| 2697 | } |
| 2698 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2699 | return 0; |
| 2700 | } |
| 2701 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2702 | static void intel_iommu_init_qi(struct intel_iommu *iommu) |
| 2703 | { |
| 2704 | /* |
| 2705 | * Start from the sane iommu hardware state. |
| 2706 | * If the queued invalidation is already initialized by us |
| 2707 | * (for example, while enabling interrupt-remapping) then |
| 2708 | * we got the things already rolling from a sane state. |
| 2709 | */ |
| 2710 | if (!iommu->qi) { |
| 2711 | /* |
| 2712 | * Clear any previous faults. |
| 2713 | */ |
| 2714 | dmar_fault(-1, iommu); |
| 2715 | /* |
| 2716 | * Disable queued invalidation if supported and already enabled |
| 2717 | * before OS handover. |
| 2718 | */ |
| 2719 | dmar_disable_qi(iommu); |
| 2720 | } |
| 2721 | |
| 2722 | if (dmar_enable_qi(iommu)) { |
| 2723 | /* |
| 2724 | * Queued Invalidate not enabled, use Register Based Invalidate |
| 2725 | */ |
| 2726 | iommu->flush.flush_context = __iommu_flush_context; |
| 2727 | iommu->flush.flush_iotlb = __iommu_flush_iotlb; |
| 2728 | pr_info("IOMMU: %s using Register based invalidation\n", |
| 2729 | iommu->name); |
| 2730 | } else { |
| 2731 | iommu->flush.flush_context = qi_flush_context; |
| 2732 | iommu->flush.flush_iotlb = qi_flush_iotlb; |
| 2733 | pr_info("IOMMU: %s using Queued invalidation\n", iommu->name); |
| 2734 | } |
| 2735 | } |
| 2736 | |
Joseph Cihula | b779260 | 2011-05-03 00:08:37 -0700 | [diff] [blame] | 2737 | static int __init init_dmars(void) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2738 | { |
| 2739 | struct dmar_drhd_unit *drhd; |
| 2740 | struct dmar_rmrr_unit *rmrr; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 2741 | struct device *dev; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2742 | struct intel_iommu *iommu; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 2743 | int i, ret; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2744 | |
| 2745 | /* |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2746 | * for each drhd |
| 2747 | * allocate root |
| 2748 | * initialize and program root entry to not present |
| 2749 | * endfor |
| 2750 | */ |
| 2751 | for_each_drhd_unit(drhd) { |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 2752 | /* |
| 2753 | * lock not needed as this is only incremented in the single |
| 2754 | * threaded kernel __init code path all other access are read |
| 2755 | * only |
| 2756 | */ |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 2757 | if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) { |
Mike Travis | 1b198bb | 2012-03-05 15:05:16 -0800 | [diff] [blame] | 2758 | g_num_of_iommus++; |
| 2759 | continue; |
| 2760 | } |
| 2761 | printk_once(KERN_ERR "intel-iommu: exceeded %d IOMMUs\n", |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 2762 | DMAR_UNITS_SUPPORTED); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 2763 | } |
| 2764 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2765 | /* Preallocate enough resources for IOMMU hot-addition */ |
| 2766 | if (g_num_of_iommus < DMAR_UNITS_SUPPORTED) |
| 2767 | g_num_of_iommus = DMAR_UNITS_SUPPORTED; |
| 2768 | |
Weidong Han | d9630fe | 2008-12-08 11:06:32 +0800 | [diff] [blame] | 2769 | g_iommus = kcalloc(g_num_of_iommus, sizeof(struct intel_iommu *), |
| 2770 | GFP_KERNEL); |
| 2771 | if (!g_iommus) { |
| 2772 | printk(KERN_ERR "Allocating global iommu array failed\n"); |
| 2773 | ret = -ENOMEM; |
| 2774 | goto error; |
| 2775 | } |
| 2776 | |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 2777 | deferred_flush = kzalloc(g_num_of_iommus * |
| 2778 | sizeof(struct deferred_flush_tables), GFP_KERNEL); |
| 2779 | if (!deferred_flush) { |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 2780 | ret = -ENOMEM; |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2781 | goto free_g_iommus; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 2782 | } |
| 2783 | |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 2784 | for_each_active_iommu(iommu, drhd) { |
Weidong Han | d9630fe | 2008-12-08 11:06:32 +0800 | [diff] [blame] | 2785 | g_iommus[iommu->seq_id] = iommu; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2786 | |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 2787 | ret = iommu_init_domains(iommu); |
| 2788 | if (ret) |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2789 | goto free_iommu; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 2790 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2791 | /* |
| 2792 | * TBD: |
| 2793 | * we could share the same root & context tables |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2794 | * among all IOMMU's. Need to Split it later. |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2795 | */ |
| 2796 | ret = iommu_alloc_root_entry(iommu); |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2797 | if (ret) |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2798 | goto free_iommu; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 2799 | if (!ecap_pass_through(iommu->ecap)) |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2800 | hw_pass_through = 0; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2801 | } |
| 2802 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2803 | for_each_active_iommu(iommu, drhd) |
| 2804 | intel_iommu_init_qi(iommu); |
Youquan Song | a77b67d | 2008-10-16 16:31:56 -0700 | [diff] [blame] | 2805 | |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2806 | if (iommu_pass_through) |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2807 | iommu_identity_mapping |= IDENTMAP_ALL; |
| 2808 | |
Suresh Siddha | d3f1381 | 2011-08-23 17:05:25 -0700 | [diff] [blame] | 2809 | #ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2810 | iommu_identity_mapping |= IDENTMAP_GFX; |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2811 | #endif |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 2812 | |
| 2813 | check_tylersburg_isoch(); |
| 2814 | |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 2815 | /* |
| 2816 | * If pass through is not set or not enabled, setup context entries for |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2817 | * identity mappings for rmrr, gfx, and isa and may fall back to static |
| 2818 | * identity mapping if iommu_identity_mapping is set. |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 2819 | */ |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2820 | if (iommu_identity_mapping) { |
| 2821 | ret = iommu_prepare_static_identity_mapping(hw_pass_through); |
| 2822 | if (ret) { |
| 2823 | printk(KERN_CRIT "Failed to setup IOMMU pass-through\n"); |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2824 | goto free_iommu; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 2825 | } |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 2826 | } |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2827 | /* |
| 2828 | * For each rmrr |
| 2829 | * for each dev attached to rmrr |
| 2830 | * do |
| 2831 | * locate drhd for dev, alloc domain for dev |
| 2832 | * allocate free domain |
| 2833 | * allocate page table entries for rmrr |
| 2834 | * if context not allocated for bus |
| 2835 | * allocate and init context |
| 2836 | * set present in root table for this bus |
| 2837 | * init context with domain, translation etc |
| 2838 | * endfor |
| 2839 | * endfor |
| 2840 | */ |
| 2841 | printk(KERN_INFO "IOMMU: Setting RMRR:\n"); |
| 2842 | for_each_rmrr_units(rmrr) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 2843 | /* some BIOS lists non-exist devices in DMAR table. */ |
| 2844 | for_each_active_dev_scope(rmrr->devices, rmrr->devices_cnt, |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 2845 | i, dev) { |
David Woodhouse | 0b9d975 | 2014-03-09 15:48:15 -0700 | [diff] [blame] | 2846 | ret = iommu_prepare_rmrr_dev(rmrr, dev); |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 2847 | if (ret) |
| 2848 | printk(KERN_ERR |
| 2849 | "IOMMU: mapping reserved region failed\n"); |
| 2850 | } |
| 2851 | } |
| 2852 | |
| 2853 | iommu_prepare_isa(); |
Keshavamurthy, Anil S | 49a0429 | 2007-10-21 16:41:57 -0700 | [diff] [blame] | 2854 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2855 | /* |
| 2856 | * for each drhd |
| 2857 | * enable fault log |
| 2858 | * global invalidate context cache |
| 2859 | * global invalidate iotlb |
| 2860 | * enable translation |
| 2861 | */ |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 2862 | for_each_iommu(iommu, drhd) { |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 2863 | if (drhd->ignored) { |
| 2864 | /* |
| 2865 | * we always have to disable PMRs or DMA may fail on |
| 2866 | * this device |
| 2867 | */ |
| 2868 | if (force_on) |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 2869 | iommu_disable_protect_mem_regions(iommu); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2870 | continue; |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 2871 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2872 | |
| 2873 | iommu_flush_write_buffer(iommu); |
| 2874 | |
Keshavamurthy, Anil S | 3460a6d | 2007-10-21 16:41:54 -0700 | [diff] [blame] | 2875 | ret = dmar_set_interrupt(iommu); |
| 2876 | if (ret) |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2877 | goto free_iommu; |
Keshavamurthy, Anil S | 3460a6d | 2007-10-21 16:41:54 -0700 | [diff] [blame] | 2878 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2879 | iommu_set_root_entry(iommu); |
| 2880 | |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 2881 | iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL); |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 2882 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH); |
Jiang Liu | 2a41cce | 2014-07-11 14:19:33 +0800 | [diff] [blame] | 2883 | iommu_enable_translation(iommu); |
David Woodhouse | b94996c | 2009-09-19 15:28:12 -0700 | [diff] [blame] | 2884 | iommu_disable_protect_mem_regions(iommu); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2885 | } |
| 2886 | |
| 2887 | return 0; |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2888 | |
| 2889 | free_iommu: |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2890 | for_each_active_iommu(iommu, drhd) { |
| 2891 | disable_dmar_iommu(iommu); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 2892 | free_dmar_iommu(iommu); |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 2893 | } |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 2894 | kfree(deferred_flush); |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2895 | free_g_iommus: |
Weidong Han | d9630fe | 2008-12-08 11:06:32 +0800 | [diff] [blame] | 2896 | kfree(g_iommus); |
Jiang Liu | 989d51f | 2014-02-19 14:07:21 +0800 | [diff] [blame] | 2897 | error: |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2898 | return ret; |
| 2899 | } |
| 2900 | |
David Woodhouse | 5a5e02a | 2009-07-04 09:35:44 +0100 | [diff] [blame] | 2901 | /* This takes a number of _MM_ pages, not VTD pages */ |
David Woodhouse | 875764d | 2009-06-28 21:20:51 +0100 | [diff] [blame] | 2902 | static struct iova *intel_alloc_iova(struct device *dev, |
| 2903 | struct dmar_domain *domain, |
| 2904 | unsigned long nrpages, uint64_t dma_mask) |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2905 | { |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2906 | struct iova *iova = NULL; |
| 2907 | |
David Woodhouse | 875764d | 2009-06-28 21:20:51 +0100 | [diff] [blame] | 2908 | /* Restrict dma_mask to the width that the iommu can handle */ |
| 2909 | dma_mask = min_t(uint64_t, DOMAIN_MAX_ADDR(domain->gaw), dma_mask); |
| 2910 | |
| 2911 | if (!dmar_forcedac && dma_mask > DMA_BIT_MASK(32)) { |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2912 | /* |
| 2913 | * First try to allocate an io virtual address in |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 2914 | * DMA_BIT_MASK(32) and if that fails then try allocating |
Joe Perches | 3609801 | 2007-12-17 11:40:11 -0800 | [diff] [blame] | 2915 | * from higher range |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2916 | */ |
David Woodhouse | 875764d | 2009-06-28 21:20:51 +0100 | [diff] [blame] | 2917 | iova = alloc_iova(&domain->iovad, nrpages, |
| 2918 | IOVA_PFN(DMA_BIT_MASK(32)), 1); |
| 2919 | if (iova) |
| 2920 | return iova; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2921 | } |
David Woodhouse | 875764d | 2009-06-28 21:20:51 +0100 | [diff] [blame] | 2922 | iova = alloc_iova(&domain->iovad, nrpages, IOVA_PFN(dma_mask), 1); |
| 2923 | if (unlikely(!iova)) { |
| 2924 | printk(KERN_ERR "Allocating %ld-page iova for %s failed", |
David Woodhouse | 207e359 | 2014-03-09 16:12:32 -0700 | [diff] [blame] | 2925 | nrpages, dev_name(dev)); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2926 | return NULL; |
| 2927 | } |
| 2928 | |
| 2929 | return iova; |
| 2930 | } |
| 2931 | |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2932 | static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2933 | { |
| 2934 | struct dmar_domain *domain; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2935 | int ret; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2936 | |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2937 | domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2938 | if (!domain) { |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2939 | printk(KERN_ERR "Allocating domain for %s failed", |
| 2940 | dev_name(dev)); |
Al Viro | 4fe05bb | 2007-10-29 04:51:16 +0000 | [diff] [blame] | 2941 | return NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2942 | } |
| 2943 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2944 | /* make sure context mapping is ok */ |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2945 | if (unlikely(!domain_context_mapped(dev))) { |
| 2946 | ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2947 | if (ret) { |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2948 | printk(KERN_ERR "Domain context map for %s failed", |
| 2949 | dev_name(dev)); |
Al Viro | 4fe05bb | 2007-10-29 04:51:16 +0000 | [diff] [blame] | 2950 | return NULL; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2951 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 2952 | } |
| 2953 | |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 2954 | return domain; |
| 2955 | } |
| 2956 | |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2957 | static inline struct dmar_domain *get_valid_domain_for_dev(struct device *dev) |
David Woodhouse | 147202a | 2009-07-07 19:43:20 +0100 | [diff] [blame] | 2958 | { |
| 2959 | struct device_domain_info *info; |
| 2960 | |
| 2961 | /* No lock here, assumes no domain exit in normal case */ |
David Woodhouse | d4b709f | 2014-03-09 16:07:40 -0700 | [diff] [blame] | 2962 | info = dev->archdata.iommu; |
David Woodhouse | 147202a | 2009-07-07 19:43:20 +0100 | [diff] [blame] | 2963 | if (likely(info)) |
| 2964 | return info->domain; |
| 2965 | |
| 2966 | return __get_valid_domain_for_dev(dev); |
| 2967 | } |
| 2968 | |
David Woodhouse | 3d89194 | 2014-03-06 15:59:26 +0000 | [diff] [blame] | 2969 | static int iommu_dummy(struct device *dev) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2970 | { |
David Woodhouse | 3d89194 | 2014-03-06 15:59:26 +0000 | [diff] [blame] | 2971 | return dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2972 | } |
| 2973 | |
David Woodhouse | ecb509e | 2014-03-09 16:29:55 -0700 | [diff] [blame] | 2974 | /* Check if the dev needs to go through non-identity map and unmap process.*/ |
David Woodhouse | 7367683 | 2009-07-04 14:08:36 +0100 | [diff] [blame] | 2975 | static int iommu_no_mapping(struct device *dev) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2976 | { |
| 2977 | int found; |
| 2978 | |
David Woodhouse | 3d89194 | 2014-03-06 15:59:26 +0000 | [diff] [blame] | 2979 | if (iommu_dummy(dev)) |
David Woodhouse | 1e4c64c | 2009-07-04 10:40:38 +0100 | [diff] [blame] | 2980 | return 1; |
| 2981 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2982 | if (!iommu_identity_mapping) |
David Woodhouse | 1e4c64c | 2009-07-04 10:40:38 +0100 | [diff] [blame] | 2983 | return 0; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2984 | |
David Woodhouse | 9b22662 | 2014-03-09 14:03:28 -0700 | [diff] [blame] | 2985 | found = identity_mapping(dev); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2986 | if (found) { |
David Woodhouse | ecb509e | 2014-03-09 16:29:55 -0700 | [diff] [blame] | 2987 | if (iommu_should_identity_map(dev, 0)) |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2988 | return 1; |
| 2989 | else { |
| 2990 | /* |
| 2991 | * 32 bit DMA is removed from si_domain and fall back |
| 2992 | * to non-identity mapping. |
| 2993 | */ |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 2994 | domain_remove_one_dev_info(si_domain, dev); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2995 | printk(KERN_INFO "32bit %s uses non-identity mapping\n", |
David Woodhouse | ecb509e | 2014-03-09 16:29:55 -0700 | [diff] [blame] | 2996 | dev_name(dev)); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 2997 | return 0; |
| 2998 | } |
| 2999 | } else { |
| 3000 | /* |
| 3001 | * In case of a detached 64 bit DMA device from vm, the device |
| 3002 | * is put into si_domain for identity mapping. |
| 3003 | */ |
David Woodhouse | ecb509e | 2014-03-09 16:29:55 -0700 | [diff] [blame] | 3004 | if (iommu_should_identity_map(dev, 0)) { |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3005 | int ret; |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 3006 | ret = domain_add_dev_info(si_domain, dev, |
David Woodhouse | 5fe60f4 | 2009-08-09 10:53:41 +0100 | [diff] [blame] | 3007 | hw_pass_through ? |
| 3008 | CONTEXT_TT_PASS_THROUGH : |
| 3009 | CONTEXT_TT_MULTI_LEVEL); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3010 | if (!ret) { |
| 3011 | printk(KERN_INFO "64bit %s uses identity mapping\n", |
David Woodhouse | ecb509e | 2014-03-09 16:29:55 -0700 | [diff] [blame] | 3012 | dev_name(dev)); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3013 | return 1; |
| 3014 | } |
| 3015 | } |
| 3016 | } |
| 3017 | |
David Woodhouse | 1e4c64c | 2009-07-04 10:40:38 +0100 | [diff] [blame] | 3018 | return 0; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3019 | } |
| 3020 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3021 | static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr, |
FUJITA Tomonori | bb9e6d6 | 2008-10-15 16:08:28 +0900 | [diff] [blame] | 3022 | size_t size, int dir, u64 dma_mask) |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3023 | { |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3024 | struct dmar_domain *domain; |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 3025 | phys_addr_t start_paddr; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3026 | struct iova *iova; |
| 3027 | int prot = 0; |
Ingo Molnar | 6865f0d | 2008-04-22 11:09:04 +0200 | [diff] [blame] | 3028 | int ret; |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3029 | struct intel_iommu *iommu; |
Fenghua Yu | 33041ec | 2009-08-04 15:10:59 -0700 | [diff] [blame] | 3030 | unsigned long paddr_pfn = paddr >> PAGE_SHIFT; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3031 | |
| 3032 | BUG_ON(dir == DMA_NONE); |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3033 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3034 | if (iommu_no_mapping(dev)) |
Ingo Molnar | 6865f0d | 2008-04-22 11:09:04 +0200 | [diff] [blame] | 3035 | return paddr; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3036 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3037 | domain = get_valid_domain_for_dev(dev); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3038 | if (!domain) |
| 3039 | return 0; |
| 3040 | |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3041 | iommu = domain_get_iommu(domain); |
David Woodhouse | 88cb6a7 | 2009-06-28 15:03:06 +0100 | [diff] [blame] | 3042 | size = aligned_nrpages(paddr, size); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3043 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3044 | iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), dma_mask); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3045 | if (!iova) |
| 3046 | goto error; |
| 3047 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3048 | /* |
| 3049 | * Check if DMAR supports zero-length reads on write only |
| 3050 | * mappings.. |
| 3051 | */ |
| 3052 | if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \ |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3053 | !cap_zlr(iommu->cap)) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3054 | prot |= DMA_PTE_READ; |
| 3055 | if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) |
| 3056 | prot |= DMA_PTE_WRITE; |
| 3057 | /* |
Ingo Molnar | 6865f0d | 2008-04-22 11:09:04 +0200 | [diff] [blame] | 3058 | * paddr - (paddr + size) might be partial page, we should map the whole |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3059 | * page. Note: if two part of one page are separately mapped, we |
Ingo Molnar | 6865f0d | 2008-04-22 11:09:04 +0200 | [diff] [blame] | 3060 | * might have two guest_addr mapping to the same host paddr, but this |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3061 | * is not a big problem |
| 3062 | */ |
David Woodhouse | 0ab36de | 2009-06-28 14:01:43 +0100 | [diff] [blame] | 3063 | ret = domain_pfn_mapping(domain, mm_to_dma_pfn(iova->pfn_lo), |
Fenghua Yu | 33041ec | 2009-08-04 15:10:59 -0700 | [diff] [blame] | 3064 | mm_to_dma_pfn(paddr_pfn), size, prot); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3065 | if (ret) |
| 3066 | goto error; |
| 3067 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3068 | /* it's a non-present to present mapping. Only flush if caching mode */ |
| 3069 | if (cap_caching_mode(iommu->cap)) |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3070 | iommu_flush_iotlb_psi(iommu, domain->id, mm_to_dma_pfn(iova->pfn_lo), size, 0, 1); |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3071 | else |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3072 | iommu_flush_write_buffer(iommu); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3073 | |
David Woodhouse | 03d6a24 | 2009-06-28 15:33:46 +0100 | [diff] [blame] | 3074 | start_paddr = (phys_addr_t)iova->pfn_lo << PAGE_SHIFT; |
| 3075 | start_paddr += paddr & ~PAGE_MASK; |
| 3076 | return start_paddr; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3077 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3078 | error: |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3079 | if (iova) |
| 3080 | __free_iova(&domain->iovad, iova); |
David Woodhouse | 4cf2e75 | 2009-02-11 17:23:43 +0000 | [diff] [blame] | 3081 | printk(KERN_ERR"Device %s request: %zx@%llx dir %d --- failed\n", |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3082 | dev_name(dev), size, (unsigned long long)paddr, dir); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3083 | return 0; |
| 3084 | } |
| 3085 | |
FUJITA Tomonori | ffbbef5 | 2009-01-05 23:47:26 +0900 | [diff] [blame] | 3086 | static dma_addr_t intel_map_page(struct device *dev, struct page *page, |
| 3087 | unsigned long offset, size_t size, |
| 3088 | enum dma_data_direction dir, |
| 3089 | struct dma_attrs *attrs) |
FUJITA Tomonori | bb9e6d6 | 2008-10-15 16:08:28 +0900 | [diff] [blame] | 3090 | { |
FUJITA Tomonori | ffbbef5 | 2009-01-05 23:47:26 +0900 | [diff] [blame] | 3091 | return __intel_map_single(dev, page_to_phys(page) + offset, size, |
David Woodhouse | 46333e3 | 2014-03-10 20:01:21 -0700 | [diff] [blame] | 3092 | dir, *dev->dma_mask); |
FUJITA Tomonori | bb9e6d6 | 2008-10-15 16:08:28 +0900 | [diff] [blame] | 3093 | } |
| 3094 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3095 | static void flush_unmaps(void) |
| 3096 | { |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3097 | int i, j; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3098 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3099 | timer_on = 0; |
| 3100 | |
| 3101 | /* just flush them all */ |
| 3102 | for (i = 0; i < g_num_of_iommus; i++) { |
Weidong Han | a2bb845 | 2008-12-08 11:24:12 +0800 | [diff] [blame] | 3103 | struct intel_iommu *iommu = g_iommus[i]; |
| 3104 | if (!iommu) |
| 3105 | continue; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 3106 | |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 3107 | if (!deferred_flush[i].next) |
| 3108 | continue; |
| 3109 | |
Nadav Amit | 78d5f0f | 2010-04-08 23:00:41 +0300 | [diff] [blame] | 3110 | /* In caching mode, global flushes turn emulation expensive */ |
| 3111 | if (!cap_caching_mode(iommu->cap)) |
| 3112 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 3113 | DMA_TLB_GLOBAL_FLUSH); |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 3114 | for (j = 0; j < deferred_flush[i].next; j++) { |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 3115 | unsigned long mask; |
| 3116 | struct iova *iova = deferred_flush[i].iova[j]; |
Nadav Amit | 78d5f0f | 2010-04-08 23:00:41 +0300 | [diff] [blame] | 3117 | struct dmar_domain *domain = deferred_flush[i].domain[j]; |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 3118 | |
Nadav Amit | 78d5f0f | 2010-04-08 23:00:41 +0300 | [diff] [blame] | 3119 | /* On real hardware multiple invalidations are expensive */ |
| 3120 | if (cap_caching_mode(iommu->cap)) |
| 3121 | iommu_flush_iotlb_psi(iommu, domain->id, |
Jiang Liu | a156ef9 | 2014-07-11 14:19:36 +0800 | [diff] [blame] | 3122 | iova->pfn_lo, iova_size(iova), |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3123 | !deferred_flush[i].freelist[j], 0); |
Nadav Amit | 78d5f0f | 2010-04-08 23:00:41 +0300 | [diff] [blame] | 3124 | else { |
Jiang Liu | a156ef9 | 2014-07-11 14:19:36 +0800 | [diff] [blame] | 3125 | mask = ilog2(mm_to_dma_pfn(iova_size(iova))); |
Nadav Amit | 78d5f0f | 2010-04-08 23:00:41 +0300 | [diff] [blame] | 3126 | iommu_flush_dev_iotlb(deferred_flush[i].domain[j], |
| 3127 | (uint64_t)iova->pfn_lo << PAGE_SHIFT, mask); |
| 3128 | } |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 3129 | __free_iova(&deferred_flush[i].domain[j]->iovad, iova); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3130 | if (deferred_flush[i].freelist[j]) |
| 3131 | dma_free_pagelist(deferred_flush[i].freelist[j]); |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3132 | } |
Yu Zhao | 9dd2fe8 | 2009-05-18 13:51:36 +0800 | [diff] [blame] | 3133 | deferred_flush[i].next = 0; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3134 | } |
| 3135 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3136 | list_size = 0; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3137 | } |
| 3138 | |
| 3139 | static void flush_unmaps_timeout(unsigned long data) |
| 3140 | { |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3141 | unsigned long flags; |
| 3142 | |
| 3143 | spin_lock_irqsave(&async_umap_flush_lock, flags); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3144 | flush_unmaps(); |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3145 | spin_unlock_irqrestore(&async_umap_flush_lock, flags); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3146 | } |
| 3147 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3148 | static void add_unmap(struct dmar_domain *dom, struct iova *iova, struct page *freelist) |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3149 | { |
| 3150 | unsigned long flags; |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3151 | int next, iommu_id; |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3152 | struct intel_iommu *iommu; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3153 | |
| 3154 | spin_lock_irqsave(&async_umap_flush_lock, flags); |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3155 | if (list_size == HIGH_WATER_MARK) |
| 3156 | flush_unmaps(); |
| 3157 | |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3158 | iommu = domain_get_iommu(dom); |
| 3159 | iommu_id = iommu->seq_id; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 3160 | |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3161 | next = deferred_flush[iommu_id].next; |
| 3162 | deferred_flush[iommu_id].domain[next] = dom; |
| 3163 | deferred_flush[iommu_id].iova[next] = iova; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3164 | deferred_flush[iommu_id].freelist[next] = freelist; |
mark gross | 80b20dd | 2008-04-18 13:53:58 -0700 | [diff] [blame] | 3165 | deferred_flush[iommu_id].next++; |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3166 | |
| 3167 | if (!timer_on) { |
| 3168 | mod_timer(&unmap_timer, jiffies + msecs_to_jiffies(10)); |
| 3169 | timer_on = 1; |
| 3170 | } |
| 3171 | list_size++; |
| 3172 | spin_unlock_irqrestore(&async_umap_flush_lock, flags); |
| 3173 | } |
| 3174 | |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 3175 | static void intel_unmap(struct device *dev, dma_addr_t dev_addr) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3176 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3177 | struct dmar_domain *domain; |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 3178 | unsigned long start_pfn, last_pfn; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3179 | struct iova *iova; |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3180 | struct intel_iommu *iommu; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3181 | struct page *freelist; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3182 | |
David Woodhouse | 7367683 | 2009-07-04 14:08:36 +0100 | [diff] [blame] | 3183 | if (iommu_no_mapping(dev)) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3184 | return; |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 3185 | |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 3186 | domain = find_domain(dev); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3187 | BUG_ON(!domain); |
| 3188 | |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3189 | iommu = domain_get_iommu(domain); |
| 3190 | |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3191 | iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr)); |
David Woodhouse | 85b9827 | 2009-07-01 19:27:53 +0100 | [diff] [blame] | 3192 | if (WARN_ONCE(!iova, "Driver unmaps unmatched page at PFN %llx\n", |
| 3193 | (unsigned long long)dev_addr)) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3194 | return; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3195 | |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 3196 | start_pfn = mm_to_dma_pfn(iova->pfn_lo); |
| 3197 | last_pfn = mm_to_dma_pfn(iova->pfn_hi + 1) - 1; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3198 | |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 3199 | pr_debug("Device %s unmapping: pfn %lx-%lx\n", |
David Woodhouse | 207e359 | 2014-03-09 16:12:32 -0700 | [diff] [blame] | 3200 | dev_name(dev), start_pfn, last_pfn); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3201 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3202 | freelist = domain_unmap(domain, start_pfn, last_pfn); |
David Woodhouse | d794dc9 | 2009-06-28 00:27:49 +0100 | [diff] [blame] | 3203 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3204 | if (intel_iommu_strict) { |
David Woodhouse | 03d6a24 | 2009-06-28 15:33:46 +0100 | [diff] [blame] | 3205 | iommu_flush_iotlb_psi(iommu, domain->id, start_pfn, |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3206 | last_pfn - start_pfn + 1, !freelist, 0); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3207 | /* free iova */ |
| 3208 | __free_iova(&domain->iovad, iova); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3209 | dma_free_pagelist(freelist); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3210 | } else { |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3211 | add_unmap(domain, iova, freelist); |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3212 | /* |
| 3213 | * queue up the release of the unmap to save the 1/6th of the |
| 3214 | * cpu used up by the iotlb flush operation... |
| 3215 | */ |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 3216 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3217 | } |
| 3218 | |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 3219 | static void intel_unmap_page(struct device *dev, dma_addr_t dev_addr, |
| 3220 | size_t size, enum dma_data_direction dir, |
| 3221 | struct dma_attrs *attrs) |
| 3222 | { |
| 3223 | intel_unmap(dev, dev_addr); |
| 3224 | } |
| 3225 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3226 | static void *intel_alloc_coherent(struct device *dev, size_t size, |
Andrzej Pietrasiewicz | baa676f | 2012-03-27 14:28:18 +0200 | [diff] [blame] | 3227 | dma_addr_t *dma_handle, gfp_t flags, |
| 3228 | struct dma_attrs *attrs) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3229 | { |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3230 | struct page *page = NULL; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3231 | int order; |
| 3232 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 3233 | size = PAGE_ALIGN(size); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3234 | order = get_order(size); |
Alex Williamson | e8bb910 | 2009-11-04 15:59:34 -0700 | [diff] [blame] | 3235 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3236 | if (!iommu_no_mapping(dev)) |
Alex Williamson | e8bb910 | 2009-11-04 15:59:34 -0700 | [diff] [blame] | 3237 | flags &= ~(GFP_DMA | GFP_DMA32); |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3238 | else if (dev->coherent_dma_mask < dma_get_required_mask(dev)) { |
| 3239 | if (dev->coherent_dma_mask < DMA_BIT_MASK(32)) |
Alex Williamson | e8bb910 | 2009-11-04 15:59:34 -0700 | [diff] [blame] | 3240 | flags |= GFP_DMA; |
| 3241 | else |
| 3242 | flags |= GFP_DMA32; |
| 3243 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3244 | |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3245 | if (flags & __GFP_WAIT) { |
| 3246 | unsigned int count = size >> PAGE_SHIFT; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3247 | |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3248 | page = dma_alloc_from_contiguous(dev, count, order); |
| 3249 | if (page && iommu_no_mapping(dev) && |
| 3250 | page_to_phys(page) + size > dev->coherent_dma_mask) { |
| 3251 | dma_release_from_contiguous(dev, page, count); |
| 3252 | page = NULL; |
| 3253 | } |
| 3254 | } |
| 3255 | |
| 3256 | if (!page) |
| 3257 | page = alloc_pages(flags, order); |
| 3258 | if (!page) |
| 3259 | return NULL; |
| 3260 | memset(page_address(page), 0, size); |
| 3261 | |
| 3262 | *dma_handle = __intel_map_single(dev, page_to_phys(page), size, |
FUJITA Tomonori | bb9e6d6 | 2008-10-15 16:08:28 +0900 | [diff] [blame] | 3263 | DMA_BIDIRECTIONAL, |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3264 | dev->coherent_dma_mask); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3265 | if (*dma_handle) |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3266 | return page_address(page); |
| 3267 | if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT)) |
| 3268 | __free_pages(page, order); |
| 3269 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3270 | return NULL; |
| 3271 | } |
| 3272 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3273 | static void intel_free_coherent(struct device *dev, size_t size, void *vaddr, |
Andrzej Pietrasiewicz | baa676f | 2012-03-27 14:28:18 +0200 | [diff] [blame] | 3274 | dma_addr_t dma_handle, struct dma_attrs *attrs) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3275 | { |
| 3276 | int order; |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3277 | struct page *page = virt_to_page(vaddr); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3278 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 3279 | size = PAGE_ALIGN(size); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3280 | order = get_order(size); |
| 3281 | |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 3282 | intel_unmap(dev, dma_handle); |
Akinobu Mita | 3674643 | 2014-06-04 16:06:51 -0700 | [diff] [blame] | 3283 | if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT)) |
| 3284 | __free_pages(page, order); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3285 | } |
| 3286 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3287 | static void intel_unmap_sg(struct device *dev, struct scatterlist *sglist, |
FUJITA Tomonori | d7ab5c4 | 2009-01-28 21:53:18 +0900 | [diff] [blame] | 3288 | int nelems, enum dma_data_direction dir, |
| 3289 | struct dma_attrs *attrs) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3290 | { |
Jiang Liu | d41a4ad | 2014-07-11 14:19:34 +0800 | [diff] [blame] | 3291 | intel_unmap(dev, sglist[0].dma_address); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3292 | } |
| 3293 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3294 | static int intel_nontranslate_map_sg(struct device *hddev, |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3295 | struct scatterlist *sglist, int nelems, int dir) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3296 | { |
| 3297 | int i; |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3298 | struct scatterlist *sg; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3299 | |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3300 | for_each_sg(sglist, sg, nelems, i) { |
FUJITA Tomonori | 12d4d40 | 2007-10-23 09:32:25 +0200 | [diff] [blame] | 3301 | BUG_ON(!sg_page(sg)); |
David Woodhouse | 4cf2e75 | 2009-02-11 17:23:43 +0000 | [diff] [blame] | 3302 | sg->dma_address = page_to_phys(sg_page(sg)) + sg->offset; |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3303 | sg->dma_length = sg->length; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3304 | } |
| 3305 | return nelems; |
| 3306 | } |
| 3307 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3308 | static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nelems, |
FUJITA Tomonori | d7ab5c4 | 2009-01-28 21:53:18 +0900 | [diff] [blame] | 3309 | enum dma_data_direction dir, struct dma_attrs *attrs) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3310 | { |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3311 | int i; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3312 | struct dmar_domain *domain; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3313 | size_t size = 0; |
| 3314 | int prot = 0; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3315 | struct iova *iova = NULL; |
| 3316 | int ret; |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3317 | struct scatterlist *sg; |
David Woodhouse | b536d24 | 2009-06-28 14:49:31 +0100 | [diff] [blame] | 3318 | unsigned long start_vpfn; |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3319 | struct intel_iommu *iommu; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3320 | |
| 3321 | BUG_ON(dir == DMA_NONE); |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3322 | if (iommu_no_mapping(dev)) |
| 3323 | return intel_nontranslate_map_sg(dev, sglist, nelems, dir); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3324 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3325 | domain = get_valid_domain_for_dev(dev); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3326 | if (!domain) |
| 3327 | return 0; |
| 3328 | |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3329 | iommu = domain_get_iommu(domain); |
| 3330 | |
David Woodhouse | b536d24 | 2009-06-28 14:49:31 +0100 | [diff] [blame] | 3331 | for_each_sg(sglist, sg, nelems, i) |
David Woodhouse | 88cb6a7 | 2009-06-28 15:03:06 +0100 | [diff] [blame] | 3332 | size += aligned_nrpages(sg->offset, sg->length); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3333 | |
David Woodhouse | 5040a91 | 2014-03-09 16:14:00 -0700 | [diff] [blame] | 3334 | iova = intel_alloc_iova(dev, domain, dma_to_mm_pfn(size), |
| 3335 | *dev->dma_mask); |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3336 | if (!iova) { |
FUJITA Tomonori | c03ab37 | 2007-10-21 16:42:00 -0700 | [diff] [blame] | 3337 | sglist->dma_length = 0; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3338 | return 0; |
| 3339 | } |
| 3340 | |
| 3341 | /* |
| 3342 | * Check if DMAR supports zero-length reads on write only |
| 3343 | * mappings.. |
| 3344 | */ |
| 3345 | if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL || \ |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3346 | !cap_zlr(iommu->cap)) |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3347 | prot |= DMA_PTE_READ; |
| 3348 | if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL) |
| 3349 | prot |= DMA_PTE_WRITE; |
| 3350 | |
David Woodhouse | b536d24 | 2009-06-28 14:49:31 +0100 | [diff] [blame] | 3351 | start_vpfn = mm_to_dma_pfn(iova->pfn_lo); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 3352 | |
Fenghua Yu | f532959 | 2009-08-04 15:09:37 -0700 | [diff] [blame] | 3353 | ret = domain_sg_mapping(domain, start_vpfn, sglist, size, prot); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 3354 | if (unlikely(ret)) { |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 3355 | dma_pte_free_pagetable(domain, start_vpfn, |
| 3356 | start_vpfn + size - 1); |
David Woodhouse | e160549 | 2009-06-29 11:17:38 +0100 | [diff] [blame] | 3357 | __free_iova(&domain->iovad, iova); |
| 3358 | return 0; |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 3359 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3360 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3361 | /* it's a non-present to present mapping. Only flush if caching mode */ |
| 3362 | if (cap_caching_mode(iommu->cap)) |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 3363 | iommu_flush_iotlb_psi(iommu, domain->id, start_vpfn, size, 0, 1); |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3364 | else |
Weidong Han | 8c11e79 | 2008-12-08 15:29:22 +0800 | [diff] [blame] | 3365 | iommu_flush_write_buffer(iommu); |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3366 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3367 | return nelems; |
| 3368 | } |
| 3369 | |
FUJITA Tomonori | dfb805e | 2009-01-28 21:53:17 +0900 | [diff] [blame] | 3370 | static int intel_mapping_error(struct device *dev, dma_addr_t dma_addr) |
| 3371 | { |
| 3372 | return !dma_addr; |
| 3373 | } |
| 3374 | |
FUJITA Tomonori | 160c1d8 | 2009-01-05 23:59:02 +0900 | [diff] [blame] | 3375 | struct dma_map_ops intel_dma_ops = { |
Andrzej Pietrasiewicz | baa676f | 2012-03-27 14:28:18 +0200 | [diff] [blame] | 3376 | .alloc = intel_alloc_coherent, |
| 3377 | .free = intel_free_coherent, |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3378 | .map_sg = intel_map_sg, |
| 3379 | .unmap_sg = intel_unmap_sg, |
FUJITA Tomonori | ffbbef5 | 2009-01-05 23:47:26 +0900 | [diff] [blame] | 3380 | .map_page = intel_map_page, |
| 3381 | .unmap_page = intel_unmap_page, |
FUJITA Tomonori | dfb805e | 2009-01-28 21:53:17 +0900 | [diff] [blame] | 3382 | .mapping_error = intel_mapping_error, |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3383 | }; |
| 3384 | |
| 3385 | static inline int iommu_domain_cache_init(void) |
| 3386 | { |
| 3387 | int ret = 0; |
| 3388 | |
| 3389 | iommu_domain_cache = kmem_cache_create("iommu_domain", |
| 3390 | sizeof(struct dmar_domain), |
| 3391 | 0, |
| 3392 | SLAB_HWCACHE_ALIGN, |
| 3393 | |
| 3394 | NULL); |
| 3395 | if (!iommu_domain_cache) { |
| 3396 | printk(KERN_ERR "Couldn't create iommu_domain cache\n"); |
| 3397 | ret = -ENOMEM; |
| 3398 | } |
| 3399 | |
| 3400 | return ret; |
| 3401 | } |
| 3402 | |
| 3403 | static inline int iommu_devinfo_cache_init(void) |
| 3404 | { |
| 3405 | int ret = 0; |
| 3406 | |
| 3407 | iommu_devinfo_cache = kmem_cache_create("iommu_devinfo", |
| 3408 | sizeof(struct device_domain_info), |
| 3409 | 0, |
| 3410 | SLAB_HWCACHE_ALIGN, |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3411 | NULL); |
| 3412 | if (!iommu_devinfo_cache) { |
| 3413 | printk(KERN_ERR "Couldn't create devinfo cache\n"); |
| 3414 | ret = -ENOMEM; |
| 3415 | } |
| 3416 | |
| 3417 | return ret; |
| 3418 | } |
| 3419 | |
| 3420 | static inline int iommu_iova_cache_init(void) |
| 3421 | { |
| 3422 | int ret = 0; |
| 3423 | |
| 3424 | iommu_iova_cache = kmem_cache_create("iommu_iova", |
| 3425 | sizeof(struct iova), |
| 3426 | 0, |
| 3427 | SLAB_HWCACHE_ALIGN, |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3428 | NULL); |
| 3429 | if (!iommu_iova_cache) { |
| 3430 | printk(KERN_ERR "Couldn't create iova cache\n"); |
| 3431 | ret = -ENOMEM; |
| 3432 | } |
| 3433 | |
| 3434 | return ret; |
| 3435 | } |
| 3436 | |
| 3437 | static int __init iommu_init_mempool(void) |
| 3438 | { |
| 3439 | int ret; |
| 3440 | ret = iommu_iova_cache_init(); |
| 3441 | if (ret) |
| 3442 | return ret; |
| 3443 | |
| 3444 | ret = iommu_domain_cache_init(); |
| 3445 | if (ret) |
| 3446 | goto domain_error; |
| 3447 | |
| 3448 | ret = iommu_devinfo_cache_init(); |
| 3449 | if (!ret) |
| 3450 | return ret; |
| 3451 | |
| 3452 | kmem_cache_destroy(iommu_domain_cache); |
| 3453 | domain_error: |
| 3454 | kmem_cache_destroy(iommu_iova_cache); |
| 3455 | |
| 3456 | return -ENOMEM; |
| 3457 | } |
| 3458 | |
| 3459 | static void __init iommu_exit_mempool(void) |
| 3460 | { |
| 3461 | kmem_cache_destroy(iommu_devinfo_cache); |
| 3462 | kmem_cache_destroy(iommu_domain_cache); |
| 3463 | kmem_cache_destroy(iommu_iova_cache); |
| 3464 | |
| 3465 | } |
| 3466 | |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 3467 | static void quirk_ioat_snb_local_iommu(struct pci_dev *pdev) |
| 3468 | { |
| 3469 | struct dmar_drhd_unit *drhd; |
| 3470 | u32 vtbar; |
| 3471 | int rc; |
| 3472 | |
| 3473 | /* We know that this device on this chipset has its own IOMMU. |
| 3474 | * If we find it under a different IOMMU, then the BIOS is lying |
| 3475 | * to us. Hope that the IOMMU for this device is actually |
| 3476 | * disabled, and it needs no translation... |
| 3477 | */ |
| 3478 | rc = pci_bus_read_config_dword(pdev->bus, PCI_DEVFN(0, 0), 0xb0, &vtbar); |
| 3479 | if (rc) { |
| 3480 | /* "can't" happen */ |
| 3481 | dev_info(&pdev->dev, "failed to run vt-d quirk\n"); |
| 3482 | return; |
| 3483 | } |
| 3484 | vtbar &= 0xffff0000; |
| 3485 | |
| 3486 | /* we know that the this iommu should be at offset 0xa000 from vtbar */ |
| 3487 | drhd = dmar_find_matched_drhd_unit(pdev); |
| 3488 | if (WARN_TAINT_ONCE(!drhd || drhd->reg_base_addr - vtbar != 0xa000, |
| 3489 | TAINT_FIRMWARE_WORKAROUND, |
| 3490 | "BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device\n")) |
| 3491 | pdev->dev.archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO; |
| 3492 | } |
| 3493 | DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB, quirk_ioat_snb_local_iommu); |
| 3494 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3495 | static void __init init_no_remapping_devices(void) |
| 3496 | { |
| 3497 | struct dmar_drhd_unit *drhd; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3498 | struct device *dev; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3499 | int i; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3500 | |
| 3501 | for_each_drhd_unit(drhd) { |
| 3502 | if (!drhd->include_all) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3503 | for_each_active_dev_scope(drhd->devices, |
| 3504 | drhd->devices_cnt, i, dev) |
| 3505 | break; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3506 | /* ignore DMAR unit if no devices exist */ |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3507 | if (i == drhd->devices_cnt) |
| 3508 | drhd->ignored = 1; |
| 3509 | } |
| 3510 | } |
| 3511 | |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 3512 | for_each_active_drhd_unit(drhd) { |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 3513 | if (drhd->include_all) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3514 | continue; |
| 3515 | |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3516 | for_each_active_dev_scope(drhd->devices, |
| 3517 | drhd->devices_cnt, i, dev) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3518 | if (!dev_is_pci(dev) || !IS_GFX_DEVICE(to_pci_dev(dev))) |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3519 | break; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3520 | if (i < drhd->devices_cnt) |
| 3521 | continue; |
| 3522 | |
David Woodhouse | c0771df | 2011-10-14 20:59:46 +0100 | [diff] [blame] | 3523 | /* This IOMMU has *only* gfx devices. Either bypass it or |
| 3524 | set the gfx_mapped flag, as appropriate */ |
| 3525 | if (dmar_map_gfx) { |
| 3526 | intel_iommu_gfx_mapped = 1; |
| 3527 | } else { |
| 3528 | drhd->ignored = 1; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3529 | for_each_active_dev_scope(drhd->devices, |
| 3530 | drhd->devices_cnt, i, dev) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3531 | dev->archdata.iommu = DUMMY_DEVICE_DOMAIN_INFO; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 3532 | } |
| 3533 | } |
| 3534 | } |
| 3535 | |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3536 | #ifdef CONFIG_SUSPEND |
| 3537 | static int init_iommu_hw(void) |
| 3538 | { |
| 3539 | struct dmar_drhd_unit *drhd; |
| 3540 | struct intel_iommu *iommu = NULL; |
| 3541 | |
| 3542 | for_each_active_iommu(iommu, drhd) |
| 3543 | if (iommu->qi) |
| 3544 | dmar_reenable_qi(iommu); |
| 3545 | |
Joseph Cihula | b779260 | 2011-05-03 00:08:37 -0700 | [diff] [blame] | 3546 | for_each_iommu(iommu, drhd) { |
| 3547 | if (drhd->ignored) { |
| 3548 | /* |
| 3549 | * we always have to disable PMRs or DMA may fail on |
| 3550 | * this device |
| 3551 | */ |
| 3552 | if (force_on) |
| 3553 | iommu_disable_protect_mem_regions(iommu); |
| 3554 | continue; |
| 3555 | } |
| 3556 | |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3557 | iommu_flush_write_buffer(iommu); |
| 3558 | |
| 3559 | iommu_set_root_entry(iommu); |
| 3560 | |
| 3561 | iommu->flush.flush_context(iommu, 0, 0, 0, |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3562 | DMA_CCMD_GLOBAL_INVL); |
Jiang Liu | 2a41cce | 2014-07-11 14:19:33 +0800 | [diff] [blame] | 3563 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH); |
| 3564 | iommu_enable_translation(iommu); |
David Woodhouse | b94996c | 2009-09-19 15:28:12 -0700 | [diff] [blame] | 3565 | iommu_disable_protect_mem_regions(iommu); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3566 | } |
| 3567 | |
| 3568 | return 0; |
| 3569 | } |
| 3570 | |
| 3571 | static void iommu_flush_all(void) |
| 3572 | { |
| 3573 | struct dmar_drhd_unit *drhd; |
| 3574 | struct intel_iommu *iommu; |
| 3575 | |
| 3576 | for_each_active_iommu(iommu, drhd) { |
| 3577 | iommu->flush.flush_context(iommu, 0, 0, 0, |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3578 | DMA_CCMD_GLOBAL_INVL); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3579 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 3580 | DMA_TLB_GLOBAL_FLUSH); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3581 | } |
| 3582 | } |
| 3583 | |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3584 | static int iommu_suspend(void) |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3585 | { |
| 3586 | struct dmar_drhd_unit *drhd; |
| 3587 | struct intel_iommu *iommu = NULL; |
| 3588 | unsigned long flag; |
| 3589 | |
| 3590 | for_each_active_iommu(iommu, drhd) { |
| 3591 | iommu->iommu_state = kzalloc(sizeof(u32) * MAX_SR_DMAR_REGS, |
| 3592 | GFP_ATOMIC); |
| 3593 | if (!iommu->iommu_state) |
| 3594 | goto nomem; |
| 3595 | } |
| 3596 | |
| 3597 | iommu_flush_all(); |
| 3598 | |
| 3599 | for_each_active_iommu(iommu, drhd) { |
| 3600 | iommu_disable_translation(iommu); |
| 3601 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 3602 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3603 | |
| 3604 | iommu->iommu_state[SR_DMAR_FECTL_REG] = |
| 3605 | readl(iommu->reg + DMAR_FECTL_REG); |
| 3606 | iommu->iommu_state[SR_DMAR_FEDATA_REG] = |
| 3607 | readl(iommu->reg + DMAR_FEDATA_REG); |
| 3608 | iommu->iommu_state[SR_DMAR_FEADDR_REG] = |
| 3609 | readl(iommu->reg + DMAR_FEADDR_REG); |
| 3610 | iommu->iommu_state[SR_DMAR_FEUADDR_REG] = |
| 3611 | readl(iommu->reg + DMAR_FEUADDR_REG); |
| 3612 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 3613 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3614 | } |
| 3615 | return 0; |
| 3616 | |
| 3617 | nomem: |
| 3618 | for_each_active_iommu(iommu, drhd) |
| 3619 | kfree(iommu->iommu_state); |
| 3620 | |
| 3621 | return -ENOMEM; |
| 3622 | } |
| 3623 | |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3624 | static void iommu_resume(void) |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3625 | { |
| 3626 | struct dmar_drhd_unit *drhd; |
| 3627 | struct intel_iommu *iommu = NULL; |
| 3628 | unsigned long flag; |
| 3629 | |
| 3630 | if (init_iommu_hw()) { |
Joseph Cihula | b779260 | 2011-05-03 00:08:37 -0700 | [diff] [blame] | 3631 | if (force_on) |
| 3632 | panic("tboot: IOMMU setup failed, DMAR can not resume!\n"); |
| 3633 | else |
| 3634 | WARN(1, "IOMMU setup failed, DMAR can not resume!\n"); |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3635 | return; |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3636 | } |
| 3637 | |
| 3638 | for_each_active_iommu(iommu, drhd) { |
| 3639 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 3640 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3641 | |
| 3642 | writel(iommu->iommu_state[SR_DMAR_FECTL_REG], |
| 3643 | iommu->reg + DMAR_FECTL_REG); |
| 3644 | writel(iommu->iommu_state[SR_DMAR_FEDATA_REG], |
| 3645 | iommu->reg + DMAR_FEDATA_REG); |
| 3646 | writel(iommu->iommu_state[SR_DMAR_FEADDR_REG], |
| 3647 | iommu->reg + DMAR_FEADDR_REG); |
| 3648 | writel(iommu->iommu_state[SR_DMAR_FEUADDR_REG], |
| 3649 | iommu->reg + DMAR_FEUADDR_REG); |
| 3650 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 3651 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3652 | } |
| 3653 | |
| 3654 | for_each_active_iommu(iommu, drhd) |
| 3655 | kfree(iommu->iommu_state); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3656 | } |
| 3657 | |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3658 | static struct syscore_ops iommu_syscore_ops = { |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3659 | .resume = iommu_resume, |
| 3660 | .suspend = iommu_suspend, |
| 3661 | }; |
| 3662 | |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3663 | static void __init init_iommu_pm_ops(void) |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3664 | { |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 3665 | register_syscore_ops(&iommu_syscore_ops); |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3666 | } |
| 3667 | |
| 3668 | #else |
Rafael J. Wysocki | 99592ba | 2011-06-07 21:32:31 +0200 | [diff] [blame] | 3669 | static inline void init_iommu_pm_ops(void) {} |
Fenghua Yu | f59c7b6 | 2009-03-27 14:22:42 -0700 | [diff] [blame] | 3670 | #endif /* CONFIG_PM */ |
| 3671 | |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3672 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 3673 | int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg) |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3674 | { |
| 3675 | struct acpi_dmar_reserved_memory *rmrr; |
| 3676 | struct dmar_rmrr_unit *rmrru; |
| 3677 | |
| 3678 | rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL); |
| 3679 | if (!rmrru) |
| 3680 | return -ENOMEM; |
| 3681 | |
| 3682 | rmrru->hdr = header; |
| 3683 | rmrr = (struct acpi_dmar_reserved_memory *)header; |
| 3684 | rmrru->base_address = rmrr->base_address; |
| 3685 | rmrru->end_address = rmrr->end_address; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 3686 | rmrru->devices = dmar_alloc_dev_scope((void *)(rmrr + 1), |
| 3687 | ((void *)rmrr) + rmrr->header.length, |
| 3688 | &rmrru->devices_cnt); |
| 3689 | if (rmrru->devices_cnt && rmrru->devices == NULL) { |
| 3690 | kfree(rmrru); |
| 3691 | return -ENOMEM; |
| 3692 | } |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3693 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 3694 | list_add(&rmrru->list, &dmar_rmrr_units); |
| 3695 | |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3696 | return 0; |
| 3697 | } |
| 3698 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3699 | static struct dmar_atsr_unit *dmar_find_atsr(struct acpi_dmar_atsr *atsr) |
| 3700 | { |
| 3701 | struct dmar_atsr_unit *atsru; |
| 3702 | struct acpi_dmar_atsr *tmp; |
| 3703 | |
| 3704 | list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) { |
| 3705 | tmp = (struct acpi_dmar_atsr *)atsru->hdr; |
| 3706 | if (atsr->segment != tmp->segment) |
| 3707 | continue; |
| 3708 | if (atsr->header.length != tmp->header.length) |
| 3709 | continue; |
| 3710 | if (memcmp(atsr, tmp, atsr->header.length) == 0) |
| 3711 | return atsru; |
| 3712 | } |
| 3713 | |
| 3714 | return NULL; |
| 3715 | } |
| 3716 | |
| 3717 | int dmar_parse_one_atsr(struct acpi_dmar_header *hdr, void *arg) |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3718 | { |
| 3719 | struct acpi_dmar_atsr *atsr; |
| 3720 | struct dmar_atsr_unit *atsru; |
| 3721 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3722 | if (system_state != SYSTEM_BOOTING && !intel_iommu_enabled) |
| 3723 | return 0; |
| 3724 | |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3725 | atsr = container_of(hdr, struct acpi_dmar_atsr, header); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3726 | atsru = dmar_find_atsr(atsr); |
| 3727 | if (atsru) |
| 3728 | return 0; |
| 3729 | |
| 3730 | atsru = kzalloc(sizeof(*atsru) + hdr->length, GFP_KERNEL); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3731 | if (!atsru) |
| 3732 | return -ENOMEM; |
| 3733 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3734 | /* |
| 3735 | * If memory is allocated from slab by ACPI _DSM method, we need to |
| 3736 | * copy the memory content because the memory buffer will be freed |
| 3737 | * on return. |
| 3738 | */ |
| 3739 | atsru->hdr = (void *)(atsru + 1); |
| 3740 | memcpy(atsru->hdr, hdr, hdr->length); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3741 | atsru->include_all = atsr->flags & 0x1; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 3742 | if (!atsru->include_all) { |
| 3743 | atsru->devices = dmar_alloc_dev_scope((void *)(atsr + 1), |
| 3744 | (void *)atsr + atsr->header.length, |
| 3745 | &atsru->devices_cnt); |
| 3746 | if (atsru->devices_cnt && atsru->devices == NULL) { |
| 3747 | kfree(atsru); |
| 3748 | return -ENOMEM; |
| 3749 | } |
| 3750 | } |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3751 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 3752 | list_add_rcu(&atsru->list, &dmar_atsr_units); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3753 | |
| 3754 | return 0; |
| 3755 | } |
| 3756 | |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 3757 | static void intel_iommu_free_atsr(struct dmar_atsr_unit *atsru) |
| 3758 | { |
| 3759 | dmar_free_dev_scope(&atsru->devices, &atsru->devices_cnt); |
| 3760 | kfree(atsru); |
| 3761 | } |
| 3762 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3763 | int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg) |
| 3764 | { |
| 3765 | struct acpi_dmar_atsr *atsr; |
| 3766 | struct dmar_atsr_unit *atsru; |
| 3767 | |
| 3768 | atsr = container_of(hdr, struct acpi_dmar_atsr, header); |
| 3769 | atsru = dmar_find_atsr(atsr); |
| 3770 | if (atsru) { |
| 3771 | list_del_rcu(&atsru->list); |
| 3772 | synchronize_rcu(); |
| 3773 | intel_iommu_free_atsr(atsru); |
| 3774 | } |
| 3775 | |
| 3776 | return 0; |
| 3777 | } |
| 3778 | |
| 3779 | int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg) |
| 3780 | { |
| 3781 | int i; |
| 3782 | struct device *dev; |
| 3783 | struct acpi_dmar_atsr *atsr; |
| 3784 | struct dmar_atsr_unit *atsru; |
| 3785 | |
| 3786 | atsr = container_of(hdr, struct acpi_dmar_atsr, header); |
| 3787 | atsru = dmar_find_atsr(atsr); |
| 3788 | if (!atsru) |
| 3789 | return 0; |
| 3790 | |
| 3791 | if (!atsru->include_all && atsru->devices && atsru->devices_cnt) |
| 3792 | for_each_active_dev_scope(atsru->devices, atsru->devices_cnt, |
| 3793 | i, dev) |
| 3794 | return -EBUSY; |
| 3795 | |
| 3796 | return 0; |
| 3797 | } |
| 3798 | |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 3799 | static int intel_iommu_add(struct dmar_drhd_unit *dmaru) |
| 3800 | { |
| 3801 | int sp, ret = 0; |
| 3802 | struct intel_iommu *iommu = dmaru->iommu; |
| 3803 | |
| 3804 | if (g_iommus[iommu->seq_id]) |
| 3805 | return 0; |
| 3806 | |
| 3807 | if (hw_pass_through && !ecap_pass_through(iommu->ecap)) { |
| 3808 | pr_warn("IOMMU: %s doesn't support hardware pass through.\n", |
| 3809 | iommu->name); |
| 3810 | return -ENXIO; |
| 3811 | } |
| 3812 | if (!ecap_sc_support(iommu->ecap) && |
| 3813 | domain_update_iommu_snooping(iommu)) { |
| 3814 | pr_warn("IOMMU: %s doesn't support snooping.\n", |
| 3815 | iommu->name); |
| 3816 | return -ENXIO; |
| 3817 | } |
| 3818 | sp = domain_update_iommu_superpage(iommu) - 1; |
| 3819 | if (sp >= 0 && !(cap_super_page_val(iommu->cap) & (1 << sp))) { |
| 3820 | pr_warn("IOMMU: %s doesn't support large page.\n", |
| 3821 | iommu->name); |
| 3822 | return -ENXIO; |
| 3823 | } |
| 3824 | |
| 3825 | /* |
| 3826 | * Disable translation if already enabled prior to OS handover. |
| 3827 | */ |
| 3828 | if (iommu->gcmd & DMA_GCMD_TE) |
| 3829 | iommu_disable_translation(iommu); |
| 3830 | |
| 3831 | g_iommus[iommu->seq_id] = iommu; |
| 3832 | ret = iommu_init_domains(iommu); |
| 3833 | if (ret == 0) |
| 3834 | ret = iommu_alloc_root_entry(iommu); |
| 3835 | if (ret) |
| 3836 | goto out; |
| 3837 | |
| 3838 | if (dmaru->ignored) { |
| 3839 | /* |
| 3840 | * we always have to disable PMRs or DMA may fail on this device |
| 3841 | */ |
| 3842 | if (force_on) |
| 3843 | iommu_disable_protect_mem_regions(iommu); |
| 3844 | return 0; |
| 3845 | } |
| 3846 | |
| 3847 | intel_iommu_init_qi(iommu); |
| 3848 | iommu_flush_write_buffer(iommu); |
| 3849 | ret = dmar_set_interrupt(iommu); |
| 3850 | if (ret) |
| 3851 | goto disable_iommu; |
| 3852 | |
| 3853 | iommu_set_root_entry(iommu); |
| 3854 | iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL); |
| 3855 | iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH); |
| 3856 | iommu_enable_translation(iommu); |
| 3857 | |
| 3858 | if (si_domain) { |
| 3859 | ret = iommu_attach_domain(si_domain, iommu); |
| 3860 | if (ret < 0 || si_domain->id != ret) |
| 3861 | goto disable_iommu; |
| 3862 | domain_attach_iommu(si_domain, iommu); |
| 3863 | } |
| 3864 | |
| 3865 | iommu_disable_protect_mem_regions(iommu); |
| 3866 | return 0; |
| 3867 | |
| 3868 | disable_iommu: |
| 3869 | disable_dmar_iommu(iommu); |
| 3870 | out: |
| 3871 | free_dmar_iommu(iommu); |
| 3872 | return ret; |
| 3873 | } |
| 3874 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3875 | int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert) |
| 3876 | { |
Jiang Liu | ffebeb4 | 2014-11-09 22:48:02 +0800 | [diff] [blame] | 3877 | int ret = 0; |
| 3878 | struct intel_iommu *iommu = dmaru->iommu; |
| 3879 | |
| 3880 | if (!intel_iommu_enabled) |
| 3881 | return 0; |
| 3882 | if (iommu == NULL) |
| 3883 | return -EINVAL; |
| 3884 | |
| 3885 | if (insert) { |
| 3886 | ret = intel_iommu_add(dmaru); |
| 3887 | } else { |
| 3888 | disable_dmar_iommu(iommu); |
| 3889 | free_dmar_iommu(iommu); |
| 3890 | } |
| 3891 | |
| 3892 | return ret; |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 3893 | } |
| 3894 | |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 3895 | static void intel_iommu_free_dmars(void) |
| 3896 | { |
| 3897 | struct dmar_rmrr_unit *rmrru, *rmrr_n; |
| 3898 | struct dmar_atsr_unit *atsru, *atsr_n; |
| 3899 | |
| 3900 | list_for_each_entry_safe(rmrru, rmrr_n, &dmar_rmrr_units, list) { |
| 3901 | list_del(&rmrru->list); |
| 3902 | dmar_free_dev_scope(&rmrru->devices, &rmrru->devices_cnt); |
| 3903 | kfree(rmrru); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3904 | } |
| 3905 | |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 3906 | list_for_each_entry_safe(atsru, atsr_n, &dmar_atsr_units, list) { |
| 3907 | list_del(&atsru->list); |
| 3908 | intel_iommu_free_atsr(atsru); |
| 3909 | } |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3910 | } |
| 3911 | |
| 3912 | int dmar_find_matched_atsr_unit(struct pci_dev *dev) |
| 3913 | { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3914 | int i, ret = 1; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3915 | struct pci_bus *bus; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3916 | struct pci_dev *bridge = NULL; |
| 3917 | struct device *tmp; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3918 | struct acpi_dmar_atsr *atsr; |
| 3919 | struct dmar_atsr_unit *atsru; |
| 3920 | |
| 3921 | dev = pci_physfn(dev); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3922 | for (bus = dev->bus; bus; bus = bus->parent) { |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3923 | bridge = bus->self; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3924 | if (!bridge || !pci_is_pcie(bridge) || |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 3925 | pci_pcie_type(bridge) == PCI_EXP_TYPE_PCI_BRIDGE) |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3926 | return 0; |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3927 | if (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT) |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3928 | break; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3929 | } |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3930 | if (!bridge) |
| 3931 | return 0; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3932 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 3933 | rcu_read_lock(); |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3934 | list_for_each_entry_rcu(atsru, &dmar_atsr_units, list) { |
| 3935 | atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header); |
| 3936 | if (atsr->segment != pci_domain_nr(dev->bus)) |
| 3937 | continue; |
| 3938 | |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3939 | for_each_dev_scope(atsru->devices, atsru->devices_cnt, i, tmp) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 3940 | if (tmp == &bridge->dev) |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3941 | goto out; |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3942 | |
| 3943 | if (atsru->include_all) |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3944 | goto out; |
Jiang Liu | b5f82dd | 2014-02-19 14:07:31 +0800 | [diff] [blame] | 3945 | } |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3946 | ret = 0; |
| 3947 | out: |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 3948 | rcu_read_unlock(); |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3949 | |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 3950 | return ret; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 3951 | } |
| 3952 | |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 3953 | int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info) |
| 3954 | { |
| 3955 | int ret = 0; |
| 3956 | struct dmar_rmrr_unit *rmrru; |
| 3957 | struct dmar_atsr_unit *atsru; |
| 3958 | struct acpi_dmar_atsr *atsr; |
| 3959 | struct acpi_dmar_reserved_memory *rmrr; |
| 3960 | |
| 3961 | if (!intel_iommu_enabled && system_state != SYSTEM_BOOTING) |
| 3962 | return 0; |
| 3963 | |
| 3964 | list_for_each_entry(rmrru, &dmar_rmrr_units, list) { |
| 3965 | rmrr = container_of(rmrru->hdr, |
| 3966 | struct acpi_dmar_reserved_memory, header); |
| 3967 | if (info->event == BUS_NOTIFY_ADD_DEVICE) { |
| 3968 | ret = dmar_insert_dev_scope(info, (void *)(rmrr + 1), |
| 3969 | ((void *)rmrr) + rmrr->header.length, |
| 3970 | rmrr->segment, rmrru->devices, |
| 3971 | rmrru->devices_cnt); |
Jiang Liu | 27e2495 | 2014-06-20 15:08:06 +0800 | [diff] [blame] | 3972 | if(ret < 0) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 3973 | return ret; |
| 3974 | } else if (info->event == BUS_NOTIFY_DEL_DEVICE) { |
Jiang Liu | 27e2495 | 2014-06-20 15:08:06 +0800 | [diff] [blame] | 3975 | dmar_remove_dev_scope(info, rmrr->segment, |
| 3976 | rmrru->devices, rmrru->devices_cnt); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 3977 | } |
| 3978 | } |
| 3979 | |
| 3980 | list_for_each_entry(atsru, &dmar_atsr_units, list) { |
| 3981 | if (atsru->include_all) |
| 3982 | continue; |
| 3983 | |
| 3984 | atsr = container_of(atsru->hdr, struct acpi_dmar_atsr, header); |
| 3985 | if (info->event == BUS_NOTIFY_ADD_DEVICE) { |
| 3986 | ret = dmar_insert_dev_scope(info, (void *)(atsr + 1), |
| 3987 | (void *)atsr + atsr->header.length, |
| 3988 | atsr->segment, atsru->devices, |
| 3989 | atsru->devices_cnt); |
| 3990 | if (ret > 0) |
| 3991 | break; |
| 3992 | else if(ret < 0) |
| 3993 | return ret; |
| 3994 | } else if (info->event == BUS_NOTIFY_DEL_DEVICE) { |
| 3995 | if (dmar_remove_dev_scope(info, atsr->segment, |
| 3996 | atsru->devices, atsru->devices_cnt)) |
| 3997 | break; |
| 3998 | } |
| 3999 | } |
| 4000 | |
| 4001 | return 0; |
| 4002 | } |
| 4003 | |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4004 | /* |
| 4005 | * Here we only respond to action of unbound device from driver. |
| 4006 | * |
| 4007 | * Added device is not attached to its DMAR domain here yet. That will happen |
| 4008 | * when mapping the device to iova. |
| 4009 | */ |
| 4010 | static int device_notifier(struct notifier_block *nb, |
| 4011 | unsigned long action, void *data) |
| 4012 | { |
| 4013 | struct device *dev = data; |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4014 | struct dmar_domain *domain; |
| 4015 | |
David Woodhouse | 3d89194 | 2014-03-06 15:59:26 +0000 | [diff] [blame] | 4016 | if (iommu_dummy(dev)) |
David Woodhouse | 44cd613 | 2009-12-02 10:18:30 +0000 | [diff] [blame] | 4017 | return 0; |
| 4018 | |
Joerg Roedel | 1196c2f | 2014-09-30 13:02:03 +0200 | [diff] [blame] | 4019 | if (action != BUS_NOTIFY_REMOVED_DEVICE) |
Jiang Liu | 7e7dfab | 2014-02-19 14:07:23 +0800 | [diff] [blame] | 4020 | return 0; |
| 4021 | |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 4022 | domain = find_domain(dev); |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4023 | if (!domain) |
| 4024 | return 0; |
| 4025 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4026 | down_read(&dmar_global_lock); |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4027 | domain_remove_one_dev_info(domain, dev); |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 4028 | if (!domain_type_is_vm_or_si(domain) && list_empty(&domain->devices)) |
Jiang Liu | 7e7dfab | 2014-02-19 14:07:23 +0800 | [diff] [blame] | 4029 | domain_exit(domain); |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4030 | up_read(&dmar_global_lock); |
Alex Williamson | a97590e | 2011-03-04 14:52:16 -0700 | [diff] [blame] | 4031 | |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4032 | return 0; |
| 4033 | } |
| 4034 | |
| 4035 | static struct notifier_block device_nb = { |
| 4036 | .notifier_call = device_notifier, |
| 4037 | }; |
| 4038 | |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4039 | static int intel_iommu_memory_notifier(struct notifier_block *nb, |
| 4040 | unsigned long val, void *v) |
| 4041 | { |
| 4042 | struct memory_notify *mhp = v; |
| 4043 | unsigned long long start, end; |
| 4044 | unsigned long start_vpfn, last_vpfn; |
| 4045 | |
| 4046 | switch (val) { |
| 4047 | case MEM_GOING_ONLINE: |
| 4048 | start = mhp->start_pfn << PAGE_SHIFT; |
| 4049 | end = ((mhp->start_pfn + mhp->nr_pages) << PAGE_SHIFT) - 1; |
| 4050 | if (iommu_domain_identity_map(si_domain, start, end)) { |
| 4051 | pr_warn("dmar: failed to build identity map for [%llx-%llx]\n", |
| 4052 | start, end); |
| 4053 | return NOTIFY_BAD; |
| 4054 | } |
| 4055 | break; |
| 4056 | |
| 4057 | case MEM_OFFLINE: |
| 4058 | case MEM_CANCEL_ONLINE: |
| 4059 | start_vpfn = mm_to_dma_pfn(mhp->start_pfn); |
| 4060 | last_vpfn = mm_to_dma_pfn(mhp->start_pfn + mhp->nr_pages - 1); |
| 4061 | while (start_vpfn <= last_vpfn) { |
| 4062 | struct iova *iova; |
| 4063 | struct dmar_drhd_unit *drhd; |
| 4064 | struct intel_iommu *iommu; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4065 | struct page *freelist; |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4066 | |
| 4067 | iova = find_iova(&si_domain->iovad, start_vpfn); |
| 4068 | if (iova == NULL) { |
| 4069 | pr_debug("dmar: failed get IOVA for PFN %lx\n", |
| 4070 | start_vpfn); |
| 4071 | break; |
| 4072 | } |
| 4073 | |
| 4074 | iova = split_and_remove_iova(&si_domain->iovad, iova, |
| 4075 | start_vpfn, last_vpfn); |
| 4076 | if (iova == NULL) { |
| 4077 | pr_warn("dmar: failed to split IOVA PFN [%lx-%lx]\n", |
| 4078 | start_vpfn, last_vpfn); |
| 4079 | return NOTIFY_BAD; |
| 4080 | } |
| 4081 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4082 | freelist = domain_unmap(si_domain, iova->pfn_lo, |
| 4083 | iova->pfn_hi); |
| 4084 | |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4085 | rcu_read_lock(); |
| 4086 | for_each_active_iommu(iommu, drhd) |
| 4087 | iommu_flush_iotlb_psi(iommu, si_domain->id, |
Jiang Liu | a156ef9 | 2014-07-11 14:19:36 +0800 | [diff] [blame] | 4088 | iova->pfn_lo, iova_size(iova), |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4089 | !freelist, 0); |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4090 | rcu_read_unlock(); |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4091 | dma_free_pagelist(freelist); |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4092 | |
| 4093 | start_vpfn = iova->pfn_hi + 1; |
| 4094 | free_iova_mem(iova); |
| 4095 | } |
| 4096 | break; |
| 4097 | } |
| 4098 | |
| 4099 | return NOTIFY_OK; |
| 4100 | } |
| 4101 | |
| 4102 | static struct notifier_block intel_iommu_memory_nb = { |
| 4103 | .notifier_call = intel_iommu_memory_notifier, |
| 4104 | .priority = 0 |
| 4105 | }; |
| 4106 | |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4107 | |
| 4108 | static ssize_t intel_iommu_show_version(struct device *dev, |
| 4109 | struct device_attribute *attr, |
| 4110 | char *buf) |
| 4111 | { |
| 4112 | struct intel_iommu *iommu = dev_get_drvdata(dev); |
| 4113 | u32 ver = readl(iommu->reg + DMAR_VER_REG); |
| 4114 | return sprintf(buf, "%d:%d\n", |
| 4115 | DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver)); |
| 4116 | } |
| 4117 | static DEVICE_ATTR(version, S_IRUGO, intel_iommu_show_version, NULL); |
| 4118 | |
| 4119 | static ssize_t intel_iommu_show_address(struct device *dev, |
| 4120 | struct device_attribute *attr, |
| 4121 | char *buf) |
| 4122 | { |
| 4123 | struct intel_iommu *iommu = dev_get_drvdata(dev); |
| 4124 | return sprintf(buf, "%llx\n", iommu->reg_phys); |
| 4125 | } |
| 4126 | static DEVICE_ATTR(address, S_IRUGO, intel_iommu_show_address, NULL); |
| 4127 | |
| 4128 | static ssize_t intel_iommu_show_cap(struct device *dev, |
| 4129 | struct device_attribute *attr, |
| 4130 | char *buf) |
| 4131 | { |
| 4132 | struct intel_iommu *iommu = dev_get_drvdata(dev); |
| 4133 | return sprintf(buf, "%llx\n", iommu->cap); |
| 4134 | } |
| 4135 | static DEVICE_ATTR(cap, S_IRUGO, intel_iommu_show_cap, NULL); |
| 4136 | |
| 4137 | static ssize_t intel_iommu_show_ecap(struct device *dev, |
| 4138 | struct device_attribute *attr, |
| 4139 | char *buf) |
| 4140 | { |
| 4141 | struct intel_iommu *iommu = dev_get_drvdata(dev); |
| 4142 | return sprintf(buf, "%llx\n", iommu->ecap); |
| 4143 | } |
| 4144 | static DEVICE_ATTR(ecap, S_IRUGO, intel_iommu_show_ecap, NULL); |
| 4145 | |
| 4146 | static struct attribute *intel_iommu_attrs[] = { |
| 4147 | &dev_attr_version.attr, |
| 4148 | &dev_attr_address.attr, |
| 4149 | &dev_attr_cap.attr, |
| 4150 | &dev_attr_ecap.attr, |
| 4151 | NULL, |
| 4152 | }; |
| 4153 | |
| 4154 | static struct attribute_group intel_iommu_group = { |
| 4155 | .name = "intel-iommu", |
| 4156 | .attrs = intel_iommu_attrs, |
| 4157 | }; |
| 4158 | |
| 4159 | const struct attribute_group *intel_iommu_groups[] = { |
| 4160 | &intel_iommu_group, |
| 4161 | NULL, |
| 4162 | }; |
| 4163 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4164 | int __init intel_iommu_init(void) |
| 4165 | { |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4166 | int ret = -ENODEV; |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 4167 | struct dmar_drhd_unit *drhd; |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 4168 | struct intel_iommu *iommu; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4169 | |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4170 | /* VT-d is required for a TXT/tboot launch, so enforce that */ |
| 4171 | force_on = tboot_force_iommu(); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4172 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4173 | if (iommu_init_mempool()) { |
| 4174 | if (force_on) |
| 4175 | panic("tboot: Failed to initialize iommu memory\n"); |
| 4176 | return -ENOMEM; |
| 4177 | } |
| 4178 | |
| 4179 | down_write(&dmar_global_lock); |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4180 | if (dmar_table_init()) { |
| 4181 | if (force_on) |
| 4182 | panic("tboot: Failed to initialize DMAR table\n"); |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4183 | goto out_free_dmar; |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4184 | } |
| 4185 | |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 4186 | /* |
| 4187 | * Disable translation if already enabled prior to OS handover. |
| 4188 | */ |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 4189 | for_each_active_iommu(iommu, drhd) |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 4190 | if (iommu->gcmd & DMA_GCMD_TE) |
| 4191 | iommu_disable_translation(iommu); |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 4192 | |
Suresh Siddha | c2c7286 | 2011-08-23 17:05:19 -0700 | [diff] [blame] | 4193 | if (dmar_dev_scope_init() < 0) { |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4194 | if (force_on) |
| 4195 | panic("tboot: Failed to initialize DMAR device scope\n"); |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4196 | goto out_free_dmar; |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4197 | } |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 4198 | |
FUJITA Tomonori | 75f1cdf | 2009-11-10 19:46:20 +0900 | [diff] [blame] | 4199 | if (no_iommu || dmar_disabled) |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4200 | goto out_free_dmar; |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 4201 | |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 4202 | if (list_empty(&dmar_rmrr_units)) |
| 4203 | printk(KERN_INFO "DMAR: No RMRR found\n"); |
| 4204 | |
| 4205 | if (list_empty(&dmar_atsr_units)) |
| 4206 | printk(KERN_INFO "DMAR: No ATSR found\n"); |
| 4207 | |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 4208 | if (dmar_init_reserved_ranges()) { |
| 4209 | if (force_on) |
| 4210 | panic("tboot: Failed to reserve iommu ranges\n"); |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4211 | goto out_free_reserved_range; |
Joseph Cihula | 51a63e6 | 2011-03-21 11:04:24 -0700 | [diff] [blame] | 4212 | } |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4213 | |
| 4214 | init_no_remapping_devices(); |
| 4215 | |
Joseph Cihula | b779260 | 2011-05-03 00:08:37 -0700 | [diff] [blame] | 4216 | ret = init_dmars(); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4217 | if (ret) { |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 4218 | if (force_on) |
| 4219 | panic("tboot: Failed to initialize DMARs\n"); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4220 | printk(KERN_ERR "IOMMU: dmar init failed\n"); |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4221 | goto out_free_reserved_range; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4222 | } |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4223 | up_write(&dmar_global_lock); |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4224 | printk(KERN_INFO |
| 4225 | "PCI-DMA: Intel(R) Virtualization Technology for Directed I/O\n"); |
| 4226 | |
mark gross | 5e0d2a6 | 2008-03-04 15:22:08 -0800 | [diff] [blame] | 4227 | init_timer(&unmap_timer); |
FUJITA Tomonori | 75f1cdf | 2009-11-10 19:46:20 +0900 | [diff] [blame] | 4228 | #ifdef CONFIG_SWIOTLB |
| 4229 | swiotlb = 0; |
| 4230 | #endif |
David Woodhouse | 19943b0 | 2009-08-04 16:19:20 +0100 | [diff] [blame] | 4231 | dma_ops = &intel_dma_ops; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 4232 | |
Rafael J. Wysocki | 134fac3 | 2011-03-23 22:16:14 +0100 | [diff] [blame] | 4233 | init_iommu_pm_ops(); |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 4234 | |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4235 | for_each_active_iommu(iommu, drhd) |
| 4236 | iommu->iommu_dev = iommu_device_create(NULL, iommu, |
| 4237 | intel_iommu_groups, |
| 4238 | iommu->name); |
| 4239 | |
Joerg Roedel | 4236d97d | 2011-09-06 17:56:07 +0200 | [diff] [blame] | 4240 | bus_set_iommu(&pci_bus_type, &intel_iommu_ops); |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4241 | bus_register_notifier(&pci_bus_type, &device_nb); |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 4242 | if (si_domain && !hw_pass_through) |
| 4243 | register_memory_notifier(&intel_iommu_memory_nb); |
Fenghua Yu | 99dcade | 2009-11-11 07:23:06 -0800 | [diff] [blame] | 4244 | |
Eugeni Dodonov | 8bc1f85 | 2011-11-23 16:42:14 -0200 | [diff] [blame] | 4245 | intel_iommu_enabled = 1; |
| 4246 | |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4247 | return 0; |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4248 | |
| 4249 | out_free_reserved_range: |
| 4250 | put_iova_domain(&reserved_iova_list); |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4251 | out_free_dmar: |
| 4252 | intel_iommu_free_dmars(); |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 4253 | up_write(&dmar_global_lock); |
| 4254 | iommu_exit_mempool(); |
Jiang Liu | 9bdc531 | 2014-01-06 14:18:27 +0800 | [diff] [blame] | 4255 | return ret; |
Keshavamurthy, Anil S | ba39592 | 2007-10-21 16:41:49 -0700 | [diff] [blame] | 4256 | } |
Keshavamurthy, Anil S | e820482 | 2007-10-21 16:41:55 -0700 | [diff] [blame] | 4257 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 4258 | static int iommu_detach_dev_cb(struct pci_dev *pdev, u16 alias, void *opaque) |
| 4259 | { |
| 4260 | struct intel_iommu *iommu = opaque; |
| 4261 | |
| 4262 | iommu_detach_dev(iommu, PCI_BUS_NUM(alias), alias & 0xff); |
| 4263 | return 0; |
| 4264 | } |
| 4265 | |
| 4266 | /* |
| 4267 | * NB - intel-iommu lacks any sort of reference counting for the users of |
| 4268 | * dependent devices. If multiple endpoints have intersecting dependent |
| 4269 | * devices, unbinding the driver from any one of them will possibly leave |
| 4270 | * the others unable to operate. |
| 4271 | */ |
Han, Weidong | 3199aa6 | 2009-02-26 17:31:12 +0800 | [diff] [blame] | 4272 | static void iommu_detach_dependent_devices(struct intel_iommu *iommu, |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 4273 | struct device *dev) |
Han, Weidong | 3199aa6 | 2009-02-26 17:31:12 +0800 | [diff] [blame] | 4274 | { |
David Woodhouse | 0bcb3e2 | 2014-03-06 17:12:03 +0000 | [diff] [blame] | 4275 | if (!iommu || !dev || !dev_is_pci(dev)) |
Han, Weidong | 3199aa6 | 2009-02-26 17:31:12 +0800 | [diff] [blame] | 4276 | return; |
| 4277 | |
Alex Williamson | 579305f | 2014-07-03 09:51:43 -0600 | [diff] [blame] | 4278 | pci_for_each_dma_alias(to_pci_dev(dev), &iommu_detach_dev_cb, iommu); |
Han, Weidong | 3199aa6 | 2009-02-26 17:31:12 +0800 | [diff] [blame] | 4279 | } |
| 4280 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 4281 | static void domain_remove_one_dev_info(struct dmar_domain *domain, |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4282 | struct device *dev) |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4283 | { |
Yijing Wang | bca2b91 | 2013-10-31 17:26:04 +0800 | [diff] [blame] | 4284 | struct device_domain_info *info, *tmp; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4285 | struct intel_iommu *iommu; |
| 4286 | unsigned long flags; |
| 4287 | int found = 0; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 4288 | u8 bus, devfn; |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4289 | |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4290 | iommu = device_to_iommu(dev, &bus, &devfn); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4291 | if (!iommu) |
| 4292 | return; |
| 4293 | |
| 4294 | spin_lock_irqsave(&device_domain_lock, flags); |
Yijing Wang | bca2b91 | 2013-10-31 17:26:04 +0800 | [diff] [blame] | 4295 | list_for_each_entry_safe(info, tmp, &domain->devices, link) { |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4296 | if (info->iommu == iommu && info->bus == bus && |
| 4297 | info->devfn == devfn) { |
David Woodhouse | 109b9b0 | 2012-05-25 17:43:02 +0100 | [diff] [blame] | 4298 | unlink_domain_info(info); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4299 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 4300 | |
Yu Zhao | 93a23a7 | 2009-05-18 13:51:37 +0800 | [diff] [blame] | 4301 | iommu_disable_dev_iotlb(info); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4302 | iommu_detach_dev(iommu, info->bus, info->devfn); |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4303 | iommu_detach_dependent_devices(iommu, dev); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4304 | free_devinfo_mem(info); |
| 4305 | |
| 4306 | spin_lock_irqsave(&device_domain_lock, flags); |
| 4307 | |
| 4308 | if (found) |
| 4309 | break; |
| 4310 | else |
| 4311 | continue; |
| 4312 | } |
| 4313 | |
| 4314 | /* if there is no other devices under the same iommu |
| 4315 | * owned by this domain, clear this iommu in iommu_bmp |
| 4316 | * update iommu count and coherency |
| 4317 | */ |
David Woodhouse | 8bbc441 | 2014-03-09 13:52:37 -0700 | [diff] [blame] | 4318 | if (info->iommu == iommu) |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4319 | found = 1; |
| 4320 | } |
| 4321 | |
Roland Dreier | 3e7abe2 | 2011-07-20 06:22:21 -0700 | [diff] [blame] | 4322 | spin_unlock_irqrestore(&device_domain_lock, flags); |
| 4323 | |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4324 | if (found == 0) { |
Jiang Liu | fb170fb | 2014-07-11 14:19:28 +0800 | [diff] [blame] | 4325 | domain_detach_iommu(domain, iommu); |
| 4326 | if (!domain_type_is_vm_or_si(domain)) |
| 4327 | iommu_detach_domain(domain, iommu); |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4328 | } |
Weidong Han | c7151a8 | 2008-12-08 22:51:37 +0800 | [diff] [blame] | 4329 | } |
| 4330 | |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 4331 | static int md_domain_init(struct dmar_domain *domain, int guest_width) |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 4332 | { |
| 4333 | int adjust_width; |
| 4334 | |
| 4335 | init_iova_domain(&domain->iovad, DMA_32BIT_PFN); |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 4336 | domain_reserve_special_ranges(domain); |
| 4337 | |
| 4338 | /* calculate AGAW */ |
| 4339 | domain->gaw = guest_width; |
| 4340 | adjust_width = guestwidth_to_adjustwidth(guest_width); |
| 4341 | domain->agaw = width_to_agaw(adjust_width); |
| 4342 | |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 4343 | domain->iommu_coherency = 0; |
Sheng Yang | c5b1525 | 2009-08-06 13:31:56 +0800 | [diff] [blame] | 4344 | domain->iommu_snooping = 0; |
Youquan Song | 6dd9a7c | 2011-05-25 19:13:49 +0100 | [diff] [blame] | 4345 | domain->iommu_superpage = 0; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4346 | domain->max_addr = 0; |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 4347 | |
| 4348 | /* always allocate the top pgd */ |
Suresh Siddha | 4c923d4 | 2009-10-02 11:01:24 -0700 | [diff] [blame] | 4349 | domain->pgd = (struct dma_pte *)alloc_pgtable_page(domain->nid); |
Weidong Han | 5e98c4b | 2008-12-08 23:03:27 +0800 | [diff] [blame] | 4350 | if (!domain->pgd) |
| 4351 | return -ENOMEM; |
| 4352 | domain_flush_cache(domain, domain->pgd, PAGE_SIZE); |
| 4353 | return 0; |
| 4354 | } |
| 4355 | |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4356 | static int intel_iommu_domain_init(struct iommu_domain *domain) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4357 | { |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4358 | struct dmar_domain *dmar_domain; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4359 | |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 4360 | dmar_domain = alloc_domain(DOMAIN_FLAG_VIRTUAL_MACHINE); |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4361 | if (!dmar_domain) { |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4362 | printk(KERN_ERR |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4363 | "intel_iommu_domain_init: dmar_domain == NULL\n"); |
| 4364 | return -ENOMEM; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4365 | } |
Fenghua Yu | 2c2e2c3 | 2009-06-19 13:47:29 -0700 | [diff] [blame] | 4366 | if (md_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) { |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4367 | printk(KERN_ERR |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4368 | "intel_iommu_domain_init() failed\n"); |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 4369 | domain_exit(dmar_domain); |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4370 | return -ENOMEM; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4371 | } |
Allen Kay | 8140a95 | 2011-10-14 12:32:17 -0700 | [diff] [blame] | 4372 | domain_update_iommu_cap(dmar_domain); |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4373 | domain->priv = dmar_domain; |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4374 | |
Joerg Roedel | 8a0e715 | 2012-01-26 19:40:54 +0100 | [diff] [blame] | 4375 | domain->geometry.aperture_start = 0; |
| 4376 | domain->geometry.aperture_end = __DOMAIN_MAX_ADDR(dmar_domain->gaw); |
| 4377 | domain->geometry.force_aperture = true; |
| 4378 | |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4379 | return 0; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4380 | } |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4381 | |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4382 | static void intel_iommu_domain_destroy(struct iommu_domain *domain) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4383 | { |
Joerg Roedel | 5d45080 | 2008-12-03 14:52:32 +0100 | [diff] [blame] | 4384 | struct dmar_domain *dmar_domain = domain->priv; |
| 4385 | |
| 4386 | domain->priv = NULL; |
Jiang Liu | 92d03cc | 2014-02-19 14:07:28 +0800 | [diff] [blame] | 4387 | domain_exit(dmar_domain); |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4388 | } |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4389 | |
Joerg Roedel | 4c5478c | 2008-12-03 14:58:24 +0100 | [diff] [blame] | 4390 | static int intel_iommu_attach_device(struct iommu_domain *domain, |
| 4391 | struct device *dev) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4392 | { |
Joerg Roedel | 4c5478c | 2008-12-03 14:58:24 +0100 | [diff] [blame] | 4393 | struct dmar_domain *dmar_domain = domain->priv; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4394 | struct intel_iommu *iommu; |
| 4395 | int addr_width; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 4396 | u8 bus, devfn; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4397 | |
Alex Williamson | c875d2c | 2014-07-03 09:57:02 -0600 | [diff] [blame] | 4398 | if (device_is_rmrr_locked(dev)) { |
| 4399 | dev_warn(dev, "Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.\n"); |
| 4400 | return -EPERM; |
| 4401 | } |
| 4402 | |
David Woodhouse | 7207d8f | 2014-03-09 16:31:06 -0700 | [diff] [blame] | 4403 | /* normally dev is not mapped */ |
| 4404 | if (unlikely(domain_context_mapped(dev))) { |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4405 | struct dmar_domain *old_domain; |
| 4406 | |
David Woodhouse | 1525a29 | 2014-03-06 16:19:30 +0000 | [diff] [blame] | 4407 | old_domain = find_domain(dev); |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4408 | if (old_domain) { |
Jiang Liu | ab8dfe2 | 2014-07-11 14:19:27 +0800 | [diff] [blame] | 4409 | if (domain_type_is_vm_or_si(dmar_domain)) |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4410 | domain_remove_one_dev_info(old_domain, dev); |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4411 | else |
| 4412 | domain_remove_dev_info(old_domain); |
Joerg Roedel | 62c2216 | 2014-12-09 12:56:45 +0100 | [diff] [blame] | 4413 | |
| 4414 | if (!domain_type_is_vm_or_si(old_domain) && |
| 4415 | list_empty(&old_domain->devices)) |
| 4416 | domain_exit(old_domain); |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4417 | } |
| 4418 | } |
| 4419 | |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 4420 | iommu = device_to_iommu(dev, &bus, &devfn); |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4421 | if (!iommu) |
| 4422 | return -ENODEV; |
| 4423 | |
| 4424 | /* check if this iommu agaw is sufficient for max mapped address */ |
| 4425 | addr_width = agaw_to_width(iommu->agaw); |
Tom Lyon | a99c47a | 2010-05-17 08:20:45 +0100 | [diff] [blame] | 4426 | if (addr_width > cap_mgaw(iommu->cap)) |
| 4427 | addr_width = cap_mgaw(iommu->cap); |
| 4428 | |
| 4429 | if (dmar_domain->max_addr > (1LL << addr_width)) { |
| 4430 | printk(KERN_ERR "%s: iommu width (%d) is not " |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4431 | "sufficient for the mapped address (%llx)\n", |
Tom Lyon | a99c47a | 2010-05-17 08:20:45 +0100 | [diff] [blame] | 4432 | __func__, addr_width, dmar_domain->max_addr); |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4433 | return -EFAULT; |
| 4434 | } |
Tom Lyon | a99c47a | 2010-05-17 08:20:45 +0100 | [diff] [blame] | 4435 | dmar_domain->gaw = addr_width; |
| 4436 | |
| 4437 | /* |
| 4438 | * Knock out extra levels of page tables if necessary |
| 4439 | */ |
| 4440 | while (iommu->agaw < dmar_domain->agaw) { |
| 4441 | struct dma_pte *pte; |
| 4442 | |
| 4443 | pte = dmar_domain->pgd; |
| 4444 | if (dma_pte_present(pte)) { |
Sheng Yang | 25cbff1 | 2010-06-12 19:21:42 +0800 | [diff] [blame] | 4445 | dmar_domain->pgd = (struct dma_pte *) |
| 4446 | phys_to_virt(dma_pte_addr(pte)); |
Jan Kiszka | 7a66101 | 2010-11-02 08:05:51 +0100 | [diff] [blame] | 4447 | free_pgtable_page(pte); |
Tom Lyon | a99c47a | 2010-05-17 08:20:45 +0100 | [diff] [blame] | 4448 | } |
| 4449 | dmar_domain->agaw--; |
| 4450 | } |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4451 | |
David Woodhouse | 5913c9b | 2014-03-09 16:27:31 -0700 | [diff] [blame] | 4452 | return domain_add_dev_info(dmar_domain, dev, CONTEXT_TT_MULTI_LEVEL); |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4453 | } |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4454 | |
Joerg Roedel | 4c5478c | 2008-12-03 14:58:24 +0100 | [diff] [blame] | 4455 | static void intel_iommu_detach_device(struct iommu_domain *domain, |
| 4456 | struct device *dev) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4457 | { |
Joerg Roedel | 4c5478c | 2008-12-03 14:58:24 +0100 | [diff] [blame] | 4458 | struct dmar_domain *dmar_domain = domain->priv; |
Joerg Roedel | 4c5478c | 2008-12-03 14:58:24 +0100 | [diff] [blame] | 4459 | |
David Woodhouse | bf9c9ed | 2014-03-09 16:19:13 -0700 | [diff] [blame] | 4460 | domain_remove_one_dev_info(dmar_domain, dev); |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4461 | } |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4462 | |
Joerg Roedel | b146a1c9f | 2010-01-20 17:17:37 +0100 | [diff] [blame] | 4463 | static int intel_iommu_map(struct iommu_domain *domain, |
| 4464 | unsigned long iova, phys_addr_t hpa, |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 4465 | size_t size, int iommu_prot) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4466 | { |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4467 | struct dmar_domain *dmar_domain = domain->priv; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4468 | u64 max_addr; |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4469 | int prot = 0; |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4470 | int ret; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4471 | |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4472 | if (iommu_prot & IOMMU_READ) |
| 4473 | prot |= DMA_PTE_READ; |
| 4474 | if (iommu_prot & IOMMU_WRITE) |
| 4475 | prot |= DMA_PTE_WRITE; |
Sheng Yang | 9cf0669 | 2009-03-18 15:33:07 +0800 | [diff] [blame] | 4476 | if ((iommu_prot & IOMMU_CACHE) && dmar_domain->iommu_snooping) |
| 4477 | prot |= DMA_PTE_SNP; |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4478 | |
David Woodhouse | 163cc52 | 2009-06-28 00:51:17 +0100 | [diff] [blame] | 4479 | max_addr = iova + size; |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4480 | if (dmar_domain->max_addr < max_addr) { |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4481 | u64 end; |
| 4482 | |
| 4483 | /* check if minimum agaw is sufficient for mapped address */ |
Tom Lyon | 8954da1 | 2010-05-17 08:19:52 +0100 | [diff] [blame] | 4484 | end = __DOMAIN_MAX_ADDR(dmar_domain->gaw) + 1; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4485 | if (end < max_addr) { |
Tom Lyon | 8954da1 | 2010-05-17 08:19:52 +0100 | [diff] [blame] | 4486 | printk(KERN_ERR "%s: iommu width (%d) is not " |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4487 | "sufficient for the mapped address (%llx)\n", |
Tom Lyon | 8954da1 | 2010-05-17 08:19:52 +0100 | [diff] [blame] | 4488 | __func__, dmar_domain->gaw, max_addr); |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4489 | return -EFAULT; |
| 4490 | } |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4491 | dmar_domain->max_addr = max_addr; |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4492 | } |
David Woodhouse | ad05122 | 2009-06-28 14:22:28 +0100 | [diff] [blame] | 4493 | /* Round up size to next multiple of PAGE_SIZE, if it and |
| 4494 | the low bits of hpa would take us onto the next page */ |
David Woodhouse | 88cb6a7 | 2009-06-28 15:03:06 +0100 | [diff] [blame] | 4495 | size = aligned_nrpages(hpa, size); |
David Woodhouse | ad05122 | 2009-06-28 14:22:28 +0100 | [diff] [blame] | 4496 | ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT, |
| 4497 | hpa >> VTD_PAGE_SHIFT, size, prot); |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4498 | return ret; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4499 | } |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4500 | |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 4501 | static size_t intel_iommu_unmap(struct iommu_domain *domain, |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4502 | unsigned long iova, size_t size) |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4503 | { |
Joerg Roedel | dde57a2 | 2008-12-03 15:04:09 +0100 | [diff] [blame] | 4504 | struct dmar_domain *dmar_domain = domain->priv; |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4505 | struct page *freelist = NULL; |
| 4506 | struct intel_iommu *iommu; |
| 4507 | unsigned long start_pfn, last_pfn; |
| 4508 | unsigned int npages; |
| 4509 | int iommu_id, num, ndomains, level = 0; |
Sheng Yang | 4b99d35 | 2009-07-08 11:52:52 +0100 | [diff] [blame] | 4510 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 4511 | /* Cope with horrid API which requires us to unmap more than the |
| 4512 | size argument if it happens to be a large-page mapping. */ |
| 4513 | if (!pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level)) |
| 4514 | BUG(); |
| 4515 | |
| 4516 | if (size < VTD_PAGE_SIZE << level_to_offset_bits(level)) |
| 4517 | size = VTD_PAGE_SIZE << level_to_offset_bits(level); |
| 4518 | |
David Woodhouse | ea8ea46 | 2014-03-05 17:09:32 +0000 | [diff] [blame] | 4519 | start_pfn = iova >> VTD_PAGE_SHIFT; |
| 4520 | last_pfn = (iova + size - 1) >> VTD_PAGE_SHIFT; |
| 4521 | |
| 4522 | freelist = domain_unmap(dmar_domain, start_pfn, last_pfn); |
| 4523 | |
| 4524 | npages = last_pfn - start_pfn + 1; |
| 4525 | |
| 4526 | for_each_set_bit(iommu_id, dmar_domain->iommu_bmp, g_num_of_iommus) { |
| 4527 | iommu = g_iommus[iommu_id]; |
| 4528 | |
| 4529 | /* |
| 4530 | * find bit position of dmar_domain |
| 4531 | */ |
| 4532 | ndomains = cap_ndoms(iommu->cap); |
| 4533 | for_each_set_bit(num, iommu->domain_ids, ndomains) { |
| 4534 | if (iommu->domains[num] == dmar_domain) |
| 4535 | iommu_flush_iotlb_psi(iommu, num, start_pfn, |
| 4536 | npages, !freelist, 0); |
| 4537 | } |
| 4538 | |
| 4539 | } |
| 4540 | |
| 4541 | dma_free_pagelist(freelist); |
Weidong Han | fe40f1e | 2008-12-08 23:10:23 +0800 | [diff] [blame] | 4542 | |
David Woodhouse | 163cc52 | 2009-06-28 00:51:17 +0100 | [diff] [blame] | 4543 | if (dmar_domain->max_addr == iova + size) |
| 4544 | dmar_domain->max_addr = iova; |
Joerg Roedel | b146a1c9f | 2010-01-20 17:17:37 +0100 | [diff] [blame] | 4545 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 4546 | return size; |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4547 | } |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4548 | |
Joerg Roedel | d14d657 | 2008-12-03 15:06:57 +0100 | [diff] [blame] | 4549 | static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain, |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 4550 | dma_addr_t iova) |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4551 | { |
Joerg Roedel | d14d657 | 2008-12-03 15:06:57 +0100 | [diff] [blame] | 4552 | struct dmar_domain *dmar_domain = domain->priv; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4553 | struct dma_pte *pte; |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 4554 | int level = 0; |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4555 | u64 phys = 0; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4556 | |
David Woodhouse | 5cf0a76 | 2014-03-19 16:07:49 +0000 | [diff] [blame] | 4557 | pte = pfn_to_dma_pte(dmar_domain, iova >> VTD_PAGE_SHIFT, &level); |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4558 | if (pte) |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4559 | phys = dma_pte_addr(pte); |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4560 | |
Weidong Han | faa3d6f | 2008-12-08 23:09:29 +0800 | [diff] [blame] | 4561 | return phys; |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 4562 | } |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 4563 | |
Joerg Roedel | 5d587b8 | 2014-09-05 10:50:45 +0200 | [diff] [blame] | 4564 | static bool intel_iommu_capable(enum iommu_cap cap) |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 4565 | { |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 4566 | if (cap == IOMMU_CAP_CACHE_COHERENCY) |
Joerg Roedel | 5d587b8 | 2014-09-05 10:50:45 +0200 | [diff] [blame] | 4567 | return domain_update_iommu_snooping(NULL) == 1; |
Tom Lyon | 323f99c | 2010-07-02 16:56:14 -0400 | [diff] [blame] | 4568 | if (cap == IOMMU_CAP_INTR_REMAP) |
Joerg Roedel | 5d587b8 | 2014-09-05 10:50:45 +0200 | [diff] [blame] | 4569 | return irq_remapping_enabled == 1; |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 4570 | |
Joerg Roedel | 5d587b8 | 2014-09-05 10:50:45 +0200 | [diff] [blame] | 4571 | return false; |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 4572 | } |
| 4573 | |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4574 | static int intel_iommu_add_device(struct device *dev) |
Alex Williamson | 70ae6f0 | 2011-10-21 15:56:11 -0400 | [diff] [blame] | 4575 | { |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4576 | struct intel_iommu *iommu; |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4577 | struct iommu_group *group; |
David Woodhouse | 156baca | 2014-03-09 14:00:57 -0700 | [diff] [blame] | 4578 | u8 bus, devfn; |
Alex Williamson | 70ae6f0 | 2011-10-21 15:56:11 -0400 | [diff] [blame] | 4579 | |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4580 | iommu = device_to_iommu(dev, &bus, &devfn); |
| 4581 | if (!iommu) |
Alex Williamson | 70ae6f0 | 2011-10-21 15:56:11 -0400 | [diff] [blame] | 4582 | return -ENODEV; |
| 4583 | |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4584 | iommu_device_link(iommu->iommu_dev, dev); |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4585 | |
Alex Williamson | e17f9ff | 2014-07-03 09:51:37 -0600 | [diff] [blame] | 4586 | group = iommu_group_get_for_dev(dev); |
Alex Williamson | 783f157 | 2012-05-30 14:19:43 -0600 | [diff] [blame] | 4587 | |
Alex Williamson | e17f9ff | 2014-07-03 09:51:37 -0600 | [diff] [blame] | 4588 | if (IS_ERR(group)) |
| 4589 | return PTR_ERR(group); |
Alex Williamson | 70ae6f0 | 2011-10-21 15:56:11 -0400 | [diff] [blame] | 4590 | |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4591 | iommu_group_put(group); |
Alex Williamson | e17f9ff | 2014-07-03 09:51:37 -0600 | [diff] [blame] | 4592 | return 0; |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4593 | } |
| 4594 | |
| 4595 | static void intel_iommu_remove_device(struct device *dev) |
| 4596 | { |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4597 | struct intel_iommu *iommu; |
| 4598 | u8 bus, devfn; |
| 4599 | |
| 4600 | iommu = device_to_iommu(dev, &bus, &devfn); |
| 4601 | if (!iommu) |
| 4602 | return; |
| 4603 | |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4604 | iommu_group_remove_device(dev); |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 4605 | |
| 4606 | iommu_device_unlink(iommu->iommu_dev, dev); |
Alex Williamson | 70ae6f0 | 2011-10-21 15:56:11 -0400 | [diff] [blame] | 4607 | } |
| 4608 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 4609 | static const struct iommu_ops intel_iommu_ops = { |
Joerg Roedel | 5d587b8 | 2014-09-05 10:50:45 +0200 | [diff] [blame] | 4610 | .capable = intel_iommu_capable, |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 4611 | .domain_init = intel_iommu_domain_init, |
| 4612 | .domain_destroy = intel_iommu_domain_destroy, |
| 4613 | .attach_dev = intel_iommu_attach_device, |
| 4614 | .detach_dev = intel_iommu_detach_device, |
Joerg Roedel | b146a1c9f | 2010-01-20 17:17:37 +0100 | [diff] [blame] | 4615 | .map = intel_iommu_map, |
| 4616 | .unmap = intel_iommu_unmap, |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 4617 | .map_sg = default_iommu_map_sg, |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 4618 | .iova_to_phys = intel_iommu_iova_to_phys, |
Alex Williamson | abdfdde | 2012-05-30 14:19:19 -0600 | [diff] [blame] | 4619 | .add_device = intel_iommu_add_device, |
| 4620 | .remove_device = intel_iommu_remove_device, |
Ohad Ben-Cohen | 6d1c56a | 2011-11-10 11:32:30 +0200 | [diff] [blame] | 4621 | .pgsize_bitmap = INTEL_IOMMU_PGSIZES, |
Joerg Roedel | a8bcbb0d | 2008-12-03 15:14:02 +0100 | [diff] [blame] | 4622 | }; |
David Woodhouse | 9af8814 | 2009-02-13 23:18:03 +0000 | [diff] [blame] | 4623 | |
Daniel Vetter | 9452618 | 2013-01-20 23:50:13 +0100 | [diff] [blame] | 4624 | static void quirk_iommu_g4x_gfx(struct pci_dev *dev) |
| 4625 | { |
| 4626 | /* G4x/GM45 integrated gfx dmar support is totally busted. */ |
| 4627 | printk(KERN_INFO "DMAR: Disabling IOMMU for graphics on this chipset\n"); |
| 4628 | dmar_map_gfx = 0; |
| 4629 | } |
| 4630 | |
| 4631 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_g4x_gfx); |
| 4632 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_g4x_gfx); |
| 4633 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_g4x_gfx); |
| 4634 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_g4x_gfx); |
| 4635 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_g4x_gfx); |
| 4636 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_g4x_gfx); |
| 4637 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_g4x_gfx); |
| 4638 | |
Greg Kroah-Hartman | d34d651 | 2012-12-21 15:05:21 -0800 | [diff] [blame] | 4639 | static void quirk_iommu_rwbf(struct pci_dev *dev) |
David Woodhouse | 9af8814 | 2009-02-13 23:18:03 +0000 | [diff] [blame] | 4640 | { |
| 4641 | /* |
| 4642 | * Mobile 4 Series Chipset neglects to set RWBF capability, |
Daniel Vetter | 210561f | 2013-01-21 19:48:59 +0100 | [diff] [blame] | 4643 | * but needs it. Same seems to hold for the desktop versions. |
David Woodhouse | 9af8814 | 2009-02-13 23:18:03 +0000 | [diff] [blame] | 4644 | */ |
| 4645 | printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n"); |
| 4646 | rwbf_quirk = 1; |
| 4647 | } |
| 4648 | |
| 4649 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_rwbf); |
Daniel Vetter | 210561f | 2013-01-21 19:48:59 +0100 | [diff] [blame] | 4650 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_rwbf); |
| 4651 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e10, quirk_iommu_rwbf); |
| 4652 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e20, quirk_iommu_rwbf); |
| 4653 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e30, quirk_iommu_rwbf); |
| 4654 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e40, quirk_iommu_rwbf); |
| 4655 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e90, quirk_iommu_rwbf); |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 4656 | |
Adam Jackson | eecfd57 | 2010-08-25 21:17:34 +0100 | [diff] [blame] | 4657 | #define GGC 0x52 |
| 4658 | #define GGC_MEMORY_SIZE_MASK (0xf << 8) |
| 4659 | #define GGC_MEMORY_SIZE_NONE (0x0 << 8) |
| 4660 | #define GGC_MEMORY_SIZE_1M (0x1 << 8) |
| 4661 | #define GGC_MEMORY_SIZE_2M (0x3 << 8) |
| 4662 | #define GGC_MEMORY_VT_ENABLED (0x8 << 8) |
| 4663 | #define GGC_MEMORY_SIZE_2M_VT (0x9 << 8) |
| 4664 | #define GGC_MEMORY_SIZE_3M_VT (0xa << 8) |
| 4665 | #define GGC_MEMORY_SIZE_4M_VT (0xb << 8) |
| 4666 | |
Greg Kroah-Hartman | d34d651 | 2012-12-21 15:05:21 -0800 | [diff] [blame] | 4667 | static void quirk_calpella_no_shadow_gtt(struct pci_dev *dev) |
David Woodhouse | 9eecabc | 2010-09-21 22:28:23 +0100 | [diff] [blame] | 4668 | { |
| 4669 | unsigned short ggc; |
| 4670 | |
Adam Jackson | eecfd57 | 2010-08-25 21:17:34 +0100 | [diff] [blame] | 4671 | if (pci_read_config_word(dev, GGC, &ggc)) |
David Woodhouse | 9eecabc | 2010-09-21 22:28:23 +0100 | [diff] [blame] | 4672 | return; |
| 4673 | |
Adam Jackson | eecfd57 | 2010-08-25 21:17:34 +0100 | [diff] [blame] | 4674 | if (!(ggc & GGC_MEMORY_VT_ENABLED)) { |
David Woodhouse | 9eecabc | 2010-09-21 22:28:23 +0100 | [diff] [blame] | 4675 | printk(KERN_INFO "DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics\n"); |
| 4676 | dmar_map_gfx = 0; |
David Woodhouse | 6fbcfb3 | 2011-09-25 19:11:14 -0700 | [diff] [blame] | 4677 | } else if (dmar_map_gfx) { |
| 4678 | /* we have to ensure the gfx device is idle before we flush */ |
| 4679 | printk(KERN_INFO "DMAR: Disabling batched IOTLB flush on Ironlake\n"); |
| 4680 | intel_iommu_strict = 1; |
| 4681 | } |
David Woodhouse | 9eecabc | 2010-09-21 22:28:23 +0100 | [diff] [blame] | 4682 | } |
| 4683 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0040, quirk_calpella_no_shadow_gtt); |
| 4684 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0044, quirk_calpella_no_shadow_gtt); |
| 4685 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x0062, quirk_calpella_no_shadow_gtt); |
| 4686 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x006a, quirk_calpella_no_shadow_gtt); |
| 4687 | |
David Woodhouse | e0fc7e0 | 2009-09-30 09:12:17 -0700 | [diff] [blame] | 4688 | /* On Tylersburg chipsets, some BIOSes have been known to enable the |
| 4689 | ISOCH DMAR unit for the Azalia sound device, but not give it any |
| 4690 | TLB entries, which causes it to deadlock. Check for that. We do |
| 4691 | this in a function called from init_dmars(), instead of in a PCI |
| 4692 | quirk, because we don't want to print the obnoxious "BIOS broken" |
| 4693 | message if VT-d is actually disabled. |
| 4694 | */ |
| 4695 | static void __init check_tylersburg_isoch(void) |
| 4696 | { |
| 4697 | struct pci_dev *pdev; |
| 4698 | uint32_t vtisochctrl; |
| 4699 | |
| 4700 | /* If there's no Azalia in the system anyway, forget it. */ |
| 4701 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x3a3e, NULL); |
| 4702 | if (!pdev) |
| 4703 | return; |
| 4704 | pci_dev_put(pdev); |
| 4705 | |
| 4706 | /* System Management Registers. Might be hidden, in which case |
| 4707 | we can't do the sanity check. But that's OK, because the |
| 4708 | known-broken BIOSes _don't_ actually hide it, so far. */ |
| 4709 | pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x342e, NULL); |
| 4710 | if (!pdev) |
| 4711 | return; |
| 4712 | |
| 4713 | if (pci_read_config_dword(pdev, 0x188, &vtisochctrl)) { |
| 4714 | pci_dev_put(pdev); |
| 4715 | return; |
| 4716 | } |
| 4717 | |
| 4718 | pci_dev_put(pdev); |
| 4719 | |
| 4720 | /* If Azalia DMA is routed to the non-isoch DMAR unit, fine. */ |
| 4721 | if (vtisochctrl & 1) |
| 4722 | return; |
| 4723 | |
| 4724 | /* Drop all bits other than the number of TLB entries */ |
| 4725 | vtisochctrl &= 0x1c; |
| 4726 | |
| 4727 | /* If we have the recommended number of TLB entries (16), fine. */ |
| 4728 | if (vtisochctrl == 0x10) |
| 4729 | return; |
| 4730 | |
| 4731 | /* Zero TLB entries? You get to ride the short bus to school. */ |
| 4732 | if (!vtisochctrl) { |
| 4733 | WARN(1, "Your BIOS is broken; DMA routed to ISOCH DMAR unit but no TLB space.\n" |
| 4734 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 4735 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 4736 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 4737 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
| 4738 | iommu_identity_mapping |= IDENTMAP_AZALIA; |
| 4739 | return; |
| 4740 | } |
| 4741 | |
| 4742 | printk(KERN_WARNING "DMAR: Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n", |
| 4743 | vtisochctrl); |
| 4744 | } |