2 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
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.
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.
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
20 #include <linux/ratelimit.h>
21 #include <linux/pci.h>
22 #include <linux/pci-ats.h>
23 #include <linux/bitmap.h>
24 #include <linux/slab.h>
25 #include <linux/debugfs.h>
26 #include <linux/scatterlist.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/iommu-helper.h>
29 #include <linux/iommu.h>
30 #include <linux/delay.h>
31 #include <linux/amd-iommu.h>
32 #include <linux/notifier.h>
33 #include <linux/export.h>
34 #include <asm/msidef.h>
35 #include <asm/proto.h>
36 #include <asm/iommu.h>
40 #include "amd_iommu_proto.h"
41 #include "amd_iommu_types.h"
43 #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
45 #define LOOP_TIMEOUT 100000
48 * This bitmap is used to advertise the page sizes our hardware support
49 * to the IOMMU core, which will then use this information to split
50 * physically contiguous memory regions it is mapping into page sizes
53 * Traditionally the IOMMU core just handed us the mappings directly,
54 * after making sure the size is an order of a 4KiB page and that the
55 * mapping has natural alignment.
57 * To retain this behavior, we currently advertise that we support
58 * all page sizes that are an order of 4KiB.
60 * If at some point we'd like to utilize the IOMMU core's new behavior,
61 * we could change this to advertise the real page sizes we support.
63 #define AMD_IOMMU_PGSIZES (~0xFFFUL)
65 static DEFINE_RWLOCK(amd_iommu_devtable_lock
);
67 /* A list of preallocated protection domains */
68 static LIST_HEAD(iommu_pd_list
);
69 static DEFINE_SPINLOCK(iommu_pd_list_lock
);
71 /* List of all available dev_data structures */
72 static LIST_HEAD(dev_data_list
);
73 static DEFINE_SPINLOCK(dev_data_list_lock
);
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
79 static struct protection_domain
*pt_domain
;
81 static struct iommu_ops amd_iommu_ops
;
83 static ATOMIC_NOTIFIER_HEAD(ppr_notifier
);
84 int amd_iommu_max_glx_val
= -1;
87 * general struct to manage commands send to an IOMMU
93 static void update_domain(struct protection_domain
*domain
);
94 static int __init
alloc_passthrough_domain(void);
96 /****************************************************************************
100 ****************************************************************************/
102 static struct iommu_dev_data
*alloc_dev_data(u16 devid
)
104 struct iommu_dev_data
*dev_data
;
107 dev_data
= kzalloc(sizeof(*dev_data
), GFP_KERNEL
);
111 dev_data
->devid
= devid
;
112 atomic_set(&dev_data
->bind
, 0);
114 spin_lock_irqsave(&dev_data_list_lock
, flags
);
115 list_add_tail(&dev_data
->dev_data_list
, &dev_data_list
);
116 spin_unlock_irqrestore(&dev_data_list_lock
, flags
);
121 static void free_dev_data(struct iommu_dev_data
*dev_data
)
125 spin_lock_irqsave(&dev_data_list_lock
, flags
);
126 list_del(&dev_data
->dev_data_list
);
127 spin_unlock_irqrestore(&dev_data_list_lock
, flags
);
132 static struct iommu_dev_data
*search_dev_data(u16 devid
)
134 struct iommu_dev_data
*dev_data
;
137 spin_lock_irqsave(&dev_data_list_lock
, flags
);
138 list_for_each_entry(dev_data
, &dev_data_list
, dev_data_list
) {
139 if (dev_data
->devid
== devid
)
146 spin_unlock_irqrestore(&dev_data_list_lock
, flags
);
151 static struct iommu_dev_data
*find_dev_data(u16 devid
)
153 struct iommu_dev_data
*dev_data
;
155 dev_data
= search_dev_data(devid
);
157 if (dev_data
== NULL
)
158 dev_data
= alloc_dev_data(devid
);
163 static inline u16
get_device_id(struct device
*dev
)
165 struct pci_dev
*pdev
= to_pci_dev(dev
);
167 return calc_devid(pdev
->bus
->number
, pdev
->devfn
);
170 static struct iommu_dev_data
*get_dev_data(struct device
*dev
)
172 return dev
->archdata
.iommu
;
175 static bool pci_iommuv2_capable(struct pci_dev
*pdev
)
177 static const int caps
[] = {
180 PCI_EXT_CAP_ID_PASID
,
184 for (i
= 0; i
< 3; ++i
) {
185 pos
= pci_find_ext_capability(pdev
, caps
[i
]);
193 static bool pdev_pri_erratum(struct pci_dev
*pdev
, u32 erratum
)
195 struct iommu_dev_data
*dev_data
;
197 dev_data
= get_dev_data(&pdev
->dev
);
199 return dev_data
->errata
& (1 << erratum
) ? true : false;
203 * In this function the list of preallocated protection domains is traversed to
204 * find the domain for a specific device
206 static struct dma_ops_domain
*find_protection_domain(u16 devid
)
208 struct dma_ops_domain
*entry
, *ret
= NULL
;
210 u16 alias
= amd_iommu_alias_table
[devid
];
212 if (list_empty(&iommu_pd_list
))
215 spin_lock_irqsave(&iommu_pd_list_lock
, flags
);
217 list_for_each_entry(entry
, &iommu_pd_list
, list
) {
218 if (entry
->target_dev
== devid
||
219 entry
->target_dev
== alias
) {
225 spin_unlock_irqrestore(&iommu_pd_list_lock
, flags
);
231 * This function checks if the driver got a valid device from the caller to
232 * avoid dereferencing invalid pointers.
234 static bool check_device(struct device
*dev
)
238 if (!dev
|| !dev
->dma_mask
)
241 /* No device or no PCI device */
242 if (dev
->bus
!= &pci_bus_type
)
245 devid
= get_device_id(dev
);
247 /* Out of our scope? */
248 if (devid
> amd_iommu_last_bdf
)
251 if (amd_iommu_rlookup_table
[devid
] == NULL
)
257 static int iommu_init_device(struct device
*dev
)
259 struct pci_dev
*pdev
= to_pci_dev(dev
);
260 struct iommu_dev_data
*dev_data
;
263 if (dev
->archdata
.iommu
)
266 dev_data
= find_dev_data(get_device_id(dev
));
270 alias
= amd_iommu_alias_table
[dev_data
->devid
];
271 if (alias
!= dev_data
->devid
) {
272 struct iommu_dev_data
*alias_data
;
274 alias_data
= find_dev_data(alias
);
275 if (alias_data
== NULL
) {
276 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
278 free_dev_data(dev_data
);
281 dev_data
->alias_data
= alias_data
;
284 if (pci_iommuv2_capable(pdev
)) {
285 struct amd_iommu
*iommu
;
287 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
288 dev_data
->iommu_v2
= iommu
->is_iommu_v2
;
291 dev
->archdata
.iommu
= dev_data
;
296 static void iommu_ignore_device(struct device
*dev
)
300 devid
= get_device_id(dev
);
301 alias
= amd_iommu_alias_table
[devid
];
303 memset(&amd_iommu_dev_table
[devid
], 0, sizeof(struct dev_table_entry
));
304 memset(&amd_iommu_dev_table
[alias
], 0, sizeof(struct dev_table_entry
));
306 amd_iommu_rlookup_table
[devid
] = NULL
;
307 amd_iommu_rlookup_table
[alias
] = NULL
;
310 static void iommu_uninit_device(struct device
*dev
)
313 * Nothing to do here - we keep dev_data around for unplugged devices
314 * and reuse it when the device is re-plugged - not doing so would
315 * introduce a ton of races.
319 void __init
amd_iommu_uninit_devices(void)
321 struct iommu_dev_data
*dev_data
, *n
;
322 struct pci_dev
*pdev
= NULL
;
324 for_each_pci_dev(pdev
) {
326 if (!check_device(&pdev
->dev
))
329 iommu_uninit_device(&pdev
->dev
);
332 /* Free all of our dev_data structures */
333 list_for_each_entry_safe(dev_data
, n
, &dev_data_list
, dev_data_list
)
334 free_dev_data(dev_data
);
337 int __init
amd_iommu_init_devices(void)
339 struct pci_dev
*pdev
= NULL
;
342 for_each_pci_dev(pdev
) {
344 if (!check_device(&pdev
->dev
))
347 ret
= iommu_init_device(&pdev
->dev
);
348 if (ret
== -ENOTSUPP
)
349 iommu_ignore_device(&pdev
->dev
);
358 amd_iommu_uninit_devices();
362 #ifdef CONFIG_AMD_IOMMU_STATS
365 * Initialization code for statistics collection
368 DECLARE_STATS_COUNTER(compl_wait
);
369 DECLARE_STATS_COUNTER(cnt_map_single
);
370 DECLARE_STATS_COUNTER(cnt_unmap_single
);
371 DECLARE_STATS_COUNTER(cnt_map_sg
);
372 DECLARE_STATS_COUNTER(cnt_unmap_sg
);
373 DECLARE_STATS_COUNTER(cnt_alloc_coherent
);
374 DECLARE_STATS_COUNTER(cnt_free_coherent
);
375 DECLARE_STATS_COUNTER(cross_page
);
376 DECLARE_STATS_COUNTER(domain_flush_single
);
377 DECLARE_STATS_COUNTER(domain_flush_all
);
378 DECLARE_STATS_COUNTER(alloced_io_mem
);
379 DECLARE_STATS_COUNTER(total_map_requests
);
380 DECLARE_STATS_COUNTER(complete_ppr
);
381 DECLARE_STATS_COUNTER(invalidate_iotlb
);
382 DECLARE_STATS_COUNTER(invalidate_iotlb_all
);
383 DECLARE_STATS_COUNTER(pri_requests
);
386 static struct dentry
*stats_dir
;
387 static struct dentry
*de_fflush
;
389 static void amd_iommu_stats_add(struct __iommu_counter
*cnt
)
391 if (stats_dir
== NULL
)
394 cnt
->dent
= debugfs_create_u64(cnt
->name
, 0444, stats_dir
,
398 static void amd_iommu_stats_init(void)
400 stats_dir
= debugfs_create_dir("amd-iommu", NULL
);
401 if (stats_dir
== NULL
)
404 de_fflush
= debugfs_create_bool("fullflush", 0444, stats_dir
,
405 (u32
*)&amd_iommu_unmap_flush
);
407 amd_iommu_stats_add(&compl_wait
);
408 amd_iommu_stats_add(&cnt_map_single
);
409 amd_iommu_stats_add(&cnt_unmap_single
);
410 amd_iommu_stats_add(&cnt_map_sg
);
411 amd_iommu_stats_add(&cnt_unmap_sg
);
412 amd_iommu_stats_add(&cnt_alloc_coherent
);
413 amd_iommu_stats_add(&cnt_free_coherent
);
414 amd_iommu_stats_add(&cross_page
);
415 amd_iommu_stats_add(&domain_flush_single
);
416 amd_iommu_stats_add(&domain_flush_all
);
417 amd_iommu_stats_add(&alloced_io_mem
);
418 amd_iommu_stats_add(&total_map_requests
);
419 amd_iommu_stats_add(&complete_ppr
);
420 amd_iommu_stats_add(&invalidate_iotlb
);
421 amd_iommu_stats_add(&invalidate_iotlb_all
);
422 amd_iommu_stats_add(&pri_requests
);
427 /****************************************************************************
429 * Interrupt handling functions
431 ****************************************************************************/
433 static void dump_dte_entry(u16 devid
)
437 for (i
= 0; i
< 4; ++i
)
438 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i
,
439 amd_iommu_dev_table
[devid
].data
[i
]);
442 static void dump_command(unsigned long phys_addr
)
444 struct iommu_cmd
*cmd
= phys_to_virt(phys_addr
);
447 for (i
= 0; i
< 4; ++i
)
448 pr_err("AMD-Vi: CMD[%d]: %08x\n", i
, cmd
->data
[i
]);
451 static void iommu_print_event(struct amd_iommu
*iommu
, void *__evt
)
454 int type
= (event
[1] >> EVENT_TYPE_SHIFT
) & EVENT_TYPE_MASK
;
455 int devid
= (event
[0] >> EVENT_DEVID_SHIFT
) & EVENT_DEVID_MASK
;
456 int domid
= (event
[1] >> EVENT_DOMID_SHIFT
) & EVENT_DOMID_MASK
;
457 int flags
= (event
[1] >> EVENT_FLAGS_SHIFT
) & EVENT_FLAGS_MASK
;
458 u64 address
= (u64
)(((u64
)event
[3]) << 32) | event
[2];
460 printk(KERN_ERR
"AMD-Vi: Event logged [");
463 case EVENT_TYPE_ILL_DEV
:
464 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
465 "address=0x%016llx flags=0x%04x]\n",
466 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
468 dump_dte_entry(devid
);
470 case EVENT_TYPE_IO_FAULT
:
471 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
472 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
473 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
474 domid
, address
, flags
);
476 case EVENT_TYPE_DEV_TAB_ERR
:
477 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
478 "address=0x%016llx flags=0x%04x]\n",
479 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
482 case EVENT_TYPE_PAGE_TAB_ERR
:
483 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
484 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
485 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
486 domid
, address
, flags
);
488 case EVENT_TYPE_ILL_CMD
:
489 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address
);
490 dump_command(address
);
492 case EVENT_TYPE_CMD_HARD_ERR
:
493 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
494 "flags=0x%04x]\n", address
, flags
);
496 case EVENT_TYPE_IOTLB_INV_TO
:
497 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
498 "address=0x%016llx]\n",
499 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
502 case EVENT_TYPE_INV_DEV_REQ
:
503 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
504 "address=0x%016llx flags=0x%04x]\n",
505 PCI_BUS(devid
), PCI_SLOT(devid
), PCI_FUNC(devid
),
509 printk(KERN_ERR
"UNKNOWN type=0x%02x]\n", type
);
513 static void iommu_poll_events(struct amd_iommu
*iommu
)
518 spin_lock_irqsave(&iommu
->lock
, flags
);
520 head
= readl(iommu
->mmio_base
+ MMIO_EVT_HEAD_OFFSET
);
521 tail
= readl(iommu
->mmio_base
+ MMIO_EVT_TAIL_OFFSET
);
523 while (head
!= tail
) {
524 iommu_print_event(iommu
, iommu
->evt_buf
+ head
);
525 head
= (head
+ EVENT_ENTRY_SIZE
) % iommu
->evt_buf_size
;
528 writel(head
, iommu
->mmio_base
+ MMIO_EVT_HEAD_OFFSET
);
530 spin_unlock_irqrestore(&iommu
->lock
, flags
);
533 static void iommu_handle_ppr_entry(struct amd_iommu
*iommu
, u32 head
)
535 struct amd_iommu_fault fault
;
539 INC_STATS_COUNTER(pri_requests
);
541 raw
= (u64
*)(iommu
->ppr_log
+ head
);
544 * Hardware bug: Interrupt may arrive before the entry is written to
545 * memory. If this happens we need to wait for the entry to arrive.
547 for (i
= 0; i
< LOOP_TIMEOUT
; ++i
) {
548 if (PPR_REQ_TYPE(raw
[0]) != 0)
553 if (PPR_REQ_TYPE(raw
[0]) != PPR_REQ_FAULT
) {
554 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
558 fault
.address
= raw
[1];
559 fault
.pasid
= PPR_PASID(raw
[0]);
560 fault
.device_id
= PPR_DEVID(raw
[0]);
561 fault
.tag
= PPR_TAG(raw
[0]);
562 fault
.flags
= PPR_FLAGS(raw
[0]);
565 * To detect the hardware bug we need to clear the entry
570 atomic_notifier_call_chain(&ppr_notifier
, 0, &fault
);
573 static void iommu_poll_ppr_log(struct amd_iommu
*iommu
)
578 if (iommu
->ppr_log
== NULL
)
581 spin_lock_irqsave(&iommu
->lock
, flags
);
583 head
= readl(iommu
->mmio_base
+ MMIO_PPR_HEAD_OFFSET
);
584 tail
= readl(iommu
->mmio_base
+ MMIO_PPR_TAIL_OFFSET
);
586 while (head
!= tail
) {
588 /* Handle PPR entry */
589 iommu_handle_ppr_entry(iommu
, head
);
591 /* Update and refresh ring-buffer state*/
592 head
= (head
+ PPR_ENTRY_SIZE
) % PPR_LOG_SIZE
;
593 writel(head
, iommu
->mmio_base
+ MMIO_PPR_HEAD_OFFSET
);
594 tail
= readl(iommu
->mmio_base
+ MMIO_PPR_TAIL_OFFSET
);
597 /* enable ppr interrupts again */
598 writel(MMIO_STATUS_PPR_INT_MASK
, iommu
->mmio_base
+ MMIO_STATUS_OFFSET
);
600 spin_unlock_irqrestore(&iommu
->lock
, flags
);
603 irqreturn_t
amd_iommu_int_thread(int irq
, void *data
)
605 struct amd_iommu
*iommu
;
607 for_each_iommu(iommu
) {
608 iommu_poll_events(iommu
);
609 iommu_poll_ppr_log(iommu
);
615 irqreturn_t
amd_iommu_int_handler(int irq
, void *data
)
617 return IRQ_WAKE_THREAD
;
620 /****************************************************************************
622 * IOMMU command queuing functions
624 ****************************************************************************/
626 static int wait_on_sem(volatile u64
*sem
)
630 while (*sem
== 0 && i
< LOOP_TIMEOUT
) {
635 if (i
== LOOP_TIMEOUT
) {
636 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
643 static void copy_cmd_to_buffer(struct amd_iommu
*iommu
,
644 struct iommu_cmd
*cmd
,
649 target
= iommu
->cmd_buf
+ tail
;
650 tail
= (tail
+ sizeof(*cmd
)) % iommu
->cmd_buf_size
;
652 /* Copy command to buffer */
653 memcpy(target
, cmd
, sizeof(*cmd
));
655 /* Tell the IOMMU about it */
656 writel(tail
, iommu
->mmio_base
+ MMIO_CMD_TAIL_OFFSET
);
659 static void build_completion_wait(struct iommu_cmd
*cmd
, u64 address
)
661 WARN_ON(address
& 0x7ULL
);
663 memset(cmd
, 0, sizeof(*cmd
));
664 cmd
->data
[0] = lower_32_bits(__pa(address
)) | CMD_COMPL_WAIT_STORE_MASK
;
665 cmd
->data
[1] = upper_32_bits(__pa(address
));
667 CMD_SET_TYPE(cmd
, CMD_COMPL_WAIT
);
670 static void build_inv_dte(struct iommu_cmd
*cmd
, u16 devid
)
672 memset(cmd
, 0, sizeof(*cmd
));
673 cmd
->data
[0] = devid
;
674 CMD_SET_TYPE(cmd
, CMD_INV_DEV_ENTRY
);
677 static void build_inv_iommu_pages(struct iommu_cmd
*cmd
, u64 address
,
678 size_t size
, u16 domid
, int pde
)
683 pages
= iommu_num_pages(address
, size
, PAGE_SIZE
);
688 * If we have to flush more than one page, flush all
689 * TLB entries for this domain
691 address
= CMD_INV_IOMMU_ALL_PAGES_ADDRESS
;
695 address
&= PAGE_MASK
;
697 memset(cmd
, 0, sizeof(*cmd
));
698 cmd
->data
[1] |= domid
;
699 cmd
->data
[2] = lower_32_bits(address
);
700 cmd
->data
[3] = upper_32_bits(address
);
701 CMD_SET_TYPE(cmd
, CMD_INV_IOMMU_PAGES
);
702 if (s
) /* size bit - we flush more than one 4kb page */
703 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK
;
704 if (pde
) /* PDE bit - we wan't flush everything not only the PTEs */
705 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK
;
708 static void build_inv_iotlb_pages(struct iommu_cmd
*cmd
, u16 devid
, int qdep
,
709 u64 address
, size_t size
)
714 pages
= iommu_num_pages(address
, size
, PAGE_SIZE
);
719 * If we have to flush more than one page, flush all
720 * TLB entries for this domain
722 address
= CMD_INV_IOMMU_ALL_PAGES_ADDRESS
;
726 address
&= PAGE_MASK
;
728 memset(cmd
, 0, sizeof(*cmd
));
729 cmd
->data
[0] = devid
;
730 cmd
->data
[0] |= (qdep
& 0xff) << 24;
731 cmd
->data
[1] = devid
;
732 cmd
->data
[2] = lower_32_bits(address
);
733 cmd
->data
[3] = upper_32_bits(address
);
734 CMD_SET_TYPE(cmd
, CMD_INV_IOTLB_PAGES
);
736 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK
;
739 static void build_inv_iommu_pasid(struct iommu_cmd
*cmd
, u16 domid
, int pasid
,
740 u64 address
, bool size
)
742 memset(cmd
, 0, sizeof(*cmd
));
744 address
&= ~(0xfffULL
);
746 cmd
->data
[0] = pasid
& PASID_MASK
;
747 cmd
->data
[1] = domid
;
748 cmd
->data
[2] = lower_32_bits(address
);
749 cmd
->data
[3] = upper_32_bits(address
);
750 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK
;
751 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_GN_MASK
;
753 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK
;
754 CMD_SET_TYPE(cmd
, CMD_INV_IOMMU_PAGES
);
757 static void build_inv_iotlb_pasid(struct iommu_cmd
*cmd
, u16 devid
, int pasid
,
758 int qdep
, u64 address
, bool size
)
760 memset(cmd
, 0, sizeof(*cmd
));
762 address
&= ~(0xfffULL
);
764 cmd
->data
[0] = devid
;
765 cmd
->data
[0] |= (pasid
& 0xff) << 16;
766 cmd
->data
[0] |= (qdep
& 0xff) << 24;
767 cmd
->data
[1] = devid
;
768 cmd
->data
[1] |= ((pasid
>> 8) & 0xfff) << 16;
769 cmd
->data
[2] = lower_32_bits(address
);
770 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_GN_MASK
;
771 cmd
->data
[3] = upper_32_bits(address
);
773 cmd
->data
[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK
;
774 CMD_SET_TYPE(cmd
, CMD_INV_IOTLB_PAGES
);
777 static void build_complete_ppr(struct iommu_cmd
*cmd
, u16 devid
, int pasid
,
778 int status
, int tag
, bool gn
)
780 memset(cmd
, 0, sizeof(*cmd
));
782 cmd
->data
[0] = devid
;
784 cmd
->data
[1] = pasid
& PASID_MASK
;
785 cmd
->data
[2] = CMD_INV_IOMMU_PAGES_GN_MASK
;
787 cmd
->data
[3] = tag
& 0x1ff;
788 cmd
->data
[3] |= (status
& PPR_STATUS_MASK
) << PPR_STATUS_SHIFT
;
790 CMD_SET_TYPE(cmd
, CMD_COMPLETE_PPR
);
793 static void build_inv_all(struct iommu_cmd
*cmd
)
795 memset(cmd
, 0, sizeof(*cmd
));
796 CMD_SET_TYPE(cmd
, CMD_INV_ALL
);
800 * Writes the command to the IOMMUs command buffer and informs the
801 * hardware about the new command.
803 static int iommu_queue_command_sync(struct amd_iommu
*iommu
,
804 struct iommu_cmd
*cmd
,
807 u32 left
, tail
, head
, next_tail
;
810 WARN_ON(iommu
->cmd_buf_size
& CMD_BUFFER_UNINITIALIZED
);
813 spin_lock_irqsave(&iommu
->lock
, flags
);
815 head
= readl(iommu
->mmio_base
+ MMIO_CMD_HEAD_OFFSET
);
816 tail
= readl(iommu
->mmio_base
+ MMIO_CMD_TAIL_OFFSET
);
817 next_tail
= (tail
+ sizeof(*cmd
)) % iommu
->cmd_buf_size
;
818 left
= (head
- next_tail
) % iommu
->cmd_buf_size
;
821 struct iommu_cmd sync_cmd
;
822 volatile u64 sem
= 0;
825 build_completion_wait(&sync_cmd
, (u64
)&sem
);
826 copy_cmd_to_buffer(iommu
, &sync_cmd
, tail
);
828 spin_unlock_irqrestore(&iommu
->lock
, flags
);
830 if ((ret
= wait_on_sem(&sem
)) != 0)
836 copy_cmd_to_buffer(iommu
, cmd
, tail
);
838 /* We need to sync now to make sure all commands are processed */
839 iommu
->need_sync
= sync
;
841 spin_unlock_irqrestore(&iommu
->lock
, flags
);
846 static int iommu_queue_command(struct amd_iommu
*iommu
, struct iommu_cmd
*cmd
)
848 return iommu_queue_command_sync(iommu
, cmd
, true);
852 * This function queues a completion wait command into the command
855 static int iommu_completion_wait(struct amd_iommu
*iommu
)
857 struct iommu_cmd cmd
;
858 volatile u64 sem
= 0;
861 if (!iommu
->need_sync
)
864 build_completion_wait(&cmd
, (u64
)&sem
);
866 ret
= iommu_queue_command_sync(iommu
, &cmd
, false);
870 return wait_on_sem(&sem
);
873 static int iommu_flush_dte(struct amd_iommu
*iommu
, u16 devid
)
875 struct iommu_cmd cmd
;
877 build_inv_dte(&cmd
, devid
);
879 return iommu_queue_command(iommu
, &cmd
);
882 static void iommu_flush_dte_all(struct amd_iommu
*iommu
)
886 for (devid
= 0; devid
<= 0xffff; ++devid
)
887 iommu_flush_dte(iommu
, devid
);
889 iommu_completion_wait(iommu
);
893 * This function uses heavy locking and may disable irqs for some time. But
894 * this is no issue because it is only called during resume.
896 static void iommu_flush_tlb_all(struct amd_iommu
*iommu
)
900 for (dom_id
= 0; dom_id
<= 0xffff; ++dom_id
) {
901 struct iommu_cmd cmd
;
902 build_inv_iommu_pages(&cmd
, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS
,
904 iommu_queue_command(iommu
, &cmd
);
907 iommu_completion_wait(iommu
);
910 static void iommu_flush_all(struct amd_iommu
*iommu
)
912 struct iommu_cmd cmd
;
916 iommu_queue_command(iommu
, &cmd
);
917 iommu_completion_wait(iommu
);
920 void iommu_flush_all_caches(struct amd_iommu
*iommu
)
922 if (iommu_feature(iommu
, FEATURE_IA
)) {
923 iommu_flush_all(iommu
);
925 iommu_flush_dte_all(iommu
);
926 iommu_flush_tlb_all(iommu
);
931 * Command send function for flushing on-device TLB
933 static int device_flush_iotlb(struct iommu_dev_data
*dev_data
,
934 u64 address
, size_t size
)
936 struct amd_iommu
*iommu
;
937 struct iommu_cmd cmd
;
940 qdep
= dev_data
->ats
.qdep
;
941 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
943 build_inv_iotlb_pages(&cmd
, dev_data
->devid
, qdep
, address
, size
);
945 return iommu_queue_command(iommu
, &cmd
);
949 * Command send function for invalidating a device table entry
951 static int device_flush_dte(struct iommu_dev_data
*dev_data
)
953 struct amd_iommu
*iommu
;
956 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
958 ret
= iommu_flush_dte(iommu
, dev_data
->devid
);
962 if (dev_data
->ats
.enabled
)
963 ret
= device_flush_iotlb(dev_data
, 0, ~0UL);
969 * TLB invalidation function which is called from the mapping functions.
970 * It invalidates a single PTE if the range to flush is within a single
971 * page. Otherwise it flushes the whole TLB of the IOMMU.
973 static void __domain_flush_pages(struct protection_domain
*domain
,
974 u64 address
, size_t size
, int pde
)
976 struct iommu_dev_data
*dev_data
;
977 struct iommu_cmd cmd
;
980 build_inv_iommu_pages(&cmd
, address
, size
, domain
->id
, pde
);
982 for (i
= 0; i
< amd_iommus_present
; ++i
) {
983 if (!domain
->dev_iommu
[i
])
987 * Devices of this domain are behind this IOMMU
988 * We need a TLB flush
990 ret
|= iommu_queue_command(amd_iommus
[i
], &cmd
);
993 list_for_each_entry(dev_data
, &domain
->dev_list
, list
) {
995 if (!dev_data
->ats
.enabled
)
998 ret
|= device_flush_iotlb(dev_data
, address
, size
);
1004 static void domain_flush_pages(struct protection_domain
*domain
,
1005 u64 address
, size_t size
)
1007 __domain_flush_pages(domain
, address
, size
, 0);
1010 /* Flush the whole IO/TLB for a given protection domain */
1011 static void domain_flush_tlb(struct protection_domain
*domain
)
1013 __domain_flush_pages(domain
, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS
, 0);
1016 /* Flush the whole IO/TLB for a given protection domain - including PDE */
1017 static void domain_flush_tlb_pde(struct protection_domain
*domain
)
1019 __domain_flush_pages(domain
, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS
, 1);
1022 static void domain_flush_complete(struct protection_domain
*domain
)
1026 for (i
= 0; i
< amd_iommus_present
; ++i
) {
1027 if (!domain
->dev_iommu
[i
])
1031 * Devices of this domain are behind this IOMMU
1032 * We need to wait for completion of all commands.
1034 iommu_completion_wait(amd_iommus
[i
]);
1040 * This function flushes the DTEs for all devices in domain
1042 static void domain_flush_devices(struct protection_domain
*domain
)
1044 struct iommu_dev_data
*dev_data
;
1046 list_for_each_entry(dev_data
, &domain
->dev_list
, list
)
1047 device_flush_dte(dev_data
);
1050 /****************************************************************************
1052 * The functions below are used the create the page table mappings for
1053 * unity mapped regions.
1055 ****************************************************************************/
1058 * This function is used to add another level to an IO page table. Adding
1059 * another level increases the size of the address space by 9 bits to a size up
1062 static bool increase_address_space(struct protection_domain
*domain
,
1067 if (domain
->mode
== PAGE_MODE_6_LEVEL
)
1068 /* address space already 64 bit large */
1071 pte
= (void *)get_zeroed_page(gfp
);
1075 *pte
= PM_LEVEL_PDE(domain
->mode
,
1076 virt_to_phys(domain
->pt_root
));
1077 domain
->pt_root
= pte
;
1079 domain
->updated
= true;
1084 static u64
*alloc_pte(struct protection_domain
*domain
,
1085 unsigned long address
,
1086 unsigned long page_size
,
1093 BUG_ON(!is_power_of_2(page_size
));
1095 while (address
> PM_LEVEL_SIZE(domain
->mode
))
1096 increase_address_space(domain
, gfp
);
1098 level
= domain
->mode
- 1;
1099 pte
= &domain
->pt_root
[PM_LEVEL_INDEX(level
, address
)];
1100 address
= PAGE_SIZE_ALIGN(address
, page_size
);
1101 end_lvl
= PAGE_SIZE_LEVEL(page_size
);
1103 while (level
> end_lvl
) {
1104 if (!IOMMU_PTE_PRESENT(*pte
)) {
1105 page
= (u64
*)get_zeroed_page(gfp
);
1108 *pte
= PM_LEVEL_PDE(level
, virt_to_phys(page
));
1111 /* No level skipping support yet */
1112 if (PM_PTE_LEVEL(*pte
) != level
)
1117 pte
= IOMMU_PTE_PAGE(*pte
);
1119 if (pte_page
&& level
== end_lvl
)
1122 pte
= &pte
[PM_LEVEL_INDEX(level
, address
)];
1129 * This function checks if there is a PTE for a given dma address. If
1130 * there is one, it returns the pointer to it.
1132 static u64
*fetch_pte(struct protection_domain
*domain
, unsigned long address
)
1137 if (address
> PM_LEVEL_SIZE(domain
->mode
))
1140 level
= domain
->mode
- 1;
1141 pte
= &domain
->pt_root
[PM_LEVEL_INDEX(level
, address
)];
1146 if (!IOMMU_PTE_PRESENT(*pte
))
1150 if (PM_PTE_LEVEL(*pte
) == 0x07) {
1151 unsigned long pte_mask
, __pte
;
1154 * If we have a series of large PTEs, make
1155 * sure to return a pointer to the first one.
1157 pte_mask
= PTE_PAGE_SIZE(*pte
);
1158 pte_mask
= ~((PAGE_SIZE_PTE_COUNT(pte_mask
) << 3) - 1);
1159 __pte
= ((unsigned long)pte
) & pte_mask
;
1161 return (u64
*)__pte
;
1164 /* No level skipping support yet */
1165 if (PM_PTE_LEVEL(*pte
) != level
)
1170 /* Walk to the next level */
1171 pte
= IOMMU_PTE_PAGE(*pte
);
1172 pte
= &pte
[PM_LEVEL_INDEX(level
, address
)];
1179 * Generic mapping functions. It maps a physical address into a DMA
1180 * address space. It allocates the page table pages if necessary.
1181 * In the future it can be extended to a generic mapping function
1182 * supporting all features of AMD IOMMU page tables like level skipping
1183 * and full 64 bit address spaces.
1185 static int iommu_map_page(struct protection_domain
*dom
,
1186 unsigned long bus_addr
,
1187 unsigned long phys_addr
,
1189 unsigned long page_size
)
1194 if (!(prot
& IOMMU_PROT_MASK
))
1197 bus_addr
= PAGE_ALIGN(bus_addr
);
1198 phys_addr
= PAGE_ALIGN(phys_addr
);
1199 count
= PAGE_SIZE_PTE_COUNT(page_size
);
1200 pte
= alloc_pte(dom
, bus_addr
, page_size
, NULL
, GFP_KERNEL
);
1202 for (i
= 0; i
< count
; ++i
)
1203 if (IOMMU_PTE_PRESENT(pte
[i
]))
1206 if (page_size
> PAGE_SIZE
) {
1207 __pte
= PAGE_SIZE_PTE(phys_addr
, page_size
);
1208 __pte
|= PM_LEVEL_ENC(7) | IOMMU_PTE_P
| IOMMU_PTE_FC
;
1210 __pte
= phys_addr
| IOMMU_PTE_P
| IOMMU_PTE_FC
;
1212 if (prot
& IOMMU_PROT_IR
)
1213 __pte
|= IOMMU_PTE_IR
;
1214 if (prot
& IOMMU_PROT_IW
)
1215 __pte
|= IOMMU_PTE_IW
;
1217 for (i
= 0; i
< count
; ++i
)
1225 static unsigned long iommu_unmap_page(struct protection_domain
*dom
,
1226 unsigned long bus_addr
,
1227 unsigned long page_size
)
1229 unsigned long long unmap_size
, unmapped
;
1232 BUG_ON(!is_power_of_2(page_size
));
1236 while (unmapped
< page_size
) {
1238 pte
= fetch_pte(dom
, bus_addr
);
1242 * No PTE for this address
1243 * move forward in 4kb steps
1245 unmap_size
= PAGE_SIZE
;
1246 } else if (PM_PTE_LEVEL(*pte
) == 0) {
1247 /* 4kb PTE found for this address */
1248 unmap_size
= PAGE_SIZE
;
1253 /* Large PTE found which maps this address */
1254 unmap_size
= PTE_PAGE_SIZE(*pte
);
1255 count
= PAGE_SIZE_PTE_COUNT(unmap_size
);
1256 for (i
= 0; i
< count
; i
++)
1260 bus_addr
= (bus_addr
& ~(unmap_size
- 1)) + unmap_size
;
1261 unmapped
+= unmap_size
;
1264 BUG_ON(!is_power_of_2(unmapped
));
1270 * This function checks if a specific unity mapping entry is needed for
1271 * this specific IOMMU.
1273 static int iommu_for_unity_map(struct amd_iommu
*iommu
,
1274 struct unity_map_entry
*entry
)
1278 for (i
= entry
->devid_start
; i
<= entry
->devid_end
; ++i
) {
1279 bdf
= amd_iommu_alias_table
[i
];
1280 if (amd_iommu_rlookup_table
[bdf
] == iommu
)
1288 * This function actually applies the mapping to the page table of the
1291 static int dma_ops_unity_map(struct dma_ops_domain
*dma_dom
,
1292 struct unity_map_entry
*e
)
1297 for (addr
= e
->address_start
; addr
< e
->address_end
;
1298 addr
+= PAGE_SIZE
) {
1299 ret
= iommu_map_page(&dma_dom
->domain
, addr
, addr
, e
->prot
,
1304 * if unity mapping is in aperture range mark the page
1305 * as allocated in the aperture
1307 if (addr
< dma_dom
->aperture_size
)
1308 __set_bit(addr
>> PAGE_SHIFT
,
1309 dma_dom
->aperture
[0]->bitmap
);
1316 * Init the unity mappings for a specific IOMMU in the system
1318 * Basically iterates over all unity mapping entries and applies them to
1319 * the default domain DMA of that IOMMU if necessary.
1321 static int iommu_init_unity_mappings(struct amd_iommu
*iommu
)
1323 struct unity_map_entry
*entry
;
1326 list_for_each_entry(entry
, &amd_iommu_unity_map
, list
) {
1327 if (!iommu_for_unity_map(iommu
, entry
))
1329 ret
= dma_ops_unity_map(iommu
->default_dom
, entry
);
1338 * Inits the unity mappings required for a specific device
1340 static int init_unity_mappings_for_device(struct dma_ops_domain
*dma_dom
,
1343 struct unity_map_entry
*e
;
1346 list_for_each_entry(e
, &amd_iommu_unity_map
, list
) {
1347 if (!(devid
>= e
->devid_start
&& devid
<= e
->devid_end
))
1349 ret
= dma_ops_unity_map(dma_dom
, e
);
1357 /****************************************************************************
1359 * The next functions belong to the address allocator for the dma_ops
1360 * interface functions. They work like the allocators in the other IOMMU
1361 * drivers. Its basically a bitmap which marks the allocated pages in
1362 * the aperture. Maybe it could be enhanced in the future to a more
1363 * efficient allocator.
1365 ****************************************************************************/
1368 * The address allocator core functions.
1370 * called with domain->lock held
1374 * Used to reserve address ranges in the aperture (e.g. for exclusion
1377 static void dma_ops_reserve_addresses(struct dma_ops_domain
*dom
,
1378 unsigned long start_page
,
1381 unsigned int i
, last_page
= dom
->aperture_size
>> PAGE_SHIFT
;
1383 if (start_page
+ pages
> last_page
)
1384 pages
= last_page
- start_page
;
1386 for (i
= start_page
; i
< start_page
+ pages
; ++i
) {
1387 int index
= i
/ APERTURE_RANGE_PAGES
;
1388 int page
= i
% APERTURE_RANGE_PAGES
;
1389 __set_bit(page
, dom
->aperture
[index
]->bitmap
);
1394 * This function is used to add a new aperture range to an existing
1395 * aperture in case of dma_ops domain allocation or address allocation
1398 static int alloc_new_range(struct dma_ops_domain
*dma_dom
,
1399 bool populate
, gfp_t gfp
)
1401 int index
= dma_dom
->aperture_size
>> APERTURE_RANGE_SHIFT
;
1402 struct amd_iommu
*iommu
;
1403 unsigned long i
, old_size
;
1405 #ifdef CONFIG_IOMMU_STRESS
1409 if (index
>= APERTURE_MAX_RANGES
)
1412 dma_dom
->aperture
[index
] = kzalloc(sizeof(struct aperture_range
), gfp
);
1413 if (!dma_dom
->aperture
[index
])
1416 dma_dom
->aperture
[index
]->bitmap
= (void *)get_zeroed_page(gfp
);
1417 if (!dma_dom
->aperture
[index
]->bitmap
)
1420 dma_dom
->aperture
[index
]->offset
= dma_dom
->aperture_size
;
1423 unsigned long address
= dma_dom
->aperture_size
;
1424 int i
, num_ptes
= APERTURE_RANGE_PAGES
/ 512;
1425 u64
*pte
, *pte_page
;
1427 for (i
= 0; i
< num_ptes
; ++i
) {
1428 pte
= alloc_pte(&dma_dom
->domain
, address
, PAGE_SIZE
,
1433 dma_dom
->aperture
[index
]->pte_pages
[i
] = pte_page
;
1435 address
+= APERTURE_RANGE_SIZE
/ 64;
1439 old_size
= dma_dom
->aperture_size
;
1440 dma_dom
->aperture_size
+= APERTURE_RANGE_SIZE
;
1442 /* Reserve address range used for MSI messages */
1443 if (old_size
< MSI_ADDR_BASE_LO
&&
1444 dma_dom
->aperture_size
> MSI_ADDR_BASE_LO
) {
1445 unsigned long spage
;
1448 pages
= iommu_num_pages(MSI_ADDR_BASE_LO
, 0x10000, PAGE_SIZE
);
1449 spage
= MSI_ADDR_BASE_LO
>> PAGE_SHIFT
;
1451 dma_ops_reserve_addresses(dma_dom
, spage
, pages
);
1454 /* Initialize the exclusion range if necessary */
1455 for_each_iommu(iommu
) {
1456 if (iommu
->exclusion_start
&&
1457 iommu
->exclusion_start
>= dma_dom
->aperture
[index
]->offset
1458 && iommu
->exclusion_start
< dma_dom
->aperture_size
) {
1459 unsigned long startpage
;
1460 int pages
= iommu_num_pages(iommu
->exclusion_start
,
1461 iommu
->exclusion_length
,
1463 startpage
= iommu
->exclusion_start
>> PAGE_SHIFT
;
1464 dma_ops_reserve_addresses(dma_dom
, startpage
, pages
);
1469 * Check for areas already mapped as present in the new aperture
1470 * range and mark those pages as reserved in the allocator. Such
1471 * mappings may already exist as a result of requested unity
1472 * mappings for devices.
1474 for (i
= dma_dom
->aperture
[index
]->offset
;
1475 i
< dma_dom
->aperture_size
;
1477 u64
*pte
= fetch_pte(&dma_dom
->domain
, i
);
1478 if (!pte
|| !IOMMU_PTE_PRESENT(*pte
))
1481 dma_ops_reserve_addresses(dma_dom
, i
>> PAGE_SHIFT
, 1);
1484 update_domain(&dma_dom
->domain
);
1489 update_domain(&dma_dom
->domain
);
1491 free_page((unsigned long)dma_dom
->aperture
[index
]->bitmap
);
1493 kfree(dma_dom
->aperture
[index
]);
1494 dma_dom
->aperture
[index
] = NULL
;
1499 static unsigned long dma_ops_area_alloc(struct device
*dev
,
1500 struct dma_ops_domain
*dom
,
1502 unsigned long align_mask
,
1504 unsigned long start
)
1506 unsigned long next_bit
= dom
->next_address
% APERTURE_RANGE_SIZE
;
1507 int max_index
= dom
->aperture_size
>> APERTURE_RANGE_SHIFT
;
1508 int i
= start
>> APERTURE_RANGE_SHIFT
;
1509 unsigned long boundary_size
;
1510 unsigned long address
= -1;
1511 unsigned long limit
;
1513 next_bit
>>= PAGE_SHIFT
;
1515 boundary_size
= ALIGN(dma_get_seg_boundary(dev
) + 1,
1516 PAGE_SIZE
) >> PAGE_SHIFT
;
1518 for (;i
< max_index
; ++i
) {
1519 unsigned long offset
= dom
->aperture
[i
]->offset
>> PAGE_SHIFT
;
1521 if (dom
->aperture
[i
]->offset
>= dma_mask
)
1524 limit
= iommu_device_max_index(APERTURE_RANGE_PAGES
, offset
,
1525 dma_mask
>> PAGE_SHIFT
);
1527 address
= iommu_area_alloc(dom
->aperture
[i
]->bitmap
,
1528 limit
, next_bit
, pages
, 0,
1529 boundary_size
, align_mask
);
1530 if (address
!= -1) {
1531 address
= dom
->aperture
[i
]->offset
+
1532 (address
<< PAGE_SHIFT
);
1533 dom
->next_address
= address
+ (pages
<< PAGE_SHIFT
);
1543 static unsigned long dma_ops_alloc_addresses(struct device
*dev
,
1544 struct dma_ops_domain
*dom
,
1546 unsigned long align_mask
,
1549 unsigned long address
;
1551 #ifdef CONFIG_IOMMU_STRESS
1552 dom
->next_address
= 0;
1553 dom
->need_flush
= true;
1556 address
= dma_ops_area_alloc(dev
, dom
, pages
, align_mask
,
1557 dma_mask
, dom
->next_address
);
1559 if (address
== -1) {
1560 dom
->next_address
= 0;
1561 address
= dma_ops_area_alloc(dev
, dom
, pages
, align_mask
,
1563 dom
->need_flush
= true;
1566 if (unlikely(address
== -1))
1567 address
= DMA_ERROR_CODE
;
1569 WARN_ON((address
+ (PAGE_SIZE
*pages
)) > dom
->aperture_size
);
1575 * The address free function.
1577 * called with domain->lock held
1579 static void dma_ops_free_addresses(struct dma_ops_domain
*dom
,
1580 unsigned long address
,
1583 unsigned i
= address
>> APERTURE_RANGE_SHIFT
;
1584 struct aperture_range
*range
= dom
->aperture
[i
];
1586 BUG_ON(i
>= APERTURE_MAX_RANGES
|| range
== NULL
);
1588 #ifdef CONFIG_IOMMU_STRESS
1593 if (address
>= dom
->next_address
)
1594 dom
->need_flush
= true;
1596 address
= (address
% APERTURE_RANGE_SIZE
) >> PAGE_SHIFT
;
1598 bitmap_clear(range
->bitmap
, address
, pages
);
1602 /****************************************************************************
1604 * The next functions belong to the domain allocation. A domain is
1605 * allocated for every IOMMU as the default domain. If device isolation
1606 * is enabled, every device get its own domain. The most important thing
1607 * about domains is the page table mapping the DMA address space they
1610 ****************************************************************************/
1613 * This function adds a protection domain to the global protection domain list
1615 static void add_domain_to_list(struct protection_domain
*domain
)
1617 unsigned long flags
;
1619 spin_lock_irqsave(&amd_iommu_pd_lock
, flags
);
1620 list_add(&domain
->list
, &amd_iommu_pd_list
);
1621 spin_unlock_irqrestore(&amd_iommu_pd_lock
, flags
);
1625 * This function removes a protection domain to the global
1626 * protection domain list
1628 static void del_domain_from_list(struct protection_domain
*domain
)
1630 unsigned long flags
;
1632 spin_lock_irqsave(&amd_iommu_pd_lock
, flags
);
1633 list_del(&domain
->list
);
1634 spin_unlock_irqrestore(&amd_iommu_pd_lock
, flags
);
1637 static u16
domain_id_alloc(void)
1639 unsigned long flags
;
1642 write_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
1643 id
= find_first_zero_bit(amd_iommu_pd_alloc_bitmap
, MAX_DOMAIN_ID
);
1645 if (id
> 0 && id
< MAX_DOMAIN_ID
)
1646 __set_bit(id
, amd_iommu_pd_alloc_bitmap
);
1649 write_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
1654 static void domain_id_free(int id
)
1656 unsigned long flags
;
1658 write_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
1659 if (id
> 0 && id
< MAX_DOMAIN_ID
)
1660 __clear_bit(id
, amd_iommu_pd_alloc_bitmap
);
1661 write_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
1664 static void free_pagetable(struct protection_domain
*domain
)
1669 p1
= domain
->pt_root
;
1674 for (i
= 0; i
< 512; ++i
) {
1675 if (!IOMMU_PTE_PRESENT(p1
[i
]))
1678 p2
= IOMMU_PTE_PAGE(p1
[i
]);
1679 for (j
= 0; j
< 512; ++j
) {
1680 if (!IOMMU_PTE_PRESENT(p2
[j
]))
1682 p3
= IOMMU_PTE_PAGE(p2
[j
]);
1683 free_page((unsigned long)p3
);
1686 free_page((unsigned long)p2
);
1689 free_page((unsigned long)p1
);
1691 domain
->pt_root
= NULL
;
1694 static void free_gcr3_tbl_level1(u64
*tbl
)
1699 for (i
= 0; i
< 512; ++i
) {
1700 if (!(tbl
[i
] & GCR3_VALID
))
1703 ptr
= __va(tbl
[i
] & PAGE_MASK
);
1705 free_page((unsigned long)ptr
);
1709 static void free_gcr3_tbl_level2(u64
*tbl
)
1714 for (i
= 0; i
< 512; ++i
) {
1715 if (!(tbl
[i
] & GCR3_VALID
))
1718 ptr
= __va(tbl
[i
] & PAGE_MASK
);
1720 free_gcr3_tbl_level1(ptr
);
1724 static void free_gcr3_table(struct protection_domain
*domain
)
1726 if (domain
->glx
== 2)
1727 free_gcr3_tbl_level2(domain
->gcr3_tbl
);
1728 else if (domain
->glx
== 1)
1729 free_gcr3_tbl_level1(domain
->gcr3_tbl
);
1730 else if (domain
->glx
!= 0)
1733 free_page((unsigned long)domain
->gcr3_tbl
);
1737 * Free a domain, only used if something went wrong in the
1738 * allocation path and we need to free an already allocated page table
1740 static void dma_ops_domain_free(struct dma_ops_domain
*dom
)
1747 del_domain_from_list(&dom
->domain
);
1749 free_pagetable(&dom
->domain
);
1751 for (i
= 0; i
< APERTURE_MAX_RANGES
; ++i
) {
1752 if (!dom
->aperture
[i
])
1754 free_page((unsigned long)dom
->aperture
[i
]->bitmap
);
1755 kfree(dom
->aperture
[i
]);
1762 * Allocates a new protection domain usable for the dma_ops functions.
1763 * It also initializes the page table and the address allocator data
1764 * structures required for the dma_ops interface
1766 static struct dma_ops_domain
*dma_ops_domain_alloc(void)
1768 struct dma_ops_domain
*dma_dom
;
1770 dma_dom
= kzalloc(sizeof(struct dma_ops_domain
), GFP_KERNEL
);
1774 spin_lock_init(&dma_dom
->domain
.lock
);
1776 dma_dom
->domain
.id
= domain_id_alloc();
1777 if (dma_dom
->domain
.id
== 0)
1779 INIT_LIST_HEAD(&dma_dom
->domain
.dev_list
);
1780 dma_dom
->domain
.mode
= PAGE_MODE_2_LEVEL
;
1781 dma_dom
->domain
.pt_root
= (void *)get_zeroed_page(GFP_KERNEL
);
1782 dma_dom
->domain
.flags
= PD_DMA_OPS_MASK
;
1783 dma_dom
->domain
.priv
= dma_dom
;
1784 if (!dma_dom
->domain
.pt_root
)
1787 dma_dom
->need_flush
= false;
1788 dma_dom
->target_dev
= 0xffff;
1790 add_domain_to_list(&dma_dom
->domain
);
1792 if (alloc_new_range(dma_dom
, true, GFP_KERNEL
))
1796 * mark the first page as allocated so we never return 0 as
1797 * a valid dma-address. So we can use 0 as error value
1799 dma_dom
->aperture
[0]->bitmap
[0] = 1;
1800 dma_dom
->next_address
= 0;
1806 dma_ops_domain_free(dma_dom
);
1812 * little helper function to check whether a given protection domain is a
1815 static bool dma_ops_domain(struct protection_domain
*domain
)
1817 return domain
->flags
& PD_DMA_OPS_MASK
;
1820 static void set_dte_entry(u16 devid
, struct protection_domain
*domain
, bool ats
)
1825 if (domain
->mode
!= PAGE_MODE_NONE
)
1826 pte_root
= virt_to_phys(domain
->pt_root
);
1828 pte_root
|= (domain
->mode
& DEV_ENTRY_MODE_MASK
)
1829 << DEV_ENTRY_MODE_SHIFT
;
1830 pte_root
|= IOMMU_PTE_IR
| IOMMU_PTE_IW
| IOMMU_PTE_P
| IOMMU_PTE_TV
;
1832 flags
= amd_iommu_dev_table
[devid
].data
[1];
1835 flags
|= DTE_FLAG_IOTLB
;
1837 if (domain
->flags
& PD_IOMMUV2_MASK
) {
1838 u64 gcr3
= __pa(domain
->gcr3_tbl
);
1839 u64 glx
= domain
->glx
;
1842 pte_root
|= DTE_FLAG_GV
;
1843 pte_root
|= (glx
& DTE_GLX_MASK
) << DTE_GLX_SHIFT
;
1845 /* First mask out possible old values for GCR3 table */
1846 tmp
= DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B
;
1849 tmp
= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C
;
1852 /* Encode GCR3 table into DTE */
1853 tmp
= DTE_GCR3_VAL_A(gcr3
) << DTE_GCR3_SHIFT_A
;
1856 tmp
= DTE_GCR3_VAL_B(gcr3
) << DTE_GCR3_SHIFT_B
;
1859 tmp
= DTE_GCR3_VAL_C(gcr3
) << DTE_GCR3_SHIFT_C
;
1863 flags
&= ~(0xffffUL
);
1864 flags
|= domain
->id
;
1866 amd_iommu_dev_table
[devid
].data
[1] = flags
;
1867 amd_iommu_dev_table
[devid
].data
[0] = pte_root
;
1870 static void clear_dte_entry(u16 devid
)
1872 /* remove entry from the device table seen by the hardware */
1873 amd_iommu_dev_table
[devid
].data
[0] = IOMMU_PTE_P
| IOMMU_PTE_TV
;
1874 amd_iommu_dev_table
[devid
].data
[1] = 0;
1876 amd_iommu_apply_erratum_63(devid
);
1879 static void do_attach(struct iommu_dev_data
*dev_data
,
1880 struct protection_domain
*domain
)
1882 struct amd_iommu
*iommu
;
1885 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
1886 ats
= dev_data
->ats
.enabled
;
1888 /* Update data structures */
1889 dev_data
->domain
= domain
;
1890 list_add(&dev_data
->list
, &domain
->dev_list
);
1891 set_dte_entry(dev_data
->devid
, domain
, ats
);
1893 /* Do reference counting */
1894 domain
->dev_iommu
[iommu
->index
] += 1;
1895 domain
->dev_cnt
+= 1;
1897 /* Flush the DTE entry */
1898 device_flush_dte(dev_data
);
1901 static void do_detach(struct iommu_dev_data
*dev_data
)
1903 struct amd_iommu
*iommu
;
1905 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
1907 /* decrease reference counters */
1908 dev_data
->domain
->dev_iommu
[iommu
->index
] -= 1;
1909 dev_data
->domain
->dev_cnt
-= 1;
1911 /* Update data structures */
1912 dev_data
->domain
= NULL
;
1913 list_del(&dev_data
->list
);
1914 clear_dte_entry(dev_data
->devid
);
1916 /* Flush the DTE entry */
1917 device_flush_dte(dev_data
);
1921 * If a device is not yet associated with a domain, this function does
1922 * assigns it visible for the hardware
1924 static int __attach_device(struct iommu_dev_data
*dev_data
,
1925 struct protection_domain
*domain
)
1930 spin_lock(&domain
->lock
);
1932 if (dev_data
->alias_data
!= NULL
) {
1933 struct iommu_dev_data
*alias_data
= dev_data
->alias_data
;
1935 /* Some sanity checks */
1937 if (alias_data
->domain
!= NULL
&&
1938 alias_data
->domain
!= domain
)
1941 if (dev_data
->domain
!= NULL
&&
1942 dev_data
->domain
!= domain
)
1945 /* Do real assignment */
1946 if (alias_data
->domain
== NULL
)
1947 do_attach(alias_data
, domain
);
1949 atomic_inc(&alias_data
->bind
);
1952 if (dev_data
->domain
== NULL
)
1953 do_attach(dev_data
, domain
);
1955 atomic_inc(&dev_data
->bind
);
1962 spin_unlock(&domain
->lock
);
1968 static void pdev_iommuv2_disable(struct pci_dev
*pdev
)
1970 pci_disable_ats(pdev
);
1971 pci_disable_pri(pdev
);
1972 pci_disable_pasid(pdev
);
1975 /* FIXME: Change generic reset-function to do the same */
1976 static int pri_reset_while_enabled(struct pci_dev
*pdev
)
1981 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_PRI
);
1985 pci_read_config_word(pdev
, pos
+ PCI_PRI_CTRL
, &control
);
1986 control
|= PCI_PRI_CTRL_RESET
;
1987 pci_write_config_word(pdev
, pos
+ PCI_PRI_CTRL
, control
);
1992 static int pdev_iommuv2_enable(struct pci_dev
*pdev
)
1997 /* FIXME: Hardcode number of outstanding requests for now */
1999 if (pdev_pri_erratum(pdev
, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE
))
2001 reset_enable
= pdev_pri_erratum(pdev
, AMD_PRI_DEV_ERRATUM_ENABLE_RESET
);
2003 /* Only allow access to user-accessible pages */
2004 ret
= pci_enable_pasid(pdev
, 0);
2008 /* First reset the PRI state of the device */
2009 ret
= pci_reset_pri(pdev
);
2014 ret
= pci_enable_pri(pdev
, reqs
);
2019 ret
= pri_reset_while_enabled(pdev
);
2024 ret
= pci_enable_ats(pdev
, PAGE_SHIFT
);
2031 pci_disable_pri(pdev
);
2032 pci_disable_pasid(pdev
);
2037 /* FIXME: Move this to PCI code */
2038 #define PCI_PRI_TLP_OFF (1 << 2)
2040 bool pci_pri_tlp_required(struct pci_dev
*pdev
)
2045 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_PRI
);
2049 pci_read_config_word(pdev
, pos
+ PCI_PRI_CTRL
, &control
);
2051 return (control
& PCI_PRI_TLP_OFF
) ? true : false;
2055 * If a device is not yet associated with a domain, this function does
2056 * assigns it visible for the hardware
2058 static int attach_device(struct device
*dev
,
2059 struct protection_domain
*domain
)
2061 struct pci_dev
*pdev
= to_pci_dev(dev
);
2062 struct iommu_dev_data
*dev_data
;
2063 unsigned long flags
;
2066 dev_data
= get_dev_data(dev
);
2068 if (domain
->flags
& PD_IOMMUV2_MASK
) {
2069 if (!dev_data
->iommu_v2
|| !dev_data
->passthrough
)
2072 if (pdev_iommuv2_enable(pdev
) != 0)
2075 dev_data
->ats
.enabled
= true;
2076 dev_data
->ats
.qdep
= pci_ats_queue_depth(pdev
);
2077 dev_data
->pri_tlp
= pci_pri_tlp_required(pdev
);
2078 } else if (amd_iommu_iotlb_sup
&&
2079 pci_enable_ats(pdev
, PAGE_SHIFT
) == 0) {
2080 dev_data
->ats
.enabled
= true;
2081 dev_data
->ats
.qdep
= pci_ats_queue_depth(pdev
);
2084 write_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
2085 ret
= __attach_device(dev_data
, domain
);
2086 write_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
2089 * We might boot into a crash-kernel here. The crashed kernel
2090 * left the caches in the IOMMU dirty. So we have to flush
2091 * here to evict all dirty stuff.
2093 domain_flush_tlb_pde(domain
);
2099 * Removes a device from a protection domain (unlocked)
2101 static void __detach_device(struct iommu_dev_data
*dev_data
)
2103 struct protection_domain
*domain
;
2104 unsigned long flags
;
2106 BUG_ON(!dev_data
->domain
);
2108 domain
= dev_data
->domain
;
2110 spin_lock_irqsave(&domain
->lock
, flags
);
2112 if (dev_data
->alias_data
!= NULL
) {
2113 struct iommu_dev_data
*alias_data
= dev_data
->alias_data
;
2115 if (atomic_dec_and_test(&alias_data
->bind
))
2116 do_detach(alias_data
);
2119 if (atomic_dec_and_test(&dev_data
->bind
))
2120 do_detach(dev_data
);
2122 spin_unlock_irqrestore(&domain
->lock
, flags
);
2125 * If we run in passthrough mode the device must be assigned to the
2126 * passthrough domain if it is detached from any other domain.
2127 * Make sure we can deassign from the pt_domain itself.
2129 if (dev_data
->passthrough
&&
2130 (dev_data
->domain
== NULL
&& domain
!= pt_domain
))
2131 __attach_device(dev_data
, pt_domain
);
2135 * Removes a device from a protection domain (with devtable_lock held)
2137 static void detach_device(struct device
*dev
)
2139 struct protection_domain
*domain
;
2140 struct iommu_dev_data
*dev_data
;
2141 unsigned long flags
;
2143 dev_data
= get_dev_data(dev
);
2144 domain
= dev_data
->domain
;
2146 /* lock device table */
2147 write_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
2148 __detach_device(dev_data
);
2149 write_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
2151 if (domain
->flags
& PD_IOMMUV2_MASK
)
2152 pdev_iommuv2_disable(to_pci_dev(dev
));
2153 else if (dev_data
->ats
.enabled
)
2154 pci_disable_ats(to_pci_dev(dev
));
2156 dev_data
->ats
.enabled
= false;
2160 * Find out the protection domain structure for a given PCI device. This
2161 * will give us the pointer to the page table root for example.
2163 static struct protection_domain
*domain_for_device(struct device
*dev
)
2165 struct iommu_dev_data
*dev_data
;
2166 struct protection_domain
*dom
= NULL
;
2167 unsigned long flags
;
2169 dev_data
= get_dev_data(dev
);
2171 if (dev_data
->domain
)
2172 return dev_data
->domain
;
2174 if (dev_data
->alias_data
!= NULL
) {
2175 struct iommu_dev_data
*alias_data
= dev_data
->alias_data
;
2177 read_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
2178 if (alias_data
->domain
!= NULL
) {
2179 __attach_device(dev_data
, alias_data
->domain
);
2180 dom
= alias_data
->domain
;
2182 read_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
2188 static int device_change_notifier(struct notifier_block
*nb
,
2189 unsigned long action
, void *data
)
2191 struct dma_ops_domain
*dma_domain
;
2192 struct protection_domain
*domain
;
2193 struct iommu_dev_data
*dev_data
;
2194 struct device
*dev
= data
;
2195 struct amd_iommu
*iommu
;
2196 unsigned long flags
;
2199 if (!check_device(dev
))
2202 devid
= get_device_id(dev
);
2203 iommu
= amd_iommu_rlookup_table
[devid
];
2204 dev_data
= get_dev_data(dev
);
2207 case BUS_NOTIFY_UNBOUND_DRIVER
:
2209 domain
= domain_for_device(dev
);
2213 if (dev_data
->passthrough
)
2217 case BUS_NOTIFY_ADD_DEVICE
:
2219 iommu_init_device(dev
);
2221 domain
= domain_for_device(dev
);
2223 /* allocate a protection domain if a device is added */
2224 dma_domain
= find_protection_domain(devid
);
2227 dma_domain
= dma_ops_domain_alloc();
2230 dma_domain
->target_dev
= devid
;
2232 spin_lock_irqsave(&iommu_pd_list_lock
, flags
);
2233 list_add_tail(&dma_domain
->list
, &iommu_pd_list
);
2234 spin_unlock_irqrestore(&iommu_pd_list_lock
, flags
);
2237 case BUS_NOTIFY_DEL_DEVICE
:
2239 iommu_uninit_device(dev
);
2245 iommu_completion_wait(iommu
);
2251 static struct notifier_block device_nb
= {
2252 .notifier_call
= device_change_notifier
,
2255 void amd_iommu_init_notifier(void)
2257 bus_register_notifier(&pci_bus_type
, &device_nb
);
2260 /*****************************************************************************
2262 * The next functions belong to the dma_ops mapping/unmapping code.
2264 *****************************************************************************/
2267 * In the dma_ops path we only have the struct device. This function
2268 * finds the corresponding IOMMU, the protection domain and the
2269 * requestor id for a given device.
2270 * If the device is not yet associated with a domain this is also done
2273 static struct protection_domain
*get_domain(struct device
*dev
)
2275 struct protection_domain
*domain
;
2276 struct dma_ops_domain
*dma_dom
;
2277 u16 devid
= get_device_id(dev
);
2279 if (!check_device(dev
))
2280 return ERR_PTR(-EINVAL
);
2282 domain
= domain_for_device(dev
);
2283 if (domain
!= NULL
&& !dma_ops_domain(domain
))
2284 return ERR_PTR(-EBUSY
);
2289 /* Device not bount yet - bind it */
2290 dma_dom
= find_protection_domain(devid
);
2292 dma_dom
= amd_iommu_rlookup_table
[devid
]->default_dom
;
2293 attach_device(dev
, &dma_dom
->domain
);
2294 DUMP_printk("Using protection domain %d for device %s\n",
2295 dma_dom
->domain
.id
, dev_name(dev
));
2297 return &dma_dom
->domain
;
2300 static void update_device_table(struct protection_domain
*domain
)
2302 struct iommu_dev_data
*dev_data
;
2304 list_for_each_entry(dev_data
, &domain
->dev_list
, list
)
2305 set_dte_entry(dev_data
->devid
, domain
, dev_data
->ats
.enabled
);
2308 static void update_domain(struct protection_domain
*domain
)
2310 if (!domain
->updated
)
2313 update_device_table(domain
);
2315 domain_flush_devices(domain
);
2316 domain_flush_tlb_pde(domain
);
2318 domain
->updated
= false;
2322 * This function fetches the PTE for a given address in the aperture
2324 static u64
* dma_ops_get_pte(struct dma_ops_domain
*dom
,
2325 unsigned long address
)
2327 struct aperture_range
*aperture
;
2328 u64
*pte
, *pte_page
;
2330 aperture
= dom
->aperture
[APERTURE_RANGE_INDEX(address
)];
2334 pte
= aperture
->pte_pages
[APERTURE_PAGE_INDEX(address
)];
2336 pte
= alloc_pte(&dom
->domain
, address
, PAGE_SIZE
, &pte_page
,
2338 aperture
->pte_pages
[APERTURE_PAGE_INDEX(address
)] = pte_page
;
2340 pte
+= PM_LEVEL_INDEX(0, address
);
2342 update_domain(&dom
->domain
);
2348 * This is the generic map function. It maps one 4kb page at paddr to
2349 * the given address in the DMA address space for the domain.
2351 static dma_addr_t
dma_ops_domain_map(struct dma_ops_domain
*dom
,
2352 unsigned long address
,
2358 WARN_ON(address
> dom
->aperture_size
);
2362 pte
= dma_ops_get_pte(dom
, address
);
2364 return DMA_ERROR_CODE
;
2366 __pte
= paddr
| IOMMU_PTE_P
| IOMMU_PTE_FC
;
2368 if (direction
== DMA_TO_DEVICE
)
2369 __pte
|= IOMMU_PTE_IR
;
2370 else if (direction
== DMA_FROM_DEVICE
)
2371 __pte
|= IOMMU_PTE_IW
;
2372 else if (direction
== DMA_BIDIRECTIONAL
)
2373 __pte
|= IOMMU_PTE_IR
| IOMMU_PTE_IW
;
2379 return (dma_addr_t
)address
;
2383 * The generic unmapping function for on page in the DMA address space.
2385 static void dma_ops_domain_unmap(struct dma_ops_domain
*dom
,
2386 unsigned long address
)
2388 struct aperture_range
*aperture
;
2391 if (address
>= dom
->aperture_size
)
2394 aperture
= dom
->aperture
[APERTURE_RANGE_INDEX(address
)];
2398 pte
= aperture
->pte_pages
[APERTURE_PAGE_INDEX(address
)];
2402 pte
+= PM_LEVEL_INDEX(0, address
);
2410 * This function contains common code for mapping of a physically
2411 * contiguous memory region into DMA address space. It is used by all
2412 * mapping functions provided with this IOMMU driver.
2413 * Must be called with the domain lock held.
2415 static dma_addr_t
__map_single(struct device
*dev
,
2416 struct dma_ops_domain
*dma_dom
,
2423 dma_addr_t offset
= paddr
& ~PAGE_MASK
;
2424 dma_addr_t address
, start
, ret
;
2426 unsigned long align_mask
= 0;
2429 pages
= iommu_num_pages(paddr
, size
, PAGE_SIZE
);
2432 INC_STATS_COUNTER(total_map_requests
);
2435 INC_STATS_COUNTER(cross_page
);
2438 align_mask
= (1UL << get_order(size
)) - 1;
2441 address
= dma_ops_alloc_addresses(dev
, dma_dom
, pages
, align_mask
,
2443 if (unlikely(address
== DMA_ERROR_CODE
)) {
2445 * setting next_address here will let the address
2446 * allocator only scan the new allocated range in the
2447 * first run. This is a small optimization.
2449 dma_dom
->next_address
= dma_dom
->aperture_size
;
2451 if (alloc_new_range(dma_dom
, false, GFP_ATOMIC
))
2455 * aperture was successfully enlarged by 128 MB, try
2462 for (i
= 0; i
< pages
; ++i
) {
2463 ret
= dma_ops_domain_map(dma_dom
, start
, paddr
, dir
);
2464 if (ret
== DMA_ERROR_CODE
)
2472 ADD_STATS_COUNTER(alloced_io_mem
, size
);
2474 if (unlikely(dma_dom
->need_flush
&& !amd_iommu_unmap_flush
)) {
2475 domain_flush_tlb(&dma_dom
->domain
);
2476 dma_dom
->need_flush
= false;
2477 } else if (unlikely(amd_iommu_np_cache
))
2478 domain_flush_pages(&dma_dom
->domain
, address
, size
);
2485 for (--i
; i
>= 0; --i
) {
2487 dma_ops_domain_unmap(dma_dom
, start
);
2490 dma_ops_free_addresses(dma_dom
, address
, pages
);
2492 return DMA_ERROR_CODE
;
2496 * Does the reverse of the __map_single function. Must be called with
2497 * the domain lock held too
2499 static void __unmap_single(struct dma_ops_domain
*dma_dom
,
2500 dma_addr_t dma_addr
,
2504 dma_addr_t flush_addr
;
2505 dma_addr_t i
, start
;
2508 if ((dma_addr
== DMA_ERROR_CODE
) ||
2509 (dma_addr
+ size
> dma_dom
->aperture_size
))
2512 flush_addr
= dma_addr
;
2513 pages
= iommu_num_pages(dma_addr
, size
, PAGE_SIZE
);
2514 dma_addr
&= PAGE_MASK
;
2517 for (i
= 0; i
< pages
; ++i
) {
2518 dma_ops_domain_unmap(dma_dom
, start
);
2522 SUB_STATS_COUNTER(alloced_io_mem
, size
);
2524 dma_ops_free_addresses(dma_dom
, dma_addr
, pages
);
2526 if (amd_iommu_unmap_flush
|| dma_dom
->need_flush
) {
2527 domain_flush_pages(&dma_dom
->domain
, flush_addr
, size
);
2528 dma_dom
->need_flush
= false;
2533 * The exported map_single function for dma_ops.
2535 static dma_addr_t
map_page(struct device
*dev
, struct page
*page
,
2536 unsigned long offset
, size_t size
,
2537 enum dma_data_direction dir
,
2538 struct dma_attrs
*attrs
)
2540 unsigned long flags
;
2541 struct protection_domain
*domain
;
2544 phys_addr_t paddr
= page_to_phys(page
) + offset
;
2546 INC_STATS_COUNTER(cnt_map_single
);
2548 domain
= get_domain(dev
);
2549 if (PTR_ERR(domain
) == -EINVAL
)
2550 return (dma_addr_t
)paddr
;
2551 else if (IS_ERR(domain
))
2552 return DMA_ERROR_CODE
;
2554 dma_mask
= *dev
->dma_mask
;
2556 spin_lock_irqsave(&domain
->lock
, flags
);
2558 addr
= __map_single(dev
, domain
->priv
, paddr
, size
, dir
, false,
2560 if (addr
== DMA_ERROR_CODE
)
2563 domain_flush_complete(domain
);
2566 spin_unlock_irqrestore(&domain
->lock
, flags
);
2572 * The exported unmap_single function for dma_ops.
2574 static void unmap_page(struct device
*dev
, dma_addr_t dma_addr
, size_t size
,
2575 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
2577 unsigned long flags
;
2578 struct protection_domain
*domain
;
2580 INC_STATS_COUNTER(cnt_unmap_single
);
2582 domain
= get_domain(dev
);
2586 spin_lock_irqsave(&domain
->lock
, flags
);
2588 __unmap_single(domain
->priv
, dma_addr
, size
, dir
);
2590 domain_flush_complete(domain
);
2592 spin_unlock_irqrestore(&domain
->lock
, flags
);
2596 * This is a special map_sg function which is used if we should map a
2597 * device which is not handled by an AMD IOMMU in the system.
2599 static int map_sg_no_iommu(struct device
*dev
, struct scatterlist
*sglist
,
2600 int nelems
, int dir
)
2602 struct scatterlist
*s
;
2605 for_each_sg(sglist
, s
, nelems
, i
) {
2606 s
->dma_address
= (dma_addr_t
)sg_phys(s
);
2607 s
->dma_length
= s
->length
;
2614 * The exported map_sg function for dma_ops (handles scatter-gather
2617 static int map_sg(struct device
*dev
, struct scatterlist
*sglist
,
2618 int nelems
, enum dma_data_direction dir
,
2619 struct dma_attrs
*attrs
)
2621 unsigned long flags
;
2622 struct protection_domain
*domain
;
2624 struct scatterlist
*s
;
2626 int mapped_elems
= 0;
2629 INC_STATS_COUNTER(cnt_map_sg
);
2631 domain
= get_domain(dev
);
2632 if (PTR_ERR(domain
) == -EINVAL
)
2633 return map_sg_no_iommu(dev
, sglist
, nelems
, dir
);
2634 else if (IS_ERR(domain
))
2637 dma_mask
= *dev
->dma_mask
;
2639 spin_lock_irqsave(&domain
->lock
, flags
);
2641 for_each_sg(sglist
, s
, nelems
, i
) {
2644 s
->dma_address
= __map_single(dev
, domain
->priv
,
2645 paddr
, s
->length
, dir
, false,
2648 if (s
->dma_address
) {
2649 s
->dma_length
= s
->length
;
2655 domain_flush_complete(domain
);
2658 spin_unlock_irqrestore(&domain
->lock
, flags
);
2660 return mapped_elems
;
2662 for_each_sg(sglist
, s
, mapped_elems
, i
) {
2664 __unmap_single(domain
->priv
, s
->dma_address
,
2665 s
->dma_length
, dir
);
2666 s
->dma_address
= s
->dma_length
= 0;
2675 * The exported map_sg function for dma_ops (handles scatter-gather
2678 static void unmap_sg(struct device
*dev
, struct scatterlist
*sglist
,
2679 int nelems
, enum dma_data_direction dir
,
2680 struct dma_attrs
*attrs
)
2682 unsigned long flags
;
2683 struct protection_domain
*domain
;
2684 struct scatterlist
*s
;
2687 INC_STATS_COUNTER(cnt_unmap_sg
);
2689 domain
= get_domain(dev
);
2693 spin_lock_irqsave(&domain
->lock
, flags
);
2695 for_each_sg(sglist
, s
, nelems
, i
) {
2696 __unmap_single(domain
->priv
, s
->dma_address
,
2697 s
->dma_length
, dir
);
2698 s
->dma_address
= s
->dma_length
= 0;
2701 domain_flush_complete(domain
);
2703 spin_unlock_irqrestore(&domain
->lock
, flags
);
2707 * The exported alloc_coherent function for dma_ops.
2709 static void *alloc_coherent(struct device
*dev
, size_t size
,
2710 dma_addr_t
*dma_addr
, gfp_t flag
,
2711 struct dma_attrs
*attrs
)
2713 unsigned long flags
;
2715 struct protection_domain
*domain
;
2717 u64 dma_mask
= dev
->coherent_dma_mask
;
2719 INC_STATS_COUNTER(cnt_alloc_coherent
);
2721 domain
= get_domain(dev
);
2722 if (PTR_ERR(domain
) == -EINVAL
) {
2723 virt_addr
= (void *)__get_free_pages(flag
, get_order(size
));
2724 *dma_addr
= __pa(virt_addr
);
2726 } else if (IS_ERR(domain
))
2729 dma_mask
= dev
->coherent_dma_mask
;
2730 flag
&= ~(__GFP_DMA
| __GFP_HIGHMEM
| __GFP_DMA32
);
2733 virt_addr
= (void *)__get_free_pages(flag
, get_order(size
));
2737 paddr
= virt_to_phys(virt_addr
);
2740 dma_mask
= *dev
->dma_mask
;
2742 spin_lock_irqsave(&domain
->lock
, flags
);
2744 *dma_addr
= __map_single(dev
, domain
->priv
, paddr
,
2745 size
, DMA_BIDIRECTIONAL
, true, dma_mask
);
2747 if (*dma_addr
== DMA_ERROR_CODE
) {
2748 spin_unlock_irqrestore(&domain
->lock
, flags
);
2752 domain_flush_complete(domain
);
2754 spin_unlock_irqrestore(&domain
->lock
, flags
);
2760 free_pages((unsigned long)virt_addr
, get_order(size
));
2766 * The exported free_coherent function for dma_ops.
2768 static void free_coherent(struct device
*dev
, size_t size
,
2769 void *virt_addr
, dma_addr_t dma_addr
,
2770 struct dma_attrs
*attrs
)
2772 unsigned long flags
;
2773 struct protection_domain
*domain
;
2775 INC_STATS_COUNTER(cnt_free_coherent
);
2777 domain
= get_domain(dev
);
2781 spin_lock_irqsave(&domain
->lock
, flags
);
2783 __unmap_single(domain
->priv
, dma_addr
, size
, DMA_BIDIRECTIONAL
);
2785 domain_flush_complete(domain
);
2787 spin_unlock_irqrestore(&domain
->lock
, flags
);
2790 free_pages((unsigned long)virt_addr
, get_order(size
));
2794 * This function is called by the DMA layer to find out if we can handle a
2795 * particular device. It is part of the dma_ops.
2797 static int amd_iommu_dma_supported(struct device
*dev
, u64 mask
)
2799 return check_device(dev
);
2803 * The function for pre-allocating protection domains.
2805 * If the driver core informs the DMA layer if a driver grabs a device
2806 * we don't need to preallocate the protection domains anymore.
2807 * For now we have to.
2809 static void __init
prealloc_protection_domains(void)
2811 struct iommu_dev_data
*dev_data
;
2812 struct dma_ops_domain
*dma_dom
;
2813 struct pci_dev
*dev
= NULL
;
2816 for_each_pci_dev(dev
) {
2818 /* Do we handle this device? */
2819 if (!check_device(&dev
->dev
))
2822 dev_data
= get_dev_data(&dev
->dev
);
2823 if (!amd_iommu_force_isolation
&& dev_data
->iommu_v2
) {
2824 /* Make sure passthrough domain is allocated */
2825 alloc_passthrough_domain();
2826 dev_data
->passthrough
= true;
2827 attach_device(&dev
->dev
, pt_domain
);
2828 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2829 dev_name(&dev
->dev
));
2832 /* Is there already any domain for it? */
2833 if (domain_for_device(&dev
->dev
))
2836 devid
= get_device_id(&dev
->dev
);
2838 dma_dom
= dma_ops_domain_alloc();
2841 init_unity_mappings_for_device(dma_dom
, devid
);
2842 dma_dom
->target_dev
= devid
;
2844 attach_device(&dev
->dev
, &dma_dom
->domain
);
2846 list_add_tail(&dma_dom
->list
, &iommu_pd_list
);
2850 static struct dma_map_ops amd_iommu_dma_ops
= {
2851 .alloc
= alloc_coherent
,
2852 .free
= free_coherent
,
2853 .map_page
= map_page
,
2854 .unmap_page
= unmap_page
,
2856 .unmap_sg
= unmap_sg
,
2857 .dma_supported
= amd_iommu_dma_supported
,
2860 static unsigned device_dma_ops_init(void)
2862 struct iommu_dev_data
*dev_data
;
2863 struct pci_dev
*pdev
= NULL
;
2864 unsigned unhandled
= 0;
2866 for_each_pci_dev(pdev
) {
2867 if (!check_device(&pdev
->dev
)) {
2869 iommu_ignore_device(&pdev
->dev
);
2875 dev_data
= get_dev_data(&pdev
->dev
);
2877 if (!dev_data
->passthrough
)
2878 pdev
->dev
.archdata
.dma_ops
= &amd_iommu_dma_ops
;
2880 pdev
->dev
.archdata
.dma_ops
= &nommu_dma_ops
;
2887 * The function which clues the AMD IOMMU driver into dma_ops.
2890 void __init
amd_iommu_init_api(void)
2892 bus_set_iommu(&pci_bus_type
, &amd_iommu_ops
);
2895 int __init
amd_iommu_init_dma_ops(void)
2897 struct amd_iommu
*iommu
;
2901 * first allocate a default protection domain for every IOMMU we
2902 * found in the system. Devices not assigned to any other
2903 * protection domain will be assigned to the default one.
2905 for_each_iommu(iommu
) {
2906 iommu
->default_dom
= dma_ops_domain_alloc();
2907 if (iommu
->default_dom
== NULL
)
2909 iommu
->default_dom
->domain
.flags
|= PD_DEFAULT_MASK
;
2910 ret
= iommu_init_unity_mappings(iommu
);
2916 * Pre-allocate the protection domains for each device.
2918 prealloc_protection_domains();
2923 /* Make the driver finally visible to the drivers */
2924 unhandled
= device_dma_ops_init();
2925 if (unhandled
&& max_pfn
> MAX_DMA32_PFN
) {
2926 /* There are unhandled devices - initialize swiotlb for them */
2930 amd_iommu_stats_init();
2936 for_each_iommu(iommu
) {
2937 if (iommu
->default_dom
)
2938 dma_ops_domain_free(iommu
->default_dom
);
2944 /*****************************************************************************
2946 * The following functions belong to the exported interface of AMD IOMMU
2948 * This interface allows access to lower level functions of the IOMMU
2949 * like protection domain handling and assignement of devices to domains
2950 * which is not possible with the dma_ops interface.
2952 *****************************************************************************/
2954 static void cleanup_domain(struct protection_domain
*domain
)
2956 struct iommu_dev_data
*dev_data
, *next
;
2957 unsigned long flags
;
2959 write_lock_irqsave(&amd_iommu_devtable_lock
, flags
);
2961 list_for_each_entry_safe(dev_data
, next
, &domain
->dev_list
, list
) {
2962 __detach_device(dev_data
);
2963 atomic_set(&dev_data
->bind
, 0);
2966 write_unlock_irqrestore(&amd_iommu_devtable_lock
, flags
);
2969 static void protection_domain_free(struct protection_domain
*domain
)
2974 del_domain_from_list(domain
);
2977 domain_id_free(domain
->id
);
2982 static struct protection_domain
*protection_domain_alloc(void)
2984 struct protection_domain
*domain
;
2986 domain
= kzalloc(sizeof(*domain
), GFP_KERNEL
);
2990 spin_lock_init(&domain
->lock
);
2991 mutex_init(&domain
->api_lock
);
2992 domain
->id
= domain_id_alloc();
2995 INIT_LIST_HEAD(&domain
->dev_list
);
2997 add_domain_to_list(domain
);
3007 static int __init
alloc_passthrough_domain(void)
3009 if (pt_domain
!= NULL
)
3012 /* allocate passthrough domain */
3013 pt_domain
= protection_domain_alloc();
3017 pt_domain
->mode
= PAGE_MODE_NONE
;
3021 static int amd_iommu_domain_init(struct iommu_domain
*dom
)
3023 struct protection_domain
*domain
;
3025 domain
= protection_domain_alloc();
3029 domain
->mode
= PAGE_MODE_3_LEVEL
;
3030 domain
->pt_root
= (void *)get_zeroed_page(GFP_KERNEL
);
3031 if (!domain
->pt_root
)
3034 domain
->iommu_domain
= dom
;
3041 protection_domain_free(domain
);
3046 static void amd_iommu_domain_destroy(struct iommu_domain
*dom
)
3048 struct protection_domain
*domain
= dom
->priv
;
3053 if (domain
->dev_cnt
> 0)
3054 cleanup_domain(domain
);
3056 BUG_ON(domain
->dev_cnt
!= 0);
3058 if (domain
->mode
!= PAGE_MODE_NONE
)
3059 free_pagetable(domain
);
3061 if (domain
->flags
& PD_IOMMUV2_MASK
)
3062 free_gcr3_table(domain
);
3064 protection_domain_free(domain
);
3069 static void amd_iommu_detach_device(struct iommu_domain
*dom
,
3072 struct iommu_dev_data
*dev_data
= dev
->archdata
.iommu
;
3073 struct amd_iommu
*iommu
;
3076 if (!check_device(dev
))
3079 devid
= get_device_id(dev
);
3081 if (dev_data
->domain
!= NULL
)
3084 iommu
= amd_iommu_rlookup_table
[devid
];
3088 iommu_completion_wait(iommu
);
3091 static int amd_iommu_attach_device(struct iommu_domain
*dom
,
3094 struct protection_domain
*domain
= dom
->priv
;
3095 struct iommu_dev_data
*dev_data
;
3096 struct amd_iommu
*iommu
;
3099 if (!check_device(dev
))
3102 dev_data
= dev
->archdata
.iommu
;
3104 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
3108 if (dev_data
->domain
)
3111 ret
= attach_device(dev
, domain
);
3113 iommu_completion_wait(iommu
);
3118 static int amd_iommu_map(struct iommu_domain
*dom
, unsigned long iova
,
3119 phys_addr_t paddr
, size_t page_size
, int iommu_prot
)
3121 struct protection_domain
*domain
= dom
->priv
;
3125 if (domain
->mode
== PAGE_MODE_NONE
)
3128 if (iommu_prot
& IOMMU_READ
)
3129 prot
|= IOMMU_PROT_IR
;
3130 if (iommu_prot
& IOMMU_WRITE
)
3131 prot
|= IOMMU_PROT_IW
;
3133 mutex_lock(&domain
->api_lock
);
3134 ret
= iommu_map_page(domain
, iova
, paddr
, prot
, page_size
);
3135 mutex_unlock(&domain
->api_lock
);
3140 static size_t amd_iommu_unmap(struct iommu_domain
*dom
, unsigned long iova
,
3143 struct protection_domain
*domain
= dom
->priv
;
3146 if (domain
->mode
== PAGE_MODE_NONE
)
3149 mutex_lock(&domain
->api_lock
);
3150 unmap_size
= iommu_unmap_page(domain
, iova
, page_size
);
3151 mutex_unlock(&domain
->api_lock
);
3153 domain_flush_tlb_pde(domain
);
3158 static phys_addr_t
amd_iommu_iova_to_phys(struct iommu_domain
*dom
,
3161 struct protection_domain
*domain
= dom
->priv
;
3162 unsigned long offset_mask
;
3166 if (domain
->mode
== PAGE_MODE_NONE
)
3169 pte
= fetch_pte(domain
, iova
);
3171 if (!pte
|| !IOMMU_PTE_PRESENT(*pte
))
3174 if (PM_PTE_LEVEL(*pte
) == 0)
3175 offset_mask
= PAGE_SIZE
- 1;
3177 offset_mask
= PTE_PAGE_SIZE(*pte
) - 1;
3179 __pte
= *pte
& PM_ADDR_MASK
;
3180 paddr
= (__pte
& ~offset_mask
) | (iova
& offset_mask
);
3185 static int amd_iommu_domain_has_cap(struct iommu_domain
*domain
,
3189 case IOMMU_CAP_CACHE_COHERENCY
:
3196 static int amd_iommu_device_group(struct device
*dev
, unsigned int *groupid
)
3198 struct iommu_dev_data
*dev_data
= dev
->archdata
.iommu
;
3199 struct pci_dev
*pdev
= to_pci_dev(dev
);
3205 if (pdev
->is_virtfn
|| !iommu_group_mf
)
3206 devid
= dev_data
->devid
;
3208 devid
= calc_devid(pdev
->bus
->number
,
3209 PCI_DEVFN(PCI_SLOT(pdev
->devfn
), 0));
3211 *groupid
= amd_iommu_alias_table
[devid
];
3216 static struct iommu_ops amd_iommu_ops
= {
3217 .domain_init
= amd_iommu_domain_init
,
3218 .domain_destroy
= amd_iommu_domain_destroy
,
3219 .attach_dev
= amd_iommu_attach_device
,
3220 .detach_dev
= amd_iommu_detach_device
,
3221 .map
= amd_iommu_map
,
3222 .unmap
= amd_iommu_unmap
,
3223 .iova_to_phys
= amd_iommu_iova_to_phys
,
3224 .domain_has_cap
= amd_iommu_domain_has_cap
,
3225 .device_group
= amd_iommu_device_group
,
3226 .pgsize_bitmap
= AMD_IOMMU_PGSIZES
,
3229 /*****************************************************************************
3231 * The next functions do a basic initialization of IOMMU for pass through
3234 * In passthrough mode the IOMMU is initialized and enabled but not used for
3235 * DMA-API translation.
3237 *****************************************************************************/
3239 int __init
amd_iommu_init_passthrough(void)
3241 struct iommu_dev_data
*dev_data
;
3242 struct pci_dev
*dev
= NULL
;
3243 struct amd_iommu
*iommu
;
3247 ret
= alloc_passthrough_domain();
3251 for_each_pci_dev(dev
) {
3252 if (!check_device(&dev
->dev
))
3255 dev_data
= get_dev_data(&dev
->dev
);
3256 dev_data
->passthrough
= true;
3258 devid
= get_device_id(&dev
->dev
);
3260 iommu
= amd_iommu_rlookup_table
[devid
];
3264 attach_device(&dev
->dev
, pt_domain
);
3267 amd_iommu_stats_init();
3269 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3274 /* IOMMUv2 specific functions */
3275 int amd_iommu_register_ppr_notifier(struct notifier_block
*nb
)
3277 return atomic_notifier_chain_register(&ppr_notifier
, nb
);
3279 EXPORT_SYMBOL(amd_iommu_register_ppr_notifier
);
3281 int amd_iommu_unregister_ppr_notifier(struct notifier_block
*nb
)
3283 return atomic_notifier_chain_unregister(&ppr_notifier
, nb
);
3285 EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier
);
3287 void amd_iommu_domain_direct_map(struct iommu_domain
*dom
)
3289 struct protection_domain
*domain
= dom
->priv
;
3290 unsigned long flags
;
3292 spin_lock_irqsave(&domain
->lock
, flags
);
3294 /* Update data structure */
3295 domain
->mode
= PAGE_MODE_NONE
;
3296 domain
->updated
= true;
3298 /* Make changes visible to IOMMUs */
3299 update_domain(domain
);
3301 /* Page-table is not visible to IOMMU anymore, so free it */
3302 free_pagetable(domain
);
3304 spin_unlock_irqrestore(&domain
->lock
, flags
);
3306 EXPORT_SYMBOL(amd_iommu_domain_direct_map
);
3308 int amd_iommu_domain_enable_v2(struct iommu_domain
*dom
, int pasids
)
3310 struct protection_domain
*domain
= dom
->priv
;
3311 unsigned long flags
;
3314 if (pasids
<= 0 || pasids
> (PASID_MASK
+ 1))
3317 /* Number of GCR3 table levels required */
3318 for (levels
= 0; (pasids
- 1) & ~0x1ff; pasids
>>= 9)
3321 if (levels
> amd_iommu_max_glx_val
)
3324 spin_lock_irqsave(&domain
->lock
, flags
);
3327 * Save us all sanity checks whether devices already in the
3328 * domain support IOMMUv2. Just force that the domain has no
3329 * devices attached when it is switched into IOMMUv2 mode.
3332 if (domain
->dev_cnt
> 0 || domain
->flags
& PD_IOMMUV2_MASK
)
3336 domain
->gcr3_tbl
= (void *)get_zeroed_page(GFP_ATOMIC
);
3337 if (domain
->gcr3_tbl
== NULL
)
3340 domain
->glx
= levels
;
3341 domain
->flags
|= PD_IOMMUV2_MASK
;
3342 domain
->updated
= true;
3344 update_domain(domain
);
3349 spin_unlock_irqrestore(&domain
->lock
, flags
);
3353 EXPORT_SYMBOL(amd_iommu_domain_enable_v2
);
3355 static int __flush_pasid(struct protection_domain
*domain
, int pasid
,
3356 u64 address
, bool size
)
3358 struct iommu_dev_data
*dev_data
;
3359 struct iommu_cmd cmd
;
3362 if (!(domain
->flags
& PD_IOMMUV2_MASK
))
3365 build_inv_iommu_pasid(&cmd
, domain
->id
, pasid
, address
, size
);
3368 * IOMMU TLB needs to be flushed before Device TLB to
3369 * prevent device TLB refill from IOMMU TLB
3371 for (i
= 0; i
< amd_iommus_present
; ++i
) {
3372 if (domain
->dev_iommu
[i
] == 0)
3375 ret
= iommu_queue_command(amd_iommus
[i
], &cmd
);
3380 /* Wait until IOMMU TLB flushes are complete */
3381 domain_flush_complete(domain
);
3383 /* Now flush device TLBs */
3384 list_for_each_entry(dev_data
, &domain
->dev_list
, list
) {
3385 struct amd_iommu
*iommu
;
3388 BUG_ON(!dev_data
->ats
.enabled
);
3390 qdep
= dev_data
->ats
.qdep
;
3391 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
3393 build_inv_iotlb_pasid(&cmd
, dev_data
->devid
, pasid
,
3394 qdep
, address
, size
);
3396 ret
= iommu_queue_command(iommu
, &cmd
);
3401 /* Wait until all device TLBs are flushed */
3402 domain_flush_complete(domain
);
3411 static int __amd_iommu_flush_page(struct protection_domain
*domain
, int pasid
,
3414 INC_STATS_COUNTER(invalidate_iotlb
);
3416 return __flush_pasid(domain
, pasid
, address
, false);
3419 int amd_iommu_flush_page(struct iommu_domain
*dom
, int pasid
,
3422 struct protection_domain
*domain
= dom
->priv
;
3423 unsigned long flags
;
3426 spin_lock_irqsave(&domain
->lock
, flags
);
3427 ret
= __amd_iommu_flush_page(domain
, pasid
, address
);
3428 spin_unlock_irqrestore(&domain
->lock
, flags
);
3432 EXPORT_SYMBOL(amd_iommu_flush_page
);
3434 static int __amd_iommu_flush_tlb(struct protection_domain
*domain
, int pasid
)
3436 INC_STATS_COUNTER(invalidate_iotlb_all
);
3438 return __flush_pasid(domain
, pasid
, CMD_INV_IOMMU_ALL_PAGES_ADDRESS
,
3442 int amd_iommu_flush_tlb(struct iommu_domain
*dom
, int pasid
)
3444 struct protection_domain
*domain
= dom
->priv
;
3445 unsigned long flags
;
3448 spin_lock_irqsave(&domain
->lock
, flags
);
3449 ret
= __amd_iommu_flush_tlb(domain
, pasid
);
3450 spin_unlock_irqrestore(&domain
->lock
, flags
);
3454 EXPORT_SYMBOL(amd_iommu_flush_tlb
);
3456 static u64
*__get_gcr3_pte(u64
*root
, int level
, int pasid
, bool alloc
)
3463 index
= (pasid
>> (9 * level
)) & 0x1ff;
3469 if (!(*pte
& GCR3_VALID
)) {
3473 root
= (void *)get_zeroed_page(GFP_ATOMIC
);
3477 *pte
= __pa(root
) | GCR3_VALID
;
3480 root
= __va(*pte
& PAGE_MASK
);
3488 static int __set_gcr3(struct protection_domain
*domain
, int pasid
,
3493 if (domain
->mode
!= PAGE_MODE_NONE
)
3496 pte
= __get_gcr3_pte(domain
->gcr3_tbl
, domain
->glx
, pasid
, true);
3500 *pte
= (cr3
& PAGE_MASK
) | GCR3_VALID
;
3502 return __amd_iommu_flush_tlb(domain
, pasid
);
3505 static int __clear_gcr3(struct protection_domain
*domain
, int pasid
)
3509 if (domain
->mode
!= PAGE_MODE_NONE
)
3512 pte
= __get_gcr3_pte(domain
->gcr3_tbl
, domain
->glx
, pasid
, false);
3518 return __amd_iommu_flush_tlb(domain
, pasid
);
3521 int amd_iommu_domain_set_gcr3(struct iommu_domain
*dom
, int pasid
,
3524 struct protection_domain
*domain
= dom
->priv
;
3525 unsigned long flags
;
3528 spin_lock_irqsave(&domain
->lock
, flags
);
3529 ret
= __set_gcr3(domain
, pasid
, cr3
);
3530 spin_unlock_irqrestore(&domain
->lock
, flags
);
3534 EXPORT_SYMBOL(amd_iommu_domain_set_gcr3
);
3536 int amd_iommu_domain_clear_gcr3(struct iommu_domain
*dom
, int pasid
)
3538 struct protection_domain
*domain
= dom
->priv
;
3539 unsigned long flags
;
3542 spin_lock_irqsave(&domain
->lock
, flags
);
3543 ret
= __clear_gcr3(domain
, pasid
);
3544 spin_unlock_irqrestore(&domain
->lock
, flags
);
3548 EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3
);
3550 int amd_iommu_complete_ppr(struct pci_dev
*pdev
, int pasid
,
3551 int status
, int tag
)
3553 struct iommu_dev_data
*dev_data
;
3554 struct amd_iommu
*iommu
;
3555 struct iommu_cmd cmd
;
3557 INC_STATS_COUNTER(complete_ppr
);
3559 dev_data
= get_dev_data(&pdev
->dev
);
3560 iommu
= amd_iommu_rlookup_table
[dev_data
->devid
];
3562 build_complete_ppr(&cmd
, dev_data
->devid
, pasid
, status
,
3563 tag
, dev_data
->pri_tlp
);
3565 return iommu_queue_command(iommu
, &cmd
);
3567 EXPORT_SYMBOL(amd_iommu_complete_ppr
);
3569 struct iommu_domain
*amd_iommu_get_v2_domain(struct pci_dev
*pdev
)
3571 struct protection_domain
*domain
;
3573 domain
= get_domain(&pdev
->dev
);
3577 /* Only return IOMMUv2 domains */
3578 if (!(domain
->flags
& PD_IOMMUV2_MASK
))
3581 return domain
->iommu_domain
;
3583 EXPORT_SYMBOL(amd_iommu_get_v2_domain
);
3585 void amd_iommu_enable_device_erratum(struct pci_dev
*pdev
, u32 erratum
)
3587 struct iommu_dev_data
*dev_data
;
3589 if (!amd_iommu_v2_supported())
3592 dev_data
= get_dev_data(&pdev
->dev
);
3593 dev_data
->errata
|= (1 << erratum
);
3595 EXPORT_SYMBOL(amd_iommu_enable_device_erratum
);
3597 int amd_iommu_device_info(struct pci_dev
*pdev
,
3598 struct amd_iommu_device_info
*info
)
3603 if (pdev
== NULL
|| info
== NULL
)
3606 if (!amd_iommu_v2_supported())
3609 memset(info
, 0, sizeof(*info
));
3611 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_ATS
);
3613 info
->flags
|= AMD_IOMMU_DEVICE_FLAG_ATS_SUP
;
3615 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_PRI
);
3617 info
->flags
|= AMD_IOMMU_DEVICE_FLAG_PRI_SUP
;
3619 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_PASID
);
3623 max_pasids
= 1 << (9 * (amd_iommu_max_glx_val
+ 1));
3624 max_pasids
= min(max_pasids
, (1 << 20));
3626 info
->flags
|= AMD_IOMMU_DEVICE_FLAG_PASID_SUP
;
3627 info
->max_pasids
= min(pci_max_pasids(pdev
), max_pasids
);
3629 features
= pci_pasid_features(pdev
);
3630 if (features
& PCI_PASID_CAP_EXEC
)
3631 info
->flags
|= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP
;
3632 if (features
& PCI_PASID_CAP_PRIV
)
3633 info
->flags
|= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP
;
3638 EXPORT_SYMBOL(amd_iommu_device_info
);