Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007-2008 Advanced Micro Devices, Inc. |
| 3 | * Author: Joerg Roedel <joerg.roedel@amd.com> |
| 4 | * Leo Duran <leo.duran@amd.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/pci.h> |
| 21 | #include <linux/gfp.h> |
| 22 | #include <linux/bitops.h> |
| 23 | #include <linux/scatterlist.h> |
| 24 | #include <linux/iommu-helper.h> |
| 25 | #include <asm/proto.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 26 | #include <asm/iommu.h> |
Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 27 | #include <asm/amd_iommu_types.h> |
Joerg Roedel | c6da992 | 2008-06-26 21:28:06 +0200 | [diff] [blame] | 28 | #include <asm/amd_iommu.h> |
Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 29 | |
| 30 | #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28)) |
| 31 | |
Joerg Roedel | 136f78a | 2008-07-11 17:14:27 +0200 | [diff] [blame] | 32 | #define EXIT_LOOP_COUNT 10000000 |
| 33 | |
Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 34 | static DEFINE_RWLOCK(amd_iommu_devtable_lock); |
| 35 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 36 | /* |
| 37 | * general struct to manage commands send to an IOMMU |
| 38 | */ |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 39 | struct iommu_cmd { |
Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 40 | u32 data[4]; |
| 41 | }; |
| 42 | |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 43 | static int dma_ops_unity_map(struct dma_ops_domain *dma_dom, |
| 44 | struct unity_map_entry *e); |
| 45 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 46 | /* returns !0 if the IOMMU is caching non-present entries in its TLB */ |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 47 | static int iommu_has_npcache(struct amd_iommu *iommu) |
| 48 | { |
| 49 | return iommu->cap & IOMMU_CAP_NPCACHE; |
| 50 | } |
| 51 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 52 | /**************************************************************************** |
| 53 | * |
Joerg Roedel | a80dc3e | 2008-09-11 16:51:41 +0200 | [diff] [blame^] | 54 | * Interrupt handling functions |
| 55 | * |
| 56 | ****************************************************************************/ |
| 57 | |
| 58 | irqreturn_t amd_iommu_int_handler(int irq, void *data) |
| 59 | { |
| 60 | return IRQ_NONE; |
| 61 | } |
| 62 | |
| 63 | /**************************************************************************** |
| 64 | * |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 65 | * IOMMU command queuing functions |
| 66 | * |
| 67 | ****************************************************************************/ |
| 68 | |
| 69 | /* |
| 70 | * Writes the command to the IOMMUs command buffer and informs the |
| 71 | * hardware about the new command. Must be called with iommu->lock held. |
| 72 | */ |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 73 | static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd) |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 74 | { |
| 75 | u32 tail, head; |
| 76 | u8 *target; |
| 77 | |
| 78 | tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET); |
Jiri Kosina | 8a7c5ef | 2008-08-19 02:13:55 +0200 | [diff] [blame] | 79 | target = iommu->cmd_buf + tail; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 80 | memcpy_toio(target, cmd, sizeof(*cmd)); |
| 81 | tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size; |
| 82 | head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET); |
| 83 | if (tail == head) |
| 84 | return -ENOMEM; |
| 85 | writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET); |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 90 | /* |
| 91 | * General queuing function for commands. Takes iommu->lock and calls |
| 92 | * __iommu_queue_command(). |
| 93 | */ |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 94 | static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd) |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 95 | { |
| 96 | unsigned long flags; |
| 97 | int ret; |
| 98 | |
| 99 | spin_lock_irqsave(&iommu->lock, flags); |
| 100 | ret = __iommu_queue_command(iommu, cmd); |
| 101 | spin_unlock_irqrestore(&iommu->lock, flags); |
| 102 | |
| 103 | return ret; |
| 104 | } |
| 105 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 106 | /* |
| 107 | * This function is called whenever we need to ensure that the IOMMU has |
| 108 | * completed execution of all commands we sent. It sends a |
| 109 | * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs |
| 110 | * us about that by writing a value to a physical address we pass with |
| 111 | * the command. |
| 112 | */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 113 | static int iommu_completion_wait(struct amd_iommu *iommu) |
| 114 | { |
Joerg Roedel | 519c31b | 2008-08-14 19:55:15 +0200 | [diff] [blame] | 115 | int ret, ready = 0; |
| 116 | unsigned status = 0; |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 117 | struct iommu_cmd cmd; |
Joerg Roedel | 136f78a | 2008-07-11 17:14:27 +0200 | [diff] [blame] | 118 | unsigned long i = 0; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 119 | |
| 120 | memset(&cmd, 0, sizeof(cmd)); |
Joerg Roedel | 519c31b | 2008-08-14 19:55:15 +0200 | [diff] [blame] | 121 | cmd.data[0] = CMD_COMPL_WAIT_INT_MASK; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 122 | CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT); |
| 123 | |
| 124 | iommu->need_sync = 0; |
| 125 | |
| 126 | ret = iommu_queue_command(iommu, &cmd); |
| 127 | |
| 128 | if (ret) |
| 129 | return ret; |
| 130 | |
Joerg Roedel | 136f78a | 2008-07-11 17:14:27 +0200 | [diff] [blame] | 131 | while (!ready && (i < EXIT_LOOP_COUNT)) { |
| 132 | ++i; |
Joerg Roedel | 519c31b | 2008-08-14 19:55:15 +0200 | [diff] [blame] | 133 | /* wait for the bit to become one */ |
| 134 | status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET); |
| 135 | ready = status & MMIO_STATUS_COM_WAIT_INT_MASK; |
Joerg Roedel | 136f78a | 2008-07-11 17:14:27 +0200 | [diff] [blame] | 136 | } |
| 137 | |
Joerg Roedel | 519c31b | 2008-08-14 19:55:15 +0200 | [diff] [blame] | 138 | /* set bit back to zero */ |
| 139 | status &= ~MMIO_STATUS_COM_WAIT_INT_MASK; |
| 140 | writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET); |
| 141 | |
Joerg Roedel | 136f78a | 2008-07-11 17:14:27 +0200 | [diff] [blame] | 142 | if (unlikely((i == EXIT_LOOP_COUNT) && printk_ratelimit())) |
| 143 | printk(KERN_WARNING "AMD IOMMU: Completion wait loop failed\n"); |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 148 | /* |
| 149 | * Command send function for invalidating a device table entry |
| 150 | */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 151 | static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid) |
| 152 | { |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 153 | struct iommu_cmd cmd; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 154 | |
| 155 | BUG_ON(iommu == NULL); |
| 156 | |
| 157 | memset(&cmd, 0, sizeof(cmd)); |
| 158 | CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY); |
| 159 | cmd.data[0] = devid; |
| 160 | |
| 161 | iommu->need_sync = 1; |
| 162 | |
| 163 | return iommu_queue_command(iommu, &cmd); |
| 164 | } |
| 165 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 166 | /* |
| 167 | * Generic command send function for invalidaing TLB entries |
| 168 | */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 169 | static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu, |
| 170 | u64 address, u16 domid, int pde, int s) |
| 171 | { |
Joerg Roedel | d644953 | 2008-07-11 17:14:28 +0200 | [diff] [blame] | 172 | struct iommu_cmd cmd; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 173 | |
| 174 | memset(&cmd, 0, sizeof(cmd)); |
| 175 | address &= PAGE_MASK; |
| 176 | CMD_SET_TYPE(&cmd, CMD_INV_IOMMU_PAGES); |
| 177 | cmd.data[1] |= domid; |
Joerg Roedel | 8a45669 | 2008-08-14 19:55:17 +0200 | [diff] [blame] | 178 | cmd.data[2] = lower_32_bits(address); |
Joerg Roedel | 8ea80d7 | 2008-07-11 17:14:23 +0200 | [diff] [blame] | 179 | cmd.data[3] = upper_32_bits(address); |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 180 | if (s) /* size bit - we flush more than one 4kb page */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 181 | cmd.data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK; |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 182 | if (pde) /* PDE bit - we wan't flush everything not only the PTEs */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 183 | cmd.data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK; |
| 184 | |
| 185 | iommu->need_sync = 1; |
| 186 | |
| 187 | return iommu_queue_command(iommu, &cmd); |
| 188 | } |
| 189 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 190 | /* |
| 191 | * TLB invalidation function which is called from the mapping functions. |
| 192 | * It invalidates a single PTE if the range to flush is within a single |
| 193 | * page. Otherwise it flushes the whole TLB of the IOMMU. |
| 194 | */ |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 195 | static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid, |
| 196 | u64 address, size_t size) |
| 197 | { |
Joerg Roedel | 999ba41 | 2008-07-03 19:35:08 +0200 | [diff] [blame] | 198 | int s = 0; |
Joerg Roedel | a8132e5 | 2008-07-25 14:57:59 +0200 | [diff] [blame] | 199 | unsigned pages = iommu_num_pages(address, size); |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 200 | |
| 201 | address &= PAGE_MASK; |
| 202 | |
Joerg Roedel | 999ba41 | 2008-07-03 19:35:08 +0200 | [diff] [blame] | 203 | if (pages > 1) { |
| 204 | /* |
| 205 | * If we have to flush more than one page, flush all |
| 206 | * TLB entries for this domain |
| 207 | */ |
| 208 | address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS; |
| 209 | s = 1; |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 210 | } |
| 211 | |
Joerg Roedel | 999ba41 | 2008-07-03 19:35:08 +0200 | [diff] [blame] | 212 | iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s); |
| 213 | |
Joerg Roedel | a19ae1e | 2008-06-26 21:27:55 +0200 | [diff] [blame] | 214 | return 0; |
| 215 | } |
Joerg Roedel | b6c0271 | 2008-06-26 21:27:53 +0200 | [diff] [blame] | 216 | |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 217 | /* Flush the whole IO/TLB for a given protection domain */ |
| 218 | static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid) |
| 219 | { |
| 220 | u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS; |
| 221 | |
| 222 | iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1); |
| 223 | } |
| 224 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 225 | /**************************************************************************** |
| 226 | * |
| 227 | * The functions below are used the create the page table mappings for |
| 228 | * unity mapped regions. |
| 229 | * |
| 230 | ****************************************************************************/ |
| 231 | |
| 232 | /* |
| 233 | * Generic mapping functions. It maps a physical address into a DMA |
| 234 | * address space. It allocates the page table pages if necessary. |
| 235 | * In the future it can be extended to a generic mapping function |
| 236 | * supporting all features of AMD IOMMU page tables like level skipping |
| 237 | * and full 64 bit address spaces. |
| 238 | */ |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 239 | static int iommu_map(struct protection_domain *dom, |
| 240 | unsigned long bus_addr, |
| 241 | unsigned long phys_addr, |
| 242 | int prot) |
| 243 | { |
| 244 | u64 __pte, *pte, *page; |
| 245 | |
| 246 | bus_addr = PAGE_ALIGN(bus_addr); |
| 247 | phys_addr = PAGE_ALIGN(bus_addr); |
| 248 | |
| 249 | /* only support 512GB address spaces for now */ |
| 250 | if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK)) |
| 251 | return -EINVAL; |
| 252 | |
| 253 | pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)]; |
| 254 | |
| 255 | if (!IOMMU_PTE_PRESENT(*pte)) { |
| 256 | page = (u64 *)get_zeroed_page(GFP_KERNEL); |
| 257 | if (!page) |
| 258 | return -ENOMEM; |
| 259 | *pte = IOMMU_L2_PDE(virt_to_phys(page)); |
| 260 | } |
| 261 | |
| 262 | pte = IOMMU_PTE_PAGE(*pte); |
| 263 | pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)]; |
| 264 | |
| 265 | if (!IOMMU_PTE_PRESENT(*pte)) { |
| 266 | page = (u64 *)get_zeroed_page(GFP_KERNEL); |
| 267 | if (!page) |
| 268 | return -ENOMEM; |
| 269 | *pte = IOMMU_L1_PDE(virt_to_phys(page)); |
| 270 | } |
| 271 | |
| 272 | pte = IOMMU_PTE_PAGE(*pte); |
| 273 | pte = &pte[IOMMU_PTE_L0_INDEX(bus_addr)]; |
| 274 | |
| 275 | if (IOMMU_PTE_PRESENT(*pte)) |
| 276 | return -EBUSY; |
| 277 | |
| 278 | __pte = phys_addr | IOMMU_PTE_P; |
| 279 | if (prot & IOMMU_PROT_IR) |
| 280 | __pte |= IOMMU_PTE_IR; |
| 281 | if (prot & IOMMU_PROT_IW) |
| 282 | __pte |= IOMMU_PTE_IW; |
| 283 | |
| 284 | *pte = __pte; |
| 285 | |
| 286 | return 0; |
| 287 | } |
| 288 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 289 | /* |
| 290 | * This function checks if a specific unity mapping entry is needed for |
| 291 | * this specific IOMMU. |
| 292 | */ |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 293 | static int iommu_for_unity_map(struct amd_iommu *iommu, |
| 294 | struct unity_map_entry *entry) |
| 295 | { |
| 296 | u16 bdf, i; |
| 297 | |
| 298 | for (i = entry->devid_start; i <= entry->devid_end; ++i) { |
| 299 | bdf = amd_iommu_alias_table[i]; |
| 300 | if (amd_iommu_rlookup_table[bdf] == iommu) |
| 301 | return 1; |
| 302 | } |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 307 | /* |
| 308 | * Init the unity mappings for a specific IOMMU in the system |
| 309 | * |
| 310 | * Basically iterates over all unity mapping entries and applies them to |
| 311 | * the default domain DMA of that IOMMU if necessary. |
| 312 | */ |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 313 | static int iommu_init_unity_mappings(struct amd_iommu *iommu) |
| 314 | { |
| 315 | struct unity_map_entry *entry; |
| 316 | int ret; |
| 317 | |
| 318 | list_for_each_entry(entry, &amd_iommu_unity_map, list) { |
| 319 | if (!iommu_for_unity_map(iommu, entry)) |
| 320 | continue; |
| 321 | ret = dma_ops_unity_map(iommu->default_dom, entry); |
| 322 | if (ret) |
| 323 | return ret; |
| 324 | } |
| 325 | |
| 326 | return 0; |
| 327 | } |
| 328 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 329 | /* |
| 330 | * This function actually applies the mapping to the page table of the |
| 331 | * dma_ops domain. |
| 332 | */ |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 333 | static int dma_ops_unity_map(struct dma_ops_domain *dma_dom, |
| 334 | struct unity_map_entry *e) |
| 335 | { |
| 336 | u64 addr; |
| 337 | int ret; |
| 338 | |
| 339 | for (addr = e->address_start; addr < e->address_end; |
| 340 | addr += PAGE_SIZE) { |
| 341 | ret = iommu_map(&dma_dom->domain, addr, addr, e->prot); |
| 342 | if (ret) |
| 343 | return ret; |
| 344 | /* |
| 345 | * if unity mapping is in aperture range mark the page |
| 346 | * as allocated in the aperture |
| 347 | */ |
| 348 | if (addr < dma_dom->aperture_size) |
| 349 | __set_bit(addr >> PAGE_SHIFT, dma_dom->bitmap); |
| 350 | } |
| 351 | |
| 352 | return 0; |
| 353 | } |
| 354 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 355 | /* |
| 356 | * Inits the unity mappings required for a specific device |
| 357 | */ |
Joerg Roedel | bd0e521 | 2008-06-26 21:27:56 +0200 | [diff] [blame] | 358 | static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom, |
| 359 | u16 devid) |
| 360 | { |
| 361 | struct unity_map_entry *e; |
| 362 | int ret; |
| 363 | |
| 364 | list_for_each_entry(e, &amd_iommu_unity_map, list) { |
| 365 | if (!(devid >= e->devid_start && devid <= e->devid_end)) |
| 366 | continue; |
| 367 | ret = dma_ops_unity_map(dma_dom, e); |
| 368 | if (ret) |
| 369 | return ret; |
| 370 | } |
| 371 | |
| 372 | return 0; |
| 373 | } |
| 374 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 375 | /**************************************************************************** |
| 376 | * |
| 377 | * The next functions belong to the address allocator for the dma_ops |
| 378 | * interface functions. They work like the allocators in the other IOMMU |
| 379 | * drivers. Its basically a bitmap which marks the allocated pages in |
| 380 | * the aperture. Maybe it could be enhanced in the future to a more |
| 381 | * efficient allocator. |
| 382 | * |
| 383 | ****************************************************************************/ |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 384 | static unsigned long dma_mask_to_pages(unsigned long mask) |
| 385 | { |
| 386 | return (mask >> PAGE_SHIFT) + |
| 387 | (PAGE_ALIGN(mask & ~PAGE_MASK) >> PAGE_SHIFT); |
| 388 | } |
| 389 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 390 | /* |
| 391 | * The address allocator core function. |
| 392 | * |
| 393 | * called with domain->lock held |
| 394 | */ |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 395 | static unsigned long dma_ops_alloc_addresses(struct device *dev, |
| 396 | struct dma_ops_domain *dom, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 397 | unsigned int pages, |
| 398 | unsigned long align_mask) |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 399 | { |
| 400 | unsigned long limit = dma_mask_to_pages(*dev->dma_mask); |
| 401 | unsigned long address; |
| 402 | unsigned long size = dom->aperture_size >> PAGE_SHIFT; |
| 403 | unsigned long boundary_size; |
| 404 | |
| 405 | boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, |
| 406 | PAGE_SIZE) >> PAGE_SHIFT; |
| 407 | limit = limit < size ? limit : size; |
| 408 | |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 409 | if (dom->next_bit >= limit) { |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 410 | dom->next_bit = 0; |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 411 | dom->need_flush = true; |
| 412 | } |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 413 | |
| 414 | address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 415 | 0 , boundary_size, align_mask); |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 416 | if (address == -1) { |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 417 | address = iommu_area_alloc(dom->bitmap, limit, 0, pages, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 418 | 0, boundary_size, align_mask); |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 419 | dom->need_flush = true; |
| 420 | } |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 421 | |
| 422 | if (likely(address != -1)) { |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 423 | dom->next_bit = address + pages; |
| 424 | address <<= PAGE_SHIFT; |
| 425 | } else |
| 426 | address = bad_dma_address; |
| 427 | |
| 428 | WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size); |
| 429 | |
| 430 | return address; |
| 431 | } |
| 432 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 433 | /* |
| 434 | * The address free function. |
| 435 | * |
| 436 | * called with domain->lock held |
| 437 | */ |
Joerg Roedel | d308644 | 2008-06-26 21:27:57 +0200 | [diff] [blame] | 438 | static void dma_ops_free_addresses(struct dma_ops_domain *dom, |
| 439 | unsigned long address, |
| 440 | unsigned int pages) |
| 441 | { |
| 442 | address >>= PAGE_SHIFT; |
| 443 | iommu_area_free(dom->bitmap, address, pages); |
| 444 | } |
| 445 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 446 | /**************************************************************************** |
| 447 | * |
| 448 | * The next functions belong to the domain allocation. A domain is |
| 449 | * allocated for every IOMMU as the default domain. If device isolation |
| 450 | * is enabled, every device get its own domain. The most important thing |
| 451 | * about domains is the page table mapping the DMA address space they |
| 452 | * contain. |
| 453 | * |
| 454 | ****************************************************************************/ |
| 455 | |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 456 | static u16 domain_id_alloc(void) |
| 457 | { |
| 458 | unsigned long flags; |
| 459 | int id; |
| 460 | |
| 461 | write_lock_irqsave(&amd_iommu_devtable_lock, flags); |
| 462 | id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID); |
| 463 | BUG_ON(id == 0); |
| 464 | if (id > 0 && id < MAX_DOMAIN_ID) |
| 465 | __set_bit(id, amd_iommu_pd_alloc_bitmap); |
| 466 | else |
| 467 | id = 0; |
| 468 | write_unlock_irqrestore(&amd_iommu_devtable_lock, flags); |
| 469 | |
| 470 | return id; |
| 471 | } |
| 472 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 473 | /* |
| 474 | * Used to reserve address ranges in the aperture (e.g. for exclusion |
| 475 | * ranges. |
| 476 | */ |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 477 | static void dma_ops_reserve_addresses(struct dma_ops_domain *dom, |
| 478 | unsigned long start_page, |
| 479 | unsigned int pages) |
| 480 | { |
| 481 | unsigned int last_page = dom->aperture_size >> PAGE_SHIFT; |
| 482 | |
| 483 | if (start_page + pages > last_page) |
| 484 | pages = last_page - start_page; |
| 485 | |
| 486 | set_bit_string(dom->bitmap, start_page, pages); |
| 487 | } |
| 488 | |
| 489 | static void dma_ops_free_pagetable(struct dma_ops_domain *dma_dom) |
| 490 | { |
| 491 | int i, j; |
| 492 | u64 *p1, *p2, *p3; |
| 493 | |
| 494 | p1 = dma_dom->domain.pt_root; |
| 495 | |
| 496 | if (!p1) |
| 497 | return; |
| 498 | |
| 499 | for (i = 0; i < 512; ++i) { |
| 500 | if (!IOMMU_PTE_PRESENT(p1[i])) |
| 501 | continue; |
| 502 | |
| 503 | p2 = IOMMU_PTE_PAGE(p1[i]); |
| 504 | for (j = 0; j < 512; ++i) { |
| 505 | if (!IOMMU_PTE_PRESENT(p2[j])) |
| 506 | continue; |
| 507 | p3 = IOMMU_PTE_PAGE(p2[j]); |
| 508 | free_page((unsigned long)p3); |
| 509 | } |
| 510 | |
| 511 | free_page((unsigned long)p2); |
| 512 | } |
| 513 | |
| 514 | free_page((unsigned long)p1); |
| 515 | } |
| 516 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 517 | /* |
| 518 | * Free a domain, only used if something went wrong in the |
| 519 | * allocation path and we need to free an already allocated page table |
| 520 | */ |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 521 | static void dma_ops_domain_free(struct dma_ops_domain *dom) |
| 522 | { |
| 523 | if (!dom) |
| 524 | return; |
| 525 | |
| 526 | dma_ops_free_pagetable(dom); |
| 527 | |
| 528 | kfree(dom->pte_pages); |
| 529 | |
| 530 | kfree(dom->bitmap); |
| 531 | |
| 532 | kfree(dom); |
| 533 | } |
| 534 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 535 | /* |
| 536 | * Allocates a new protection domain usable for the dma_ops functions. |
| 537 | * It also intializes the page table and the address allocator data |
| 538 | * structures required for the dma_ops interface |
| 539 | */ |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 540 | static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu, |
| 541 | unsigned order) |
| 542 | { |
| 543 | struct dma_ops_domain *dma_dom; |
| 544 | unsigned i, num_pte_pages; |
| 545 | u64 *l2_pde; |
| 546 | u64 address; |
| 547 | |
| 548 | /* |
| 549 | * Currently the DMA aperture must be between 32 MB and 1GB in size |
| 550 | */ |
| 551 | if ((order < 25) || (order > 30)) |
| 552 | return NULL; |
| 553 | |
| 554 | dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL); |
| 555 | if (!dma_dom) |
| 556 | return NULL; |
| 557 | |
| 558 | spin_lock_init(&dma_dom->domain.lock); |
| 559 | |
| 560 | dma_dom->domain.id = domain_id_alloc(); |
| 561 | if (dma_dom->domain.id == 0) |
| 562 | goto free_dma_dom; |
| 563 | dma_dom->domain.mode = PAGE_MODE_3_LEVEL; |
| 564 | dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL); |
| 565 | dma_dom->domain.priv = dma_dom; |
| 566 | if (!dma_dom->domain.pt_root) |
| 567 | goto free_dma_dom; |
| 568 | dma_dom->aperture_size = (1ULL << order); |
| 569 | dma_dom->bitmap = kzalloc(dma_dom->aperture_size / (PAGE_SIZE * 8), |
| 570 | GFP_KERNEL); |
| 571 | if (!dma_dom->bitmap) |
| 572 | goto free_dma_dom; |
| 573 | /* |
| 574 | * mark the first page as allocated so we never return 0 as |
| 575 | * a valid dma-address. So we can use 0 as error value |
| 576 | */ |
| 577 | dma_dom->bitmap[0] = 1; |
| 578 | dma_dom->next_bit = 0; |
| 579 | |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 580 | dma_dom->need_flush = false; |
| 581 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 582 | /* Intialize the exclusion range if necessary */ |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 583 | if (iommu->exclusion_start && |
| 584 | iommu->exclusion_start < dma_dom->aperture_size) { |
| 585 | unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT; |
Joerg Roedel | a8132e5 | 2008-07-25 14:57:59 +0200 | [diff] [blame] | 586 | int pages = iommu_num_pages(iommu->exclusion_start, |
| 587 | iommu->exclusion_length); |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 588 | dma_ops_reserve_addresses(dma_dom, startpage, pages); |
| 589 | } |
| 590 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 591 | /* |
| 592 | * At the last step, build the page tables so we don't need to |
| 593 | * allocate page table pages in the dma_ops mapping/unmapping |
| 594 | * path. |
| 595 | */ |
Joerg Roedel | ec487d1 | 2008-06-26 21:27:58 +0200 | [diff] [blame] | 596 | num_pte_pages = dma_dom->aperture_size / (PAGE_SIZE * 512); |
| 597 | dma_dom->pte_pages = kzalloc(num_pte_pages * sizeof(void *), |
| 598 | GFP_KERNEL); |
| 599 | if (!dma_dom->pte_pages) |
| 600 | goto free_dma_dom; |
| 601 | |
| 602 | l2_pde = (u64 *)get_zeroed_page(GFP_KERNEL); |
| 603 | if (l2_pde == NULL) |
| 604 | goto free_dma_dom; |
| 605 | |
| 606 | dma_dom->domain.pt_root[0] = IOMMU_L2_PDE(virt_to_phys(l2_pde)); |
| 607 | |
| 608 | for (i = 0; i < num_pte_pages; ++i) { |
| 609 | dma_dom->pte_pages[i] = (u64 *)get_zeroed_page(GFP_KERNEL); |
| 610 | if (!dma_dom->pte_pages[i]) |
| 611 | goto free_dma_dom; |
| 612 | address = virt_to_phys(dma_dom->pte_pages[i]); |
| 613 | l2_pde[i] = IOMMU_L1_PDE(address); |
| 614 | } |
| 615 | |
| 616 | return dma_dom; |
| 617 | |
| 618 | free_dma_dom: |
| 619 | dma_ops_domain_free(dma_dom); |
| 620 | |
| 621 | return NULL; |
| 622 | } |
| 623 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 624 | /* |
| 625 | * Find out the protection domain structure for a given PCI device. This |
| 626 | * will give us the pointer to the page table root for example. |
| 627 | */ |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 628 | static struct protection_domain *domain_for_device(u16 devid) |
| 629 | { |
| 630 | struct protection_domain *dom; |
| 631 | unsigned long flags; |
| 632 | |
| 633 | read_lock_irqsave(&amd_iommu_devtable_lock, flags); |
| 634 | dom = amd_iommu_pd_table[devid]; |
| 635 | read_unlock_irqrestore(&amd_iommu_devtable_lock, flags); |
| 636 | |
| 637 | return dom; |
| 638 | } |
| 639 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 640 | /* |
| 641 | * If a device is not yet associated with a domain, this function does |
| 642 | * assigns it visible for the hardware |
| 643 | */ |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 644 | static void set_device_domain(struct amd_iommu *iommu, |
| 645 | struct protection_domain *domain, |
| 646 | u16 devid) |
| 647 | { |
| 648 | unsigned long flags; |
| 649 | |
| 650 | u64 pte_root = virt_to_phys(domain->pt_root); |
| 651 | |
| 652 | pte_root |= (domain->mode & 0x07) << 9; |
| 653 | pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | 2; |
| 654 | |
| 655 | write_lock_irqsave(&amd_iommu_devtable_lock, flags); |
| 656 | amd_iommu_dev_table[devid].data[0] = pte_root; |
| 657 | amd_iommu_dev_table[devid].data[1] = pte_root >> 32; |
| 658 | amd_iommu_dev_table[devid].data[2] = domain->id; |
| 659 | |
| 660 | amd_iommu_pd_table[devid] = domain; |
| 661 | write_unlock_irqrestore(&amd_iommu_devtable_lock, flags); |
| 662 | |
| 663 | iommu_queue_inv_dev_entry(iommu, devid); |
| 664 | |
| 665 | iommu->need_sync = 1; |
| 666 | } |
| 667 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 668 | /***************************************************************************** |
| 669 | * |
| 670 | * The next functions belong to the dma_ops mapping/unmapping code. |
| 671 | * |
| 672 | *****************************************************************************/ |
| 673 | |
| 674 | /* |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 675 | * This function checks if the driver got a valid device from the caller to |
| 676 | * avoid dereferencing invalid pointers. |
| 677 | */ |
| 678 | static bool check_device(struct device *dev) |
| 679 | { |
| 680 | if (!dev || !dev->dma_mask) |
| 681 | return false; |
| 682 | |
| 683 | return true; |
| 684 | } |
| 685 | |
| 686 | /* |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 687 | * In the dma_ops path we only have the struct device. This function |
| 688 | * finds the corresponding IOMMU, the protection domain and the |
| 689 | * requestor id for a given device. |
| 690 | * If the device is not yet associated with a domain this is also done |
| 691 | * in this function. |
| 692 | */ |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 693 | static int get_device_resources(struct device *dev, |
| 694 | struct amd_iommu **iommu, |
| 695 | struct protection_domain **domain, |
| 696 | u16 *bdf) |
| 697 | { |
| 698 | struct dma_ops_domain *dma_dom; |
| 699 | struct pci_dev *pcidev; |
| 700 | u16 _bdf; |
| 701 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 702 | *iommu = NULL; |
| 703 | *domain = NULL; |
| 704 | *bdf = 0xffff; |
| 705 | |
| 706 | if (dev->bus != &pci_bus_type) |
| 707 | return 0; |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 708 | |
| 709 | pcidev = to_pci_dev(dev); |
Joerg Roedel | d591b0a | 2008-07-11 17:14:35 +0200 | [diff] [blame] | 710 | _bdf = calc_devid(pcidev->bus->number, pcidev->devfn); |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 711 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 712 | /* device not translated by any IOMMU in the system? */ |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 713 | if (_bdf > amd_iommu_last_bdf) |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 714 | return 0; |
Joerg Roedel | b20ac0d | 2008-06-26 21:27:59 +0200 | [diff] [blame] | 715 | |
| 716 | *bdf = amd_iommu_alias_table[_bdf]; |
| 717 | |
| 718 | *iommu = amd_iommu_rlookup_table[*bdf]; |
| 719 | if (*iommu == NULL) |
| 720 | return 0; |
| 721 | dma_dom = (*iommu)->default_dom; |
| 722 | *domain = domain_for_device(*bdf); |
| 723 | if (*domain == NULL) { |
| 724 | *domain = &dma_dom->domain; |
| 725 | set_device_domain(*iommu, *domain, *bdf); |
| 726 | printk(KERN_INFO "AMD IOMMU: Using protection domain %d for " |
| 727 | "device ", (*domain)->id); |
| 728 | print_devid(_bdf, 1); |
| 729 | } |
| 730 | |
| 731 | return 1; |
| 732 | } |
| 733 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 734 | /* |
| 735 | * This is the generic map function. It maps one 4kb page at paddr to |
| 736 | * the given address in the DMA address space for the domain. |
| 737 | */ |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 738 | static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu, |
| 739 | struct dma_ops_domain *dom, |
| 740 | unsigned long address, |
| 741 | phys_addr_t paddr, |
| 742 | int direction) |
| 743 | { |
| 744 | u64 *pte, __pte; |
| 745 | |
| 746 | WARN_ON(address > dom->aperture_size); |
| 747 | |
| 748 | paddr &= PAGE_MASK; |
| 749 | |
| 750 | pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)]; |
| 751 | pte += IOMMU_PTE_L0_INDEX(address); |
| 752 | |
| 753 | __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC; |
| 754 | |
| 755 | if (direction == DMA_TO_DEVICE) |
| 756 | __pte |= IOMMU_PTE_IR; |
| 757 | else if (direction == DMA_FROM_DEVICE) |
| 758 | __pte |= IOMMU_PTE_IW; |
| 759 | else if (direction == DMA_BIDIRECTIONAL) |
| 760 | __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW; |
| 761 | |
| 762 | WARN_ON(*pte); |
| 763 | |
| 764 | *pte = __pte; |
| 765 | |
| 766 | return (dma_addr_t)address; |
| 767 | } |
| 768 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 769 | /* |
| 770 | * The generic unmapping function for on page in the DMA address space. |
| 771 | */ |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 772 | static void dma_ops_domain_unmap(struct amd_iommu *iommu, |
| 773 | struct dma_ops_domain *dom, |
| 774 | unsigned long address) |
| 775 | { |
| 776 | u64 *pte; |
| 777 | |
| 778 | if (address >= dom->aperture_size) |
| 779 | return; |
| 780 | |
| 781 | WARN_ON(address & 0xfffULL || address > dom->aperture_size); |
| 782 | |
| 783 | pte = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)]; |
| 784 | pte += IOMMU_PTE_L0_INDEX(address); |
| 785 | |
| 786 | WARN_ON(!*pte); |
| 787 | |
| 788 | *pte = 0ULL; |
| 789 | } |
| 790 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 791 | /* |
| 792 | * This function contains common code for mapping of a physically |
| 793 | * contiguous memory region into DMA address space. It is uses by all |
| 794 | * mapping functions provided by this IOMMU driver. |
| 795 | * Must be called with the domain lock held. |
| 796 | */ |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 797 | static dma_addr_t __map_single(struct device *dev, |
| 798 | struct amd_iommu *iommu, |
| 799 | struct dma_ops_domain *dma_dom, |
| 800 | phys_addr_t paddr, |
| 801 | size_t size, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 802 | int dir, |
| 803 | bool align) |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 804 | { |
| 805 | dma_addr_t offset = paddr & ~PAGE_MASK; |
| 806 | dma_addr_t address, start; |
| 807 | unsigned int pages; |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 808 | unsigned long align_mask = 0; |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 809 | int i; |
| 810 | |
Joerg Roedel | a8132e5 | 2008-07-25 14:57:59 +0200 | [diff] [blame] | 811 | pages = iommu_num_pages(paddr, size); |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 812 | paddr &= PAGE_MASK; |
| 813 | |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 814 | if (align) |
| 815 | align_mask = (1UL << get_order(size)) - 1; |
| 816 | |
| 817 | address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask); |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 818 | if (unlikely(address == bad_dma_address)) |
| 819 | goto out; |
| 820 | |
| 821 | start = address; |
| 822 | for (i = 0; i < pages; ++i) { |
| 823 | dma_ops_domain_map(iommu, dma_dom, start, paddr, dir); |
| 824 | paddr += PAGE_SIZE; |
| 825 | start += PAGE_SIZE; |
| 826 | } |
| 827 | address += offset; |
| 828 | |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 829 | if (unlikely(dma_dom->need_flush && !iommu_fullflush)) { |
| 830 | iommu_flush_tlb(iommu, dma_dom->domain.id); |
| 831 | dma_dom->need_flush = false; |
| 832 | } else if (unlikely(iommu_has_npcache(iommu))) |
Joerg Roedel | 270cab24 | 2008-09-04 15:49:46 +0200 | [diff] [blame] | 833 | iommu_flush_pages(iommu, dma_dom->domain.id, address, size); |
| 834 | |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 835 | out: |
| 836 | return address; |
| 837 | } |
| 838 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 839 | /* |
| 840 | * Does the reverse of the __map_single function. Must be called with |
| 841 | * the domain lock held too |
| 842 | */ |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 843 | static void __unmap_single(struct amd_iommu *iommu, |
| 844 | struct dma_ops_domain *dma_dom, |
| 845 | dma_addr_t dma_addr, |
| 846 | size_t size, |
| 847 | int dir) |
| 848 | { |
| 849 | dma_addr_t i, start; |
| 850 | unsigned int pages; |
| 851 | |
| 852 | if ((dma_addr == 0) || (dma_addr + size > dma_dom->aperture_size)) |
| 853 | return; |
| 854 | |
Joerg Roedel | a8132e5 | 2008-07-25 14:57:59 +0200 | [diff] [blame] | 855 | pages = iommu_num_pages(dma_addr, size); |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 856 | dma_addr &= PAGE_MASK; |
| 857 | start = dma_addr; |
| 858 | |
| 859 | for (i = 0; i < pages; ++i) { |
| 860 | dma_ops_domain_unmap(iommu, dma_dom, start); |
| 861 | start += PAGE_SIZE; |
| 862 | } |
| 863 | |
| 864 | dma_ops_free_addresses(dma_dom, dma_addr, pages); |
Joerg Roedel | 270cab24 | 2008-09-04 15:49:46 +0200 | [diff] [blame] | 865 | |
Joerg Roedel | 1c65577 | 2008-09-04 18:40:05 +0200 | [diff] [blame] | 866 | if (iommu_fullflush) |
| 867 | iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size); |
Joerg Roedel | cb76c32 | 2008-06-26 21:28:00 +0200 | [diff] [blame] | 868 | } |
| 869 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 870 | /* |
| 871 | * The exported map_single function for dma_ops. |
| 872 | */ |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 873 | static dma_addr_t map_single(struct device *dev, phys_addr_t paddr, |
| 874 | size_t size, int dir) |
| 875 | { |
| 876 | unsigned long flags; |
| 877 | struct amd_iommu *iommu; |
| 878 | struct protection_domain *domain; |
| 879 | u16 devid; |
| 880 | dma_addr_t addr; |
| 881 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 882 | if (!check_device(dev)) |
| 883 | return bad_dma_address; |
| 884 | |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 885 | get_device_resources(dev, &iommu, &domain, &devid); |
| 886 | |
| 887 | if (iommu == NULL || domain == NULL) |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 888 | /* device not handled by any AMD IOMMU */ |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 889 | return (dma_addr_t)paddr; |
| 890 | |
| 891 | spin_lock_irqsave(&domain->lock, flags); |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 892 | addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false); |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 893 | if (addr == bad_dma_address) |
| 894 | goto out; |
| 895 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 896 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 897 | iommu_completion_wait(iommu); |
| 898 | |
| 899 | out: |
| 900 | spin_unlock_irqrestore(&domain->lock, flags); |
| 901 | |
| 902 | return addr; |
| 903 | } |
| 904 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 905 | /* |
| 906 | * The exported unmap_single function for dma_ops. |
| 907 | */ |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 908 | static void unmap_single(struct device *dev, dma_addr_t dma_addr, |
| 909 | size_t size, int dir) |
| 910 | { |
| 911 | unsigned long flags; |
| 912 | struct amd_iommu *iommu; |
| 913 | struct protection_domain *domain; |
| 914 | u16 devid; |
| 915 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 916 | if (!check_device(dev) || |
| 917 | !get_device_resources(dev, &iommu, &domain, &devid)) |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 918 | /* device not handled by any AMD IOMMU */ |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 919 | return; |
| 920 | |
| 921 | spin_lock_irqsave(&domain->lock, flags); |
| 922 | |
| 923 | __unmap_single(iommu, domain->priv, dma_addr, size, dir); |
| 924 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 925 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 4da70b9 | 2008-06-26 21:28:01 +0200 | [diff] [blame] | 926 | iommu_completion_wait(iommu); |
| 927 | |
| 928 | spin_unlock_irqrestore(&domain->lock, flags); |
| 929 | } |
| 930 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 931 | /* |
| 932 | * This is a special map_sg function which is used if we should map a |
| 933 | * device which is not handled by an AMD IOMMU in the system. |
| 934 | */ |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 935 | static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist, |
| 936 | int nelems, int dir) |
| 937 | { |
| 938 | struct scatterlist *s; |
| 939 | int i; |
| 940 | |
| 941 | for_each_sg(sglist, s, nelems, i) { |
| 942 | s->dma_address = (dma_addr_t)sg_phys(s); |
| 943 | s->dma_length = s->length; |
| 944 | } |
| 945 | |
| 946 | return nelems; |
| 947 | } |
| 948 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 949 | /* |
| 950 | * The exported map_sg function for dma_ops (handles scatter-gather |
| 951 | * lists). |
| 952 | */ |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 953 | static int map_sg(struct device *dev, struct scatterlist *sglist, |
| 954 | int nelems, int dir) |
| 955 | { |
| 956 | unsigned long flags; |
| 957 | struct amd_iommu *iommu; |
| 958 | struct protection_domain *domain; |
| 959 | u16 devid; |
| 960 | int i; |
| 961 | struct scatterlist *s; |
| 962 | phys_addr_t paddr; |
| 963 | int mapped_elems = 0; |
| 964 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 965 | if (!check_device(dev)) |
| 966 | return 0; |
| 967 | |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 968 | get_device_resources(dev, &iommu, &domain, &devid); |
| 969 | |
| 970 | if (!iommu || !domain) |
| 971 | return map_sg_no_iommu(dev, sglist, nelems, dir); |
| 972 | |
| 973 | spin_lock_irqsave(&domain->lock, flags); |
| 974 | |
| 975 | for_each_sg(sglist, s, nelems, i) { |
| 976 | paddr = sg_phys(s); |
| 977 | |
| 978 | s->dma_address = __map_single(dev, iommu, domain->priv, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 979 | paddr, s->length, dir, false); |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 980 | |
| 981 | if (s->dma_address) { |
| 982 | s->dma_length = s->length; |
| 983 | mapped_elems++; |
| 984 | } else |
| 985 | goto unmap; |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 986 | } |
| 987 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 988 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 989 | iommu_completion_wait(iommu); |
| 990 | |
| 991 | out: |
| 992 | spin_unlock_irqrestore(&domain->lock, flags); |
| 993 | |
| 994 | return mapped_elems; |
| 995 | unmap: |
| 996 | for_each_sg(sglist, s, mapped_elems, i) { |
| 997 | if (s->dma_address) |
| 998 | __unmap_single(iommu, domain->priv, s->dma_address, |
| 999 | s->dma_length, dir); |
| 1000 | s->dma_address = s->dma_length = 0; |
| 1001 | } |
| 1002 | |
| 1003 | mapped_elems = 0; |
| 1004 | |
| 1005 | goto out; |
| 1006 | } |
| 1007 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1008 | /* |
| 1009 | * The exported map_sg function for dma_ops (handles scatter-gather |
| 1010 | * lists). |
| 1011 | */ |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 1012 | static void unmap_sg(struct device *dev, struct scatterlist *sglist, |
| 1013 | int nelems, int dir) |
| 1014 | { |
| 1015 | unsigned long flags; |
| 1016 | struct amd_iommu *iommu; |
| 1017 | struct protection_domain *domain; |
| 1018 | struct scatterlist *s; |
| 1019 | u16 devid; |
| 1020 | int i; |
| 1021 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 1022 | if (!check_device(dev) || |
| 1023 | !get_device_resources(dev, &iommu, &domain, &devid)) |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 1024 | return; |
| 1025 | |
| 1026 | spin_lock_irqsave(&domain->lock, flags); |
| 1027 | |
| 1028 | for_each_sg(sglist, s, nelems, i) { |
| 1029 | __unmap_single(iommu, domain->priv, s->dma_address, |
| 1030 | s->dma_length, dir); |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 1031 | s->dma_address = s->dma_length = 0; |
| 1032 | } |
| 1033 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 1034 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 65b050a | 2008-06-26 21:28:02 +0200 | [diff] [blame] | 1035 | iommu_completion_wait(iommu); |
| 1036 | |
| 1037 | spin_unlock_irqrestore(&domain->lock, flags); |
| 1038 | } |
| 1039 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1040 | /* |
| 1041 | * The exported alloc_coherent function for dma_ops. |
| 1042 | */ |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1043 | static void *alloc_coherent(struct device *dev, size_t size, |
| 1044 | dma_addr_t *dma_addr, gfp_t flag) |
| 1045 | { |
| 1046 | unsigned long flags; |
| 1047 | void *virt_addr; |
| 1048 | struct amd_iommu *iommu; |
| 1049 | struct protection_domain *domain; |
| 1050 | u16 devid; |
| 1051 | phys_addr_t paddr; |
| 1052 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 1053 | if (!check_device(dev)) |
| 1054 | return NULL; |
| 1055 | |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1056 | virt_addr = (void *)__get_free_pages(flag, get_order(size)); |
| 1057 | if (!virt_addr) |
| 1058 | return 0; |
| 1059 | |
| 1060 | memset(virt_addr, 0, size); |
| 1061 | paddr = virt_to_phys(virt_addr); |
| 1062 | |
| 1063 | get_device_resources(dev, &iommu, &domain, &devid); |
| 1064 | |
| 1065 | if (!iommu || !domain) { |
| 1066 | *dma_addr = (dma_addr_t)paddr; |
| 1067 | return virt_addr; |
| 1068 | } |
| 1069 | |
| 1070 | spin_lock_irqsave(&domain->lock, flags); |
| 1071 | |
| 1072 | *dma_addr = __map_single(dev, iommu, domain->priv, paddr, |
Joerg Roedel | 6d4f343 | 2008-09-04 19:18:02 +0200 | [diff] [blame] | 1073 | size, DMA_BIDIRECTIONAL, true); |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1074 | |
| 1075 | if (*dma_addr == bad_dma_address) { |
| 1076 | free_pages((unsigned long)virt_addr, get_order(size)); |
| 1077 | virt_addr = NULL; |
| 1078 | goto out; |
| 1079 | } |
| 1080 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 1081 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1082 | iommu_completion_wait(iommu); |
| 1083 | |
| 1084 | out: |
| 1085 | spin_unlock_irqrestore(&domain->lock, flags); |
| 1086 | |
| 1087 | return virt_addr; |
| 1088 | } |
| 1089 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1090 | /* |
| 1091 | * The exported free_coherent function for dma_ops. |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1092 | */ |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1093 | static void free_coherent(struct device *dev, size_t size, |
| 1094 | void *virt_addr, dma_addr_t dma_addr) |
| 1095 | { |
| 1096 | unsigned long flags; |
| 1097 | struct amd_iommu *iommu; |
| 1098 | struct protection_domain *domain; |
| 1099 | u16 devid; |
| 1100 | |
Joerg Roedel | dbcc112 | 2008-09-04 15:04:26 +0200 | [diff] [blame] | 1101 | if (!check_device(dev)) |
| 1102 | return; |
| 1103 | |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1104 | get_device_resources(dev, &iommu, &domain, &devid); |
| 1105 | |
| 1106 | if (!iommu || !domain) |
| 1107 | goto free_mem; |
| 1108 | |
| 1109 | spin_lock_irqsave(&domain->lock, flags); |
| 1110 | |
| 1111 | __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL); |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1112 | |
Joerg Roedel | 5507eef | 2008-09-04 19:01:02 +0200 | [diff] [blame] | 1113 | if (unlikely(iommu->need_sync)) |
Joerg Roedel | 5d8b53c | 2008-06-26 21:28:03 +0200 | [diff] [blame] | 1114 | iommu_completion_wait(iommu); |
| 1115 | |
| 1116 | spin_unlock_irqrestore(&domain->lock, flags); |
| 1117 | |
| 1118 | free_mem: |
| 1119 | free_pages((unsigned long)virt_addr, get_order(size)); |
| 1120 | } |
| 1121 | |
Joerg Roedel | c432f3d | 2008-06-26 21:28:04 +0200 | [diff] [blame] | 1122 | /* |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1123 | * The function for pre-allocating protection domains. |
| 1124 | * |
Joerg Roedel | c432f3d | 2008-06-26 21:28:04 +0200 | [diff] [blame] | 1125 | * If the driver core informs the DMA layer if a driver grabs a device |
| 1126 | * we don't need to preallocate the protection domains anymore. |
| 1127 | * For now we have to. |
| 1128 | */ |
| 1129 | void prealloc_protection_domains(void) |
| 1130 | { |
| 1131 | struct pci_dev *dev = NULL; |
| 1132 | struct dma_ops_domain *dma_dom; |
| 1133 | struct amd_iommu *iommu; |
| 1134 | int order = amd_iommu_aperture_order; |
| 1135 | u16 devid; |
| 1136 | |
| 1137 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { |
| 1138 | devid = (dev->bus->number << 8) | dev->devfn; |
Joerg Roedel | 3a61ec3 | 2008-07-25 13:07:50 +0200 | [diff] [blame] | 1139 | if (devid > amd_iommu_last_bdf) |
Joerg Roedel | c432f3d | 2008-06-26 21:28:04 +0200 | [diff] [blame] | 1140 | continue; |
| 1141 | devid = amd_iommu_alias_table[devid]; |
| 1142 | if (domain_for_device(devid)) |
| 1143 | continue; |
| 1144 | iommu = amd_iommu_rlookup_table[devid]; |
| 1145 | if (!iommu) |
| 1146 | continue; |
| 1147 | dma_dom = dma_ops_domain_alloc(iommu, order); |
| 1148 | if (!dma_dom) |
| 1149 | continue; |
| 1150 | init_unity_mappings_for_device(dma_dom, devid); |
| 1151 | set_device_domain(iommu, &dma_dom->domain, devid); |
| 1152 | printk(KERN_INFO "AMD IOMMU: Allocated domain %d for device ", |
| 1153 | dma_dom->domain.id); |
| 1154 | print_devid(devid, 1); |
| 1155 | } |
| 1156 | } |
| 1157 | |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1158 | static struct dma_mapping_ops amd_iommu_dma_ops = { |
| 1159 | .alloc_coherent = alloc_coherent, |
| 1160 | .free_coherent = free_coherent, |
| 1161 | .map_single = map_single, |
| 1162 | .unmap_single = unmap_single, |
| 1163 | .map_sg = map_sg, |
| 1164 | .unmap_sg = unmap_sg, |
| 1165 | }; |
| 1166 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1167 | /* |
| 1168 | * The function which clues the AMD IOMMU driver into dma_ops. |
| 1169 | */ |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1170 | int __init amd_iommu_init_dma_ops(void) |
| 1171 | { |
| 1172 | struct amd_iommu *iommu; |
| 1173 | int order = amd_iommu_aperture_order; |
| 1174 | int ret; |
| 1175 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1176 | /* |
| 1177 | * first allocate a default protection domain for every IOMMU we |
| 1178 | * found in the system. Devices not assigned to any other |
| 1179 | * protection domain will be assigned to the default one. |
| 1180 | */ |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1181 | list_for_each_entry(iommu, &amd_iommu_list, list) { |
| 1182 | iommu->default_dom = dma_ops_domain_alloc(iommu, order); |
| 1183 | if (iommu->default_dom == NULL) |
| 1184 | return -ENOMEM; |
| 1185 | ret = iommu_init_unity_mappings(iommu); |
| 1186 | if (ret) |
| 1187 | goto free_domains; |
| 1188 | } |
| 1189 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1190 | /* |
| 1191 | * If device isolation is enabled, pre-allocate the protection |
| 1192 | * domains for each device. |
| 1193 | */ |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1194 | if (amd_iommu_isolate) |
| 1195 | prealloc_protection_domains(); |
| 1196 | |
| 1197 | iommu_detected = 1; |
| 1198 | force_iommu = 1; |
| 1199 | bad_dma_address = 0; |
Ingo Molnar | 92af4e2 | 2008-06-27 10:48:16 +0200 | [diff] [blame] | 1200 | #ifdef CONFIG_GART_IOMMU |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1201 | gart_iommu_aperture_disabled = 1; |
| 1202 | gart_iommu_aperture = 0; |
Ingo Molnar | 92af4e2 | 2008-06-27 10:48:16 +0200 | [diff] [blame] | 1203 | #endif |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1204 | |
Joerg Roedel | 431b2a2 | 2008-07-11 17:14:22 +0200 | [diff] [blame] | 1205 | /* Make the driver finally visible to the drivers */ |
Joerg Roedel | 6631ee9 | 2008-06-26 21:28:05 +0200 | [diff] [blame] | 1206 | dma_ops = &amd_iommu_dma_ops; |
| 1207 | |
| 1208 | return 0; |
| 1209 | |
| 1210 | free_domains: |
| 1211 | |
| 1212 | list_for_each_entry(iommu, &amd_iommu_list, list) { |
| 1213 | if (iommu->default_dom) |
| 1214 | dma_ops_domain_free(iommu->default_dom); |
| 1215 | } |
| 1216 | |
| 1217 | return ret; |
| 1218 | } |