1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <jroedel@suse.de>
5 * Leo Duran <leo.duran@amd.com>
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/irq.h>
20 #include <linux/amd-iommu.h>
21 #include <linux/export.h>
22 #include <linux/kmemleak.h>
23 #include <linux/mem_encrypt.h>
24 #include <asm/pci-direct.h>
25 #include <asm/iommu.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>
32 #include <asm/set_memory.h>
34 #include <linux/crash_dump.h>
36 #include "amd_iommu.h"
37 #include "../irq_remapping.h"
40 * definitions for the ACPI scanning code
42 #define IVRS_HEADER_LENGTH 48
44 #define ACPI_IVHD_TYPE_MAX_SUPPORTED 0x40
45 #define ACPI_IVMD_TYPE_ALL 0x20
46 #define ACPI_IVMD_TYPE 0x21
47 #define ACPI_IVMD_TYPE_RANGE 0x22
49 #define IVHD_DEV_ALL 0x01
50 #define IVHD_DEV_SELECT 0x02
51 #define IVHD_DEV_SELECT_RANGE_START 0x03
52 #define IVHD_DEV_RANGE_END 0x04
53 #define IVHD_DEV_ALIAS 0x42
54 #define IVHD_DEV_ALIAS_RANGE 0x43
55 #define IVHD_DEV_EXT_SELECT 0x46
56 #define IVHD_DEV_EXT_SELECT_RANGE 0x47
57 #define IVHD_DEV_SPECIAL 0x48
58 #define IVHD_DEV_ACPI_HID 0xf0
60 #define UID_NOT_PRESENT 0
61 #define UID_IS_INTEGER 1
62 #define UID_IS_CHARACTER 2
64 #define IVHD_SPECIAL_IOAPIC 1
65 #define IVHD_SPECIAL_HPET 2
67 #define IVHD_FLAG_HT_TUN_EN_MASK 0x01
68 #define IVHD_FLAG_PASSPW_EN_MASK 0x02
69 #define IVHD_FLAG_RESPASSPW_EN_MASK 0x04
70 #define IVHD_FLAG_ISOC_EN_MASK 0x08
72 #define IVMD_FLAG_EXCL_RANGE 0x08
73 #define IVMD_FLAG_IW 0x04
74 #define IVMD_FLAG_IR 0x02
75 #define IVMD_FLAG_UNITY_MAP 0x01
77 #define ACPI_DEVFLAG_INITPASS 0x01
78 #define ACPI_DEVFLAG_EXTINT 0x02
79 #define ACPI_DEVFLAG_NMI 0x04
80 #define ACPI_DEVFLAG_SYSMGT1 0x10
81 #define ACPI_DEVFLAG_SYSMGT2 0x20
82 #define ACPI_DEVFLAG_LINT0 0x40
83 #define ACPI_DEVFLAG_LINT1 0x80
84 #define ACPI_DEVFLAG_ATSDIS 0x10000000
86 #define LOOP_TIMEOUT 100000
88 * ACPI table definitions
90 * These data structures are laid over the table to parse the important values
94 extern const struct iommu_ops amd_iommu_ops
;
97 * structure describing one IOMMU in the ACPI table. Typically followed by one
98 * or more ivhd_entrys.
111 /* Following only valid on IVHD type 11h and 40h */
112 u64 efr_reg
; /* Exact copy of MMIO_EXT_FEATURES */
114 } __attribute__((packed
));
117 * A device entry describing which devices a specific IOMMU translates and
118 * which requestor ids they use.
130 } __attribute__((packed
));
133 * An AMD IOMMU memory definition structure. It defines things like exclusion
134 * ranges for devices and regions that should be unity mapped.
145 } __attribute__((packed
));
148 bool amd_iommu_irq_remap __read_mostly
;
150 int amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_VAPIC
;
151 static int amd_iommu_xt_mode
= IRQ_REMAP_XAPIC_MODE
;
153 static bool amd_iommu_detected
;
154 static bool __initdata amd_iommu_disabled
;
155 static int amd_iommu_target_ivhd_type
;
157 u16 amd_iommu_last_bdf
; /* largest PCI device id we have
159 LIST_HEAD(amd_iommu_unity_map
); /* a list of required unity mappings
161 bool amd_iommu_unmap_flush
; /* if true, flush on every unmap */
163 LIST_HEAD(amd_iommu_list
); /* list of all AMD IOMMUs in the
166 /* Array to assign indices to IOMMUs*/
167 struct amd_iommu
*amd_iommus
[MAX_IOMMUS
];
169 /* Number of IOMMUs present in the system */
170 static int amd_iommus_present
;
172 /* IOMMUs have a non-present cache? */
173 bool amd_iommu_np_cache __read_mostly
;
174 bool amd_iommu_iotlb_sup __read_mostly
= true;
176 u32 amd_iommu_max_pasid __read_mostly
= ~0;
178 bool amd_iommu_v2_present __read_mostly
;
179 static bool amd_iommu_pc_present __read_mostly
;
181 bool amd_iommu_force_isolation __read_mostly
;
184 * Pointer to the device table which is shared by all AMD IOMMUs
185 * it is indexed by the PCI device id or the HT unit id and contains
186 * information about the domain the device belongs to as well as the
187 * page table root pointer.
189 struct dev_table_entry
*amd_iommu_dev_table
;
191 * Pointer to a device table which the content of old device table
192 * will be copied to. It's only be used in kdump kernel.
194 static struct dev_table_entry
*old_dev_tbl_cpy
;
197 * The alias table is a driver specific data structure which contains the
198 * mappings of the PCI device ids to the actual requestor ids on the IOMMU.
199 * More than one device can share the same requestor id.
201 u16
*amd_iommu_alias_table
;
204 * The rlookup table is used to find the IOMMU which is responsible
205 * for a specific device. It is also indexed by the PCI device id.
207 struct amd_iommu
**amd_iommu_rlookup_table
;
208 EXPORT_SYMBOL(amd_iommu_rlookup_table
);
211 * This table is used to find the irq remapping table for a given device id
214 struct irq_remap_table
**irq_lookup_table
;
217 * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
218 * to know which ones are already in use.
220 unsigned long *amd_iommu_pd_alloc_bitmap
;
222 static u32 dev_table_size
; /* size of the device table */
223 static u32 alias_table_size
; /* size of the alias table */
224 static u32 rlookup_table_size
; /* size if the rlookup table */
226 enum iommu_init_state
{
237 IOMMU_CMDLINE_DISABLED
,
240 /* Early ioapic and hpet maps from kernel command line */
241 #define EARLY_MAP_SIZE 4
242 static struct devid_map __initdata early_ioapic_map
[EARLY_MAP_SIZE
];
243 static struct devid_map __initdata early_hpet_map
[EARLY_MAP_SIZE
];
244 static struct acpihid_map_entry __initdata early_acpihid_map
[EARLY_MAP_SIZE
];
246 static int __initdata early_ioapic_map_size
;
247 static int __initdata early_hpet_map_size
;
248 static int __initdata early_acpihid_map_size
;
250 static bool __initdata cmdline_maps
;
252 static enum iommu_init_state init_state
= IOMMU_START_STATE
;
254 static int amd_iommu_enable_interrupts(void);
255 static int __init
iommu_go_to_state(enum iommu_init_state state
);
256 static void init_device_table_dma(void);
258 static bool amd_iommu_pre_enabled
= true;
260 bool translation_pre_enabled(struct amd_iommu
*iommu
)
262 return (iommu
->flags
& AMD_IOMMU_FLAG_TRANS_PRE_ENABLED
);
264 EXPORT_SYMBOL(translation_pre_enabled
);
266 static void clear_translation_pre_enabled(struct amd_iommu
*iommu
)
268 iommu
->flags
&= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED
;
271 static void init_translation_status(struct amd_iommu
*iommu
)
275 ctrl
= readq(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
276 if (ctrl
& (1<<CONTROL_IOMMU_EN
))
277 iommu
->flags
|= AMD_IOMMU_FLAG_TRANS_PRE_ENABLED
;
280 static inline void update_last_devid(u16 devid
)
282 if (devid
> amd_iommu_last_bdf
)
283 amd_iommu_last_bdf
= devid
;
286 static inline unsigned long tbl_size(int entry_size
)
288 unsigned shift
= PAGE_SHIFT
+
289 get_order(((int)amd_iommu_last_bdf
+ 1) * entry_size
);
294 int amd_iommu_get_num_iommus(void)
296 return amd_iommus_present
;
299 /* Access to l1 and l2 indexed register spaces */
301 static u32
iommu_read_l1(struct amd_iommu
*iommu
, u16 l1
, u8 address
)
305 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16));
306 pci_read_config_dword(iommu
->dev
, 0xfc, &val
);
310 static void iommu_write_l1(struct amd_iommu
*iommu
, u16 l1
, u8 address
, u32 val
)
312 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16 | 1 << 31));
313 pci_write_config_dword(iommu
->dev
, 0xfc, val
);
314 pci_write_config_dword(iommu
->dev
, 0xf8, (address
| l1
<< 16));
317 static u32
iommu_read_l2(struct amd_iommu
*iommu
, u8 address
)
321 pci_write_config_dword(iommu
->dev
, 0xf0, address
);
322 pci_read_config_dword(iommu
->dev
, 0xf4, &val
);
326 static void iommu_write_l2(struct amd_iommu
*iommu
, u8 address
, u32 val
)
328 pci_write_config_dword(iommu
->dev
, 0xf0, (address
| 1 << 8));
329 pci_write_config_dword(iommu
->dev
, 0xf4, val
);
332 /****************************************************************************
334 * AMD IOMMU MMIO register space handling functions
336 * These functions are used to program the IOMMU device registers in
337 * MMIO space required for that driver.
339 ****************************************************************************/
342 * This function set the exclusion range in the IOMMU. DMA accesses to the
343 * exclusion range are passed through untranslated
345 static void iommu_set_exclusion_range(struct amd_iommu
*iommu
)
347 u64 start
= iommu
->exclusion_start
& PAGE_MASK
;
348 u64 limit
= (start
+ iommu
->exclusion_length
- 1) & PAGE_MASK
;
351 if (!iommu
->exclusion_start
)
354 entry
= start
| MMIO_EXCL_ENABLE_MASK
;
355 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_BASE_OFFSET
,
356 &entry
, sizeof(entry
));
359 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_LIMIT_OFFSET
,
360 &entry
, sizeof(entry
));
363 static void iommu_set_cwwb_range(struct amd_iommu
*iommu
)
365 u64 start
= iommu_virt_to_phys((void *)iommu
->cmd_sem
);
366 u64 entry
= start
& PM_ADDR_MASK
;
368 if (!iommu_feature(iommu
, FEATURE_SNP
))
372 * Re-purpose Exclusion base/limit registers for Completion wait
373 * write-back base/limit.
375 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_BASE_OFFSET
,
376 &entry
, sizeof(entry
));
379 * Default to 4 Kbytes, which can be specified by setting base
380 * address equal to the limit address.
382 memcpy_toio(iommu
->mmio_base
+ MMIO_EXCL_LIMIT_OFFSET
,
383 &entry
, sizeof(entry
));
386 /* Programs the physical address of the device table into the IOMMU hardware */
387 static void iommu_set_device_table(struct amd_iommu
*iommu
)
391 BUG_ON(iommu
->mmio_base
== NULL
);
393 entry
= iommu_virt_to_phys(amd_iommu_dev_table
);
394 entry
|= (dev_table_size
>> 12) - 1;
395 memcpy_toio(iommu
->mmio_base
+ MMIO_DEV_TABLE_OFFSET
,
396 &entry
, sizeof(entry
));
399 /* Generic functions to enable/disable certain features of the IOMMU. */
400 static void iommu_feature_enable(struct amd_iommu
*iommu
, u8 bit
)
404 ctrl
= readq(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
405 ctrl
|= (1ULL << bit
);
406 writeq(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
409 static void iommu_feature_disable(struct amd_iommu
*iommu
, u8 bit
)
413 ctrl
= readq(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
414 ctrl
&= ~(1ULL << bit
);
415 writeq(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
418 static void iommu_set_inv_tlb_timeout(struct amd_iommu
*iommu
, int timeout
)
422 ctrl
= readq(iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
423 ctrl
&= ~CTRL_INV_TO_MASK
;
424 ctrl
|= (timeout
<< CONTROL_INV_TIMEOUT
) & CTRL_INV_TO_MASK
;
425 writeq(ctrl
, iommu
->mmio_base
+ MMIO_CONTROL_OFFSET
);
428 /* Function to enable the hardware */
429 static void iommu_enable(struct amd_iommu
*iommu
)
431 iommu_feature_enable(iommu
, CONTROL_IOMMU_EN
);
434 static void iommu_disable(struct amd_iommu
*iommu
)
436 if (!iommu
->mmio_base
)
439 /* Disable command buffer */
440 iommu_feature_disable(iommu
, CONTROL_CMDBUF_EN
);
442 /* Disable event logging and event interrupts */
443 iommu_feature_disable(iommu
, CONTROL_EVT_INT_EN
);
444 iommu_feature_disable(iommu
, CONTROL_EVT_LOG_EN
);
446 /* Disable IOMMU GA_LOG */
447 iommu_feature_disable(iommu
, CONTROL_GALOG_EN
);
448 iommu_feature_disable(iommu
, CONTROL_GAINT_EN
);
450 /* Disable IOMMU hardware itself */
451 iommu_feature_disable(iommu
, CONTROL_IOMMU_EN
);
455 * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
456 * the system has one.
458 static u8 __iomem
* __init
iommu_map_mmio_space(u64 address
, u64 end
)
460 if (!request_mem_region(address
, end
, "amd_iommu")) {
461 pr_err("Can not reserve memory region %llx-%llx for mmio\n",
463 pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
467 return (u8 __iomem
*)ioremap(address
, end
);
470 static void __init
iommu_unmap_mmio_space(struct amd_iommu
*iommu
)
472 if (iommu
->mmio_base
)
473 iounmap(iommu
->mmio_base
);
474 release_mem_region(iommu
->mmio_phys
, iommu
->mmio_phys_end
);
477 static inline u32
get_ivhd_header_size(struct ivhd_header
*h
)
493 /****************************************************************************
495 * The functions below belong to the first pass of AMD IOMMU ACPI table
496 * parsing. In this pass we try to find out the highest device id this
497 * code has to handle. Upon this information the size of the shared data
498 * structures is determined later.
500 ****************************************************************************/
503 * This function calculates the length of a given IVHD entry
505 static inline int ivhd_entry_length(u8
*ivhd
)
507 u32 type
= ((struct ivhd_entry
*)ivhd
)->type
;
510 return 0x04 << (*ivhd
>> 6);
511 } else if (type
== IVHD_DEV_ACPI_HID
) {
512 /* For ACPI_HID, offset 21 is uid len */
513 return *((u8
*)ivhd
+ 21) + 22;
519 * After reading the highest device id from the IOMMU PCI capability header
520 * this function looks if there is a higher device id defined in the ACPI table
522 static int __init
find_last_devid_from_ivhd(struct ivhd_header
*h
)
524 u8
*p
= (void *)h
, *end
= (void *)h
;
525 struct ivhd_entry
*dev
;
527 u32 ivhd_size
= get_ivhd_header_size(h
);
530 pr_err("Unsupported IVHD type %#x\n", h
->type
);
538 dev
= (struct ivhd_entry
*)p
;
541 /* Use maximum BDF value for DEV_ALL */
542 update_last_devid(0xffff);
544 case IVHD_DEV_SELECT
:
545 case IVHD_DEV_RANGE_END
:
547 case IVHD_DEV_EXT_SELECT
:
548 /* all the above subfield types refer to device ids */
549 update_last_devid(dev
->devid
);
554 p
+= ivhd_entry_length(p
);
562 static int __init
check_ivrs_checksum(struct acpi_table_header
*table
)
565 u8 checksum
= 0, *p
= (u8
*)table
;
567 for (i
= 0; i
< table
->length
; ++i
)
570 /* ACPI table corrupt */
571 pr_err(FW_BUG
"IVRS invalid checksum\n");
579 * Iterate over all IVHD entries in the ACPI table and find the highest device
580 * id which we need to handle. This is the first of three functions which parse
581 * the ACPI table. So we check the checksum here.
583 static int __init
find_last_devid_acpi(struct acpi_table_header
*table
)
585 u8
*p
= (u8
*)table
, *end
= (u8
*)table
;
586 struct ivhd_header
*h
;
588 p
+= IVRS_HEADER_LENGTH
;
590 end
+= table
->length
;
592 h
= (struct ivhd_header
*)p
;
593 if (h
->type
== amd_iommu_target_ivhd_type
) {
594 int ret
= find_last_devid_from_ivhd(h
);
606 /****************************************************************************
608 * The following functions belong to the code path which parses the ACPI table
609 * the second time. In this ACPI parsing iteration we allocate IOMMU specific
610 * data structures, initialize the device/alias/rlookup table and also
611 * basically initialize the hardware.
613 ****************************************************************************/
616 * Allocates the command buffer. This buffer is per AMD IOMMU. We can
617 * write commands to that buffer later and the IOMMU will execute them
620 static int __init
alloc_command_buffer(struct amd_iommu
*iommu
)
622 iommu
->cmd_buf
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
623 get_order(CMD_BUFFER_SIZE
));
625 return iommu
->cmd_buf
? 0 : -ENOMEM
;
629 * This function resets the command buffer if the IOMMU stopped fetching
632 void amd_iommu_reset_cmd_buffer(struct amd_iommu
*iommu
)
634 iommu_feature_disable(iommu
, CONTROL_CMDBUF_EN
);
636 writel(0x00, iommu
->mmio_base
+ MMIO_CMD_HEAD_OFFSET
);
637 writel(0x00, iommu
->mmio_base
+ MMIO_CMD_TAIL_OFFSET
);
638 iommu
->cmd_buf_head
= 0;
639 iommu
->cmd_buf_tail
= 0;
641 iommu_feature_enable(iommu
, CONTROL_CMDBUF_EN
);
645 * This function writes the command buffer address to the hardware and
648 static void iommu_enable_command_buffer(struct amd_iommu
*iommu
)
652 BUG_ON(iommu
->cmd_buf
== NULL
);
654 entry
= iommu_virt_to_phys(iommu
->cmd_buf
);
655 entry
|= MMIO_CMD_SIZE_512
;
657 memcpy_toio(iommu
->mmio_base
+ MMIO_CMD_BUF_OFFSET
,
658 &entry
, sizeof(entry
));
660 amd_iommu_reset_cmd_buffer(iommu
);
664 * This function disables the command buffer
666 static void iommu_disable_command_buffer(struct amd_iommu
*iommu
)
668 iommu_feature_disable(iommu
, CONTROL_CMDBUF_EN
);
671 static void __init
free_command_buffer(struct amd_iommu
*iommu
)
673 free_pages((unsigned long)iommu
->cmd_buf
, get_order(CMD_BUFFER_SIZE
));
676 static void *__init
iommu_alloc_4k_pages(struct amd_iommu
*iommu
,
677 gfp_t gfp
, size_t size
)
679 int order
= get_order(size
);
680 void *buf
= (void *)__get_free_pages(gfp
, order
);
683 iommu_feature(iommu
, FEATURE_SNP
) &&
684 set_memory_4k((unsigned long)buf
, (1 << order
))) {
685 free_pages((unsigned long)buf
, order
);
692 /* allocates the memory where the IOMMU will log its events to */
693 static int __init
alloc_event_buffer(struct amd_iommu
*iommu
)
695 iommu
->evt_buf
= iommu_alloc_4k_pages(iommu
, GFP_KERNEL
| __GFP_ZERO
,
698 return iommu
->evt_buf
? 0 : -ENOMEM
;
701 static void iommu_enable_event_buffer(struct amd_iommu
*iommu
)
705 BUG_ON(iommu
->evt_buf
== NULL
);
707 entry
= iommu_virt_to_phys(iommu
->evt_buf
) | EVT_LEN_MASK
;
709 memcpy_toio(iommu
->mmio_base
+ MMIO_EVT_BUF_OFFSET
,
710 &entry
, sizeof(entry
));
712 /* set head and tail to zero manually */
713 writel(0x00, iommu
->mmio_base
+ MMIO_EVT_HEAD_OFFSET
);
714 writel(0x00, iommu
->mmio_base
+ MMIO_EVT_TAIL_OFFSET
);
716 iommu_feature_enable(iommu
, CONTROL_EVT_LOG_EN
);
720 * This function disables the event log buffer
722 static void iommu_disable_event_buffer(struct amd_iommu
*iommu
)
724 iommu_feature_disable(iommu
, CONTROL_EVT_LOG_EN
);
727 static void __init
free_event_buffer(struct amd_iommu
*iommu
)
729 free_pages((unsigned long)iommu
->evt_buf
, get_order(EVT_BUFFER_SIZE
));
732 /* allocates the memory where the IOMMU will log its events to */
733 static int __init
alloc_ppr_log(struct amd_iommu
*iommu
)
735 iommu
->ppr_log
= iommu_alloc_4k_pages(iommu
, GFP_KERNEL
| __GFP_ZERO
,
738 return iommu
->ppr_log
? 0 : -ENOMEM
;
741 static void iommu_enable_ppr_log(struct amd_iommu
*iommu
)
745 if (iommu
->ppr_log
== NULL
)
748 entry
= iommu_virt_to_phys(iommu
->ppr_log
) | PPR_LOG_SIZE_512
;
750 memcpy_toio(iommu
->mmio_base
+ MMIO_PPR_LOG_OFFSET
,
751 &entry
, sizeof(entry
));
753 /* set head and tail to zero manually */
754 writel(0x00, iommu
->mmio_base
+ MMIO_PPR_HEAD_OFFSET
);
755 writel(0x00, iommu
->mmio_base
+ MMIO_PPR_TAIL_OFFSET
);
757 iommu_feature_enable(iommu
, CONTROL_PPRLOG_EN
);
758 iommu_feature_enable(iommu
, CONTROL_PPR_EN
);
761 static void __init
free_ppr_log(struct amd_iommu
*iommu
)
763 free_pages((unsigned long)iommu
->ppr_log
, get_order(PPR_LOG_SIZE
));
766 static void free_ga_log(struct amd_iommu
*iommu
)
768 #ifdef CONFIG_IRQ_REMAP
769 free_pages((unsigned long)iommu
->ga_log
, get_order(GA_LOG_SIZE
));
770 free_pages((unsigned long)iommu
->ga_log_tail
, get_order(8));
774 static int iommu_ga_log_enable(struct amd_iommu
*iommu
)
776 #ifdef CONFIG_IRQ_REMAP
782 status
= readl(iommu
->mmio_base
+ MMIO_STATUS_OFFSET
);
784 /* Check if already running */
785 if (status
& (MMIO_STATUS_GALOG_RUN_MASK
))
788 iommu_feature_enable(iommu
, CONTROL_GAINT_EN
);
789 iommu_feature_enable(iommu
, CONTROL_GALOG_EN
);
791 for (i
= 0; i
< LOOP_TIMEOUT
; ++i
) {
792 status
= readl(iommu
->mmio_base
+ MMIO_STATUS_OFFSET
);
793 if (status
& (MMIO_STATUS_GALOG_RUN_MASK
))
797 if (i
>= LOOP_TIMEOUT
)
799 #endif /* CONFIG_IRQ_REMAP */
803 #ifdef CONFIG_IRQ_REMAP
804 static int iommu_init_ga_log(struct amd_iommu
*iommu
)
808 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir
))
811 iommu
->ga_log
= (u8
*)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
812 get_order(GA_LOG_SIZE
));
816 iommu
->ga_log_tail
= (u8
*)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
818 if (!iommu
->ga_log_tail
)
821 entry
= iommu_virt_to_phys(iommu
->ga_log
) | GA_LOG_SIZE_512
;
822 memcpy_toio(iommu
->mmio_base
+ MMIO_GA_LOG_BASE_OFFSET
,
823 &entry
, sizeof(entry
));
824 entry
= (iommu_virt_to_phys(iommu
->ga_log_tail
) &
825 (BIT_ULL(52)-1)) & ~7ULL;
826 memcpy_toio(iommu
->mmio_base
+ MMIO_GA_LOG_TAIL_OFFSET
,
827 &entry
, sizeof(entry
));
828 writel(0x00, iommu
->mmio_base
+ MMIO_GA_HEAD_OFFSET
);
829 writel(0x00, iommu
->mmio_base
+ MMIO_GA_TAIL_OFFSET
);
836 #endif /* CONFIG_IRQ_REMAP */
838 static int iommu_init_ga(struct amd_iommu
*iommu
)
842 #ifdef CONFIG_IRQ_REMAP
843 /* Note: We have already checked GASup from IVRS table.
844 * Now, we need to make sure that GAMSup is set.
846 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir
) &&
847 !iommu_feature(iommu
, FEATURE_GAM_VAPIC
))
848 amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_LEGACY_GA
;
850 ret
= iommu_init_ga_log(iommu
);
851 #endif /* CONFIG_IRQ_REMAP */
856 static int __init
alloc_cwwb_sem(struct amd_iommu
*iommu
)
858 iommu
->cmd_sem
= iommu_alloc_4k_pages(iommu
, GFP_KERNEL
| __GFP_ZERO
, 1);
860 return iommu
->cmd_sem
? 0 : -ENOMEM
;
863 static void __init
free_cwwb_sem(struct amd_iommu
*iommu
)
866 free_page((unsigned long)iommu
->cmd_sem
);
869 static void iommu_enable_xt(struct amd_iommu
*iommu
)
871 #ifdef CONFIG_IRQ_REMAP
873 * XT mode (32-bit APIC destination ID) requires
874 * GA mode (128-bit IRTE support) as a prerequisite.
876 if (AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir
) &&
877 amd_iommu_xt_mode
== IRQ_REMAP_X2APIC_MODE
)
878 iommu_feature_enable(iommu
, CONTROL_XT_EN
);
879 #endif /* CONFIG_IRQ_REMAP */
882 static void iommu_enable_gt(struct amd_iommu
*iommu
)
884 if (!iommu_feature(iommu
, FEATURE_GT
))
887 iommu_feature_enable(iommu
, CONTROL_GT_EN
);
890 /* sets a specific bit in the device table entry. */
891 static void set_dev_entry_bit(u16 devid
, u8 bit
)
893 int i
= (bit
>> 6) & 0x03;
894 int _bit
= bit
& 0x3f;
896 amd_iommu_dev_table
[devid
].data
[i
] |= (1UL << _bit
);
899 static int get_dev_entry_bit(u16 devid
, u8 bit
)
901 int i
= (bit
>> 6) & 0x03;
902 int _bit
= bit
& 0x3f;
904 return (amd_iommu_dev_table
[devid
].data
[i
] & (1UL << _bit
)) >> _bit
;
908 static bool copy_device_table(void)
910 u64 int_ctl
, int_tab_len
, entry
= 0, last_entry
= 0;
911 struct dev_table_entry
*old_devtb
= NULL
;
912 u32 lo
, hi
, devid
, old_devtb_size
;
913 phys_addr_t old_devtb_phys
;
914 struct amd_iommu
*iommu
;
915 u16 dom_id
, dte_v
, irq_v
;
919 if (!amd_iommu_pre_enabled
)
922 pr_warn("Translation is already enabled - trying to copy translation structures\n");
923 for_each_iommu(iommu
) {
924 /* All IOMMUs should use the same device table with the same size */
925 lo
= readl(iommu
->mmio_base
+ MMIO_DEV_TABLE_OFFSET
);
926 hi
= readl(iommu
->mmio_base
+ MMIO_DEV_TABLE_OFFSET
+ 4);
927 entry
= (((u64
) hi
) << 32) + lo
;
928 if (last_entry
&& last_entry
!= entry
) {
929 pr_err("IOMMU:%d should use the same dev table as others!\n",
935 old_devtb_size
= ((entry
& ~PAGE_MASK
) + 1) << 12;
936 if (old_devtb_size
!= dev_table_size
) {
937 pr_err("The device table size of IOMMU:%d is not expected!\n",
944 * When SME is enabled in the first kernel, the entry includes the
945 * memory encryption mask(sme_me_mask), we must remove the memory
946 * encryption mask to obtain the true physical address in kdump kernel.
948 old_devtb_phys
= __sme_clr(entry
) & PAGE_MASK
;
950 if (old_devtb_phys
>= 0x100000000ULL
) {
951 pr_err("The address of old device table is above 4G, not trustworthy!\n");
954 old_devtb
= (sme_active() && is_kdump_kernel())
955 ? (__force
void *)ioremap_encrypted(old_devtb_phys
,
957 : memremap(old_devtb_phys
, dev_table_size
, MEMREMAP_WB
);
962 gfp_flag
= GFP_KERNEL
| __GFP_ZERO
| GFP_DMA32
;
963 old_dev_tbl_cpy
= (void *)__get_free_pages(gfp_flag
,
964 get_order(dev_table_size
));
965 if (old_dev_tbl_cpy
== NULL
) {
966 pr_err("Failed to allocate memory for copying old device table!\n");
970 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
) {
971 old_dev_tbl_cpy
[devid
] = old_devtb
[devid
];
972 dom_id
= old_devtb
[devid
].data
[1] & DEV_DOMID_MASK
;
973 dte_v
= old_devtb
[devid
].data
[0] & DTE_FLAG_V
;
975 if (dte_v
&& dom_id
) {
976 old_dev_tbl_cpy
[devid
].data
[0] = old_devtb
[devid
].data
[0];
977 old_dev_tbl_cpy
[devid
].data
[1] = old_devtb
[devid
].data
[1];
978 __set_bit(dom_id
, amd_iommu_pd_alloc_bitmap
);
979 /* If gcr3 table existed, mask it out */
980 if (old_devtb
[devid
].data
[0] & DTE_FLAG_GV
) {
981 tmp
= DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B
;
982 tmp
|= DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C
;
983 old_dev_tbl_cpy
[devid
].data
[1] &= ~tmp
;
984 tmp
= DTE_GCR3_VAL_A(~0ULL) << DTE_GCR3_SHIFT_A
;
986 old_dev_tbl_cpy
[devid
].data
[0] &= ~tmp
;
990 irq_v
= old_devtb
[devid
].data
[2] & DTE_IRQ_REMAP_ENABLE
;
991 int_ctl
= old_devtb
[devid
].data
[2] & DTE_IRQ_REMAP_INTCTL_MASK
;
992 int_tab_len
= old_devtb
[devid
].data
[2] & DTE_INTTABLEN_MASK
;
993 if (irq_v
&& (int_ctl
|| int_tab_len
)) {
994 if ((int_ctl
!= DTE_IRQ_REMAP_INTCTL
) ||
995 (int_tab_len
!= DTE_INTTABLEN
)) {
996 pr_err("Wrong old irq remapping flag: %#x\n", devid
);
1000 old_dev_tbl_cpy
[devid
].data
[2] = old_devtb
[devid
].data
[2];
1003 memunmap(old_devtb
);
1008 void amd_iommu_apply_erratum_63(u16 devid
)
1012 sysmgt
= get_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT1
) |
1013 (get_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT2
) << 1);
1016 set_dev_entry_bit(devid
, DEV_ENTRY_IW
);
1019 /* Writes the specific IOMMU for a device into the rlookup table */
1020 static void __init
set_iommu_for_device(struct amd_iommu
*iommu
, u16 devid
)
1022 amd_iommu_rlookup_table
[devid
] = iommu
;
1026 * This function takes the device specific flags read from the ACPI
1027 * table and sets up the device table entry with that information
1029 static void __init
set_dev_entry_from_acpi(struct amd_iommu
*iommu
,
1030 u16 devid
, u32 flags
, u32 ext_flags
)
1032 if (flags
& ACPI_DEVFLAG_INITPASS
)
1033 set_dev_entry_bit(devid
, DEV_ENTRY_INIT_PASS
);
1034 if (flags
& ACPI_DEVFLAG_EXTINT
)
1035 set_dev_entry_bit(devid
, DEV_ENTRY_EINT_PASS
);
1036 if (flags
& ACPI_DEVFLAG_NMI
)
1037 set_dev_entry_bit(devid
, DEV_ENTRY_NMI_PASS
);
1038 if (flags
& ACPI_DEVFLAG_SYSMGT1
)
1039 set_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT1
);
1040 if (flags
& ACPI_DEVFLAG_SYSMGT2
)
1041 set_dev_entry_bit(devid
, DEV_ENTRY_SYSMGT2
);
1042 if (flags
& ACPI_DEVFLAG_LINT0
)
1043 set_dev_entry_bit(devid
, DEV_ENTRY_LINT0_PASS
);
1044 if (flags
& ACPI_DEVFLAG_LINT1
)
1045 set_dev_entry_bit(devid
, DEV_ENTRY_LINT1_PASS
);
1047 amd_iommu_apply_erratum_63(devid
);
1049 set_iommu_for_device(iommu
, devid
);
1052 int __init
add_special_device(u8 type
, u8 id
, u16
*devid
, bool cmd_line
)
1054 struct devid_map
*entry
;
1055 struct list_head
*list
;
1057 if (type
== IVHD_SPECIAL_IOAPIC
)
1059 else if (type
== IVHD_SPECIAL_HPET
)
1064 list_for_each_entry(entry
, list
, list
) {
1065 if (!(entry
->id
== id
&& entry
->cmd_line
))
1068 pr_info("Command-line override present for %s id %d - ignoring\n",
1069 type
== IVHD_SPECIAL_IOAPIC
? "IOAPIC" : "HPET", id
);
1071 *devid
= entry
->devid
;
1076 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
1081 entry
->devid
= *devid
;
1082 entry
->cmd_line
= cmd_line
;
1084 list_add_tail(&entry
->list
, list
);
1089 static int __init
add_acpi_hid_device(u8
*hid
, u8
*uid
, u16
*devid
,
1092 struct acpihid_map_entry
*entry
;
1093 struct list_head
*list
= &acpihid_map
;
1095 list_for_each_entry(entry
, list
, list
) {
1096 if (strcmp(entry
->hid
, hid
) ||
1097 (*uid
&& *entry
->uid
&& strcmp(entry
->uid
, uid
)) ||
1101 pr_info("Command-line override for hid:%s uid:%s\n",
1103 *devid
= entry
->devid
;
1107 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
1111 memcpy(entry
->uid
, uid
, strlen(uid
));
1112 memcpy(entry
->hid
, hid
, strlen(hid
));
1113 entry
->devid
= *devid
;
1114 entry
->cmd_line
= cmd_line
;
1115 entry
->root_devid
= (entry
->devid
& (~0x7));
1117 pr_info("%s, add hid:%s, uid:%s, rdevid:%d\n",
1118 entry
->cmd_line
? "cmd" : "ivrs",
1119 entry
->hid
, entry
->uid
, entry
->root_devid
);
1121 list_add_tail(&entry
->list
, list
);
1125 static int __init
add_early_maps(void)
1129 for (i
= 0; i
< early_ioapic_map_size
; ++i
) {
1130 ret
= add_special_device(IVHD_SPECIAL_IOAPIC
,
1131 early_ioapic_map
[i
].id
,
1132 &early_ioapic_map
[i
].devid
,
1133 early_ioapic_map
[i
].cmd_line
);
1138 for (i
= 0; i
< early_hpet_map_size
; ++i
) {
1139 ret
= add_special_device(IVHD_SPECIAL_HPET
,
1140 early_hpet_map
[i
].id
,
1141 &early_hpet_map
[i
].devid
,
1142 early_hpet_map
[i
].cmd_line
);
1147 for (i
= 0; i
< early_acpihid_map_size
; ++i
) {
1148 ret
= add_acpi_hid_device(early_acpihid_map
[i
].hid
,
1149 early_acpihid_map
[i
].uid
,
1150 &early_acpihid_map
[i
].devid
,
1151 early_acpihid_map
[i
].cmd_line
);
1160 * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1161 * initializes the hardware and our data structures with it.
1163 static int __init
init_iommu_from_acpi(struct amd_iommu
*iommu
,
1164 struct ivhd_header
*h
)
1167 u8
*end
= p
, flags
= 0;
1168 u16 devid
= 0, devid_start
= 0, devid_to
= 0;
1169 u32 dev_i
, ext_flags
= 0;
1171 struct ivhd_entry
*e
;
1176 ret
= add_early_maps();
1180 amd_iommu_apply_ivrs_quirks();
1183 * First save the recommended feature enable bits from ACPI
1185 iommu
->acpi_flags
= h
->flags
;
1188 * Done. Now parse the device entries
1190 ivhd_size
= get_ivhd_header_size(h
);
1192 pr_err("Unsupported IVHD type %#x\n", h
->type
);
1202 e
= (struct ivhd_entry
*)p
;
1206 DUMP_printk(" DEV_ALL\t\t\tflags: %02x\n", e
->flags
);
1208 for (dev_i
= 0; dev_i
<= amd_iommu_last_bdf
; ++dev_i
)
1209 set_dev_entry_from_acpi(iommu
, dev_i
, e
->flags
, 0);
1211 case IVHD_DEV_SELECT
:
1213 DUMP_printk(" DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1215 PCI_BUS_NUM(e
->devid
),
1221 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
1223 case IVHD_DEV_SELECT_RANGE_START
:
1225 DUMP_printk(" DEV_SELECT_RANGE_START\t "
1226 "devid: %02x:%02x.%x flags: %02x\n",
1227 PCI_BUS_NUM(e
->devid
),
1232 devid_start
= e
->devid
;
1237 case IVHD_DEV_ALIAS
:
1239 DUMP_printk(" DEV_ALIAS\t\t\t devid: %02x:%02x.%x "
1240 "flags: %02x devid_to: %02x:%02x.%x\n",
1241 PCI_BUS_NUM(e
->devid
),
1245 PCI_BUS_NUM(e
->ext
>> 8),
1246 PCI_SLOT(e
->ext
>> 8),
1247 PCI_FUNC(e
->ext
>> 8));
1250 devid_to
= e
->ext
>> 8;
1251 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
1252 set_dev_entry_from_acpi(iommu
, devid_to
, e
->flags
, 0);
1253 amd_iommu_alias_table
[devid
] = devid_to
;
1255 case IVHD_DEV_ALIAS_RANGE
:
1257 DUMP_printk(" DEV_ALIAS_RANGE\t\t "
1258 "devid: %02x:%02x.%x flags: %02x "
1259 "devid_to: %02x:%02x.%x\n",
1260 PCI_BUS_NUM(e
->devid
),
1264 PCI_BUS_NUM(e
->ext
>> 8),
1265 PCI_SLOT(e
->ext
>> 8),
1266 PCI_FUNC(e
->ext
>> 8));
1268 devid_start
= e
->devid
;
1270 devid_to
= e
->ext
>> 8;
1274 case IVHD_DEV_EXT_SELECT
:
1276 DUMP_printk(" DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1277 "flags: %02x ext: %08x\n",
1278 PCI_BUS_NUM(e
->devid
),
1284 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
,
1287 case IVHD_DEV_EXT_SELECT_RANGE
:
1289 DUMP_printk(" DEV_EXT_SELECT_RANGE\t devid: "
1290 "%02x:%02x.%x flags: %02x ext: %08x\n",
1291 PCI_BUS_NUM(e
->devid
),
1296 devid_start
= e
->devid
;
1301 case IVHD_DEV_RANGE_END
:
1303 DUMP_printk(" DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
1304 PCI_BUS_NUM(e
->devid
),
1306 PCI_FUNC(e
->devid
));
1309 for (dev_i
= devid_start
; dev_i
<= devid
; ++dev_i
) {
1311 amd_iommu_alias_table
[dev_i
] = devid_to
;
1312 set_dev_entry_from_acpi(iommu
,
1313 devid_to
, flags
, ext_flags
);
1315 set_dev_entry_from_acpi(iommu
, dev_i
,
1319 case IVHD_DEV_SPECIAL
: {
1325 handle
= e
->ext
& 0xff;
1326 devid
= (e
->ext
>> 8) & 0xffff;
1327 type
= (e
->ext
>> 24) & 0xff;
1329 if (type
== IVHD_SPECIAL_IOAPIC
)
1331 else if (type
== IVHD_SPECIAL_HPET
)
1336 DUMP_printk(" DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1342 ret
= add_special_device(type
, handle
, &devid
, false);
1347 * add_special_device might update the devid in case a
1348 * command-line override is present. So call
1349 * set_dev_entry_from_acpi after add_special_device.
1351 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
1355 case IVHD_DEV_ACPI_HID
: {
1357 u8 hid
[ACPIHID_HID_LEN
];
1358 u8 uid
[ACPIHID_UID_LEN
];
1361 if (h
->type
!= 0x40) {
1362 pr_err(FW_BUG
"Invalid IVHD device type %#x\n",
1367 memcpy(hid
, (u8
*)(&e
->ext
), ACPIHID_HID_LEN
- 1);
1368 hid
[ACPIHID_HID_LEN
- 1] = '\0';
1371 pr_err(FW_BUG
"Invalid HID.\n");
1377 case UID_NOT_PRESENT
:
1380 pr_warn(FW_BUG
"Invalid UID length.\n");
1383 case UID_IS_INTEGER
:
1385 sprintf(uid
, "%d", e
->uid
);
1388 case UID_IS_CHARACTER
:
1390 memcpy(uid
, &e
->uid
, e
->uidl
);
1391 uid
[e
->uidl
] = '\0';
1399 DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1407 ret
= add_acpi_hid_device(hid
, uid
, &devid
, false);
1412 * add_special_device might update the devid in case a
1413 * command-line override is present. So call
1414 * set_dev_entry_from_acpi after add_special_device.
1416 set_dev_entry_from_acpi(iommu
, devid
, e
->flags
, 0);
1424 p
+= ivhd_entry_length(p
);
1430 static void __init
free_iommu_one(struct amd_iommu
*iommu
)
1432 free_cwwb_sem(iommu
);
1433 free_command_buffer(iommu
);
1434 free_event_buffer(iommu
);
1435 free_ppr_log(iommu
);
1437 iommu_unmap_mmio_space(iommu
);
1440 static void __init
free_iommu_all(void)
1442 struct amd_iommu
*iommu
, *next
;
1444 for_each_iommu_safe(iommu
, next
) {
1445 list_del(&iommu
->list
);
1446 free_iommu_one(iommu
);
1452 * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1454 * BIOS should disable L2B micellaneous clock gating by setting
1455 * L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1457 static void amd_iommu_erratum_746_workaround(struct amd_iommu
*iommu
)
1461 if ((boot_cpu_data
.x86
!= 0x15) ||
1462 (boot_cpu_data
.x86_model
< 0x10) ||
1463 (boot_cpu_data
.x86_model
> 0x1f))
1466 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90);
1467 pci_read_config_dword(iommu
->dev
, 0xf4, &value
);
1472 /* Select NB indirect register 0x90 and enable writing */
1473 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90 | (1 << 8));
1475 pci_write_config_dword(iommu
->dev
, 0xf4, value
| 0x4);
1476 pci_info(iommu
->dev
, "Applying erratum 746 workaround\n");
1478 /* Clear the enable writing bit */
1479 pci_write_config_dword(iommu
->dev
, 0xf0, 0x90);
1483 * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1485 * BIOS should enable ATS write permission check by setting
1486 * L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1488 static void amd_iommu_ats_write_check_workaround(struct amd_iommu
*iommu
)
1492 if ((boot_cpu_data
.x86
!= 0x15) ||
1493 (boot_cpu_data
.x86_model
< 0x30) ||
1494 (boot_cpu_data
.x86_model
> 0x3f))
1497 /* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1498 value
= iommu_read_l2(iommu
, 0x47);
1503 /* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1504 iommu_write_l2(iommu
, 0x47, value
| BIT(0));
1506 pci_info(iommu
->dev
, "Applying ATS write check workaround\n");
1510 * This function clues the initialization function for one IOMMU
1511 * together and also allocates the command buffer and programs the
1512 * hardware. It does NOT enable the IOMMU. This is done afterwards.
1514 static int __init
init_iommu_one(struct amd_iommu
*iommu
, struct ivhd_header
*h
)
1518 raw_spin_lock_init(&iommu
->lock
);
1519 iommu
->cmd_sem_val
= 0;
1521 /* Add IOMMU to internal data structures */
1522 list_add_tail(&iommu
->list
, &amd_iommu_list
);
1523 iommu
->index
= amd_iommus_present
++;
1525 if (unlikely(iommu
->index
>= MAX_IOMMUS
)) {
1526 WARN(1, "System has more IOMMUs than supported by this driver\n");
1530 /* Index is fine - add IOMMU to the array */
1531 amd_iommus
[iommu
->index
] = iommu
;
1534 * Copy data from ACPI table entry to the iommu struct
1536 iommu
->devid
= h
->devid
;
1537 iommu
->cap_ptr
= h
->cap_ptr
;
1538 iommu
->pci_seg
= h
->pci_seg
;
1539 iommu
->mmio_phys
= h
->mmio_phys
;
1543 /* Check if IVHD EFR contains proper max banks/counters */
1544 if ((h
->efr_attr
!= 0) &&
1545 ((h
->efr_attr
& (0xF << 13)) != 0) &&
1546 ((h
->efr_attr
& (0x3F << 17)) != 0))
1547 iommu
->mmio_phys_end
= MMIO_REG_END_OFFSET
;
1549 iommu
->mmio_phys_end
= MMIO_CNTR_CONF_OFFSET
;
1552 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1553 * GAM also requires GA mode. Therefore, we need to
1554 * check cmpxchg16b support before enabling it.
1556 if (!boot_cpu_has(X86_FEATURE_CX16
) ||
1557 ((h
->efr_attr
& (0x1 << IOMMU_FEAT_GASUP_SHIFT
)) == 0))
1558 amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_LEGACY
;
1562 if (h
->efr_reg
& (1 << 9))
1563 iommu
->mmio_phys_end
= MMIO_REG_END_OFFSET
;
1565 iommu
->mmio_phys_end
= MMIO_CNTR_CONF_OFFSET
;
1568 * Note: GA (128-bit IRTE) mode requires cmpxchg16b supports.
1569 * XT, GAM also requires GA mode. Therefore, we need to
1570 * check cmpxchg16b support before enabling them.
1572 if (!boot_cpu_has(X86_FEATURE_CX16
) ||
1573 ((h
->efr_reg
& (0x1 << IOMMU_EFR_GASUP_SHIFT
)) == 0)) {
1574 amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_LEGACY
;
1578 if (h
->efr_reg
& BIT(IOMMU_EFR_XTSUP_SHIFT
))
1579 amd_iommu_xt_mode
= IRQ_REMAP_X2APIC_MODE
;
1585 iommu
->mmio_base
= iommu_map_mmio_space(iommu
->mmio_phys
,
1586 iommu
->mmio_phys_end
);
1587 if (!iommu
->mmio_base
)
1590 if (alloc_cwwb_sem(iommu
))
1593 if (alloc_command_buffer(iommu
))
1596 if (alloc_event_buffer(iommu
))
1599 iommu
->int_enabled
= false;
1601 init_translation_status(iommu
);
1602 if (translation_pre_enabled(iommu
) && !is_kdump_kernel()) {
1603 iommu_disable(iommu
);
1604 clear_translation_pre_enabled(iommu
);
1605 pr_warn("Translation was enabled for IOMMU:%d but we are not in kdump mode\n",
1608 if (amd_iommu_pre_enabled
)
1609 amd_iommu_pre_enabled
= translation_pre_enabled(iommu
);
1611 ret
= init_iommu_from_acpi(iommu
, h
);
1615 if (amd_iommu_irq_remap
) {
1616 ret
= amd_iommu_create_irq_domain(iommu
);
1622 * Make sure IOMMU is not considered to translate itself. The IVRS
1623 * table tells us so, but this is a lie!
1625 amd_iommu_rlookup_table
[iommu
->devid
] = NULL
;
1631 * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1632 * @ivrs: Pointer to the IVRS header
1634 * This function search through all IVDB of the maximum supported IVHD
1636 static u8
get_highest_supported_ivhd_type(struct acpi_table_header
*ivrs
)
1638 u8
*base
= (u8
*)ivrs
;
1639 struct ivhd_header
*ivhd
= (struct ivhd_header
*)
1640 (base
+ IVRS_HEADER_LENGTH
);
1641 u8 last_type
= ivhd
->type
;
1642 u16 devid
= ivhd
->devid
;
1644 while (((u8
*)ivhd
- base
< ivrs
->length
) &&
1645 (ivhd
->type
<= ACPI_IVHD_TYPE_MAX_SUPPORTED
)) {
1646 u8
*p
= (u8
*) ivhd
;
1648 if (ivhd
->devid
== devid
)
1649 last_type
= ivhd
->type
;
1650 ivhd
= (struct ivhd_header
*)(p
+ ivhd
->length
);
1657 * Iterates over all IOMMU entries in the ACPI table, allocates the
1658 * IOMMU structure and initializes it with init_iommu_one()
1660 static int __init
init_iommu_all(struct acpi_table_header
*table
)
1662 u8
*p
= (u8
*)table
, *end
= (u8
*)table
;
1663 struct ivhd_header
*h
;
1664 struct amd_iommu
*iommu
;
1667 end
+= table
->length
;
1668 p
+= IVRS_HEADER_LENGTH
;
1671 h
= (struct ivhd_header
*)p
;
1672 if (*p
== amd_iommu_target_ivhd_type
) {
1674 DUMP_printk("device: %02x:%02x.%01x cap: %04x "
1675 "seg: %d flags: %01x info %04x\n",
1676 PCI_BUS_NUM(h
->devid
), PCI_SLOT(h
->devid
),
1677 PCI_FUNC(h
->devid
), h
->cap_ptr
,
1678 h
->pci_seg
, h
->flags
, h
->info
);
1679 DUMP_printk(" mmio-addr: %016llx\n",
1682 iommu
= kzalloc(sizeof(struct amd_iommu
), GFP_KERNEL
);
1686 ret
= init_iommu_one(iommu
, h
);
1698 static int iommu_pc_get_set_reg(struct amd_iommu
*iommu
, u8 bank
, u8 cntr
,
1699 u8 fxn
, u64
*value
, bool is_write
);
1701 static void init_iommu_perf_ctr(struct amd_iommu
*iommu
)
1703 struct pci_dev
*pdev
= iommu
->dev
;
1704 u64 val
= 0xabcd, val2
= 0, save_reg
= 0;
1706 if (!iommu_feature(iommu
, FEATURE_PC
))
1709 amd_iommu_pc_present
= true;
1711 /* save the value to restore, if writable */
1712 if (iommu_pc_get_set_reg(iommu
, 0, 0, 0, &save_reg
, false))
1715 /* Check if the performance counters can be written to */
1716 if ((iommu_pc_get_set_reg(iommu
, 0, 0, 0, &val
, true)) ||
1717 (iommu_pc_get_set_reg(iommu
, 0, 0, 0, &val2
, false)) ||
1722 if (iommu_pc_get_set_reg(iommu
, 0, 0, 0, &save_reg
, true))
1725 pci_info(pdev
, "IOMMU performance counters supported\n");
1727 val
= readl(iommu
->mmio_base
+ MMIO_CNTR_CONF_OFFSET
);
1728 iommu
->max_banks
= (u8
) ((val
>> 12) & 0x3f);
1729 iommu
->max_counters
= (u8
) ((val
>> 7) & 0xf);
1734 pci_err(pdev
, "Unable to read/write to IOMMU perf counter.\n");
1735 amd_iommu_pc_present
= false;
1739 static ssize_t
amd_iommu_show_cap(struct device
*dev
,
1740 struct device_attribute
*attr
,
1743 struct amd_iommu
*iommu
= dev_to_amd_iommu(dev
);
1744 return sprintf(buf
, "%x\n", iommu
->cap
);
1746 static DEVICE_ATTR(cap
, S_IRUGO
, amd_iommu_show_cap
, NULL
);
1748 static ssize_t
amd_iommu_show_features(struct device
*dev
,
1749 struct device_attribute
*attr
,
1752 struct amd_iommu
*iommu
= dev_to_amd_iommu(dev
);
1753 return sprintf(buf
, "%llx\n", iommu
->features
);
1755 static DEVICE_ATTR(features
, S_IRUGO
, amd_iommu_show_features
, NULL
);
1757 static struct attribute
*amd_iommu_attrs
[] = {
1759 &dev_attr_features
.attr
,
1763 static struct attribute_group amd_iommu_group
= {
1764 .name
= "amd-iommu",
1765 .attrs
= amd_iommu_attrs
,
1768 static const struct attribute_group
*amd_iommu_groups
[] = {
1773 static int __init
iommu_init_pci(struct amd_iommu
*iommu
)
1775 int cap_ptr
= iommu
->cap_ptr
;
1778 iommu
->dev
= pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu
->devid
),
1779 iommu
->devid
& 0xff);
1783 /* Prevent binding other PCI device drivers to IOMMU devices */
1784 iommu
->dev
->match_driver
= false;
1786 pci_read_config_dword(iommu
->dev
, cap_ptr
+ MMIO_CAP_HDR_OFFSET
,
1789 if (!(iommu
->cap
& (1 << IOMMU_CAP_IOTLB
)))
1790 amd_iommu_iotlb_sup
= false;
1792 /* read extended feature bits */
1793 iommu
->features
= readq(iommu
->mmio_base
+ MMIO_EXT_FEATURES
);
1795 if (iommu_feature(iommu
, FEATURE_GT
)) {
1800 pasmax
= iommu
->features
& FEATURE_PASID_MASK
;
1801 pasmax
>>= FEATURE_PASID_SHIFT
;
1802 max_pasid
= (1 << (pasmax
+ 1)) - 1;
1804 amd_iommu_max_pasid
= min(amd_iommu_max_pasid
, max_pasid
);
1806 BUG_ON(amd_iommu_max_pasid
& ~PASID_MASK
);
1808 glxval
= iommu
->features
& FEATURE_GLXVAL_MASK
;
1809 glxval
>>= FEATURE_GLXVAL_SHIFT
;
1811 if (amd_iommu_max_glx_val
== -1)
1812 amd_iommu_max_glx_val
= glxval
;
1814 amd_iommu_max_glx_val
= min(amd_iommu_max_glx_val
, glxval
);
1817 if (iommu_feature(iommu
, FEATURE_GT
) &&
1818 iommu_feature(iommu
, FEATURE_PPR
)) {
1819 iommu
->is_iommu_v2
= true;
1820 amd_iommu_v2_present
= true;
1823 if (iommu_feature(iommu
, FEATURE_PPR
) && alloc_ppr_log(iommu
))
1826 ret
= iommu_init_ga(iommu
);
1830 if (iommu
->cap
& (1UL << IOMMU_CAP_NPCACHE
))
1831 amd_iommu_np_cache
= true;
1833 init_iommu_perf_ctr(iommu
);
1835 if (is_rd890_iommu(iommu
->dev
)) {
1839 pci_get_domain_bus_and_slot(0, iommu
->dev
->bus
->number
,
1843 * Some rd890 systems may not be fully reconfigured by the
1844 * BIOS, so it's necessary for us to store this information so
1845 * it can be reprogrammed on resume
1847 pci_read_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
1848 &iommu
->stored_addr_lo
);
1849 pci_read_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 8,
1850 &iommu
->stored_addr_hi
);
1852 /* Low bit locks writes to configuration space */
1853 iommu
->stored_addr_lo
&= ~1;
1855 for (i
= 0; i
< 6; i
++)
1856 for (j
= 0; j
< 0x12; j
++)
1857 iommu
->stored_l1
[i
][j
] = iommu_read_l1(iommu
, i
, j
);
1859 for (i
= 0; i
< 0x83; i
++)
1860 iommu
->stored_l2
[i
] = iommu_read_l2(iommu
, i
);
1863 amd_iommu_erratum_746_workaround(iommu
);
1864 amd_iommu_ats_write_check_workaround(iommu
);
1866 iommu_device_sysfs_add(&iommu
->iommu
, &iommu
->dev
->dev
,
1867 amd_iommu_groups
, "ivhd%d", iommu
->index
);
1868 iommu_device_set_ops(&iommu
->iommu
, &amd_iommu_ops
);
1869 iommu_device_register(&iommu
->iommu
);
1871 return pci_enable_device(iommu
->dev
);
1874 static void print_iommu_info(void)
1876 static const char * const feat_str
[] = {
1877 "PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1878 "IA", "GA", "HE", "PC"
1880 struct amd_iommu
*iommu
;
1882 for_each_iommu(iommu
) {
1883 struct pci_dev
*pdev
= iommu
->dev
;
1886 pci_info(pdev
, "Found IOMMU cap 0x%hx\n", iommu
->cap_ptr
);
1888 if (iommu
->cap
& (1 << IOMMU_CAP_EFR
)) {
1889 pci_info(pdev
, "Extended features (%#llx):",
1891 for (i
= 0; i
< ARRAY_SIZE(feat_str
); ++i
) {
1892 if (iommu_feature(iommu
, (1ULL << i
)))
1893 pr_cont(" %s", feat_str
[i
]);
1896 if (iommu
->features
& FEATURE_GAM_VAPIC
)
1897 pr_cont(" GA_vAPIC");
1902 if (irq_remapping_enabled
) {
1903 pr_info("Interrupt remapping enabled\n");
1904 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir
))
1905 pr_info("Virtual APIC enabled\n");
1906 if (amd_iommu_xt_mode
== IRQ_REMAP_X2APIC_MODE
)
1907 pr_info("X2APIC enabled\n");
1911 static int __init
amd_iommu_init_pci(void)
1913 struct amd_iommu
*iommu
;
1916 for_each_iommu(iommu
) {
1917 ret
= iommu_init_pci(iommu
);
1921 /* Need to setup range after PCI init */
1922 iommu_set_cwwb_range(iommu
);
1926 * Order is important here to make sure any unity map requirements are
1927 * fulfilled. The unity mappings are created and written to the device
1928 * table during the amd_iommu_init_api() call.
1930 * After that we call init_device_table_dma() to make sure any
1931 * uninitialized DTE will block DMA, and in the end we flush the caches
1932 * of all IOMMUs to make sure the changes to the device table are
1935 ret
= amd_iommu_init_api();
1937 init_device_table_dma();
1939 for_each_iommu(iommu
)
1940 iommu_flush_all_caches(iommu
);
1948 /****************************************************************************
1950 * The following functions initialize the MSI interrupts for all IOMMUs
1951 * in the system. It's a bit challenging because there could be multiple
1952 * IOMMUs per PCI BDF but we can call pci_enable_msi(x) only once per
1955 ****************************************************************************/
1957 static int iommu_setup_msi(struct amd_iommu
*iommu
)
1961 r
= pci_enable_msi(iommu
->dev
);
1965 r
= request_threaded_irq(iommu
->dev
->irq
,
1966 amd_iommu_int_handler
,
1967 amd_iommu_int_thread
,
1972 pci_disable_msi(iommu
->dev
);
1983 dest_mode_logical
: 1,
1990 } __attribute__ ((packed
));
1993 * There isn't really any need to mask/unmask at the irqchip level because
1994 * the 64-bit INTCAPXT registers can be updated atomically without tearing
1995 * when the affinity is being updated.
1997 static void intcapxt_unmask_irq(struct irq_data
*data
)
2001 static void intcapxt_mask_irq(struct irq_data
*data
)
2005 static struct irq_chip intcapxt_controller
;
2007 static int intcapxt_irqdomain_activate(struct irq_domain
*domain
,
2008 struct irq_data
*irqd
, bool reserve
)
2010 struct amd_iommu
*iommu
= irqd
->chip_data
;
2011 struct irq_cfg
*cfg
= irqd_cfg(irqd
);
2015 xt
.dest_mode_logical
= apic
->dest_mode_logical
;
2016 xt
.vector
= cfg
->vector
;
2017 xt
.destid_0_23
= cfg
->dest_apicid
& GENMASK(23, 0);
2018 xt
.destid_24_31
= cfg
->dest_apicid
>> 24;
2021 * Current IOMMU implemtation uses the same IRQ for all
2022 * 3 IOMMU interrupts.
2024 writeq(xt
.capxt
, iommu
->mmio_base
+ MMIO_INTCAPXT_EVT_OFFSET
);
2025 writeq(xt
.capxt
, iommu
->mmio_base
+ MMIO_INTCAPXT_PPR_OFFSET
);
2026 writeq(xt
.capxt
, iommu
->mmio_base
+ MMIO_INTCAPXT_GALOG_OFFSET
);
2030 static void intcapxt_irqdomain_deactivate(struct irq_domain
*domain
,
2031 struct irq_data
*irqd
)
2033 intcapxt_mask_irq(irqd
);
2037 static int intcapxt_irqdomain_alloc(struct irq_domain
*domain
, unsigned int virq
,
2038 unsigned int nr_irqs
, void *arg
)
2040 struct irq_alloc_info
*info
= arg
;
2043 if (!info
|| info
->type
!= X86_IRQ_ALLOC_TYPE_AMDVI
)
2046 ret
= irq_domain_alloc_irqs_parent(domain
, virq
, nr_irqs
, arg
);
2050 for (i
= virq
; i
< virq
+ nr_irqs
; i
++) {
2051 struct irq_data
*irqd
= irq_domain_get_irq_data(domain
, i
);
2053 irqd
->chip
= &intcapxt_controller
;
2054 irqd
->chip_data
= info
->data
;
2055 __irq_set_handler(i
, handle_edge_irq
, 0, "edge");
2061 static void intcapxt_irqdomain_free(struct irq_domain
*domain
, unsigned int virq
,
2062 unsigned int nr_irqs
)
2064 irq_domain_free_irqs_top(domain
, virq
, nr_irqs
);
2067 static int intcapxt_set_affinity(struct irq_data
*irqd
,
2068 const struct cpumask
*mask
, bool force
)
2070 struct irq_data
*parent
= irqd
->parent_data
;
2073 ret
= parent
->chip
->irq_set_affinity(parent
, mask
, force
);
2074 if (ret
< 0 || ret
== IRQ_SET_MASK_OK_DONE
)
2077 return intcapxt_irqdomain_activate(irqd
->domain
, irqd
, false);
2080 static struct irq_chip intcapxt_controller
= {
2081 .name
= "IOMMU-MSI",
2082 .irq_unmask
= intcapxt_unmask_irq
,
2083 .irq_mask
= intcapxt_mask_irq
,
2084 .irq_ack
= irq_chip_ack_parent
,
2085 .irq_retrigger
= irq_chip_retrigger_hierarchy
,
2086 .irq_set_affinity
= intcapxt_set_affinity
,
2087 .flags
= IRQCHIP_SKIP_SET_WAKE
,
2090 static const struct irq_domain_ops intcapxt_domain_ops
= {
2091 .alloc
= intcapxt_irqdomain_alloc
,
2092 .free
= intcapxt_irqdomain_free
,
2093 .activate
= intcapxt_irqdomain_activate
,
2094 .deactivate
= intcapxt_irqdomain_deactivate
,
2098 static struct irq_domain
*iommu_irqdomain
;
2100 static struct irq_domain
*iommu_get_irqdomain(void)
2102 struct fwnode_handle
*fn
;
2104 /* No need for locking here (yet) as the init is single-threaded */
2105 if (iommu_irqdomain
)
2106 return iommu_irqdomain
;
2108 fn
= irq_domain_alloc_named_fwnode("AMD-Vi-MSI");
2112 iommu_irqdomain
= irq_domain_create_hierarchy(x86_vector_domain
, 0, 0,
2113 fn
, &intcapxt_domain_ops
,
2115 if (!iommu_irqdomain
)
2116 irq_domain_free_fwnode(fn
);
2118 return iommu_irqdomain
;
2121 static int iommu_setup_intcapxt(struct amd_iommu
*iommu
)
2123 struct irq_domain
*domain
;
2124 struct irq_alloc_info info
;
2127 domain
= iommu_get_irqdomain();
2131 init_irq_alloc_info(&info
, NULL
);
2132 info
.type
= X86_IRQ_ALLOC_TYPE_AMDVI
;
2135 irq
= irq_domain_alloc_irqs(domain
, 1, NUMA_NO_NODE
, &info
);
2137 irq_domain_remove(domain
);
2141 ret
= request_threaded_irq(irq
, amd_iommu_int_handler
,
2142 amd_iommu_int_thread
, 0, "AMD-Vi", iommu
);
2144 irq_domain_free_irqs(irq
, 1);
2145 irq_domain_remove(domain
);
2149 iommu_feature_enable(iommu
, CONTROL_INTCAPXT_EN
);
2153 static int iommu_init_irq(struct amd_iommu
*iommu
)
2157 if (iommu
->int_enabled
)
2160 if (amd_iommu_xt_mode
== IRQ_REMAP_X2APIC_MODE
)
2161 ret
= iommu_setup_intcapxt(iommu
);
2162 else if (iommu
->dev
->msi_cap
)
2163 ret
= iommu_setup_msi(iommu
);
2170 iommu
->int_enabled
= true;
2172 iommu_feature_enable(iommu
, CONTROL_EVT_INT_EN
);
2174 if (iommu
->ppr_log
!= NULL
)
2175 iommu_feature_enable(iommu
, CONTROL_PPRINT_EN
);
2177 iommu_ga_log_enable(iommu
);
2182 /****************************************************************************
2184 * The next functions belong to the third pass of parsing the ACPI
2185 * table. In this last pass the memory mapping requirements are
2186 * gathered (like exclusion and unity mapping ranges).
2188 ****************************************************************************/
2190 static void __init
free_unity_maps(void)
2192 struct unity_map_entry
*entry
, *next
;
2194 list_for_each_entry_safe(entry
, next
, &amd_iommu_unity_map
, list
) {
2195 list_del(&entry
->list
);
2200 /* called for unity map ACPI definition */
2201 static int __init
init_unity_map_range(struct ivmd_header
*m
)
2203 struct unity_map_entry
*e
= NULL
;
2206 e
= kzalloc(sizeof(*e
), GFP_KERNEL
);
2214 case ACPI_IVMD_TYPE
:
2215 s
= "IVMD_TYPEi\t\t\t";
2216 e
->devid_start
= e
->devid_end
= m
->devid
;
2218 case ACPI_IVMD_TYPE_ALL
:
2219 s
= "IVMD_TYPE_ALL\t\t";
2221 e
->devid_end
= amd_iommu_last_bdf
;
2223 case ACPI_IVMD_TYPE_RANGE
:
2224 s
= "IVMD_TYPE_RANGE\t\t";
2225 e
->devid_start
= m
->devid
;
2226 e
->devid_end
= m
->aux
;
2229 e
->address_start
= PAGE_ALIGN(m
->range_start
);
2230 e
->address_end
= e
->address_start
+ PAGE_ALIGN(m
->range_length
);
2231 e
->prot
= m
->flags
>> 1;
2234 * Treat per-device exclusion ranges as r/w unity-mapped regions
2235 * since some buggy BIOSes might lead to the overwritten exclusion
2236 * range (exclusion_start and exclusion_length members). This
2237 * happens when there are multiple exclusion ranges (IVMD entries)
2238 * defined in ACPI table.
2240 if (m
->flags
& IVMD_FLAG_EXCL_RANGE
)
2241 e
->prot
= (IVMD_FLAG_IW
| IVMD_FLAG_IR
) >> 1;
2243 DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2244 " range_start: %016llx range_end: %016llx flags: %x\n", s
,
2245 PCI_BUS_NUM(e
->devid_start
), PCI_SLOT(e
->devid_start
),
2246 PCI_FUNC(e
->devid_start
), PCI_BUS_NUM(e
->devid_end
),
2247 PCI_SLOT(e
->devid_end
), PCI_FUNC(e
->devid_end
),
2248 e
->address_start
, e
->address_end
, m
->flags
);
2250 list_add_tail(&e
->list
, &amd_iommu_unity_map
);
2255 /* iterates over all memory definitions we find in the ACPI table */
2256 static int __init
init_memory_definitions(struct acpi_table_header
*table
)
2258 u8
*p
= (u8
*)table
, *end
= (u8
*)table
;
2259 struct ivmd_header
*m
;
2261 end
+= table
->length
;
2262 p
+= IVRS_HEADER_LENGTH
;
2265 m
= (struct ivmd_header
*)p
;
2266 if (m
->flags
& (IVMD_FLAG_UNITY_MAP
| IVMD_FLAG_EXCL_RANGE
))
2267 init_unity_map_range(m
);
2276 * Init the device table to not allow DMA access for devices
2278 static void init_device_table_dma(void)
2282 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
) {
2283 set_dev_entry_bit(devid
, DEV_ENTRY_VALID
);
2284 set_dev_entry_bit(devid
, DEV_ENTRY_TRANSLATION
);
2288 static void __init
uninit_device_table_dma(void)
2292 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
) {
2293 amd_iommu_dev_table
[devid
].data
[0] = 0ULL;
2294 amd_iommu_dev_table
[devid
].data
[1] = 0ULL;
2298 static void init_device_table(void)
2302 if (!amd_iommu_irq_remap
)
2305 for (devid
= 0; devid
<= amd_iommu_last_bdf
; ++devid
)
2306 set_dev_entry_bit(devid
, DEV_ENTRY_IRQ_TBL_EN
);
2309 static void iommu_init_flags(struct amd_iommu
*iommu
)
2311 iommu
->acpi_flags
& IVHD_FLAG_HT_TUN_EN_MASK
?
2312 iommu_feature_enable(iommu
, CONTROL_HT_TUN_EN
) :
2313 iommu_feature_disable(iommu
, CONTROL_HT_TUN_EN
);
2315 iommu
->acpi_flags
& IVHD_FLAG_PASSPW_EN_MASK
?
2316 iommu_feature_enable(iommu
, CONTROL_PASSPW_EN
) :
2317 iommu_feature_disable(iommu
, CONTROL_PASSPW_EN
);
2319 iommu
->acpi_flags
& IVHD_FLAG_RESPASSPW_EN_MASK
?
2320 iommu_feature_enable(iommu
, CONTROL_RESPASSPW_EN
) :
2321 iommu_feature_disable(iommu
, CONTROL_RESPASSPW_EN
);
2323 iommu
->acpi_flags
& IVHD_FLAG_ISOC_EN_MASK
?
2324 iommu_feature_enable(iommu
, CONTROL_ISOC_EN
) :
2325 iommu_feature_disable(iommu
, CONTROL_ISOC_EN
);
2328 * make IOMMU memory accesses cache coherent
2330 iommu_feature_enable(iommu
, CONTROL_COHERENT_EN
);
2332 /* Set IOTLB invalidation timeout to 1s */
2333 iommu_set_inv_tlb_timeout(iommu
, CTRL_INV_TO_1S
);
2336 static void iommu_apply_resume_quirks(struct amd_iommu
*iommu
)
2339 u32 ioc_feature_control
;
2340 struct pci_dev
*pdev
= iommu
->root_pdev
;
2342 /* RD890 BIOSes may not have completely reconfigured the iommu */
2343 if (!is_rd890_iommu(iommu
->dev
) || !pdev
)
2347 * First, we need to ensure that the iommu is enabled. This is
2348 * controlled by a register in the northbridge
2351 /* Select Northbridge indirect register 0x75 and enable writing */
2352 pci_write_config_dword(pdev
, 0x60, 0x75 | (1 << 7));
2353 pci_read_config_dword(pdev
, 0x64, &ioc_feature_control
);
2355 /* Enable the iommu */
2356 if (!(ioc_feature_control
& 0x1))
2357 pci_write_config_dword(pdev
, 0x64, ioc_feature_control
| 1);
2359 /* Restore the iommu BAR */
2360 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
2361 iommu
->stored_addr_lo
);
2362 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 8,
2363 iommu
->stored_addr_hi
);
2365 /* Restore the l1 indirect regs for each of the 6 l1s */
2366 for (i
= 0; i
< 6; i
++)
2367 for (j
= 0; j
< 0x12; j
++)
2368 iommu_write_l1(iommu
, i
, j
, iommu
->stored_l1
[i
][j
]);
2370 /* Restore the l2 indirect regs */
2371 for (i
= 0; i
< 0x83; i
++)
2372 iommu_write_l2(iommu
, i
, iommu
->stored_l2
[i
]);
2374 /* Lock PCI setup registers */
2375 pci_write_config_dword(iommu
->dev
, iommu
->cap_ptr
+ 4,
2376 iommu
->stored_addr_lo
| 1);
2379 static void iommu_enable_ga(struct amd_iommu
*iommu
)
2381 #ifdef CONFIG_IRQ_REMAP
2382 switch (amd_iommu_guest_ir
) {
2383 case AMD_IOMMU_GUEST_IR_VAPIC
:
2384 iommu_feature_enable(iommu
, CONTROL_GAM_EN
);
2386 case AMD_IOMMU_GUEST_IR_LEGACY_GA
:
2387 iommu_feature_enable(iommu
, CONTROL_GA_EN
);
2388 iommu
->irte_ops
= &irte_128_ops
;
2391 iommu
->irte_ops
= &irte_32_ops
;
2397 static void early_enable_iommu(struct amd_iommu
*iommu
)
2399 iommu_disable(iommu
);
2400 iommu_init_flags(iommu
);
2401 iommu_set_device_table(iommu
);
2402 iommu_enable_command_buffer(iommu
);
2403 iommu_enable_event_buffer(iommu
);
2404 iommu_set_exclusion_range(iommu
);
2405 iommu_enable_ga(iommu
);
2406 iommu_enable_xt(iommu
);
2407 iommu_enable(iommu
);
2408 iommu_flush_all_caches(iommu
);
2412 * This function finally enables all IOMMUs found in the system after
2413 * they have been initialized.
2415 * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2416 * the old content of device table entries. Not this case or copy failed,
2417 * just continue as normal kernel does.
2419 static void early_enable_iommus(void)
2421 struct amd_iommu
*iommu
;
2424 if (!copy_device_table()) {
2426 * If come here because of failure in copying device table from old
2427 * kernel with all IOMMUs enabled, print error message and try to
2428 * free allocated old_dev_tbl_cpy.
2430 if (amd_iommu_pre_enabled
)
2431 pr_err("Failed to copy DEV table from previous kernel.\n");
2432 if (old_dev_tbl_cpy
!= NULL
)
2433 free_pages((unsigned long)old_dev_tbl_cpy
,
2434 get_order(dev_table_size
));
2436 for_each_iommu(iommu
) {
2437 clear_translation_pre_enabled(iommu
);
2438 early_enable_iommu(iommu
);
2441 pr_info("Copied DEV table from previous kernel.\n");
2442 free_pages((unsigned long)amd_iommu_dev_table
,
2443 get_order(dev_table_size
));
2444 amd_iommu_dev_table
= old_dev_tbl_cpy
;
2445 for_each_iommu(iommu
) {
2446 iommu_disable_command_buffer(iommu
);
2447 iommu_disable_event_buffer(iommu
);
2448 iommu_enable_command_buffer(iommu
);
2449 iommu_enable_event_buffer(iommu
);
2450 iommu_enable_ga(iommu
);
2451 iommu_enable_xt(iommu
);
2452 iommu_set_device_table(iommu
);
2453 iommu_flush_all_caches(iommu
);
2457 #ifdef CONFIG_IRQ_REMAP
2458 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir
))
2459 amd_iommu_irq_ops
.capability
|= (1 << IRQ_POSTING_CAP
);
2463 static void enable_iommus_v2(void)
2465 struct amd_iommu
*iommu
;
2467 for_each_iommu(iommu
) {
2468 iommu_enable_ppr_log(iommu
);
2469 iommu_enable_gt(iommu
);
2473 static void enable_iommus(void)
2475 early_enable_iommus();
2480 static void disable_iommus(void)
2482 struct amd_iommu
*iommu
;
2484 for_each_iommu(iommu
)
2485 iommu_disable(iommu
);
2487 #ifdef CONFIG_IRQ_REMAP
2488 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir
))
2489 amd_iommu_irq_ops
.capability
&= ~(1 << IRQ_POSTING_CAP
);
2494 * Suspend/Resume support
2495 * disable suspend until real resume implemented
2498 static void amd_iommu_resume(void)
2500 struct amd_iommu
*iommu
;
2502 for_each_iommu(iommu
)
2503 iommu_apply_resume_quirks(iommu
);
2505 /* re-load the hardware */
2508 amd_iommu_enable_interrupts();
2511 static int amd_iommu_suspend(void)
2513 /* disable IOMMUs to go out of the way for BIOS */
2519 static struct syscore_ops amd_iommu_syscore_ops
= {
2520 .suspend
= amd_iommu_suspend
,
2521 .resume
= amd_iommu_resume
,
2524 static void __init
free_iommu_resources(void)
2526 kmemleak_free(irq_lookup_table
);
2527 free_pages((unsigned long)irq_lookup_table
,
2528 get_order(rlookup_table_size
));
2529 irq_lookup_table
= NULL
;
2531 kmem_cache_destroy(amd_iommu_irq_cache
);
2532 amd_iommu_irq_cache
= NULL
;
2534 free_pages((unsigned long)amd_iommu_rlookup_table
,
2535 get_order(rlookup_table_size
));
2536 amd_iommu_rlookup_table
= NULL
;
2538 free_pages((unsigned long)amd_iommu_alias_table
,
2539 get_order(alias_table_size
));
2540 amd_iommu_alias_table
= NULL
;
2542 free_pages((unsigned long)amd_iommu_dev_table
,
2543 get_order(dev_table_size
));
2544 amd_iommu_dev_table
= NULL
;
2549 /* SB IOAPIC is always on this device in AMD systems */
2550 #define IOAPIC_SB_DEVID ((0x00 << 8) | PCI_DEVFN(0x14, 0))
2552 static bool __init
check_ioapic_information(void)
2554 const char *fw_bug
= FW_BUG
;
2555 bool ret
, has_sb_ioapic
;
2558 has_sb_ioapic
= false;
2562 * If we have map overrides on the kernel command line the
2563 * messages in this function might not describe firmware bugs
2564 * anymore - so be careful
2569 for (idx
= 0; idx
< nr_ioapics
; idx
++) {
2570 int devid
, id
= mpc_ioapic_id(idx
);
2572 devid
= get_ioapic_devid(id
);
2574 pr_err("%s: IOAPIC[%d] not in IVRS table\n",
2577 } else if (devid
== IOAPIC_SB_DEVID
) {
2578 has_sb_ioapic
= true;
2583 if (!has_sb_ioapic
) {
2585 * We expect the SB IOAPIC to be listed in the IVRS
2586 * table. The system timer is connected to the SB IOAPIC
2587 * and if we don't have it in the list the system will
2588 * panic at boot time. This situation usually happens
2589 * when the BIOS is buggy and provides us the wrong
2590 * device id for the IOAPIC in the system.
2592 pr_err("%s: No southbridge IOAPIC found\n", fw_bug
);
2596 pr_err("Disabling interrupt remapping\n");
2601 static void __init
free_dma_resources(void)
2603 free_pages((unsigned long)amd_iommu_pd_alloc_bitmap
,
2604 get_order(MAX_DOMAIN_ID
/8));
2605 amd_iommu_pd_alloc_bitmap
= NULL
;
2611 * This is the hardware init function for AMD IOMMU in the system.
2612 * This function is called either from amd_iommu_init or from the interrupt
2613 * remapping setup code.
2615 * This function basically parses the ACPI table for AMD IOMMU (IVRS)
2618 * 1 pass) Discover the most comprehensive IVHD type to use.
2620 * 2 pass) Find the highest PCI device id the driver has to handle.
2621 * Upon this information the size of the data structures is
2622 * determined that needs to be allocated.
2624 * 3 pass) Initialize the data structures just allocated with the
2625 * information in the ACPI table about available AMD IOMMUs
2626 * in the system. It also maps the PCI devices in the
2627 * system to specific IOMMUs
2629 * 4 pass) After the basic data structures are allocated and
2630 * initialized we update them with information about memory
2631 * remapping requirements parsed out of the ACPI table in
2634 * After everything is set up the IOMMUs are enabled and the necessary
2635 * hotplug and suspend notifiers are registered.
2637 static int __init
early_amd_iommu_init(void)
2639 struct acpi_table_header
*ivrs_base
;
2641 int i
, remap_cache_sz
, ret
= 0;
2644 if (!amd_iommu_detected
)
2647 status
= acpi_get_table("IVRS", 0, &ivrs_base
);
2648 if (status
== AE_NOT_FOUND
)
2650 else if (ACPI_FAILURE(status
)) {
2651 const char *err
= acpi_format_exception(status
);
2652 pr_err("IVRS table error: %s\n", err
);
2657 * Validate checksum here so we don't need to do it when
2658 * we actually parse the table
2660 ret
= check_ivrs_checksum(ivrs_base
);
2664 amd_iommu_target_ivhd_type
= get_highest_supported_ivhd_type(ivrs_base
);
2665 DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type
);
2668 * First parse ACPI tables to find the largest Bus/Dev/Func
2669 * we need to handle. Upon this information the shared data
2670 * structures for the IOMMUs in the system will be allocated
2672 ret
= find_last_devid_acpi(ivrs_base
);
2676 dev_table_size
= tbl_size(DEV_TABLE_ENTRY_SIZE
);
2677 alias_table_size
= tbl_size(ALIAS_TABLE_ENTRY_SIZE
);
2678 rlookup_table_size
= tbl_size(RLOOKUP_TABLE_ENTRY_SIZE
);
2680 /* Device table - directly used by all IOMMUs */
2682 amd_iommu_dev_table
= (void *)__get_free_pages(
2683 GFP_KERNEL
| __GFP_ZERO
| GFP_DMA32
,
2684 get_order(dev_table_size
));
2685 if (amd_iommu_dev_table
== NULL
)
2689 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2690 * IOMMU see for that device
2692 amd_iommu_alias_table
= (void *)__get_free_pages(GFP_KERNEL
,
2693 get_order(alias_table_size
));
2694 if (amd_iommu_alias_table
== NULL
)
2697 /* IOMMU rlookup table - find the IOMMU for a specific device */
2698 amd_iommu_rlookup_table
= (void *)__get_free_pages(
2699 GFP_KERNEL
| __GFP_ZERO
,
2700 get_order(rlookup_table_size
));
2701 if (amd_iommu_rlookup_table
== NULL
)
2704 amd_iommu_pd_alloc_bitmap
= (void *)__get_free_pages(
2705 GFP_KERNEL
| __GFP_ZERO
,
2706 get_order(MAX_DOMAIN_ID
/8));
2707 if (amd_iommu_pd_alloc_bitmap
== NULL
)
2711 * let all alias entries point to itself
2713 for (i
= 0; i
<= amd_iommu_last_bdf
; ++i
)
2714 amd_iommu_alias_table
[i
] = i
;
2717 * never allocate domain 0 because its used as the non-allocated and
2718 * error value placeholder
2720 __set_bit(0, amd_iommu_pd_alloc_bitmap
);
2723 * now the data structures are allocated and basically initialized
2724 * start the real acpi table scan
2726 ret
= init_iommu_all(ivrs_base
);
2730 /* Disable IOMMU if there's Stoney Ridge graphics */
2731 for (i
= 0; i
< 32; i
++) {
2732 pci_id
= read_pci_config(0, i
, 0, 0);
2733 if ((pci_id
& 0xffff) == 0x1002 && (pci_id
>> 16) == 0x98e4) {
2734 pr_info("Disable IOMMU on Stoney Ridge\n");
2735 amd_iommu_disabled
= true;
2740 /* Disable any previously enabled IOMMUs */
2741 if (!is_kdump_kernel() || amd_iommu_disabled
)
2744 if (amd_iommu_irq_remap
)
2745 amd_iommu_irq_remap
= check_ioapic_information();
2747 if (amd_iommu_irq_remap
) {
2749 * Interrupt remapping enabled, create kmem_cache for the
2753 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir
))
2754 remap_cache_sz
= MAX_IRQS_PER_TABLE
* sizeof(u32
);
2756 remap_cache_sz
= MAX_IRQS_PER_TABLE
* (sizeof(u64
) * 2);
2757 amd_iommu_irq_cache
= kmem_cache_create("irq_remap_cache",
2759 DTE_INTTAB_ALIGNMENT
,
2761 if (!amd_iommu_irq_cache
)
2764 irq_lookup_table
= (void *)__get_free_pages(
2765 GFP_KERNEL
| __GFP_ZERO
,
2766 get_order(rlookup_table_size
));
2767 kmemleak_alloc(irq_lookup_table
, rlookup_table_size
,
2769 if (!irq_lookup_table
)
2773 ret
= init_memory_definitions(ivrs_base
);
2777 /* init the device table */
2778 init_device_table();
2781 /* Don't leak any ACPI memory */
2782 acpi_put_table(ivrs_base
);
2788 static int amd_iommu_enable_interrupts(void)
2790 struct amd_iommu
*iommu
;
2793 for_each_iommu(iommu
) {
2794 ret
= iommu_init_irq(iommu
);
2803 static bool detect_ivrs(void)
2805 struct acpi_table_header
*ivrs_base
;
2808 status
= acpi_get_table("IVRS", 0, &ivrs_base
);
2809 if (status
== AE_NOT_FOUND
)
2811 else if (ACPI_FAILURE(status
)) {
2812 const char *err
= acpi_format_exception(status
);
2813 pr_err("IVRS table error: %s\n", err
);
2817 acpi_put_table(ivrs_base
);
2819 /* Make sure ACS will be enabled during PCI probe */
2825 /****************************************************************************
2827 * AMD IOMMU Initialization State Machine
2829 ****************************************************************************/
2831 static int __init
state_next(void)
2835 switch (init_state
) {
2836 case IOMMU_START_STATE
:
2837 if (!detect_ivrs()) {
2838 init_state
= IOMMU_NOT_FOUND
;
2841 init_state
= IOMMU_IVRS_DETECTED
;
2844 case IOMMU_IVRS_DETECTED
:
2845 ret
= early_amd_iommu_init();
2846 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_ACPI_FINISHED
;
2847 if (init_state
== IOMMU_ACPI_FINISHED
&& amd_iommu_disabled
) {
2848 pr_info("AMD IOMMU disabled\n");
2849 init_state
= IOMMU_CMDLINE_DISABLED
;
2853 case IOMMU_ACPI_FINISHED
:
2854 early_enable_iommus();
2855 x86_platform
.iommu_shutdown
= disable_iommus
;
2856 init_state
= IOMMU_ENABLED
;
2859 register_syscore_ops(&amd_iommu_syscore_ops
);
2860 ret
= amd_iommu_init_pci();
2861 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_PCI_INIT
;
2864 case IOMMU_PCI_INIT
:
2865 ret
= amd_iommu_enable_interrupts();
2866 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_INTERRUPTS_EN
;
2868 case IOMMU_INTERRUPTS_EN
:
2869 ret
= amd_iommu_init_dma_ops();
2870 init_state
= ret
? IOMMU_INIT_ERROR
: IOMMU_DMA_OPS
;
2873 init_state
= IOMMU_INITIALIZED
;
2875 case IOMMU_INITIALIZED
:
2878 case IOMMU_NOT_FOUND
:
2879 case IOMMU_INIT_ERROR
:
2880 case IOMMU_CMDLINE_DISABLED
:
2881 /* Error states => do nothing */
2890 free_dma_resources();
2891 if (!irq_remapping_enabled
) {
2893 free_iommu_resources();
2895 struct amd_iommu
*iommu
;
2897 uninit_device_table_dma();
2898 for_each_iommu(iommu
)
2899 iommu_flush_all_caches(iommu
);
2905 static int __init
iommu_go_to_state(enum iommu_init_state state
)
2909 while (init_state
!= state
) {
2910 if (init_state
== IOMMU_NOT_FOUND
||
2911 init_state
== IOMMU_INIT_ERROR
||
2912 init_state
== IOMMU_CMDLINE_DISABLED
)
2920 #ifdef CONFIG_IRQ_REMAP
2921 int __init
amd_iommu_prepare(void)
2925 amd_iommu_irq_remap
= true;
2927 ret
= iommu_go_to_state(IOMMU_ACPI_FINISHED
);
2930 return amd_iommu_irq_remap
? 0 : -ENODEV
;
2933 int __init
amd_iommu_enable(void)
2937 ret
= iommu_go_to_state(IOMMU_ENABLED
);
2941 irq_remapping_enabled
= 1;
2942 return amd_iommu_xt_mode
;
2945 void amd_iommu_disable(void)
2947 amd_iommu_suspend();
2950 int amd_iommu_reenable(int mode
)
2957 int __init
amd_iommu_enable_faulting(void)
2959 /* We enable MSI later when PCI is initialized */
2965 * This is the core init function for AMD IOMMU hardware in the system.
2966 * This function is called from the generic x86 DMA layer initialization
2969 static int __init
amd_iommu_init(void)
2971 struct amd_iommu
*iommu
;
2974 ret
= iommu_go_to_state(IOMMU_INITIALIZED
);
2975 #ifdef CONFIG_GART_IOMMU
2976 if (ret
&& list_empty(&amd_iommu_list
)) {
2978 * We failed to initialize the AMD IOMMU - try fallback
2979 * to GART if possible.
2985 for_each_iommu(iommu
)
2986 amd_iommu_debugfs_setup(iommu
);
2991 static bool amd_iommu_sme_check(void)
2993 if (!sme_active() || (boot_cpu_data
.x86
!= 0x17))
2996 /* For Fam17h, a specific level of support is required */
2997 if (boot_cpu_data
.microcode
>= 0x08001205)
3000 if ((boot_cpu_data
.microcode
>= 0x08001126) &&
3001 (boot_cpu_data
.microcode
<= 0x080011ff))
3004 pr_notice("IOMMU not currently supported when SME is active\n");
3009 /****************************************************************************
3011 * Early detect code. This code runs at IOMMU detection time in the DMA
3012 * layer. It just looks if there is an IVRS ACPI table to detect AMD
3015 ****************************************************************************/
3016 int __init
amd_iommu_detect(void)
3020 if (no_iommu
|| (iommu_detected
&& !gart_iommu_aperture
))
3023 if (!amd_iommu_sme_check())
3026 ret
= iommu_go_to_state(IOMMU_IVRS_DETECTED
);
3030 amd_iommu_detected
= true;
3032 x86_init
.iommu
.iommu_init
= amd_iommu_init
;
3037 /****************************************************************************
3039 * Parsing functions for the AMD IOMMU specific kernel command line
3042 ****************************************************************************/
3044 static int __init
parse_amd_iommu_dump(char *str
)
3046 amd_iommu_dump
= true;
3051 static int __init
parse_amd_iommu_intr(char *str
)
3053 for (; *str
; ++str
) {
3054 if (strncmp(str
, "legacy", 6) == 0) {
3055 amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_LEGACY_GA
;
3058 if (strncmp(str
, "vapic", 5) == 0) {
3059 amd_iommu_guest_ir
= AMD_IOMMU_GUEST_IR_VAPIC
;
3066 static int __init
parse_amd_iommu_options(char *str
)
3068 for (; *str
; ++str
) {
3069 if (strncmp(str
, "fullflush", 9) == 0)
3070 amd_iommu_unmap_flush
= true;
3071 if (strncmp(str
, "off", 3) == 0)
3072 amd_iommu_disabled
= true;
3073 if (strncmp(str
, "force_isolation", 15) == 0)
3074 amd_iommu_force_isolation
= true;
3080 static int __init
parse_ivrs_ioapic(char *str
)
3082 unsigned int bus
, dev
, fn
;
3086 ret
= sscanf(str
, "[%d]=%x:%x.%x", &id
, &bus
, &dev
, &fn
);
3089 pr_err("Invalid command line: ivrs_ioapic%s\n", str
);
3093 if (early_ioapic_map_size
== EARLY_MAP_SIZE
) {
3094 pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
3099 devid
= ((bus
& 0xff) << 8) | ((dev
& 0x1f) << 3) | (fn
& 0x7);
3101 cmdline_maps
= true;
3102 i
= early_ioapic_map_size
++;
3103 early_ioapic_map
[i
].id
= id
;
3104 early_ioapic_map
[i
].devid
= devid
;
3105 early_ioapic_map
[i
].cmd_line
= true;
3110 static int __init
parse_ivrs_hpet(char *str
)
3112 unsigned int bus
, dev
, fn
;
3116 ret
= sscanf(str
, "[%d]=%x:%x.%x", &id
, &bus
, &dev
, &fn
);
3119 pr_err("Invalid command line: ivrs_hpet%s\n", str
);
3123 if (early_hpet_map_size
== EARLY_MAP_SIZE
) {
3124 pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
3129 devid
= ((bus
& 0xff) << 8) | ((dev
& 0x1f) << 3) | (fn
& 0x7);
3131 cmdline_maps
= true;
3132 i
= early_hpet_map_size
++;
3133 early_hpet_map
[i
].id
= id
;
3134 early_hpet_map
[i
].devid
= devid
;
3135 early_hpet_map
[i
].cmd_line
= true;
3140 static int __init
parse_ivrs_acpihid(char *str
)
3143 char *hid
, *uid
, *p
;
3144 char acpiid
[ACPIHID_UID_LEN
+ ACPIHID_HID_LEN
] = {0};
3147 ret
= sscanf(str
, "[%x:%x.%x]=%s", &bus
, &dev
, &fn
, acpiid
);
3149 pr_err("Invalid command line: ivrs_acpihid(%s)\n", str
);
3154 hid
= strsep(&p
, ":");
3157 if (!hid
|| !(*hid
) || !uid
) {
3158 pr_err("Invalid command line: hid or uid\n");
3162 i
= early_acpihid_map_size
++;
3163 memcpy(early_acpihid_map
[i
].hid
, hid
, strlen(hid
));
3164 memcpy(early_acpihid_map
[i
].uid
, uid
, strlen(uid
));
3165 early_acpihid_map
[i
].devid
=
3166 ((bus
& 0xff) << 8) | ((dev
& 0x1f) << 3) | (fn
& 0x7);
3167 early_acpihid_map
[i
].cmd_line
= true;
3172 __setup("amd_iommu_dump", parse_amd_iommu_dump
);
3173 __setup("amd_iommu=", parse_amd_iommu_options
);
3174 __setup("amd_iommu_intr=", parse_amd_iommu_intr
);
3175 __setup("ivrs_ioapic", parse_ivrs_ioapic
);
3176 __setup("ivrs_hpet", parse_ivrs_hpet
);
3177 __setup("ivrs_acpihid", parse_ivrs_acpihid
);
3179 IOMMU_INIT_FINISH(amd_iommu_detect
,
3180 gart_iommu_hole_init
,
3184 bool amd_iommu_v2_supported(void)
3186 return amd_iommu_v2_present
;
3188 EXPORT_SYMBOL(amd_iommu_v2_supported
);
3190 struct amd_iommu
*get_amd_iommu(unsigned int idx
)
3193 struct amd_iommu
*iommu
;
3195 for_each_iommu(iommu
)
3200 EXPORT_SYMBOL(get_amd_iommu
);
3202 /****************************************************************************
3204 * IOMMU EFR Performance Counter support functionality. This code allows
3205 * access to the IOMMU PC functionality.
3207 ****************************************************************************/
3209 u8
amd_iommu_pc_get_max_banks(unsigned int idx
)
3211 struct amd_iommu
*iommu
= get_amd_iommu(idx
);
3214 return iommu
->max_banks
;
3218 EXPORT_SYMBOL(amd_iommu_pc_get_max_banks
);
3220 bool amd_iommu_pc_supported(void)
3222 return amd_iommu_pc_present
;
3224 EXPORT_SYMBOL(amd_iommu_pc_supported
);
3226 u8
amd_iommu_pc_get_max_counters(unsigned int idx
)
3228 struct amd_iommu
*iommu
= get_amd_iommu(idx
);
3231 return iommu
->max_counters
;
3235 EXPORT_SYMBOL(amd_iommu_pc_get_max_counters
);
3237 static int iommu_pc_get_set_reg(struct amd_iommu
*iommu
, u8 bank
, u8 cntr
,
3238 u8 fxn
, u64
*value
, bool is_write
)
3243 /* Make sure the IOMMU PC resource is available */
3244 if (!amd_iommu_pc_present
)
3247 /* Check for valid iommu and pc register indexing */
3248 if (WARN_ON(!iommu
|| (fxn
> 0x28) || (fxn
& 7)))
3251 offset
= (u32
)(((0x40 | bank
) << 12) | (cntr
<< 8) | fxn
);
3253 /* Limit the offset to the hw defined mmio region aperture */
3254 max_offset_lim
= (u32
)(((0x40 | iommu
->max_banks
) << 12) |
3255 (iommu
->max_counters
<< 8) | 0x28);
3256 if ((offset
< MMIO_CNTR_REG_OFFSET
) ||
3257 (offset
> max_offset_lim
))
3261 u64 val
= *value
& GENMASK_ULL(47, 0);
3263 writel((u32
)val
, iommu
->mmio_base
+ offset
);
3264 writel((val
>> 32), iommu
->mmio_base
+ offset
+ 4);
3266 *value
= readl(iommu
->mmio_base
+ offset
+ 4);
3268 *value
|= readl(iommu
->mmio_base
+ offset
);
3269 *value
&= GENMASK_ULL(47, 0);
3275 int amd_iommu_pc_get_reg(struct amd_iommu
*iommu
, u8 bank
, u8 cntr
, u8 fxn
, u64
*value
)
3280 return iommu_pc_get_set_reg(iommu
, bank
, cntr
, fxn
, value
, false);
3282 EXPORT_SYMBOL(amd_iommu_pc_get_reg
);
3284 int amd_iommu_pc_set_reg(struct amd_iommu
*iommu
, u8 bank
, u8 cntr
, u8 fxn
, u64
*value
)
3289 return iommu_pc_get_set_reg(iommu
, bank
, cntr
, fxn
, value
, true);
3291 EXPORT_SYMBOL(amd_iommu_pc_set_reg
);