xref: /openbmc/linux/drivers/iommu/amd/init.c (revision 8b8f095b)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
4  * Author: Joerg Roedel <jroedel@suse.de>
5  *         Leo Duran <leo.duran@amd.com>
6  */
7 
8 #define pr_fmt(fmt)     "AMD-Vi: " fmt
9 #define dev_fmt(fmt)    pr_fmt(fmt)
10 
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>
26 #include <asm/apic.h>
27 #include <asm/gart.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>
33 
34 #include <linux/crash_dump.h>
35 
36 #include "amd_iommu.h"
37 #include "../irq_remapping.h"
38 
39 /*
40  * definitions for the ACPI scanning code
41  */
42 #define IVRS_HEADER_LENGTH 48
43 
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
48 
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
59 
60 #define UID_NOT_PRESENT                 0
61 #define UID_IS_INTEGER                  1
62 #define UID_IS_CHARACTER                2
63 
64 #define IVHD_SPECIAL_IOAPIC		1
65 #define IVHD_SPECIAL_HPET		2
66 
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
71 
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
76 
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
85 
86 #define LOOP_TIMEOUT	100000
87 /*
88  * ACPI table definitions
89  *
90  * These data structures are laid over the table to parse the important values
91  * out of it.
92  */
93 
94 extern const struct iommu_ops amd_iommu_ops;
95 
96 /*
97  * structure describing one IOMMU in the ACPI table. Typically followed by one
98  * or more ivhd_entrys.
99  */
100 struct ivhd_header {
101 	u8 type;
102 	u8 flags;
103 	u16 length;
104 	u16 devid;
105 	u16 cap_ptr;
106 	u64 mmio_phys;
107 	u16 pci_seg;
108 	u16 info;
109 	u32 efr_attr;
110 
111 	/* Following only valid on IVHD type 11h and 40h */
112 	u64 efr_reg; /* Exact copy of MMIO_EXT_FEATURES */
113 	u64 res;
114 } __attribute__((packed));
115 
116 /*
117  * A device entry describing which devices a specific IOMMU translates and
118  * which requestor ids they use.
119  */
120 struct ivhd_entry {
121 	u8 type;
122 	u16 devid;
123 	u8 flags;
124 	u32 ext;
125 	u32 hidh;
126 	u64 cid;
127 	u8 uidf;
128 	u8 uidl;
129 	u8 uid;
130 } __attribute__((packed));
131 
132 /*
133  * An AMD IOMMU memory definition structure. It defines things like exclusion
134  * ranges for devices and regions that should be unity mapped.
135  */
136 struct ivmd_header {
137 	u8 type;
138 	u8 flags;
139 	u16 length;
140 	u16 devid;
141 	u16 aux;
142 	u64 resv;
143 	u64 range_start;
144 	u64 range_length;
145 } __attribute__((packed));
146 
147 bool amd_iommu_dump;
148 bool amd_iommu_irq_remap __read_mostly;
149 
150 int amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
151 static int amd_iommu_xt_mode = IRQ_REMAP_XAPIC_MODE;
152 
153 static bool amd_iommu_detected;
154 static bool __initdata amd_iommu_disabled;
155 static int amd_iommu_target_ivhd_type;
156 
157 u16 amd_iommu_last_bdf;			/* largest PCI device id we have
158 					   to handle */
159 LIST_HEAD(amd_iommu_unity_map);		/* a list of required unity mappings
160 					   we find in ACPI */
161 bool amd_iommu_unmap_flush;		/* if true, flush on every unmap */
162 
163 LIST_HEAD(amd_iommu_list);		/* list of all AMD IOMMUs in the
164 					   system */
165 
166 /* Array to assign indices to IOMMUs*/
167 struct amd_iommu *amd_iommus[MAX_IOMMUS];
168 
169 /* Number of IOMMUs present in the system */
170 static int amd_iommus_present;
171 
172 /* IOMMUs have a non-present cache? */
173 bool amd_iommu_np_cache __read_mostly;
174 bool amd_iommu_iotlb_sup __read_mostly = true;
175 
176 u32 amd_iommu_max_pasid __read_mostly = ~0;
177 
178 bool amd_iommu_v2_present __read_mostly;
179 static bool amd_iommu_pc_present __read_mostly;
180 
181 bool amd_iommu_force_isolation __read_mostly;
182 
183 /*
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.
188  */
189 struct dev_table_entry *amd_iommu_dev_table;
190 /*
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.
193  */
194 static struct dev_table_entry *old_dev_tbl_cpy;
195 
196 /*
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.
200  */
201 u16 *amd_iommu_alias_table;
202 
203 /*
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.
206  */
207 struct amd_iommu **amd_iommu_rlookup_table;
208 EXPORT_SYMBOL(amd_iommu_rlookup_table);
209 
210 /*
211  * This table is used to find the irq remapping table for a given device id
212  * quickly.
213  */
214 struct irq_remap_table **irq_lookup_table;
215 
216 /*
217  * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
218  * to know which ones are already in use.
219  */
220 unsigned long *amd_iommu_pd_alloc_bitmap;
221 
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 */
225 
226 enum iommu_init_state {
227 	IOMMU_START_STATE,
228 	IOMMU_IVRS_DETECTED,
229 	IOMMU_ACPI_FINISHED,
230 	IOMMU_ENABLED,
231 	IOMMU_PCI_INIT,
232 	IOMMU_INTERRUPTS_EN,
233 	IOMMU_DMA_OPS,
234 	IOMMU_INITIALIZED,
235 	IOMMU_NOT_FOUND,
236 	IOMMU_INIT_ERROR,
237 	IOMMU_CMDLINE_DISABLED,
238 };
239 
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];
245 
246 static int __initdata early_ioapic_map_size;
247 static int __initdata early_hpet_map_size;
248 static int __initdata early_acpihid_map_size;
249 
250 static bool __initdata cmdline_maps;
251 
252 static enum iommu_init_state init_state = IOMMU_START_STATE;
253 
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);
257 
258 static bool amd_iommu_pre_enabled = true;
259 
260 bool translation_pre_enabled(struct amd_iommu *iommu)
261 {
262 	return (iommu->flags & AMD_IOMMU_FLAG_TRANS_PRE_ENABLED);
263 }
264 EXPORT_SYMBOL(translation_pre_enabled);
265 
266 static void clear_translation_pre_enabled(struct amd_iommu *iommu)
267 {
268 	iommu->flags &= ~AMD_IOMMU_FLAG_TRANS_PRE_ENABLED;
269 }
270 
271 static void init_translation_status(struct amd_iommu *iommu)
272 {
273 	u64 ctrl;
274 
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;
278 }
279 
280 static inline void update_last_devid(u16 devid)
281 {
282 	if (devid > amd_iommu_last_bdf)
283 		amd_iommu_last_bdf = devid;
284 }
285 
286 static inline unsigned long tbl_size(int entry_size)
287 {
288 	unsigned shift = PAGE_SHIFT +
289 			 get_order(((int)amd_iommu_last_bdf + 1) * entry_size);
290 
291 	return 1UL << shift;
292 }
293 
294 int amd_iommu_get_num_iommus(void)
295 {
296 	return amd_iommus_present;
297 }
298 
299 /* Access to l1 and l2 indexed register spaces */
300 
301 static u32 iommu_read_l1(struct amd_iommu *iommu, u16 l1, u8 address)
302 {
303 	u32 val;
304 
305 	pci_write_config_dword(iommu->dev, 0xf8, (address | l1 << 16));
306 	pci_read_config_dword(iommu->dev, 0xfc, &val);
307 	return val;
308 }
309 
310 static void iommu_write_l1(struct amd_iommu *iommu, u16 l1, u8 address, u32 val)
311 {
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));
315 }
316 
317 static u32 iommu_read_l2(struct amd_iommu *iommu, u8 address)
318 {
319 	u32 val;
320 
321 	pci_write_config_dword(iommu->dev, 0xf0, address);
322 	pci_read_config_dword(iommu->dev, 0xf4, &val);
323 	return val;
324 }
325 
326 static void iommu_write_l2(struct amd_iommu *iommu, u8 address, u32 val)
327 {
328 	pci_write_config_dword(iommu->dev, 0xf0, (address | 1 << 8));
329 	pci_write_config_dword(iommu->dev, 0xf4, val);
330 }
331 
332 /****************************************************************************
333  *
334  * AMD IOMMU MMIO register space handling functions
335  *
336  * These functions are used to program the IOMMU device registers in
337  * MMIO space required for that driver.
338  *
339  ****************************************************************************/
340 
341 /*
342  * This function set the exclusion range in the IOMMU. DMA accesses to the
343  * exclusion range are passed through untranslated
344  */
345 static void iommu_set_exclusion_range(struct amd_iommu *iommu)
346 {
347 	u64 start = iommu->exclusion_start & PAGE_MASK;
348 	u64 limit = (start + iommu->exclusion_length - 1) & PAGE_MASK;
349 	u64 entry;
350 
351 	if (!iommu->exclusion_start)
352 		return;
353 
354 	entry = start | MMIO_EXCL_ENABLE_MASK;
355 	memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
356 			&entry, sizeof(entry));
357 
358 	entry = limit;
359 	memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
360 			&entry, sizeof(entry));
361 }
362 
363 static void iommu_set_cwwb_range(struct amd_iommu *iommu)
364 {
365 	u64 start = iommu_virt_to_phys((void *)iommu->cmd_sem);
366 	u64 entry = start & PM_ADDR_MASK;
367 
368 	if (!iommu_feature(iommu, FEATURE_SNP))
369 		return;
370 
371 	/* Note:
372 	 * Re-purpose Exclusion base/limit registers for Completion wait
373 	 * write-back base/limit.
374 	 */
375 	memcpy_toio(iommu->mmio_base + MMIO_EXCL_BASE_OFFSET,
376 		    &entry, sizeof(entry));
377 
378 	/* Note:
379 	 * Default to 4 Kbytes, which can be specified by setting base
380 	 * address equal to the limit address.
381 	 */
382 	memcpy_toio(iommu->mmio_base + MMIO_EXCL_LIMIT_OFFSET,
383 		    &entry, sizeof(entry));
384 }
385 
386 /* Programs the physical address of the device table into the IOMMU hardware */
387 static void iommu_set_device_table(struct amd_iommu *iommu)
388 {
389 	u64 entry;
390 
391 	BUG_ON(iommu->mmio_base == NULL);
392 
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));
397 }
398 
399 /* Generic functions to enable/disable certain features of the IOMMU. */
400 static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
401 {
402 	u64 ctrl;
403 
404 	ctrl = readq(iommu->mmio_base +  MMIO_CONTROL_OFFSET);
405 	ctrl |= (1ULL << bit);
406 	writeq(ctrl, iommu->mmio_base +  MMIO_CONTROL_OFFSET);
407 }
408 
409 static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
410 {
411 	u64 ctrl;
412 
413 	ctrl = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
414 	ctrl &= ~(1ULL << bit);
415 	writeq(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
416 }
417 
418 static void iommu_set_inv_tlb_timeout(struct amd_iommu *iommu, int timeout)
419 {
420 	u64 ctrl;
421 
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);
426 }
427 
428 /* Function to enable the hardware */
429 static void iommu_enable(struct amd_iommu *iommu)
430 {
431 	iommu_feature_enable(iommu, CONTROL_IOMMU_EN);
432 }
433 
434 static void iommu_disable(struct amd_iommu *iommu)
435 {
436 	if (!iommu->mmio_base)
437 		return;
438 
439 	/* Disable command buffer */
440 	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
441 
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);
445 
446 	/* Disable IOMMU GA_LOG */
447 	iommu_feature_disable(iommu, CONTROL_GALOG_EN);
448 	iommu_feature_disable(iommu, CONTROL_GAINT_EN);
449 
450 	/* Disable IOMMU hardware itself */
451 	iommu_feature_disable(iommu, CONTROL_IOMMU_EN);
452 }
453 
454 /*
455  * mapping and unmapping functions for the IOMMU MMIO space. Each AMD IOMMU in
456  * the system has one.
457  */
458 static u8 __iomem * __init iommu_map_mmio_space(u64 address, u64 end)
459 {
460 	if (!request_mem_region(address, end, "amd_iommu")) {
461 		pr_err("Can not reserve memory region %llx-%llx for mmio\n",
462 			address, end);
463 		pr_err("This is a BIOS bug. Please contact your hardware vendor\n");
464 		return NULL;
465 	}
466 
467 	return (u8 __iomem *)ioremap(address, end);
468 }
469 
470 static void __init iommu_unmap_mmio_space(struct amd_iommu *iommu)
471 {
472 	if (iommu->mmio_base)
473 		iounmap(iommu->mmio_base);
474 	release_mem_region(iommu->mmio_phys, iommu->mmio_phys_end);
475 }
476 
477 static inline u32 get_ivhd_header_size(struct ivhd_header *h)
478 {
479 	u32 size = 0;
480 
481 	switch (h->type) {
482 	case 0x10:
483 		size = 24;
484 		break;
485 	case 0x11:
486 	case 0x40:
487 		size = 40;
488 		break;
489 	}
490 	return size;
491 }
492 
493 /****************************************************************************
494  *
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.
499  *
500  ****************************************************************************/
501 
502 /*
503  * This function calculates the length of a given IVHD entry
504  */
505 static inline int ivhd_entry_length(u8 *ivhd)
506 {
507 	u32 type = ((struct ivhd_entry *)ivhd)->type;
508 
509 	if (type < 0x80) {
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;
514 	}
515 	return 0;
516 }
517 
518 /*
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
521  */
522 static int __init find_last_devid_from_ivhd(struct ivhd_header *h)
523 {
524 	u8 *p = (void *)h, *end = (void *)h;
525 	struct ivhd_entry *dev;
526 
527 	u32 ivhd_size = get_ivhd_header_size(h);
528 
529 	if (!ivhd_size) {
530 		pr_err("Unsupported IVHD type %#x\n", h->type);
531 		return -EINVAL;
532 	}
533 
534 	p += ivhd_size;
535 	end += h->length;
536 
537 	while (p < end) {
538 		dev = (struct ivhd_entry *)p;
539 		switch (dev->type) {
540 		case IVHD_DEV_ALL:
541 			/* Use maximum BDF value for DEV_ALL */
542 			update_last_devid(0xffff);
543 			break;
544 		case IVHD_DEV_SELECT:
545 		case IVHD_DEV_RANGE_END:
546 		case IVHD_DEV_ALIAS:
547 		case IVHD_DEV_EXT_SELECT:
548 			/* all the above subfield types refer to device ids */
549 			update_last_devid(dev->devid);
550 			break;
551 		default:
552 			break;
553 		}
554 		p += ivhd_entry_length(p);
555 	}
556 
557 	WARN_ON(p != end);
558 
559 	return 0;
560 }
561 
562 static int __init check_ivrs_checksum(struct acpi_table_header *table)
563 {
564 	int i;
565 	u8 checksum = 0, *p = (u8 *)table;
566 
567 	for (i = 0; i < table->length; ++i)
568 		checksum += p[i];
569 	if (checksum != 0) {
570 		/* ACPI table corrupt */
571 		pr_err(FW_BUG "IVRS invalid checksum\n");
572 		return -ENODEV;
573 	}
574 
575 	return 0;
576 }
577 
578 /*
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.
582  */
583 static int __init find_last_devid_acpi(struct acpi_table_header *table)
584 {
585 	u8 *p = (u8 *)table, *end = (u8 *)table;
586 	struct ivhd_header *h;
587 
588 	p += IVRS_HEADER_LENGTH;
589 
590 	end += table->length;
591 	while (p < end) {
592 		h = (struct ivhd_header *)p;
593 		if (h->type == amd_iommu_target_ivhd_type) {
594 			int ret = find_last_devid_from_ivhd(h);
595 
596 			if (ret)
597 				return ret;
598 		}
599 		p += h->length;
600 	}
601 	WARN_ON(p != end);
602 
603 	return 0;
604 }
605 
606 /****************************************************************************
607  *
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.
612  *
613  ****************************************************************************/
614 
615 /*
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
618  * asynchronously
619  */
620 static int __init alloc_command_buffer(struct amd_iommu *iommu)
621 {
622 	iommu->cmd_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
623 						  get_order(CMD_BUFFER_SIZE));
624 
625 	return iommu->cmd_buf ? 0 : -ENOMEM;
626 }
627 
628 /*
629  * This function resets the command buffer if the IOMMU stopped fetching
630  * commands from it.
631  */
632 void amd_iommu_reset_cmd_buffer(struct amd_iommu *iommu)
633 {
634 	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
635 
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;
640 
641 	iommu_feature_enable(iommu, CONTROL_CMDBUF_EN);
642 }
643 
644 /*
645  * This function writes the command buffer address to the hardware and
646  * enables it.
647  */
648 static void iommu_enable_command_buffer(struct amd_iommu *iommu)
649 {
650 	u64 entry;
651 
652 	BUG_ON(iommu->cmd_buf == NULL);
653 
654 	entry = iommu_virt_to_phys(iommu->cmd_buf);
655 	entry |= MMIO_CMD_SIZE_512;
656 
657 	memcpy_toio(iommu->mmio_base + MMIO_CMD_BUF_OFFSET,
658 		    &entry, sizeof(entry));
659 
660 	amd_iommu_reset_cmd_buffer(iommu);
661 }
662 
663 /*
664  * This function disables the command buffer
665  */
666 static void iommu_disable_command_buffer(struct amd_iommu *iommu)
667 {
668 	iommu_feature_disable(iommu, CONTROL_CMDBUF_EN);
669 }
670 
671 static void __init free_command_buffer(struct amd_iommu *iommu)
672 {
673 	free_pages((unsigned long)iommu->cmd_buf, get_order(CMD_BUFFER_SIZE));
674 }
675 
676 static void *__init iommu_alloc_4k_pages(struct amd_iommu *iommu,
677 					 gfp_t gfp, size_t size)
678 {
679 	int order = get_order(size);
680 	void *buf = (void *)__get_free_pages(gfp, order);
681 
682 	if (buf &&
683 	    iommu_feature(iommu, FEATURE_SNP) &&
684 	    set_memory_4k((unsigned long)buf, (1 << order))) {
685 		free_pages((unsigned long)buf, order);
686 		buf = NULL;
687 	}
688 
689 	return buf;
690 }
691 
692 /* allocates the memory where the IOMMU will log its events to */
693 static int __init alloc_event_buffer(struct amd_iommu *iommu)
694 {
695 	iommu->evt_buf = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
696 					      EVT_BUFFER_SIZE);
697 
698 	return iommu->evt_buf ? 0 : -ENOMEM;
699 }
700 
701 static void iommu_enable_event_buffer(struct amd_iommu *iommu)
702 {
703 	u64 entry;
704 
705 	BUG_ON(iommu->evt_buf == NULL);
706 
707 	entry = iommu_virt_to_phys(iommu->evt_buf) | EVT_LEN_MASK;
708 
709 	memcpy_toio(iommu->mmio_base + MMIO_EVT_BUF_OFFSET,
710 		    &entry, sizeof(entry));
711 
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);
715 
716 	iommu_feature_enable(iommu, CONTROL_EVT_LOG_EN);
717 }
718 
719 /*
720  * This function disables the event log buffer
721  */
722 static void iommu_disable_event_buffer(struct amd_iommu *iommu)
723 {
724 	iommu_feature_disable(iommu, CONTROL_EVT_LOG_EN);
725 }
726 
727 static void __init free_event_buffer(struct amd_iommu *iommu)
728 {
729 	free_pages((unsigned long)iommu->evt_buf, get_order(EVT_BUFFER_SIZE));
730 }
731 
732 /* allocates the memory where the IOMMU will log its events to */
733 static int __init alloc_ppr_log(struct amd_iommu *iommu)
734 {
735 	iommu->ppr_log = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO,
736 					      PPR_LOG_SIZE);
737 
738 	return iommu->ppr_log ? 0 : -ENOMEM;
739 }
740 
741 static void iommu_enable_ppr_log(struct amd_iommu *iommu)
742 {
743 	u64 entry;
744 
745 	if (iommu->ppr_log == NULL)
746 		return;
747 
748 	entry = iommu_virt_to_phys(iommu->ppr_log) | PPR_LOG_SIZE_512;
749 
750 	memcpy_toio(iommu->mmio_base + MMIO_PPR_LOG_OFFSET,
751 		    &entry, sizeof(entry));
752 
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);
756 
757 	iommu_feature_enable(iommu, CONTROL_PPRLOG_EN);
758 	iommu_feature_enable(iommu, CONTROL_PPR_EN);
759 }
760 
761 static void __init free_ppr_log(struct amd_iommu *iommu)
762 {
763 	free_pages((unsigned long)iommu->ppr_log, get_order(PPR_LOG_SIZE));
764 }
765 
766 static void free_ga_log(struct amd_iommu *iommu)
767 {
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));
771 #endif
772 }
773 
774 static int iommu_ga_log_enable(struct amd_iommu *iommu)
775 {
776 #ifdef CONFIG_IRQ_REMAP
777 	u32 status, i;
778 
779 	if (!iommu->ga_log)
780 		return -EINVAL;
781 
782 	status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
783 
784 	/* Check if already running */
785 	if (status & (MMIO_STATUS_GALOG_RUN_MASK))
786 		return 0;
787 
788 	iommu_feature_enable(iommu, CONTROL_GAINT_EN);
789 	iommu_feature_enable(iommu, CONTROL_GALOG_EN);
790 
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))
794 			break;
795 	}
796 
797 	if (i >= LOOP_TIMEOUT)
798 		return -EINVAL;
799 #endif /* CONFIG_IRQ_REMAP */
800 	return 0;
801 }
802 
803 #ifdef CONFIG_IRQ_REMAP
804 static int iommu_init_ga_log(struct amd_iommu *iommu)
805 {
806 	u64 entry;
807 
808 	if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
809 		return 0;
810 
811 	iommu->ga_log = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
812 					get_order(GA_LOG_SIZE));
813 	if (!iommu->ga_log)
814 		goto err_out;
815 
816 	iommu->ga_log_tail = (u8 *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
817 					get_order(8));
818 	if (!iommu->ga_log_tail)
819 		goto err_out;
820 
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);
830 
831 	return 0;
832 err_out:
833 	free_ga_log(iommu);
834 	return -EINVAL;
835 }
836 #endif /* CONFIG_IRQ_REMAP */
837 
838 static int iommu_init_ga(struct amd_iommu *iommu)
839 {
840 	int ret = 0;
841 
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.
845 	 */
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;
849 
850 	ret = iommu_init_ga_log(iommu);
851 #endif /* CONFIG_IRQ_REMAP */
852 
853 	return ret;
854 }
855 
856 static int __init alloc_cwwb_sem(struct amd_iommu *iommu)
857 {
858 	iommu->cmd_sem = iommu_alloc_4k_pages(iommu, GFP_KERNEL | __GFP_ZERO, 1);
859 
860 	return iommu->cmd_sem ? 0 : -ENOMEM;
861 }
862 
863 static void __init free_cwwb_sem(struct amd_iommu *iommu)
864 {
865 	if (iommu->cmd_sem)
866 		free_page((unsigned long)iommu->cmd_sem);
867 }
868 
869 static void iommu_enable_xt(struct amd_iommu *iommu)
870 {
871 #ifdef CONFIG_IRQ_REMAP
872 	/*
873 	 * XT mode (32-bit APIC destination ID) requires
874 	 * GA mode (128-bit IRTE support) as a prerequisite.
875 	 */
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 */
880 }
881 
882 static void iommu_enable_gt(struct amd_iommu *iommu)
883 {
884 	if (!iommu_feature(iommu, FEATURE_GT))
885 		return;
886 
887 	iommu_feature_enable(iommu, CONTROL_GT_EN);
888 }
889 
890 /* sets a specific bit in the device table entry. */
891 static void set_dev_entry_bit(u16 devid, u8 bit)
892 {
893 	int i = (bit >> 6) & 0x03;
894 	int _bit = bit & 0x3f;
895 
896 	amd_iommu_dev_table[devid].data[i] |= (1UL << _bit);
897 }
898 
899 static int get_dev_entry_bit(u16 devid, u8 bit)
900 {
901 	int i = (bit >> 6) & 0x03;
902 	int _bit = bit & 0x3f;
903 
904 	return (amd_iommu_dev_table[devid].data[i] & (1UL << _bit)) >> _bit;
905 }
906 
907 
908 static bool copy_device_table(void)
909 {
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;
916 	gfp_t gfp_flag;
917 	u64 tmp;
918 
919 	if (!amd_iommu_pre_enabled)
920 		return false;
921 
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",
930 				iommu->index);
931 			return false;
932 		}
933 		last_entry = entry;
934 
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",
938 				iommu->index);
939 			return false;
940 		}
941 	}
942 
943 	/*
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.
947 	 */
948 	old_devtb_phys = __sme_clr(entry) & PAGE_MASK;
949 
950 	if (old_devtb_phys >= 0x100000000ULL) {
951 		pr_err("The address of old device table is above 4G, not trustworthy!\n");
952 		return false;
953 	}
954 	old_devtb = (sme_active() && is_kdump_kernel())
955 		    ? (__force void *)ioremap_encrypted(old_devtb_phys,
956 							dev_table_size)
957 		    : memremap(old_devtb_phys, dev_table_size, MEMREMAP_WB);
958 
959 	if (!old_devtb)
960 		return false;
961 
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");
967 		return false;
968 	}
969 
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;
974 
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;
985 				tmp |= DTE_FLAG_GV;
986 				old_dev_tbl_cpy[devid].data[0] &= ~tmp;
987 			}
988 		}
989 
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);
997 				return false;
998 			}
999 
1000 		        old_dev_tbl_cpy[devid].data[2] = old_devtb[devid].data[2];
1001 		}
1002 	}
1003 	memunmap(old_devtb);
1004 
1005 	return true;
1006 }
1007 
1008 void amd_iommu_apply_erratum_63(u16 devid)
1009 {
1010 	int sysmgt;
1011 
1012 	sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) |
1013 		 (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1);
1014 
1015 	if (sysmgt == 0x01)
1016 		set_dev_entry_bit(devid, DEV_ENTRY_IW);
1017 }
1018 
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)
1021 {
1022 	amd_iommu_rlookup_table[devid] = iommu;
1023 }
1024 
1025 /*
1026  * This function takes the device specific flags read from the ACPI
1027  * table and sets up the device table entry with that information
1028  */
1029 static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu,
1030 					   u16 devid, u32 flags, u32 ext_flags)
1031 {
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);
1046 
1047 	amd_iommu_apply_erratum_63(devid);
1048 
1049 	set_iommu_for_device(iommu, devid);
1050 }
1051 
1052 int __init add_special_device(u8 type, u8 id, u16 *devid, bool cmd_line)
1053 {
1054 	struct devid_map *entry;
1055 	struct list_head *list;
1056 
1057 	if (type == IVHD_SPECIAL_IOAPIC)
1058 		list = &ioapic_map;
1059 	else if (type == IVHD_SPECIAL_HPET)
1060 		list = &hpet_map;
1061 	else
1062 		return -EINVAL;
1063 
1064 	list_for_each_entry(entry, list, list) {
1065 		if (!(entry->id == id && entry->cmd_line))
1066 			continue;
1067 
1068 		pr_info("Command-line override present for %s id %d - ignoring\n",
1069 			type == IVHD_SPECIAL_IOAPIC ? "IOAPIC" : "HPET", id);
1070 
1071 		*devid = entry->devid;
1072 
1073 		return 0;
1074 	}
1075 
1076 	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1077 	if (!entry)
1078 		return -ENOMEM;
1079 
1080 	entry->id	= id;
1081 	entry->devid	= *devid;
1082 	entry->cmd_line	= cmd_line;
1083 
1084 	list_add_tail(&entry->list, list);
1085 
1086 	return 0;
1087 }
1088 
1089 static int __init add_acpi_hid_device(u8 *hid, u8 *uid, u16 *devid,
1090 				      bool cmd_line)
1091 {
1092 	struct acpihid_map_entry *entry;
1093 	struct list_head *list = &acpihid_map;
1094 
1095 	list_for_each_entry(entry, list, list) {
1096 		if (strcmp(entry->hid, hid) ||
1097 		    (*uid && *entry->uid && strcmp(entry->uid, uid)) ||
1098 		    !entry->cmd_line)
1099 			continue;
1100 
1101 		pr_info("Command-line override for hid:%s uid:%s\n",
1102 			hid, uid);
1103 		*devid = entry->devid;
1104 		return 0;
1105 	}
1106 
1107 	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1108 	if (!entry)
1109 		return -ENOMEM;
1110 
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));
1116 
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);
1120 
1121 	list_add_tail(&entry->list, list);
1122 	return 0;
1123 }
1124 
1125 static int __init add_early_maps(void)
1126 {
1127 	int i, ret;
1128 
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);
1134 		if (ret)
1135 			return ret;
1136 	}
1137 
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);
1143 		if (ret)
1144 			return ret;
1145 	}
1146 
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);
1152 		if (ret)
1153 			return ret;
1154 	}
1155 
1156 	return 0;
1157 }
1158 
1159 /*
1160  * Takes a pointer to an AMD IOMMU entry in the ACPI table and
1161  * initializes the hardware and our data structures with it.
1162  */
1163 static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
1164 					struct ivhd_header *h)
1165 {
1166 	u8 *p = (u8 *)h;
1167 	u8 *end = p, flags = 0;
1168 	u16 devid = 0, devid_start = 0, devid_to = 0;
1169 	u32 dev_i, ext_flags = 0;
1170 	bool alias = false;
1171 	struct ivhd_entry *e;
1172 	u32 ivhd_size;
1173 	int ret;
1174 
1175 
1176 	ret = add_early_maps();
1177 	if (ret)
1178 		return ret;
1179 
1180 	amd_iommu_apply_ivrs_quirks();
1181 
1182 	/*
1183 	 * First save the recommended feature enable bits from ACPI
1184 	 */
1185 	iommu->acpi_flags = h->flags;
1186 
1187 	/*
1188 	 * Done. Now parse the device entries
1189 	 */
1190 	ivhd_size = get_ivhd_header_size(h);
1191 	if (!ivhd_size) {
1192 		pr_err("Unsupported IVHD type %#x\n", h->type);
1193 		return -EINVAL;
1194 	}
1195 
1196 	p += ivhd_size;
1197 
1198 	end += h->length;
1199 
1200 
1201 	while (p < end) {
1202 		e = (struct ivhd_entry *)p;
1203 		switch (e->type) {
1204 		case IVHD_DEV_ALL:
1205 
1206 			DUMP_printk("  DEV_ALL\t\t\tflags: %02x\n", e->flags);
1207 
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);
1210 			break;
1211 		case IVHD_DEV_SELECT:
1212 
1213 			DUMP_printk("  DEV_SELECT\t\t\t devid: %02x:%02x.%x "
1214 				    "flags: %02x\n",
1215 				    PCI_BUS_NUM(e->devid),
1216 				    PCI_SLOT(e->devid),
1217 				    PCI_FUNC(e->devid),
1218 				    e->flags);
1219 
1220 			devid = e->devid;
1221 			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1222 			break;
1223 		case IVHD_DEV_SELECT_RANGE_START:
1224 
1225 			DUMP_printk("  DEV_SELECT_RANGE_START\t "
1226 				    "devid: %02x:%02x.%x flags: %02x\n",
1227 				    PCI_BUS_NUM(e->devid),
1228 				    PCI_SLOT(e->devid),
1229 				    PCI_FUNC(e->devid),
1230 				    e->flags);
1231 
1232 			devid_start = e->devid;
1233 			flags = e->flags;
1234 			ext_flags = 0;
1235 			alias = false;
1236 			break;
1237 		case IVHD_DEV_ALIAS:
1238 
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),
1242 				    PCI_SLOT(e->devid),
1243 				    PCI_FUNC(e->devid),
1244 				    e->flags,
1245 				    PCI_BUS_NUM(e->ext >> 8),
1246 				    PCI_SLOT(e->ext >> 8),
1247 				    PCI_FUNC(e->ext >> 8));
1248 
1249 			devid = e->devid;
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;
1254 			break;
1255 		case IVHD_DEV_ALIAS_RANGE:
1256 
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),
1261 				    PCI_SLOT(e->devid),
1262 				    PCI_FUNC(e->devid),
1263 				    e->flags,
1264 				    PCI_BUS_NUM(e->ext >> 8),
1265 				    PCI_SLOT(e->ext >> 8),
1266 				    PCI_FUNC(e->ext >> 8));
1267 
1268 			devid_start = e->devid;
1269 			flags = e->flags;
1270 			devid_to = e->ext >> 8;
1271 			ext_flags = 0;
1272 			alias = true;
1273 			break;
1274 		case IVHD_DEV_EXT_SELECT:
1275 
1276 			DUMP_printk("  DEV_EXT_SELECT\t\t devid: %02x:%02x.%x "
1277 				    "flags: %02x ext: %08x\n",
1278 				    PCI_BUS_NUM(e->devid),
1279 				    PCI_SLOT(e->devid),
1280 				    PCI_FUNC(e->devid),
1281 				    e->flags, e->ext);
1282 
1283 			devid = e->devid;
1284 			set_dev_entry_from_acpi(iommu, devid, e->flags,
1285 						e->ext);
1286 			break;
1287 		case IVHD_DEV_EXT_SELECT_RANGE:
1288 
1289 			DUMP_printk("  DEV_EXT_SELECT_RANGE\t devid: "
1290 				    "%02x:%02x.%x flags: %02x ext: %08x\n",
1291 				    PCI_BUS_NUM(e->devid),
1292 				    PCI_SLOT(e->devid),
1293 				    PCI_FUNC(e->devid),
1294 				    e->flags, e->ext);
1295 
1296 			devid_start = e->devid;
1297 			flags = e->flags;
1298 			ext_flags = e->ext;
1299 			alias = false;
1300 			break;
1301 		case IVHD_DEV_RANGE_END:
1302 
1303 			DUMP_printk("  DEV_RANGE_END\t\t devid: %02x:%02x.%x\n",
1304 				    PCI_BUS_NUM(e->devid),
1305 				    PCI_SLOT(e->devid),
1306 				    PCI_FUNC(e->devid));
1307 
1308 			devid = e->devid;
1309 			for (dev_i = devid_start; dev_i <= devid; ++dev_i) {
1310 				if (alias) {
1311 					amd_iommu_alias_table[dev_i] = devid_to;
1312 					set_dev_entry_from_acpi(iommu,
1313 						devid_to, flags, ext_flags);
1314 				}
1315 				set_dev_entry_from_acpi(iommu, dev_i,
1316 							flags, ext_flags);
1317 			}
1318 			break;
1319 		case IVHD_DEV_SPECIAL: {
1320 			u8 handle, type;
1321 			const char *var;
1322 			u16 devid;
1323 			int ret;
1324 
1325 			handle = e->ext & 0xff;
1326 			devid  = (e->ext >>  8) & 0xffff;
1327 			type   = (e->ext >> 24) & 0xff;
1328 
1329 			if (type == IVHD_SPECIAL_IOAPIC)
1330 				var = "IOAPIC";
1331 			else if (type == IVHD_SPECIAL_HPET)
1332 				var = "HPET";
1333 			else
1334 				var = "UNKNOWN";
1335 
1336 			DUMP_printk("  DEV_SPECIAL(%s[%d])\t\tdevid: %02x:%02x.%x\n",
1337 				    var, (int)handle,
1338 				    PCI_BUS_NUM(devid),
1339 				    PCI_SLOT(devid),
1340 				    PCI_FUNC(devid));
1341 
1342 			ret = add_special_device(type, handle, &devid, false);
1343 			if (ret)
1344 				return ret;
1345 
1346 			/*
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.
1350 			 */
1351 			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1352 
1353 			break;
1354 		}
1355 		case IVHD_DEV_ACPI_HID: {
1356 			u16 devid;
1357 			u8 hid[ACPIHID_HID_LEN];
1358 			u8 uid[ACPIHID_UID_LEN];
1359 			int ret;
1360 
1361 			if (h->type != 0x40) {
1362 				pr_err(FW_BUG "Invalid IVHD device type %#x\n",
1363 				       e->type);
1364 				break;
1365 			}
1366 
1367 			memcpy(hid, (u8 *)(&e->ext), ACPIHID_HID_LEN - 1);
1368 			hid[ACPIHID_HID_LEN - 1] = '\0';
1369 
1370 			if (!(*hid)) {
1371 				pr_err(FW_BUG "Invalid HID.\n");
1372 				break;
1373 			}
1374 
1375 			uid[0] = '\0';
1376 			switch (e->uidf) {
1377 			case UID_NOT_PRESENT:
1378 
1379 				if (e->uidl != 0)
1380 					pr_warn(FW_BUG "Invalid UID length.\n");
1381 
1382 				break;
1383 			case UID_IS_INTEGER:
1384 
1385 				sprintf(uid, "%d", e->uid);
1386 
1387 				break;
1388 			case UID_IS_CHARACTER:
1389 
1390 				memcpy(uid, &e->uid, e->uidl);
1391 				uid[e->uidl] = '\0';
1392 
1393 				break;
1394 			default:
1395 				break;
1396 			}
1397 
1398 			devid = e->devid;
1399 			DUMP_printk("  DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
1400 				    hid, uid,
1401 				    PCI_BUS_NUM(devid),
1402 				    PCI_SLOT(devid),
1403 				    PCI_FUNC(devid));
1404 
1405 			flags = e->flags;
1406 
1407 			ret = add_acpi_hid_device(hid, uid, &devid, false);
1408 			if (ret)
1409 				return ret;
1410 
1411 			/*
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.
1415 			 */
1416 			set_dev_entry_from_acpi(iommu, devid, e->flags, 0);
1417 
1418 			break;
1419 		}
1420 		default:
1421 			break;
1422 		}
1423 
1424 		p += ivhd_entry_length(p);
1425 	}
1426 
1427 	return 0;
1428 }
1429 
1430 static void __init free_iommu_one(struct amd_iommu *iommu)
1431 {
1432 	free_cwwb_sem(iommu);
1433 	free_command_buffer(iommu);
1434 	free_event_buffer(iommu);
1435 	free_ppr_log(iommu);
1436 	free_ga_log(iommu);
1437 	iommu_unmap_mmio_space(iommu);
1438 }
1439 
1440 static void __init free_iommu_all(void)
1441 {
1442 	struct amd_iommu *iommu, *next;
1443 
1444 	for_each_iommu_safe(iommu, next) {
1445 		list_del(&iommu->list);
1446 		free_iommu_one(iommu);
1447 		kfree(iommu);
1448 	}
1449 }
1450 
1451 /*
1452  * Family15h Model 10h-1fh erratum 746 (IOMMU Logging May Stall Translations)
1453  * Workaround:
1454  *     BIOS should disable L2B micellaneous clock gating by setting
1455  *     L2_L2B_CK_GATE_CONTROL[CKGateL2BMiscDisable](D0F2xF4_x90[2]) = 1b
1456  */
1457 static void amd_iommu_erratum_746_workaround(struct amd_iommu *iommu)
1458 {
1459 	u32 value;
1460 
1461 	if ((boot_cpu_data.x86 != 0x15) ||
1462 	    (boot_cpu_data.x86_model < 0x10) ||
1463 	    (boot_cpu_data.x86_model > 0x1f))
1464 		return;
1465 
1466 	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1467 	pci_read_config_dword(iommu->dev, 0xf4, &value);
1468 
1469 	if (value & BIT(2))
1470 		return;
1471 
1472 	/* Select NB indirect register 0x90 and enable writing */
1473 	pci_write_config_dword(iommu->dev, 0xf0, 0x90 | (1 << 8));
1474 
1475 	pci_write_config_dword(iommu->dev, 0xf4, value | 0x4);
1476 	pci_info(iommu->dev, "Applying erratum 746 workaround\n");
1477 
1478 	/* Clear the enable writing bit */
1479 	pci_write_config_dword(iommu->dev, 0xf0, 0x90);
1480 }
1481 
1482 /*
1483  * Family15h Model 30h-3fh (IOMMU Mishandles ATS Write Permission)
1484  * Workaround:
1485  *     BIOS should enable ATS write permission check by setting
1486  *     L2_DEBUG_3[AtsIgnoreIWDis](D0F2xF4_x47[0]) = 1b
1487  */
1488 static void amd_iommu_ats_write_check_workaround(struct amd_iommu *iommu)
1489 {
1490 	u32 value;
1491 
1492 	if ((boot_cpu_data.x86 != 0x15) ||
1493 	    (boot_cpu_data.x86_model < 0x30) ||
1494 	    (boot_cpu_data.x86_model > 0x3f))
1495 		return;
1496 
1497 	/* Test L2_DEBUG_3[AtsIgnoreIWDis] == 1 */
1498 	value = iommu_read_l2(iommu, 0x47);
1499 
1500 	if (value & BIT(0))
1501 		return;
1502 
1503 	/* Set L2_DEBUG_3[AtsIgnoreIWDis] = 1 */
1504 	iommu_write_l2(iommu, 0x47, value | BIT(0));
1505 
1506 	pci_info(iommu->dev, "Applying ATS write check workaround\n");
1507 }
1508 
1509 /*
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.
1513  */
1514 static int __init init_iommu_one(struct amd_iommu *iommu, struct ivhd_header *h)
1515 {
1516 	int ret;
1517 
1518 	raw_spin_lock_init(&iommu->lock);
1519 	iommu->cmd_sem_val = 0;
1520 
1521 	/* Add IOMMU to internal data structures */
1522 	list_add_tail(&iommu->list, &amd_iommu_list);
1523 	iommu->index = amd_iommus_present++;
1524 
1525 	if (unlikely(iommu->index >= MAX_IOMMUS)) {
1526 		WARN(1, "System has more IOMMUs than supported by this driver\n");
1527 		return -ENOSYS;
1528 	}
1529 
1530 	/* Index is fine - add IOMMU to the array */
1531 	amd_iommus[iommu->index] = iommu;
1532 
1533 	/*
1534 	 * Copy data from ACPI table entry to the iommu struct
1535 	 */
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;
1540 
1541 	switch (h->type) {
1542 	case 0x10:
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;
1548 		else
1549 			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1550 
1551 		/*
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.
1555 		 */
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;
1559 		break;
1560 	case 0x11:
1561 	case 0x40:
1562 		if (h->efr_reg & (1 << 9))
1563 			iommu->mmio_phys_end = MMIO_REG_END_OFFSET;
1564 		else
1565 			iommu->mmio_phys_end = MMIO_CNTR_CONF_OFFSET;
1566 
1567 		/*
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.
1571 		 */
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;
1575 			break;
1576 		}
1577 
1578 		if (h->efr_reg & BIT(IOMMU_EFR_XTSUP_SHIFT))
1579 			amd_iommu_xt_mode = IRQ_REMAP_X2APIC_MODE;
1580 		break;
1581 	default:
1582 		return -EINVAL;
1583 	}
1584 
1585 	iommu->mmio_base = iommu_map_mmio_space(iommu->mmio_phys,
1586 						iommu->mmio_phys_end);
1587 	if (!iommu->mmio_base)
1588 		return -ENOMEM;
1589 
1590 	if (alloc_cwwb_sem(iommu))
1591 		return -ENOMEM;
1592 
1593 	if (alloc_command_buffer(iommu))
1594 		return -ENOMEM;
1595 
1596 	if (alloc_event_buffer(iommu))
1597 		return -ENOMEM;
1598 
1599 	iommu->int_enabled = false;
1600 
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",
1606 			iommu->index);
1607 	}
1608 	if (amd_iommu_pre_enabled)
1609 		amd_iommu_pre_enabled = translation_pre_enabled(iommu);
1610 
1611 	ret = init_iommu_from_acpi(iommu, h);
1612 	if (ret)
1613 		return ret;
1614 
1615 	if (amd_iommu_irq_remap) {
1616 		ret = amd_iommu_create_irq_domain(iommu);
1617 		if (ret)
1618 			return ret;
1619 	}
1620 
1621 	/*
1622 	 * Make sure IOMMU is not considered to translate itself. The IVRS
1623 	 * table tells us so, but this is a lie!
1624 	 */
1625 	amd_iommu_rlookup_table[iommu->devid] = NULL;
1626 
1627 	return 0;
1628 }
1629 
1630 /**
1631  * get_highest_supported_ivhd_type - Look up the appropriate IVHD type
1632  * @ivrs: Pointer to the IVRS header
1633  *
1634  * This function search through all IVDB of the maximum supported IVHD
1635  */
1636 static u8 get_highest_supported_ivhd_type(struct acpi_table_header *ivrs)
1637 {
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;
1643 
1644 	while (((u8 *)ivhd - base < ivrs->length) &&
1645 	       (ivhd->type <= ACPI_IVHD_TYPE_MAX_SUPPORTED)) {
1646 		u8 *p = (u8 *) ivhd;
1647 
1648 		if (ivhd->devid == devid)
1649 			last_type = ivhd->type;
1650 		ivhd = (struct ivhd_header *)(p + ivhd->length);
1651 	}
1652 
1653 	return last_type;
1654 }
1655 
1656 /*
1657  * Iterates over all IOMMU entries in the ACPI table, allocates the
1658  * IOMMU structure and initializes it with init_iommu_one()
1659  */
1660 static int __init init_iommu_all(struct acpi_table_header *table)
1661 {
1662 	u8 *p = (u8 *)table, *end = (u8 *)table;
1663 	struct ivhd_header *h;
1664 	struct amd_iommu *iommu;
1665 	int ret;
1666 
1667 	end += table->length;
1668 	p += IVRS_HEADER_LENGTH;
1669 
1670 	while (p < end) {
1671 		h = (struct ivhd_header *)p;
1672 		if (*p == amd_iommu_target_ivhd_type) {
1673 
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",
1680 				    h->mmio_phys);
1681 
1682 			iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
1683 			if (iommu == NULL)
1684 				return -ENOMEM;
1685 
1686 			ret = init_iommu_one(iommu, h);
1687 			if (ret)
1688 				return ret;
1689 		}
1690 		p += h->length;
1691 
1692 	}
1693 	WARN_ON(p != end);
1694 
1695 	return 0;
1696 }
1697 
1698 static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
1699 				u8 fxn, u64 *value, bool is_write);
1700 
1701 static void init_iommu_perf_ctr(struct amd_iommu *iommu)
1702 {
1703 	struct pci_dev *pdev = iommu->dev;
1704 	u64 val = 0xabcd, val2 = 0, save_reg = 0;
1705 
1706 	if (!iommu_feature(iommu, FEATURE_PC))
1707 		return;
1708 
1709 	amd_iommu_pc_present = true;
1710 
1711 	/* save the value to restore, if writable */
1712 	if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, false))
1713 		goto pc_false;
1714 
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)) ||
1718 	    (val != val2))
1719 		goto pc_false;
1720 
1721 	/* restore */
1722 	if (iommu_pc_get_set_reg(iommu, 0, 0, 0, &save_reg, true))
1723 		goto pc_false;
1724 
1725 	pci_info(pdev, "IOMMU performance counters supported\n");
1726 
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);
1730 
1731 	return;
1732 
1733 pc_false:
1734 	pci_err(pdev, "Unable to read/write to IOMMU perf counter.\n");
1735 	amd_iommu_pc_present = false;
1736 	return;
1737 }
1738 
1739 static ssize_t amd_iommu_show_cap(struct device *dev,
1740 				  struct device_attribute *attr,
1741 				  char *buf)
1742 {
1743 	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1744 	return sprintf(buf, "%x\n", iommu->cap);
1745 }
1746 static DEVICE_ATTR(cap, S_IRUGO, amd_iommu_show_cap, NULL);
1747 
1748 static ssize_t amd_iommu_show_features(struct device *dev,
1749 				       struct device_attribute *attr,
1750 				       char *buf)
1751 {
1752 	struct amd_iommu *iommu = dev_to_amd_iommu(dev);
1753 	return sprintf(buf, "%llx\n", iommu->features);
1754 }
1755 static DEVICE_ATTR(features, S_IRUGO, amd_iommu_show_features, NULL);
1756 
1757 static struct attribute *amd_iommu_attrs[] = {
1758 	&dev_attr_cap.attr,
1759 	&dev_attr_features.attr,
1760 	NULL,
1761 };
1762 
1763 static struct attribute_group amd_iommu_group = {
1764 	.name = "amd-iommu",
1765 	.attrs = amd_iommu_attrs,
1766 };
1767 
1768 static const struct attribute_group *amd_iommu_groups[] = {
1769 	&amd_iommu_group,
1770 	NULL,
1771 };
1772 
1773 static int __init iommu_init_pci(struct amd_iommu *iommu)
1774 {
1775 	int cap_ptr = iommu->cap_ptr;
1776 	int ret;
1777 
1778 	iommu->dev = pci_get_domain_bus_and_slot(0, PCI_BUS_NUM(iommu->devid),
1779 						 iommu->devid & 0xff);
1780 	if (!iommu->dev)
1781 		return -ENODEV;
1782 
1783 	/* Prevent binding other PCI device drivers to IOMMU devices */
1784 	iommu->dev->match_driver = false;
1785 
1786 	pci_read_config_dword(iommu->dev, cap_ptr + MMIO_CAP_HDR_OFFSET,
1787 			      &iommu->cap);
1788 
1789 	if (!(iommu->cap & (1 << IOMMU_CAP_IOTLB)))
1790 		amd_iommu_iotlb_sup = false;
1791 
1792 	/* read extended feature bits */
1793 	iommu->features = readq(iommu->mmio_base + MMIO_EXT_FEATURES);
1794 
1795 	if (iommu_feature(iommu, FEATURE_GT)) {
1796 		int glxval;
1797 		u32 max_pasid;
1798 		u64 pasmax;
1799 
1800 		pasmax = iommu->features & FEATURE_PASID_MASK;
1801 		pasmax >>= FEATURE_PASID_SHIFT;
1802 		max_pasid  = (1 << (pasmax + 1)) - 1;
1803 
1804 		amd_iommu_max_pasid = min(amd_iommu_max_pasid, max_pasid);
1805 
1806 		BUG_ON(amd_iommu_max_pasid & ~PASID_MASK);
1807 
1808 		glxval   = iommu->features & FEATURE_GLXVAL_MASK;
1809 		glxval >>= FEATURE_GLXVAL_SHIFT;
1810 
1811 		if (amd_iommu_max_glx_val == -1)
1812 			amd_iommu_max_glx_val = glxval;
1813 		else
1814 			amd_iommu_max_glx_val = min(amd_iommu_max_glx_val, glxval);
1815 	}
1816 
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;
1821 	}
1822 
1823 	if (iommu_feature(iommu, FEATURE_PPR) && alloc_ppr_log(iommu))
1824 		return -ENOMEM;
1825 
1826 	ret = iommu_init_ga(iommu);
1827 	if (ret)
1828 		return ret;
1829 
1830 	if (iommu->cap & (1UL << IOMMU_CAP_NPCACHE))
1831 		amd_iommu_np_cache = true;
1832 
1833 	init_iommu_perf_ctr(iommu);
1834 
1835 	if (is_rd890_iommu(iommu->dev)) {
1836 		int i, j;
1837 
1838 		iommu->root_pdev =
1839 			pci_get_domain_bus_and_slot(0, iommu->dev->bus->number,
1840 						    PCI_DEVFN(0, 0));
1841 
1842 		/*
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
1846 		 */
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);
1851 
1852 		/* Low bit locks writes to configuration space */
1853 		iommu->stored_addr_lo &= ~1;
1854 
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);
1858 
1859 		for (i = 0; i < 0x83; i++)
1860 			iommu->stored_l2[i] = iommu_read_l2(iommu, i);
1861 	}
1862 
1863 	amd_iommu_erratum_746_workaround(iommu);
1864 	amd_iommu_ats_write_check_workaround(iommu);
1865 
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);
1870 
1871 	return pci_enable_device(iommu->dev);
1872 }
1873 
1874 static void print_iommu_info(void)
1875 {
1876 	static const char * const feat_str[] = {
1877 		"PreF", "PPR", "X2APIC", "NX", "GT", "[5]",
1878 		"IA", "GA", "HE", "PC"
1879 	};
1880 	struct amd_iommu *iommu;
1881 
1882 	for_each_iommu(iommu) {
1883 		struct pci_dev *pdev = iommu->dev;
1884 		int i;
1885 
1886 		pci_info(pdev, "Found IOMMU cap 0x%hx\n", iommu->cap_ptr);
1887 
1888 		if (iommu->cap & (1 << IOMMU_CAP_EFR)) {
1889 			pci_info(pdev, "Extended features (%#llx):",
1890 				 iommu->features);
1891 			for (i = 0; i < ARRAY_SIZE(feat_str); ++i) {
1892 				if (iommu_feature(iommu, (1ULL << i)))
1893 					pr_cont(" %s", feat_str[i]);
1894 			}
1895 
1896 			if (iommu->features & FEATURE_GAM_VAPIC)
1897 				pr_cont(" GA_vAPIC");
1898 
1899 			pr_cont("\n");
1900 		}
1901 	}
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");
1908 	}
1909 }
1910 
1911 static int __init amd_iommu_init_pci(void)
1912 {
1913 	struct amd_iommu *iommu;
1914 	int ret = 0;
1915 
1916 	for_each_iommu(iommu) {
1917 		ret = iommu_init_pci(iommu);
1918 		if (ret)
1919 			break;
1920 
1921 		/* Need to setup range after PCI init */
1922 		iommu_set_cwwb_range(iommu);
1923 	}
1924 
1925 	/*
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.
1929 	 *
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
1933 	 * active.
1934 	 */
1935 	ret = amd_iommu_init_api();
1936 
1937 	init_device_table_dma();
1938 
1939 	for_each_iommu(iommu)
1940 		iommu_flush_all_caches(iommu);
1941 
1942 	if (!ret)
1943 		print_iommu_info();
1944 
1945 	return ret;
1946 }
1947 
1948 /****************************************************************************
1949  *
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
1953  * pci_dev.
1954  *
1955  ****************************************************************************/
1956 
1957 static int iommu_setup_msi(struct amd_iommu *iommu)
1958 {
1959 	int r;
1960 
1961 	r = pci_enable_msi(iommu->dev);
1962 	if (r)
1963 		return r;
1964 
1965 	r = request_threaded_irq(iommu->dev->irq,
1966 				 amd_iommu_int_handler,
1967 				 amd_iommu_int_thread,
1968 				 0, "AMD-Vi",
1969 				 iommu);
1970 
1971 	if (r) {
1972 		pci_disable_msi(iommu->dev);
1973 		return r;
1974 	}
1975 
1976 	iommu->int_enabled = true;
1977 
1978 	return 0;
1979 }
1980 
1981 union intcapxt {
1982 	u64	capxt;
1983 	struct {
1984 		u64	reserved_0		:  2,
1985 			dest_mode_logical	:  1,
1986 			reserved_1		:  5,
1987 			destid_0_23		: 24,
1988 			vector			:  8,
1989 			reserved_2		: 16,
1990 			destid_24_31		:  8;
1991 	};
1992 } __attribute__ ((packed));
1993 
1994 /*
1995  * There isn't really any need to mask/unmask at the irqchip level because
1996  * the 64-bit INTCAPXT registers can be updated atomically without tearing
1997  * when the affinity is being updated.
1998  */
1999 static void intcapxt_unmask_irq(struct irq_data *data)
2000 {
2001 }
2002 
2003 static void intcapxt_mask_irq(struct irq_data *data)
2004 {
2005 }
2006 
2007 static struct irq_chip intcapxt_controller;
2008 
2009 static int intcapxt_irqdomain_activate(struct irq_domain *domain,
2010 				       struct irq_data *irqd, bool reserve)
2011 {
2012 	struct amd_iommu *iommu = irqd->chip_data;
2013 	struct irq_cfg *cfg = irqd_cfg(irqd);
2014 	union intcapxt xt;
2015 
2016 	xt.capxt = 0ULL;
2017 	xt.dest_mode_logical = apic->dest_mode_logical;
2018 	xt.vector = cfg->vector;
2019 	xt.destid_0_23 = cfg->dest_apicid & GENMASK(23, 0);
2020 	xt.destid_24_31 = cfg->dest_apicid >> 24;
2021 
2022 	/**
2023 	 * Current IOMMU implemtation uses the same IRQ for all
2024 	 * 3 IOMMU interrupts.
2025 	 */
2026 	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_EVT_OFFSET);
2027 	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_PPR_OFFSET);
2028 	writeq(xt.capxt, iommu->mmio_base + MMIO_INTCAPXT_GALOG_OFFSET);
2029 	return 0;
2030 }
2031 
2032 static void intcapxt_irqdomain_deactivate(struct irq_domain *domain,
2033 					  struct irq_data *irqd)
2034 {
2035 	intcapxt_mask_irq(irqd);
2036 }
2037 
2038 
2039 static int intcapxt_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
2040 				    unsigned int nr_irqs, void *arg)
2041 {
2042 	struct irq_alloc_info *info = arg;
2043 	int i, ret;
2044 
2045 	if (!info || info->type != X86_IRQ_ALLOC_TYPE_AMDVI)
2046 		return -EINVAL;
2047 
2048 	ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
2049 	if (ret < 0)
2050 		return ret;
2051 
2052 	for (i = virq; i < virq + nr_irqs; i++) {
2053 		struct irq_data *irqd = irq_domain_get_irq_data(domain, i);
2054 
2055 		irqd->chip = &intcapxt_controller;
2056 		irqd->chip_data = info->data;
2057 		__irq_set_handler(i, handle_edge_irq, 0, "edge");
2058 	}
2059 
2060 	return ret;
2061 }
2062 
2063 static void intcapxt_irqdomain_free(struct irq_domain *domain, unsigned int virq,
2064 				    unsigned int nr_irqs)
2065 {
2066 	irq_domain_free_irqs_top(domain, virq, nr_irqs);
2067 }
2068 
2069 static int intcapxt_set_affinity(struct irq_data *irqd,
2070 				 const struct cpumask *mask, bool force)
2071 {
2072 	struct irq_data *parent = irqd->parent_data;
2073 	int ret;
2074 
2075 	ret = parent->chip->irq_set_affinity(parent, mask, force);
2076 	if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
2077 		return ret;
2078 
2079 	return intcapxt_irqdomain_activate(irqd->domain, irqd, false);
2080 }
2081 
2082 static struct irq_chip intcapxt_controller = {
2083 	.name			= "IOMMU-MSI",
2084 	.irq_unmask		= intcapxt_unmask_irq,
2085 	.irq_mask		= intcapxt_mask_irq,
2086 	.irq_ack		= irq_chip_ack_parent,
2087 	.irq_retrigger		= irq_chip_retrigger_hierarchy,
2088 	.irq_set_affinity       = intcapxt_set_affinity,
2089 	.flags			= IRQCHIP_SKIP_SET_WAKE,
2090 };
2091 
2092 static const struct irq_domain_ops intcapxt_domain_ops = {
2093 	.alloc			= intcapxt_irqdomain_alloc,
2094 	.free			= intcapxt_irqdomain_free,
2095 	.activate		= intcapxt_irqdomain_activate,
2096 	.deactivate		= intcapxt_irqdomain_deactivate,
2097 };
2098 
2099 
2100 static struct irq_domain *iommu_irqdomain;
2101 
2102 static struct irq_domain *iommu_get_irqdomain(void)
2103 {
2104 	struct fwnode_handle *fn;
2105 
2106 	/* No need for locking here (yet) as the init is single-threaded */
2107 	if (iommu_irqdomain)
2108 		return iommu_irqdomain;
2109 
2110 	fn = irq_domain_alloc_named_fwnode("AMD-Vi-MSI");
2111 	if (!fn)
2112 		return NULL;
2113 
2114 	iommu_irqdomain = irq_domain_create_hierarchy(x86_vector_domain, 0, 0,
2115 						      fn, &intcapxt_domain_ops,
2116 						      NULL);
2117 	if (!iommu_irqdomain)
2118 		irq_domain_free_fwnode(fn);
2119 
2120 	return iommu_irqdomain;
2121 }
2122 
2123 static int iommu_setup_intcapxt(struct amd_iommu *iommu)
2124 {
2125 	struct irq_domain *domain;
2126 	struct irq_alloc_info info;
2127 	int irq, ret;
2128 
2129 	domain = iommu_get_irqdomain();
2130 	if (!domain)
2131 		return -ENXIO;
2132 
2133 	init_irq_alloc_info(&info, NULL);
2134 	info.type = X86_IRQ_ALLOC_TYPE_AMDVI;
2135 	info.data = iommu;
2136 
2137 	irq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, &info);
2138 	if (irq < 0) {
2139 		irq_domain_remove(domain);
2140 		return irq;
2141 	}
2142 
2143 	ret = request_threaded_irq(irq, amd_iommu_int_handler,
2144 				   amd_iommu_int_thread, 0, "AMD-Vi", iommu);
2145 	if (ret) {
2146 		irq_domain_free_irqs(irq, 1);
2147 		irq_domain_remove(domain);
2148 		return ret;
2149 	}
2150 
2151 	iommu_feature_enable(iommu, CONTROL_INTCAPXT_EN);
2152 	return 0;
2153 }
2154 
2155 static int iommu_init_irq(struct amd_iommu *iommu)
2156 {
2157 	int ret;
2158 
2159 	if (iommu->int_enabled)
2160 		goto enable_faults;
2161 
2162 	if (amd_iommu_xt_mode == IRQ_REMAP_X2APIC_MODE)
2163 		ret = iommu_setup_intcapxt(iommu);
2164 	else if (iommu->dev->msi_cap)
2165 		ret = iommu_setup_msi(iommu);
2166 	else
2167 		ret = -ENODEV;
2168 
2169 	if (ret)
2170 		return ret;
2171 
2172 enable_faults:
2173 	iommu_feature_enable(iommu, CONTROL_EVT_INT_EN);
2174 
2175 	if (iommu->ppr_log != NULL)
2176 		iommu_feature_enable(iommu, CONTROL_PPRINT_EN);
2177 
2178 	iommu_ga_log_enable(iommu);
2179 
2180 	return 0;
2181 }
2182 
2183 /****************************************************************************
2184  *
2185  * The next functions belong to the third pass of parsing the ACPI
2186  * table. In this last pass the memory mapping requirements are
2187  * gathered (like exclusion and unity mapping ranges).
2188  *
2189  ****************************************************************************/
2190 
2191 static void __init free_unity_maps(void)
2192 {
2193 	struct unity_map_entry *entry, *next;
2194 
2195 	list_for_each_entry_safe(entry, next, &amd_iommu_unity_map, list) {
2196 		list_del(&entry->list);
2197 		kfree(entry);
2198 	}
2199 }
2200 
2201 /* called for unity map ACPI definition */
2202 static int __init init_unity_map_range(struct ivmd_header *m)
2203 {
2204 	struct unity_map_entry *e = NULL;
2205 	char *s;
2206 
2207 	e = kzalloc(sizeof(*e), GFP_KERNEL);
2208 	if (e == NULL)
2209 		return -ENOMEM;
2210 
2211 	switch (m->type) {
2212 	default:
2213 		kfree(e);
2214 		return 0;
2215 	case ACPI_IVMD_TYPE:
2216 		s = "IVMD_TYPEi\t\t\t";
2217 		e->devid_start = e->devid_end = m->devid;
2218 		break;
2219 	case ACPI_IVMD_TYPE_ALL:
2220 		s = "IVMD_TYPE_ALL\t\t";
2221 		e->devid_start = 0;
2222 		e->devid_end = amd_iommu_last_bdf;
2223 		break;
2224 	case ACPI_IVMD_TYPE_RANGE:
2225 		s = "IVMD_TYPE_RANGE\t\t";
2226 		e->devid_start = m->devid;
2227 		e->devid_end = m->aux;
2228 		break;
2229 	}
2230 	e->address_start = PAGE_ALIGN(m->range_start);
2231 	e->address_end = e->address_start + PAGE_ALIGN(m->range_length);
2232 	e->prot = m->flags >> 1;
2233 
2234 	/*
2235 	 * Treat per-device exclusion ranges as r/w unity-mapped regions
2236 	 * since some buggy BIOSes might lead to the overwritten exclusion
2237 	 * range (exclusion_start and exclusion_length members). This
2238 	 * happens when there are multiple exclusion ranges (IVMD entries)
2239 	 * defined in ACPI table.
2240 	 */
2241 	if (m->flags & IVMD_FLAG_EXCL_RANGE)
2242 		e->prot = (IVMD_FLAG_IW | IVMD_FLAG_IR) >> 1;
2243 
2244 	DUMP_printk("%s devid_start: %02x:%02x.%x devid_end: %02x:%02x.%x"
2245 		    " range_start: %016llx range_end: %016llx flags: %x\n", s,
2246 		    PCI_BUS_NUM(e->devid_start), PCI_SLOT(e->devid_start),
2247 		    PCI_FUNC(e->devid_start), PCI_BUS_NUM(e->devid_end),
2248 		    PCI_SLOT(e->devid_end), PCI_FUNC(e->devid_end),
2249 		    e->address_start, e->address_end, m->flags);
2250 
2251 	list_add_tail(&e->list, &amd_iommu_unity_map);
2252 
2253 	return 0;
2254 }
2255 
2256 /* iterates over all memory definitions we find in the ACPI table */
2257 static int __init init_memory_definitions(struct acpi_table_header *table)
2258 {
2259 	u8 *p = (u8 *)table, *end = (u8 *)table;
2260 	struct ivmd_header *m;
2261 
2262 	end += table->length;
2263 	p += IVRS_HEADER_LENGTH;
2264 
2265 	while (p < end) {
2266 		m = (struct ivmd_header *)p;
2267 		if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
2268 			init_unity_map_range(m);
2269 
2270 		p += m->length;
2271 	}
2272 
2273 	return 0;
2274 }
2275 
2276 /*
2277  * Init the device table to not allow DMA access for devices
2278  */
2279 static void init_device_table_dma(void)
2280 {
2281 	u32 devid;
2282 
2283 	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2284 		set_dev_entry_bit(devid, DEV_ENTRY_VALID);
2285 		set_dev_entry_bit(devid, DEV_ENTRY_TRANSLATION);
2286 	}
2287 }
2288 
2289 static void __init uninit_device_table_dma(void)
2290 {
2291 	u32 devid;
2292 
2293 	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid) {
2294 		amd_iommu_dev_table[devid].data[0] = 0ULL;
2295 		amd_iommu_dev_table[devid].data[1] = 0ULL;
2296 	}
2297 }
2298 
2299 static void init_device_table(void)
2300 {
2301 	u32 devid;
2302 
2303 	if (!amd_iommu_irq_remap)
2304 		return;
2305 
2306 	for (devid = 0; devid <= amd_iommu_last_bdf; ++devid)
2307 		set_dev_entry_bit(devid, DEV_ENTRY_IRQ_TBL_EN);
2308 }
2309 
2310 static void iommu_init_flags(struct amd_iommu *iommu)
2311 {
2312 	iommu->acpi_flags & IVHD_FLAG_HT_TUN_EN_MASK ?
2313 		iommu_feature_enable(iommu, CONTROL_HT_TUN_EN) :
2314 		iommu_feature_disable(iommu, CONTROL_HT_TUN_EN);
2315 
2316 	iommu->acpi_flags & IVHD_FLAG_PASSPW_EN_MASK ?
2317 		iommu_feature_enable(iommu, CONTROL_PASSPW_EN) :
2318 		iommu_feature_disable(iommu, CONTROL_PASSPW_EN);
2319 
2320 	iommu->acpi_flags & IVHD_FLAG_RESPASSPW_EN_MASK ?
2321 		iommu_feature_enable(iommu, CONTROL_RESPASSPW_EN) :
2322 		iommu_feature_disable(iommu, CONTROL_RESPASSPW_EN);
2323 
2324 	iommu->acpi_flags & IVHD_FLAG_ISOC_EN_MASK ?
2325 		iommu_feature_enable(iommu, CONTROL_ISOC_EN) :
2326 		iommu_feature_disable(iommu, CONTROL_ISOC_EN);
2327 
2328 	/*
2329 	 * make IOMMU memory accesses cache coherent
2330 	 */
2331 	iommu_feature_enable(iommu, CONTROL_COHERENT_EN);
2332 
2333 	/* Set IOTLB invalidation timeout to 1s */
2334 	iommu_set_inv_tlb_timeout(iommu, CTRL_INV_TO_1S);
2335 }
2336 
2337 static void iommu_apply_resume_quirks(struct amd_iommu *iommu)
2338 {
2339 	int i, j;
2340 	u32 ioc_feature_control;
2341 	struct pci_dev *pdev = iommu->root_pdev;
2342 
2343 	/* RD890 BIOSes may not have completely reconfigured the iommu */
2344 	if (!is_rd890_iommu(iommu->dev) || !pdev)
2345 		return;
2346 
2347 	/*
2348 	 * First, we need to ensure that the iommu is enabled. This is
2349 	 * controlled by a register in the northbridge
2350 	 */
2351 
2352 	/* Select Northbridge indirect register 0x75 and enable writing */
2353 	pci_write_config_dword(pdev, 0x60, 0x75 | (1 << 7));
2354 	pci_read_config_dword(pdev, 0x64, &ioc_feature_control);
2355 
2356 	/* Enable the iommu */
2357 	if (!(ioc_feature_control & 0x1))
2358 		pci_write_config_dword(pdev, 0x64, ioc_feature_control | 1);
2359 
2360 	/* Restore the iommu BAR */
2361 	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2362 			       iommu->stored_addr_lo);
2363 	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 8,
2364 			       iommu->stored_addr_hi);
2365 
2366 	/* Restore the l1 indirect regs for each of the 6 l1s */
2367 	for (i = 0; i < 6; i++)
2368 		for (j = 0; j < 0x12; j++)
2369 			iommu_write_l1(iommu, i, j, iommu->stored_l1[i][j]);
2370 
2371 	/* Restore the l2 indirect regs */
2372 	for (i = 0; i < 0x83; i++)
2373 		iommu_write_l2(iommu, i, iommu->stored_l2[i]);
2374 
2375 	/* Lock PCI setup registers */
2376 	pci_write_config_dword(iommu->dev, iommu->cap_ptr + 4,
2377 			       iommu->stored_addr_lo | 1);
2378 }
2379 
2380 static void iommu_enable_ga(struct amd_iommu *iommu)
2381 {
2382 #ifdef CONFIG_IRQ_REMAP
2383 	switch (amd_iommu_guest_ir) {
2384 	case AMD_IOMMU_GUEST_IR_VAPIC:
2385 		iommu_feature_enable(iommu, CONTROL_GAM_EN);
2386 		fallthrough;
2387 	case AMD_IOMMU_GUEST_IR_LEGACY_GA:
2388 		iommu_feature_enable(iommu, CONTROL_GA_EN);
2389 		iommu->irte_ops = &irte_128_ops;
2390 		break;
2391 	default:
2392 		iommu->irte_ops = &irte_32_ops;
2393 		break;
2394 	}
2395 #endif
2396 }
2397 
2398 static void early_enable_iommu(struct amd_iommu *iommu)
2399 {
2400 	iommu_disable(iommu);
2401 	iommu_init_flags(iommu);
2402 	iommu_set_device_table(iommu);
2403 	iommu_enable_command_buffer(iommu);
2404 	iommu_enable_event_buffer(iommu);
2405 	iommu_set_exclusion_range(iommu);
2406 	iommu_enable_ga(iommu);
2407 	iommu_enable_xt(iommu);
2408 	iommu_enable(iommu);
2409 	iommu_flush_all_caches(iommu);
2410 }
2411 
2412 /*
2413  * This function finally enables all IOMMUs found in the system after
2414  * they have been initialized.
2415  *
2416  * Or if in kdump kernel and IOMMUs are all pre-enabled, try to copy
2417  * the old content of device table entries. Not this case or copy failed,
2418  * just continue as normal kernel does.
2419  */
2420 static void early_enable_iommus(void)
2421 {
2422 	struct amd_iommu *iommu;
2423 
2424 
2425 	if (!copy_device_table()) {
2426 		/*
2427 		 * If come here because of failure in copying device table from old
2428 		 * kernel with all IOMMUs enabled, print error message and try to
2429 		 * free allocated old_dev_tbl_cpy.
2430 		 */
2431 		if (amd_iommu_pre_enabled)
2432 			pr_err("Failed to copy DEV table from previous kernel.\n");
2433 		if (old_dev_tbl_cpy != NULL)
2434 			free_pages((unsigned long)old_dev_tbl_cpy,
2435 					get_order(dev_table_size));
2436 
2437 		for_each_iommu(iommu) {
2438 			clear_translation_pre_enabled(iommu);
2439 			early_enable_iommu(iommu);
2440 		}
2441 	} else {
2442 		pr_info("Copied DEV table from previous kernel.\n");
2443 		free_pages((unsigned long)amd_iommu_dev_table,
2444 				get_order(dev_table_size));
2445 		amd_iommu_dev_table = old_dev_tbl_cpy;
2446 		for_each_iommu(iommu) {
2447 			iommu_disable_command_buffer(iommu);
2448 			iommu_disable_event_buffer(iommu);
2449 			iommu_enable_command_buffer(iommu);
2450 			iommu_enable_event_buffer(iommu);
2451 			iommu_enable_ga(iommu);
2452 			iommu_enable_xt(iommu);
2453 			iommu_set_device_table(iommu);
2454 			iommu_flush_all_caches(iommu);
2455 		}
2456 	}
2457 
2458 #ifdef CONFIG_IRQ_REMAP
2459 	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2460 		amd_iommu_irq_ops.capability |= (1 << IRQ_POSTING_CAP);
2461 #endif
2462 }
2463 
2464 static void enable_iommus_v2(void)
2465 {
2466 	struct amd_iommu *iommu;
2467 
2468 	for_each_iommu(iommu) {
2469 		iommu_enable_ppr_log(iommu);
2470 		iommu_enable_gt(iommu);
2471 	}
2472 }
2473 
2474 static void enable_iommus(void)
2475 {
2476 	early_enable_iommus();
2477 
2478 	enable_iommus_v2();
2479 }
2480 
2481 static void disable_iommus(void)
2482 {
2483 	struct amd_iommu *iommu;
2484 
2485 	for_each_iommu(iommu)
2486 		iommu_disable(iommu);
2487 
2488 #ifdef CONFIG_IRQ_REMAP
2489 	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir))
2490 		amd_iommu_irq_ops.capability &= ~(1 << IRQ_POSTING_CAP);
2491 #endif
2492 }
2493 
2494 /*
2495  * Suspend/Resume support
2496  * disable suspend until real resume implemented
2497  */
2498 
2499 static void amd_iommu_resume(void)
2500 {
2501 	struct amd_iommu *iommu;
2502 
2503 	for_each_iommu(iommu)
2504 		iommu_apply_resume_quirks(iommu);
2505 
2506 	/* re-load the hardware */
2507 	enable_iommus();
2508 
2509 	amd_iommu_enable_interrupts();
2510 }
2511 
2512 static int amd_iommu_suspend(void)
2513 {
2514 	/* disable IOMMUs to go out of the way for BIOS */
2515 	disable_iommus();
2516 
2517 	return 0;
2518 }
2519 
2520 static struct syscore_ops amd_iommu_syscore_ops = {
2521 	.suspend = amd_iommu_suspend,
2522 	.resume = amd_iommu_resume,
2523 };
2524 
2525 static void __init free_iommu_resources(void)
2526 {
2527 	kmemleak_free(irq_lookup_table);
2528 	free_pages((unsigned long)irq_lookup_table,
2529 		   get_order(rlookup_table_size));
2530 	irq_lookup_table = NULL;
2531 
2532 	kmem_cache_destroy(amd_iommu_irq_cache);
2533 	amd_iommu_irq_cache = NULL;
2534 
2535 	free_pages((unsigned long)amd_iommu_rlookup_table,
2536 		   get_order(rlookup_table_size));
2537 	amd_iommu_rlookup_table = NULL;
2538 
2539 	free_pages((unsigned long)amd_iommu_alias_table,
2540 		   get_order(alias_table_size));
2541 	amd_iommu_alias_table = NULL;
2542 
2543 	free_pages((unsigned long)amd_iommu_dev_table,
2544 		   get_order(dev_table_size));
2545 	amd_iommu_dev_table = NULL;
2546 
2547 	free_iommu_all();
2548 }
2549 
2550 /* SB IOAPIC is always on this device in AMD systems */
2551 #define IOAPIC_SB_DEVID		((0x00 << 8) | PCI_DEVFN(0x14, 0))
2552 
2553 static bool __init check_ioapic_information(void)
2554 {
2555 	const char *fw_bug = FW_BUG;
2556 	bool ret, has_sb_ioapic;
2557 	int idx;
2558 
2559 	has_sb_ioapic = false;
2560 	ret           = false;
2561 
2562 	/*
2563 	 * If we have map overrides on the kernel command line the
2564 	 * messages in this function might not describe firmware bugs
2565 	 * anymore - so be careful
2566 	 */
2567 	if (cmdline_maps)
2568 		fw_bug = "";
2569 
2570 	for (idx = 0; idx < nr_ioapics; idx++) {
2571 		int devid, id = mpc_ioapic_id(idx);
2572 
2573 		devid = get_ioapic_devid(id);
2574 		if (devid < 0) {
2575 			pr_err("%s: IOAPIC[%d] not in IVRS table\n",
2576 				fw_bug, id);
2577 			ret = false;
2578 		} else if (devid == IOAPIC_SB_DEVID) {
2579 			has_sb_ioapic = true;
2580 			ret           = true;
2581 		}
2582 	}
2583 
2584 	if (!has_sb_ioapic) {
2585 		/*
2586 		 * We expect the SB IOAPIC to be listed in the IVRS
2587 		 * table. The system timer is connected to the SB IOAPIC
2588 		 * and if we don't have it in the list the system will
2589 		 * panic at boot time.  This situation usually happens
2590 		 * when the BIOS is buggy and provides us the wrong
2591 		 * device id for the IOAPIC in the system.
2592 		 */
2593 		pr_err("%s: No southbridge IOAPIC found\n", fw_bug);
2594 	}
2595 
2596 	if (!ret)
2597 		pr_err("Disabling interrupt remapping\n");
2598 
2599 	return ret;
2600 }
2601 
2602 static void __init free_dma_resources(void)
2603 {
2604 	free_pages((unsigned long)amd_iommu_pd_alloc_bitmap,
2605 		   get_order(MAX_DOMAIN_ID/8));
2606 	amd_iommu_pd_alloc_bitmap = NULL;
2607 
2608 	free_unity_maps();
2609 }
2610 
2611 /*
2612  * This is the hardware init function for AMD IOMMU in the system.
2613  * This function is called either from amd_iommu_init or from the interrupt
2614  * remapping setup code.
2615  *
2616  * This function basically parses the ACPI table for AMD IOMMU (IVRS)
2617  * four times:
2618  *
2619  *	1 pass) Discover the most comprehensive IVHD type to use.
2620  *
2621  *	2 pass) Find the highest PCI device id the driver has to handle.
2622  *		Upon this information the size of the data structures is
2623  *		determined that needs to be allocated.
2624  *
2625  *	3 pass) Initialize the data structures just allocated with the
2626  *		information in the ACPI table about available AMD IOMMUs
2627  *		in the system. It also maps the PCI devices in the
2628  *		system to specific IOMMUs
2629  *
2630  *	4 pass) After the basic data structures are allocated and
2631  *		initialized we update them with information about memory
2632  *		remapping requirements parsed out of the ACPI table in
2633  *		this last pass.
2634  *
2635  * After everything is set up the IOMMUs are enabled and the necessary
2636  * hotplug and suspend notifiers are registered.
2637  */
2638 static int __init early_amd_iommu_init(void)
2639 {
2640 	struct acpi_table_header *ivrs_base;
2641 	acpi_status status;
2642 	int i, remap_cache_sz, ret = 0;
2643 	u32 pci_id;
2644 
2645 	if (!amd_iommu_detected)
2646 		return -ENODEV;
2647 
2648 	status = acpi_get_table("IVRS", 0, &ivrs_base);
2649 	if (status == AE_NOT_FOUND)
2650 		return -ENODEV;
2651 	else if (ACPI_FAILURE(status)) {
2652 		const char *err = acpi_format_exception(status);
2653 		pr_err("IVRS table error: %s\n", err);
2654 		return -EINVAL;
2655 	}
2656 
2657 	/*
2658 	 * Validate checksum here so we don't need to do it when
2659 	 * we actually parse the table
2660 	 */
2661 	ret = check_ivrs_checksum(ivrs_base);
2662 	if (ret)
2663 		goto out;
2664 
2665 	amd_iommu_target_ivhd_type = get_highest_supported_ivhd_type(ivrs_base);
2666 	DUMP_printk("Using IVHD type %#x\n", amd_iommu_target_ivhd_type);
2667 
2668 	/*
2669 	 * First parse ACPI tables to find the largest Bus/Dev/Func
2670 	 * we need to handle. Upon this information the shared data
2671 	 * structures for the IOMMUs in the system will be allocated
2672 	 */
2673 	ret = find_last_devid_acpi(ivrs_base);
2674 	if (ret)
2675 		goto out;
2676 
2677 	dev_table_size     = tbl_size(DEV_TABLE_ENTRY_SIZE);
2678 	alias_table_size   = tbl_size(ALIAS_TABLE_ENTRY_SIZE);
2679 	rlookup_table_size = tbl_size(RLOOKUP_TABLE_ENTRY_SIZE);
2680 
2681 	/* Device table - directly used by all IOMMUs */
2682 	ret = -ENOMEM;
2683 	amd_iommu_dev_table = (void *)__get_free_pages(
2684 				      GFP_KERNEL | __GFP_ZERO | GFP_DMA32,
2685 				      get_order(dev_table_size));
2686 	if (amd_iommu_dev_table == NULL)
2687 		goto out;
2688 
2689 	/*
2690 	 * Alias table - map PCI Bus/Dev/Func to Bus/Dev/Func the
2691 	 * IOMMU see for that device
2692 	 */
2693 	amd_iommu_alias_table = (void *)__get_free_pages(GFP_KERNEL,
2694 			get_order(alias_table_size));
2695 	if (amd_iommu_alias_table == NULL)
2696 		goto out;
2697 
2698 	/* IOMMU rlookup table - find the IOMMU for a specific device */
2699 	amd_iommu_rlookup_table = (void *)__get_free_pages(
2700 			GFP_KERNEL | __GFP_ZERO,
2701 			get_order(rlookup_table_size));
2702 	if (amd_iommu_rlookup_table == NULL)
2703 		goto out;
2704 
2705 	amd_iommu_pd_alloc_bitmap = (void *)__get_free_pages(
2706 					    GFP_KERNEL | __GFP_ZERO,
2707 					    get_order(MAX_DOMAIN_ID/8));
2708 	if (amd_iommu_pd_alloc_bitmap == NULL)
2709 		goto out;
2710 
2711 	/*
2712 	 * let all alias entries point to itself
2713 	 */
2714 	for (i = 0; i <= amd_iommu_last_bdf; ++i)
2715 		amd_iommu_alias_table[i] = i;
2716 
2717 	/*
2718 	 * never allocate domain 0 because its used as the non-allocated and
2719 	 * error value placeholder
2720 	 */
2721 	__set_bit(0, amd_iommu_pd_alloc_bitmap);
2722 
2723 	/*
2724 	 * now the data structures are allocated and basically initialized
2725 	 * start the real acpi table scan
2726 	 */
2727 	ret = init_iommu_all(ivrs_base);
2728 	if (ret)
2729 		goto out;
2730 
2731 	/* Disable IOMMU if there's Stoney Ridge graphics */
2732 	for (i = 0; i < 32; i++) {
2733 		pci_id = read_pci_config(0, i, 0, 0);
2734 		if ((pci_id & 0xffff) == 0x1002 && (pci_id >> 16) == 0x98e4) {
2735 			pr_info("Disable IOMMU on Stoney Ridge\n");
2736 			amd_iommu_disabled = true;
2737 			break;
2738 		}
2739 	}
2740 
2741 	/* Disable any previously enabled IOMMUs */
2742 	if (!is_kdump_kernel() || amd_iommu_disabled)
2743 		disable_iommus();
2744 
2745 	if (amd_iommu_irq_remap)
2746 		amd_iommu_irq_remap = check_ioapic_information();
2747 
2748 	if (amd_iommu_irq_remap) {
2749 		/*
2750 		 * Interrupt remapping enabled, create kmem_cache for the
2751 		 * remapping tables.
2752 		 */
2753 		ret = -ENOMEM;
2754 		if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
2755 			remap_cache_sz = MAX_IRQS_PER_TABLE * sizeof(u32);
2756 		else
2757 			remap_cache_sz = MAX_IRQS_PER_TABLE * (sizeof(u64) * 2);
2758 		amd_iommu_irq_cache = kmem_cache_create("irq_remap_cache",
2759 							remap_cache_sz,
2760 							DTE_INTTAB_ALIGNMENT,
2761 							0, NULL);
2762 		if (!amd_iommu_irq_cache)
2763 			goto out;
2764 
2765 		irq_lookup_table = (void *)__get_free_pages(
2766 				GFP_KERNEL | __GFP_ZERO,
2767 				get_order(rlookup_table_size));
2768 		kmemleak_alloc(irq_lookup_table, rlookup_table_size,
2769 			       1, GFP_KERNEL);
2770 		if (!irq_lookup_table)
2771 			goto out;
2772 	}
2773 
2774 	ret = init_memory_definitions(ivrs_base);
2775 	if (ret)
2776 		goto out;
2777 
2778 	/* init the device table */
2779 	init_device_table();
2780 
2781 out:
2782 	/* Don't leak any ACPI memory */
2783 	acpi_put_table(ivrs_base);
2784 	ivrs_base = NULL;
2785 
2786 	return ret;
2787 }
2788 
2789 static int amd_iommu_enable_interrupts(void)
2790 {
2791 	struct amd_iommu *iommu;
2792 	int ret = 0;
2793 
2794 	for_each_iommu(iommu) {
2795 		ret = iommu_init_irq(iommu);
2796 		if (ret)
2797 			goto out;
2798 	}
2799 
2800 out:
2801 	return ret;
2802 }
2803 
2804 static bool detect_ivrs(void)
2805 {
2806 	struct acpi_table_header *ivrs_base;
2807 	acpi_status status;
2808 
2809 	status = acpi_get_table("IVRS", 0, &ivrs_base);
2810 	if (status == AE_NOT_FOUND)
2811 		return false;
2812 	else if (ACPI_FAILURE(status)) {
2813 		const char *err = acpi_format_exception(status);
2814 		pr_err("IVRS table error: %s\n", err);
2815 		return false;
2816 	}
2817 
2818 	acpi_put_table(ivrs_base);
2819 
2820 	/* Make sure ACS will be enabled during PCI probe */
2821 	pci_request_acs();
2822 
2823 	return true;
2824 }
2825 
2826 /****************************************************************************
2827  *
2828  * AMD IOMMU Initialization State Machine
2829  *
2830  ****************************************************************************/
2831 
2832 static int __init state_next(void)
2833 {
2834 	int ret = 0;
2835 
2836 	switch (init_state) {
2837 	case IOMMU_START_STATE:
2838 		if (!detect_ivrs()) {
2839 			init_state	= IOMMU_NOT_FOUND;
2840 			ret		= -ENODEV;
2841 		} else {
2842 			init_state	= IOMMU_IVRS_DETECTED;
2843 		}
2844 		break;
2845 	case IOMMU_IVRS_DETECTED:
2846 		ret = early_amd_iommu_init();
2847 		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_ACPI_FINISHED;
2848 		if (init_state == IOMMU_ACPI_FINISHED && amd_iommu_disabled) {
2849 			pr_info("AMD IOMMU disabled\n");
2850 			init_state = IOMMU_CMDLINE_DISABLED;
2851 			ret = -EINVAL;
2852 		}
2853 		break;
2854 	case IOMMU_ACPI_FINISHED:
2855 		early_enable_iommus();
2856 		x86_platform.iommu_shutdown = disable_iommus;
2857 		init_state = IOMMU_ENABLED;
2858 		break;
2859 	case IOMMU_ENABLED:
2860 		register_syscore_ops(&amd_iommu_syscore_ops);
2861 		ret = amd_iommu_init_pci();
2862 		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_PCI_INIT;
2863 		enable_iommus_v2();
2864 		break;
2865 	case IOMMU_PCI_INIT:
2866 		ret = amd_iommu_enable_interrupts();
2867 		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_INTERRUPTS_EN;
2868 		break;
2869 	case IOMMU_INTERRUPTS_EN:
2870 		ret = amd_iommu_init_dma_ops();
2871 		init_state = ret ? IOMMU_INIT_ERROR : IOMMU_DMA_OPS;
2872 		break;
2873 	case IOMMU_DMA_OPS:
2874 		init_state = IOMMU_INITIALIZED;
2875 		break;
2876 	case IOMMU_INITIALIZED:
2877 		/* Nothing to do */
2878 		break;
2879 	case IOMMU_NOT_FOUND:
2880 	case IOMMU_INIT_ERROR:
2881 	case IOMMU_CMDLINE_DISABLED:
2882 		/* Error states => do nothing */
2883 		ret = -EINVAL;
2884 		break;
2885 	default:
2886 		/* Unknown state */
2887 		BUG();
2888 	}
2889 
2890 	if (ret) {
2891 		free_dma_resources();
2892 		if (!irq_remapping_enabled) {
2893 			disable_iommus();
2894 			free_iommu_resources();
2895 		} else {
2896 			struct amd_iommu *iommu;
2897 
2898 			uninit_device_table_dma();
2899 			for_each_iommu(iommu)
2900 				iommu_flush_all_caches(iommu);
2901 		}
2902 	}
2903 	return ret;
2904 }
2905 
2906 static int __init iommu_go_to_state(enum iommu_init_state state)
2907 {
2908 	int ret = -EINVAL;
2909 
2910 	while (init_state != state) {
2911 		if (init_state == IOMMU_NOT_FOUND         ||
2912 		    init_state == IOMMU_INIT_ERROR        ||
2913 		    init_state == IOMMU_CMDLINE_DISABLED)
2914 			break;
2915 		ret = state_next();
2916 	}
2917 
2918 	return ret;
2919 }
2920 
2921 #ifdef CONFIG_IRQ_REMAP
2922 int __init amd_iommu_prepare(void)
2923 {
2924 	int ret;
2925 
2926 	amd_iommu_irq_remap = true;
2927 
2928 	ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
2929 	if (ret)
2930 		return ret;
2931 	return amd_iommu_irq_remap ? 0 : -ENODEV;
2932 }
2933 
2934 int __init amd_iommu_enable(void)
2935 {
2936 	int ret;
2937 
2938 	ret = iommu_go_to_state(IOMMU_ENABLED);
2939 	if (ret)
2940 		return ret;
2941 
2942 	irq_remapping_enabled = 1;
2943 	return amd_iommu_xt_mode;
2944 }
2945 
2946 void amd_iommu_disable(void)
2947 {
2948 	amd_iommu_suspend();
2949 }
2950 
2951 int amd_iommu_reenable(int mode)
2952 {
2953 	amd_iommu_resume();
2954 
2955 	return 0;
2956 }
2957 
2958 int __init amd_iommu_enable_faulting(void)
2959 {
2960 	/* We enable MSI later when PCI is initialized */
2961 	return 0;
2962 }
2963 #endif
2964 
2965 /*
2966  * This is the core init function for AMD IOMMU hardware in the system.
2967  * This function is called from the generic x86 DMA layer initialization
2968  * code.
2969  */
2970 static int __init amd_iommu_init(void)
2971 {
2972 	struct amd_iommu *iommu;
2973 	int ret;
2974 
2975 	ret = iommu_go_to_state(IOMMU_INITIALIZED);
2976 #ifdef CONFIG_GART_IOMMU
2977 	if (ret && list_empty(&amd_iommu_list)) {
2978 		/*
2979 		 * We failed to initialize the AMD IOMMU - try fallback
2980 		 * to GART if possible.
2981 		 */
2982 		gart_iommu_init();
2983 	}
2984 #endif
2985 
2986 	for_each_iommu(iommu)
2987 		amd_iommu_debugfs_setup(iommu);
2988 
2989 	return ret;
2990 }
2991 
2992 static bool amd_iommu_sme_check(void)
2993 {
2994 	if (!sme_active() || (boot_cpu_data.x86 != 0x17))
2995 		return true;
2996 
2997 	/* For Fam17h, a specific level of support is required */
2998 	if (boot_cpu_data.microcode >= 0x08001205)
2999 		return true;
3000 
3001 	if ((boot_cpu_data.microcode >= 0x08001126) &&
3002 	    (boot_cpu_data.microcode <= 0x080011ff))
3003 		return true;
3004 
3005 	pr_notice("IOMMU not currently supported when SME is active\n");
3006 
3007 	return false;
3008 }
3009 
3010 /****************************************************************************
3011  *
3012  * Early detect code. This code runs at IOMMU detection time in the DMA
3013  * layer. It just looks if there is an IVRS ACPI table to detect AMD
3014  * IOMMUs
3015  *
3016  ****************************************************************************/
3017 int __init amd_iommu_detect(void)
3018 {
3019 	int ret;
3020 
3021 	if (no_iommu || (iommu_detected && !gart_iommu_aperture))
3022 		return -ENODEV;
3023 
3024 	if (!amd_iommu_sme_check())
3025 		return -ENODEV;
3026 
3027 	ret = iommu_go_to_state(IOMMU_IVRS_DETECTED);
3028 	if (ret)
3029 		return ret;
3030 
3031 	amd_iommu_detected = true;
3032 	iommu_detected = 1;
3033 	x86_init.iommu.iommu_init = amd_iommu_init;
3034 
3035 	return 1;
3036 }
3037 
3038 /****************************************************************************
3039  *
3040  * Parsing functions for the AMD IOMMU specific kernel command line
3041  * options.
3042  *
3043  ****************************************************************************/
3044 
3045 static int __init parse_amd_iommu_dump(char *str)
3046 {
3047 	amd_iommu_dump = true;
3048 
3049 	return 1;
3050 }
3051 
3052 static int __init parse_amd_iommu_intr(char *str)
3053 {
3054 	for (; *str; ++str) {
3055 		if (strncmp(str, "legacy", 6) == 0) {
3056 			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_LEGACY_GA;
3057 			break;
3058 		}
3059 		if (strncmp(str, "vapic", 5) == 0) {
3060 			amd_iommu_guest_ir = AMD_IOMMU_GUEST_IR_VAPIC;
3061 			break;
3062 		}
3063 	}
3064 	return 1;
3065 }
3066 
3067 static int __init parse_amd_iommu_options(char *str)
3068 {
3069 	for (; *str; ++str) {
3070 		if (strncmp(str, "fullflush", 9) == 0)
3071 			amd_iommu_unmap_flush = true;
3072 		if (strncmp(str, "off", 3) == 0)
3073 			amd_iommu_disabled = true;
3074 		if (strncmp(str, "force_isolation", 15) == 0)
3075 			amd_iommu_force_isolation = true;
3076 	}
3077 
3078 	return 1;
3079 }
3080 
3081 static int __init parse_ivrs_ioapic(char *str)
3082 {
3083 	unsigned int bus, dev, fn;
3084 	int ret, id, i;
3085 	u16 devid;
3086 
3087 	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3088 
3089 	if (ret != 4) {
3090 		pr_err("Invalid command line: ivrs_ioapic%s\n", str);
3091 		return 1;
3092 	}
3093 
3094 	if (early_ioapic_map_size == EARLY_MAP_SIZE) {
3095 		pr_err("Early IOAPIC map overflow - ignoring ivrs_ioapic%s\n",
3096 			str);
3097 		return 1;
3098 	}
3099 
3100 	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3101 
3102 	cmdline_maps			= true;
3103 	i				= early_ioapic_map_size++;
3104 	early_ioapic_map[i].id		= id;
3105 	early_ioapic_map[i].devid	= devid;
3106 	early_ioapic_map[i].cmd_line	= true;
3107 
3108 	return 1;
3109 }
3110 
3111 static int __init parse_ivrs_hpet(char *str)
3112 {
3113 	unsigned int bus, dev, fn;
3114 	int ret, id, i;
3115 	u16 devid;
3116 
3117 	ret = sscanf(str, "[%d]=%x:%x.%x", &id, &bus, &dev, &fn);
3118 
3119 	if (ret != 4) {
3120 		pr_err("Invalid command line: ivrs_hpet%s\n", str);
3121 		return 1;
3122 	}
3123 
3124 	if (early_hpet_map_size == EARLY_MAP_SIZE) {
3125 		pr_err("Early HPET map overflow - ignoring ivrs_hpet%s\n",
3126 			str);
3127 		return 1;
3128 	}
3129 
3130 	devid = ((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3131 
3132 	cmdline_maps			= true;
3133 	i				= early_hpet_map_size++;
3134 	early_hpet_map[i].id		= id;
3135 	early_hpet_map[i].devid		= devid;
3136 	early_hpet_map[i].cmd_line	= true;
3137 
3138 	return 1;
3139 }
3140 
3141 static int __init parse_ivrs_acpihid(char *str)
3142 {
3143 	u32 bus, dev, fn;
3144 	char *hid, *uid, *p;
3145 	char acpiid[ACPIHID_UID_LEN + ACPIHID_HID_LEN] = {0};
3146 	int ret, i;
3147 
3148 	ret = sscanf(str, "[%x:%x.%x]=%s", &bus, &dev, &fn, acpiid);
3149 	if (ret != 4) {
3150 		pr_err("Invalid command line: ivrs_acpihid(%s)\n", str);
3151 		return 1;
3152 	}
3153 
3154 	p = acpiid;
3155 	hid = strsep(&p, ":");
3156 	uid = p;
3157 
3158 	if (!hid || !(*hid) || !uid) {
3159 		pr_err("Invalid command line: hid or uid\n");
3160 		return 1;
3161 	}
3162 
3163 	i = early_acpihid_map_size++;
3164 	memcpy(early_acpihid_map[i].hid, hid, strlen(hid));
3165 	memcpy(early_acpihid_map[i].uid, uid, strlen(uid));
3166 	early_acpihid_map[i].devid =
3167 		((bus & 0xff) << 8) | ((dev & 0x1f) << 3) | (fn & 0x7);
3168 	early_acpihid_map[i].cmd_line	= true;
3169 
3170 	return 1;
3171 }
3172 
3173 __setup("amd_iommu_dump",	parse_amd_iommu_dump);
3174 __setup("amd_iommu=",		parse_amd_iommu_options);
3175 __setup("amd_iommu_intr=",	parse_amd_iommu_intr);
3176 __setup("ivrs_ioapic",		parse_ivrs_ioapic);
3177 __setup("ivrs_hpet",		parse_ivrs_hpet);
3178 __setup("ivrs_acpihid",		parse_ivrs_acpihid);
3179 
3180 IOMMU_INIT_FINISH(amd_iommu_detect,
3181 		  gart_iommu_hole_init,
3182 		  NULL,
3183 		  NULL);
3184 
3185 bool amd_iommu_v2_supported(void)
3186 {
3187 	return amd_iommu_v2_present;
3188 }
3189 EXPORT_SYMBOL(amd_iommu_v2_supported);
3190 
3191 struct amd_iommu *get_amd_iommu(unsigned int idx)
3192 {
3193 	unsigned int i = 0;
3194 	struct amd_iommu *iommu;
3195 
3196 	for_each_iommu(iommu)
3197 		if (i++ == idx)
3198 			return iommu;
3199 	return NULL;
3200 }
3201 EXPORT_SYMBOL(get_amd_iommu);
3202 
3203 /****************************************************************************
3204  *
3205  * IOMMU EFR Performance Counter support functionality. This code allows
3206  * access to the IOMMU PC functionality.
3207  *
3208  ****************************************************************************/
3209 
3210 u8 amd_iommu_pc_get_max_banks(unsigned int idx)
3211 {
3212 	struct amd_iommu *iommu = get_amd_iommu(idx);
3213 
3214 	if (iommu)
3215 		return iommu->max_banks;
3216 
3217 	return 0;
3218 }
3219 EXPORT_SYMBOL(amd_iommu_pc_get_max_banks);
3220 
3221 bool amd_iommu_pc_supported(void)
3222 {
3223 	return amd_iommu_pc_present;
3224 }
3225 EXPORT_SYMBOL(amd_iommu_pc_supported);
3226 
3227 u8 amd_iommu_pc_get_max_counters(unsigned int idx)
3228 {
3229 	struct amd_iommu *iommu = get_amd_iommu(idx);
3230 
3231 	if (iommu)
3232 		return iommu->max_counters;
3233 
3234 	return 0;
3235 }
3236 EXPORT_SYMBOL(amd_iommu_pc_get_max_counters);
3237 
3238 static int iommu_pc_get_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr,
3239 				u8 fxn, u64 *value, bool is_write)
3240 {
3241 	u32 offset;
3242 	u32 max_offset_lim;
3243 
3244 	/* Make sure the IOMMU PC resource is available */
3245 	if (!amd_iommu_pc_present)
3246 		return -ENODEV;
3247 
3248 	/* Check for valid iommu and pc register indexing */
3249 	if (WARN_ON(!iommu || (fxn > 0x28) || (fxn & 7)))
3250 		return -ENODEV;
3251 
3252 	offset = (u32)(((0x40 | bank) << 12) | (cntr << 8) | fxn);
3253 
3254 	/* Limit the offset to the hw defined mmio region aperture */
3255 	max_offset_lim = (u32)(((0x40 | iommu->max_banks) << 12) |
3256 				(iommu->max_counters << 8) | 0x28);
3257 	if ((offset < MMIO_CNTR_REG_OFFSET) ||
3258 	    (offset > max_offset_lim))
3259 		return -EINVAL;
3260 
3261 	if (is_write) {
3262 		u64 val = *value & GENMASK_ULL(47, 0);
3263 
3264 		writel((u32)val, iommu->mmio_base + offset);
3265 		writel((val >> 32), iommu->mmio_base + offset + 4);
3266 	} else {
3267 		*value = readl(iommu->mmio_base + offset + 4);
3268 		*value <<= 32;
3269 		*value |= readl(iommu->mmio_base + offset);
3270 		*value &= GENMASK_ULL(47, 0);
3271 	}
3272 
3273 	return 0;
3274 }
3275 
3276 int amd_iommu_pc_get_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3277 {
3278 	if (!iommu)
3279 		return -EINVAL;
3280 
3281 	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, false);
3282 }
3283 EXPORT_SYMBOL(amd_iommu_pc_get_reg);
3284 
3285 int amd_iommu_pc_set_reg(struct amd_iommu *iommu, u8 bank, u8 cntr, u8 fxn, u64 *value)
3286 {
3287 	if (!iommu)
3288 		return -EINVAL;
3289 
3290 	return iommu_pc_get_set_reg(iommu, bank, cntr, fxn, value, true);
3291 }
3292 EXPORT_SYMBOL(amd_iommu_pc_set_reg);
3293