1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
8 #define pr_fmt(fmt) "AMD-Vi: " fmt
9 #define dev_fmt(fmt) pr_fmt(fmt)
11 #include <linux/pci.h>
12 #include <linux/acpi.h>
13 #include <linux/list.h>
14 #include <linux/bitmap.h>
15 #include <linux/slab.h>
16 #include <linux/syscore_ops.h>
17 #include <linux/interrupt.h>
18 #include <linux/msi.h>
19 #include <linux/amd-iommu.h>
20 #include <linux/export.h>
21 #include <linux/kmemleak.h>
22 #include <linux/mem_encrypt.h>
23 #include <asm/pci-direct.h>
24 #include <asm/iommu.h>
26 #include <asm/msidef.h>
28 #include <asm/x86_init.h>
29 #include <asm/iommu_table.h>
30 #include <asm/io_apic.h>
31 #include <asm/irq_remapping.h>
33 #include <linux/crash_dump.h>
35 #include "amd_iommu.h"
36 #include "irq_remapping.h"
39 * definitions for the ACPI scanning code
41 #define IVRS_HEADER_LENGTH 48
43 #define ACPI_IVHD_TYPE_MAX_SUPPORTED 0x40
44 #define ACPI_IVMD_TYPE_ALL 0x20
45 #define ACPI_IVMD_TYPE 0x21
46 #define ACPI_IVMD_TYPE_RANGE 0x22
48 #define IVHD_DEV_ALL 0x01
49 #define IVHD_DEV_SELECT 0x02
50 #define IVHD_DEV_SELECT_RANGE_START 0x03
51 #define IVHD_DEV_RANGE_END 0x04
52 #define IVHD_DEV_ALIAS 0x42
53 #define IVHD_DEV_ALIAS_RANGE 0x43
54 #define IVHD_DEV_EXT_SELECT 0x46
55 #define IVHD_DEV_EXT_SELECT_RANGE 0x47
56 #define IVHD_DEV_SPECIAL 0x48
57 #define IVHD_DEV_ACPI_HID 0xf0
59 #define UID_NOT_PRESENT 0
60 #define UID_IS_INTEGER 1
61 #define UID_IS_CHARACTER 2
63 #define IVHD_SPECIAL_IOAPIC 1
64 #define IVHD_SPECIAL_HPET 2
66 #define IVHD_FLAG_HT_TUN_EN_MASK 0x01
67 #define IVHD_FLAG_PASSPW_EN_MASK 0x02
68 #define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
69 #define IVHD_FLAG_ISOC_EN_MASK 0x08
71 #define IVMD_FLAG_EXCL_RANGE 0x08
72 #define IVMD_FLAG_IW 0x04
73 #define IVMD_FLAG_IR 0x02
74 #define IVMD_FLAG_UNITY_MAP 0x01
76 #define ACPI_DEVFLAG_INITPASS 0x01
77 #define ACPI_DEVFLAG_EXTINT 0x02
78 #define ACPI_DEVFLAG_NMI 0x04
79 #define ACPI_DEVFLAG_SYSMGT1 0x10
80 #define ACPI_DEVFLAG_SYSMGT2 0x20
81 #define ACPI_DEVFLAG_LINT0 0x40
82 #define ACPI_DEVFLAG_LINT1 0x80
83 #define ACPI_DEVFLAG_ATSDIS 0x10000000
85 #define LOOP_TIMEOUT 100000
87 * ACPI table definitions
89 * These data structures are laid over the table to parse the important values
93 extern const struct iommu_ops amd_iommu_ops;
96 * structure describing one IOMMU in the ACPI table. Typically followed by one
97 * or more ivhd_entrys.
110 /* Following only valid on IVHD type 11h and 40h */
111 u64 efr_reg; /* Exact copy of MMIO_EXT_FEATURES */
113 } __attribute__((packed));
116 * A device entry describing which devices a specific IOMMU translates and
117 * which requestor ids they use.
129 } __attribute__((packed));
132 * An AMD IOMMU memory definition structure. It defines things like exclusion
133 * ranges for devices and regions that should be unity mapped.
144 } __attribute__((packed));
147 bool amd_iommu_irq_remap __read_mostly;
149 int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
150 static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE;
152 static bool amd_iommu_detected;
153 static bool __initdata amd_iommu_disabled;
154 static int amd_iommu_target_ivhd_type;
156 u16 amd_iommu_last_bdf; /* largest PCI device id we have
158 LIST_HEAD(amd_iommu_unity_map); /* a list of required unity mappings
160 bool amd_iommu_unmap_flush; /* if true, flush on every unmap */
162 LIST_HEAD(amd_iommu_list); /* list of all AMD IOMMUs in the
165 /* Array to assign indices to IOMMUs*/
166 struct amd_iommu *amd_iommus[MAX_IOMMUS];
168 /* Number of IOMMUs present in the system */
169 static int amd_iommus_present;
171 /* IOMMUs have a non-present cache? */
172 bool amd_iommu_np_cache __read_mostly;
173 bool amd_iommu_iotlb_sup __read_mostly = true;
175 u32 amd_iommu_max_pasid __read_mostly = ~0;
177 bool amd_iommu_v2_present __read_mostly;
178 static bool amd_iommu_pc_present __read_mostly;
180 bool amd_iommu_force_isolation __read_mostly;
183 * Pointer to the device table which is shared by all AMD IOMMUs
184 * it is indexed by the PCI device id or the HT unit id and contains
185 * information about the domain the device belongs to as well as the
186 * page table root pointer.
188 struct dev_table_entry *amd_iommu_dev_table;
190 * Pointer to a device table which the content of old device table
191 * will be copied to. It's only be used in kdump kernel.
193 static struct dev_table_entry *old_dev_tbl_cpy;
196 * The alias table is a driver specific data structure which contains the
197 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
198 * More than one device can share the same requestor id.
200 u16 *amd_iommu_alias_table;
203 * The rlookup table is used to find the IOMMU which is responsible
204 * for a specific device. It is also indexed by the PCI device id.
206 struct amd_iommu **amd_iommu_rlookup_table;
207 EXPORT_SYMBOL(amd_iommu_rlookup_table);
210 * This table is used to find the irq remapping table for a given device id
213 struct irq_remap_table **irq_lookup_table;
216 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
217 * to know which ones are already in use.
219 unsigned long *amd_iommu_pd_alloc_bitmap;
221 static u32 dev_table_size; /* size of the device table */
222 static u32 alias_table_size; /* size of the alias table */
223 static u32 rlookup_table_size; /* size if the rlookup table */
225 enum iommu_init_state {
236 IOMMU_CMDLINE_DISABLED,
239 /* Early ioapic and hpet maps from kernel command line */
240 #define EARLY_MAP_SIZE 4
241 static struct devid_map __initdata early_ioapic_map[EARLY_MAP_SIZE];
242 static struct devid_map __initdata early_hpet_map[EARLY_MAP_SIZE];
243 static struct acpihid_map_entry __initdata early_acpihid_map[EARLY_MAP_SIZE];
245 static int __initdata early_ioapic_map_size;
246 static int __initdata early_hpet_map_size;
247 static int __initdata early_acpihid_map_size;
249 static bool __initdata cmdline_maps;
251 static enum iommu_init_state init_state = IOMMU_START_STATE;
253 static int amd_iommu_enable_interrupts(void);
254 static int __init iommu_go_to_state(enum iommu_init_state state);
255 static void init_device_table_dma(void);
257 static bool amd_iommu_pre_enabled = true;
259 bool translation_pre_enabled(struct amd_iommu *iommu)
261 return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED);
263 EXPORT_SYMBOL(translation_pre_enabled);
265 static void clear_translation_pre_enabled(struct amd_iommu *iommu)
267 iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
270 static void init_translation_status(struct amd_iommu *iommu)
274 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
275 if (ctrl & (1<<CONTROL_IOMMU_EN))
276 iommu->flags |= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
279 static inline void update_last_devid(u16 devid)
281 if (devid > amd_iommu_last_bdf)
282 amd_iommu_last_bdf = devid;
285 static inline unsigned long tbl_size(int entry_size)
287 unsigned shift = PAGE_SHIFT +
288 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
293 int amd_iommu_get_num_iommus(void)
295 return amd_iommus_present;
298 /* Access to l1 and l2 indexed register spaces */
300 static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
304 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
305 pci_read_config_dword(iommu->dev, 0xfc, &val);
309 static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
311 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16 | 1 << 31));
312 pci_write_config_dword(iommu->dev, 0xfc, val);
313 pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
316 static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
320 pci_write_config_dword(iommu->dev, 0xf0, address);
321 pci_read_config_dword(iommu->dev, 0xf4, &val);
325 static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
327 pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
328 pci_write_config_dword(iommu->dev, 0xf4, val);
331 /****************************************************************************
333 * AMD IOMMU MMIO register space handling functions
335 * These functions are used to program the IOMMU device registers in
336 * MMIO space required for that driver.
338 ****************************************************************************/
341 * This function set the exclusion range in the IOMMU. DMA accesses to the
342 * exclusion range are passed through untranslated
344 static void iommu_set_exclusion_range(struct amd_iommu *iommu)
346 u64 start = iommu->exclusion_start & PAGE_MASK;
347 u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
350 if (!iommu->exclusion_start)
353 entry = start | MMIO_EXCL_ENABLE_MASK;
354 memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
355 &entry, sizeof(entry));
358 memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
359 &entry, sizeof(entry));
362 /* Programs the physical address of the device table into the IOMMU hardware */
363 static void iommu_set_device_table(struct amd_iommu *iommu)
367 BUG_ON(iommu->mmio_base == NULL);
369 entry = iommu_virt_to_phys(amd_iommu_dev_table);
370 entry |= (dev_table_size >> 12) - 1;
371 memcpy_toio(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET,
372 &entry, sizeof(entry));
375 /* Generic functions to enable/disable certain features of the IOMMU. */
376 static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
380 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
381 ctrl |= (1ULL << bit);
382 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
385 static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
389 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
390 ctrl &= ~(1ULL << bit);
391 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
394 static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
398 ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
399 ctrl &= ~CTRL_INV_TO_MASK;
400 ctrl |= (timeout << CONTROL_INV_TIMEOUT) & CTRL_INV_TO_MASK;
401 writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
404 /* Function to enable the hardware */
405 static void iommu_enable(struct amd_iommu *iommu)
407 iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
410 static void iommu_disable(struct amd_iommu *iommu)
412 if (!iommu->mmio_base)
415 /* Disable command buffer */
416 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
418 /* Disable event logging and event interrupts */
419 iommu_feature_disable(iommu, CONTROL_EVT_INT_EN);
420 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
422 /* Disable IOMMU GA_LOG */
423 iommu_feature_disable(iommu, CONTROL_GALOG_EN);
424 iommu_feature_disable(iommu, CONTROL_GAINT_EN);
426 /* Disable IOMMU hardware itself */
427 iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
431 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
432 * the system has one.
434 static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
436 if (!request_mem_region(address, end, "amd_iommu")) {
437 pr_err("Can not reserve memory region %llx-%llx for mmio\n",
439 pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
443 return (u8 __iomem *)ioremap(address, end);
446 static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
448 if (iommu->mmio_base)
449 iounmap(iommu->mmio_base);
450 release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
453 static inline u32 get_ivhd_header_size(struct ivhd_header *h)
469 /****************************************************************************
471 * The functions below belong to the first pass of AMD IOMMU ACPI table
472 * parsing. In this pass we try to find out the highest device id this
473 * code has to handle. Upon this information the size of the shared data
474 * structures is determined later.
476 ****************************************************************************/
479 * This function calculates the length of a given IVHD entry
481 static inline int ivhd_entry_length(u8 *ivhd)
483 u32 type = ((struct ivhd_entry *)ivhd)->type;
486 return 0x04 << (*ivhd >> 6);
487 } else if (type == IVHD_DEV_ACPI_HID) {
488 /* For ACPI_HID, offset 21 is uid len */
489 return *((u8 *)ivhd + 21) + 22;
495 * After reading the highest device id from the IOMMU PCI capability header
496 * this function looks if there is a higher device id defined in the ACPI table
498 static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
500 u8 *p = (void *)h, *end = (void *)h;
501 struct ivhd_entry *dev;
503 u32 ivhd_size = get_ivhd_header_size(h);
506 pr_err("Unsupported IVHD type %#x\n", h->type);
514 dev = (struct ivhd_entry *)p;
517 /* Use maximum BDF value for DEV_ALL */
518 update_last_devid(0xffff);
520 case IVHD_DEV_SELECT:
521 case IVHD_DEV_RANGE_END:
523 case IVHD_DEV_EXT_SELECT:
524 /* all the above subfield types refer to device ids */
525 update_last_devid(dev->devid);
530 p += ivhd_entry_length(p);
538 static int __init check_ivrs_checksum(struct acpi_table_header *table)
541 u8 checksum = 0, *p = (u8 *)table;
543 for (i = 0; i < table->length; ++i)
546 /* ACPI table corrupt */
547 pr_err(FW_BUG "IVRS invalid checksum\n");
555 * Iterate over all IVHD entries in the ACPI table and find the highest device
556 * id which we need to handle. This is the first of three functions which parse
557 * the ACPI table. So we check the checksum here.
559 static int __init find_last_devid_acpi(struct acpi_table_header *table)
561 u8 *p = (u8 *)table, *end = (u8 *)table;
562 struct ivhd_header *h;
564 p += IVRS_HEADER_LENGTH;
566 end += table->length;
568 h = (struct ivhd_header *)p;
569 if (h->type == amd_iommu_target_ivhd_type) {
570 int ret = find_last_devid_from_ivhd(h);
582 /****************************************************************************
584 * The following functions belong to the code path which parses the ACPI table
585 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
586 * data structures, initialize the device/alias/rlookup table and also
587 * basically initialize the hardware.
589 ****************************************************************************/
592 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
593 * write commands to that buffer later and the IOMMU will execute them
596 static int __init alloc_command_buffer(struct amd_iommu *iommu)
598 iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
599 get_order(CMD_BUFFER_SIZE));
601 return iommu->cmd_buf ? 0 : -ENOMEM;
605 * This function resets the command buffer if the IOMMU stopped fetching
608 void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
610 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
612 writel(0x00, iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
613 writel(0x00, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
614 iommu->cmd_buf_head = 0;
615 iommu->cmd_buf_tail = 0;
617 iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
621 * This function writes the command buffer address to the hardware and
624 static void iommu_enable_command_buffer(struct amd_iommu *iommu)
628 BUG_ON(iommu->cmd_buf == NULL);
630 entry = iommu_virt_to_phys(iommu->cmd_buf);
631 entry |= MMIO_CMD_SIZE_512;
633 memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
634 &entry, sizeof(entry));
636 amd_iommu_reset_cmd_buffer(iommu);
640 * This function disables the command buffer
642 static void iommu_disable_command_buffer(struct amd_iommu *iommu)
644 iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
647 static void __init free_command_buffer(struct amd_iommu *iommu)
649 free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
652 /* allocates the memory where the IOMMU will log its events to */
653 static int __init alloc_event_buffer(struct amd_iommu *iommu)
655 iommu->evt_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
656 get_order(EVT_BUFFER_SIZE));
658 return iommu->evt_buf ? 0 : -ENOMEM;
661 static void iommu_enable_event_buffer(struct amd_iommu *iommu)
665 BUG_ON(iommu->evt_buf == NULL);
667 entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
669 memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
670 &entry, sizeof(entry));
672 /* set head and tail to zero manually */
673 writel(0x00, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
674 writel(0x00, iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
676 iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
680 * This function disables the event log buffer
682 static void iommu_disable_event_buffer(struct amd_iommu *iommu)
684 iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
687 static void __init free_event_buffer(struct amd_iommu *iommu)
689 free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
692 /* allocates the memory where the IOMMU will log its events to */
693 static int __init alloc_ppr_log(struct amd_iommu *iommu)
695 iommu->ppr_log = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
696 get_order(PPR_LOG_SIZE));
698 return iommu->ppr_log ? 0 : -ENOMEM;
701 static void iommu_enable_ppr_log(struct amd_iommu *iommu)
705 if (iommu->ppr_log == NULL)
708 entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
710 memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
711 &entry, sizeof(entry));
713 /* set head and tail to zero manually */
714 writel(0x00, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
715 writel(0x00, iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
717 iommu_feature_enable(iommu, CONTROL_PPRLOG_EN);
718 iommu_feature_enable(iommu, CONTROL_PPR_EN);
721 static void __init free_ppr_log(struct amd_iommu *iommu)
723 if (iommu->ppr_log == NULL)
726 free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
729 static void free_ga_log(struct amd_iommu *iommu)
731 #ifdef CONFIG_IRQ_REMAP
733 free_pages((unsigned long)iommu->ga_log,
734 get_order(GA_LOG_SIZE));
735 if (iommu->ga_log_tail)
736 free_pages((unsigned long)iommu->ga_log_tail,
741 static int iommu_ga_log_enable(struct amd_iommu *iommu)
743 #ifdef CONFIG_IRQ_REMAP
749 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
751 /* Check if already running */
752 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
755 iommu_feature_enable(iommu, CONTROL_GAINT_EN);
756 iommu_feature_enable(iommu, CONTROL_GALOG_EN);
758 for (i = 0; i < LOOP_TIMEOUT; ++i) {
759 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
760 if (status & (MMIO_STATUS_GALOG_RUN_MASK))
764 if (i >= LOOP_TIMEOUT)
766 #endif /* CONFIG_IRQ_REMAP */
770 #ifdef CONFIG_IRQ_REMAP
771 static int iommu_init_ga_log(struct amd_iommu *iommu)
775 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
778 iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
779 get_order(GA_LOG_SIZE));
783 iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
785 if (!iommu->ga_log_tail)
788 entry = iommu_virt_to_phys(iommu->ga_log) | GA_LOG_SIZE_512;
789 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_BASE_OFFSET,
790 &entry, sizeof(entry));
791 entry = (iommu_virt_to_phys(iommu->ga_log_tail) &
792 (BIT_ULL(52)-1)) & ~7ULL;
793 memcpy_toio(iommu->mmio_base + MMIO_GA_LOG_TAIL_OFFSET,
794 &entry, sizeof(entry));
795 writel(0x00, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
796 writel(0x00, iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
803 #endif /* CONFIG_IRQ_REMAP */
805 static int iommu_init_ga(struct amd_iommu *iommu)
809 #ifdef CONFIG_IRQ_REMAP
810 /* Note: We have already checked GASup from IVRS table.
811 * Now, we need to make sure that GAMSup is set.
813 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
814 !iommu_feature(iommu, FEATURE_GAM_VAPIC))
815 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
817 ret = iommu_init_ga_log(iommu);
818 #endif /* CONFIG_IRQ_REMAP */
823 static void iommu_enable_xt(struct amd_iommu *iommu)
825 #ifdef CONFIG_IRQ_REMAP
827 * XT mode (32-bit APIC destination ID) requires
828 * GA mode (128-bit IRTE support) as a prerequisite.
830 if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir) &&
831 amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
832 iommu_feature_enable(iommu, CONTROL_XT_EN);
833 #endif /* CONFIG_IRQ_REMAP */
836 static void iommu_enable_gt(struct amd_iommu *iommu)
838 if (!iommu_feature(iommu, FEATURE_GT))
841 iommu_feature_enable(iommu, CONTROL_GT_EN);
844 /* sets a specific bit in the device table entry. */
845 static void set_dev_entry_bit(u16 devid, u8 bit)
847 int i = (bit >> 6) & 0x03;
848 int _bit = bit & 0x3f;
850 amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
853 static int get_dev_entry_bit(u16 devid, u8 bit)
855 int i = (bit >> 6) & 0x03;
856 int _bit = bit & 0x3f;
858 return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
862 static bool copy_device_table(void)
864 u64 int_ctl, int_tab_len, entry = 0, last_entry = 0;
865 struct dev_table_entry *old_devtb = NULL;
866 u32 lo, hi, devid, old_devtb_size;
867 phys_addr_t old_devtb_phys;
868 struct amd_iommu *iommu;
869 u16 dom_id, dte_v, irq_v;
873 if (!amd_iommu_pre_enabled)
876 pr_warn("Translation is already enabled - trying to copy translation structures\n");
877 for_each_iommu(iommu) {
878 /* All IOMMUs should use the same device table with the same size */
879 lo = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET);
880 hi = readl(iommu->mmio_base + MMIO_DEV_TABLE_OFFSET + 4);
881 entry = (((u64) hi) << 32) + lo;
882 if (last_entry && last_entry != entry) {
883 pr_err("IOMMU:%d should use the same dev table as others!\n",
889 old_devtb_size = ((entry & ~PAGE_MASK) + 1) << 12;
890 if (old_devtb_size != dev_table_size) {
891 pr_err("The device table size of IOMMU:%d is not expected!\n",
898 * When SME is enabled in the first kernel, the entry includes the
899 * memory encryption mask(sme_me_mask), we must remove the memory
900 * encryption mask to obtain the true physical address in kdump kernel.
902 old_devtb_phys = __sme_clr(entry) & PAGE_MASK;
904 if (old_devtb_phys >= 0x100000000ULL) {
905 pr_err("The address of old device table is above 4G, not trustworthy!\n");
908 old_devtb = (sme_active() && is_kdump_kernel())
909 ? (__force void *)ioremap_encrypted(old_devtb_phys,
911 : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB);
916 gfp_flag = GFP_KERNEL | __GFP_ZERO | GFP_DMA32;
917 old_dev_tbl_cpy = (void *)__get_free_pages(gfp_flag,
918 get_order(dev_table_size));
919 if (old_dev_tbl_cpy == NULL) {
920 pr_err("Failed to allocate memory for copying old device table!\n");
924 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
925 old_dev_tbl_cpy[devid] = old_devtb[devid];
926 dom_id = old_devtb[devid].data[1] & DEV_DOMID_MASK;
927 dte_v = old_devtb[devid].data[0] & DTE_FLAG_V;
929 if (dte_v && dom_id) {
930 old_dev_tbl_cpy[devid].data[0] = old_devtb[devid].data[0];
931 old_dev_tbl_cpy[devid].data[1] = old_devtb[devid].data[1];
932 __set_bit(dom_id, amd_iommu_pd_alloc_bitmap);
933 /* If gcr3 table existed, mask it out */
934 if (old_devtb[devid].data[0] & DTE_FLAG_GV) {
935 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
936 tmp |= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
937 old_dev_tbl_cpy[devid].data[1] &= ~tmp;
938 tmp = DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A;
940 old_dev_tbl_cpy[devid].data[0] &= ~tmp;
944 irq_v = old_devtb[devid].data[2] & DTE_IRQ_REMAP_ENABLE;
945 int_ctl = old_devtb[devid].data[2] & DTE_IRQ_REMAP_INTCTL_MASK;
946 int_tab_len = old_devtb[devid].data[2] & DTE_IRQ_TABLE_LEN_MASK;
947 if (irq_v && (int_ctl || int_tab_len)) {
948 if ((int_ctl != DTE_IRQ_REMAP_INTCTL) ||
949 (int_tab_len != DTE_IRQ_TABLE_LEN)) {
950 pr_err("Wrong old irq remapping flag: %#x\n", devid);
954 old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2];
962 void amd_iommu_apply_erratum_63(u16 devid)
966 sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
967 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
970 set_dev_entry_bit(devid, DEV_ENTRY_IW);
973 /* Writes the specific IOMMU for a device into the rlookup table */
974 static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid)
976 amd_iommu_rlookup_table[devid] = iommu;
980 * This function takes the device specific flags read from the ACPI
981 * table and sets up the device table entry with that information
983 static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
984 u16 devid, u32 flags, u32 ext_flags)
986 if (flags & ACPI_DEVFLAG_INITPASS)
987 set_dev_entry_bit(devid, DEV_ENTRY_INIT_PASS);
988 if (flags & ACPI_DEVFLAG_EXTINT)
989 set_dev_entry_bit(devid, DEV_ENTRY_EINT_PASS);
990 if (flags & ACPI_DEVFLAG_NMI)
991 set_dev_entry_bit(devid, DEV_ENTRY_NMI_PASS);
992 if (flags & ACPI_DEVFLAG_SYSMGT1)
993 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1);
994 if (flags & ACPI_DEVFLAG_SYSMGT2)
995 set_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2);
996 if (flags & ACPI_DEVFLAG_LINT0)
997 set_dev_entry_bit(devid, DEV_ENTRY_LINT0_PASS);
998 if (flags & ACPI_DEVFLAG_LINT1)
999 set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS);
1001 amd_iommu_apply_erratum_63(devid);
1003 set_iommu_for_device(iommu, devid);
1006 int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
1008 struct devid_map *entry;
1009 struct list_head *list;
1011 if (type == IVHD_SPECIAL_IOAPIC)
1013 else if (type == IVHD_SPECIAL_HPET)
1018 list_for_each_entry(entry, list, list) {
1019 if (!(entry->id == id && entry->cmd_line))
1022 pr_info("Command-line override present for %s id %d - ignoring\n",
1023 type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
1025 *devid = entry->devid;
1030 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1035 entry->devid = *devid;
1036 entry->cmd_line = cmd_line;
1038 list_add_tail(&entry->list, list);
1043 static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
1046 struct acpihid_map_entry *entry;
1047 struct list_head *list = &acpihid_map;
1049 list_for_each_entry(entry, list, list) {
1050 if (strcmp(entry->hid, hid) ||
1051 (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
1055 pr_info("Command-line override for hid:%s uid:%s\n",
1057 *devid = entry->devid;
1061 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1065 memcpy(entry->uid, uid, strlen(uid));
1066 memcpy(entry->hid, hid, strlen(hid));
1067 entry->devid = *devid;
1068 entry->cmd_line = cmd_line;
1069 entry->root_devid = (entry->devid & (~0x7));
1071 pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n",
1072 entry->cmd_line ? "cmd" : "ivrs",
1073 entry->hid, entry->uid, entry->root_devid);
1075 list_add_tail(&entry->list, list);
1079 static int __init add_early_maps(void)
1083 for (i = 0; i < early_ioapic_map_size; ++i) {
1084 ret = add_special_device(IVHD_SPECIAL_IOAPIC,
1085 early_ioapic_map[i].id,
1086 &early_ioapic_map[i].devid,
1087 early_ioapic_map[i].cmd_line);
1092 for (i = 0; i < early_hpet_map_size; ++i) {
1093 ret = add_special_device(IVHD_SPECIAL_HPET,
1094 early_hpet_map[i].id,
1095 &early_hpet_map[i].devid,
1096 early_hpet_map[i].cmd_line);
1101 for (i = 0; i < early_acpihid_map_size; ++i) {
1102 ret = add_acpi_hid_device(early_acpihid_map[i].hid,
1103 early_acpihid_map[i].uid,
1104 &early_acpihid_map[i].devid,
1105 early_acpihid_map[i].cmd_line);
1114 * Reads the device exclusion range from ACPI and initializes the IOMMU with
1117 static void __init set_device_exclusion_range(u16 devid, struct ivmd_header *m)
1119 if (!(m->flags & IVMD_FLAG_EXCL_RANGE))
1123 * Treat per-device exclusion ranges as r/w unity-mapped regions
1124 * since some buggy BIOSes might lead to the overwritten exclusion
1125 * range (exclusion_start and exclusion_length members). This
1126 * happens when there are multiple exclusion ranges (IVMD entries)
1127 * defined in ACPI table.
1129 m->flags = (IVMD_FLAG_IW | IVMD_FLAG_IR | IVMD_FLAG_UNITY_MAP);
1133 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1134 * initializes the hardware and our data structures with it.
1136 static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
1137 struct ivhd_header *h)
1140 u8 *end = p, flags = 0;
1141 u16 devid = 0, devid_start = 0, devid_to = 0;
1142 u32 dev_i, ext_flags = 0;
1144 struct ivhd_entry *e;
1149 ret = add_early_maps();
1153 amd_iommu_apply_ivrs_quirks();
1156 * First save the recommended feature enable bits from ACPI
1158 iommu->acpi_flags = h->flags;
1161 * Done. Now parse the device entries
1163 ivhd_size = get_ivhd_header_size(h);
1165 pr_err("Unsupported IVHD type %#x\n", h->type);
1175 e = (struct ivhd_entry *)p;
1179 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e->flags);
1181 for (dev_i = 0; dev_i <= amd_iommu_last_bdf; ++dev_i)
1182 set_dev_entry_from_acpi(iommu, dev_i, e->flags, 0);
1184 case IVHD_DEV_SELECT:
1186 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1188 PCI_BUS_NUM(e->devid),
1194 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1196 case IVHD_DEV_SELECT_RANGE_START:
1198 DUMP_printk(" DEV_SELECT_RANGE_START\t "
1199 "devid: %02x:%02x.%x flags: %02x\n",
1200 PCI_BUS_NUM(e->devid),
1205 devid_start = e->devid;
1210 case IVHD_DEV_ALIAS:
1212 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1213 "flags: %02x devid_to: %02x:%02x.%x\n",
1214 PCI_BUS_NUM(e->devid),
1218 PCI_BUS_NUM(e->ext >> 8),
1219 PCI_SLOT(e->ext >> 8),
1220 PCI_FUNC(e->ext >> 8));
1223 devid_to = e->ext >> 8;
1224 set_dev_entry_from_acpi(iommu, devid , e->flags, 0);
1225 set_dev_entry_from_acpi(iommu, devid_to, e->flags, 0);
1226 amd_iommu_alias_table[devid] = devid_to;
1228 case IVHD_DEV_ALIAS_RANGE:
1230 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
1231 "devid: %02x:%02x.%x flags: %02x "
1232 "devid_to: %02x:%02x.%x\n",
1233 PCI_BUS_NUM(e->devid),
1237 PCI_BUS_NUM(e->ext >> 8),
1238 PCI_SLOT(e->ext >> 8),
1239 PCI_FUNC(e->ext >> 8));
1241 devid_start = e->devid;
1243 devid_to = e->ext >> 8;
1247 case IVHD_DEV_EXT_SELECT:
1249 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1250 "flags: %02x ext: %08x\n",
1251 PCI_BUS_NUM(e->devid),
1257 set_dev_entry_from_acpi(iommu, devid, e->flags,
1260 case IVHD_DEV_EXT_SELECT_RANGE:
1262 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
1263 "%02x:%02x.%x flags: %02x ext: %08x\n",
1264 PCI_BUS_NUM(e->devid),
1269 devid_start = e->devid;
1274 case IVHD_DEV_RANGE_END:
1276 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
1277 PCI_BUS_NUM(e->devid),
1279 PCI_FUNC(e->devid));
1282 for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
1284 amd_iommu_alias_table[dev_i] = devid_to;
1285 set_dev_entry_from_acpi(iommu,
1286 devid_to, flags, ext_flags);
1288 set_dev_entry_from_acpi(iommu, dev_i,
1292 case IVHD_DEV_SPECIAL: {
1298 handle = e->ext & 0xff;
1299 devid = (e->ext >> 8) & 0xffff;
1300 type = (e->ext >> 24) & 0xff;
1302 if (type == IVHD_SPECIAL_IOAPIC)
1304 else if (type == IVHD_SPECIAL_HPET)
1309 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1315 ret = add_special_device(type, handle, &devid, false);
1320 * add_special_device might update the devid in case a
1321 * command-line override is present. So call
1322 * set_dev_entry_from_acpi after add_special_device.
1324 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1328 case IVHD_DEV_ACPI_HID: {
1330 u8 hid[ACPIHID_HID_LEN];
1331 u8 uid[ACPIHID_UID_LEN];
1334 if (h->type != 0x40) {
1335 pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1340 memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1341 hid[ACPIHID_HID_LEN - 1] = '\0';
1344 pr_err(FW_BUG "Invalid HID.\n");
1350 case UID_NOT_PRESENT:
1353 pr_warn(FW_BUG "Invalid UID length.\n");
1356 case UID_IS_INTEGER:
1358 sprintf(uid, "%d", e->uid);
1361 case UID_IS_CHARACTER:
1363 memcpy(uid, &e->uid, e->uidl);
1364 uid[e->uidl] = '\0';
1372 DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1380 ret = add_acpi_hid_device(hid, uid, &devid, false);
1385 * add_special_device might update the devid in case a
1386 * command-line override is present. So call
1387 * set_dev_entry_from_acpi after add_special_device.
1389 set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1397 p += ivhd_entry_length(p);
1403 static void __init free_iommu_one(struct amd_iommu *iommu)
1405 free_command_buffer(iommu);
1406 free_event_buffer(iommu);
1407 free_ppr_log(iommu);
1409 iommu_unmap_mmio_space(iommu);
1412 static void __init free_iommu_all(void)
1414 struct amd_iommu *iommu, *next;
1416 for_each_iommu_safe(iommu, next) {
1417 list_del(&iommu->list);
1418 free_iommu_one(iommu);
1424 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1426 * BIOS should disable L2B micellaneous clock gating by setting
1427 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1429 static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
1433 if ((boot_cpu_data.x86 != 0x15) ||
1434 (boot_cpu_data.x86_model < 0x10) ||
1435 (boot_cpu_data.x86_model > 0x1f))
1438 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1439 pci_read_config_dword(iommu->dev, 0xf4, &value);
1444 /* Select NB indirect register 0x90 and enable writing */
1445 pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1447 pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1448 pci_info(iommu->dev, "Applying erratum 746 workaround\n");
1450 /* Clear the enable writing bit */
1451 pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1455 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1457 * BIOS should enable ATS write permission check by setting
1458 * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1460 static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1464 if ((boot_cpu_data.x86 != 0x15) ||
1465 (boot_cpu_data.x86_model < 0x30) ||
1466 (boot_cpu_data.x86_model > 0x3f))
1469 /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1470 value = iommu_read_l2(iommu, 0x47);
1475 /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1476 iommu_write_l2(iommu, 0x47, value | BIT(0));
1478 pci_info(iommu->dev, "Applying ATS write check workaround\n");
1482 * This function clues the initialization function for one IOMMU
1483 * together and also allocates the command buffer and programs the
1484 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1486 static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1490 raw_spin_lock_init(&iommu->lock);
1492 /* Add IOMMU to internal data structures */
1493 list_add_tail(&iommu->list, &amd_iommu_list);
1494 iommu->index = amd_iommus_present++;
1496 if (unlikely(iommu->index >= MAX_IOMMUS)) {
1497 WARN(1, "System has more IOMMUs than supported by this driver\n");
1501 /* Index is fine - add IOMMU to the array */
1502 amd_iommus[iommu->index] = iommu;
1505 * Copy data from ACPI table entry to the iommu struct
1507 iommu->devid = h->devid;
1508 iommu->cap_ptr = h->cap_ptr;
1509 iommu->pci_seg = h->pci_seg;
1510 iommu->mmio_phys = h->mmio_phys;
1514 /* Check if IVHD EFR contains proper max banks/counters */
1515 if ((h->efr_attr != 0) &&
1516 ((h->efr_attr & (0xF << 13)) != 0) &&
1517 ((h->efr_attr & (0x3F << 17)) != 0))
1518 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1520 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1521 if (((h->efr_attr & (0x1 << IOMMU_FEAT_GASUP_SHIFT)) == 0))
1522 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1526 if (h->efr_reg & (1 << 9))
1527 iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1529 iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1530 if (((h->efr_reg & (0x1 << IOMMU_EFR_GASUP_SHIFT)) == 0))
1531 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY;
1533 * Note: Since iommu_update_intcapxt() leverages
1534 * the IOMMU MMIO access to MSI capability block registers
1535 * for MSI address lo/hi/data, we need to check both
1536 * EFR[XtSup] and EFR[MsiCapMmioSup] for x2APIC support.
1538 if ((h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT)) &&
1539 (h->efr_reg & BIT(IOMMU_EFR_MSICAPMMIOSUP_SHIFT)))
1540 amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE;
1546 iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1547 iommu->mmio_phys_end);
1548 if (!iommu->mmio_base)
1551 if (alloc_command_buffer(iommu))
1554 if (alloc_event_buffer(iommu))
1557 iommu->int_enabled = false;
1559 init_translation_status(iommu);
1560 if (translation_pre_enabled(iommu) && !is_kdump_kernel()) {
1561 iommu_disable(iommu);
1562 clear_translation_pre_enabled(iommu);
1563 pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n",
1566 if (amd_iommu_pre_enabled)
1567 amd_iommu_pre_enabled = translation_pre_enabled(iommu);
1569 ret = init_iommu_from_acpi(iommu, h);
1573 ret = amd_iommu_create_irq_domain(iommu);
1578 * Make sure IOMMU is not considered to translate itself. The IVRS
1579 * table tells us so, but this is a lie!
1581 amd_iommu_rlookup_table[iommu->devid] = NULL;
1587 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1588 * @ivrs Pointer to the IVRS header
1590 * This function search through all IVDB of the maximum supported IVHD
1592 static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1594 u8 *base = (u8 *)ivrs;
1595 struct ivhd_header *ivhd = (struct ivhd_header *)
1596 (base + IVRS_HEADER_LENGTH);
1597 u8 last_type = ivhd->type;
1598 u16 devid = ivhd->devid;
1600 while (((u8 *)ivhd - base < ivrs->length) &&
1601 (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1602 u8 *p = (u8 *) ivhd;
1604 if (ivhd->devid == devid)
1605 last_type = ivhd->type;
1606 ivhd = (struct ivhd_header *)(p + ivhd->length);
1613 * Iterates over all IOMMU entries in the ACPI table, allocates the
1614 * IOMMU structure and initializes it with init_iommu_one()
1616 static int __init init_iommu_all(struct acpi_table_header *table)
1618 u8 *p = (u8 *)table, *end = (u8 *)table;
1619 struct ivhd_header *h;
1620 struct amd_iommu *iommu;
1623 end += table->length;
1624 p += IVRS_HEADER_LENGTH;
1627 h = (struct ivhd_header *)p;
1628 if (*p == amd_iommu_target_ivhd_type) {
1630 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
1631 "seg: %d flags: %01x info %04x\n",
1632 PCI_BUS_NUM(h->devid), PCI_SLOT(h->devid),
1633 PCI_FUNC(h->devid), h->cap_ptr,
1634 h->pci_seg, h->flags, h->info);
1635 DUMP_printk(" mmio-addr: %016llx\n",
1638 iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
1642 ret = init_iommu_one(iommu, h);
1654 static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
1655 u8 fxn, u64 *value, bool is_write);
1657 static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1659 struct pci_dev *pdev = iommu->dev;
1660 u64 val = 0xabcd, val2 = 0, save_reg = 0;
1662 if (!iommu_feature(iommu, FEATURE_PC))
1665 amd_iommu_pc_present = true;
1667 /* save the value to restore, if writable */
1668 if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, false))
1671 /* Check if the performance counters can be written to */
1672 if ((iommu_pc_get_set_reg(iommu, 0, 0, 0, &val, true)) ||
1673 (iommu_pc_get_set_reg(iommu, 0, 0, 0, &val2, false)) ||
1678 if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, true))
1681 pci_info(pdev, "IOMMU performance counters supported\n");
1683 val = readl(iommu->mmio_base + MMIO_CNTR_CONF_OFFSET);
1684 iommu->max_banks = (u8) ((val >> 12) & 0x3f);
1685 iommu->max_counters = (u8) ((val >> 7) & 0xf);
1690 pci_err(pdev, "Unable to read/write to IOMMU perf counter.\n");
1691 amd_iommu_pc_present = false;
1695 static ssize_t amd_iommu_show_cap(struct device *dev,
1696 struct device_attribute *attr,
1699 struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1700 return sprintf(buf, "%x\n", iommu->cap);
1702 static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1704 static ssize_t amd_iommu_show_features(struct device *dev,
1705 struct device_attribute *attr,
1708 struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1709 return sprintf(buf, "%llx\n", iommu->features);
1711 static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1713 static struct attribute *amd_iommu_attrs[] = {
1715 &dev_attr_features.attr,
1719 static struct attribute_group amd_iommu_group = {
1720 .name = "amd-iommu",
1721 .attrs = amd_iommu_attrs,
1724 static const struct attribute_group *amd_iommu_groups[] = {
1729 static int __init iommu_init_pci(struct amd_iommu *iommu)
1731 int cap_ptr = iommu->cap_ptr;
1734 iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
1735 iommu->devid & 0xff);
1739 /* Prevent binding other PCI device drivers to IOMMU devices */
1740 iommu->dev->match_driver = false;
1742 pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1745 if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1746 amd_iommu_iotlb_sup = false;
1748 /* read extended feature bits */
1749 iommu->features = readq(iommu->mmio_base + MMIO_EXT_FEATURES);
1751 if (iommu_feature(iommu, FEATURE_GT)) {
1756 pasmax = iommu->features & FEATURE_PASID_MASK;
1757 pasmax >>= FEATURE_PASID_SHIFT;
1758 max_pasid = (1 << (pasmax + 1)) - 1;
1760 amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1762 BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
1764 glxval = iommu->features & FEATURE_GLXVAL_MASK;
1765 glxval >>= FEATURE_GLXVAL_SHIFT;
1767 if (amd_iommu_max_glx_val == -1)
1768 amd_iommu_max_glx_val = glxval;
1770 amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1773 if (iommu_feature(iommu, FEATURE_GT) &&
1774 iommu_feature(iommu, FEATURE_PPR)) {
1775 iommu->is_iommu_v2 = true;
1776 amd_iommu_v2_present = true;
1779 if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1782 ret = iommu_init_ga(iommu);
1786 if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1787 amd_iommu_np_cache = true;
1789 init_iommu_perf_ctr(iommu);
1791 if (is_rd890_iommu(iommu->dev)) {
1795 pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
1799 * Some rd890 systems may not be fully reconfigured by the
1800 * BIOS, so it's necessary for us to store this information so
1801 * it can be reprogrammed on resume
1803 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 4,
1804 &iommu->stored_addr_lo);
1805 pci_read_config_dword(iommu->dev, iommu->cap_ptr + 8,
1806 &iommu->stored_addr_hi);
1808 /* Low bit locks writes to configuration space */
1809 iommu->stored_addr_lo &= ~1;
1811 for (i = 0; i < 6; i++)
1812 for (j = 0; j < 0x12; j++)
1813 iommu->stored_l1[i][j] = iommu_read_l1(iommu, i, j);
1815 for (i = 0; i < 0x83; i++)
1816 iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1819 amd_iommu_erratum_746_workaround(iommu);
1820 amd_iommu_ats_write_check_workaround(iommu);
1822 iommu_device_sysfs_add(&iommu->iommu, &iommu->dev->dev,
1823 amd_iommu_groups, "ivhd%d", iommu->index);
1824 iommu_device_set_ops(&iommu->iommu, &amd_iommu_ops);
1825 iommu_device_register(&iommu->iommu);
1827 return pci_enable_device(iommu->dev);
1830 static void print_iommu_info(void)
1832 static const char * const feat_str[] = {
1833 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1834 "IA", "GA", "HE", "PC"
1836 struct amd_iommu *iommu;
1838 for_each_iommu(iommu) {
1839 struct pci_dev *pdev = iommu->dev;
1842 pci_info(pdev, "Found IOMMU cap 0x%hx\n", iommu->cap_ptr);
1844 if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1845 pci_info(pdev, "Extended features (%#llx):\n",
1847 for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
1848 if (iommu_feature(iommu, (1ULL << i)))
1849 pr_cont(" %s", feat_str[i]);
1852 if (iommu->features & FEATURE_GAM_VAPIC)
1853 pr_cont(" GA_vAPIC");
1858 if (irq_remapping_enabled) {
1859 pr_info("Interrupt remapping enabled\n");
1860 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
1861 pr_info("Virtual APIC enabled\n");
1862 if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
1863 pr_info("X2APIC enabled\n");
1867 static int __init amd_iommu_init_pci(void)
1869 struct amd_iommu *iommu;
1872 for_each_iommu(iommu) {
1873 ret = iommu_init_pci(iommu);
1879 * Order is important here to make sure any unity map requirements are
1880 * fulfilled. The unity mappings are created and written to the device
1881 * table during the amd_iommu_init_api() call.
1883 * After that we call init_device_table_dma() to make sure any
1884 * uninitialized DTE will block DMA, and in the end we flush the caches
1885 * of all IOMMUs to make sure the changes to the device table are
1888 ret = amd_iommu_init_api();
1890 init_device_table_dma();
1892 for_each_iommu(iommu)
1893 iommu_flush_all_caches(iommu);
1901 /****************************************************************************
1903 * The following functions initialize the MSI interrupts for all IOMMUs
1904 * in the system. It's a bit challenging because there could be multiple
1905 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1908 ****************************************************************************/
1910 static int iommu_setup_msi(struct amd_iommu *iommu)
1914 r = pci_enable_msi(iommu->dev);
1918 r = request_threaded_irq(iommu->dev->irq,
1919 amd_iommu_int_handler,
1920 amd_iommu_int_thread,
1925 pci_disable_msi(iommu->dev);
1929 iommu->int_enabled = true;
1934 #define XT_INT_DEST_MODE(x) (((x) & 0x1ULL) << 2)
1935 #define XT_INT_DEST_LO(x) (((x) & 0xFFFFFFULL) << 8)
1936 #define XT_INT_VEC(x) (((x) & 0xFFULL) << 32)
1937 #define XT_INT_DEST_HI(x) ((((x) >> 24) & 0xFFULL) << 56)
1940 * Setup the IntCapXT registers with interrupt routing information
1941 * based on the PCI MSI capability block registers, accessed via
1942 * MMIO MSI address low/hi and MSI data registers.
1944 static void iommu_update_intcapxt(struct amd_iommu *iommu)
1947 u32 addr_lo = readl(iommu->mmio_base + MMIO_MSI_ADDR_LO_OFFSET);
1948 u32 addr_hi = readl(iommu->mmio_base + MMIO_MSI_ADDR_HI_OFFSET);
1949 u32 data = readl(iommu->mmio_base + MMIO_MSI_DATA_OFFSET);
1950 bool dm = (addr_lo >> MSI_ADDR_DEST_MODE_SHIFT) & 0x1;
1951 u32 dest = ((addr_lo >> MSI_ADDR_DEST_ID_SHIFT) & 0xFF);
1953 if (x2apic_enabled())
1954 dest |= MSI_ADDR_EXT_DEST_ID(addr_hi);
1956 val = XT_INT_VEC(data & 0xFF) |
1957 XT_INT_DEST_MODE(dm) |
1958 XT_INT_DEST_LO(dest) |
1959 XT_INT_DEST_HI(dest);
1962 * Current IOMMU implemtation uses the same IRQ for all
1963 * 3 IOMMU interrupts.
1965 writeq(val, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET);
1966 writeq(val, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET);
1967 writeq(val, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET);
1970 static void _irq_notifier_notify(struct irq_affinity_notify *notify,
1971 const cpumask_t *mask)
1973 struct amd_iommu *iommu;
1975 for_each_iommu(iommu) {
1976 if (iommu->dev->irq == notify->irq) {
1977 iommu_update_intcapxt(iommu);
1983 static void _irq_notifier_release(struct kref *ref)
1987 static int iommu_init_intcapxt(struct amd_iommu *iommu)
1990 struct irq_affinity_notify *notify = &iommu->intcapxt_notify;
1993 * IntCapXT requires XTSup=1 and MsiCapMmioSup=1,
1994 * which can be inferred from amd_iommu_xt_mode.
1996 if (amd_iommu_xt_mode != IRQ_REMAP_X2APIC_MODE)
2000 * Also, we need to setup notifier to update the IntCapXT registers
2001 * whenever the irq affinity is changed from user-space.
2003 notify->irq = iommu->dev->irq;
2004 notify->notify = _irq_notifier_notify,
2005 notify->release = _irq_notifier_release,
2006 ret = irq_set_affinity_notifier(iommu->dev->irq, notify);
2008 pr_err("Failed to register irq affinity notifier (devid=%#x, irq %d)\n",
2009 iommu->devid, iommu->dev->irq);
2013 iommu_update_intcapxt(iommu);
2014 iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN);
2018 static int iommu_init_msi(struct amd_iommu *iommu)
2022 if (iommu->int_enabled)
2025 if (iommu->dev->msi_cap)
2026 ret = iommu_setup_msi(iommu);
2034 ret = iommu_init_intcapxt(iommu);
2038 iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
2040 if (iommu->ppr_log != NULL)
2041 iommu_feature_enable(iommu, CONTROL_PPRINT_EN);
2043 iommu_ga_log_enable(iommu);
2048 /****************************************************************************
2050 * The next functions belong to the third pass of parsing the ACPI
2051 * table. In this last pass the memory mapping requirements are
2052 * gathered (like exclusion and unity mapping ranges).
2054 ****************************************************************************/
2056 static void __init free_unity_maps(void)
2058 struct unity_map_entry *entry, *next;
2060 list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
2061 list_del(&entry->list);
2066 /* called when we find an exclusion range definition in ACPI */
2067 static int __init init_exclusion_range(struct ivmd_header *m)
2072 case ACPI_IVMD_TYPE:
2073 set_device_exclusion_range(m->devid, m);
2075 case ACPI_IVMD_TYPE_ALL:
2076 for (i = 0; i <= amd_iommu_last_bdf; ++i)
2077 set_device_exclusion_range(i, m);
2079 case ACPI_IVMD_TYPE_RANGE:
2080 for (i = m->devid; i <= m->aux; ++i)
2081 set_device_exclusion_range(i, m);
2090 /* called for unity map ACPI definition */
2091 static int __init init_unity_map_range(struct ivmd_header *m)
2093 struct unity_map_entry *e = NULL;
2096 e = kzalloc(sizeof(*e), GFP_KERNEL);
2100 if (m->flags & IVMD_FLAG_EXCL_RANGE)
2101 init_exclusion_range(m);
2107 case ACPI_IVMD_TYPE:
2108 s = "IVMD_TYPEi\t\t\t";
2109 e->devid_start = e->devid_end = m->devid;
2111 case ACPI_IVMD_TYPE_ALL:
2112 s = "IVMD_TYPE_ALL\t\t";
2114 e->devid_end = amd_iommu_last_bdf;
2116 case ACPI_IVMD_TYPE_RANGE:
2117 s = "IVMD_TYPE_RANGE\t\t";
2118 e->devid_start = m->devid;
2119 e->devid_end = m->aux;
2122 e->address_start = PAGE_ALIGN(m->range_start);
2123 e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
2124 e->prot = m->flags >> 1;
2126 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2127 " range_start: %016llx range_end: %016llx flags: %x\n", s,
2128 PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
2129 PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
2130 PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
2131 e->address_start, e->address_end, m->flags);
2133 list_add_tail(&e->list, &amd_iommu_unity_map);
2138 /* iterates over all memory definitions we find in the ACPI table */
2139 static int __init init_memory_definitions(struct acpi_table_header *table)
2141 u8 *p = (u8 *)table, *end = (u8 *)table;
2142 struct ivmd_header *m;
2144 end += table->length;
2145 p += IVRS_HEADER_LENGTH;
2148 m = (struct ivmd_header *)p;
2149 if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
2150 init_unity_map_range(m);
2159 * Init the device table to not allow DMA access for devices
2161 static void init_device_table_dma(void)
2165 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2166 set_dev_entry_bit(devid, DEV_ENTRY_VALID);
2167 set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
2171 static void __init uninit_device_table_dma(void)
2175 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2176 amd_iommu_dev_table[devid].data[0] = 0ULL;
2177 amd_iommu_dev_table[devid].data[1] = 0ULL;
2181 static void init_device_table(void)
2185 if (!amd_iommu_irq_remap)
2188 for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2189 set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
2192 static void iommu_init_flags(struct amd_iommu *iommu)
2194 iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
2195 iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
2196 iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
2198 iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
2199 iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
2200 iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
2202 iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
2203 iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
2204 iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
2206 iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
2207 iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
2208 iommu_feature_disable(iommu, CONTROL_ISOC_EN);
2211 * make IOMMU memory accesses cache coherent
2213 iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
2215 /* Set IOTLB invalidation timeout to 1s */
2216 iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
2219 static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
2222 u32 ioc_feature_control;
2223 struct pci_dev *pdev = iommu->root_pdev;
2225 /* RD890 BIOSes may not have completely reconfigured the iommu */
2226 if (!is_rd890_iommu(iommu->dev) || !pdev)
2230 * First, we need to ensure that the iommu is enabled. This is
2231 * controlled by a register in the northbridge
2234 /* Select Northbridge indirect register 0x75 and enable writing */
2235 pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
2236 pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
2238 /* Enable the iommu */
2239 if (!(ioc_feature_control & 0x1))
2240 pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
2242 /* Restore the iommu BAR */
2243 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2244 iommu->stored_addr_lo);
2245 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
2246 iommu->stored_addr_hi);
2248 /* Restore the l1 indirect regs for each of the 6 l1s */
2249 for (i = 0; i < 6; i++)
2250 for (j = 0; j < 0x12; j++)
2251 iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
2253 /* Restore the l2 indirect regs */
2254 for (i = 0; i < 0x83; i++)
2255 iommu_write_l2(iommu, i, iommu->stored_l2[i]);
2257 /* Lock PCI setup registers */
2258 pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2259 iommu->stored_addr_lo | 1);
2262 static void iommu_enable_ga(struct amd_iommu *iommu)
2264 #ifdef CONFIG_IRQ_REMAP
2265 switch (amd_iommu_guest_ir) {
2266 case AMD_IOMMU_GUEST_IR_VAPIC:
2267 iommu_feature_enable(iommu, CONTROL_GAM_EN);
2269 case AMD_IOMMU_GUEST_IR_LEGACY_GA:
2270 iommu_feature_enable(iommu, CONTROL_GA_EN);
2271 iommu->irte_ops = &irte_128_ops;
2274 iommu->irte_ops = &irte_32_ops;
2280 static void early_enable_iommu(struct amd_iommu *iommu)
2282 iommu_disable(iommu);
2283 iommu_init_flags(iommu);
2284 iommu_set_device_table(iommu);
2285 iommu_enable_command_buffer(iommu);
2286 iommu_enable_event_buffer(iommu);
2287 iommu_set_exclusion_range(iommu);
2288 iommu_enable_ga(iommu);
2289 iommu_enable_xt(iommu);
2290 iommu_enable(iommu);
2291 iommu_flush_all_caches(iommu);
2295 * This function finally enables all IOMMUs found in the system after
2296 * they have been initialized.
2298 * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2299 * the old content of device table entries. Not this case or copy failed,
2300 * just continue as normal kernel does.
2302 static void early_enable_iommus(void)
2304 struct amd_iommu *iommu;
2307 if (!copy_device_table()) {
2309 * If come here because of failure in copying device table from old
2310 * kernel with all IOMMUs enabled, print error message and try to
2311 * free allocated old_dev_tbl_cpy.
2313 if (amd_iommu_pre_enabled)
2314 pr_err("Failed to copy DEV table from previous kernel.\n");
2315 if (old_dev_tbl_cpy != NULL)
2316 free_pages((unsigned long)old_dev_tbl_cpy,
2317 get_order(dev_table_size));
2319 for_each_iommu(iommu) {
2320 clear_translation_pre_enabled(iommu);
2321 early_enable_iommu(iommu);
2324 pr_info("Copied DEV table from previous kernel.\n");
2325 free_pages((unsigned long)amd_iommu_dev_table,
2326 get_order(dev_table_size));
2327 amd_iommu_dev_table = old_dev_tbl_cpy;
2328 for_each_iommu(iommu) {
2329 iommu_disable_command_buffer(iommu);
2330 iommu_disable_event_buffer(iommu);
2331 iommu_enable_command_buffer(iommu);
2332 iommu_enable_event_buffer(iommu);
2333 iommu_enable_ga(iommu);
2334 iommu_enable_xt(iommu);
2335 iommu_set_device_table(iommu);
2336 iommu_flush_all_caches(iommu);
2340 #ifdef CONFIG_IRQ_REMAP
2341 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2342 amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2346 static void enable_iommus_v2(void)
2348 struct amd_iommu *iommu;
2350 for_each_iommu(iommu) {
2351 iommu_enable_ppr_log(iommu);
2352 iommu_enable_gt(iommu);
2356 static void enable_iommus(void)
2358 early_enable_iommus();
2363 static void disable_iommus(void)
2365 struct amd_iommu *iommu;
2367 for_each_iommu(iommu)
2368 iommu_disable(iommu);
2370 #ifdef CONFIG_IRQ_REMAP
2371 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2372 amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2377 * Suspend/Resume support
2378 * disable suspend until real resume implemented
2381 static void amd_iommu_resume(void)
2383 struct amd_iommu *iommu;
2385 for_each_iommu(iommu)
2386 iommu_apply_resume_quirks(iommu);
2388 /* re-load the hardware */
2391 amd_iommu_enable_interrupts();
2394 static int amd_iommu_suspend(void)
2396 /* disable IOMMUs to go out of the way for BIOS */
2402 static struct syscore_ops amd_iommu_syscore_ops = {
2403 .suspend = amd_iommu_suspend,
2404 .resume = amd_iommu_resume,
2407 static void __init free_iommu_resources(void)
2409 kmemleak_free(irq_lookup_table);
2410 free_pages((unsigned long)irq_lookup_table,
2411 get_order(rlookup_table_size));
2412 irq_lookup_table = NULL;
2414 kmem_cache_destroy(amd_iommu_irq_cache);
2415 amd_iommu_irq_cache = NULL;
2417 free_pages((unsigned long)amd_iommu_rlookup_table,
2418 get_order(rlookup_table_size));
2419 amd_iommu_rlookup_table = NULL;
2421 free_pages((unsigned long)amd_iommu_alias_table,
2422 get_order(alias_table_size));
2423 amd_iommu_alias_table = NULL;
2425 free_pages((unsigned long)amd_iommu_dev_table,
2426 get_order(dev_table_size));
2427 amd_iommu_dev_table = NULL;
2432 /* SB IOAPIC is always on this device in AMD systems */
2433 #define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
2435 static bool __init check_ioapic_information(void)
2437 const char *fw_bug = FW_BUG;
2438 bool ret, has_sb_ioapic;
2441 has_sb_ioapic = false;
2445 * If we have map overrides on the kernel command line the
2446 * messages in this function might not describe firmware bugs
2447 * anymore - so be careful
2452 for (idx = 0; idx < nr_ioapics; idx++) {
2453 int devid, id = mpc_ioapic_id(idx);
2455 devid = get_ioapic_devid(id);
2457 pr_err("%s: IOAPIC[%d] not in IVRS table\n",
2460 } else if (devid == IOAPIC_SB_DEVID) {
2461 has_sb_ioapic = true;
2466 if (!has_sb_ioapic) {
2468 * We expect the SB IOAPIC to be listed in the IVRS
2469 * table. The system timer is connected to the SB IOAPIC
2470 * and if we don't have it in the list the system will
2471 * panic at boot time. This situation usually happens
2472 * when the BIOS is buggy and provides us the wrong
2473 * device id for the IOAPIC in the system.
2475 pr_err("%s: No southbridge IOAPIC found\n", fw_bug);
2479 pr_err("Disabling interrupt remapping\n");
2484 static void __init free_dma_resources(void)
2486 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2487 get_order(MAX_DOMAIN_ID/8));
2488 amd_iommu_pd_alloc_bitmap = NULL;
2494 * This is the hardware init function for AMD IOMMU in the system.
2495 * This function is called either from amd_iommu_init or from the interrupt
2496 * remapping setup code.
2498 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
2501 * 1 pass) Discover the most comprehensive IVHD type to use.
2503 * 2 pass) Find the highest PCI device id the driver has to handle.
2504 * Upon this information the size of the data structures is
2505 * determined that needs to be allocated.
2507 * 3 pass) Initialize the data structures just allocated with the
2508 * information in the ACPI table about available AMD IOMMUs
2509 * in the system. It also maps the PCI devices in the
2510 * system to specific IOMMUs
2512 * 4 pass) After the basic data structures are allocated and
2513 * initialized we update them with information about memory
2514 * remapping requirements parsed out of the ACPI table in
2517 * After everything is set up the IOMMUs are enabled and the necessary
2518 * hotplug and suspend notifiers are registered.
2520 static int __init early_amd_iommu_init(void)
2522 struct acpi_table_header *ivrs_base;
2524 int i, remap_cache_sz, ret = 0;
2527 if (!amd_iommu_detected)
2530 status = acpi_get_table("IVRS", 0, &ivrs_base);
2531 if (status == AE_NOT_FOUND)
2533 else if (ACPI_FAILURE(status)) {
2534 const char *err = acpi_format_exception(status);
2535 pr_err("IVRS table error: %s\n", err);
2540 * Validate checksum here so we don't need to do it when
2541 * we actually parse the table
2543 ret = check_ivrs_checksum(ivrs_base);
2547 amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2548 DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2551 * First parse ACPI tables to find the largest Bus/Dev/Func
2552 * we need to handle. Upon this information the shared data
2553 * structures for the IOMMUs in the system will be allocated
2555 ret = find_last_devid_acpi(ivrs_base);
2559 dev_table_size = tbl_size(DEV_TABLE_ENTRY_SIZE);
2560 alias_table_size = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2561 rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
2563 /* Device table - directly used by all IOMMUs */
2565 amd_iommu_dev_table = (void *)__get_free_pages(
2566 GFP_KERNEL | __GFP_ZERO | GFP_DMA32,
2567 get_order(dev_table_size));
2568 if (amd_iommu_dev_table == NULL)
2572 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2573 * IOMMU see for that device
2575 amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2576 get_order(alias_table_size));
2577 if (amd_iommu_alias_table == NULL)
2580 /* IOMMU rlookup table - find the IOMMU for a specific device */
2581 amd_iommu_rlookup_table = (void *)__get_free_pages(
2582 GFP_KERNEL | __GFP_ZERO,
2583 get_order(rlookup_table_size));
2584 if (amd_iommu_rlookup_table == NULL)
2587 amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2588 GFP_KERNEL | __GFP_ZERO,
2589 get_order(MAX_DOMAIN_ID/8));
2590 if (amd_iommu_pd_alloc_bitmap == NULL)
2594 * let all alias entries point to itself
2596 for (i = 0; i <= amd_iommu_last_bdf; ++i)
2597 amd_iommu_alias_table[i] = i;
2600 * never allocate domain 0 because its used as the non-allocated and
2601 * error value placeholder
2603 __set_bit(0, amd_iommu_pd_alloc_bitmap);
2606 * now the data structures are allocated and basically initialized
2607 * start the real acpi table scan
2609 ret = init_iommu_all(ivrs_base);
2613 /* Disable IOMMU if there's Stoney Ridge graphics */
2614 for (i = 0; i < 32; i++) {
2615 pci_id = read_pci_config(0, i, 0, 0);
2616 if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) {
2617 pr_info("Disable IOMMU on Stoney Ridge\n");
2618 amd_iommu_disabled = true;
2623 /* Disable any previously enabled IOMMUs */
2624 if (!is_kdump_kernel() || amd_iommu_disabled)
2627 if (amd_iommu_irq_remap)
2628 amd_iommu_irq_remap = check_ioapic_information();
2630 if (amd_iommu_irq_remap) {
2632 * Interrupt remapping enabled, create kmem_cache for the
2636 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2637 remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2639 remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
2640 amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
2642 IRQ_TABLE_ALIGNMENT,
2644 if (!amd_iommu_irq_cache)
2647 irq_lookup_table = (void *)__get_free_pages(
2648 GFP_KERNEL | __GFP_ZERO,
2649 get_order(rlookup_table_size));
2650 kmemleak_alloc(irq_lookup_table, rlookup_table_size,
2652 if (!irq_lookup_table)
2656 ret = init_memory_definitions(ivrs_base);
2660 /* init the device table */
2661 init_device_table();
2664 /* Don't leak any ACPI memory */
2665 acpi_put_table(ivrs_base);
2671 static int amd_iommu_enable_interrupts(void)
2673 struct amd_iommu *iommu;
2676 for_each_iommu(iommu) {
2677 ret = iommu_init_msi(iommu);
2686 static bool detect_ivrs(void)
2688 struct acpi_table_header *ivrs_base;
2691 status = acpi_get_table("IVRS", 0, &ivrs_base);
2692 if (status == AE_NOT_FOUND)
2694 else if (ACPI_FAILURE(status)) {
2695 const char *err = acpi_format_exception(status);
2696 pr_err("IVRS table error: %s\n", err);
2700 acpi_put_table(ivrs_base);
2702 /* Make sure ACS will be enabled during PCI probe */
2708 /****************************************************************************
2710 * AMD IOMMU Initialization State Machine
2712 ****************************************************************************/
2714 static int __init state_next(void)
2718 switch (init_state) {
2719 case IOMMU_START_STATE:
2720 if (!detect_ivrs()) {
2721 init_state = IOMMU_NOT_FOUND;
2724 init_state = IOMMU_IVRS_DETECTED;
2727 case IOMMU_IVRS_DETECTED:
2728 ret = early_amd_iommu_init();
2729 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2730 if (init_state == IOMMU_ACPI_FINISHED && amd_iommu_disabled) {
2731 pr_info("AMD IOMMU disabled\n");
2732 init_state = IOMMU_CMDLINE_DISABLED;
2736 case IOMMU_ACPI_FINISHED:
2737 early_enable_iommus();
2738 x86_platform.iommu_shutdown = disable_iommus;
2739 init_state = IOMMU_ENABLED;
2742 register_syscore_ops(&amd_iommu_syscore_ops);
2743 ret = amd_iommu_init_pci();
2744 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2747 case IOMMU_PCI_INIT:
2748 ret = amd_iommu_enable_interrupts();
2749 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2751 case IOMMU_INTERRUPTS_EN:
2752 ret = amd_iommu_init_dma_ops();
2753 init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2756 init_state = IOMMU_INITIALIZED;
2758 case IOMMU_INITIALIZED:
2761 case IOMMU_NOT_FOUND:
2762 case IOMMU_INIT_ERROR:
2763 case IOMMU_CMDLINE_DISABLED:
2764 /* Error states => do nothing */
2773 free_dma_resources();
2774 if (!irq_remapping_enabled) {
2776 free_iommu_resources();
2778 struct amd_iommu *iommu;
2780 uninit_device_table_dma();
2781 for_each_iommu(iommu)
2782 iommu_flush_all_caches(iommu);
2788 static int __init iommu_go_to_state(enum iommu_init_state state)
2792 while (init_state != state) {
2793 if (init_state == IOMMU_NOT_FOUND ||
2794 init_state == IOMMU_INIT_ERROR ||
2795 init_state == IOMMU_CMDLINE_DISABLED)
2803 #ifdef CONFIG_IRQ_REMAP
2804 int __init amd_iommu_prepare(void)
2808 amd_iommu_irq_remap = true;
2810 ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2813 return amd_iommu_irq_remap ? 0 : -ENODEV;
2816 int __init amd_iommu_enable(void)
2820 ret = iommu_go_to_state(IOMMU_ENABLED);
2824 irq_remapping_enabled = 1;
2825 return amd_iommu_xt_mode;
2828 void amd_iommu_disable(void)
2830 amd_iommu_suspend();
2833 int amd_iommu_reenable(int mode)
2840 int __init amd_iommu_enable_faulting(void)
2842 /* We enable MSI later when PCI is initialized */
2848 * This is the core init function for AMD IOMMU hardware in the system.
2849 * This function is called from the generic x86 DMA layer initialization
2852 static int __init amd_iommu_init(void)
2854 struct amd_iommu *iommu;
2857 ret = iommu_go_to_state(IOMMU_INITIALIZED);
2858 #ifdef CONFIG_GART_IOMMU
2859 if (ret && list_empty(&amd_iommu_list)) {
2861 * We failed to initialize the AMD IOMMU - try fallback
2862 * to GART if possible.
2868 for_each_iommu(iommu)
2869 amd_iommu_debugfs_setup(iommu);
2874 static bool amd_iommu_sme_check(void)
2876 if (!sme_active() || (boot_cpu_data.x86 != 0x17))
2879 /* For Fam17h, a specific level of support is required */
2880 if (boot_cpu_data.microcode >= 0x08001205)
2883 if ((boot_cpu_data.microcode >= 0x08001126) &&
2884 (boot_cpu_data.microcode <= 0x080011ff))
2887 pr_notice("IOMMU not currently supported when SME is active\n");
2892 /****************************************************************************
2894 * Early detect code. This code runs at IOMMU detection time in the DMA
2895 * layer. It just looks if there is an IVRS ACPI table to detect AMD
2898 ****************************************************************************/
2899 int __init amd_iommu_detect(void)
2903 if (no_iommu || (iommu_detected && !gart_iommu_aperture))
2906 if (!amd_iommu_sme_check())
2909 ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
2913 amd_iommu_detected = true;
2915 x86_init.iommu.iommu_init = amd_iommu_init;
2920 /****************************************************************************
2922 * Parsing functions for the AMD IOMMU specific kernel command line
2925 ****************************************************************************/
2927 static int __init parse_amd_iommu_dump(char *str)
2929 amd_iommu_dump = true;
2934 static int __init parse_amd_iommu_intr(char *str)
2936 for (; *str; ++str) {
2937 if (strncmp(str, "legacy", 6) == 0) {
2938 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
2941 if (strncmp(str, "vapic", 5) == 0) {
2942 amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
2949 static int __init parse_amd_iommu_options(char *str)
2951 for (; *str; ++str) {
2952 if (strncmp(str, "fullflush", 9) == 0)
2953 amd_iommu_unmap_flush = true;
2954 if (strncmp(str, "off", 3) == 0)
2955 amd_iommu_disabled = true;
2956 if (strncmp(str, "force_isolation", 15) == 0)
2957 amd_iommu_force_isolation = true;
2963 static int __init parse_ivrs_ioapic(char *str)
2965 unsigned int bus, dev, fn;
2969 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
2972 pr_err("Invalid command line: ivrs_ioapic%s\n", str);
2976 if (early_ioapic_map_size == EARLY_MAP_SIZE) {
2977 pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
2982 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
2984 cmdline_maps = true;
2985 i = early_ioapic_map_size++;
2986 early_ioapic_map[i].id = id;
2987 early_ioapic_map[i].devid = devid;
2988 early_ioapic_map[i].cmd_line = true;
2993 static int __init parse_ivrs_hpet(char *str)
2995 unsigned int bus, dev, fn;
2999 ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3002 pr_err("Invalid command line: ivrs_hpet%s\n", str);
3006 if (early_hpet_map_size == EARLY_MAP_SIZE) {
3007 pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
3012 devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3014 cmdline_maps = true;
3015 i = early_hpet_map_size++;
3016 early_hpet_map[i].id = id;
3017 early_hpet_map[i].devid = devid;
3018 early_hpet_map[i].cmd_line = true;
3023 static int __init parse_ivrs_acpihid(char *str)
3026 char *hid, *uid, *p;
3027 char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
3030 ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
3032 pr_err("Invalid command line: ivrs_acpihid(%s)\n", str);
3037 hid = strsep(&p, ":");
3040 if (!hid || !(*hid) || !uid) {
3041 pr_err("Invalid command line: hid or uid\n");
3045 i = early_acpihid_map_size++;
3046 memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
3047 memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
3048 early_acpihid_map[i].devid =
3049 ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3050 early_acpihid_map[i].cmd_line = true;
3055 __setup("amd_iommu_dump", parse_amd_iommu_dump);
3056 __setup("amd_iommu=", parse_amd_iommu_options);
3057 __setup("amd_iommu_intr=", parse_amd_iommu_intr);
3058 __setup("ivrs_ioapic", parse_ivrs_ioapic);
3059 __setup("ivrs_hpet", parse_ivrs_hpet);
3060 __setup("ivrs_acpihid", parse_ivrs_acpihid);
3062 IOMMU_INIT_FINISH(amd_iommu_detect,
3063 gart_iommu_hole_init,
3067 bool amd_iommu_v2_supported(void)
3069 return amd_iommu_v2_present;
3071 EXPORT_SYMBOL(amd_iommu_v2_supported);
3073 struct amd_iommu *get_amd_iommu(unsigned int idx)
3076 struct amd_iommu *iommu;
3078 for_each_iommu(iommu)
3083 EXPORT_SYMBOL(get_amd_iommu);
3085 /****************************************************************************
3087 * IOMMU EFR Performance Counter support functionality. This code allows
3088 * access to the IOMMU PC functionality.
3090 ****************************************************************************/
3092 u8 amd_iommu_pc_get_max_banks(unsigned int idx)
3094 struct amd_iommu *iommu = get_amd_iommu(idx);
3097 return iommu->max_banks;
3101 EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
3103 bool amd_iommu_pc_supported(void)
3105 return amd_iommu_pc_present;
3107 EXPORT_SYMBOL(amd_iommu_pc_supported);
3109 u8 amd_iommu_pc_get_max_counters(unsigned int idx)
3111 struct amd_iommu *iommu = get_amd_iommu(idx);
3114 return iommu->max_counters;
3118 EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
3120 static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
3121 u8 fxn, u64 *value, bool is_write)
3126 /* Make sure the IOMMU PC resource is available */
3127 if (!amd_iommu_pc_present)
3130 /* Check for valid iommu and pc register indexing */
3131 if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7)))
3134 offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn);
3136 /* Limit the offset to the hw defined mmio region aperture */
3137 max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) |
3138 (iommu->max_counters << 8) | 0x28);
3139 if ((offset < MMIO_CNTR_REG_OFFSET) ||
3140 (offset > max_offset_lim))
3144 u64 val = *value & GENMASK_ULL(47, 0);
3146 writel((u32)val, iommu->mmio_base + offset);
3147 writel((val >> 32), iommu->mmio_base + offset + 4);
3149 *value = readl(iommu->mmio_base + offset + 4);
3151 *value |= readl(iommu->mmio_base + offset);
3152 *value &= GENMASK_ULL(47, 0);
3158 int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3163 return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false);
3165 EXPORT_SYMBOL(amd_iommu_pc_get_reg);
3167 int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3172 return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true);
3174 EXPORT_SYMBOL(amd_iommu_pc_set_reg);