AMD IOMMU: add domain address lookup function for IOMMU API
[safe/jmp/linux-2.6] / arch / x86 / kernel / amd_iommu.c
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 #ifdef CONFIG_IOMMU_API
26 #include <linux/iommu.h>
27 #endif
28 #include <asm/proto.h>
29 #include <asm/iommu.h>
30 #include <asm/gart.h>
31 #include <asm/amd_iommu_types.h>
32 #include <asm/amd_iommu.h>
33
34 #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
35
36 #define EXIT_LOOP_COUNT 10000000
37
38 static DEFINE_RWLOCK(amd_iommu_devtable_lock);
39
40 /* A list of preallocated protection domains */
41 static LIST_HEAD(iommu_pd_list);
42 static DEFINE_SPINLOCK(iommu_pd_list_lock);
43
44 /*
45  * general struct to manage commands send to an IOMMU
46  */
47 struct iommu_cmd {
48         u32 data[4];
49 };
50
51 static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
52                              struct unity_map_entry *e);
53 static struct dma_ops_domain *find_protection_domain(u16 devid);
54
55
56 /* returns !0 if the IOMMU is caching non-present entries in its TLB */
57 static int iommu_has_npcache(struct amd_iommu *iommu)
58 {
59         return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
60 }
61
62 /****************************************************************************
63  *
64  * Interrupt handling functions
65  *
66  ****************************************************************************/
67
68 static void iommu_print_event(void *__evt)
69 {
70         u32 *event = __evt;
71         int type  = (event[1] >> EVENT_TYPE_SHIFT)  & EVENT_TYPE_MASK;
72         int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
73         int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
74         int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
75         u64 address = (u64)(((u64)event[3]) << 32) | event[2];
76
77         printk(KERN_ERR "AMD IOMMU: Event logged [");
78
79         switch (type) {
80         case EVENT_TYPE_ILL_DEV:
81                 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
82                        "address=0x%016llx flags=0x%04x]\n",
83                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
84                        address, flags);
85                 break;
86         case EVENT_TYPE_IO_FAULT:
87                 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
88                        "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
89                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90                        domid, address, flags);
91                 break;
92         case EVENT_TYPE_DEV_TAB_ERR:
93                 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
94                        "address=0x%016llx flags=0x%04x]\n",
95                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
96                        address, flags);
97                 break;
98         case EVENT_TYPE_PAGE_TAB_ERR:
99                 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
100                        "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
101                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
102                        domid, address, flags);
103                 break;
104         case EVENT_TYPE_ILL_CMD:
105                 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
106                 break;
107         case EVENT_TYPE_CMD_HARD_ERR:
108                 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
109                        "flags=0x%04x]\n", address, flags);
110                 break;
111         case EVENT_TYPE_IOTLB_INV_TO:
112                 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
113                        "address=0x%016llx]\n",
114                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
115                        address);
116                 break;
117         case EVENT_TYPE_INV_DEV_REQ:
118                 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
119                        "address=0x%016llx flags=0x%04x]\n",
120                        PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
121                        address, flags);
122                 break;
123         default:
124                 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
125         }
126 }
127
128 static void iommu_poll_events(struct amd_iommu *iommu)
129 {
130         u32 head, tail;
131         unsigned long flags;
132
133         spin_lock_irqsave(&iommu->lock, flags);
134
135         head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
136         tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
137
138         while (head != tail) {
139                 iommu_print_event(iommu->evt_buf + head);
140                 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
141         }
142
143         writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
144
145         spin_unlock_irqrestore(&iommu->lock, flags);
146 }
147
148 irqreturn_t amd_iommu_int_handler(int irq, void *data)
149 {
150         struct amd_iommu *iommu;
151
152         list_for_each_entry(iommu, &amd_iommu_list, list)
153                 iommu_poll_events(iommu);
154
155         return IRQ_HANDLED;
156 }
157
158 /****************************************************************************
159  *
160  * IOMMU command queuing functions
161  *
162  ****************************************************************************/
163
164 /*
165  * Writes the command to the IOMMUs command buffer and informs the
166  * hardware about the new command. Must be called with iommu->lock held.
167  */
168 static int __iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
169 {
170         u32 tail, head;
171         u8 *target;
172
173         tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
174         target = iommu->cmd_buf + tail;
175         memcpy_toio(target, cmd, sizeof(*cmd));
176         tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
177         head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
178         if (tail == head)
179                 return -ENOMEM;
180         writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
181
182         return 0;
183 }
184
185 /*
186  * General queuing function for commands. Takes iommu->lock and calls
187  * __iommu_queue_command().
188  */
189 static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
190 {
191         unsigned long flags;
192         int ret;
193
194         spin_lock_irqsave(&iommu->lock, flags);
195         ret = __iommu_queue_command(iommu, cmd);
196         if (!ret)
197                 iommu->need_sync = 1;
198         spin_unlock_irqrestore(&iommu->lock, flags);
199
200         return ret;
201 }
202
203 /*
204  * This function waits until an IOMMU has completed a completion
205  * wait command
206  */
207 static void __iommu_wait_for_completion(struct amd_iommu *iommu)
208 {
209         int ready = 0;
210         unsigned status = 0;
211         unsigned long i = 0;
212
213         while (!ready && (i < EXIT_LOOP_COUNT)) {
214                 ++i;
215                 /* wait for the bit to become one */
216                 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
217                 ready = status & MMIO_STATUS_COM_WAIT_INT_MASK;
218         }
219
220         /* set bit back to zero */
221         status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
222         writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
223
224         if (unlikely(i == EXIT_LOOP_COUNT))
225                 panic("AMD IOMMU: Completion wait loop failed\n");
226 }
227
228 /*
229  * This function queues a completion wait command into the command
230  * buffer of an IOMMU
231  */
232 static int __iommu_completion_wait(struct amd_iommu *iommu)
233 {
234         struct iommu_cmd cmd;
235
236          memset(&cmd, 0, sizeof(cmd));
237          cmd.data[0] = CMD_COMPL_WAIT_INT_MASK;
238          CMD_SET_TYPE(&cmd, CMD_COMPL_WAIT);
239
240          return __iommu_queue_command(iommu, &cmd);
241 }
242
243 /*
244  * This function is called whenever we need to ensure that the IOMMU has
245  * completed execution of all commands we sent. It sends a
246  * COMPLETION_WAIT command and waits for it to finish. The IOMMU informs
247  * us about that by writing a value to a physical address we pass with
248  * the command.
249  */
250 static int iommu_completion_wait(struct amd_iommu *iommu)
251 {
252         int ret = 0;
253         unsigned long flags;
254
255         spin_lock_irqsave(&iommu->lock, flags);
256
257         if (!iommu->need_sync)
258                 goto out;
259
260         ret = __iommu_completion_wait(iommu);
261
262         iommu->need_sync = 0;
263
264         if (ret)
265                 goto out;
266
267         __iommu_wait_for_completion(iommu);
268
269 out:
270         spin_unlock_irqrestore(&iommu->lock, flags);
271
272         return 0;
273 }
274
275 /*
276  * Command send function for invalidating a device table entry
277  */
278 static int iommu_queue_inv_dev_entry(struct amd_iommu *iommu, u16 devid)
279 {
280         struct iommu_cmd cmd;
281         int ret;
282
283         BUG_ON(iommu == NULL);
284
285         memset(&cmd, 0, sizeof(cmd));
286         CMD_SET_TYPE(&cmd, CMD_INV_DEV_ENTRY);
287         cmd.data[0] = devid;
288
289         ret = iommu_queue_command(iommu, &cmd);
290
291         return ret;
292 }
293
294 static void __iommu_build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
295                                           u16 domid, int pde, int s)
296 {
297         memset(cmd, 0, sizeof(*cmd));
298         address &= PAGE_MASK;
299         CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
300         cmd->data[1] |= domid;
301         cmd->data[2] = lower_32_bits(address);
302         cmd->data[3] = upper_32_bits(address);
303         if (s) /* size bit - we flush more than one 4kb page */
304                 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
305         if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
306                 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
307 }
308
309 /*
310  * Generic command send function for invalidaing TLB entries
311  */
312 static int iommu_queue_inv_iommu_pages(struct amd_iommu *iommu,
313                 u64 address, u16 domid, int pde, int s)
314 {
315         struct iommu_cmd cmd;
316         int ret;
317
318         __iommu_build_inv_iommu_pages(&cmd, address, domid, pde, s);
319
320         ret = iommu_queue_command(iommu, &cmd);
321
322         return ret;
323 }
324
325 /*
326  * TLB invalidation function which is called from the mapping functions.
327  * It invalidates a single PTE if the range to flush is within a single
328  * page. Otherwise it flushes the whole TLB of the IOMMU.
329  */
330 static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid,
331                 u64 address, size_t size)
332 {
333         int s = 0;
334         unsigned pages = iommu_num_pages(address, size, PAGE_SIZE);
335
336         address &= PAGE_MASK;
337
338         if (pages > 1) {
339                 /*
340                  * If we have to flush more than one page, flush all
341                  * TLB entries for this domain
342                  */
343                 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
344                 s = 1;
345         }
346
347         iommu_queue_inv_iommu_pages(iommu, address, domid, 0, s);
348
349         return 0;
350 }
351
352 /* Flush the whole IO/TLB for a given protection domain */
353 static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
354 {
355         u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
356
357         iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
358 }
359
360 #ifdef CONFIG_IOMMU_API
361 /*
362  * This function is used to flush the IO/TLB for a given protection domain
363  * on every IOMMU in the system
364  */
365 static void iommu_flush_domain(u16 domid)
366 {
367         unsigned long flags;
368         struct amd_iommu *iommu;
369         struct iommu_cmd cmd;
370
371         __iommu_build_inv_iommu_pages(&cmd, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
372                                       domid, 1, 1);
373
374         list_for_each_entry(iommu, &amd_iommu_list, list) {
375                 spin_lock_irqsave(&iommu->lock, flags);
376                 __iommu_queue_command(iommu, &cmd);
377                 __iommu_completion_wait(iommu);
378                 __iommu_wait_for_completion(iommu);
379                 spin_unlock_irqrestore(&iommu->lock, flags);
380         }
381 }
382 #endif
383
384 /****************************************************************************
385  *
386  * The functions below are used the create the page table mappings for
387  * unity mapped regions.
388  *
389  ****************************************************************************/
390
391 /*
392  * Generic mapping functions. It maps a physical address into a DMA
393  * address space. It allocates the page table pages if necessary.
394  * In the future it can be extended to a generic mapping function
395  * supporting all features of AMD IOMMU page tables like level skipping
396  * and full 64 bit address spaces.
397  */
398 static int iommu_map_page(struct protection_domain *dom,
399                           unsigned long bus_addr,
400                           unsigned long phys_addr,
401                           int prot)
402 {
403         u64 __pte, *pte, *page;
404
405         bus_addr  = PAGE_ALIGN(bus_addr);
406         phys_addr = PAGE_ALIGN(phys_addr);
407
408         /* only support 512GB address spaces for now */
409         if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
410                 return -EINVAL;
411
412         pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
413
414         if (!IOMMU_PTE_PRESENT(*pte)) {
415                 page = (u64 *)get_zeroed_page(GFP_KERNEL);
416                 if (!page)
417                         return -ENOMEM;
418                 *pte = IOMMU_L2_PDE(virt_to_phys(page));
419         }
420
421         pte = IOMMU_PTE_PAGE(*pte);
422         pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
423
424         if (!IOMMU_PTE_PRESENT(*pte)) {
425                 page = (u64 *)get_zeroed_page(GFP_KERNEL);
426                 if (!page)
427                         return -ENOMEM;
428                 *pte = IOMMU_L1_PDE(virt_to_phys(page));
429         }
430
431         pte = IOMMU_PTE_PAGE(*pte);
432         pte = &pte[IOMMU_PTE_L0_INDEX(bus_addr)];
433
434         if (IOMMU_PTE_PRESENT(*pte))
435                 return -EBUSY;
436
437         __pte = phys_addr | IOMMU_PTE_P;
438         if (prot & IOMMU_PROT_IR)
439                 __pte |= IOMMU_PTE_IR;
440         if (prot & IOMMU_PROT_IW)
441                 __pte |= IOMMU_PTE_IW;
442
443         *pte = __pte;
444
445         return 0;
446 }
447
448 #ifdef CONFIG_IOMMU_API
449 static void iommu_unmap_page(struct protection_domain *dom,
450                              unsigned long bus_addr)
451 {
452         u64 *pte;
453
454         pte = &dom->pt_root[IOMMU_PTE_L2_INDEX(bus_addr)];
455
456         if (!IOMMU_PTE_PRESENT(*pte))
457                 return;
458
459         pte = IOMMU_PTE_PAGE(*pte);
460         pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
461
462         if (!IOMMU_PTE_PRESENT(*pte))
463                 return;
464
465         pte = IOMMU_PTE_PAGE(*pte);
466         pte = &pte[IOMMU_PTE_L1_INDEX(bus_addr)];
467
468         *pte = 0;
469 }
470 #endif
471
472 /*
473  * This function checks if a specific unity mapping entry is needed for
474  * this specific IOMMU.
475  */
476 static int iommu_for_unity_map(struct amd_iommu *iommu,
477                                struct unity_map_entry *entry)
478 {
479         u16 bdf, i;
480
481         for (i = entry->devid_start; i <= entry->devid_end; ++i) {
482                 bdf = amd_iommu_alias_table[i];
483                 if (amd_iommu_rlookup_table[bdf] == iommu)
484                         return 1;
485         }
486
487         return 0;
488 }
489
490 /*
491  * Init the unity mappings for a specific IOMMU in the system
492  *
493  * Basically iterates over all unity mapping entries and applies them to
494  * the default domain DMA of that IOMMU if necessary.
495  */
496 static int iommu_init_unity_mappings(struct amd_iommu *iommu)
497 {
498         struct unity_map_entry *entry;
499         int ret;
500
501         list_for_each_entry(entry, &amd_iommu_unity_map, list) {
502                 if (!iommu_for_unity_map(iommu, entry))
503                         continue;
504                 ret = dma_ops_unity_map(iommu->default_dom, entry);
505                 if (ret)
506                         return ret;
507         }
508
509         return 0;
510 }
511
512 /*
513  * This function actually applies the mapping to the page table of the
514  * dma_ops domain.
515  */
516 static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
517                              struct unity_map_entry *e)
518 {
519         u64 addr;
520         int ret;
521
522         for (addr = e->address_start; addr < e->address_end;
523              addr += PAGE_SIZE) {
524                 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot);
525                 if (ret)
526                         return ret;
527                 /*
528                  * if unity mapping is in aperture range mark the page
529                  * as allocated in the aperture
530                  */
531                 if (addr < dma_dom->aperture_size)
532                         __set_bit(addr >> PAGE_SHIFT, dma_dom->bitmap);
533         }
534
535         return 0;
536 }
537
538 /*
539  * Inits the unity mappings required for a specific device
540  */
541 static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
542                                           u16 devid)
543 {
544         struct unity_map_entry *e;
545         int ret;
546
547         list_for_each_entry(e, &amd_iommu_unity_map, list) {
548                 if (!(devid >= e->devid_start && devid <= e->devid_end))
549                         continue;
550                 ret = dma_ops_unity_map(dma_dom, e);
551                 if (ret)
552                         return ret;
553         }
554
555         return 0;
556 }
557
558 /****************************************************************************
559  *
560  * The next functions belong to the address allocator for the dma_ops
561  * interface functions. They work like the allocators in the other IOMMU
562  * drivers. Its basically a bitmap which marks the allocated pages in
563  * the aperture. Maybe it could be enhanced in the future to a more
564  * efficient allocator.
565  *
566  ****************************************************************************/
567
568 /*
569  * The address allocator core function.
570  *
571  * called with domain->lock held
572  */
573 static unsigned long dma_ops_alloc_addresses(struct device *dev,
574                                              struct dma_ops_domain *dom,
575                                              unsigned int pages,
576                                              unsigned long align_mask,
577                                              u64 dma_mask)
578 {
579         unsigned long limit;
580         unsigned long address;
581         unsigned long boundary_size;
582
583         boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
584                         PAGE_SIZE) >> PAGE_SHIFT;
585         limit = iommu_device_max_index(dom->aperture_size >> PAGE_SHIFT, 0,
586                                        dma_mask >> PAGE_SHIFT);
587
588         if (dom->next_bit >= limit) {
589                 dom->next_bit = 0;
590                 dom->need_flush = true;
591         }
592
593         address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
594                                    0 , boundary_size, align_mask);
595         if (address == -1) {
596                 address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
597                                 0, boundary_size, align_mask);
598                 dom->need_flush = true;
599         }
600
601         if (likely(address != -1)) {
602                 dom->next_bit = address + pages;
603                 address <<= PAGE_SHIFT;
604         } else
605                 address = bad_dma_address;
606
607         WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
608
609         return address;
610 }
611
612 /*
613  * The address free function.
614  *
615  * called with domain->lock held
616  */
617 static void dma_ops_free_addresses(struct dma_ops_domain *dom,
618                                    unsigned long address,
619                                    unsigned int pages)
620 {
621         address >>= PAGE_SHIFT;
622         iommu_area_free(dom->bitmap, address, pages);
623
624         if (address >= dom->next_bit)
625                 dom->need_flush = true;
626 }
627
628 /****************************************************************************
629  *
630  * The next functions belong to the domain allocation. A domain is
631  * allocated for every IOMMU as the default domain. If device isolation
632  * is enabled, every device get its own domain. The most important thing
633  * about domains is the page table mapping the DMA address space they
634  * contain.
635  *
636  ****************************************************************************/
637
638 static u16 domain_id_alloc(void)
639 {
640         unsigned long flags;
641         int id;
642
643         write_lock_irqsave(&amd_iommu_devtable_lock, flags);
644         id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
645         BUG_ON(id == 0);
646         if (id > 0 && id < MAX_DOMAIN_ID)
647                 __set_bit(id, amd_iommu_pd_alloc_bitmap);
648         else
649                 id = 0;
650         write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
651
652         return id;
653 }
654
655 #ifdef CONFIG_IOMMU_API
656 static void domain_id_free(int id)
657 {
658         unsigned long flags;
659
660         write_lock_irqsave(&amd_iommu_devtable_lock, flags);
661         if (id > 0 && id < MAX_DOMAIN_ID)
662                 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
663         write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
664 }
665 #endif
666
667 /*
668  * Used to reserve address ranges in the aperture (e.g. for exclusion
669  * ranges.
670  */
671 static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
672                                       unsigned long start_page,
673                                       unsigned int pages)
674 {
675         unsigned int last_page = dom->aperture_size >> PAGE_SHIFT;
676
677         if (start_page + pages > last_page)
678                 pages = last_page - start_page;
679
680         iommu_area_reserve(dom->bitmap, start_page, pages);
681 }
682
683 static void free_pagetable(struct protection_domain *domain)
684 {
685         int i, j;
686         u64 *p1, *p2, *p3;
687
688         p1 = domain->pt_root;
689
690         if (!p1)
691                 return;
692
693         for (i = 0; i < 512; ++i) {
694                 if (!IOMMU_PTE_PRESENT(p1[i]))
695                         continue;
696
697                 p2 = IOMMU_PTE_PAGE(p1[i]);
698                 for (j = 0; j < 512; ++j) {
699                         if (!IOMMU_PTE_PRESENT(p2[j]))
700                                 continue;
701                         p3 = IOMMU_PTE_PAGE(p2[j]);
702                         free_page((unsigned long)p3);
703                 }
704
705                 free_page((unsigned long)p2);
706         }
707
708         free_page((unsigned long)p1);
709
710         domain->pt_root = NULL;
711 }
712
713 /*
714  * Free a domain, only used if something went wrong in the
715  * allocation path and we need to free an already allocated page table
716  */
717 static void dma_ops_domain_free(struct dma_ops_domain *dom)
718 {
719         if (!dom)
720                 return;
721
722         free_pagetable(&dom->domain);
723
724         kfree(dom->pte_pages);
725
726         kfree(dom->bitmap);
727
728         kfree(dom);
729 }
730
731 /*
732  * Allocates a new protection domain usable for the dma_ops functions.
733  * It also intializes the page table and the address allocator data
734  * structures required for the dma_ops interface
735  */
736 static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu,
737                                                    unsigned order)
738 {
739         struct dma_ops_domain *dma_dom;
740         unsigned i, num_pte_pages;
741         u64 *l2_pde;
742         u64 address;
743
744         /*
745          * Currently the DMA aperture must be between 32 MB and 1GB in size
746          */
747         if ((order < 25) || (order > 30))
748                 return NULL;
749
750         dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
751         if (!dma_dom)
752                 return NULL;
753
754         spin_lock_init(&dma_dom->domain.lock);
755
756         dma_dom->domain.id = domain_id_alloc();
757         if (dma_dom->domain.id == 0)
758                 goto free_dma_dom;
759         dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
760         dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
761         dma_dom->domain.flags = PD_DMA_OPS_MASK;
762         dma_dom->domain.priv = dma_dom;
763         if (!dma_dom->domain.pt_root)
764                 goto free_dma_dom;
765         dma_dom->aperture_size = (1ULL << order);
766         dma_dom->bitmap = kzalloc(dma_dom->aperture_size / (PAGE_SIZE * 8),
767                                   GFP_KERNEL);
768         if (!dma_dom->bitmap)
769                 goto free_dma_dom;
770         /*
771          * mark the first page as allocated so we never return 0 as
772          * a valid dma-address. So we can use 0 as error value
773          */
774         dma_dom->bitmap[0] = 1;
775         dma_dom->next_bit = 0;
776
777         dma_dom->need_flush = false;
778         dma_dom->target_dev = 0xffff;
779
780         /* Intialize the exclusion range if necessary */
781         if (iommu->exclusion_start &&
782             iommu->exclusion_start < dma_dom->aperture_size) {
783                 unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT;
784                 int pages = iommu_num_pages(iommu->exclusion_start,
785                                             iommu->exclusion_length,
786                                             PAGE_SIZE);
787                 dma_ops_reserve_addresses(dma_dom, startpage, pages);
788         }
789
790         /*
791          * At the last step, build the page tables so we don't need to
792          * allocate page table pages in the dma_ops mapping/unmapping
793          * path.
794          */
795         num_pte_pages = dma_dom->aperture_size / (PAGE_SIZE * 512);
796         dma_dom->pte_pages = kzalloc(num_pte_pages * sizeof(void *),
797                         GFP_KERNEL);
798         if (!dma_dom->pte_pages)
799                 goto free_dma_dom;
800
801         l2_pde = (u64 *)get_zeroed_page(GFP_KERNEL);
802         if (l2_pde == NULL)
803                 goto free_dma_dom;
804
805         dma_dom->domain.pt_root[0] = IOMMU_L2_PDE(virt_to_phys(l2_pde));
806
807         for (i = 0; i < num_pte_pages; ++i) {
808                 dma_dom->pte_pages[i] = (u64 *)get_zeroed_page(GFP_KERNEL);
809                 if (!dma_dom->pte_pages[i])
810                         goto free_dma_dom;
811                 address = virt_to_phys(dma_dom->pte_pages[i]);
812                 l2_pde[i] = IOMMU_L1_PDE(address);
813         }
814
815         return dma_dom;
816
817 free_dma_dom:
818         dma_ops_domain_free(dma_dom);
819
820         return NULL;
821 }
822
823 /*
824  * little helper function to check whether a given protection domain is a
825  * dma_ops domain
826  */
827 static bool dma_ops_domain(struct protection_domain *domain)
828 {
829         return domain->flags & PD_DMA_OPS_MASK;
830 }
831
832 /*
833  * Find out the protection domain structure for a given PCI device. This
834  * will give us the pointer to the page table root for example.
835  */
836 static struct protection_domain *domain_for_device(u16 devid)
837 {
838         struct protection_domain *dom;
839         unsigned long flags;
840
841         read_lock_irqsave(&amd_iommu_devtable_lock, flags);
842         dom = amd_iommu_pd_table[devid];
843         read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
844
845         return dom;
846 }
847
848 /*
849  * If a device is not yet associated with a domain, this function does
850  * assigns it visible for the hardware
851  */
852 static void attach_device(struct amd_iommu *iommu,
853                           struct protection_domain *domain,
854                           u16 devid)
855 {
856         unsigned long flags;
857         u64 pte_root = virt_to_phys(domain->pt_root);
858
859         domain->dev_cnt += 1;
860
861         pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
862                     << DEV_ENTRY_MODE_SHIFT;
863         pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
864
865         write_lock_irqsave(&amd_iommu_devtable_lock, flags);
866         amd_iommu_dev_table[devid].data[0] = lower_32_bits(pte_root);
867         amd_iommu_dev_table[devid].data[1] = upper_32_bits(pte_root);
868         amd_iommu_dev_table[devid].data[2] = domain->id;
869
870         amd_iommu_pd_table[devid] = domain;
871         write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
872
873         iommu_queue_inv_dev_entry(iommu, devid);
874 }
875
876 /*
877  * Removes a device from a protection domain (unlocked)
878  */
879 static void __detach_device(struct protection_domain *domain, u16 devid)
880 {
881
882         /* lock domain */
883         spin_lock(&domain->lock);
884
885         /* remove domain from the lookup table */
886         amd_iommu_pd_table[devid] = NULL;
887
888         /* remove entry from the device table seen by the hardware */
889         amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
890         amd_iommu_dev_table[devid].data[1] = 0;
891         amd_iommu_dev_table[devid].data[2] = 0;
892
893         /* decrease reference counter */
894         domain->dev_cnt -= 1;
895
896         /* ready */
897         spin_unlock(&domain->lock);
898 }
899
900 /*
901  * Removes a device from a protection domain (with devtable_lock held)
902  */
903 static void detach_device(struct protection_domain *domain, u16 devid)
904 {
905         unsigned long flags;
906
907         /* lock device table */
908         write_lock_irqsave(&amd_iommu_devtable_lock, flags);
909         __detach_device(domain, devid);
910         write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
911 }
912
913 static int device_change_notifier(struct notifier_block *nb,
914                                   unsigned long action, void *data)
915 {
916         struct device *dev = data;
917         struct pci_dev *pdev = to_pci_dev(dev);
918         u16 devid = calc_devid(pdev->bus->number, pdev->devfn);
919         struct protection_domain *domain;
920         struct dma_ops_domain *dma_domain;
921         struct amd_iommu *iommu;
922
923         if (devid > amd_iommu_last_bdf)
924                 goto out;
925
926         devid = amd_iommu_alias_table[devid];
927
928         iommu = amd_iommu_rlookup_table[devid];
929         if (iommu == NULL)
930                 goto out;
931
932         domain = domain_for_device(devid);
933
934         if (domain && !dma_ops_domain(domain))
935                 WARN_ONCE(1, "AMD IOMMU WARNING: device %s already bound "
936                           "to a non-dma-ops domain\n", dev_name(dev));
937
938         switch (action) {
939         case BUS_NOTIFY_BOUND_DRIVER:
940                 if (domain)
941                         goto out;
942                 dma_domain = find_protection_domain(devid);
943                 if (!dma_domain)
944                         dma_domain = iommu->default_dom;
945                 attach_device(iommu, &dma_domain->domain, devid);
946                 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
947                        "device %s\n", dma_domain->domain.id, dev_name(dev));
948                 break;
949         case BUS_NOTIFY_UNBIND_DRIVER:
950                 if (!domain)
951                         goto out;
952                 detach_device(domain, devid);
953                 break;
954         default:
955                 goto out;
956         }
957
958         iommu_queue_inv_dev_entry(iommu, devid);
959         iommu_completion_wait(iommu);
960
961 out:
962         return 0;
963 }
964
965 struct notifier_block device_nb = {
966         .notifier_call = device_change_notifier,
967 };
968
969 /*****************************************************************************
970  *
971  * The next functions belong to the dma_ops mapping/unmapping code.
972  *
973  *****************************************************************************/
974
975 /*
976  * This function checks if the driver got a valid device from the caller to
977  * avoid dereferencing invalid pointers.
978  */
979 static bool check_device(struct device *dev)
980 {
981         if (!dev || !dev->dma_mask)
982                 return false;
983
984         return true;
985 }
986
987 /*
988  * In this function the list of preallocated protection domains is traversed to
989  * find the domain for a specific device
990  */
991 static struct dma_ops_domain *find_protection_domain(u16 devid)
992 {
993         struct dma_ops_domain *entry, *ret = NULL;
994         unsigned long flags;
995
996         if (list_empty(&iommu_pd_list))
997                 return NULL;
998
999         spin_lock_irqsave(&iommu_pd_list_lock, flags);
1000
1001         list_for_each_entry(entry, &iommu_pd_list, list) {
1002                 if (entry->target_dev == devid) {
1003                         ret = entry;
1004                         break;
1005                 }
1006         }
1007
1008         spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
1009
1010         return ret;
1011 }
1012
1013 /*
1014  * In the dma_ops path we only have the struct device. This function
1015  * finds the corresponding IOMMU, the protection domain and the
1016  * requestor id for a given device.
1017  * If the device is not yet associated with a domain this is also done
1018  * in this function.
1019  */
1020 static int get_device_resources(struct device *dev,
1021                                 struct amd_iommu **iommu,
1022                                 struct protection_domain **domain,
1023                                 u16 *bdf)
1024 {
1025         struct dma_ops_domain *dma_dom;
1026         struct pci_dev *pcidev;
1027         u16 _bdf;
1028
1029         *iommu = NULL;
1030         *domain = NULL;
1031         *bdf = 0xffff;
1032
1033         if (dev->bus != &pci_bus_type)
1034                 return 0;
1035
1036         pcidev = to_pci_dev(dev);
1037         _bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1038
1039         /* device not translated by any IOMMU in the system? */
1040         if (_bdf > amd_iommu_last_bdf)
1041                 return 0;
1042
1043         *bdf = amd_iommu_alias_table[_bdf];
1044
1045         *iommu = amd_iommu_rlookup_table[*bdf];
1046         if (*iommu == NULL)
1047                 return 0;
1048         *domain = domain_for_device(*bdf);
1049         if (*domain == NULL) {
1050                 dma_dom = find_protection_domain(*bdf);
1051                 if (!dma_dom)
1052                         dma_dom = (*iommu)->default_dom;
1053                 *domain = &dma_dom->domain;
1054                 attach_device(*iommu, *domain, *bdf);
1055                 printk(KERN_INFO "AMD IOMMU: Using protection domain %d for "
1056                                 "device ", (*domain)->id);
1057                 print_devid(_bdf, 1);
1058         }
1059
1060         if (domain_for_device(_bdf) == NULL)
1061                 attach_device(*iommu, *domain, _bdf);
1062
1063         return 1;
1064 }
1065
1066 /*
1067  * This is the generic map function. It maps one 4kb page at paddr to
1068  * the given address in the DMA address space for the domain.
1069  */
1070 static dma_addr_t dma_ops_domain_map(struct amd_iommu *iommu,
1071                                      struct dma_ops_domain *dom,
1072                                      unsigned long address,
1073                                      phys_addr_t paddr,
1074                                      int direction)
1075 {
1076         u64 *pte, __pte;
1077
1078         WARN_ON(address > dom->aperture_size);
1079
1080         paddr &= PAGE_MASK;
1081
1082         pte  = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1083         pte += IOMMU_PTE_L0_INDEX(address);
1084
1085         __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
1086
1087         if (direction == DMA_TO_DEVICE)
1088                 __pte |= IOMMU_PTE_IR;
1089         else if (direction == DMA_FROM_DEVICE)
1090                 __pte |= IOMMU_PTE_IW;
1091         else if (direction == DMA_BIDIRECTIONAL)
1092                 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
1093
1094         WARN_ON(*pte);
1095
1096         *pte = __pte;
1097
1098         return (dma_addr_t)address;
1099 }
1100
1101 /*
1102  * The generic unmapping function for on page in the DMA address space.
1103  */
1104 static void dma_ops_domain_unmap(struct amd_iommu *iommu,
1105                                  struct dma_ops_domain *dom,
1106                                  unsigned long address)
1107 {
1108         u64 *pte;
1109
1110         if (address >= dom->aperture_size)
1111                 return;
1112
1113         WARN_ON(address & ~PAGE_MASK || address >= dom->aperture_size);
1114
1115         pte  = dom->pte_pages[IOMMU_PTE_L1_INDEX(address)];
1116         pte += IOMMU_PTE_L0_INDEX(address);
1117
1118         WARN_ON(!*pte);
1119
1120         *pte = 0ULL;
1121 }
1122
1123 /*
1124  * This function contains common code for mapping of a physically
1125  * contiguous memory region into DMA address space. It is used by all
1126  * mapping functions provided with this IOMMU driver.
1127  * Must be called with the domain lock held.
1128  */
1129 static dma_addr_t __map_single(struct device *dev,
1130                                struct amd_iommu *iommu,
1131                                struct dma_ops_domain *dma_dom,
1132                                phys_addr_t paddr,
1133                                size_t size,
1134                                int dir,
1135                                bool align,
1136                                u64 dma_mask)
1137 {
1138         dma_addr_t offset = paddr & ~PAGE_MASK;
1139         dma_addr_t address, start;
1140         unsigned int pages;
1141         unsigned long align_mask = 0;
1142         int i;
1143
1144         pages = iommu_num_pages(paddr, size, PAGE_SIZE);
1145         paddr &= PAGE_MASK;
1146
1147         if (align)
1148                 align_mask = (1UL << get_order(size)) - 1;
1149
1150         address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
1151                                           dma_mask);
1152         if (unlikely(address == bad_dma_address))
1153                 goto out;
1154
1155         start = address;
1156         for (i = 0; i < pages; ++i) {
1157                 dma_ops_domain_map(iommu, dma_dom, start, paddr, dir);
1158                 paddr += PAGE_SIZE;
1159                 start += PAGE_SIZE;
1160         }
1161         address += offset;
1162
1163         if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
1164                 iommu_flush_tlb(iommu, dma_dom->domain.id);
1165                 dma_dom->need_flush = false;
1166         } else if (unlikely(iommu_has_npcache(iommu)))
1167                 iommu_flush_pages(iommu, dma_dom->domain.id, address, size);
1168
1169 out:
1170         return address;
1171 }
1172
1173 /*
1174  * Does the reverse of the __map_single function. Must be called with
1175  * the domain lock held too
1176  */
1177 static void __unmap_single(struct amd_iommu *iommu,
1178                            struct dma_ops_domain *dma_dom,
1179                            dma_addr_t dma_addr,
1180                            size_t size,
1181                            int dir)
1182 {
1183         dma_addr_t i, start;
1184         unsigned int pages;
1185
1186         if ((dma_addr == bad_dma_address) ||
1187             (dma_addr + size > dma_dom->aperture_size))
1188                 return;
1189
1190         pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
1191         dma_addr &= PAGE_MASK;
1192         start = dma_addr;
1193
1194         for (i = 0; i < pages; ++i) {
1195                 dma_ops_domain_unmap(iommu, dma_dom, start);
1196                 start += PAGE_SIZE;
1197         }
1198
1199         dma_ops_free_addresses(dma_dom, dma_addr, pages);
1200
1201         if (amd_iommu_unmap_flush || dma_dom->need_flush) {
1202                 iommu_flush_pages(iommu, dma_dom->domain.id, dma_addr, size);
1203                 dma_dom->need_flush = false;
1204         }
1205 }
1206
1207 /*
1208  * The exported map_single function for dma_ops.
1209  */
1210 static dma_addr_t map_single(struct device *dev, phys_addr_t paddr,
1211                              size_t size, int dir)
1212 {
1213         unsigned long flags;
1214         struct amd_iommu *iommu;
1215         struct protection_domain *domain;
1216         u16 devid;
1217         dma_addr_t addr;
1218         u64 dma_mask;
1219
1220         if (!check_device(dev))
1221                 return bad_dma_address;
1222
1223         dma_mask = *dev->dma_mask;
1224
1225         get_device_resources(dev, &iommu, &domain, &devid);
1226
1227         if (iommu == NULL || domain == NULL)
1228                 /* device not handled by any AMD IOMMU */
1229                 return (dma_addr_t)paddr;
1230
1231         if (!dma_ops_domain(domain))
1232                 return bad_dma_address;
1233
1234         spin_lock_irqsave(&domain->lock, flags);
1235         addr = __map_single(dev, iommu, domain->priv, paddr, size, dir, false,
1236                             dma_mask);
1237         if (addr == bad_dma_address)
1238                 goto out;
1239
1240         iommu_completion_wait(iommu);
1241
1242 out:
1243         spin_unlock_irqrestore(&domain->lock, flags);
1244
1245         return addr;
1246 }
1247
1248 /*
1249  * The exported unmap_single function for dma_ops.
1250  */
1251 static void unmap_single(struct device *dev, dma_addr_t dma_addr,
1252                          size_t size, int dir)
1253 {
1254         unsigned long flags;
1255         struct amd_iommu *iommu;
1256         struct protection_domain *domain;
1257         u16 devid;
1258
1259         if (!check_device(dev) ||
1260             !get_device_resources(dev, &iommu, &domain, &devid))
1261                 /* device not handled by any AMD IOMMU */
1262                 return;
1263
1264         if (!dma_ops_domain(domain))
1265                 return;
1266
1267         spin_lock_irqsave(&domain->lock, flags);
1268
1269         __unmap_single(iommu, domain->priv, dma_addr, size, dir);
1270
1271         iommu_completion_wait(iommu);
1272
1273         spin_unlock_irqrestore(&domain->lock, flags);
1274 }
1275
1276 /*
1277  * This is a special map_sg function which is used if we should map a
1278  * device which is not handled by an AMD IOMMU in the system.
1279  */
1280 static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
1281                            int nelems, int dir)
1282 {
1283         struct scatterlist *s;
1284         int i;
1285
1286         for_each_sg(sglist, s, nelems, i) {
1287                 s->dma_address = (dma_addr_t)sg_phys(s);
1288                 s->dma_length  = s->length;
1289         }
1290
1291         return nelems;
1292 }
1293
1294 /*
1295  * The exported map_sg function for dma_ops (handles scatter-gather
1296  * lists).
1297  */
1298 static int map_sg(struct device *dev, struct scatterlist *sglist,
1299                   int nelems, int dir)
1300 {
1301         unsigned long flags;
1302         struct amd_iommu *iommu;
1303         struct protection_domain *domain;
1304         u16 devid;
1305         int i;
1306         struct scatterlist *s;
1307         phys_addr_t paddr;
1308         int mapped_elems = 0;
1309         u64 dma_mask;
1310
1311         if (!check_device(dev))
1312                 return 0;
1313
1314         dma_mask = *dev->dma_mask;
1315
1316         get_device_resources(dev, &iommu, &domain, &devid);
1317
1318         if (!iommu || !domain)
1319                 return map_sg_no_iommu(dev, sglist, nelems, dir);
1320
1321         if (!dma_ops_domain(domain))
1322                 return 0;
1323
1324         spin_lock_irqsave(&domain->lock, flags);
1325
1326         for_each_sg(sglist, s, nelems, i) {
1327                 paddr = sg_phys(s);
1328
1329                 s->dma_address = __map_single(dev, iommu, domain->priv,
1330                                               paddr, s->length, dir, false,
1331                                               dma_mask);
1332
1333                 if (s->dma_address) {
1334                         s->dma_length = s->length;
1335                         mapped_elems++;
1336                 } else
1337                         goto unmap;
1338         }
1339
1340         iommu_completion_wait(iommu);
1341
1342 out:
1343         spin_unlock_irqrestore(&domain->lock, flags);
1344
1345         return mapped_elems;
1346 unmap:
1347         for_each_sg(sglist, s, mapped_elems, i) {
1348                 if (s->dma_address)
1349                         __unmap_single(iommu, domain->priv, s->dma_address,
1350                                        s->dma_length, dir);
1351                 s->dma_address = s->dma_length = 0;
1352         }
1353
1354         mapped_elems = 0;
1355
1356         goto out;
1357 }
1358
1359 /*
1360  * The exported map_sg function for dma_ops (handles scatter-gather
1361  * lists).
1362  */
1363 static void unmap_sg(struct device *dev, struct scatterlist *sglist,
1364                      int nelems, int dir)
1365 {
1366         unsigned long flags;
1367         struct amd_iommu *iommu;
1368         struct protection_domain *domain;
1369         struct scatterlist *s;
1370         u16 devid;
1371         int i;
1372
1373         if (!check_device(dev) ||
1374             !get_device_resources(dev, &iommu, &domain, &devid))
1375                 return;
1376
1377         if (!dma_ops_domain(domain))
1378                 return;
1379
1380         spin_lock_irqsave(&domain->lock, flags);
1381
1382         for_each_sg(sglist, s, nelems, i) {
1383                 __unmap_single(iommu, domain->priv, s->dma_address,
1384                                s->dma_length, dir);
1385                 s->dma_address = s->dma_length = 0;
1386         }
1387
1388         iommu_completion_wait(iommu);
1389
1390         spin_unlock_irqrestore(&domain->lock, flags);
1391 }
1392
1393 /*
1394  * The exported alloc_coherent function for dma_ops.
1395  */
1396 static void *alloc_coherent(struct device *dev, size_t size,
1397                             dma_addr_t *dma_addr, gfp_t flag)
1398 {
1399         unsigned long flags;
1400         void *virt_addr;
1401         struct amd_iommu *iommu;
1402         struct protection_domain *domain;
1403         u16 devid;
1404         phys_addr_t paddr;
1405         u64 dma_mask = dev->coherent_dma_mask;
1406
1407         if (!check_device(dev))
1408                 return NULL;
1409
1410         if (!get_device_resources(dev, &iommu, &domain, &devid))
1411                 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
1412
1413         flag |= __GFP_ZERO;
1414         virt_addr = (void *)__get_free_pages(flag, get_order(size));
1415         if (!virt_addr)
1416                 return 0;
1417
1418         paddr = virt_to_phys(virt_addr);
1419
1420         if (!iommu || !domain) {
1421                 *dma_addr = (dma_addr_t)paddr;
1422                 return virt_addr;
1423         }
1424
1425         if (!dma_ops_domain(domain))
1426                 goto out_free;
1427
1428         if (!dma_mask)
1429                 dma_mask = *dev->dma_mask;
1430
1431         spin_lock_irqsave(&domain->lock, flags);
1432
1433         *dma_addr = __map_single(dev, iommu, domain->priv, paddr,
1434                                  size, DMA_BIDIRECTIONAL, true, dma_mask);
1435
1436         if (*dma_addr == bad_dma_address)
1437                 goto out_free;
1438
1439         iommu_completion_wait(iommu);
1440
1441         spin_unlock_irqrestore(&domain->lock, flags);
1442
1443         return virt_addr;
1444
1445 out_free:
1446
1447         free_pages((unsigned long)virt_addr, get_order(size));
1448
1449         return NULL;
1450 }
1451
1452 /*
1453  * The exported free_coherent function for dma_ops.
1454  */
1455 static void free_coherent(struct device *dev, size_t size,
1456                           void *virt_addr, dma_addr_t dma_addr)
1457 {
1458         unsigned long flags;
1459         struct amd_iommu *iommu;
1460         struct protection_domain *domain;
1461         u16 devid;
1462
1463         if (!check_device(dev))
1464                 return;
1465
1466         get_device_resources(dev, &iommu, &domain, &devid);
1467
1468         if (!iommu || !domain)
1469                 goto free_mem;
1470
1471         if (!dma_ops_domain(domain))
1472                 goto free_mem;
1473
1474         spin_lock_irqsave(&domain->lock, flags);
1475
1476         __unmap_single(iommu, domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
1477
1478         iommu_completion_wait(iommu);
1479
1480         spin_unlock_irqrestore(&domain->lock, flags);
1481
1482 free_mem:
1483         free_pages((unsigned long)virt_addr, get_order(size));
1484 }
1485
1486 /*
1487  * This function is called by the DMA layer to find out if we can handle a
1488  * particular device. It is part of the dma_ops.
1489  */
1490 static int amd_iommu_dma_supported(struct device *dev, u64 mask)
1491 {
1492         u16 bdf;
1493         struct pci_dev *pcidev;
1494
1495         /* No device or no PCI device */
1496         if (!dev || dev->bus != &pci_bus_type)
1497                 return 0;
1498
1499         pcidev = to_pci_dev(dev);
1500
1501         bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
1502
1503         /* Out of our scope? */
1504         if (bdf > amd_iommu_last_bdf)
1505                 return 0;
1506
1507         return 1;
1508 }
1509
1510 /*
1511  * The function for pre-allocating protection domains.
1512  *
1513  * If the driver core informs the DMA layer if a driver grabs a device
1514  * we don't need to preallocate the protection domains anymore.
1515  * For now we have to.
1516  */
1517 void prealloc_protection_domains(void)
1518 {
1519         struct pci_dev *dev = NULL;
1520         struct dma_ops_domain *dma_dom;
1521         struct amd_iommu *iommu;
1522         int order = amd_iommu_aperture_order;
1523         u16 devid;
1524
1525         while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
1526                 devid = (dev->bus->number << 8) | dev->devfn;
1527                 if (devid > amd_iommu_last_bdf)
1528                         continue;
1529                 devid = amd_iommu_alias_table[devid];
1530                 if (domain_for_device(devid))
1531                         continue;
1532                 iommu = amd_iommu_rlookup_table[devid];
1533                 if (!iommu)
1534                         continue;
1535                 dma_dom = dma_ops_domain_alloc(iommu, order);
1536                 if (!dma_dom)
1537                         continue;
1538                 init_unity_mappings_for_device(dma_dom, devid);
1539                 dma_dom->target_dev = devid;
1540
1541                 list_add_tail(&dma_dom->list, &iommu_pd_list);
1542         }
1543 }
1544
1545 static struct dma_mapping_ops amd_iommu_dma_ops = {
1546         .alloc_coherent = alloc_coherent,
1547         .free_coherent = free_coherent,
1548         .map_single = map_single,
1549         .unmap_single = unmap_single,
1550         .map_sg = map_sg,
1551         .unmap_sg = unmap_sg,
1552         .dma_supported = amd_iommu_dma_supported,
1553 };
1554
1555 /*
1556  * The function which clues the AMD IOMMU driver into dma_ops.
1557  */
1558 int __init amd_iommu_init_dma_ops(void)
1559 {
1560         struct amd_iommu *iommu;
1561         int order = amd_iommu_aperture_order;
1562         int ret;
1563
1564         /*
1565          * first allocate a default protection domain for every IOMMU we
1566          * found in the system. Devices not assigned to any other
1567          * protection domain will be assigned to the default one.
1568          */
1569         list_for_each_entry(iommu, &amd_iommu_list, list) {
1570                 iommu->default_dom = dma_ops_domain_alloc(iommu, order);
1571                 if (iommu->default_dom == NULL)
1572                         return -ENOMEM;
1573                 ret = iommu_init_unity_mappings(iommu);
1574                 if (ret)
1575                         goto free_domains;
1576         }
1577
1578         /*
1579          * If device isolation is enabled, pre-allocate the protection
1580          * domains for each device.
1581          */
1582         if (amd_iommu_isolate)
1583                 prealloc_protection_domains();
1584
1585         iommu_detected = 1;
1586         force_iommu = 1;
1587         bad_dma_address = 0;
1588 #ifdef CONFIG_GART_IOMMU
1589         gart_iommu_aperture_disabled = 1;
1590         gart_iommu_aperture = 0;
1591 #endif
1592
1593         /* Make the driver finally visible to the drivers */
1594         dma_ops = &amd_iommu_dma_ops;
1595
1596         bus_register_notifier(&pci_bus_type, &device_nb);
1597
1598         return 0;
1599
1600 free_domains:
1601
1602         list_for_each_entry(iommu, &amd_iommu_list, list) {
1603                 if (iommu->default_dom)
1604                         dma_ops_domain_free(iommu->default_dom);
1605         }
1606
1607         return ret;
1608 }
1609
1610 /*****************************************************************************
1611  *
1612  * The following functions belong to the exported interface of AMD IOMMU
1613  *
1614  * This interface allows access to lower level functions of the IOMMU
1615  * like protection domain handling and assignement of devices to domains
1616  * which is not possible with the dma_ops interface.
1617  *
1618  *****************************************************************************/
1619
1620 #ifdef CONFIG_IOMMU_API
1621
1622 static void cleanup_domain(struct protection_domain *domain)
1623 {
1624         unsigned long flags;
1625         u16 devid;
1626
1627         write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1628
1629         for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
1630                 if (amd_iommu_pd_table[devid] == domain)
1631                         __detach_device(domain, devid);
1632
1633         write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1634 }
1635
1636 static int amd_iommu_domain_init(struct iommu_domain *dom)
1637 {
1638         struct protection_domain *domain;
1639
1640         domain = kzalloc(sizeof(*domain), GFP_KERNEL);
1641         if (!domain)
1642                 return -ENOMEM;
1643
1644         spin_lock_init(&domain->lock);
1645         domain->mode = PAGE_MODE_3_LEVEL;
1646         domain->id = domain_id_alloc();
1647         if (!domain->id)
1648                 goto out_free;
1649         domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
1650         if (!domain->pt_root)
1651                 goto out_free;
1652
1653         dom->priv = domain;
1654
1655         return 0;
1656
1657 out_free:
1658         kfree(domain);
1659
1660         return -ENOMEM;
1661 }
1662
1663 static void amd_iommu_domain_destroy(struct iommu_domain *dom)
1664 {
1665         struct protection_domain *domain = dom->priv;
1666
1667         if (!domain)
1668                 return;
1669
1670         if (domain->dev_cnt > 0)
1671                 cleanup_domain(domain);
1672
1673         BUG_ON(domain->dev_cnt != 0);
1674
1675         free_pagetable(domain);
1676
1677         domain_id_free(domain->id);
1678
1679         kfree(domain);
1680
1681         dom->priv = NULL;
1682 }
1683
1684 static void amd_iommu_detach_device(struct iommu_domain *dom,
1685                                     struct device *dev)
1686 {
1687         struct protection_domain *domain = dom->priv;
1688         struct amd_iommu *iommu;
1689         struct pci_dev *pdev;
1690         u16 devid;
1691
1692         if (dev->bus != &pci_bus_type)
1693                 return;
1694
1695         pdev = to_pci_dev(dev);
1696
1697         devid = calc_devid(pdev->bus->number, pdev->devfn);
1698
1699         if (devid > 0)
1700                 detach_device(domain, devid);
1701
1702         iommu = amd_iommu_rlookup_table[devid];
1703         if (!iommu)
1704                 return;
1705
1706         iommu_queue_inv_dev_entry(iommu, devid);
1707         iommu_completion_wait(iommu);
1708 }
1709
1710 static int amd_iommu_attach_device(struct iommu_domain *dom,
1711                                    struct device *dev)
1712 {
1713         struct protection_domain *domain = dom->priv;
1714         struct protection_domain *old_domain;
1715         struct amd_iommu *iommu;
1716         struct pci_dev *pdev;
1717         u16 devid;
1718
1719         if (dev->bus != &pci_bus_type)
1720                 return -EINVAL;
1721
1722         pdev = to_pci_dev(dev);
1723
1724         devid = calc_devid(pdev->bus->number, pdev->devfn);
1725
1726         if (devid >= amd_iommu_last_bdf ||
1727                         devid != amd_iommu_alias_table[devid])
1728                 return -EINVAL;
1729
1730         iommu = amd_iommu_rlookup_table[devid];
1731         if (!iommu)
1732                 return -EINVAL;
1733
1734         old_domain = domain_for_device(devid);
1735         if (old_domain)
1736                 return -EBUSY;
1737
1738         attach_device(iommu, domain, devid);
1739
1740         iommu_completion_wait(iommu);
1741
1742         return 0;
1743 }
1744
1745 static int amd_iommu_map_range(struct iommu_domain *dom,
1746                                unsigned long iova, phys_addr_t paddr,
1747                                size_t size, int iommu_prot)
1748 {
1749         struct protection_domain *domain = dom->priv;
1750         unsigned long i,  npages = iommu_num_pages(paddr, size, PAGE_SIZE);
1751         int prot = 0;
1752         int ret;
1753
1754         if (iommu_prot & IOMMU_READ)
1755                 prot |= IOMMU_PROT_IR;
1756         if (iommu_prot & IOMMU_WRITE)
1757                 prot |= IOMMU_PROT_IW;
1758
1759         iova  &= PAGE_MASK;
1760         paddr &= PAGE_MASK;
1761
1762         for (i = 0; i < npages; ++i) {
1763                 ret = iommu_map_page(domain, iova, paddr, prot);
1764                 if (ret)
1765                         return ret;
1766
1767                 iova  += PAGE_SIZE;
1768                 paddr += PAGE_SIZE;
1769         }
1770
1771         return 0;
1772 }
1773
1774 static void amd_iommu_unmap_range(struct iommu_domain *dom,
1775                                   unsigned long iova, size_t size)
1776 {
1777
1778         struct protection_domain *domain = dom->priv;
1779         unsigned long i,  npages = iommu_num_pages(iova, size, PAGE_SIZE);
1780
1781         iova  &= PAGE_MASK;
1782
1783         for (i = 0; i < npages; ++i) {
1784                 iommu_unmap_page(domain, iova);
1785                 iova  += PAGE_SIZE;
1786         }
1787
1788         iommu_flush_domain(domain->id);
1789 }
1790
1791 static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
1792                                           unsigned long iova)
1793 {
1794         struct protection_domain *domain = dom->priv;
1795         unsigned long offset = iova & ~PAGE_MASK;
1796         phys_addr_t paddr;
1797         u64 *pte;
1798
1799         pte = &domain->pt_root[IOMMU_PTE_L2_INDEX(iova)];
1800
1801         if (!IOMMU_PTE_PRESENT(*pte))
1802                 return 0;
1803
1804         pte = IOMMU_PTE_PAGE(*pte);
1805         pte = &pte[IOMMU_PTE_L1_INDEX(iova)];
1806
1807         if (!IOMMU_PTE_PRESENT(*pte))
1808                 return 0;
1809
1810         pte = IOMMU_PTE_PAGE(*pte);
1811         pte = &pte[IOMMU_PTE_L0_INDEX(iova)];
1812
1813         if (!IOMMU_PTE_PRESENT(*pte))
1814                 return 0;
1815
1816         paddr  = *pte & IOMMU_PAGE_MASK;
1817         paddr |= offset;
1818
1819         return paddr;
1820 }
1821
1822 #endif