blob: 0e494b9d5f2005a6fbab5f479c4a1cee7e4fe2f9 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
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 Tomonori46a7fa22008-07-11 10:23:42 +090026#include <asm/iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020027#include <asm/amd_iommu_types.h>
Joerg Roedelc6da9922008-06-26 21:28:06 +020028#include <asm/amd_iommu.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020029
30#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
31
Joerg Roedel136f78a2008-07-11 17:14:27 +020032#define EXIT_LOOP_COUNT 10000000
33
Joerg Roedelb6c02712008-06-26 21:27:53 +020034static DEFINE_RWLOCK(amd_iommu_devtable_lock);
35
Joerg Roedel431b2a22008-07-11 17:14:22 +020036/*
37 * general struct to manage commands send to an IOMMU
38 */
Joerg Roedeld6449532008-07-11 17:14:28 +020039struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020040 u32 data[4];
41};
42
Joerg Roedelbd0e5212008-06-26 21:27:56 +020043static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
44 struct unity_map_entry *e);
45
Joerg Roedel431b2a22008-07-11 17:14:22 +020046/* returns !0 if the IOMMU is caching non-present entries in its TLB */
Joerg Roedel4da70b92008-06-26 21:28:01 +020047static int iommu_has_npcache(struct amd_iommu *iommu)
48{
49 return iommu->cap & IOMMU_CAP_NPCACHE;
50}
51
Joerg Roedel431b2a22008-07-11 17:14:22 +020052/****************************************************************************
53 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +020054 * Interrupt handling functions
55 *
56 ****************************************************************************/
57
58irqreturn_t amd_iommu_int_handler(int irq, void *data)
59{
60 return IRQ_NONE;
61}
62
63/****************************************************************************
64 *
Joerg Roedel431b2a22008-07-11 17:14:22 +020065 * 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 Roedeld6449532008-07-11 17:14:28 +020073static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +020074{
75 u32 tail, head;
76 u8 *target;
77
78 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Jiri Kosina8a7c5ef2008-08-19 02:13:55 +020079 target = iommu->cmd_buf + tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +020080 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 Roedel431b2a22008-07-11 17:14:22 +020090/*
91 * General queuing function for commands. Takes iommu->lock and calls
92 * __iommu_queue_command().
93 */
Joerg Roedeld6449532008-07-11 17:14:28 +020094static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +020095{
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 Roedel431b2a22008-07-11 17:14:22 +0200106/*
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 Roedela19ae1e2008-06-26 21:27:55 +0200113static int iommu_completion_wait(struct amd_iommu *iommu)
114{
Joerg Roedel519c31b2008-08-14 19:55:15 +0200115 int ret, ready = 0;
116 unsigned status = 0;
Joerg Roedeld6449532008-07-11 17:14:28 +0200117 struct iommu_cmd cmd;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200118 unsigned long i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200119
120 memset(&cmd, 0, sizeof(cmd));
Joerg Roedel519c31b2008-08-14 19:55:15 +0200121 cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200122 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 Roedel136f78a2008-07-11 17:14:27 +0200131 while (!ready && (i < EXIT_LOOP_COUNT)) {
132 ++i;
Joerg Roedel519c31b2008-08-14 19:55:15 +0200133 /* 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 Roedel136f78a2008-07-11 17:14:27 +0200136 }
137
Joerg Roedel519c31b2008-08-14 19:55:15 +0200138 /* set bit back to zero */
139 status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
140 writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
141
Joerg Roedel136f78a2008-07-11 17:14:27 +0200142 if (unlikely((i == EXIT_LOOP_COUNT) && printk_ratelimit()))
143 printk(KERN_WARNING "AMD IOMMU: Completion wait loop failed\n");
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200144
145 return 0;
146}
147
Joerg Roedel431b2a22008-07-11 17:14:22 +0200148/*
149 * Command send function for invalidating a device table entry
150 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200151static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
152{
Joerg Roedeld6449532008-07-11 17:14:28 +0200153 struct iommu_cmd cmd;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200154
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 Roedel431b2a22008-07-11 17:14:22 +0200166/*
167 * Generic command send function for invalidaing TLB entries
168 */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200169static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
170 u64 address, u16 domid, int pde, int s)
171{
Joerg Roedeld6449532008-07-11 17:14:28 +0200172 struct iommu_cmd cmd;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200173
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 Roedel8a456692008-08-14 19:55:17 +0200178 cmd.data[2] = lower_32_bits(address);
Joerg Roedel8ea80d72008-07-11 17:14:23 +0200179 cmd.data[3] = upper_32_bits(address);
Joerg Roedel431b2a22008-07-11 17:14:22 +0200180 if (s) /* size bit - we flush more than one 4kb page */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200181 cmd.data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Joerg Roedel431b2a22008-07-11 17:14:22 +0200182 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200183 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 Roedel431b2a22008-07-11 17:14:22 +0200190/*
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 Roedela19ae1e2008-06-26 21:27:55 +0200195static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
196 u64 address, size_t size)
197{
Joerg Roedel999ba412008-07-03 19:35:08 +0200198 int s = 0;
Joerg Roedela8132e52008-07-25 14:57:59 +0200199 unsigned pages = iommu_num_pages(address, size);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200200
201 address &= PAGE_MASK;
202
Joerg Roedel999ba412008-07-03 19:35:08 +0200203 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 Roedela19ae1e2008-06-26 21:27:55 +0200210 }
211
Joerg Roedel999ba412008-07-03 19:35:08 +0200212 iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
213
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200214 return 0;
215}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200216
Joerg Roedel1c655772008-09-04 18:40:05 +0200217/* Flush the whole IO/TLB for a given protection domain */
218static 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 Roedel431b2a22008-07-11 17:14:22 +0200225/****************************************************************************
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 Roedelbd0e5212008-06-26 21:27:56 +0200239static 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 Roedel431b2a22008-07-11 17:14:22 +0200289/*
290 * This function checks if a specific unity mapping entry is needed for
291 * this specific IOMMU.
292 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200293static 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 Roedel431b2a22008-07-11 17:14:22 +0200307/*
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 Roedelbd0e5212008-06-26 21:27:56 +0200313static 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 Roedel431b2a22008-07-11 17:14:22 +0200329/*
330 * This function actually applies the mapping to the page table of the
331 * dma_ops domain.
332 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200333static 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 Roedel431b2a22008-07-11 17:14:22 +0200355/*
356 * Inits the unity mappings required for a specific device
357 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +0200358static 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 Roedel431b2a22008-07-11 17:14:22 +0200375/****************************************************************************
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 Roedeld3086442008-06-26 21:27:57 +0200384static 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 Roedel431b2a22008-07-11 17:14:22 +0200390/*
391 * The address allocator core function.
392 *
393 * called with domain->lock held
394 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200395static unsigned long dma_ops_alloc_addresses(struct device *dev,
396 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200397 unsigned int pages,
398 unsigned long align_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +0200399{
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 Roedel1c655772008-09-04 18:40:05 +0200409 if (dom->next_bit >= limit) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200410 dom->next_bit = 0;
Joerg Roedel1c655772008-09-04 18:40:05 +0200411 dom->need_flush = true;
412 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200413
414 address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200415 0 , boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200416 if (address == -1) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200417 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200418 0, boundary_size, align_mask);
Joerg Roedel1c655772008-09-04 18:40:05 +0200419 dom->need_flush = true;
420 }
Joerg Roedeld3086442008-06-26 21:27:57 +0200421
422 if (likely(address != -1)) {
Joerg Roedeld3086442008-06-26 21:27:57 +0200423 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 Roedel431b2a22008-07-11 17:14:22 +0200433/*
434 * The address free function.
435 *
436 * called with domain->lock held
437 */
Joerg Roedeld3086442008-06-26 21:27:57 +0200438static 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 Roedel431b2a22008-07-11 17:14:22 +0200446/****************************************************************************
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 Roedelec487d12008-06-26 21:27:58 +0200456static 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 Roedel431b2a22008-07-11 17:14:22 +0200473/*
474 * Used to reserve address ranges in the aperture (e.g. for exclusion
475 * ranges.
476 */
Joerg Roedelec487d12008-06-26 21:27:58 +0200477static 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
489static 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 Roedel431b2a22008-07-11 17:14:22 +0200517/*
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 Roedelec487d12008-06-26 21:27:58 +0200521static 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 Roedel431b2a22008-07-11 17:14:22 +0200535/*
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 Roedelec487d12008-06-26 21:27:58 +0200540static 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 Roedel1c655772008-09-04 18:40:05 +0200580 dma_dom->need_flush = false;
581
Joerg Roedel431b2a22008-07-11 17:14:22 +0200582 /* Intialize the exclusion range if necessary */
Joerg Roedelec487d12008-06-26 21:27:58 +0200583 if (iommu->exclusion_start &&
584 iommu->exclusion_start < dma_dom->aperture_size) {
585 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
Joerg Roedela8132e52008-07-25 14:57:59 +0200586 int pages = iommu_num_pages(iommu->exclusion_start,
587 iommu->exclusion_length);
Joerg Roedelec487d12008-06-26 21:27:58 +0200588 dma_ops_reserve_addresses(dma_dom, startpage, pages);
589 }
590
Joerg Roedel431b2a22008-07-11 17:14:22 +0200591 /*
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 Roedelec487d12008-06-26 21:27:58 +0200596 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
618free_dma_dom:
619 dma_ops_domain_free(dma_dom);
620
621 return NULL;
622}
623
Joerg Roedel431b2a22008-07-11 17:14:22 +0200624/*
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 Roedelb20ac0d2008-06-26 21:27:59 +0200628static 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 Roedel431b2a22008-07-11 17:14:22 +0200640/*
641 * If a device is not yet associated with a domain, this function does
642 * assigns it visible for the hardware
643 */
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200644static 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 Roedel431b2a22008-07-11 17:14:22 +0200668/*****************************************************************************
669 *
670 * The next functions belong to the dma_ops mapping/unmapping code.
671 *
672 *****************************************************************************/
673
674/*
Joerg Roedeldbcc1122008-09-04 15:04:26 +0200675 * This function checks if the driver got a valid device from the caller to
676 * avoid dereferencing invalid pointers.
677 */
678static bool check_device(struct device *dev)
679{
680 if (!dev || !dev->dma_mask)
681 return false;
682
683 return true;
684}
685
686/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200687 * 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 Roedelb20ac0d2008-06-26 21:27:59 +0200693static 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 Roedeldbcc1122008-09-04 15:04:26 +0200702 *iommu = NULL;
703 *domain = NULL;
704 *bdf = 0xffff;
705
706 if (dev->bus != &pci_bus_type)
707 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200708
709 pcidev = to_pci_dev(dev);
Joerg Roedeld591b0a2008-07-11 17:14:35 +0200710 _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200711
Joerg Roedel431b2a22008-07-11 17:14:22 +0200712 /* device not translated by any IOMMU in the system? */
Joerg Roedeldbcc1122008-09-04 15:04:26 +0200713 if (_bdf > amd_iommu_last_bdf)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200714 return 0;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +0200715
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 Roedel431b2a22008-07-11 17:14:22 +0200734/*
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 Roedelcb76c322008-06-26 21:28:00 +0200738static 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 Roedel431b2a22008-07-11 17:14:22 +0200769/*
770 * The generic unmapping function for on page in the DMA address space.
771 */
Joerg Roedelcb76c322008-06-26 21:28:00 +0200772static 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 Roedel431b2a22008-07-11 17:14:22 +0200791/*
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 Roedelcb76c322008-06-26 21:28:00 +0200797static 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 Roedel6d4f3432008-09-04 19:18:02 +0200802 int dir,
803 bool align)
Joerg Roedelcb76c322008-06-26 21:28:00 +0200804{
805 dma_addr_t offset = paddr & ~PAGE_MASK;
806 dma_addr_t address, start;
807 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200808 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +0200809 int i;
810
Joerg Roedela8132e52008-07-25 14:57:59 +0200811 pages = iommu_num_pages(paddr, size);
Joerg Roedelcb76c322008-06-26 21:28:00 +0200812 paddr &= PAGE_MASK;
813
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200814 if (align)
815 align_mask = (1UL << get_order(size)) - 1;
816
817 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask);
Joerg Roedelcb76c322008-06-26 21:28:00 +0200818 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 Roedel1c655772008-09-04 18:40:05 +0200829 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 Roedel270cab242008-09-04 15:49:46 +0200833 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
834
Joerg Roedelcb76c322008-06-26 21:28:00 +0200835out:
836 return address;
837}
838
Joerg Roedel431b2a22008-07-11 17:14:22 +0200839/*
840 * Does the reverse of the __map_single function. Must be called with
841 * the domain lock held too
842 */
Joerg Roedelcb76c322008-06-26 21:28:00 +0200843static 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 Roedela8132e52008-07-25 14:57:59 +0200855 pages = iommu_num_pages(dma_addr, size);
Joerg Roedelcb76c322008-06-26 21:28:00 +0200856 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 Roedel270cab242008-09-04 15:49:46 +0200865
Joerg Roedel1c655772008-09-04 18:40:05 +0200866 if (iommu_fullflush)
867 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
Joerg Roedelcb76c322008-06-26 21:28:00 +0200868}
869
Joerg Roedel431b2a22008-07-11 17:14:22 +0200870/*
871 * The exported map_single function for dma_ops.
872 */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200873static 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 Roedeldbcc1122008-09-04 15:04:26 +0200882 if (!check_device(dev))
883 return bad_dma_address;
884
Joerg Roedel4da70b92008-06-26 21:28:01 +0200885 get_device_resources(dev, &iommu, &domain, &devid);
886
887 if (iommu == NULL || domain == NULL)
Joerg Roedel431b2a22008-07-11 17:14:22 +0200888 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200889 return (dma_addr_t)paddr;
890
891 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel6d4f3432008-09-04 19:18:02 +0200892 addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false);
Joerg Roedel4da70b92008-06-26 21:28:01 +0200893 if (addr == bad_dma_address)
894 goto out;
895
Joerg Roedel5507eef2008-09-04 19:01:02 +0200896 if (unlikely(iommu->need_sync))
Joerg Roedel4da70b92008-06-26 21:28:01 +0200897 iommu_completion_wait(iommu);
898
899out:
900 spin_unlock_irqrestore(&domain->lock, flags);
901
902 return addr;
903}
904
Joerg Roedel431b2a22008-07-11 17:14:22 +0200905/*
906 * The exported unmap_single function for dma_ops.
907 */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200908static 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 Roedeldbcc1122008-09-04 15:04:26 +0200916 if (!check_device(dev) ||
917 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel431b2a22008-07-11 17:14:22 +0200918 /* device not handled by any AMD IOMMU */
Joerg Roedel4da70b92008-06-26 21:28:01 +0200919 return;
920
921 spin_lock_irqsave(&domain->lock, flags);
922
923 __unmap_single(iommu, domain->priv, dma_addr, size, dir);
924
Joerg Roedel5507eef2008-09-04 19:01:02 +0200925 if (unlikely(iommu->need_sync))
Joerg Roedel4da70b92008-06-26 21:28:01 +0200926 iommu_completion_wait(iommu);
927
928 spin_unlock_irqrestore(&domain->lock, flags);
929}
930
Joerg Roedel431b2a22008-07-11 17:14:22 +0200931/*
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 Roedel65b050a2008-06-26 21:28:02 +0200935static 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 Roedel431b2a22008-07-11 17:14:22 +0200949/*
950 * The exported map_sg function for dma_ops (handles scatter-gather
951 * lists).
952 */
Joerg Roedel65b050a2008-06-26 21:28:02 +0200953static 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 Roedeldbcc1122008-09-04 15:04:26 +0200965 if (!check_device(dev))
966 return 0;
967
Joerg Roedel65b050a2008-06-26 21:28:02 +0200968 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 Roedel6d4f3432008-09-04 19:18:02 +0200979 paddr, s->length, dir, false);
Joerg Roedel65b050a2008-06-26 21:28:02 +0200980
981 if (s->dma_address) {
982 s->dma_length = s->length;
983 mapped_elems++;
984 } else
985 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +0200986 }
987
Joerg Roedel5507eef2008-09-04 19:01:02 +0200988 if (unlikely(iommu->need_sync))
Joerg Roedel65b050a2008-06-26 21:28:02 +0200989 iommu_completion_wait(iommu);
990
991out:
992 spin_unlock_irqrestore(&domain->lock, flags);
993
994 return mapped_elems;
995unmap:
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 Roedel431b2a22008-07-11 17:14:22 +02001008/*
1009 * The exported map_sg function for dma_ops (handles scatter-gather
1010 * lists).
1011 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02001012static 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 Roedeldbcc1122008-09-04 15:04:26 +02001022 if (!check_device(dev) ||
1023 !get_device_resources(dev, &iommu, &domain, &devid))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001024 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 Roedel65b050a2008-06-26 21:28:02 +02001031 s->dma_address = s->dma_length = 0;
1032 }
1033
Joerg Roedel5507eef2008-09-04 19:01:02 +02001034 if (unlikely(iommu->need_sync))
Joerg Roedel65b050a2008-06-26 21:28:02 +02001035 iommu_completion_wait(iommu);
1036
1037 spin_unlock_irqrestore(&domain->lock, flags);
1038}
1039
Joerg Roedel431b2a22008-07-11 17:14:22 +02001040/*
1041 * The exported alloc_coherent function for dma_ops.
1042 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001043static 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 Roedeldbcc1122008-09-04 15:04:26 +02001053 if (!check_device(dev))
1054 return NULL;
1055
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001056 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 Roedel6d4f3432008-09-04 19:18:02 +02001073 size, DMA_BIDIRECTIONAL, true);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001074
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 Roedel5507eef2008-09-04 19:01:02 +02001081 if (unlikely(iommu->need_sync))
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001082 iommu_completion_wait(iommu);
1083
1084out:
1085 spin_unlock_irqrestore(&domain->lock, flags);
1086
1087 return virt_addr;
1088}
1089
Joerg Roedel431b2a22008-07-11 17:14:22 +02001090/*
1091 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001092 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001093static 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 Roedeldbcc1122008-09-04 15:04:26 +02001101 if (!check_device(dev))
1102 return;
1103
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001104 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 Roedel5d8b53c2008-06-26 21:28:03 +02001112
Joerg Roedel5507eef2008-09-04 19:01:02 +02001113 if (unlikely(iommu->need_sync))
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02001114 iommu_completion_wait(iommu);
1115
1116 spin_unlock_irqrestore(&domain->lock, flags);
1117
1118free_mem:
1119 free_pages((unsigned long)virt_addr, get_order(size));
1120}
1121
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001122/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001123 * The function for pre-allocating protection domains.
1124 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001125 * 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 */
1129void 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 Roedel3a61ec32008-07-25 13:07:50 +02001139 if (devid > amd_iommu_last_bdf)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02001140 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 Roedel6631ee92008-06-26 21:28:05 +02001158static 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 Roedel431b2a22008-07-11 17:14:22 +02001167/*
1168 * The function which clues the AMD IOMMU driver into dma_ops.
1169 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001170int __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 Roedel431b2a22008-07-11 17:14:22 +02001176 /*
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 Roedel6631ee92008-06-26 21:28:05 +02001181 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 Roedel431b2a22008-07-11 17:14:22 +02001190 /*
1191 * If device isolation is enabled, pre-allocate the protection
1192 * domains for each device.
1193 */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001194 if (amd_iommu_isolate)
1195 prealloc_protection_domains();
1196
1197 iommu_detected = 1;
1198 force_iommu = 1;
1199 bad_dma_address = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001200#ifdef CONFIG_GART_IOMMU
Joerg Roedel6631ee92008-06-26 21:28:05 +02001201 gart_iommu_aperture_disabled = 1;
1202 gart_iommu_aperture = 0;
Ingo Molnar92af4e22008-06-27 10:48:16 +02001203#endif
Joerg Roedel6631ee92008-06-26 21:28:05 +02001204
Joerg Roedel431b2a22008-07-11 17:14:22 +02001205 /* Make the driver finally visible to the drivers */
Joerg Roedel6631ee92008-06-26 21:28:05 +02001206 dma_ops = &amd_iommu_dma_ops;
1207
1208 return 0;
1209
1210free_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}