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