xref: /linux/drivers/iommu/amd/iommu.c (revision 6f7e6393d1ce636bb7ec77a7fe7b77458fddf701)
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/ratelimit.h>
12 #include <linux/pci.h>
13 #include <linux/acpi.h>
14 #include <linux/pci-ats.h>
15 #include <linux/bitmap.h>
16 #include <linux/slab.h>
17 #include <linux/string_choices.h>
18 #include <linux/debugfs.h>
19 #include <linux/scatterlist.h>
20 #include <linux/dma-map-ops.h>
21 #include <linux/dma-direct.h>
22 #include <linux/idr.h>
23 #include <linux/iommu-helper.h>
24 #include <linux/delay.h>
25 #include <linux/amd-iommu.h>
26 #include <linux/notifier.h>
27 #include <linux/export.h>
28 #include <linux/irq.h>
29 #include <linux/irqchip/irq-msi-lib.h>
30 #include <linux/msi.h>
31 #include <linux/irqdomain.h>
32 #include <linux/percpu.h>
33 #include <linux/cc_platform.h>
34 #include <asm/irq_remapping.h>
35 #include <asm/io_apic.h>
36 #include <asm/apic.h>
37 #include <asm/hw_irq.h>
38 #include <asm/proto.h>
39 #include <asm/iommu.h>
40 #include <asm/gart.h>
41 #include <asm/dma.h>
42 #include <uapi/linux/iommufd.h>
43 #include <linux/generic_pt/iommu.h>
44 
45 #include "amd_iommu.h"
46 #include "../irq_remapping.h"
47 #include "../iommu-pages.h"
48 
49 #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
50 
51 /* Reserved IOVA ranges */
52 #define MSI_RANGE_START		(0xfee00000)
53 #define MSI_RANGE_END		(0xfeefffff)
54 #define HT_RANGE_START		(0xfd00000000ULL)
55 #define HT_RANGE_END		(0xffffffffffULL)
56 
57 LIST_HEAD(ioapic_map);
58 LIST_HEAD(hpet_map);
59 LIST_HEAD(acpihid_map);
60 
61 const struct iommu_ops amd_iommu_ops;
62 
63 int amd_iommu_max_glx_val = -1;
64 
65 /*
66  * AMD IOMMU allows up to 2^16 different protection domains. This is a bitmap
67  * to know which ones are already in use.
68  */
69 DEFINE_IDA(pdom_ids);
70 
71 static int amd_iommu_attach_device(struct iommu_domain *dom, struct device *dev,
72 				   struct iommu_domain *old);
73 
74 static void set_dte_entry(struct amd_iommu *iommu,
75 			  struct iommu_dev_data *dev_data,
76 			  phys_addr_t top_paddr, unsigned int top_level);
77 
78 static void amd_iommu_change_top(struct pt_iommu *iommu_table,
79 				 phys_addr_t top_paddr, unsigned int top_level);
80 
81 static void iommu_flush_dte_sync(struct amd_iommu *iommu, u16 devid);
82 
83 static struct iommu_dev_data *find_dev_data(struct amd_iommu *iommu, u16 devid);
84 static bool amd_iommu_enforce_cache_coherency(struct iommu_domain *domain);
85 static int amd_iommu_set_dirty_tracking(struct iommu_domain *domain,
86 					bool enable);
87 
88 /****************************************************************************
89  *
90  * Helper functions
91  *
92  ****************************************************************************/
93 
94 static __always_inline void amd_iommu_atomic128_set(__int128 *ptr, __int128 val)
95 {
96 	/*
97 	 * Note:
98 	 * We use arch_cmpxchg128_local() because:
99 	 * - Need cmpxchg16b instruction mainly for 128-bit store to DTE
100 	 *   (not necessary for cmpxchg since this function is already
101 	 *   protected by a spin_lock for this DTE).
102 	 * - Neither need LOCK_PREFIX nor try loop because of the spin_lock.
103 	 */
104 	arch_cmpxchg128_local(ptr, *ptr, val);
105 }
106 
107 static void write_dte_upper128(struct dev_table_entry *ptr, struct dev_table_entry *new)
108 {
109 	struct dev_table_entry old;
110 
111 	old.data128[1] = ptr->data128[1];
112 	/*
113 	 * Preserve DTE_DATA2_INTR_MASK. This needs to be
114 	 * done here since it requires to be inside
115 	 * spin_lock(&dev_data->dte_lock) context.
116 	 */
117 	new->data[2] &= ~DTE_DATA2_INTR_MASK;
118 	new->data[2] |= old.data[2] & DTE_DATA2_INTR_MASK;
119 
120 	amd_iommu_atomic128_set(&ptr->data128[1], new->data128[1]);
121 }
122 
123 static void write_dte_lower128(struct dev_table_entry *ptr, struct dev_table_entry *new)
124 {
125 	amd_iommu_atomic128_set(&ptr->data128[0], new->data128[0]);
126 }
127 
128 /*
129  * Note:
130  * IOMMU reads the entire Device Table entry in a single 256-bit transaction
131  * but the driver is programming DTE using 2 128-bit cmpxchg. So, the driver
132  * need to ensure the following:
133  *   - DTE[V|GV] bit is being written last when setting.
134  *   - DTE[V|GV] bit is being written first when clearing.
135  *
136  * This function is used only by code, which updates DMA translation part of the DTE.
137  * So, only consider control bits related to DMA when updating the entry.
138  */
139 static void update_dte256(struct amd_iommu *iommu, struct iommu_dev_data *dev_data,
140 			  struct dev_table_entry *new)
141 {
142 	unsigned long flags;
143 	struct dev_table_entry *dev_table = get_dev_table(iommu);
144 	struct dev_table_entry *ptr = &dev_table[dev_data->devid];
145 
146 	spin_lock_irqsave(&dev_data->dte_lock, flags);
147 
148 	if (!(ptr->data[0] & DTE_FLAG_V)) {
149 		/* Existing DTE is not valid. */
150 		write_dte_upper128(ptr, new);
151 		write_dte_lower128(ptr, new);
152 		iommu_flush_dte_sync(iommu, dev_data->devid);
153 	} else if (!(new->data[0] & DTE_FLAG_V)) {
154 		/* Existing DTE is valid. New DTE is not valid.  */
155 		write_dte_lower128(ptr, new);
156 		write_dte_upper128(ptr, new);
157 		iommu_flush_dte_sync(iommu, dev_data->devid);
158 	} else if (!FIELD_GET(DTE_FLAG_GV, ptr->data[0])) {
159 		/*
160 		 * Both DTEs are valid.
161 		 * Existing DTE has no guest page table.
162 		 */
163 		write_dte_upper128(ptr, new);
164 		write_dte_lower128(ptr, new);
165 		iommu_flush_dte_sync(iommu, dev_data->devid);
166 	} else if (!FIELD_GET(DTE_FLAG_GV, new->data[0])) {
167 		/*
168 		 * Both DTEs are valid.
169 		 * Existing DTE has guest page table,
170 		 * new DTE has no guest page table,
171 		 */
172 		write_dte_lower128(ptr, new);
173 		write_dte_upper128(ptr, new);
174 		iommu_flush_dte_sync(iommu, dev_data->devid);
175 	} else if (FIELD_GET(DTE_GPT_LEVEL_MASK, ptr->data[2]) !=
176 		   FIELD_GET(DTE_GPT_LEVEL_MASK, new->data[2])) {
177 		/*
178 		 * Both DTEs are valid and have guest page table,
179 		 * but have different number of levels. So, we need
180 		 * to upadte both upper and lower 128-bit value, which
181 		 * require disabling and flushing.
182 		 */
183 		struct dev_table_entry clear = {};
184 
185 		/* First disable DTE */
186 		write_dte_lower128(ptr, &clear);
187 		iommu_flush_dte_sync(iommu, dev_data->devid);
188 
189 		/* Then update DTE */
190 		write_dte_upper128(ptr, new);
191 		write_dte_lower128(ptr, new);
192 		iommu_flush_dte_sync(iommu, dev_data->devid);
193 	} else {
194 		/*
195 		 * Both DTEs are valid and have guest page table,
196 		 * and same number of levels. We just need to only
197 		 * update the lower 128-bit. So no need to disable DTE.
198 		 */
199 		write_dte_lower128(ptr, new);
200 	}
201 
202 	spin_unlock_irqrestore(&dev_data->dte_lock, flags);
203 }
204 
205 static void get_dte256(struct amd_iommu *iommu, struct iommu_dev_data *dev_data,
206 		      struct dev_table_entry *dte)
207 {
208 	unsigned long flags;
209 	struct dev_table_entry *ptr;
210 	struct dev_table_entry *dev_table = get_dev_table(iommu);
211 
212 	ptr = &dev_table[dev_data->devid];
213 
214 	spin_lock_irqsave(&dev_data->dte_lock, flags);
215 	dte->data128[0] = ptr->data128[0];
216 	dte->data128[1] = ptr->data128[1];
217 	spin_unlock_irqrestore(&dev_data->dte_lock, flags);
218 }
219 
220 static inline bool pdom_is_v2_pgtbl_mode(struct protection_domain *pdom)
221 {
222 	return (pdom && (pdom->pd_mode == PD_MODE_V2));
223 }
224 
225 static inline bool pdom_is_in_pt_mode(struct protection_domain *pdom)
226 {
227 	return (pdom->domain.type == IOMMU_DOMAIN_IDENTITY);
228 }
229 
230 /*
231  * We cannot support PASID w/ existing v1 page table in the same domain
232  * since it will be nested. However, existing domain w/ v2 page table
233  * or passthrough mode can be used for PASID.
234  */
235 static inline bool pdom_is_sva_capable(struct protection_domain *pdom)
236 {
237 	return pdom_is_v2_pgtbl_mode(pdom) || pdom_is_in_pt_mode(pdom);
238 }
239 
240 static inline int get_acpihid_device_id(struct device *dev,
241 					struct acpihid_map_entry **entry)
242 {
243 	struct acpi_device *adev = ACPI_COMPANION(dev);
244 	struct acpihid_map_entry *p, *p1 = NULL;
245 	int hid_count = 0;
246 	bool fw_bug;
247 
248 	if (!adev)
249 		return -ENODEV;
250 
251 	list_for_each_entry(p, &acpihid_map, list) {
252 		if (acpi_dev_hid_uid_match(adev, p->hid,
253 					   p->uid[0] ? p->uid : NULL)) {
254 			p1 = p;
255 			fw_bug = false;
256 			hid_count = 1;
257 			break;
258 		}
259 
260 		/*
261 		 * Count HID matches w/o UID, raise FW_BUG but allow exactly one match
262 		 */
263 		if (acpi_dev_hid_match(adev, p->hid)) {
264 			p1 = p;
265 			hid_count++;
266 			fw_bug = true;
267 		}
268 	}
269 
270 	if (!p1)
271 		return -EINVAL;
272 	if (fw_bug)
273 		dev_err_once(dev, FW_BUG "No ACPI device matched UID, but %d device%s matched HID.\n",
274 			     hid_count, str_plural(hid_count));
275 	if (hid_count > 1)
276 		return -EINVAL;
277 	if (entry)
278 		*entry = p1;
279 
280 	return p1->devid;
281 }
282 
283 static inline int get_device_sbdf_id(struct device *dev)
284 {
285 	int sbdf;
286 
287 	if (dev_is_pci(dev))
288 		sbdf = get_pci_sbdf_id(to_pci_dev(dev));
289 	else
290 		sbdf = get_acpihid_device_id(dev, NULL);
291 
292 	return sbdf;
293 }
294 
295 struct dev_table_entry *get_dev_table(struct amd_iommu *iommu)
296 {
297 	struct dev_table_entry *dev_table;
298 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
299 
300 	BUG_ON(pci_seg == NULL);
301 	dev_table = pci_seg->dev_table;
302 	BUG_ON(dev_table == NULL);
303 
304 	return dev_table;
305 }
306 
307 static inline u16 get_device_segment(struct device *dev)
308 {
309 	u16 seg;
310 
311 	if (dev_is_pci(dev)) {
312 		struct pci_dev *pdev = to_pci_dev(dev);
313 
314 		seg = pci_domain_nr(pdev->bus);
315 	} else {
316 		u32 devid = get_acpihid_device_id(dev, NULL);
317 
318 		seg = PCI_SBDF_TO_SEGID(devid);
319 	}
320 
321 	return seg;
322 }
323 
324 /* Writes the specific IOMMU for a device into the PCI segment rlookup table */
325 void amd_iommu_set_rlookup_table(struct amd_iommu *iommu, u16 devid)
326 {
327 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
328 
329 	pci_seg->rlookup_table[devid] = iommu;
330 }
331 
332 static struct amd_iommu *__rlookup_amd_iommu(u16 seg, u16 devid)
333 {
334 	struct amd_iommu_pci_seg *pci_seg;
335 
336 	for_each_pci_segment(pci_seg) {
337 		if (pci_seg->id == seg)
338 			return pci_seg->rlookup_table[devid];
339 	}
340 	return NULL;
341 }
342 
343 static struct amd_iommu *rlookup_amd_iommu(struct device *dev)
344 {
345 	u16 seg = get_device_segment(dev);
346 	int devid = get_device_sbdf_id(dev);
347 
348 	if (devid < 0)
349 		return NULL;
350 	return __rlookup_amd_iommu(seg, PCI_SBDF_TO_DEVID(devid));
351 }
352 
353 static struct iommu_dev_data *alloc_dev_data(struct amd_iommu *iommu, u16 devid)
354 {
355 	struct iommu_dev_data *dev_data;
356 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
357 
358 	dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
359 	if (!dev_data)
360 		return NULL;
361 
362 	mutex_init(&dev_data->mutex);
363 	spin_lock_init(&dev_data->dte_lock);
364 	dev_data->devid = devid;
365 	ratelimit_default_init(&dev_data->rs);
366 
367 	llist_add(&dev_data->dev_data_list, &pci_seg->dev_data_list);
368 	return dev_data;
369 }
370 
371 struct iommu_dev_data *search_dev_data(struct amd_iommu *iommu, u16 devid)
372 {
373 	struct iommu_dev_data *dev_data;
374 	struct llist_node *node;
375 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
376 
377 	if (llist_empty(&pci_seg->dev_data_list))
378 		return NULL;
379 
380 	node = pci_seg->dev_data_list.first;
381 	llist_for_each_entry(dev_data, node, dev_data_list) {
382 		if (dev_data->devid == devid)
383 			return dev_data;
384 	}
385 
386 	return NULL;
387 }
388 
389 static int clone_alias(struct pci_dev *pdev, u16 alias, void *data)
390 {
391 	struct dev_table_entry new;
392 	struct amd_iommu *iommu;
393 	struct iommu_dev_data *dev_data, *alias_data;
394 	u16 devid = pci_dev_id(pdev);
395 	int ret = 0;
396 
397 	if (devid == alias)
398 		return 0;
399 
400 	iommu = rlookup_amd_iommu(&pdev->dev);
401 	if (!iommu)
402 		return 0;
403 
404 	/* Copy the data from pdev */
405 	dev_data = dev_iommu_priv_get(&pdev->dev);
406 	if (!dev_data) {
407 		pr_err("%s : Failed to get dev_data for 0x%x\n", __func__, devid);
408 		ret = -EINVAL;
409 		goto out;
410 	}
411 	get_dte256(iommu, dev_data, &new);
412 
413 	/* Setup alias */
414 	alias_data = find_dev_data(iommu, alias);
415 	if (!alias_data) {
416 		pr_err("%s : Failed to get alias dev_data for 0x%x\n", __func__, alias);
417 		ret = -EINVAL;
418 		goto out;
419 	}
420 	update_dte256(iommu, alias_data, &new);
421 
422 	amd_iommu_set_rlookup_table(iommu, alias);
423 out:
424 	return ret;
425 }
426 
427 static void clone_aliases(struct amd_iommu *iommu, struct device *dev)
428 {
429 	struct pci_dev *pdev;
430 
431 	if (!dev_is_pci(dev))
432 		return;
433 	pdev = to_pci_dev(dev);
434 
435 	/*
436 	 * The IVRS alias stored in the alias table may not be
437 	 * part of the PCI DMA aliases if it's bus differs
438 	 * from the original device.
439 	 */
440 	clone_alias(pdev, iommu->pci_seg->alias_table[pci_dev_id(pdev)], NULL);
441 
442 	pci_for_each_dma_alias(pdev, clone_alias, NULL);
443 }
444 
445 static void setup_aliases(struct amd_iommu *iommu, struct device *dev)
446 {
447 	struct pci_dev *pdev = to_pci_dev(dev);
448 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
449 	u16 ivrs_alias;
450 
451 	/* For ACPI HID devices, there are no aliases */
452 	if (!dev_is_pci(dev))
453 		return;
454 
455 	/*
456 	 * Add the IVRS alias to the pci aliases if it is on the same
457 	 * bus. The IVRS table may know about a quirk that we don't.
458 	 */
459 	ivrs_alias = pci_seg->alias_table[pci_dev_id(pdev)];
460 	if (ivrs_alias != pci_dev_id(pdev) &&
461 	    PCI_BUS_NUM(ivrs_alias) == pdev->bus->number)
462 		pci_add_dma_alias(pdev, ivrs_alias & 0xff, 1);
463 
464 	clone_aliases(iommu, dev);
465 }
466 
467 static struct iommu_dev_data *find_dev_data(struct amd_iommu *iommu, u16 devid)
468 {
469 	struct iommu_dev_data *dev_data;
470 
471 	dev_data = search_dev_data(iommu, devid);
472 
473 	if (dev_data == NULL) {
474 		dev_data = alloc_dev_data(iommu, devid);
475 		if (!dev_data)
476 			return NULL;
477 
478 		if (translation_pre_enabled(iommu))
479 			dev_data->defer_attach = true;
480 	}
481 
482 	return dev_data;
483 }
484 
485 /*
486 * Find or create an IOMMU group for a acpihid device.
487 */
488 static struct iommu_group *acpihid_device_group(struct device *dev)
489 {
490 	struct acpihid_map_entry *p, *entry = NULL;
491 	int devid;
492 
493 	devid = get_acpihid_device_id(dev, &entry);
494 	if (devid < 0)
495 		return ERR_PTR(devid);
496 
497 	list_for_each_entry(p, &acpihid_map, list) {
498 		if ((devid == p->devid) && p->group)
499 			entry->group = p->group;
500 	}
501 
502 	if (!entry->group)
503 		entry->group = generic_device_group(dev);
504 	else
505 		iommu_group_ref_get(entry->group);
506 
507 	return entry->group;
508 }
509 
510 static inline bool pdev_pasid_supported(struct iommu_dev_data *dev_data)
511 {
512 	return (dev_data->flags & AMD_IOMMU_DEVICE_FLAG_PASID_SUP);
513 }
514 
515 static u32 pdev_get_caps(struct pci_dev *pdev)
516 {
517 	int features;
518 	u32 flags = 0;
519 
520 	if (pci_ats_supported(pdev))
521 		flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
522 
523 	if (pci_pri_supported(pdev))
524 		flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
525 
526 	features = pci_pasid_features(pdev);
527 	if (features >= 0) {
528 		flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
529 
530 		if (features & PCI_PASID_CAP_EXEC)
531 			flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
532 
533 		if (features & PCI_PASID_CAP_PRIV)
534 			flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
535 	}
536 
537 	return flags;
538 }
539 
540 static inline int pdev_enable_cap_ats(struct pci_dev *pdev)
541 {
542 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
543 	int ret = -EINVAL;
544 
545 	if (dev_data->ats_enabled)
546 		return 0;
547 
548 	if (amd_iommu_iotlb_sup &&
549 	    (dev_data->flags & AMD_IOMMU_DEVICE_FLAG_ATS_SUP)) {
550 		ret = pci_enable_ats(pdev, PAGE_SHIFT);
551 		if (!ret) {
552 			dev_data->ats_enabled = 1;
553 			dev_data->ats_qdep    = pci_ats_queue_depth(pdev);
554 		}
555 	}
556 
557 	return ret;
558 }
559 
560 static inline void pdev_disable_cap_ats(struct pci_dev *pdev)
561 {
562 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
563 
564 	if (dev_data->ats_enabled) {
565 		pci_disable_ats(pdev);
566 		dev_data->ats_enabled = 0;
567 	}
568 }
569 
570 static inline int pdev_enable_cap_pri(struct pci_dev *pdev)
571 {
572 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
573 	int ret = -EINVAL;
574 
575 	if (dev_data->pri_enabled)
576 		return 0;
577 
578 	if (!dev_data->ats_enabled)
579 		return 0;
580 
581 	if (dev_data->flags & AMD_IOMMU_DEVICE_FLAG_PRI_SUP) {
582 		/*
583 		 * First reset the PRI state of the device.
584 		 * FIXME: Hardcode number of outstanding requests for now
585 		 */
586 		if (!pci_reset_pri(pdev) && !pci_enable_pri(pdev, 32)) {
587 			dev_data->pri_enabled = 1;
588 			dev_data->pri_tlp     = pci_prg_resp_pasid_required(pdev);
589 
590 			ret = 0;
591 		}
592 	}
593 
594 	return ret;
595 }
596 
597 static inline void pdev_disable_cap_pri(struct pci_dev *pdev)
598 {
599 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
600 
601 	if (dev_data->pri_enabled) {
602 		pci_disable_pri(pdev);
603 		dev_data->pri_enabled = 0;
604 	}
605 }
606 
607 static inline int pdev_enable_cap_pasid(struct pci_dev *pdev)
608 {
609 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
610 	int ret = -EINVAL;
611 
612 	if (dev_data->pasid_enabled)
613 		return 0;
614 
615 	if (dev_data->flags & AMD_IOMMU_DEVICE_FLAG_PASID_SUP) {
616 		/* Only allow access to user-accessible pages */
617 		ret = pci_enable_pasid(pdev, 0);
618 		if (!ret)
619 			dev_data->pasid_enabled = 1;
620 	}
621 
622 	return ret;
623 }
624 
625 static inline void pdev_disable_cap_pasid(struct pci_dev *pdev)
626 {
627 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(&pdev->dev);
628 
629 	if (dev_data->pasid_enabled) {
630 		pci_disable_pasid(pdev);
631 		dev_data->pasid_enabled = 0;
632 	}
633 }
634 
635 static void pdev_enable_caps(struct pci_dev *pdev)
636 {
637 	pdev_enable_cap_pasid(pdev);
638 	pdev_enable_cap_ats(pdev);
639 	pdev_enable_cap_pri(pdev);
640 }
641 
642 static void pdev_disable_caps(struct pci_dev *pdev)
643 {
644 	pdev_disable_cap_ats(pdev);
645 	pdev_disable_cap_pasid(pdev);
646 	pdev_disable_cap_pri(pdev);
647 }
648 
649 /*
650  * This function checks if the driver got a valid device from the caller to
651  * avoid dereferencing invalid pointers.
652  */
653 static bool check_device(struct device *dev)
654 {
655 	struct amd_iommu_pci_seg *pci_seg;
656 	struct amd_iommu *iommu;
657 	int devid, sbdf;
658 
659 	if (!dev)
660 		return false;
661 
662 	sbdf = get_device_sbdf_id(dev);
663 	if (sbdf < 0)
664 		return false;
665 	devid = PCI_SBDF_TO_DEVID(sbdf);
666 
667 	iommu = rlookup_amd_iommu(dev);
668 	if (!iommu)
669 		return false;
670 
671 	/* Out of our scope? */
672 	pci_seg = iommu->pci_seg;
673 	if (devid > pci_seg->last_bdf)
674 		return false;
675 
676 	return true;
677 }
678 
679 static int iommu_init_device(struct amd_iommu *iommu, struct device *dev)
680 {
681 	struct iommu_dev_data *dev_data;
682 	int devid, sbdf;
683 
684 	if (dev_iommu_priv_get(dev))
685 		return 0;
686 
687 	sbdf = get_device_sbdf_id(dev);
688 	if (sbdf < 0)
689 		return sbdf;
690 
691 	devid = PCI_SBDF_TO_DEVID(sbdf);
692 	dev_data = find_dev_data(iommu, devid);
693 	if (!dev_data)
694 		return -ENOMEM;
695 
696 	dev_data->dev = dev;
697 
698 	/*
699 	 * The dev_iommu_priv_set() needes to be called before setup_aliases.
700 	 * Otherwise, subsequent call to dev_iommu_priv_get() will fail.
701 	 */
702 	dev_iommu_priv_set(dev, dev_data);
703 	setup_aliases(iommu, dev);
704 
705 	/*
706 	 * By default we use passthrough mode for IOMMUv2 capable device.
707 	 * But if amd_iommu=force_isolation is set (e.g. to debug DMA to
708 	 * invalid address), we ignore the capability for the device so
709 	 * it'll be forced to go into translation mode.
710 	 */
711 	if ((iommu_default_passthrough() || !amd_iommu_force_isolation) &&
712 	    dev_is_pci(dev) && amd_iommu_gt_ppr_supported()) {
713 		dev_data->flags = pdev_get_caps(to_pci_dev(dev));
714 	}
715 
716 	return 0;
717 }
718 
719 static void iommu_ignore_device(struct amd_iommu *iommu, struct device *dev)
720 {
721 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
722 	struct dev_table_entry *dev_table = get_dev_table(iommu);
723 	int devid, sbdf;
724 
725 	sbdf = get_device_sbdf_id(dev);
726 	if (sbdf < 0)
727 		return;
728 
729 	devid = PCI_SBDF_TO_DEVID(sbdf);
730 	pci_seg->rlookup_table[devid] = NULL;
731 	memset(&dev_table[devid], 0, sizeof(struct dev_table_entry));
732 
733 	setup_aliases(iommu, dev);
734 }
735 
736 
737 /****************************************************************************
738  *
739  * Interrupt handling functions
740  *
741  ****************************************************************************/
742 
743 static void dump_dte_entry(struct amd_iommu *iommu, u16 devid)
744 {
745 	int i;
746 	struct dev_table_entry dte;
747 	struct iommu_dev_data *dev_data = find_dev_data(iommu, devid);
748 
749 	get_dte256(iommu, dev_data, &dte);
750 
751 	for (i = 0; i < 4; ++i)
752 		pr_err("DTE[%d]: %016llx\n", i, dte.data[i]);
753 }
754 
755 static void dump_command(unsigned long phys_addr)
756 {
757 	struct iommu_cmd *cmd = iommu_phys_to_virt(phys_addr);
758 	int i;
759 
760 	for (i = 0; i < 4; ++i)
761 		pr_err("CMD[%d]: %08x\n", i, cmd->data[i]);
762 }
763 
764 static void amd_iommu_report_rmp_hw_error(struct amd_iommu *iommu, volatile u32 *event)
765 {
766 	struct iommu_dev_data *dev_data = NULL;
767 	int devid, vmg_tag, flags;
768 	struct pci_dev *pdev;
769 	u64 spa;
770 
771 	devid   = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
772 	vmg_tag = (event[1]) & 0xFFFF;
773 	flags   = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
774 	spa     = ((u64)event[3] << 32) | (event[2] & 0xFFFFFFF8);
775 
776 	pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
777 					   devid & 0xff);
778 	if (pdev)
779 		dev_data = dev_iommu_priv_get(&pdev->dev);
780 
781 	if (dev_data) {
782 		if (__ratelimit(&dev_data->rs)) {
783 			pci_err(pdev, "Event logged [RMP_HW_ERROR vmg_tag=0x%04x, spa=0x%llx, flags=0x%04x]\n",
784 				vmg_tag, spa, flags);
785 		}
786 	} else {
787 		pr_err_ratelimited("Event logged [RMP_HW_ERROR device=%04x:%02x:%02x.%x, vmg_tag=0x%04x, spa=0x%llx, flags=0x%04x]\n",
788 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
789 			vmg_tag, spa, flags);
790 	}
791 
792 	if (pdev)
793 		pci_dev_put(pdev);
794 }
795 
796 static void amd_iommu_report_rmp_fault(struct amd_iommu *iommu, volatile u32 *event)
797 {
798 	struct iommu_dev_data *dev_data = NULL;
799 	int devid, flags_rmp, vmg_tag, flags;
800 	struct pci_dev *pdev;
801 	u64 gpa;
802 
803 	devid     = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
804 	flags_rmp = (event[0] >> EVENT_FLAGS_SHIFT) & 0xFF;
805 	vmg_tag   = (event[1]) & 0xFFFF;
806 	flags     = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
807 	gpa       = ((u64)event[3] << 32) | event[2];
808 
809 	pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
810 					   devid & 0xff);
811 	if (pdev)
812 		dev_data = dev_iommu_priv_get(&pdev->dev);
813 
814 	if (dev_data) {
815 		if (__ratelimit(&dev_data->rs)) {
816 			pci_err(pdev, "Event logged [RMP_PAGE_FAULT vmg_tag=0x%04x, gpa=0x%llx, flags_rmp=0x%04x, flags=0x%04x]\n",
817 				vmg_tag, gpa, flags_rmp, flags);
818 		}
819 	} else {
820 		pr_err_ratelimited("Event logged [RMP_PAGE_FAULT device=%04x:%02x:%02x.%x, vmg_tag=0x%04x, gpa=0x%llx, flags_rmp=0x%04x, flags=0x%04x]\n",
821 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
822 			vmg_tag, gpa, flags_rmp, flags);
823 	}
824 
825 	if (pdev)
826 		pci_dev_put(pdev);
827 }
828 
829 #define IS_IOMMU_MEM_TRANSACTION(flags)		\
830 	(((flags) & EVENT_FLAG_I) == 0)
831 
832 #define IS_WRITE_REQUEST(flags)			\
833 	((flags) & EVENT_FLAG_RW)
834 
835 static void amd_iommu_report_page_fault(struct amd_iommu *iommu,
836 					u16 devid, u16 domain_id,
837 					u64 address, int flags)
838 {
839 	struct iommu_dev_data *dev_data = NULL;
840 	struct pci_dev *pdev;
841 
842 	pdev = pci_get_domain_bus_and_slot(iommu->pci_seg->id, PCI_BUS_NUM(devid),
843 					   devid & 0xff);
844 	if (pdev)
845 		dev_data = dev_iommu_priv_get(&pdev->dev);
846 
847 	if (dev_data) {
848 		/*
849 		 * If this is a DMA fault (for which the I(nterrupt)
850 		 * bit will be unset), allow report_iommu_fault() to
851 		 * prevent logging it.
852 		 */
853 		if (IS_IOMMU_MEM_TRANSACTION(flags)) {
854 			/* Device not attached to domain properly */
855 			if (dev_data->domain == NULL) {
856 				pr_err_ratelimited("Event logged [Device not attached to domain properly]\n");
857 				pr_err_ratelimited("  device=%04x:%02x:%02x.%x domain=0x%04x\n",
858 						   iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid),
859 						   PCI_FUNC(devid), domain_id);
860 				goto out;
861 			}
862 
863 			if (!report_iommu_fault(&dev_data->domain->domain,
864 						&pdev->dev, address,
865 						IS_WRITE_REQUEST(flags) ?
866 							IOMMU_FAULT_WRITE :
867 							IOMMU_FAULT_READ))
868 				goto out;
869 		}
870 
871 		if (__ratelimit(&dev_data->rs)) {
872 			pci_err(pdev, "Event logged [IO_PAGE_FAULT domain=0x%04x address=0x%llx flags=0x%04x]\n",
873 				domain_id, address, flags);
874 		}
875 	} else {
876 		pr_err_ratelimited("Event logged [IO_PAGE_FAULT device=%04x:%02x:%02x.%x domain=0x%04x address=0x%llx flags=0x%04x]\n",
877 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
878 			domain_id, address, flags);
879 	}
880 
881 out:
882 	if (pdev)
883 		pci_dev_put(pdev);
884 }
885 
886 static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
887 {
888 	struct device *dev = iommu->iommu.dev;
889 	int type, devid, flags, tag;
890 	volatile u32 *event = __evt;
891 	int count = 0;
892 	u64 address, ctrl;
893 	u32 pasid;
894 
895 retry:
896 	type    = (event[1] >> EVENT_TYPE_SHIFT)  & EVENT_TYPE_MASK;
897 	devid   = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
898 	pasid   = (event[0] & EVENT_DOMID_MASK_HI) |
899 		  (event[1] & EVENT_DOMID_MASK_LO);
900 	flags   = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
901 	address = (u64)(((u64)event[3]) << 32) | event[2];
902 	ctrl    = readq(iommu->mmio_base + MMIO_CONTROL_OFFSET);
903 
904 	if (type == 0) {
905 		/* Did we hit the erratum? */
906 		if (++count == LOOP_TIMEOUT) {
907 			pr_err("No event written to event log\n");
908 			return;
909 		}
910 		udelay(1);
911 		goto retry;
912 	}
913 
914 	if (type == EVENT_TYPE_IO_FAULT) {
915 		amd_iommu_report_page_fault(iommu, devid, pasid, address, flags);
916 		return;
917 	}
918 
919 	switch (type) {
920 	case EVENT_TYPE_ILL_DEV:
921 		dev_err(dev, "Event logged [ILLEGAL_DEV_TABLE_ENTRY device=%04x:%02x:%02x.%x pasid=0x%05x address=0x%llx flags=0x%04x]\n",
922 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
923 			pasid, address, flags);
924 		dev_err(dev, "Control Reg : 0x%llx\n", ctrl);
925 		dump_dte_entry(iommu, devid);
926 		break;
927 	case EVENT_TYPE_DEV_TAB_ERR:
928 		dev_err(dev, "Event logged [DEV_TAB_HARDWARE_ERROR device=%04x:%02x:%02x.%x "
929 			"address=0x%llx flags=0x%04x]\n",
930 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
931 			address, flags);
932 		break;
933 	case EVENT_TYPE_PAGE_TAB_ERR:
934 		dev_err(dev, "Event logged [PAGE_TAB_HARDWARE_ERROR device=%04x:%02x:%02x.%x pasid=0x%04x address=0x%llx flags=0x%04x]\n",
935 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
936 			pasid, address, flags);
937 		break;
938 	case EVENT_TYPE_ILL_CMD:
939 		dev_err(dev, "Event logged [ILLEGAL_COMMAND_ERROR address=0x%llx]\n", address);
940 		dump_command(address);
941 		break;
942 	case EVENT_TYPE_CMD_HARD_ERR:
943 		dev_err(dev, "Event logged [COMMAND_HARDWARE_ERROR address=0x%llx flags=0x%04x]\n",
944 			address, flags);
945 		break;
946 	case EVENT_TYPE_IOTLB_INV_TO:
947 		dev_err(dev, "Event logged [IOTLB_INV_TIMEOUT device=%04x:%02x:%02x.%x address=0x%llx]\n",
948 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
949 			address);
950 		break;
951 	case EVENT_TYPE_INV_DEV_REQ:
952 		dev_err(dev, "Event logged [INVALID_DEVICE_REQUEST device=%04x:%02x:%02x.%x pasid=0x%05x address=0x%llx flags=0x%04x]\n",
953 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
954 			pasid, address, flags);
955 		break;
956 	case EVENT_TYPE_RMP_FAULT:
957 		amd_iommu_report_rmp_fault(iommu, event);
958 		break;
959 	case EVENT_TYPE_RMP_HW_ERR:
960 		amd_iommu_report_rmp_hw_error(iommu, event);
961 		break;
962 	case EVENT_TYPE_INV_PPR_REQ:
963 		pasid = PPR_PASID(*((u64 *)__evt));
964 		tag = event[1] & 0x03FF;
965 		dev_err(dev, "Event logged [INVALID_PPR_REQUEST device=%04x:%02x:%02x.%x pasid=0x%05x address=0x%llx flags=0x%04x tag=0x%03x]\n",
966 			iommu->pci_seg->id, PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
967 			pasid, address, flags, tag);
968 		break;
969 	default:
970 		dev_err(dev, "Event logged [UNKNOWN event[0]=0x%08x event[1]=0x%08x event[2]=0x%08x event[3]=0x%08x\n",
971 			event[0], event[1], event[2], event[3]);
972 	}
973 
974 	/*
975 	 * To detect the hardware errata 732 we need to clear the
976 	 * entry back to zero. This issue does not exist on SNP
977 	 * enabled system. Also this buffer is not writeable on
978 	 * SNP enabled system.
979 	 */
980 	if (!amd_iommu_snp_en)
981 		memset(__evt, 0, 4 * sizeof(u32));
982 }
983 
984 static void iommu_poll_events(struct amd_iommu *iommu)
985 {
986 	u32 head, tail;
987 
988 	head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
989 	tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
990 
991 	while (head != tail) {
992 		iommu_print_event(iommu, iommu->evt_buf + head);
993 
994 		/* Update head pointer of hardware ring-buffer */
995 		head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
996 		writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
997 	}
998 
999 }
1000 
1001 #ifdef CONFIG_IRQ_REMAP
1002 static int (*iommu_ga_log_notifier)(u32);
1003 
1004 int amd_iommu_register_ga_log_notifier(int (*notifier)(u32))
1005 {
1006 	iommu_ga_log_notifier = notifier;
1007 
1008 	/*
1009 	 * Ensure all in-flight IRQ handlers run to completion before returning
1010 	 * to the caller, e.g. to ensure module code isn't unloaded while it's
1011 	 * being executed in the IRQ handler.
1012 	 */
1013 	if (!notifier)
1014 		synchronize_rcu();
1015 
1016 	return 0;
1017 }
1018 EXPORT_SYMBOL(amd_iommu_register_ga_log_notifier);
1019 
1020 static void iommu_poll_ga_log(struct amd_iommu *iommu)
1021 {
1022 	u32 head, tail;
1023 
1024 	if (iommu->ga_log == NULL)
1025 		return;
1026 
1027 	head = readl(iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
1028 	tail = readl(iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
1029 
1030 	while (head != tail) {
1031 		volatile u64 *raw;
1032 		u64 log_entry;
1033 
1034 		raw = (u64 *)(iommu->ga_log + head);
1035 
1036 		/* Avoid memcpy function-call overhead */
1037 		log_entry = *raw;
1038 
1039 		/* Update head pointer of hardware ring-buffer */
1040 		head = (head + GA_ENTRY_SIZE) % GA_LOG_SIZE;
1041 		writel(head, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
1042 
1043 		/* Handle GA entry */
1044 		switch (GA_REQ_TYPE(log_entry)) {
1045 		case GA_GUEST_NR:
1046 			if (!iommu_ga_log_notifier)
1047 				break;
1048 
1049 			pr_debug("%s: devid=%#x, ga_tag=%#x\n",
1050 				 __func__, GA_DEVID(log_entry),
1051 				 GA_TAG(log_entry));
1052 
1053 			if (iommu_ga_log_notifier(GA_TAG(log_entry)) != 0)
1054 				pr_err("GA log notifier failed.\n");
1055 			break;
1056 		default:
1057 			break;
1058 		}
1059 	}
1060 }
1061 
1062 static void
1063 amd_iommu_set_pci_msi_domain(struct device *dev, struct amd_iommu *iommu)
1064 {
1065 	if (!irq_remapping_enabled || !dev_is_pci(dev) ||
1066 	    !pci_dev_has_default_msi_parent_domain(to_pci_dev(dev)))
1067 		return;
1068 
1069 	dev_set_msi_domain(dev, iommu->ir_domain);
1070 }
1071 
1072 #else /* CONFIG_IRQ_REMAP */
1073 static inline void
1074 amd_iommu_set_pci_msi_domain(struct device *dev, struct amd_iommu *iommu) { }
1075 #endif /* !CONFIG_IRQ_REMAP */
1076 
1077 static void amd_iommu_handle_irq(void *data, const char *evt_type,
1078 				 u32 int_mask, u32 overflow_mask,
1079 				 void (*int_handler)(struct amd_iommu *),
1080 				 void (*overflow_handler)(struct amd_iommu *))
1081 {
1082 	struct amd_iommu *iommu = (struct amd_iommu *) data;
1083 	u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
1084 	u32 mask = int_mask | overflow_mask;
1085 
1086 	while (status & mask) {
1087 		/* Enable interrupt sources again */
1088 		writel(mask, iommu->mmio_base + MMIO_STATUS_OFFSET);
1089 
1090 		if (int_handler) {
1091 			pr_devel("Processing IOMMU (ivhd%d) %s Log\n",
1092 				 iommu->index, evt_type);
1093 			int_handler(iommu);
1094 		}
1095 
1096 		if ((status & overflow_mask) && overflow_handler)
1097 			overflow_handler(iommu);
1098 
1099 		/*
1100 		 * Hardware bug: ERBT1312
1101 		 * When re-enabling interrupt (by writing 1
1102 		 * to clear the bit), the hardware might also try to set
1103 		 * the interrupt bit in the event status register.
1104 		 * In this scenario, the bit will be set, and disable
1105 		 * subsequent interrupts.
1106 		 *
1107 		 * Workaround: The IOMMU driver should read back the
1108 		 * status register and check if the interrupt bits are cleared.
1109 		 * If not, driver will need to go through the interrupt handler
1110 		 * again and re-clear the bits
1111 		 */
1112 		status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
1113 	}
1114 }
1115 
1116 irqreturn_t amd_iommu_int_thread_evtlog(int irq, void *data)
1117 {
1118 	amd_iommu_handle_irq(data, "Evt", MMIO_STATUS_EVT_INT_MASK,
1119 			     MMIO_STATUS_EVT_OVERFLOW_MASK,
1120 			     iommu_poll_events, amd_iommu_restart_event_logging);
1121 
1122 	return IRQ_HANDLED;
1123 }
1124 
1125 irqreturn_t amd_iommu_int_thread_pprlog(int irq, void *data)
1126 {
1127 	amd_iommu_handle_irq(data, "PPR", MMIO_STATUS_PPR_INT_MASK,
1128 			     MMIO_STATUS_PPR_OVERFLOW_MASK,
1129 			     amd_iommu_poll_ppr_log, amd_iommu_restart_ppr_log);
1130 
1131 	return IRQ_HANDLED;
1132 }
1133 
1134 irqreturn_t amd_iommu_int_thread_galog(int irq, void *data)
1135 {
1136 #ifdef CONFIG_IRQ_REMAP
1137 	amd_iommu_handle_irq(data, "GA", MMIO_STATUS_GALOG_INT_MASK,
1138 			     MMIO_STATUS_GALOG_OVERFLOW_MASK,
1139 			     iommu_poll_ga_log, amd_iommu_restart_ga_log);
1140 #endif
1141 
1142 	return IRQ_HANDLED;
1143 }
1144 
1145 irqreturn_t amd_iommu_int_thread(int irq, void *data)
1146 {
1147 	amd_iommu_int_thread_evtlog(irq, data);
1148 	amd_iommu_int_thread_pprlog(irq, data);
1149 	amd_iommu_int_thread_galog(irq, data);
1150 
1151 	return IRQ_HANDLED;
1152 }
1153 
1154 /****************************************************************************
1155  *
1156  * IOMMU command queuing functions
1157  *
1158  ****************************************************************************/
1159 
1160 static void dump_command_buffer(struct amd_iommu *iommu)
1161 {
1162 	struct iommu_cmd *cmd;
1163 	u32 head, tail;
1164 	int i;
1165 
1166 	head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
1167 	tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
1168 
1169 	pr_err("CMD Buffer head=%llu tail=%llu\n", MMIO_CMD_BUFFER_HEAD(head),
1170 	       MMIO_CMD_BUFFER_TAIL(tail));
1171 
1172 	for (i = 0; i < CMD_BUFFER_ENTRIES; i++) {
1173 		cmd = (struct iommu_cmd *)(iommu->cmd_buf + i * sizeof(*cmd));
1174 		pr_err("%3d: %08x %08x %08x %08x\n", i, cmd->data[0], cmd->data[1], cmd->data[2],
1175 		       cmd->data[3]);
1176 	}
1177 }
1178 
1179 static int wait_on_sem(struct amd_iommu *iommu, u64 data)
1180 {
1181 	int i = 0;
1182 
1183 	while (*iommu->cmd_sem != data && i < LOOP_TIMEOUT) {
1184 		udelay(1);
1185 		i += 1;
1186 	}
1187 
1188 	if (i == LOOP_TIMEOUT) {
1189 
1190 		pr_alert("IOMMU %04x:%02x:%02x.%01x: Completion-Wait loop timed out\n",
1191 			 iommu->pci_seg->id, PCI_BUS_NUM(iommu->devid),
1192 			 PCI_SLOT(iommu->devid), PCI_FUNC(iommu->devid));
1193 
1194 		if (amd_iommu_dump)
1195 			DO_ONCE_LITE(dump_command_buffer, iommu);
1196 
1197 		return -EIO;
1198 	}
1199 
1200 	return 0;
1201 }
1202 
1203 static void copy_cmd_to_buffer(struct amd_iommu *iommu,
1204 			       struct iommu_cmd *cmd)
1205 {
1206 	u8 *target;
1207 	u32 tail;
1208 
1209 	/* Copy command to buffer */
1210 	tail = iommu->cmd_buf_tail;
1211 	target = iommu->cmd_buf + tail;
1212 	memcpy(target, cmd, sizeof(*cmd));
1213 
1214 	tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
1215 	iommu->cmd_buf_tail = tail;
1216 
1217 	/* Tell the IOMMU about it */
1218 	writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
1219 }
1220 
1221 static void build_completion_wait(struct iommu_cmd *cmd,
1222 				  struct amd_iommu *iommu,
1223 				  u64 data)
1224 {
1225 	u64 paddr = iommu->cmd_sem_paddr;
1226 
1227 	memset(cmd, 0, sizeof(*cmd));
1228 	cmd->data[0] = lower_32_bits(paddr) | CMD_COMPL_WAIT_STORE_MASK;
1229 	cmd->data[1] = upper_32_bits(paddr);
1230 	cmd->data[2] = lower_32_bits(data);
1231 	cmd->data[3] = upper_32_bits(data);
1232 	CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
1233 }
1234 
1235 static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
1236 {
1237 	memset(cmd, 0, sizeof(*cmd));
1238 	cmd->data[0] = devid;
1239 	CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
1240 }
1241 
1242 /*
1243  * Builds an invalidation address which is suitable for one page or multiple
1244  * pages. Sets the size bit (S) as needed is more than one page is flushed.
1245  */
1246 static inline u64 build_inv_address(u64 address, size_t size)
1247 {
1248 	u64 pages, end, msb_diff;
1249 
1250 	pages = iommu_num_pages(address, size, PAGE_SIZE);
1251 
1252 	if (pages == 1)
1253 		return address & PAGE_MASK;
1254 
1255 	end = address + size - 1;
1256 
1257 	/*
1258 	 * msb_diff would hold the index of the most significant bit that
1259 	 * flipped between the start and end.
1260 	 */
1261 	msb_diff = fls64(end ^ address) - 1;
1262 
1263 	/*
1264 	 * Bits 63:52 are sign extended. If for some reason bit 51 is different
1265 	 * between the start and the end, invalidate everything.
1266 	 */
1267 	if (unlikely(msb_diff > 51)) {
1268 		address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
1269 	} else {
1270 		/*
1271 		 * The msb-bit must be clear on the address. Just set all the
1272 		 * lower bits.
1273 		 */
1274 		address |= (1ull << msb_diff) - 1;
1275 	}
1276 
1277 	/* Clear bits 11:0 */
1278 	address &= PAGE_MASK;
1279 
1280 	/* Set the size bit - we flush more than one 4kb page */
1281 	return address | CMD_INV_IOMMU_PAGES_SIZE_MASK;
1282 }
1283 
1284 static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
1285 				  size_t size, u16 domid,
1286 				  ioasid_t pasid, bool gn)
1287 {
1288 	u64 inv_address = build_inv_address(address, size);
1289 
1290 	memset(cmd, 0, sizeof(*cmd));
1291 
1292 	cmd->data[1] |= domid;
1293 	cmd->data[2]  = lower_32_bits(inv_address);
1294 	cmd->data[3]  = upper_32_bits(inv_address);
1295 	/* PDE bit - we want to flush everything, not only the PTEs */
1296 	cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
1297 	if (gn) {
1298 		cmd->data[0] |= pasid;
1299 		cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
1300 	}
1301 	CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
1302 }
1303 
1304 static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
1305 				  u64 address, size_t size,
1306 				  ioasid_t pasid, bool gn)
1307 {
1308 	u64 inv_address = build_inv_address(address, size);
1309 
1310 	memset(cmd, 0, sizeof(*cmd));
1311 
1312 	cmd->data[0]  = devid;
1313 	cmd->data[0] |= (qdep & 0xff) << 24;
1314 	cmd->data[1]  = devid;
1315 	cmd->data[2]  = lower_32_bits(inv_address);
1316 	cmd->data[3]  = upper_32_bits(inv_address);
1317 	if (gn) {
1318 		cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
1319 		cmd->data[1] |= (pasid & 0xff) << 16;
1320 		cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
1321 	}
1322 
1323 	CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
1324 }
1325 
1326 static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, u32 pasid,
1327 			       int status, int tag, u8 gn)
1328 {
1329 	memset(cmd, 0, sizeof(*cmd));
1330 
1331 	cmd->data[0]  = devid;
1332 	if (gn) {
1333 		cmd->data[1]  = pasid;
1334 		cmd->data[2]  = CMD_INV_IOMMU_PAGES_GN_MASK;
1335 	}
1336 	cmd->data[3]  = tag & 0x1ff;
1337 	cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
1338 
1339 	CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
1340 }
1341 
1342 static void build_inv_all(struct iommu_cmd *cmd)
1343 {
1344 	memset(cmd, 0, sizeof(*cmd));
1345 	CMD_SET_TYPE(cmd, CMD_INV_ALL);
1346 }
1347 
1348 static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
1349 {
1350 	memset(cmd, 0, sizeof(*cmd));
1351 	cmd->data[0] = devid;
1352 	CMD_SET_TYPE(cmd, CMD_INV_IRT);
1353 }
1354 
1355 /*
1356  * Writes the command to the IOMMUs command buffer and informs the
1357  * hardware about the new command.
1358  */
1359 static int __iommu_queue_command_sync(struct amd_iommu *iommu,
1360 				      struct iommu_cmd *cmd,
1361 				      bool sync)
1362 {
1363 	unsigned int count = 0;
1364 	u32 left, next_tail;
1365 
1366 	next_tail = (iommu->cmd_buf_tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
1367 again:
1368 	left      = (iommu->cmd_buf_head - next_tail) % CMD_BUFFER_SIZE;
1369 
1370 	if (left <= 0x20) {
1371 		/* Skip udelay() the first time around */
1372 		if (count++) {
1373 			if (count == LOOP_TIMEOUT) {
1374 				pr_err("Command buffer timeout\n");
1375 				return -EIO;
1376 			}
1377 
1378 			udelay(1);
1379 		}
1380 
1381 		/* Update head and recheck remaining space */
1382 		iommu->cmd_buf_head = readl(iommu->mmio_base +
1383 					    MMIO_CMD_HEAD_OFFSET);
1384 
1385 		goto again;
1386 	}
1387 
1388 	copy_cmd_to_buffer(iommu, cmd);
1389 
1390 	/* Do we need to make sure all commands are processed? */
1391 	iommu->need_sync = sync;
1392 
1393 	return 0;
1394 }
1395 
1396 static int iommu_queue_command_sync(struct amd_iommu *iommu,
1397 				    struct iommu_cmd *cmd,
1398 				    bool sync)
1399 {
1400 	unsigned long flags;
1401 	int ret;
1402 
1403 	raw_spin_lock_irqsave(&iommu->lock, flags);
1404 	ret = __iommu_queue_command_sync(iommu, cmd, sync);
1405 	raw_spin_unlock_irqrestore(&iommu->lock, flags);
1406 
1407 	return ret;
1408 }
1409 
1410 static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1411 {
1412 	return iommu_queue_command_sync(iommu, cmd, true);
1413 }
1414 
1415 /*
1416  * This function queues a completion wait command into the command
1417  * buffer of an IOMMU
1418  */
1419 static int iommu_completion_wait(struct amd_iommu *iommu)
1420 {
1421 	struct iommu_cmd cmd;
1422 	unsigned long flags;
1423 	int ret;
1424 	u64 data;
1425 
1426 	if (!iommu->need_sync)
1427 		return 0;
1428 
1429 	data = atomic64_inc_return(&iommu->cmd_sem_val);
1430 	build_completion_wait(&cmd, iommu, data);
1431 
1432 	raw_spin_lock_irqsave(&iommu->lock, flags);
1433 
1434 	ret = __iommu_queue_command_sync(iommu, &cmd, false);
1435 	if (ret)
1436 		goto out_unlock;
1437 
1438 	ret = wait_on_sem(iommu, data);
1439 
1440 out_unlock:
1441 	raw_spin_unlock_irqrestore(&iommu->lock, flags);
1442 
1443 	return ret;
1444 }
1445 
1446 static void domain_flush_complete(struct protection_domain *domain)
1447 {
1448 	struct pdom_iommu_info *pdom_iommu_info;
1449 	unsigned long i;
1450 
1451 	lockdep_assert_held(&domain->lock);
1452 
1453 	/*
1454 	 * Devices of this domain are behind this IOMMU
1455 	 * We need to wait for completion of all commands.
1456 	 */
1457 	 xa_for_each(&domain->iommu_array, i, pdom_iommu_info)
1458 		iommu_completion_wait(pdom_iommu_info->iommu);
1459 }
1460 
1461 static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
1462 {
1463 	struct iommu_cmd cmd;
1464 
1465 	build_inv_dte(&cmd, devid);
1466 
1467 	return iommu_queue_command(iommu, &cmd);
1468 }
1469 
1470 static void iommu_flush_dte_sync(struct amd_iommu *iommu, u16 devid)
1471 {
1472 	int ret;
1473 
1474 	ret = iommu_flush_dte(iommu, devid);
1475 	if (!ret)
1476 		iommu_completion_wait(iommu);
1477 }
1478 
1479 static void amd_iommu_flush_dte_all(struct amd_iommu *iommu)
1480 {
1481 	u32 devid;
1482 	u16 last_bdf = iommu->pci_seg->last_bdf;
1483 
1484 	for (devid = 0; devid <= last_bdf; ++devid)
1485 		iommu_flush_dte(iommu, devid);
1486 
1487 	iommu_completion_wait(iommu);
1488 }
1489 
1490 /*
1491  * This function uses heavy locking and may disable irqs for some time. But
1492  * this is no issue because it is only called during resume.
1493  */
1494 static void amd_iommu_flush_tlb_all(struct amd_iommu *iommu)
1495 {
1496 	u32 dom_id;
1497 	u16 last_bdf = iommu->pci_seg->last_bdf;
1498 
1499 	for (dom_id = 0; dom_id <= last_bdf; ++dom_id) {
1500 		struct iommu_cmd cmd;
1501 		build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1502 				      dom_id, IOMMU_NO_PASID, false);
1503 		iommu_queue_command(iommu, &cmd);
1504 	}
1505 
1506 	iommu_completion_wait(iommu);
1507 }
1508 
1509 static void amd_iommu_flush_tlb_domid(struct amd_iommu *iommu, u32 dom_id)
1510 {
1511 	struct iommu_cmd cmd;
1512 
1513 	build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1514 			      dom_id, IOMMU_NO_PASID, false);
1515 	iommu_queue_command(iommu, &cmd);
1516 
1517 	iommu_completion_wait(iommu);
1518 }
1519 
1520 static void amd_iommu_flush_all(struct amd_iommu *iommu)
1521 {
1522 	struct iommu_cmd cmd;
1523 
1524 	build_inv_all(&cmd);
1525 
1526 	iommu_queue_command(iommu, &cmd);
1527 	iommu_completion_wait(iommu);
1528 }
1529 
1530 static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1531 {
1532 	struct iommu_cmd cmd;
1533 
1534 	build_inv_irt(&cmd, devid);
1535 
1536 	iommu_queue_command(iommu, &cmd);
1537 }
1538 
1539 static void amd_iommu_flush_irt_all(struct amd_iommu *iommu)
1540 {
1541 	u32 devid;
1542 	u16 last_bdf = iommu->pci_seg->last_bdf;
1543 
1544 	if (iommu->irtcachedis_enabled)
1545 		return;
1546 
1547 	for (devid = 0; devid <= last_bdf; devid++)
1548 		iommu_flush_irt(iommu, devid);
1549 
1550 	iommu_completion_wait(iommu);
1551 }
1552 
1553 void amd_iommu_flush_all_caches(struct amd_iommu *iommu)
1554 {
1555 	if (check_feature(FEATURE_IA)) {
1556 		amd_iommu_flush_all(iommu);
1557 	} else {
1558 		amd_iommu_flush_dte_all(iommu);
1559 		amd_iommu_flush_irt_all(iommu);
1560 		amd_iommu_flush_tlb_all(iommu);
1561 	}
1562 }
1563 
1564 /*
1565  * Command send function for flushing on-device TLB
1566  */
1567 static int device_flush_iotlb(struct iommu_dev_data *dev_data, u64 address,
1568 			      size_t size, ioasid_t pasid, bool gn)
1569 {
1570 	struct amd_iommu *iommu = get_amd_iommu_from_dev_data(dev_data);
1571 	struct iommu_cmd cmd;
1572 	int qdep = dev_data->ats_qdep;
1573 
1574 	build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address,
1575 			      size, pasid, gn);
1576 
1577 	return iommu_queue_command(iommu, &cmd);
1578 }
1579 
1580 static int device_flush_dte_alias(struct pci_dev *pdev, u16 alias, void *data)
1581 {
1582 	struct amd_iommu *iommu = data;
1583 
1584 	return iommu_flush_dte(iommu, alias);
1585 }
1586 
1587 /*
1588  * Command send function for invalidating a device table entry
1589  */
1590 static int device_flush_dte(struct iommu_dev_data *dev_data)
1591 {
1592 	struct amd_iommu *iommu = get_amd_iommu_from_dev_data(dev_data);
1593 	struct pci_dev *pdev = NULL;
1594 	struct amd_iommu_pci_seg *pci_seg;
1595 	u16 alias;
1596 	int ret;
1597 
1598 	if (dev_is_pci(dev_data->dev))
1599 		pdev = to_pci_dev(dev_data->dev);
1600 
1601 	if (pdev)
1602 		ret = pci_for_each_dma_alias(pdev,
1603 					     device_flush_dte_alias, iommu);
1604 	else
1605 		ret = iommu_flush_dte(iommu, dev_data->devid);
1606 	if (ret)
1607 		return ret;
1608 
1609 	pci_seg = iommu->pci_seg;
1610 	alias = pci_seg->alias_table[dev_data->devid];
1611 	if (alias != dev_data->devid) {
1612 		ret = iommu_flush_dte(iommu, alias);
1613 		if (ret)
1614 			return ret;
1615 	}
1616 
1617 	if (dev_data->ats_enabled) {
1618 		/* Invalidate the entire contents of an IOTLB */
1619 		ret = device_flush_iotlb(dev_data, 0, ~0UL,
1620 					 IOMMU_NO_PASID, false);
1621 	}
1622 
1623 	return ret;
1624 }
1625 
1626 static int domain_flush_pages_v2(struct protection_domain *pdom,
1627 				 u64 address, size_t size)
1628 {
1629 	struct iommu_dev_data *dev_data;
1630 	struct iommu_cmd cmd;
1631 	int ret = 0;
1632 
1633 	lockdep_assert_held(&pdom->lock);
1634 	list_for_each_entry(dev_data, &pdom->dev_list, list) {
1635 		struct amd_iommu *iommu = get_amd_iommu_from_dev(dev_data->dev);
1636 		u16 domid = dev_data->gcr3_info.domid;
1637 
1638 		build_inv_iommu_pages(&cmd, address, size,
1639 				      domid, IOMMU_NO_PASID, true);
1640 
1641 		ret |= iommu_queue_command(iommu, &cmd);
1642 	}
1643 
1644 	return ret;
1645 }
1646 
1647 static int domain_flush_pages_v1(struct protection_domain *pdom,
1648 				 u64 address, size_t size)
1649 {
1650 	struct pdom_iommu_info *pdom_iommu_info;
1651 	struct iommu_cmd cmd;
1652 	int ret = 0;
1653 	unsigned long i;
1654 
1655 	lockdep_assert_held(&pdom->lock);
1656 
1657 	build_inv_iommu_pages(&cmd, address, size,
1658 			      pdom->id, IOMMU_NO_PASID, false);
1659 
1660 	xa_for_each(&pdom->iommu_array, i, pdom_iommu_info) {
1661 		/*
1662 		 * Devices of this domain are behind this IOMMU
1663 		 * We need a TLB flush
1664 		 */
1665 		ret |= iommu_queue_command(pdom_iommu_info->iommu, &cmd);
1666 	}
1667 
1668 	return ret;
1669 }
1670 
1671 /*
1672  * TLB invalidation function which is called from the mapping functions.
1673  * It flushes range of PTEs of the domain.
1674  */
1675 static void __domain_flush_pages(struct protection_domain *domain,
1676 				 u64 address, size_t size)
1677 {
1678 	struct iommu_dev_data *dev_data;
1679 	int ret = 0;
1680 	ioasid_t pasid = IOMMU_NO_PASID;
1681 	bool gn = false;
1682 
1683 	lockdep_assert_held(&domain->lock);
1684 
1685 	if (pdom_is_v2_pgtbl_mode(domain)) {
1686 		gn = true;
1687 		ret = domain_flush_pages_v2(domain, address, size);
1688 	} else {
1689 		ret = domain_flush_pages_v1(domain, address, size);
1690 	}
1691 
1692 	list_for_each_entry(dev_data, &domain->dev_list, list) {
1693 
1694 		if (!dev_data->ats_enabled)
1695 			continue;
1696 
1697 		ret |= device_flush_iotlb(dev_data, address, size, pasid, gn);
1698 	}
1699 
1700 	WARN_ON(ret);
1701 }
1702 
1703 void amd_iommu_domain_flush_pages(struct protection_domain *domain,
1704 				  u64 address, size_t size)
1705 {
1706 	lockdep_assert_held(&domain->lock);
1707 
1708 	if (likely(!amd_iommu_np_cache)) {
1709 		__domain_flush_pages(domain, address, size);
1710 
1711 		/* Wait until IOMMU TLB and all device IOTLB flushes are complete */
1712 		domain_flush_complete(domain);
1713 
1714 		return;
1715 	}
1716 
1717 	/*
1718 	 * When NpCache is on, we infer that we run in a VM and use a vIOMMU.
1719 	 * In such setups it is best to avoid flushes of ranges which are not
1720 	 * naturally aligned, since it would lead to flushes of unmodified
1721 	 * PTEs. Such flushes would require the hypervisor to do more work than
1722 	 * necessary. Therefore, perform repeated flushes of aligned ranges
1723 	 * until you cover the range. Each iteration flushes the smaller
1724 	 * between the natural alignment of the address that we flush and the
1725 	 * greatest naturally aligned region that fits in the range.
1726 	 */
1727 	while (size != 0) {
1728 		int addr_alignment = __ffs(address);
1729 		int size_alignment = __fls(size);
1730 		int min_alignment;
1731 		size_t flush_size;
1732 
1733 		/*
1734 		 * size is always non-zero, but address might be zero, causing
1735 		 * addr_alignment to be negative. As the casting of the
1736 		 * argument in __ffs(address) to long might trim the high bits
1737 		 * of the address on x86-32, cast to long when doing the check.
1738 		 */
1739 		if (likely((unsigned long)address != 0))
1740 			min_alignment = min(addr_alignment, size_alignment);
1741 		else
1742 			min_alignment = size_alignment;
1743 
1744 		flush_size = 1ul << min_alignment;
1745 
1746 		__domain_flush_pages(domain, address, flush_size);
1747 		address += flush_size;
1748 		size -= flush_size;
1749 	}
1750 
1751 	/* Wait until IOMMU TLB and all device IOTLB flushes are complete */
1752 	domain_flush_complete(domain);
1753 }
1754 
1755 /* Flush the whole IO/TLB for a given protection domain - including PDE */
1756 static void amd_iommu_domain_flush_all(struct protection_domain *domain)
1757 {
1758 	amd_iommu_domain_flush_pages(domain, 0,
1759 				     CMD_INV_IOMMU_ALL_PAGES_ADDRESS);
1760 }
1761 
1762 void amd_iommu_dev_flush_pasid_pages(struct iommu_dev_data *dev_data,
1763 				     ioasid_t pasid, u64 address, size_t size)
1764 {
1765 	struct iommu_cmd cmd;
1766 	struct amd_iommu *iommu = get_amd_iommu_from_dev(dev_data->dev);
1767 
1768 	build_inv_iommu_pages(&cmd, address, size,
1769 			      dev_data->gcr3_info.domid, pasid, true);
1770 	iommu_queue_command(iommu, &cmd);
1771 
1772 	if (dev_data->ats_enabled)
1773 		device_flush_iotlb(dev_data, address, size, pasid, true);
1774 
1775 	iommu_completion_wait(iommu);
1776 }
1777 
1778 static void dev_flush_pasid_all(struct iommu_dev_data *dev_data,
1779 				ioasid_t pasid)
1780 {
1781 	amd_iommu_dev_flush_pasid_pages(dev_data, pasid, 0,
1782 					CMD_INV_IOMMU_ALL_PAGES_ADDRESS);
1783 }
1784 
1785 int amd_iommu_complete_ppr(struct device *dev, u32 pasid, int status, int tag)
1786 {
1787 	struct iommu_dev_data *dev_data;
1788 	struct amd_iommu *iommu;
1789 	struct iommu_cmd cmd;
1790 
1791 	dev_data = dev_iommu_priv_get(dev);
1792 	iommu    = get_amd_iommu_from_dev(dev);
1793 
1794 	build_complete_ppr(&cmd, dev_data->devid, pasid, status,
1795 			   tag, dev_data->pri_tlp);
1796 
1797 	return iommu_queue_command(iommu, &cmd);
1798 }
1799 
1800 /****************************************************************************
1801  *
1802  * The next functions belong to the domain allocation. A domain is
1803  * allocated for every IOMMU as the default domain. If device isolation
1804  * is enabled, every device get its own domain. The most important thing
1805  * about domains is the page table mapping the DMA address space they
1806  * contain.
1807  *
1808  ****************************************************************************/
1809 int amd_iommu_pdom_id_alloc(void)
1810 {
1811 	return ida_alloc_range(&pdom_ids, 1, MAX_DOMAIN_ID - 1, GFP_ATOMIC);
1812 }
1813 
1814 int amd_iommu_pdom_id_reserve(u16 id, gfp_t gfp)
1815 {
1816 	return ida_alloc_range(&pdom_ids, id, id, gfp);
1817 }
1818 
1819 void amd_iommu_pdom_id_free(int id)
1820 {
1821 	ida_free(&pdom_ids, id);
1822 }
1823 
1824 void amd_iommu_pdom_id_destroy(void)
1825 {
1826 	ida_destroy(&pdom_ids);
1827 }
1828 
1829 static void free_gcr3_tbl_level1(u64 *tbl)
1830 {
1831 	u64 *ptr;
1832 	int i;
1833 
1834 	for (i = 0; i < 512; ++i) {
1835 		if (!(tbl[i] & GCR3_VALID))
1836 			continue;
1837 
1838 		ptr = iommu_phys_to_virt(tbl[i] & PAGE_MASK);
1839 
1840 		iommu_free_pages(ptr);
1841 	}
1842 }
1843 
1844 static void free_gcr3_tbl_level2(u64 *tbl)
1845 {
1846 	u64 *ptr;
1847 	int i;
1848 
1849 	for (i = 0; i < 512; ++i) {
1850 		if (!(tbl[i] & GCR3_VALID))
1851 			continue;
1852 
1853 		ptr = iommu_phys_to_virt(tbl[i] & PAGE_MASK);
1854 
1855 		free_gcr3_tbl_level1(ptr);
1856 	}
1857 }
1858 
1859 static void free_gcr3_table(struct gcr3_tbl_info *gcr3_info)
1860 {
1861 	if (gcr3_info->glx == 2)
1862 		free_gcr3_tbl_level2(gcr3_info->gcr3_tbl);
1863 	else if (gcr3_info->glx == 1)
1864 		free_gcr3_tbl_level1(gcr3_info->gcr3_tbl);
1865 	else
1866 		WARN_ON_ONCE(gcr3_info->glx != 0);
1867 
1868 	gcr3_info->glx = 0;
1869 
1870 	/* Free per device domain ID */
1871 	amd_iommu_pdom_id_free(gcr3_info->domid);
1872 
1873 	iommu_free_pages(gcr3_info->gcr3_tbl);
1874 	gcr3_info->gcr3_tbl = NULL;
1875 }
1876 
1877 /*
1878  * Number of GCR3 table levels required. Level must be 4-Kbyte
1879  * page and can contain up to 512 entries.
1880  */
1881 static int get_gcr3_levels(int pasids)
1882 {
1883 	int levels;
1884 
1885 	if (pasids == -1)
1886 		return amd_iommu_max_glx_val;
1887 
1888 	levels = get_count_order(pasids);
1889 
1890 	return levels ? (DIV_ROUND_UP(levels, 9) - 1) : levels;
1891 }
1892 
1893 static int setup_gcr3_table(struct gcr3_tbl_info *gcr3_info,
1894 			    struct amd_iommu *iommu, int pasids)
1895 {
1896 	int levels = get_gcr3_levels(pasids);
1897 	int nid = iommu ? dev_to_node(&iommu->dev->dev) : NUMA_NO_NODE;
1898 	int domid;
1899 
1900 	if (levels > amd_iommu_max_glx_val)
1901 		return -EINVAL;
1902 
1903 	if (gcr3_info->gcr3_tbl)
1904 		return -EBUSY;
1905 
1906 	/* Allocate per device domain ID */
1907 	domid = amd_iommu_pdom_id_alloc();
1908 	if (domid <= 0)
1909 		return -ENOSPC;
1910 	gcr3_info->domid = domid;
1911 
1912 	gcr3_info->gcr3_tbl = iommu_alloc_pages_node_sz(nid, GFP_ATOMIC, SZ_4K);
1913 	if (gcr3_info->gcr3_tbl == NULL) {
1914 		amd_iommu_pdom_id_free(domid);
1915 		return -ENOMEM;
1916 	}
1917 
1918 	gcr3_info->glx = levels;
1919 
1920 	return 0;
1921 }
1922 
1923 static u64 *__get_gcr3_pte(struct gcr3_tbl_info *gcr3_info,
1924 			   ioasid_t pasid, bool alloc)
1925 {
1926 	int index;
1927 	u64 *pte;
1928 	u64 *root = gcr3_info->gcr3_tbl;
1929 	int level = gcr3_info->glx;
1930 
1931 	while (true) {
1932 
1933 		index = (pasid >> (9 * level)) & 0x1ff;
1934 		pte   = &root[index];
1935 
1936 		if (level == 0)
1937 			break;
1938 
1939 		if (!(*pte & GCR3_VALID)) {
1940 			if (!alloc)
1941 				return NULL;
1942 
1943 			root = (void *)get_zeroed_page(GFP_ATOMIC);
1944 			if (root == NULL)
1945 				return NULL;
1946 
1947 			*pte = iommu_virt_to_phys(root) | GCR3_VALID;
1948 		}
1949 
1950 		root = iommu_phys_to_virt(*pte & PAGE_MASK);
1951 
1952 		level -= 1;
1953 	}
1954 
1955 	return pte;
1956 }
1957 
1958 static int update_gcr3(struct iommu_dev_data *dev_data,
1959 		       ioasid_t pasid, unsigned long gcr3, bool set)
1960 {
1961 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
1962 	u64 *pte;
1963 
1964 	pte = __get_gcr3_pte(gcr3_info, pasid, true);
1965 	if (pte == NULL)
1966 		return -ENOMEM;
1967 
1968 	if (set)
1969 		*pte = (gcr3 & PAGE_MASK) | GCR3_VALID;
1970 	else
1971 		*pte = 0;
1972 
1973 	dev_flush_pasid_all(dev_data, pasid);
1974 	return 0;
1975 }
1976 
1977 int amd_iommu_set_gcr3(struct iommu_dev_data *dev_data, ioasid_t pasid,
1978 		       unsigned long gcr3)
1979 {
1980 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
1981 	int ret;
1982 
1983 	iommu_group_mutex_assert(dev_data->dev);
1984 
1985 	ret = update_gcr3(dev_data, pasid, gcr3, true);
1986 	if (ret)
1987 		return ret;
1988 
1989 	gcr3_info->pasid_cnt++;
1990 	return ret;
1991 }
1992 
1993 int amd_iommu_clear_gcr3(struct iommu_dev_data *dev_data, ioasid_t pasid)
1994 {
1995 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
1996 	int ret;
1997 
1998 	iommu_group_mutex_assert(dev_data->dev);
1999 
2000 	ret = update_gcr3(dev_data, pasid, 0, false);
2001 	if (ret)
2002 		return ret;
2003 
2004 	gcr3_info->pasid_cnt--;
2005 	return ret;
2006 }
2007 
2008 static void make_clear_dte(struct iommu_dev_data *dev_data, struct dev_table_entry *ptr,
2009 			   struct dev_table_entry *new)
2010 {
2011 	/* All existing DTE must have V bit set */
2012 	new->data128[0] = DTE_FLAG_V;
2013 	new->data128[1] = 0;
2014 }
2015 
2016 /*
2017  * Note:
2018  * The old value for GCR3 table and GPT have been cleared from caller.
2019  */
2020 static void set_dte_gcr3_table(struct amd_iommu *iommu,
2021 			       struct iommu_dev_data *dev_data,
2022 			       struct dev_table_entry *target)
2023 {
2024 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
2025 	u64 gcr3;
2026 
2027 	if (!gcr3_info->gcr3_tbl)
2028 		return;
2029 
2030 	pr_debug("%s: devid=%#x, glx=%#x, gcr3_tbl=%#llx\n",
2031 		 __func__, dev_data->devid, gcr3_info->glx,
2032 		 (unsigned long long)gcr3_info->gcr3_tbl);
2033 
2034 	gcr3 = iommu_virt_to_phys(gcr3_info->gcr3_tbl);
2035 
2036 	target->data[0] |= DTE_FLAG_GV |
2037 			   FIELD_PREP(DTE_GLX, gcr3_info->glx) |
2038 			   FIELD_PREP(DTE_GCR3_14_12, gcr3 >> 12);
2039 	if (pdom_is_v2_pgtbl_mode(dev_data->domain))
2040 		target->data[0] |= DTE_FLAG_GIOV;
2041 
2042 	target->data[1] |= FIELD_PREP(DTE_GCR3_30_15, gcr3 >> 15) |
2043 			   FIELD_PREP(DTE_GCR3_51_31, gcr3 >> 31);
2044 
2045 	/* Guest page table can only support 4 and 5 levels  */
2046 	if (amd_iommu_gpt_level == PAGE_MODE_5_LEVEL)
2047 		target->data[2] |= FIELD_PREP(DTE_GPT_LEVEL_MASK, GUEST_PGTABLE_5_LEVEL);
2048 	else
2049 		target->data[2] |= FIELD_PREP(DTE_GPT_LEVEL_MASK, GUEST_PGTABLE_4_LEVEL);
2050 }
2051 
2052 static void set_dte_entry(struct amd_iommu *iommu,
2053 			  struct iommu_dev_data *dev_data,
2054 			  phys_addr_t top_paddr, unsigned int top_level)
2055 {
2056 	u16 domid;
2057 	u32 old_domid;
2058 	struct dev_table_entry *initial_dte;
2059 	struct dev_table_entry new = {};
2060 	struct protection_domain *domain = dev_data->domain;
2061 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
2062 	struct dev_table_entry *dte = &get_dev_table(iommu)[dev_data->devid];
2063 	struct pt_iommu_amdv1_hw_info pt_info;
2064 
2065 	make_clear_dte(dev_data, dte, &new);
2066 
2067 	if (gcr3_info && gcr3_info->gcr3_tbl)
2068 		domid = dev_data->gcr3_info.domid;
2069 	else {
2070 		domid = domain->id;
2071 
2072 		if (domain->domain.type & __IOMMU_DOMAIN_PAGING) {
2073 			/*
2074 			 * When updating the IO pagetable, the new top and level
2075 			 * are provided as parameters. For other operations i.e.
2076 			 * device attach, retrieve the current pagetable info
2077 			 * via the IOMMU PT API.
2078 			 */
2079 			if (top_paddr) {
2080 				pt_info.host_pt_root = top_paddr;
2081 				pt_info.mode = top_level + 1;
2082 			} else {
2083 				WARN_ON(top_paddr || top_level);
2084 				pt_iommu_amdv1_hw_info(&domain->amdv1,
2085 						       &pt_info);
2086 			}
2087 
2088 			new.data[0] |= __sme_set(pt_info.host_pt_root) |
2089 				       (pt_info.mode & DEV_ENTRY_MODE_MASK)
2090 					       << DEV_ENTRY_MODE_SHIFT;
2091 		}
2092 	}
2093 
2094 	new.data[0] |= DTE_FLAG_IR | DTE_FLAG_IW;
2095 
2096 	/*
2097 	 * When SNP is enabled, we can only support TV=1 with non-zero domain ID.
2098 	 * This is prevented by the SNP-enable and IOMMU_DOMAIN_IDENTITY check in
2099 	 * do_iommu_domain_alloc().
2100 	 */
2101 	WARN_ON(amd_iommu_snp_en && (domid == 0));
2102 	new.data[0] |= DTE_FLAG_TV;
2103 
2104 	if (dev_data->ppr)
2105 		new.data[0] |= 1ULL << DEV_ENTRY_PPR;
2106 
2107 	if (domain->dirty_tracking)
2108 		new.data[0] |= DTE_FLAG_HAD;
2109 
2110 	if (dev_data->ats_enabled)
2111 		new.data[1] |= DTE_FLAG_IOTLB;
2112 
2113 	old_domid = READ_ONCE(dte->data[1]) & DEV_DOMID_MASK;
2114 	new.data[1] |= domid;
2115 
2116 	/*
2117 	 * Restore cached persistent DTE bits, which can be set by information
2118 	 * in IVRS table. See set_dev_entry_from_acpi().
2119 	 */
2120 	initial_dte = amd_iommu_get_ivhd_dte_flags(iommu->pci_seg->id, dev_data->devid);
2121 	if (initial_dte) {
2122 		new.data128[0] |= initial_dte->data128[0];
2123 		new.data128[1] |= initial_dte->data128[1];
2124 	}
2125 
2126 	set_dte_gcr3_table(iommu, dev_data, &new);
2127 
2128 	update_dte256(iommu, dev_data, &new);
2129 
2130 	/*
2131 	 * A kdump kernel might be replacing a domain ID that was copied from
2132 	 * the previous kernel--if so, it needs to flush the translation cache
2133 	 * entries for the old domain ID that is being overwritten
2134 	 */
2135 	if (old_domid) {
2136 		amd_iommu_flush_tlb_domid(iommu, old_domid);
2137 	}
2138 }
2139 
2140 /*
2141  * Clear DMA-remap related flags to block all DMA (blockeded domain)
2142  */
2143 static void clear_dte_entry(struct amd_iommu *iommu, struct iommu_dev_data *dev_data)
2144 {
2145 	struct dev_table_entry new = {};
2146 	struct dev_table_entry *dte = &get_dev_table(iommu)[dev_data->devid];
2147 
2148 	make_clear_dte(dev_data, dte, &new);
2149 	update_dte256(iommu, dev_data, &new);
2150 }
2151 
2152 /* Update and flush DTE for the given device */
2153 static void dev_update_dte(struct iommu_dev_data *dev_data, bool set)
2154 {
2155 	struct amd_iommu *iommu = get_amd_iommu_from_dev(dev_data->dev);
2156 
2157 	if (set)
2158 		set_dte_entry(iommu, dev_data, 0, 0);
2159 	else
2160 		clear_dte_entry(iommu, dev_data);
2161 
2162 	clone_aliases(iommu, dev_data->dev);
2163 	device_flush_dte(dev_data);
2164 	iommu_completion_wait(iommu);
2165 }
2166 
2167 /*
2168  * If domain is SVA capable then initialize GCR3 table. Also if domain is
2169  * in v2 page table mode then update GCR3[0].
2170  */
2171 static int init_gcr3_table(struct iommu_dev_data *dev_data,
2172 			   struct protection_domain *pdom)
2173 {
2174 	struct amd_iommu *iommu = get_amd_iommu_from_dev_data(dev_data);
2175 	int max_pasids = dev_data->max_pasids;
2176 	struct pt_iommu_x86_64_hw_info pt_info;
2177 	int ret = 0;
2178 
2179 	 /*
2180 	  * If domain is in pt mode then setup GCR3 table only if device
2181 	  * is PASID capable
2182 	  */
2183 	if (pdom_is_in_pt_mode(pdom) && !pdev_pasid_supported(dev_data))
2184 		return ret;
2185 
2186 	/*
2187 	 * By default, setup GCR3 table to support MAX PASIDs
2188 	 * supported by the device/IOMMU.
2189 	 */
2190 	ret = setup_gcr3_table(&dev_data->gcr3_info, iommu,
2191 			       max_pasids > 0 ?  max_pasids : 1);
2192 	if (ret)
2193 		return ret;
2194 
2195 	/* Setup GCR3[0] only if domain is setup with v2 page table mode */
2196 	if (!pdom_is_v2_pgtbl_mode(pdom))
2197 		return ret;
2198 
2199 	pt_iommu_x86_64_hw_info(&pdom->amdv2, &pt_info);
2200 	ret = update_gcr3(dev_data, 0, __sme_set(pt_info.gcr3_pt), true);
2201 	if (ret)
2202 		free_gcr3_table(&dev_data->gcr3_info);
2203 
2204 	return ret;
2205 }
2206 
2207 static void destroy_gcr3_table(struct iommu_dev_data *dev_data,
2208 			       struct protection_domain *pdom)
2209 {
2210 	struct gcr3_tbl_info *gcr3_info = &dev_data->gcr3_info;
2211 
2212 	if (pdom_is_v2_pgtbl_mode(pdom))
2213 		update_gcr3(dev_data, 0, 0, false);
2214 
2215 	if (gcr3_info->gcr3_tbl == NULL)
2216 		return;
2217 
2218 	free_gcr3_table(gcr3_info);
2219 }
2220 
2221 static int pdom_attach_iommu(struct amd_iommu *iommu,
2222 			     struct protection_domain *pdom)
2223 {
2224 	struct pdom_iommu_info *pdom_iommu_info, *curr;
2225 	unsigned long flags;
2226 	int ret = 0;
2227 
2228 	spin_lock_irqsave(&pdom->lock, flags);
2229 
2230 	pdom_iommu_info = xa_load(&pdom->iommu_array, iommu->index);
2231 	if (pdom_iommu_info) {
2232 		pdom_iommu_info->refcnt++;
2233 		goto out_unlock;
2234 	}
2235 
2236 	pdom_iommu_info = kzalloc(sizeof(*pdom_iommu_info), GFP_ATOMIC);
2237 	if (!pdom_iommu_info) {
2238 		ret = -ENOMEM;
2239 		goto out_unlock;
2240 	}
2241 
2242 	pdom_iommu_info->iommu = iommu;
2243 	pdom_iommu_info->refcnt = 1;
2244 
2245 	curr = xa_cmpxchg(&pdom->iommu_array, iommu->index,
2246 			  NULL, pdom_iommu_info, GFP_ATOMIC);
2247 	if (curr) {
2248 		kfree(pdom_iommu_info);
2249 		ret = -ENOSPC;
2250 		goto out_unlock;
2251 	}
2252 
2253 out_unlock:
2254 	spin_unlock_irqrestore(&pdom->lock, flags);
2255 	return ret;
2256 }
2257 
2258 static void pdom_detach_iommu(struct amd_iommu *iommu,
2259 			      struct protection_domain *pdom)
2260 {
2261 	struct pdom_iommu_info *pdom_iommu_info;
2262 	unsigned long flags;
2263 
2264 	spin_lock_irqsave(&pdom->lock, flags);
2265 
2266 	pdom_iommu_info = xa_load(&pdom->iommu_array, iommu->index);
2267 	if (!pdom_iommu_info) {
2268 		spin_unlock_irqrestore(&pdom->lock, flags);
2269 		return;
2270 	}
2271 
2272 	pdom_iommu_info->refcnt--;
2273 	if (pdom_iommu_info->refcnt == 0) {
2274 		xa_erase(&pdom->iommu_array, iommu->index);
2275 		kfree(pdom_iommu_info);
2276 	}
2277 
2278 	spin_unlock_irqrestore(&pdom->lock, flags);
2279 }
2280 
2281 /*
2282  * If a device is not yet associated with a domain, this function makes the
2283  * device visible in the domain
2284  */
2285 static int attach_device(struct device *dev,
2286 			 struct protection_domain *domain)
2287 {
2288 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
2289 	struct amd_iommu *iommu = get_amd_iommu_from_dev_data(dev_data);
2290 	struct pci_dev *pdev;
2291 	unsigned long flags;
2292 	int ret = 0;
2293 
2294 	mutex_lock(&dev_data->mutex);
2295 
2296 	if (dev_data->domain != NULL) {
2297 		ret = -EBUSY;
2298 		goto out;
2299 	}
2300 
2301 	/* Do reference counting */
2302 	ret = pdom_attach_iommu(iommu, domain);
2303 	if (ret)
2304 		goto out;
2305 
2306 	/* Setup GCR3 table */
2307 	if (pdom_is_sva_capable(domain)) {
2308 		ret = init_gcr3_table(dev_data, domain);
2309 		if (ret) {
2310 			pdom_detach_iommu(iommu, domain);
2311 			goto out;
2312 		}
2313 	}
2314 
2315 	pdev = dev_is_pci(dev_data->dev) ? to_pci_dev(dev_data->dev) : NULL;
2316 	if (pdev && pdom_is_sva_capable(domain)) {
2317 		pdev_enable_caps(pdev);
2318 
2319 		/*
2320 		 * Device can continue to function even if IOPF
2321 		 * enablement failed. Hence in error path just
2322 		 * disable device PRI support.
2323 		 */
2324 		if (amd_iommu_iopf_add_device(iommu, dev_data))
2325 			pdev_disable_cap_pri(pdev);
2326 	} else if (pdev) {
2327 		pdev_enable_cap_ats(pdev);
2328 	}
2329 
2330 	/* Update data structures */
2331 	dev_data->domain = domain;
2332 	spin_lock_irqsave(&domain->lock, flags);
2333 	list_add(&dev_data->list, &domain->dev_list);
2334 	spin_unlock_irqrestore(&domain->lock, flags);
2335 
2336 	/* Update device table */
2337 	dev_update_dte(dev_data, true);
2338 
2339 out:
2340 	mutex_unlock(&dev_data->mutex);
2341 
2342 	return ret;
2343 }
2344 
2345 /*
2346  * Removes a device from a protection domain (with devtable_lock held)
2347  */
2348 static void detach_device(struct device *dev)
2349 {
2350 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
2351 	struct amd_iommu *iommu = get_amd_iommu_from_dev_data(dev_data);
2352 	struct protection_domain *domain = dev_data->domain;
2353 	unsigned long flags;
2354 
2355 	mutex_lock(&dev_data->mutex);
2356 
2357 	/*
2358 	 * First check if the device is still attached. It might already
2359 	 * be detached from its domain because the generic
2360 	 * iommu_detach_group code detached it and we try again here in
2361 	 * our alias handling.
2362 	 */
2363 	if (WARN_ON(!dev_data->domain))
2364 		goto out;
2365 
2366 	/* Remove IOPF handler */
2367 	if (dev_data->ppr) {
2368 		iopf_queue_flush_dev(dev);
2369 		amd_iommu_iopf_remove_device(iommu, dev_data);
2370 	}
2371 
2372 	if (dev_is_pci(dev))
2373 		pdev_disable_caps(to_pci_dev(dev));
2374 
2375 	/* Clear DTE and flush the entry */
2376 	dev_update_dte(dev_data, false);
2377 
2378 	/* Flush IOTLB and wait for the flushes to finish */
2379 	spin_lock_irqsave(&domain->lock, flags);
2380 	amd_iommu_domain_flush_all(domain);
2381 	list_del(&dev_data->list);
2382 	spin_unlock_irqrestore(&domain->lock, flags);
2383 
2384 	/* Clear GCR3 table */
2385 	if (pdom_is_sva_capable(domain))
2386 		destroy_gcr3_table(dev_data, domain);
2387 
2388 	/* Update data structures */
2389 	dev_data->domain = NULL;
2390 
2391 	/* decrease reference counters - needs to happen after the flushes */
2392 	pdom_detach_iommu(iommu, domain);
2393 
2394 out:
2395 	mutex_unlock(&dev_data->mutex);
2396 }
2397 
2398 static struct iommu_device *amd_iommu_probe_device(struct device *dev)
2399 {
2400 	struct iommu_device *iommu_dev;
2401 	struct amd_iommu *iommu;
2402 	struct iommu_dev_data *dev_data;
2403 	int ret;
2404 
2405 	if (!check_device(dev))
2406 		return ERR_PTR(-ENODEV);
2407 
2408 	iommu = rlookup_amd_iommu(dev);
2409 	if (!iommu)
2410 		return ERR_PTR(-ENODEV);
2411 
2412 	/* Not registered yet? */
2413 	if (!iommu->iommu.ops)
2414 		return ERR_PTR(-ENODEV);
2415 
2416 	if (dev_iommu_priv_get(dev))
2417 		return &iommu->iommu;
2418 
2419 	ret = iommu_init_device(iommu, dev);
2420 	if (ret) {
2421 		dev_err(dev, "Failed to initialize - trying to proceed anyway\n");
2422 		iommu_dev = ERR_PTR(ret);
2423 		iommu_ignore_device(iommu, dev);
2424 		goto out_err;
2425 	}
2426 
2427 	amd_iommu_set_pci_msi_domain(dev, iommu);
2428 	iommu_dev = &iommu->iommu;
2429 
2430 	/*
2431 	 * If IOMMU and device supports PASID then it will contain max
2432 	 * supported PASIDs, else it will be zero.
2433 	 */
2434 	dev_data = dev_iommu_priv_get(dev);
2435 	if (amd_iommu_pasid_supported() && dev_is_pci(dev) &&
2436 	    pdev_pasid_supported(dev_data)) {
2437 		dev_data->max_pasids = min_t(u32, iommu->iommu.max_pasids,
2438 					     pci_max_pasids(to_pci_dev(dev)));
2439 	}
2440 
2441 	if (amd_iommu_pgtable == PD_MODE_NONE) {
2442 		pr_warn_once("%s: DMA translation not supported by iommu.\n",
2443 			     __func__);
2444 		iommu_dev = ERR_PTR(-ENODEV);
2445 		goto out_err;
2446 	}
2447 
2448 	iommu_completion_wait(iommu);
2449 
2450 	if (FEATURE_NUM_INT_REMAP_SUP_2K(amd_iommu_efr2))
2451 		dev_data->max_irqs = MAX_IRQS_PER_TABLE_2K;
2452 	else
2453 		dev_data->max_irqs = MAX_IRQS_PER_TABLE_512;
2454 
2455 	if (dev_is_pci(dev))
2456 		pci_prepare_ats(to_pci_dev(dev), PAGE_SHIFT);
2457 
2458 out_err:
2459 	return iommu_dev;
2460 }
2461 
2462 static void amd_iommu_release_device(struct device *dev)
2463 {
2464 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
2465 
2466 	WARN_ON(dev_data->domain);
2467 
2468 	/*
2469 	 * We keep dev_data around for unplugged devices and reuse it when the
2470 	 * device is re-plugged - not doing so would introduce a ton of races.
2471 	 */
2472 }
2473 
2474 static struct iommu_group *amd_iommu_device_group(struct device *dev)
2475 {
2476 	if (dev_is_pci(dev))
2477 		return pci_device_group(dev);
2478 
2479 	return acpihid_device_group(dev);
2480 }
2481 
2482 /*****************************************************************************
2483  *
2484  * The following functions belong to the exported interface of AMD IOMMU
2485  *
2486  * This interface allows access to lower level functions of the IOMMU
2487  * like protection domain handling and assignement of devices to domains
2488  * which is not possible with the dma_ops interface.
2489  *
2490  *****************************************************************************/
2491 
2492 static void protection_domain_init(struct protection_domain *domain)
2493 {
2494 	spin_lock_init(&domain->lock);
2495 	INIT_LIST_HEAD(&domain->dev_list);
2496 	INIT_LIST_HEAD(&domain->dev_data_list);
2497 	xa_init(&domain->iommu_array);
2498 }
2499 
2500 struct protection_domain *protection_domain_alloc(void)
2501 {
2502 	struct protection_domain *domain;
2503 	int domid;
2504 
2505 	domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2506 	if (!domain)
2507 		return NULL;
2508 
2509 	domid = amd_iommu_pdom_id_alloc();
2510 	if (domid <= 0) {
2511 		kfree(domain);
2512 		return NULL;
2513 	}
2514 	domain->id = domid;
2515 
2516 	protection_domain_init(domain);
2517 
2518 	return domain;
2519 }
2520 
2521 static bool amd_iommu_hd_support(struct amd_iommu *iommu)
2522 {
2523 	if (amd_iommu_hatdis)
2524 		return false;
2525 
2526 	return iommu && (iommu->features & FEATURE_HDSUP);
2527 }
2528 
2529 static spinlock_t *amd_iommu_get_top_lock(struct pt_iommu *iommupt)
2530 {
2531 	struct protection_domain *pdom =
2532 		container_of(iommupt, struct protection_domain, iommu);
2533 
2534 	return &pdom->lock;
2535 }
2536 
2537 /*
2538  * Update all HW references to the domain with a new pgtable configuration.
2539  */
2540 static void amd_iommu_change_top(struct pt_iommu *iommu_table,
2541 				 phys_addr_t top_paddr, unsigned int top_level)
2542 {
2543 	struct protection_domain *pdom =
2544 		container_of(iommu_table, struct protection_domain, iommu);
2545 	struct iommu_dev_data *dev_data;
2546 
2547 	lockdep_assert_held(&pdom->lock);
2548 
2549 	/* Update the DTE for all devices attached to this domain */
2550 	list_for_each_entry(dev_data, &pdom->dev_list, list) {
2551 		struct amd_iommu *iommu = rlookup_amd_iommu(dev_data->dev);
2552 
2553 		/* Update the HW references with the new level and top ptr */
2554 		set_dte_entry(iommu, dev_data, top_paddr, top_level);
2555 		clone_aliases(iommu, dev_data->dev);
2556 	}
2557 
2558 	list_for_each_entry(dev_data, &pdom->dev_list, list)
2559 		device_flush_dte(dev_data);
2560 
2561 	domain_flush_complete(pdom);
2562 }
2563 
2564 /*
2565  * amd_iommu_iotlb_sync_map() is used to generate flushes for non-present to
2566  * present (ie mapping) operations. It is a NOP if the IOMMU doesn't have non
2567  * present caching (like hypervisor shadowing).
2568  */
2569 static int amd_iommu_iotlb_sync_map(struct iommu_domain *dom,
2570 				    unsigned long iova, size_t size)
2571 {
2572 	struct protection_domain *domain = to_pdomain(dom);
2573 	unsigned long flags;
2574 
2575 	if (likely(!amd_iommu_np_cache))
2576 		return 0;
2577 
2578 	spin_lock_irqsave(&domain->lock, flags);
2579 	amd_iommu_domain_flush_pages(domain, iova, size);
2580 	spin_unlock_irqrestore(&domain->lock, flags);
2581 	return 0;
2582 }
2583 
2584 static void amd_iommu_flush_iotlb_all(struct iommu_domain *domain)
2585 {
2586 	struct protection_domain *dom = to_pdomain(domain);
2587 	unsigned long flags;
2588 
2589 	spin_lock_irqsave(&dom->lock, flags);
2590 	amd_iommu_domain_flush_all(dom);
2591 	spin_unlock_irqrestore(&dom->lock, flags);
2592 }
2593 
2594 static void amd_iommu_iotlb_sync(struct iommu_domain *domain,
2595 				 struct iommu_iotlb_gather *gather)
2596 {
2597 	struct protection_domain *dom = to_pdomain(domain);
2598 	unsigned long flags;
2599 
2600 	spin_lock_irqsave(&dom->lock, flags);
2601 	amd_iommu_domain_flush_pages(dom, gather->start,
2602 				     gather->end - gather->start + 1);
2603 	spin_unlock_irqrestore(&dom->lock, flags);
2604 	iommu_put_pages_list(&gather->freelist);
2605 }
2606 
2607 static const struct pt_iommu_driver_ops amd_hw_driver_ops_v1 = {
2608 	.get_top_lock = amd_iommu_get_top_lock,
2609 	.change_top = amd_iommu_change_top,
2610 };
2611 
2612 static const struct iommu_domain_ops amdv1_ops = {
2613 	IOMMU_PT_DOMAIN_OPS(amdv1),
2614 	.iotlb_sync_map = amd_iommu_iotlb_sync_map,
2615 	.flush_iotlb_all = amd_iommu_flush_iotlb_all,
2616 	.iotlb_sync = amd_iommu_iotlb_sync,
2617 	.attach_dev = amd_iommu_attach_device,
2618 	.free = amd_iommu_domain_free,
2619 	.enforce_cache_coherency = amd_iommu_enforce_cache_coherency,
2620 };
2621 
2622 static const struct iommu_dirty_ops amdv1_dirty_ops = {
2623 	IOMMU_PT_DIRTY_OPS(amdv1),
2624 	.set_dirty_tracking = amd_iommu_set_dirty_tracking,
2625 };
2626 
2627 static struct iommu_domain *amd_iommu_domain_alloc_paging_v1(struct device *dev,
2628 							     u32 flags)
2629 {
2630 	struct pt_iommu_amdv1_cfg cfg = {};
2631 	struct protection_domain *domain;
2632 	int ret;
2633 
2634 	if (amd_iommu_hatdis)
2635 		return ERR_PTR(-EOPNOTSUPP);
2636 
2637 	domain = protection_domain_alloc();
2638 	if (!domain)
2639 		return ERR_PTR(-ENOMEM);
2640 
2641 	domain->pd_mode = PD_MODE_V1;
2642 	domain->iommu.driver_ops = &amd_hw_driver_ops_v1;
2643 	domain->iommu.nid = dev_to_node(dev);
2644 	if (flags & IOMMU_HWPT_ALLOC_DIRTY_TRACKING)
2645 		domain->domain.dirty_ops = &amdv1_dirty_ops;
2646 
2647 	/*
2648 	 * Someday FORCE_COHERENCE should be set by
2649 	 * amd_iommu_enforce_cache_coherency() like VT-d does.
2650 	 */
2651 	cfg.common.features = BIT(PT_FEAT_DYNAMIC_TOP) |
2652 			      BIT(PT_FEAT_AMDV1_ENCRYPT_TABLES) |
2653 			      BIT(PT_FEAT_AMDV1_FORCE_COHERENCE);
2654 
2655 	/*
2656 	 * AMD's IOMMU can flush as many pages as necessary in a single flush.
2657 	 * Unless we run in a virtual machine, which can be inferred according
2658 	 * to whether "non-present cache" is on, it is probably best to prefer
2659 	 * (potentially) too extensive TLB flushing (i.e., more misses) over
2660 	 * multiple TLB flushes (i.e., more flushes). For virtual machines the
2661 	 * hypervisor needs to synchronize the host IOMMU PTEs with those of
2662 	 * the guest, and the trade-off is different: unnecessary TLB flushes
2663 	 * should be avoided.
2664 	 */
2665 	if (amd_iommu_np_cache)
2666 		cfg.common.features |= BIT(PT_FEAT_FLUSH_RANGE_NO_GAPS);
2667 	else
2668 		cfg.common.features |= BIT(PT_FEAT_FLUSH_RANGE);
2669 
2670 	cfg.common.hw_max_vasz_lg2 =
2671 		min(64, (amd_iommu_hpt_level - 1) * 9 + 21);
2672 	cfg.common.hw_max_oasz_lg2 = 52;
2673 	cfg.starting_level = 2;
2674 	domain->domain.ops = &amdv1_ops;
2675 
2676 	ret = pt_iommu_amdv1_init(&domain->amdv1, &cfg, GFP_KERNEL);
2677 	if (ret) {
2678 		amd_iommu_domain_free(&domain->domain);
2679 		return ERR_PTR(ret);
2680 	}
2681 
2682 	/*
2683 	 * Narrow the supported page sizes to those selected by the kernel
2684 	 * command line.
2685 	 */
2686 	domain->domain.pgsize_bitmap &= amd_iommu_pgsize_bitmap;
2687 	return &domain->domain;
2688 }
2689 
2690 static const struct iommu_domain_ops amdv2_ops = {
2691 	IOMMU_PT_DOMAIN_OPS(x86_64),
2692 	.iotlb_sync_map = amd_iommu_iotlb_sync_map,
2693 	.flush_iotlb_all = amd_iommu_flush_iotlb_all,
2694 	.iotlb_sync = amd_iommu_iotlb_sync,
2695 	.attach_dev = amd_iommu_attach_device,
2696 	.free = amd_iommu_domain_free,
2697 	/*
2698 	 * Note the AMDv2 page table format does not support a Force Coherency
2699 	 * bit, so enforce_cache_coherency should not be set. However VFIO is
2700 	 * not prepared to handle a case where some domains will support
2701 	 * enforcement and others do not. VFIO and iommufd will have to be fixed
2702 	 * before it can fully use the V2 page table. See the comment in
2703 	 * iommufd_hwpt_paging_alloc(). For now leave things as they have
2704 	 * historically been and lie about enforce_cache_coherencey.
2705 	 */
2706 	.enforce_cache_coherency = amd_iommu_enforce_cache_coherency,
2707 };
2708 
2709 static struct iommu_domain *amd_iommu_domain_alloc_paging_v2(struct device *dev,
2710 							     u32 flags)
2711 {
2712 	struct pt_iommu_x86_64_cfg cfg = {};
2713 	struct protection_domain *domain;
2714 	int ret;
2715 
2716 	if (!amd_iommu_v2_pgtbl_supported())
2717 		return ERR_PTR(-EOPNOTSUPP);
2718 
2719 	domain = protection_domain_alloc();
2720 	if (!domain)
2721 		return ERR_PTR(-ENOMEM);
2722 
2723 	domain->pd_mode = PD_MODE_V2;
2724 	domain->iommu.nid = dev_to_node(dev);
2725 
2726 	cfg.common.features = BIT(PT_FEAT_X86_64_AMD_ENCRYPT_TABLES);
2727 	if (amd_iommu_np_cache)
2728 		cfg.common.features |= BIT(PT_FEAT_FLUSH_RANGE_NO_GAPS);
2729 	else
2730 		cfg.common.features |= BIT(PT_FEAT_FLUSH_RANGE);
2731 
2732 	/*
2733 	 * The v2 table behaves differently if it is attached to PASID 0 vs a
2734 	 * non-zero PASID. On PASID 0 it has no sign extension and the full
2735 	 * 57/48 bits decode the lower addresses. Otherwise it behaves like a
2736 	 * normal sign extended x86 page table. Since we want the domain to work
2737 	 * in both modes the top bit is removed and PT_FEAT_SIGN_EXTEND is not
2738 	 * set which creates a table that is compatible in both modes.
2739 	 */
2740 	if (amd_iommu_gpt_level == PAGE_MODE_5_LEVEL) {
2741 		cfg.common.hw_max_vasz_lg2 = 56;
2742 		cfg.top_level = 4;
2743 	} else {
2744 		cfg.common.hw_max_vasz_lg2 = 47;
2745 		cfg.top_level = 3;
2746 	}
2747 	cfg.common.hw_max_oasz_lg2 = 52;
2748 	domain->domain.ops = &amdv2_ops;
2749 
2750 	ret = pt_iommu_x86_64_init(&domain->amdv2, &cfg, GFP_KERNEL);
2751 	if (ret) {
2752 		amd_iommu_domain_free(&domain->domain);
2753 		return ERR_PTR(ret);
2754 	}
2755 	return &domain->domain;
2756 }
2757 
2758 static struct iommu_domain *
2759 amd_iommu_domain_alloc_paging_flags(struct device *dev, u32 flags,
2760 				    const struct iommu_user_data *user_data)
2761 
2762 {
2763 	struct amd_iommu *iommu = get_amd_iommu_from_dev(dev);
2764 	const u32 supported_flags = IOMMU_HWPT_ALLOC_DIRTY_TRACKING |
2765 						IOMMU_HWPT_ALLOC_PASID;
2766 
2767 	if ((flags & ~supported_flags) || user_data)
2768 		return ERR_PTR(-EOPNOTSUPP);
2769 
2770 	switch (flags & supported_flags) {
2771 	case IOMMU_HWPT_ALLOC_DIRTY_TRACKING:
2772 		/* Allocate domain with v1 page table for dirty tracking */
2773 		if (!amd_iommu_hd_support(iommu))
2774 			break;
2775 		return amd_iommu_domain_alloc_paging_v1(dev, flags);
2776 	case IOMMU_HWPT_ALLOC_PASID:
2777 		/* Allocate domain with v2 page table if IOMMU supports PASID. */
2778 		if (!amd_iommu_pasid_supported())
2779 			break;
2780 		return amd_iommu_domain_alloc_paging_v2(dev, flags);
2781 	case 0: {
2782 		struct iommu_domain *ret;
2783 
2784 		/* If nothing specific is required use the kernel commandline default */
2785 		if (amd_iommu_pgtable == PD_MODE_V1) {
2786 			ret = amd_iommu_domain_alloc_paging_v1(dev, flags);
2787 			if (ret != ERR_PTR(-EOPNOTSUPP))
2788 				return ret;
2789 			return amd_iommu_domain_alloc_paging_v2(dev, flags);
2790 		}
2791 		ret = amd_iommu_domain_alloc_paging_v2(dev, flags);
2792 		if (ret != ERR_PTR(-EOPNOTSUPP))
2793 			return ret;
2794 		return amd_iommu_domain_alloc_paging_v1(dev, flags);
2795 	}
2796 	default:
2797 		break;
2798 	}
2799 	return ERR_PTR(-EOPNOTSUPP);
2800 }
2801 
2802 void amd_iommu_domain_free(struct iommu_domain *dom)
2803 {
2804 	struct protection_domain *domain = to_pdomain(dom);
2805 
2806 	WARN_ON(!list_empty(&domain->dev_list));
2807 	pt_iommu_deinit(&domain->iommu);
2808 	amd_iommu_pdom_id_free(domain->id);
2809 	kfree(domain);
2810 }
2811 
2812 static int blocked_domain_attach_device(struct iommu_domain *domain,
2813 					struct device *dev,
2814 					struct iommu_domain *old)
2815 {
2816 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
2817 
2818 	if (dev_data->domain)
2819 		detach_device(dev);
2820 
2821 	/* Clear DTE and flush the entry */
2822 	mutex_lock(&dev_data->mutex);
2823 	dev_update_dte(dev_data, false);
2824 	mutex_unlock(&dev_data->mutex);
2825 
2826 	return 0;
2827 }
2828 
2829 static int blocked_domain_set_dev_pasid(struct iommu_domain *domain,
2830 					struct device *dev, ioasid_t pasid,
2831 					struct iommu_domain *old)
2832 {
2833 	amd_iommu_remove_dev_pasid(dev, pasid, old);
2834 	return 0;
2835 }
2836 
2837 static struct iommu_domain blocked_domain = {
2838 	.type = IOMMU_DOMAIN_BLOCKED,
2839 	.ops = &(const struct iommu_domain_ops) {
2840 		.attach_dev     = blocked_domain_attach_device,
2841 		.set_dev_pasid  = blocked_domain_set_dev_pasid,
2842 	}
2843 };
2844 
2845 static struct protection_domain identity_domain;
2846 
2847 static const struct iommu_domain_ops identity_domain_ops = {
2848 	.attach_dev = amd_iommu_attach_device,
2849 };
2850 
2851 void amd_iommu_init_identity_domain(void)
2852 {
2853 	struct iommu_domain *domain = &identity_domain.domain;
2854 
2855 	domain->type = IOMMU_DOMAIN_IDENTITY;
2856 	domain->ops = &identity_domain_ops;
2857 	domain->owner = &amd_iommu_ops;
2858 
2859 	identity_domain.id = amd_iommu_pdom_id_alloc();
2860 
2861 	protection_domain_init(&identity_domain);
2862 }
2863 
2864 static int amd_iommu_attach_device(struct iommu_domain *dom, struct device *dev,
2865 				   struct iommu_domain *old)
2866 {
2867 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
2868 	struct protection_domain *domain = to_pdomain(dom);
2869 	struct amd_iommu *iommu = get_amd_iommu_from_dev(dev);
2870 	int ret;
2871 
2872 	/*
2873 	 * Skip attach device to domain if new domain is same as
2874 	 * devices current domain
2875 	 */
2876 	if (dev_data->domain == domain)
2877 		return 0;
2878 
2879 	dev_data->defer_attach = false;
2880 
2881 	/*
2882 	 * Restrict to devices with compatible IOMMU hardware support
2883 	 * when enforcement of dirty tracking is enabled.
2884 	 */
2885 	if (dom->dirty_ops && !amd_iommu_hd_support(iommu))
2886 		return -EINVAL;
2887 
2888 	if (dev_data->domain)
2889 		detach_device(dev);
2890 
2891 	ret = attach_device(dev, domain);
2892 
2893 #ifdef CONFIG_IRQ_REMAP
2894 	if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) {
2895 		if (dom->type == IOMMU_DOMAIN_UNMANAGED)
2896 			dev_data->use_vapic = 1;
2897 		else
2898 			dev_data->use_vapic = 0;
2899 	}
2900 #endif
2901 
2902 	return ret;
2903 }
2904 
2905 static bool amd_iommu_capable(struct device *dev, enum iommu_cap cap)
2906 {
2907 	switch (cap) {
2908 	case IOMMU_CAP_CACHE_COHERENCY:
2909 		return true;
2910 	case IOMMU_CAP_NOEXEC:
2911 		return false;
2912 	case IOMMU_CAP_PRE_BOOT_PROTECTION:
2913 		return amdr_ivrs_remap_support;
2914 	case IOMMU_CAP_ENFORCE_CACHE_COHERENCY:
2915 		return true;
2916 	case IOMMU_CAP_DEFERRED_FLUSH:
2917 		return true;
2918 	case IOMMU_CAP_DIRTY_TRACKING: {
2919 		struct amd_iommu *iommu = get_amd_iommu_from_dev(dev);
2920 
2921 		return amd_iommu_hd_support(iommu);
2922 	}
2923 	default:
2924 		break;
2925 	}
2926 
2927 	return false;
2928 }
2929 
2930 static int amd_iommu_set_dirty_tracking(struct iommu_domain *domain,
2931 					bool enable)
2932 {
2933 	struct protection_domain *pdomain = to_pdomain(domain);
2934 	struct dev_table_entry *dte;
2935 	struct iommu_dev_data *dev_data;
2936 	bool domain_flush = false;
2937 	struct amd_iommu *iommu;
2938 	unsigned long flags;
2939 	u64 new;
2940 
2941 	spin_lock_irqsave(&pdomain->lock, flags);
2942 	if (!(pdomain->dirty_tracking ^ enable)) {
2943 		spin_unlock_irqrestore(&pdomain->lock, flags);
2944 		return 0;
2945 	}
2946 
2947 	list_for_each_entry(dev_data, &pdomain->dev_list, list) {
2948 		spin_lock(&dev_data->dte_lock);
2949 		iommu = get_amd_iommu_from_dev_data(dev_data);
2950 		dte = &get_dev_table(iommu)[dev_data->devid];
2951 		new = dte->data[0];
2952 		new = (enable ? new | DTE_FLAG_HAD : new & ~DTE_FLAG_HAD);
2953 		dte->data[0] = new;
2954 		spin_unlock(&dev_data->dte_lock);
2955 
2956 		/* Flush device DTE */
2957 		device_flush_dte(dev_data);
2958 		domain_flush = true;
2959 	}
2960 
2961 	/* Flush IOTLB to mark IOPTE dirty on the next translation(s) */
2962 	if (domain_flush)
2963 		amd_iommu_domain_flush_all(pdomain);
2964 
2965 	pdomain->dirty_tracking = enable;
2966 	spin_unlock_irqrestore(&pdomain->lock, flags);
2967 
2968 	return 0;
2969 }
2970 
2971 static void amd_iommu_get_resv_regions(struct device *dev,
2972 				       struct list_head *head)
2973 {
2974 	struct iommu_resv_region *region;
2975 	struct unity_map_entry *entry;
2976 	struct amd_iommu *iommu;
2977 	struct amd_iommu_pci_seg *pci_seg;
2978 	int devid, sbdf;
2979 
2980 	sbdf = get_device_sbdf_id(dev);
2981 	if (sbdf < 0)
2982 		return;
2983 
2984 	devid = PCI_SBDF_TO_DEVID(sbdf);
2985 	iommu = get_amd_iommu_from_dev(dev);
2986 	pci_seg = iommu->pci_seg;
2987 
2988 	list_for_each_entry(entry, &pci_seg->unity_map, list) {
2989 		int type, prot = 0;
2990 		size_t length;
2991 
2992 		if (devid < entry->devid_start || devid > entry->devid_end)
2993 			continue;
2994 
2995 		type   = IOMMU_RESV_DIRECT;
2996 		length = entry->address_end - entry->address_start;
2997 		if (entry->prot & IOMMU_PROT_IR)
2998 			prot |= IOMMU_READ;
2999 		if (entry->prot & IOMMU_PROT_IW)
3000 			prot |= IOMMU_WRITE;
3001 		if (entry->prot & IOMMU_UNITY_MAP_FLAG_EXCL_RANGE)
3002 			/* Exclusion range */
3003 			type = IOMMU_RESV_RESERVED;
3004 
3005 		region = iommu_alloc_resv_region(entry->address_start,
3006 						 length, prot, type,
3007 						 GFP_KERNEL);
3008 		if (!region) {
3009 			dev_err(dev, "Out of memory allocating dm-regions\n");
3010 			return;
3011 		}
3012 		list_add_tail(&region->list, head);
3013 	}
3014 
3015 	region = iommu_alloc_resv_region(MSI_RANGE_START,
3016 					 MSI_RANGE_END - MSI_RANGE_START + 1,
3017 					 0, IOMMU_RESV_MSI, GFP_KERNEL);
3018 	if (!region)
3019 		return;
3020 	list_add_tail(&region->list, head);
3021 
3022 	if (amd_iommu_ht_range_ignore())
3023 		return;
3024 
3025 	region = iommu_alloc_resv_region(HT_RANGE_START,
3026 					 HT_RANGE_END - HT_RANGE_START + 1,
3027 					 0, IOMMU_RESV_RESERVED, GFP_KERNEL);
3028 	if (!region)
3029 		return;
3030 	list_add_tail(&region->list, head);
3031 }
3032 
3033 static bool amd_iommu_is_attach_deferred(struct device *dev)
3034 {
3035 	struct iommu_dev_data *dev_data = dev_iommu_priv_get(dev);
3036 
3037 	return dev_data->defer_attach;
3038 }
3039 
3040 static int amd_iommu_def_domain_type(struct device *dev)
3041 {
3042 	struct iommu_dev_data *dev_data;
3043 
3044 	dev_data = dev_iommu_priv_get(dev);
3045 	if (!dev_data)
3046 		return 0;
3047 
3048 	/* Always use DMA domain for untrusted device */
3049 	if (dev_is_pci(dev) && to_pci_dev(dev)->untrusted)
3050 		return IOMMU_DOMAIN_DMA;
3051 
3052 	/*
3053 	 * Do not identity map IOMMUv2 capable devices when:
3054 	 *  - memory encryption is active, because some of those devices
3055 	 *    (AMD GPUs) don't have the encryption bit in their DMA-mask
3056 	 *    and require remapping.
3057 	 *  - SNP is enabled, because it prohibits DTE[Mode]=0.
3058 	 */
3059 	if (pdev_pasid_supported(dev_data) &&
3060 	    !cc_platform_has(CC_ATTR_MEM_ENCRYPT) &&
3061 	    !amd_iommu_snp_en) {
3062 		return IOMMU_DOMAIN_IDENTITY;
3063 	}
3064 
3065 	return 0;
3066 }
3067 
3068 static bool amd_iommu_enforce_cache_coherency(struct iommu_domain *domain)
3069 {
3070 	/* IOMMU_PTE_FC is always set */
3071 	return true;
3072 }
3073 
3074 const struct iommu_ops amd_iommu_ops = {
3075 	.capable = amd_iommu_capable,
3076 	.blocked_domain = &blocked_domain,
3077 	.release_domain = &blocked_domain,
3078 	.identity_domain = &identity_domain.domain,
3079 	.domain_alloc_paging_flags = amd_iommu_domain_alloc_paging_flags,
3080 	.domain_alloc_sva = amd_iommu_domain_alloc_sva,
3081 	.probe_device = amd_iommu_probe_device,
3082 	.release_device = amd_iommu_release_device,
3083 	.device_group = amd_iommu_device_group,
3084 	.get_resv_regions = amd_iommu_get_resv_regions,
3085 	.is_attach_deferred = amd_iommu_is_attach_deferred,
3086 	.def_domain_type = amd_iommu_def_domain_type,
3087 	.page_response = amd_iommu_page_response,
3088 };
3089 
3090 #ifdef CONFIG_IRQ_REMAP
3091 
3092 /*****************************************************************************
3093  *
3094  * Interrupt Remapping Implementation
3095  *
3096  *****************************************************************************/
3097 
3098 static struct irq_chip amd_ir_chip;
3099 static DEFINE_SPINLOCK(iommu_table_lock);
3100 
3101 static void iommu_flush_irt_and_complete(struct amd_iommu *iommu, u16 devid)
3102 {
3103 	int ret;
3104 	u64 data;
3105 	unsigned long flags;
3106 	struct iommu_cmd cmd, cmd2;
3107 
3108 	if (iommu->irtcachedis_enabled)
3109 		return;
3110 
3111 	build_inv_irt(&cmd, devid);
3112 	data = atomic64_inc_return(&iommu->cmd_sem_val);
3113 	build_completion_wait(&cmd2, iommu, data);
3114 
3115 	raw_spin_lock_irqsave(&iommu->lock, flags);
3116 	ret = __iommu_queue_command_sync(iommu, &cmd, true);
3117 	if (ret)
3118 		goto out;
3119 	ret = __iommu_queue_command_sync(iommu, &cmd2, false);
3120 	if (ret)
3121 		goto out;
3122 	wait_on_sem(iommu, data);
3123 out:
3124 	raw_spin_unlock_irqrestore(&iommu->lock, flags);
3125 }
3126 
3127 static inline u8 iommu_get_int_tablen(struct iommu_dev_data *dev_data)
3128 {
3129 	if (dev_data && dev_data->max_irqs == MAX_IRQS_PER_TABLE_2K)
3130 		return DTE_INTTABLEN_2K;
3131 	return DTE_INTTABLEN_512;
3132 }
3133 
3134 static void set_dte_irq_entry(struct amd_iommu *iommu, u16 devid,
3135 			      struct irq_remap_table *table)
3136 {
3137 	u64 new;
3138 	struct dev_table_entry *dte = &get_dev_table(iommu)[devid];
3139 	struct iommu_dev_data *dev_data = search_dev_data(iommu, devid);
3140 
3141 	if (dev_data)
3142 		spin_lock(&dev_data->dte_lock);
3143 
3144 	new = READ_ONCE(dte->data[2]);
3145 	new &= ~DTE_IRQ_PHYS_ADDR_MASK;
3146 	new |= iommu_virt_to_phys(table->table);
3147 	new |= DTE_IRQ_REMAP_INTCTL;
3148 	new |= iommu_get_int_tablen(dev_data);
3149 	new |= DTE_IRQ_REMAP_ENABLE;
3150 	WRITE_ONCE(dte->data[2], new);
3151 
3152 	if (dev_data)
3153 		spin_unlock(&dev_data->dte_lock);
3154 }
3155 
3156 static struct irq_remap_table *get_irq_table(struct amd_iommu *iommu, u16 devid)
3157 {
3158 	struct irq_remap_table *table;
3159 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
3160 
3161 	if (WARN_ONCE(!pci_seg->rlookup_table[devid],
3162 		      "%s: no iommu for devid %x:%x\n",
3163 		      __func__, pci_seg->id, devid))
3164 		return NULL;
3165 
3166 	table = pci_seg->irq_lookup_table[devid];
3167 	if (WARN_ONCE(!table, "%s: no table for devid %x:%x\n",
3168 		      __func__, pci_seg->id, devid))
3169 		return NULL;
3170 
3171 	return table;
3172 }
3173 
3174 static struct irq_remap_table *__alloc_irq_table(int nid, size_t size)
3175 {
3176 	struct irq_remap_table *table;
3177 
3178 	table = kzalloc(sizeof(*table), GFP_KERNEL);
3179 	if (!table)
3180 		return NULL;
3181 
3182 	table->table = iommu_alloc_pages_node_sz(
3183 		nid, GFP_KERNEL, max(DTE_INTTAB_ALIGNMENT, size));
3184 	if (!table->table) {
3185 		kfree(table);
3186 		return NULL;
3187 	}
3188 	raw_spin_lock_init(&table->lock);
3189 
3190 	return table;
3191 }
3192 
3193 static void set_remap_table_entry(struct amd_iommu *iommu, u16 devid,
3194 				  struct irq_remap_table *table)
3195 {
3196 	struct amd_iommu_pci_seg *pci_seg = iommu->pci_seg;
3197 
3198 	pci_seg->irq_lookup_table[devid] = table;
3199 	set_dte_irq_entry(iommu, devid, table);
3200 	iommu_flush_dte(iommu, devid);
3201 }
3202 
3203 static int set_remap_table_entry_alias(struct pci_dev *pdev, u16 alias,
3204 				       void *data)
3205 {
3206 	struct irq_remap_table *table = data;
3207 	struct amd_iommu_pci_seg *pci_seg;
3208 	struct amd_iommu *iommu = rlookup_amd_iommu(&pdev->dev);
3209 
3210 	if (!iommu)
3211 		return -EINVAL;
3212 
3213 	pci_seg = iommu->pci_seg;
3214 	pci_seg->irq_lookup_table[alias] = table;
3215 	set_dte_irq_entry(iommu, alias, table);
3216 	iommu_flush_dte(pci_seg->rlookup_table[alias], alias);
3217 
3218 	return 0;
3219 }
3220 
3221 static inline size_t get_irq_table_size(unsigned int max_irqs)
3222 {
3223 	if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
3224 		return max_irqs * sizeof(u32);
3225 
3226 	return max_irqs * (sizeof(u64) * 2);
3227 }
3228 
3229 static struct irq_remap_table *alloc_irq_table(struct amd_iommu *iommu,
3230 					       u16 devid, struct pci_dev *pdev,
3231 					       unsigned int max_irqs)
3232 {
3233 	struct irq_remap_table *table = NULL;
3234 	struct irq_remap_table *new_table = NULL;
3235 	struct amd_iommu_pci_seg *pci_seg;
3236 	unsigned long flags;
3237 	int nid = iommu && iommu->dev ? dev_to_node(&iommu->dev->dev) : NUMA_NO_NODE;
3238 	u16 alias;
3239 
3240 	spin_lock_irqsave(&iommu_table_lock, flags);
3241 
3242 	pci_seg = iommu->pci_seg;
3243 	table = pci_seg->irq_lookup_table[devid];
3244 	if (table)
3245 		goto out_unlock;
3246 
3247 	alias = pci_seg->alias_table[devid];
3248 	table = pci_seg->irq_lookup_table[alias];
3249 	if (table) {
3250 		set_remap_table_entry(iommu, devid, table);
3251 		goto out_wait;
3252 	}
3253 	spin_unlock_irqrestore(&iommu_table_lock, flags);
3254 
3255 	/* Nothing there yet, allocate new irq remapping table */
3256 	new_table = __alloc_irq_table(nid, get_irq_table_size(max_irqs));
3257 	if (!new_table)
3258 		return NULL;
3259 
3260 	spin_lock_irqsave(&iommu_table_lock, flags);
3261 
3262 	table = pci_seg->irq_lookup_table[devid];
3263 	if (table)
3264 		goto out_unlock;
3265 
3266 	table = pci_seg->irq_lookup_table[alias];
3267 	if (table) {
3268 		set_remap_table_entry(iommu, devid, table);
3269 		goto out_wait;
3270 	}
3271 
3272 	table = new_table;
3273 	new_table = NULL;
3274 
3275 	if (pdev)
3276 		pci_for_each_dma_alias(pdev, set_remap_table_entry_alias,
3277 				       table);
3278 	else
3279 		set_remap_table_entry(iommu, devid, table);
3280 
3281 	if (devid != alias)
3282 		set_remap_table_entry(iommu, alias, table);
3283 
3284 out_wait:
3285 	iommu_completion_wait(iommu);
3286 
3287 out_unlock:
3288 	spin_unlock_irqrestore(&iommu_table_lock, flags);
3289 
3290 	if (new_table) {
3291 		iommu_free_pages(new_table->table);
3292 		kfree(new_table);
3293 	}
3294 	return table;
3295 }
3296 
3297 static int alloc_irq_index(struct amd_iommu *iommu, u16 devid, int count,
3298 			   bool align, struct pci_dev *pdev,
3299 			   unsigned long max_irqs)
3300 {
3301 	struct irq_remap_table *table;
3302 	int index, c, alignment = 1;
3303 	unsigned long flags;
3304 
3305 	table = alloc_irq_table(iommu, devid, pdev, max_irqs);
3306 	if (!table)
3307 		return -ENODEV;
3308 
3309 	if (align)
3310 		alignment = roundup_pow_of_two(count);
3311 
3312 	raw_spin_lock_irqsave(&table->lock, flags);
3313 
3314 	/* Scan table for free entries */
3315 	for (index = ALIGN(table->min_index, alignment), c = 0;
3316 	     index < max_irqs;) {
3317 		if (!iommu->irte_ops->is_allocated(table, index)) {
3318 			c += 1;
3319 		} else {
3320 			c     = 0;
3321 			index = ALIGN(index + 1, alignment);
3322 			continue;
3323 		}
3324 
3325 		if (c == count)	{
3326 			for (; c != 0; --c)
3327 				iommu->irte_ops->set_allocated(table, index - c + 1);
3328 
3329 			index -= count - 1;
3330 			goto out;
3331 		}
3332 
3333 		index++;
3334 	}
3335 
3336 	index = -ENOSPC;
3337 
3338 out:
3339 	raw_spin_unlock_irqrestore(&table->lock, flags);
3340 
3341 	return index;
3342 }
3343 
3344 static int __modify_irte_ga(struct amd_iommu *iommu, u16 devid, int index,
3345 			    struct irte_ga *irte)
3346 {
3347 	struct irq_remap_table *table;
3348 	struct irte_ga *entry;
3349 	unsigned long flags;
3350 	u128 old;
3351 
3352 	table = get_irq_table(iommu, devid);
3353 	if (!table)
3354 		return -ENOMEM;
3355 
3356 	raw_spin_lock_irqsave(&table->lock, flags);
3357 
3358 	entry = (struct irte_ga *)table->table;
3359 	entry = &entry[index];
3360 
3361 	/*
3362 	 * We use cmpxchg16 to atomically update the 128-bit IRTE,
3363 	 * and it cannot be updated by the hardware or other processors
3364 	 * behind us, so the return value of cmpxchg16 should be the
3365 	 * same as the old value.
3366 	 */
3367 	old = entry->irte;
3368 	WARN_ON(!try_cmpxchg128(&entry->irte, &old, irte->irte));
3369 
3370 	raw_spin_unlock_irqrestore(&table->lock, flags);
3371 
3372 	return 0;
3373 }
3374 
3375 static int modify_irte_ga(struct amd_iommu *iommu, u16 devid, int index,
3376 			  struct irte_ga *irte)
3377 {
3378 	int ret;
3379 
3380 	ret = __modify_irte_ga(iommu, devid, index, irte);
3381 	if (ret)
3382 		return ret;
3383 
3384 	iommu_flush_irt_and_complete(iommu, devid);
3385 
3386 	return 0;
3387 }
3388 
3389 static int modify_irte(struct amd_iommu *iommu,
3390 		       u16 devid, int index, union irte *irte)
3391 {
3392 	struct irq_remap_table *table;
3393 	unsigned long flags;
3394 
3395 	table = get_irq_table(iommu, devid);
3396 	if (!table)
3397 		return -ENOMEM;
3398 
3399 	raw_spin_lock_irqsave(&table->lock, flags);
3400 	table->table[index] = irte->val;
3401 	raw_spin_unlock_irqrestore(&table->lock, flags);
3402 
3403 	iommu_flush_irt_and_complete(iommu, devid);
3404 
3405 	return 0;
3406 }
3407 
3408 static void free_irte(struct amd_iommu *iommu, u16 devid, int index)
3409 {
3410 	struct irq_remap_table *table;
3411 	unsigned long flags;
3412 
3413 	table = get_irq_table(iommu, devid);
3414 	if (!table)
3415 		return;
3416 
3417 	raw_spin_lock_irqsave(&table->lock, flags);
3418 	iommu->irte_ops->clear_allocated(table, index);
3419 	raw_spin_unlock_irqrestore(&table->lock, flags);
3420 
3421 	iommu_flush_irt_and_complete(iommu, devid);
3422 }
3423 
3424 static void irte_prepare(void *entry,
3425 			 u32 delivery_mode, bool dest_mode,
3426 			 u8 vector, u32 dest_apicid, int devid)
3427 {
3428 	union irte *irte = (union irte *) entry;
3429 
3430 	irte->val                = 0;
3431 	irte->fields.vector      = vector;
3432 	irte->fields.int_type    = delivery_mode;
3433 	irte->fields.destination = dest_apicid;
3434 	irte->fields.dm          = dest_mode;
3435 	irte->fields.valid       = 1;
3436 }
3437 
3438 static void irte_ga_prepare(void *entry,
3439 			    u32 delivery_mode, bool dest_mode,
3440 			    u8 vector, u32 dest_apicid, int devid)
3441 {
3442 	struct irte_ga *irte = (struct irte_ga *) entry;
3443 
3444 	irte->lo.val                      = 0;
3445 	irte->hi.val                      = 0;
3446 	irte->lo.fields_remap.int_type    = delivery_mode;
3447 	irte->lo.fields_remap.dm          = dest_mode;
3448 	irte->hi.fields.vector            = vector;
3449 	irte->lo.fields_remap.destination = APICID_TO_IRTE_DEST_LO(dest_apicid);
3450 	irte->hi.fields.destination       = APICID_TO_IRTE_DEST_HI(dest_apicid);
3451 	irte->lo.fields_remap.valid       = 1;
3452 }
3453 
3454 static void irte_activate(struct amd_iommu *iommu, void *entry, u16 devid, u16 index)
3455 {
3456 	union irte *irte = (union irte *) entry;
3457 
3458 	irte->fields.valid = 1;
3459 	modify_irte(iommu, devid, index, irte);
3460 }
3461 
3462 static void irte_ga_activate(struct amd_iommu *iommu, void *entry, u16 devid, u16 index)
3463 {
3464 	struct irte_ga *irte = (struct irte_ga *) entry;
3465 
3466 	irte->lo.fields_remap.valid = 1;
3467 	modify_irte_ga(iommu, devid, index, irte);
3468 }
3469 
3470 static void irte_deactivate(struct amd_iommu *iommu, void *entry, u16 devid, u16 index)
3471 {
3472 	union irte *irte = (union irte *) entry;
3473 
3474 	irte->fields.valid = 0;
3475 	modify_irte(iommu, devid, index, irte);
3476 }
3477 
3478 static void irte_ga_deactivate(struct amd_iommu *iommu, void *entry, u16 devid, u16 index)
3479 {
3480 	struct irte_ga *irte = (struct irte_ga *) entry;
3481 
3482 	irte->lo.fields_remap.valid = 0;
3483 	modify_irte_ga(iommu, devid, index, irte);
3484 }
3485 
3486 static void irte_set_affinity(struct amd_iommu *iommu, void *entry, u16 devid, u16 index,
3487 			      u8 vector, u32 dest_apicid)
3488 {
3489 	union irte *irte = (union irte *) entry;
3490 
3491 	irte->fields.vector = vector;
3492 	irte->fields.destination = dest_apicid;
3493 	modify_irte(iommu, devid, index, irte);
3494 }
3495 
3496 static void irte_ga_set_affinity(struct amd_iommu *iommu, void *entry, u16 devid, u16 index,
3497 				 u8 vector, u32 dest_apicid)
3498 {
3499 	struct irte_ga *irte = (struct irte_ga *) entry;
3500 
3501 	if (!irte->lo.fields_remap.guest_mode) {
3502 		irte->hi.fields.vector = vector;
3503 		irte->lo.fields_remap.destination =
3504 					APICID_TO_IRTE_DEST_LO(dest_apicid);
3505 		irte->hi.fields.destination =
3506 					APICID_TO_IRTE_DEST_HI(dest_apicid);
3507 		modify_irte_ga(iommu, devid, index, irte);
3508 	}
3509 }
3510 
3511 #define IRTE_ALLOCATED (~1U)
3512 static void irte_set_allocated(struct irq_remap_table *table, int index)
3513 {
3514 	table->table[index] = IRTE_ALLOCATED;
3515 }
3516 
3517 static void irte_ga_set_allocated(struct irq_remap_table *table, int index)
3518 {
3519 	struct irte_ga *ptr = (struct irte_ga *)table->table;
3520 	struct irte_ga *irte = &ptr[index];
3521 
3522 	memset(&irte->lo.val, 0, sizeof(u64));
3523 	memset(&irte->hi.val, 0, sizeof(u64));
3524 	irte->hi.fields.vector = 0xff;
3525 }
3526 
3527 static bool irte_is_allocated(struct irq_remap_table *table, int index)
3528 {
3529 	union irte *ptr = (union irte *)table->table;
3530 	union irte *irte = &ptr[index];
3531 
3532 	return irte->val != 0;
3533 }
3534 
3535 static bool irte_ga_is_allocated(struct irq_remap_table *table, int index)
3536 {
3537 	struct irte_ga *ptr = (struct irte_ga *)table->table;
3538 	struct irte_ga *irte = &ptr[index];
3539 
3540 	return irte->hi.fields.vector != 0;
3541 }
3542 
3543 static void irte_clear_allocated(struct irq_remap_table *table, int index)
3544 {
3545 	table->table[index] = 0;
3546 }
3547 
3548 static void irte_ga_clear_allocated(struct irq_remap_table *table, int index)
3549 {
3550 	struct irte_ga *ptr = (struct irte_ga *)table->table;
3551 	struct irte_ga *irte = &ptr[index];
3552 
3553 	memset(&irte->lo.val, 0, sizeof(u64));
3554 	memset(&irte->hi.val, 0, sizeof(u64));
3555 }
3556 
3557 static int get_devid(struct irq_alloc_info *info)
3558 {
3559 	switch (info->type) {
3560 	case X86_IRQ_ALLOC_TYPE_IOAPIC:
3561 		return get_ioapic_devid(info->devid);
3562 	case X86_IRQ_ALLOC_TYPE_HPET:
3563 		return get_hpet_devid(info->devid);
3564 	case X86_IRQ_ALLOC_TYPE_PCI_MSI:
3565 	case X86_IRQ_ALLOC_TYPE_PCI_MSIX:
3566 		return get_device_sbdf_id(msi_desc_to_dev(info->desc));
3567 	default:
3568 		WARN_ON_ONCE(1);
3569 		return -1;
3570 	}
3571 }
3572 
3573 struct irq_remap_ops amd_iommu_irq_ops = {
3574 	.prepare		= amd_iommu_prepare,
3575 	.enable			= amd_iommu_enable,
3576 	.disable		= amd_iommu_disable,
3577 	.reenable		= amd_iommu_reenable,
3578 	.enable_faulting	= amd_iommu_enable_faulting,
3579 };
3580 
3581 static void fill_msi_msg(struct msi_msg *msg, u32 index)
3582 {
3583 	msg->data = index;
3584 	msg->address_lo = 0;
3585 	msg->arch_addr_lo.base_address = X86_MSI_BASE_ADDRESS_LOW;
3586 	/*
3587 	 * The struct msi_msg.dest_mode_logical is used to set the DM bit
3588 	 * in MSI Message Address Register. For device w/ 2K int-remap support,
3589 	 * this is bit must be set to 1 regardless of the actual destination
3590 	 * mode, which is signified by the IRTE[DM].
3591 	 */
3592 	if (FEATURE_NUM_INT_REMAP_SUP_2K(amd_iommu_efr2))
3593 		msg->arch_addr_lo.dest_mode_logical = true;
3594 	msg->address_hi = X86_MSI_BASE_ADDRESS_HIGH;
3595 }
3596 
3597 static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3598 				       struct irq_cfg *irq_cfg,
3599 				       struct irq_alloc_info *info,
3600 				       int devid, int index, int sub_handle)
3601 {
3602 	struct irq_2_irte *irte_info = &data->irq_2_irte;
3603 	struct amd_iommu *iommu = data->iommu;
3604 
3605 	if (!iommu)
3606 		return;
3607 
3608 	data->irq_2_irte.devid = devid;
3609 	data->irq_2_irte.index = index + sub_handle;
3610 	iommu->irte_ops->prepare(data->entry, APIC_DELIVERY_MODE_FIXED,
3611 				 apic->dest_mode_logical, irq_cfg->vector,
3612 				 irq_cfg->dest_apicid, devid);
3613 
3614 	switch (info->type) {
3615 	case X86_IRQ_ALLOC_TYPE_IOAPIC:
3616 	case X86_IRQ_ALLOC_TYPE_HPET:
3617 	case X86_IRQ_ALLOC_TYPE_PCI_MSI:
3618 	case X86_IRQ_ALLOC_TYPE_PCI_MSIX:
3619 		fill_msi_msg(&data->msi_entry, irte_info->index);
3620 		break;
3621 
3622 	default:
3623 		BUG_ON(1);
3624 		break;
3625 	}
3626 }
3627 
3628 struct amd_irte_ops irte_32_ops = {
3629 	.prepare = irte_prepare,
3630 	.activate = irte_activate,
3631 	.deactivate = irte_deactivate,
3632 	.set_affinity = irte_set_affinity,
3633 	.set_allocated = irte_set_allocated,
3634 	.is_allocated = irte_is_allocated,
3635 	.clear_allocated = irte_clear_allocated,
3636 };
3637 
3638 struct amd_irte_ops irte_128_ops = {
3639 	.prepare = irte_ga_prepare,
3640 	.activate = irte_ga_activate,
3641 	.deactivate = irte_ga_deactivate,
3642 	.set_affinity = irte_ga_set_affinity,
3643 	.set_allocated = irte_ga_set_allocated,
3644 	.is_allocated = irte_ga_is_allocated,
3645 	.clear_allocated = irte_ga_clear_allocated,
3646 };
3647 
3648 static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
3649 			       unsigned int nr_irqs, void *arg)
3650 {
3651 	struct irq_alloc_info *info = arg;
3652 	struct irq_data *irq_data;
3653 	struct amd_ir_data *data = NULL;
3654 	struct amd_iommu *iommu;
3655 	struct irq_cfg *cfg;
3656 	struct iommu_dev_data *dev_data;
3657 	unsigned long max_irqs;
3658 	int i, ret, devid, seg, sbdf;
3659 	int index;
3660 
3661 	if (!info)
3662 		return -EINVAL;
3663 	if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_PCI_MSI)
3664 		return -EINVAL;
3665 
3666 	sbdf = get_devid(info);
3667 	if (sbdf < 0)
3668 		return -EINVAL;
3669 
3670 	seg = PCI_SBDF_TO_SEGID(sbdf);
3671 	devid = PCI_SBDF_TO_DEVID(sbdf);
3672 	iommu = __rlookup_amd_iommu(seg, devid);
3673 	if (!iommu)
3674 		return -EINVAL;
3675 
3676 	dev_data = search_dev_data(iommu, devid);
3677 	max_irqs = dev_data ? dev_data->max_irqs : MAX_IRQS_PER_TABLE_512;
3678 
3679 	ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
3680 	if (ret < 0)
3681 		return ret;
3682 
3683 	if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
3684 		struct irq_remap_table *table;
3685 
3686 		table = alloc_irq_table(iommu, devid, NULL, max_irqs);
3687 		if (table) {
3688 			if (!table->min_index) {
3689 				/*
3690 				 * Keep the first 32 indexes free for IOAPIC
3691 				 * interrupts.
3692 				 */
3693 				table->min_index = 32;
3694 				for (i = 0; i < 32; ++i)
3695 					iommu->irte_ops->set_allocated(table, i);
3696 			}
3697 			WARN_ON(table->min_index != 32);
3698 			index = info->ioapic.pin;
3699 		} else {
3700 			index = -ENOMEM;
3701 		}
3702 	} else if (info->type == X86_IRQ_ALLOC_TYPE_PCI_MSI ||
3703 		   info->type == X86_IRQ_ALLOC_TYPE_PCI_MSIX) {
3704 		bool align = (info->type == X86_IRQ_ALLOC_TYPE_PCI_MSI);
3705 
3706 		index = alloc_irq_index(iommu, devid, nr_irqs, align,
3707 					msi_desc_to_pci_dev(info->desc),
3708 					max_irqs);
3709 	} else {
3710 		index = alloc_irq_index(iommu, devid, nr_irqs, false, NULL,
3711 					max_irqs);
3712 	}
3713 
3714 	if (index < 0) {
3715 		pr_warn("Failed to allocate IRTE\n");
3716 		ret = index;
3717 		goto out_free_parent;
3718 	}
3719 
3720 	for (i = 0; i < nr_irqs; i++) {
3721 		irq_data = irq_domain_get_irq_data(domain, virq + i);
3722 		cfg = irq_data ? irqd_cfg(irq_data) : NULL;
3723 		if (!cfg) {
3724 			ret = -EINVAL;
3725 			goto out_free_data;
3726 		}
3727 
3728 		ret = -ENOMEM;
3729 		data = kzalloc(sizeof(*data), GFP_KERNEL);
3730 		if (!data)
3731 			goto out_free_data;
3732 
3733 		if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
3734 			data->entry = kzalloc(sizeof(union irte), GFP_KERNEL);
3735 		else
3736 			data->entry = kzalloc(sizeof(struct irte_ga),
3737 						     GFP_KERNEL);
3738 		if (!data->entry) {
3739 			kfree(data);
3740 			goto out_free_data;
3741 		}
3742 
3743 		data->iommu = iommu;
3744 		irq_data->hwirq = (devid << 16) + i;
3745 		irq_data->chip_data = data;
3746 		irq_data->chip = &amd_ir_chip;
3747 		irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
3748 	}
3749 
3750 	return 0;
3751 
3752 out_free_data:
3753 	for (i--; i >= 0; i--) {
3754 		irq_data = irq_domain_get_irq_data(domain, virq + i);
3755 		if (irq_data)
3756 			kfree(irq_data->chip_data);
3757 	}
3758 	for (i = 0; i < nr_irqs; i++)
3759 		free_irte(iommu, devid, index + i);
3760 out_free_parent:
3761 	irq_domain_free_irqs_common(domain, virq, nr_irqs);
3762 	return ret;
3763 }
3764 
3765 static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
3766 			       unsigned int nr_irqs)
3767 {
3768 	struct irq_2_irte *irte_info;
3769 	struct irq_data *irq_data;
3770 	struct amd_ir_data *data;
3771 	int i;
3772 
3773 	for (i = 0; i < nr_irqs; i++) {
3774 		irq_data = irq_domain_get_irq_data(domain, virq  + i);
3775 		if (irq_data && irq_data->chip_data) {
3776 			data = irq_data->chip_data;
3777 			irte_info = &data->irq_2_irte;
3778 			free_irte(data->iommu, irte_info->devid, irte_info->index);
3779 			kfree(data->entry);
3780 			kfree(data);
3781 		}
3782 	}
3783 	irq_domain_free_irqs_common(domain, virq, nr_irqs);
3784 }
3785 
3786 static void amd_ir_update_irte(struct irq_data *irqd, struct amd_iommu *iommu,
3787 			       struct amd_ir_data *ir_data,
3788 			       struct irq_2_irte *irte_info,
3789 			       struct irq_cfg *cfg);
3790 
3791 static int irq_remapping_activate(struct irq_domain *domain,
3792 				  struct irq_data *irq_data, bool reserve)
3793 {
3794 	struct amd_ir_data *data = irq_data->chip_data;
3795 	struct irq_2_irte *irte_info = &data->irq_2_irte;
3796 	struct amd_iommu *iommu = data->iommu;
3797 	struct irq_cfg *cfg = irqd_cfg(irq_data);
3798 
3799 	if (!iommu)
3800 		return 0;
3801 
3802 	iommu->irte_ops->activate(iommu, data->entry, irte_info->devid,
3803 				  irte_info->index);
3804 	amd_ir_update_irte(irq_data, iommu, data, irte_info, cfg);
3805 	return 0;
3806 }
3807 
3808 static void irq_remapping_deactivate(struct irq_domain *domain,
3809 				     struct irq_data *irq_data)
3810 {
3811 	struct amd_ir_data *data = irq_data->chip_data;
3812 	struct irq_2_irte *irte_info = &data->irq_2_irte;
3813 	struct amd_iommu *iommu = data->iommu;
3814 
3815 	if (iommu)
3816 		iommu->irte_ops->deactivate(iommu, data->entry, irte_info->devid,
3817 					    irte_info->index);
3818 }
3819 
3820 static int irq_remapping_select(struct irq_domain *d, struct irq_fwspec *fwspec,
3821 				enum irq_domain_bus_token bus_token)
3822 {
3823 	struct amd_iommu *iommu;
3824 	int devid = -1;
3825 
3826 	if (!amd_iommu_irq_remap)
3827 		return 0;
3828 
3829 	if (x86_fwspec_is_ioapic(fwspec))
3830 		devid = get_ioapic_devid(fwspec->param[0]);
3831 	else if (x86_fwspec_is_hpet(fwspec))
3832 		devid = get_hpet_devid(fwspec->param[0]);
3833 
3834 	if (devid < 0)
3835 		return 0;
3836 	iommu = __rlookup_amd_iommu((devid >> 16), (devid & 0xffff));
3837 
3838 	return iommu && iommu->ir_domain == d;
3839 }
3840 
3841 static const struct irq_domain_ops amd_ir_domain_ops = {
3842 	.select = irq_remapping_select,
3843 	.alloc = irq_remapping_alloc,
3844 	.free = irq_remapping_free,
3845 	.activate = irq_remapping_activate,
3846 	.deactivate = irq_remapping_deactivate,
3847 };
3848 
3849 static void __amd_iommu_update_ga(struct irte_ga *entry, int cpu,
3850 				  bool ga_log_intr)
3851 {
3852 	if (cpu >= 0) {
3853 		entry->lo.fields_vapic.destination =
3854 					APICID_TO_IRTE_DEST_LO(cpu);
3855 		entry->hi.fields.destination =
3856 					APICID_TO_IRTE_DEST_HI(cpu);
3857 		entry->lo.fields_vapic.is_run = true;
3858 		entry->lo.fields_vapic.ga_log_intr = false;
3859 	} else {
3860 		entry->lo.fields_vapic.is_run = false;
3861 		entry->lo.fields_vapic.ga_log_intr = ga_log_intr;
3862 	}
3863 }
3864 
3865 /*
3866  * Update the pCPU information for an IRTE that is configured to post IRQs to
3867  * a vCPU, without issuing an IOMMU invalidation for the IRTE.
3868  *
3869  * If the vCPU is associated with a pCPU (@cpu >= 0), configure the Destination
3870  * with the pCPU's APIC ID, set IsRun, and clear GALogIntr.  If the vCPU isn't
3871  * associated with a pCPU (@cpu < 0), clear IsRun and set/clear GALogIntr based
3872  * on input from the caller (e.g. KVM only requests GALogIntr when the vCPU is
3873  * blocking and requires a notification wake event).  I.e. treat vCPUs that are
3874  * associated with a pCPU as running.  This API is intended to be used when a
3875  * vCPU is scheduled in/out (or stops running for any reason), to do a fast
3876  * update of IsRun, GALogIntr, and (conditionally) Destination.
3877  *
3878  * Per the IOMMU spec, the Destination, IsRun, and GATag fields are not cached
3879  * and thus don't require an invalidation to ensure the IOMMU consumes fresh
3880  * information.
3881  */
3882 int amd_iommu_update_ga(void *data, int cpu, bool ga_log_intr)
3883 {
3884 	struct amd_ir_data *ir_data = (struct amd_ir_data *)data;
3885 	struct irte_ga *entry = (struct irte_ga *) ir_data->entry;
3886 
3887 	if (WARN_ON_ONCE(!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)))
3888 		return -EINVAL;
3889 
3890 	if (!entry || !entry->lo.fields_vapic.guest_mode)
3891 		return 0;
3892 
3893 	if (!ir_data->iommu)
3894 		return -ENODEV;
3895 
3896 	__amd_iommu_update_ga(entry, cpu, ga_log_intr);
3897 
3898 	return __modify_irte_ga(ir_data->iommu, ir_data->irq_2_irte.devid,
3899 				ir_data->irq_2_irte.index, entry);
3900 }
3901 EXPORT_SYMBOL(amd_iommu_update_ga);
3902 
3903 int amd_iommu_activate_guest_mode(void *data, int cpu, bool ga_log_intr)
3904 {
3905 	struct amd_ir_data *ir_data = (struct amd_ir_data *)data;
3906 	struct irte_ga *entry = (struct irte_ga *) ir_data->entry;
3907 	u64 valid;
3908 
3909 	if (WARN_ON_ONCE(!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)))
3910 		return -EINVAL;
3911 
3912 	if (!entry)
3913 		return 0;
3914 
3915 	valid = entry->lo.fields_vapic.valid;
3916 
3917 	entry->lo.val = 0;
3918 	entry->hi.val = 0;
3919 
3920 	entry->lo.fields_vapic.valid       = valid;
3921 	entry->lo.fields_vapic.guest_mode  = 1;
3922 	entry->hi.fields.ga_root_ptr       = ir_data->ga_root_ptr;
3923 	entry->hi.fields.vector            = ir_data->ga_vector;
3924 	entry->lo.fields_vapic.ga_tag      = ir_data->ga_tag;
3925 
3926 	__amd_iommu_update_ga(entry, cpu, ga_log_intr);
3927 
3928 	return modify_irte_ga(ir_data->iommu, ir_data->irq_2_irte.devid,
3929 			      ir_data->irq_2_irte.index, entry);
3930 }
3931 EXPORT_SYMBOL(amd_iommu_activate_guest_mode);
3932 
3933 int amd_iommu_deactivate_guest_mode(void *data)
3934 {
3935 	struct amd_ir_data *ir_data = (struct amd_ir_data *)data;
3936 	struct irte_ga *entry = (struct irte_ga *) ir_data->entry;
3937 	struct irq_cfg *cfg = ir_data->cfg;
3938 	u64 valid;
3939 
3940 	if (WARN_ON_ONCE(!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)))
3941 		return -EINVAL;
3942 
3943 	if (!entry || !entry->lo.fields_vapic.guest_mode)
3944 		return 0;
3945 
3946 	valid = entry->lo.fields_remap.valid;
3947 
3948 	entry->lo.val = 0;
3949 	entry->hi.val = 0;
3950 
3951 	entry->lo.fields_remap.valid       = valid;
3952 	entry->lo.fields_remap.dm          = apic->dest_mode_logical;
3953 	entry->lo.fields_remap.int_type    = APIC_DELIVERY_MODE_FIXED;
3954 	entry->hi.fields.vector            = cfg->vector;
3955 	entry->lo.fields_remap.destination =
3956 				APICID_TO_IRTE_DEST_LO(cfg->dest_apicid);
3957 	entry->hi.fields.destination =
3958 				APICID_TO_IRTE_DEST_HI(cfg->dest_apicid);
3959 
3960 	return modify_irte_ga(ir_data->iommu, ir_data->irq_2_irte.devid,
3961 			      ir_data->irq_2_irte.index, entry);
3962 }
3963 EXPORT_SYMBOL(amd_iommu_deactivate_guest_mode);
3964 
3965 static int amd_ir_set_vcpu_affinity(struct irq_data *data, void *info)
3966 {
3967 	int ret;
3968 	struct amd_iommu_pi_data *pi_data = info;
3969 	struct amd_ir_data *ir_data = data->chip_data;
3970 	struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
3971 	struct iommu_dev_data *dev_data;
3972 
3973 	if (WARN_ON_ONCE(!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)))
3974 		return -EINVAL;
3975 
3976 	if (ir_data->iommu == NULL)
3977 		return -EINVAL;
3978 
3979 	dev_data = search_dev_data(ir_data->iommu, irte_info->devid);
3980 
3981 	/* Note:
3982 	 * This device has never been set up for guest mode.
3983 	 * we should not modify the IRTE
3984 	 */
3985 	if (!dev_data || !dev_data->use_vapic)
3986 		return -EINVAL;
3987 
3988 	ir_data->cfg = irqd_cfg(data);
3989 
3990 	if (pi_data) {
3991 		pi_data->ir_data = ir_data;
3992 
3993 		ir_data->ga_root_ptr = (pi_data->vapic_addr >> 12);
3994 		ir_data->ga_vector = pi_data->vector;
3995 		ir_data->ga_tag = pi_data->ga_tag;
3996 		if (pi_data->is_guest_mode)
3997 			ret = amd_iommu_activate_guest_mode(ir_data, pi_data->cpu,
3998 							    pi_data->ga_log_intr);
3999 		else
4000 			ret = amd_iommu_deactivate_guest_mode(ir_data);
4001 	} else {
4002 		ret = amd_iommu_deactivate_guest_mode(ir_data);
4003 	}
4004 
4005 	return ret;
4006 }
4007 
4008 
4009 static void amd_ir_update_irte(struct irq_data *irqd, struct amd_iommu *iommu,
4010 			       struct amd_ir_data *ir_data,
4011 			       struct irq_2_irte *irte_info,
4012 			       struct irq_cfg *cfg)
4013 {
4014 
4015 	/*
4016 	 * Atomically updates the IRTE with the new destination, vector
4017 	 * and flushes the interrupt entry cache.
4018 	 */
4019 	iommu->irte_ops->set_affinity(iommu, ir_data->entry, irte_info->devid,
4020 				      irte_info->index, cfg->vector,
4021 				      cfg->dest_apicid);
4022 }
4023 
4024 static int amd_ir_set_affinity(struct irq_data *data,
4025 			       const struct cpumask *mask, bool force)
4026 {
4027 	struct amd_ir_data *ir_data = data->chip_data;
4028 	struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4029 	struct irq_cfg *cfg = irqd_cfg(data);
4030 	struct irq_data *parent = data->parent_data;
4031 	struct amd_iommu *iommu = ir_data->iommu;
4032 	int ret;
4033 
4034 	if (!iommu)
4035 		return -ENODEV;
4036 
4037 	ret = parent->chip->irq_set_affinity(parent, mask, force);
4038 	if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4039 		return ret;
4040 
4041 	amd_ir_update_irte(data, iommu, ir_data, irte_info, cfg);
4042 	/*
4043 	 * After this point, all the interrupts will start arriving
4044 	 * at the new destination. So, time to cleanup the previous
4045 	 * vector allocation.
4046 	 */
4047 	vector_schedule_cleanup(cfg);
4048 
4049 	return IRQ_SET_MASK_OK_DONE;
4050 }
4051 
4052 static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4053 {
4054 	struct amd_ir_data *ir_data = irq_data->chip_data;
4055 
4056 	*msg = ir_data->msi_entry;
4057 }
4058 
4059 static struct irq_chip amd_ir_chip = {
4060 	.name			= "AMD-IR",
4061 	.irq_ack		= apic_ack_irq,
4062 	.irq_set_affinity	= amd_ir_set_affinity,
4063 	.irq_set_vcpu_affinity	= amd_ir_set_vcpu_affinity,
4064 	.irq_compose_msi_msg	= ir_compose_msi_msg,
4065 };
4066 
4067 static const struct msi_parent_ops amdvi_msi_parent_ops = {
4068 	.supported_flags	= X86_VECTOR_MSI_FLAGS_SUPPORTED | MSI_FLAG_MULTI_PCI_MSI,
4069 	.bus_select_token	= DOMAIN_BUS_AMDVI,
4070 	.bus_select_mask	= MATCH_PCI_MSI,
4071 	.prefix			= "IR-",
4072 	.init_dev_msi_info	= msi_parent_init_dev_msi_info,
4073 };
4074 
4075 int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4076 {
4077 	struct irq_domain_info info = {
4078 		.fwnode		= irq_domain_alloc_named_id_fwnode("AMD-IR", iommu->index),
4079 		.ops		= &amd_ir_domain_ops,
4080 		.domain_flags	= IRQ_DOMAIN_FLAG_ISOLATED_MSI,
4081 		.host_data	= iommu,
4082 		.parent		= arch_get_ir_parent_domain(),
4083 	};
4084 
4085 	if (!info.fwnode)
4086 		return -ENOMEM;
4087 
4088 	iommu->ir_domain = msi_create_parent_irq_domain(&info, &amdvi_msi_parent_ops);
4089 	if (!iommu->ir_domain) {
4090 		irq_domain_free_fwnode(info.fwnode);
4091 		return -ENOMEM;
4092 	}
4093 	return 0;
4094 }
4095 #endif
4096 
4097 MODULE_IMPORT_NS("GENERIC_PT_IOMMU");
4098