xref: /linux/drivers/iommu/intel/dmar.c (revision 570f7e331f5febb30f1384817463c7e42b65ca7d)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2006, Intel Corporation.
4  *
5  * Copyright (C) 2006-2008 Intel Corporation
6  * Author: Ashok Raj <ashok.raj@intel.com>
7  * Author: Shaohua Li <shaohua.li@intel.com>
8  * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9  *
10  * This file implements early detection/parsing of Remapping Devices
11  * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI
12  * tables.
13  *
14  * These routines are used by both DMA-remapping and Interrupt-remapping
15  */
16 
17 #define pr_fmt(fmt)     "DMAR: " fmt
18 
19 #include <linux/pci.h>
20 #include <linux/dmar.h>
21 #include <linux/iova.h>
22 #include <linux/timer.h>
23 #include <linux/irq.h>
24 #include <linux/interrupt.h>
25 #include <linux/tboot.h>
26 #include <linux/dmi.h>
27 #include <linux/slab.h>
28 #include <linux/iommu.h>
29 #include <linux/numa.h>
30 #include <linux/limits.h>
31 #include <asm/irq_remapping.h>
32 
33 #include "iommu.h"
34 #include "../irq_remapping.h"
35 #include "../iommu-pages.h"
36 #include "perf.h"
37 #include "trace.h"
38 #include "perfmon.h"
39 
40 typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *);
41 struct dmar_res_callback {
42 	dmar_res_handler_t	cb[ACPI_DMAR_TYPE_RESERVED];
43 	void			*arg[ACPI_DMAR_TYPE_RESERVED];
44 	bool			ignore_unhandled;
45 	bool			print_entry;
46 };
47 
48 /*
49  * Assumptions:
50  * 1) The hotplug framework guarantees that DMAR unit will be hot-added
51  *    before IO devices managed by that unit.
52  * 2) The hotplug framework guarantees that DMAR unit will be hot-removed
53  *    after IO devices managed by that unit.
54  * 3) Hotplug events are rare.
55  *
56  * Locking rules for DMA and interrupt remapping related global data structures:
57  * 1) Use dmar_global_lock in process context
58  * 2) Use RCU in interrupt context
59  */
60 DECLARE_RWSEM(dmar_global_lock);
61 LIST_HEAD(dmar_drhd_units);
62 
63 struct acpi_table_header * __initdata dmar_tbl;
64 static int dmar_dev_scope_status = 1;
65 static DEFINE_IDA(dmar_seq_ids);
66 
67 static int alloc_iommu(struct dmar_drhd_unit *drhd);
68 static void free_iommu(struct intel_iommu *iommu);
69 
70 static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
71 {
72 	/*
73 	 * add INCLUDE_ALL at the tail, so scan the list will find it at
74 	 * the very end.
75 	 */
76 	if (drhd->include_all)
77 		list_add_tail_rcu(&drhd->list, &dmar_drhd_units);
78 	else
79 		list_add_rcu(&drhd->list, &dmar_drhd_units);
80 }
81 
82 void *dmar_alloc_dev_scope(void *start, void *end, int *cnt)
83 {
84 	struct acpi_dmar_device_scope *scope;
85 
86 	*cnt = 0;
87 	while (start < end) {
88 		scope = start;
89 		if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE ||
90 		    scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
91 		    scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)
92 			(*cnt)++;
93 		else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC &&
94 			scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) {
95 			pr_warn("Unsupported device scope\n");
96 		}
97 		start += scope->length;
98 	}
99 	if (*cnt == 0)
100 		return NULL;
101 
102 	return kzalloc_objs(struct dmar_dev_scope, *cnt);
103 }
104 
105 void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt)
106 {
107 	int i;
108 	struct device *tmp_dev;
109 
110 	if (*devices && *cnt) {
111 		for_each_active_dev_scope(*devices, *cnt, i, tmp_dev)
112 			put_device(tmp_dev);
113 		kfree(*devices);
114 	}
115 
116 	*devices = NULL;
117 	*cnt = 0;
118 }
119 
120 /* Optimize out kzalloc()/kfree() for normal cases */
121 static char dmar_pci_notify_info_buf[64];
122 
123 static struct dmar_pci_notify_info *
124 dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event)
125 {
126 	int level = 0;
127 	size_t size;
128 	struct pci_dev *tmp;
129 	struct dmar_pci_notify_info *info;
130 
131 	/*
132 	 * Ignore devices that have a domain number higher than what can
133 	 * be looked up in DMAR, e.g. VMD subdevices with domain 0x10000
134 	 */
135 	if (pci_domain_nr(dev->bus) > U16_MAX)
136 		return NULL;
137 
138 	/* Only generate path[] for device addition event */
139 	if (event == BUS_NOTIFY_ADD_DEVICE)
140 		for (tmp = dev; tmp; tmp = tmp->bus->self)
141 			level++;
142 
143 	size = struct_size(info, path, level);
144 	if (size <= sizeof(dmar_pci_notify_info_buf)) {
145 		info = (struct dmar_pci_notify_info *)dmar_pci_notify_info_buf;
146 	} else {
147 		info = kzalloc(size, GFP_KERNEL);
148 		if (!info) {
149 			if (dmar_dev_scope_status == 0)
150 				dmar_dev_scope_status = -ENOMEM;
151 			return NULL;
152 		}
153 	}
154 
155 	info->event = event;
156 	info->dev = dev;
157 	info->seg = pci_domain_nr(dev->bus);
158 	info->level = level;
159 	if (event == BUS_NOTIFY_ADD_DEVICE) {
160 		for (tmp = dev; tmp; tmp = tmp->bus->self) {
161 			level--;
162 			info->path[level].bus = tmp->bus->number;
163 			info->path[level].device = PCI_SLOT(tmp->devfn);
164 			info->path[level].function = PCI_FUNC(tmp->devfn);
165 			if (pci_is_root_bus(tmp->bus))
166 				info->bus = tmp->bus->number;
167 		}
168 	}
169 
170 	return info;
171 }
172 
173 static inline void dmar_free_pci_notify_info(struct dmar_pci_notify_info *info)
174 {
175 	if ((void *)info != dmar_pci_notify_info_buf)
176 		kfree(info);
177 }
178 
179 static bool dmar_match_pci_path(struct dmar_pci_notify_info *info, int bus,
180 				struct acpi_dmar_pci_path *path, int count)
181 {
182 	int i;
183 
184 	if (info->bus != bus)
185 		goto fallback;
186 	if (info->level != count)
187 		goto fallback;
188 
189 	for (i = 0; i < count; i++) {
190 		if (path[i].device != info->path[i].device ||
191 		    path[i].function != info->path[i].function)
192 			goto fallback;
193 	}
194 
195 	return true;
196 
197 fallback:
198 
199 	if (count != 1)
200 		return false;
201 
202 	i = info->level - 1;
203 	if (bus              == info->path[i].bus &&
204 	    path[0].device   == info->path[i].device &&
205 	    path[0].function == info->path[i].function) {
206 		pr_info(FW_BUG "RMRR entry for device %02x:%02x.%x is broken - applying workaround\n",
207 			bus, path[0].device, path[0].function);
208 		return true;
209 	}
210 
211 	return false;
212 }
213 
214 /* Return: > 0 if match found, 0 if no match found, < 0 if error happens */
215 int dmar_insert_dev_scope(struct dmar_pci_notify_info *info,
216 			  void *start, void*end, u16 segment,
217 			  struct dmar_dev_scope *devices,
218 			  int devices_cnt)
219 {
220 	int i, level;
221 	struct device *tmp, *dev = &info->dev->dev;
222 	struct acpi_dmar_device_scope *scope;
223 	struct acpi_dmar_pci_path *path;
224 
225 	if (segment != info->seg)
226 		return 0;
227 
228 	for (; start < end; start += scope->length) {
229 		scope = start;
230 		if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
231 		    scope->entry_type != ACPI_DMAR_SCOPE_TYPE_BRIDGE)
232 			continue;
233 
234 		path = (struct acpi_dmar_pci_path *)(scope + 1);
235 		level = (scope->length - sizeof(*scope)) / sizeof(*path);
236 		if (!dmar_match_pci_path(info, scope->bus, path, level))
237 			continue;
238 
239 		/*
240 		 * We expect devices with endpoint scope to have normal PCI
241 		 * headers, and devices with bridge scope to have bridge PCI
242 		 * headers.  However PCI NTB devices may be listed in the
243 		 * DMAR table with bridge scope, even though they have a
244 		 * normal PCI header.  NTB devices are identified by class
245 		 * "BRIDGE_OTHER" (0680h) - we don't declare a socpe mismatch
246 		 * for this special case.
247 		 */
248 		if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
249 		     info->dev->hdr_type != PCI_HEADER_TYPE_NORMAL) ||
250 		    (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE &&
251 		     (info->dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
252 		      info->dev->class >> 16 != PCI_BASE_CLASS_BRIDGE))) {
253 			pr_warn("Device scope type does not match for %s\n",
254 				pci_name(info->dev));
255 			return -EINVAL;
256 		}
257 
258 		for_each_dev_scope(devices, devices_cnt, i, tmp)
259 			if (tmp == NULL) {
260 				devices[i].bus = info->dev->bus->number;
261 				devices[i].devfn = info->dev->devfn;
262 				rcu_assign_pointer(devices[i].dev,
263 						   get_device(dev));
264 				return 1;
265 			}
266 		if (WARN_ON(i >= devices_cnt))
267 			return -EINVAL;
268 	}
269 
270 	return 0;
271 }
272 
273 int dmar_remove_dev_scope(struct dmar_pci_notify_info *info, u16 segment,
274 			  struct dmar_dev_scope *devices, int count)
275 {
276 	int index;
277 	struct device *tmp;
278 
279 	if (info->seg != segment)
280 		return 0;
281 
282 	for_each_active_dev_scope(devices, count, index, tmp)
283 		if (tmp == &info->dev->dev) {
284 			RCU_INIT_POINTER(devices[index].dev, NULL);
285 			synchronize_rcu();
286 			put_device(tmp);
287 			return 1;
288 		}
289 
290 	return 0;
291 }
292 
293 static int dmar_pci_bus_add_dev(struct dmar_pci_notify_info *info)
294 {
295 	int ret = 0;
296 	struct dmar_drhd_unit *dmaru;
297 	struct acpi_dmar_hardware_unit *drhd;
298 
299 	for_each_drhd_unit(dmaru) {
300 		if (dmaru->include_all)
301 			continue;
302 
303 		drhd = container_of(dmaru->hdr,
304 				    struct acpi_dmar_hardware_unit, header);
305 		ret = dmar_insert_dev_scope(info, (void *)(drhd + 1),
306 				((void *)drhd) + drhd->header.length,
307 				dmaru->segment,
308 				dmaru->devices, dmaru->devices_cnt);
309 		if (ret)
310 			break;
311 	}
312 	if (ret >= 0)
313 		ret = dmar_iommu_notify_scope_dev(info);
314 	if (ret < 0 && dmar_dev_scope_status == 0)
315 		dmar_dev_scope_status = ret;
316 
317 	if (ret >= 0)
318 		intel_irq_remap_add_device(info);
319 
320 	return ret;
321 }
322 
323 static void  dmar_pci_bus_del_dev(struct dmar_pci_notify_info *info)
324 {
325 	struct dmar_drhd_unit *dmaru;
326 
327 	for_each_drhd_unit(dmaru)
328 		if (dmar_remove_dev_scope(info, dmaru->segment,
329 			dmaru->devices, dmaru->devices_cnt))
330 			break;
331 	dmar_iommu_notify_scope_dev(info);
332 }
333 
334 static inline void vf_inherit_msi_domain(struct pci_dev *pdev)
335 {
336 	struct pci_dev *physfn = pci_physfn(pdev);
337 
338 	dev_set_msi_domain(&pdev->dev, dev_get_msi_domain(&physfn->dev));
339 }
340 
341 static int dmar_pci_bus_notifier(struct notifier_block *nb,
342 				 unsigned long action, void *data)
343 {
344 	struct pci_dev *pdev = to_pci_dev(data);
345 	struct dmar_pci_notify_info *info;
346 
347 	/* Only care about add/remove events for physical functions.
348 	 * For VFs we actually do the lookup based on the corresponding
349 	 * PF in device_to_iommu() anyway. */
350 	if (pdev->is_virtfn) {
351 		/*
352 		 * Ensure that the VF device inherits the irq domain of the
353 		 * PF device. Ideally the device would inherit the domain
354 		 * from the bus, but DMAR can have multiple units per bus
355 		 * which makes this impossible. The VF 'bus' could inherit
356 		 * from the PF device, but that's yet another x86'sism to
357 		 * inflict on everybody else.
358 		 */
359 		if (action == BUS_NOTIFY_ADD_DEVICE)
360 			vf_inherit_msi_domain(pdev);
361 		return NOTIFY_DONE;
362 	}
363 
364 	if (action != BUS_NOTIFY_ADD_DEVICE &&
365 	    action != BUS_NOTIFY_REMOVED_DEVICE)
366 		return NOTIFY_DONE;
367 
368 	info = dmar_alloc_pci_notify_info(pdev, action);
369 	if (!info)
370 		return NOTIFY_DONE;
371 
372 	down_write(&dmar_global_lock);
373 	if (action == BUS_NOTIFY_ADD_DEVICE)
374 		dmar_pci_bus_add_dev(info);
375 	else if (action == BUS_NOTIFY_REMOVED_DEVICE)
376 		dmar_pci_bus_del_dev(info);
377 	up_write(&dmar_global_lock);
378 
379 	dmar_free_pci_notify_info(info);
380 
381 	return NOTIFY_OK;
382 }
383 
384 static struct notifier_block dmar_pci_bus_nb = {
385 	.notifier_call = dmar_pci_bus_notifier,
386 	.priority = 1,
387 };
388 
389 static struct dmar_drhd_unit *
390 dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd)
391 {
392 	struct dmar_drhd_unit *dmaru;
393 
394 	list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list,
395 				dmar_rcu_check())
396 		if (dmaru->segment == drhd->segment &&
397 		    dmaru->reg_base_addr == drhd->address)
398 			return dmaru;
399 
400 	return NULL;
401 }
402 
403 /*
404  * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition
405  * structure which uniquely represent one DMA remapping hardware unit
406  * present in the platform
407  */
408 static int dmar_parse_one_drhd(struct acpi_dmar_header *header, void *arg)
409 {
410 	struct acpi_dmar_hardware_unit *drhd;
411 	struct dmar_drhd_unit *dmaru;
412 	int ret;
413 
414 	drhd = (struct acpi_dmar_hardware_unit *)header;
415 	dmaru = dmar_find_dmaru(drhd);
416 	if (dmaru)
417 		goto out;
418 
419 	dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL);
420 	if (!dmaru)
421 		return -ENOMEM;
422 
423 	/*
424 	 * If header is allocated from slab by ACPI _DSM method, we need to
425 	 * copy the content because the memory buffer will be freed on return.
426 	 */
427 	dmaru->hdr = (void *)(dmaru + 1);
428 	memcpy(dmaru->hdr, header, header->length);
429 	dmaru->reg_base_addr = drhd->address;
430 	dmaru->segment = drhd->segment;
431 	/* The size of the register set is 2 ^ N 4 KB pages. */
432 	dmaru->reg_size = 1UL << (drhd->size + 12);
433 	dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */
434 	dmaru->devices = dmar_alloc_dev_scope((void *)(drhd + 1),
435 					      ((void *)drhd) + drhd->header.length,
436 					      &dmaru->devices_cnt);
437 	if (dmaru->devices_cnt && dmaru->devices == NULL) {
438 		kfree(dmaru);
439 		return -ENOMEM;
440 	}
441 
442 	ret = alloc_iommu(dmaru);
443 	if (ret) {
444 		dmar_free_dev_scope(&dmaru->devices,
445 				    &dmaru->devices_cnt);
446 		kfree(dmaru);
447 		return ret;
448 	}
449 	dmar_register_drhd_unit(dmaru);
450 
451 out:
452 	if (arg)
453 		(*(int *)arg)++;
454 
455 	return 0;
456 }
457 
458 static void dmar_free_drhd(struct dmar_drhd_unit *dmaru)
459 {
460 	if (dmaru->devices && dmaru->devices_cnt)
461 		dmar_free_dev_scope(&dmaru->devices, &dmaru->devices_cnt);
462 	if (dmaru->iommu)
463 		free_iommu(dmaru->iommu);
464 	kfree(dmaru);
465 }
466 
467 static int __init dmar_parse_one_andd(struct acpi_dmar_header *header,
468 				      void *arg)
469 {
470 	struct acpi_dmar_andd *andd = (void *)header;
471 
472 	/* Check for NUL termination within the designated length */
473 	if (strnlen(andd->device_name, header->length - 8) == header->length - 8) {
474 		pr_warn(FW_BUG
475 			   "Your BIOS is broken; ANDD object name is not NUL-terminated\n"
476 			   "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
477 			   dmi_get_system_info(DMI_BIOS_VENDOR),
478 			   dmi_get_system_info(DMI_BIOS_VERSION),
479 			   dmi_get_system_info(DMI_PRODUCT_VERSION));
480 		add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
481 		return -EINVAL;
482 	}
483 	pr_info("ANDD device: %x name: %s\n", andd->device_number,
484 		andd->device_name);
485 
486 	return 0;
487 }
488 
489 #ifdef CONFIG_ACPI_NUMA
490 static int dmar_parse_one_rhsa(struct acpi_dmar_header *header, void *arg)
491 {
492 	struct acpi_dmar_rhsa *rhsa;
493 	struct dmar_drhd_unit *drhd;
494 
495 	rhsa = (struct acpi_dmar_rhsa *)header;
496 	for_each_drhd_unit(drhd) {
497 		if (drhd->reg_base_addr == rhsa->base_address) {
498 			int node = pxm_to_node(rhsa->proximity_domain);
499 
500 			if (node != NUMA_NO_NODE && !node_online(node))
501 				node = NUMA_NO_NODE;
502 			drhd->iommu->node = node;
503 			return 0;
504 		}
505 	}
506 	pr_warn(FW_BUG
507 		"Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n"
508 		"BIOS vendor: %s; Ver: %s; Product Version: %s\n",
509 		rhsa->base_address,
510 		dmi_get_system_info(DMI_BIOS_VENDOR),
511 		dmi_get_system_info(DMI_BIOS_VERSION),
512 		dmi_get_system_info(DMI_PRODUCT_VERSION));
513 	add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
514 
515 	return 0;
516 }
517 #else
518 #define	dmar_parse_one_rhsa		dmar_res_noop
519 #endif
520 
521 static void
522 dmar_table_print_dmar_entry(struct acpi_dmar_header *header)
523 {
524 	struct acpi_dmar_hardware_unit *drhd;
525 	struct acpi_dmar_reserved_memory *rmrr;
526 	struct acpi_dmar_atsr *atsr;
527 	struct acpi_dmar_rhsa *rhsa;
528 	struct acpi_dmar_satc *satc;
529 
530 	switch (header->type) {
531 	case ACPI_DMAR_TYPE_HARDWARE_UNIT:
532 		drhd = container_of(header, struct acpi_dmar_hardware_unit,
533 				    header);
534 		pr_info("DRHD base: %#016Lx flags: %#x\n",
535 			(unsigned long long)drhd->address, drhd->flags);
536 		break;
537 	case ACPI_DMAR_TYPE_RESERVED_MEMORY:
538 		rmrr = container_of(header, struct acpi_dmar_reserved_memory,
539 				    header);
540 		pr_info("RMRR base: %#016Lx end: %#016Lx\n",
541 			(unsigned long long)rmrr->base_address,
542 			(unsigned long long)rmrr->end_address);
543 		break;
544 	case ACPI_DMAR_TYPE_ROOT_ATS:
545 		atsr = container_of(header, struct acpi_dmar_atsr, header);
546 		pr_info("ATSR flags: %#x\n", atsr->flags);
547 		break;
548 	case ACPI_DMAR_TYPE_HARDWARE_AFFINITY:
549 		rhsa = container_of(header, struct acpi_dmar_rhsa, header);
550 		pr_info("RHSA base: %#016Lx proximity domain: %#x\n",
551 		       (unsigned long long)rhsa->base_address,
552 		       rhsa->proximity_domain);
553 		break;
554 	case ACPI_DMAR_TYPE_NAMESPACE:
555 		/* We don't print this here because we need to sanity-check
556 		   it first. So print it in dmar_parse_one_andd() instead. */
557 		break;
558 	case ACPI_DMAR_TYPE_SATC:
559 		satc = container_of(header, struct acpi_dmar_satc, header);
560 		pr_info("SATC flags: 0x%x\n", satc->flags);
561 		break;
562 	}
563 }
564 
565 /**
566  * dmar_table_detect - checks to see if the platform supports DMAR devices
567  */
568 static int __init dmar_table_detect(void)
569 {
570 	acpi_status status = AE_OK;
571 
572 	/* if we could find DMAR table, then there are DMAR devices */
573 	status = acpi_get_table(ACPI_SIG_DMAR, 0, &dmar_tbl);
574 
575 	if (ACPI_SUCCESS(status) && !dmar_tbl) {
576 		pr_warn("Unable to map DMAR\n");
577 		status = AE_NOT_FOUND;
578 	}
579 
580 	return ACPI_SUCCESS(status) ? 0 : -ENOENT;
581 }
582 
583 static int dmar_walk_remapping_entries(struct acpi_dmar_header *start,
584 				       size_t len, struct dmar_res_callback *cb)
585 {
586 	struct acpi_dmar_header *iter, *next;
587 	struct acpi_dmar_header *end = ((void *)start) + len;
588 
589 	for (iter = start; iter < end; iter = next) {
590 		next = (void *)iter + iter->length;
591 		if (iter->length == 0) {
592 			/* Avoid looping forever on bad ACPI tables */
593 			pr_debug(FW_BUG "Invalid 0-length structure\n");
594 			break;
595 		} else if (next > end) {
596 			/* Avoid passing table end */
597 			pr_warn(FW_BUG "Record passes table end\n");
598 			return -EINVAL;
599 		}
600 
601 		if (cb->print_entry)
602 			dmar_table_print_dmar_entry(iter);
603 
604 		if (iter->type >= ACPI_DMAR_TYPE_RESERVED) {
605 			/* continue for forward compatibility */
606 			pr_debug("Unknown DMAR structure type %d\n",
607 				 iter->type);
608 		} else if (cb->cb[iter->type]) {
609 			int ret;
610 
611 			ret = cb->cb[iter->type](iter, cb->arg[iter->type]);
612 			if (ret)
613 				return ret;
614 		} else if (!cb->ignore_unhandled) {
615 			pr_warn("No handler for DMAR structure type %d\n",
616 				iter->type);
617 			return -EINVAL;
618 		}
619 	}
620 
621 	return 0;
622 }
623 
624 static inline int dmar_walk_dmar_table(struct acpi_table_dmar *dmar,
625 				       struct dmar_res_callback *cb)
626 {
627 	return dmar_walk_remapping_entries((void *)(dmar + 1),
628 			dmar->header.length - sizeof(*dmar), cb);
629 }
630 
631 /**
632  * parse_dmar_table - parses the DMA reporting table
633  */
634 static int __init
635 parse_dmar_table(void)
636 {
637 	struct acpi_table_dmar *dmar;
638 	int drhd_count = 0;
639 	int ret;
640 	struct dmar_res_callback cb = {
641 		.print_entry = true,
642 		.ignore_unhandled = true,
643 		.arg[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &drhd_count,
644 		.cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_parse_one_drhd,
645 		.cb[ACPI_DMAR_TYPE_RESERVED_MEMORY] = &dmar_parse_one_rmrr,
646 		.cb[ACPI_DMAR_TYPE_ROOT_ATS] = &dmar_parse_one_atsr,
647 		.cb[ACPI_DMAR_TYPE_HARDWARE_AFFINITY] = &dmar_parse_one_rhsa,
648 		.cb[ACPI_DMAR_TYPE_NAMESPACE] = &dmar_parse_one_andd,
649 		.cb[ACPI_DMAR_TYPE_SATC] = &dmar_parse_one_satc,
650 	};
651 
652 	/*
653 	 * Do it again, earlier dmar_tbl mapping could be mapped with
654 	 * fixed map.
655 	 */
656 	dmar_table_detect();
657 
658 	/*
659 	 * ACPI tables may not be DMA protected by tboot, so use DMAR copy
660 	 * SINIT saved in SinitMleData in TXT heap (which is DMA protected)
661 	 */
662 	dmar_tbl = tboot_get_dmar_table(dmar_tbl);
663 
664 	dmar = (struct acpi_table_dmar *)dmar_tbl;
665 	if (!dmar)
666 		return -ENODEV;
667 
668 	if (dmar->width < PAGE_SHIFT - 1) {
669 		pr_warn("Invalid DMAR haw\n");
670 		return -EINVAL;
671 	}
672 
673 	pr_info("Host address width %d\n", dmar->width + 1);
674 	ret = dmar_walk_dmar_table(dmar, &cb);
675 	if (ret == 0 && drhd_count == 0)
676 		pr_warn(FW_BUG "No DRHD structure found in DMAR table\n");
677 
678 	return ret;
679 }
680 
681 static int dmar_pci_device_match(struct dmar_dev_scope devices[],
682 				 int cnt, struct pci_dev *dev)
683 {
684 	int index;
685 	struct device *tmp;
686 
687 	while (dev) {
688 		for_each_active_dev_scope(devices, cnt, index, tmp)
689 			if (dev_is_pci(tmp) && dev == to_pci_dev(tmp))
690 				return 1;
691 
692 		/* Check our parent */
693 		dev = dev->bus->self;
694 	}
695 
696 	return 0;
697 }
698 
699 struct dmar_drhd_unit *
700 dmar_find_matched_drhd_unit(struct pci_dev *dev)
701 {
702 	struct dmar_drhd_unit *dmaru;
703 	struct acpi_dmar_hardware_unit *drhd;
704 
705 	dev = pci_physfn(dev);
706 
707 	rcu_read_lock();
708 	for_each_drhd_unit(dmaru) {
709 		drhd = container_of(dmaru->hdr,
710 				    struct acpi_dmar_hardware_unit,
711 				    header);
712 
713 		if (dmaru->include_all &&
714 		    drhd->segment == pci_domain_nr(dev->bus))
715 			goto out;
716 
717 		if (dmar_pci_device_match(dmaru->devices,
718 					  dmaru->devices_cnt, dev))
719 			goto out;
720 	}
721 	dmaru = NULL;
722 out:
723 	rcu_read_unlock();
724 
725 	return dmaru;
726 }
727 
728 static void __init dmar_acpi_insert_dev_scope(u8 device_number,
729 					      struct acpi_device *adev)
730 {
731 	struct dmar_drhd_unit *dmaru;
732 	struct acpi_dmar_hardware_unit *drhd;
733 	struct acpi_dmar_device_scope *scope;
734 	struct device *tmp;
735 	int i;
736 	struct acpi_dmar_pci_path *path;
737 
738 	for_each_drhd_unit(dmaru) {
739 		drhd = container_of(dmaru->hdr,
740 				    struct acpi_dmar_hardware_unit,
741 				    header);
742 
743 		for (scope = (void *)(drhd + 1);
744 		     (unsigned long)scope < ((unsigned long)drhd) + drhd->header.length;
745 		     scope = ((void *)scope) + scope->length) {
746 			if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE)
747 				continue;
748 			if (scope->enumeration_id != device_number)
749 				continue;
750 
751 			path = (void *)(scope + 1);
752 			pr_info("ACPI device \"%s\" under DMAR at %llx as %02x:%02x.%d\n",
753 				dev_name(&adev->dev), dmaru->reg_base_addr,
754 				scope->bus, path->device, path->function);
755 			for_each_dev_scope(dmaru->devices, dmaru->devices_cnt, i, tmp)
756 				if (tmp == NULL) {
757 					dmaru->devices[i].bus = scope->bus;
758 					dmaru->devices[i].devfn = PCI_DEVFN(path->device,
759 									    path->function);
760 					rcu_assign_pointer(dmaru->devices[i].dev,
761 							   get_device(&adev->dev));
762 					return;
763 				}
764 			BUG_ON(i >= dmaru->devices_cnt);
765 		}
766 	}
767 	pr_warn("No IOMMU scope found for ANDD enumeration ID %d (%s)\n",
768 		device_number, dev_name(&adev->dev));
769 }
770 
771 static int __init dmar_acpi_dev_scope_init(void)
772 {
773 	struct acpi_dmar_andd *andd;
774 
775 	if (dmar_tbl == NULL)
776 		return -ENODEV;
777 
778 	for (andd = (void *)dmar_tbl + sizeof(struct acpi_table_dmar);
779 	     ((unsigned long)andd) < ((unsigned long)dmar_tbl) + dmar_tbl->length;
780 	     andd = ((void *)andd) + andd->header.length) {
781 		if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) {
782 			acpi_handle h;
783 			struct acpi_device *adev;
784 
785 			if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT,
786 							  andd->device_name,
787 							  &h))) {
788 				pr_err("Failed to find handle for ACPI object %s\n",
789 				       andd->device_name);
790 				continue;
791 			}
792 			adev = acpi_fetch_acpi_dev(h);
793 			if (!adev) {
794 				pr_err("Failed to get device for ACPI object %s\n",
795 				       andd->device_name);
796 				continue;
797 			}
798 			dmar_acpi_insert_dev_scope(andd->device_number, adev);
799 		}
800 	}
801 	return 0;
802 }
803 
804 int __init dmar_dev_scope_init(void)
805 {
806 	struct pci_dev *dev = NULL;
807 	struct dmar_pci_notify_info *info;
808 
809 	if (dmar_dev_scope_status != 1)
810 		return dmar_dev_scope_status;
811 
812 	if (list_empty(&dmar_drhd_units)) {
813 		dmar_dev_scope_status = -ENODEV;
814 	} else {
815 		dmar_dev_scope_status = 0;
816 
817 		dmar_acpi_dev_scope_init();
818 
819 		for_each_pci_dev(dev) {
820 			if (dev->is_virtfn)
821 				continue;
822 
823 			info = dmar_alloc_pci_notify_info(dev,
824 					BUS_NOTIFY_ADD_DEVICE);
825 			if (!info) {
826 				pci_dev_put(dev);
827 				return dmar_dev_scope_status;
828 			} else {
829 				dmar_pci_bus_add_dev(info);
830 				dmar_free_pci_notify_info(info);
831 			}
832 		}
833 	}
834 
835 	return dmar_dev_scope_status;
836 }
837 
838 void __init dmar_register_bus_notifier(void)
839 {
840 	bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb);
841 }
842 
843 
844 int __init dmar_table_init(void)
845 {
846 	static int dmar_table_initialized;
847 	int ret;
848 
849 	if (dmar_table_initialized == 0) {
850 		ret = parse_dmar_table();
851 		if (ret < 0) {
852 			if (ret != -ENODEV)
853 				pr_info("Parse DMAR table failure.\n");
854 		} else  if (list_empty(&dmar_drhd_units)) {
855 			pr_info("No DMAR devices found\n");
856 			ret = -ENODEV;
857 		}
858 
859 		if (ret < 0)
860 			dmar_table_initialized = ret;
861 		else
862 			dmar_table_initialized = 1;
863 	}
864 
865 	return dmar_table_initialized < 0 ? dmar_table_initialized : 0;
866 }
867 
868 static void warn_invalid_dmar(u64 addr, const char *message)
869 {
870 	pr_warn_once(FW_BUG
871 		"Your BIOS is broken; DMAR reported at address %llx%s!\n"
872 		"BIOS vendor: %s; Ver: %s; Product Version: %s\n",
873 		addr, message,
874 		dmi_get_system_info(DMI_BIOS_VENDOR),
875 		dmi_get_system_info(DMI_BIOS_VERSION),
876 		dmi_get_system_info(DMI_PRODUCT_VERSION));
877 	add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
878 }
879 
880 static int __ref
881 dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg)
882 {
883 	struct acpi_dmar_hardware_unit *drhd;
884 	void __iomem *addr;
885 	u64 cap, ecap;
886 
887 	drhd = (void *)entry;
888 	if (!drhd->address) {
889 		warn_invalid_dmar(0, "");
890 		return -EINVAL;
891 	}
892 
893 	if (arg)
894 		addr = ioremap(drhd->address, VTD_PAGE_SIZE);
895 	else
896 		addr = early_ioremap(drhd->address, VTD_PAGE_SIZE);
897 	if (!addr) {
898 		pr_warn("Can't validate DRHD address: %llx\n", drhd->address);
899 		return -EINVAL;
900 	}
901 
902 	cap = readq(addr + DMAR_CAP_REG);
903 	ecap = readq(addr + DMAR_ECAP_REG);
904 
905 	if (arg)
906 		iounmap(addr);
907 	else
908 		early_iounmap(addr, VTD_PAGE_SIZE);
909 
910 	if (cap == (uint64_t)-1 && ecap == (uint64_t)-1) {
911 		warn_invalid_dmar(drhd->address, " returns all ones");
912 		return -EINVAL;
913 	}
914 
915 	return 0;
916 }
917 
918 /*
919  * Centralized helper for deciding the force_on policy
920  *
921  * dmar off policies (for DMA Remapping) are defined from stronger
922  * (more negative values) to weaker (less negative values).
923  *
924  * When a force_on type is passed in, it is associated to a reference
925  * level for comparison. force_on is permitted when dmar is in a
926  * off policy less negative than the reference level (if the policy is
927  * on then the check is always true).
928  *
929  * For supported force_on types:
930  *
931  * - DMAR_FORCEON_TBOOT: tboot strictly requires DMA remapping for secure
932  *   boot hence supersedes any user opts ("iommu=off" or "intel_iommu=off")
933  *   and weaker off policies. But if firmware forces DMA remapping off (by
934  *   setting DMAR_REMAP_OPT_OUT in the DMAR table), no force_on is allowed.
935  *   Firmware settings must be changed to unblock tboot.
936  *
937  * - DMAR_FORCEON_PLATFORM: external-facing devices requires DMA
938  *   remapping to prevent malicious downstream external devices from
939  *   composing DMA attacks. force_on is permitted only if dmar policy is
940  *   off by build configurations (CONFIG_INTEL_IOMMU_DEFAULT_ON=off).
941  *
942  * In a nutshell, "trusted boot environment" is considered stronger than
943  * "user choices", which in turn is stronger than "platform opt-in hint".
944  * But they are all meaningless when it's forced off by "firmware".
945  */
946 bool dmar_can_force_on(enum dmar_force_on force_on)
947 {
948 	int level;
949 
950 	switch (force_on) {
951 	case DMAR_FORCEON_TBOOT:
952 		level = DMAR_USER_OFF;
953 		break;
954 	case DMAR_FORCEON_PLATFORM:
955 		level = DMAR_DEFAULT_OFF;
956 		break;
957 	default:
958 		level = INT_MAX;
959 		pr_warn("Unsupported force_on type (%d)\n", force_on);
960 		break;
961 	}
962 
963 	return dmar_policy >= level;
964 }
965 
966 static bool dmar_required(void)
967 {
968 	if (dmar_policy_on())
969 		return true;
970 
971 	if (!intel_iommu_tboot_noforce && tboot_enabled())
972 		return dmar_can_force_on(DMAR_FORCEON_TBOOT);
973 
974 	if (dmar_platform_optin())
975 		return dmar_can_force_on(DMAR_FORCEON_PLATFORM);
976 
977 	return false;
978 }
979 
980 void __init detect_intel_iommu(void)
981 {
982 	struct dmar_res_callback validate_drhd_cb = {
983 		.cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd,
984 		.ignore_unhandled = true,
985 	};
986 	struct acpi_table_dmar *dmar;
987 	int ret;
988 
989 	down_write(&dmar_global_lock);
990 	if (no_iommu)
991 		dmar_policy = DMAR_USER_OFF;
992 
993 	ret = dmar_table_detect();
994 	if (!ret) {
995 		dmar = (struct acpi_table_dmar *)dmar_tbl;
996 		ret = dmar_walk_dmar_table(dmar, &validate_drhd_cb);
997 	}
998 
999 	if (ret)
1000 		goto out;
1001 
1002 	if (dmar->flags & DMAR_REMAP_OPT_OUT) {
1003 		dmar_policy = DMAR_FW_OFF;
1004 		pr_info("Firmware forces DMA remapping off\n");
1005 		pr_info("Any user opt or tboot/platform force_on will be ignored\n");
1006 	}
1007 
1008 	if (!iommu_detected && dmar_required()) {
1009 		iommu_detected = 1;
1010 		/* Make sure ACS will be enabled */
1011 		pci_request_acs();
1012 	}
1013 
1014 	x86_init.iommu.iommu_init = intel_iommu_init;
1015 	x86_platform.iommu_shutdown = intel_iommu_shutdown;
1016 
1017 out:
1018 	if (dmar_tbl) {
1019 		acpi_put_table(dmar_tbl);
1020 		dmar_tbl = NULL;
1021 	}
1022 	up_write(&dmar_global_lock);
1023 }
1024 
1025 static void unmap_iommu(struct intel_iommu *iommu)
1026 {
1027 	iounmap(iommu->reg);
1028 	release_mem_region(iommu->reg_phys, iommu->reg_size);
1029 }
1030 
1031 /**
1032  * map_iommu: map the iommu's registers
1033  * @iommu: the iommu to map
1034  * @drhd: DMA remapping hardware definition structure
1035  *
1036  * Memory map the iommu's registers.  Start w/ a single page, and
1037  * possibly expand if that turns out to be insufficent.
1038  */
1039 static int map_iommu(struct intel_iommu *iommu, struct dmar_drhd_unit *drhd)
1040 {
1041 	u64 phys_addr = drhd->reg_base_addr;
1042 	int map_size, err=0;
1043 
1044 	iommu->reg_phys = phys_addr;
1045 	iommu->reg_size = drhd->reg_size;
1046 
1047 	if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) {
1048 		pr_err("Can't reserve memory\n");
1049 		err = -EBUSY;
1050 		goto out;
1051 	}
1052 
1053 	iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
1054 	if (!iommu->reg) {
1055 		pr_err("Can't map the region\n");
1056 		err = -ENOMEM;
1057 		goto release;
1058 	}
1059 
1060 	iommu->cap = readq(iommu->reg + DMAR_CAP_REG);
1061 	iommu->ecap = readq(iommu->reg + DMAR_ECAP_REG);
1062 
1063 	if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) {
1064 		err = -EINVAL;
1065 		warn_invalid_dmar(phys_addr, " returns all ones");
1066 		goto unmap;
1067 	}
1068 
1069 	/* the registers might be more than one page */
1070 	map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap),
1071 			 cap_max_fault_reg_offset(iommu->cap));
1072 	map_size = VTD_PAGE_ALIGN(map_size);
1073 	if (map_size > iommu->reg_size) {
1074 		iounmap(iommu->reg);
1075 		release_mem_region(iommu->reg_phys, iommu->reg_size);
1076 		iommu->reg_size = map_size;
1077 		if (!request_mem_region(iommu->reg_phys, iommu->reg_size,
1078 					iommu->name)) {
1079 			pr_err("Can't reserve memory\n");
1080 			err = -EBUSY;
1081 			goto out;
1082 		}
1083 		iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
1084 		if (!iommu->reg) {
1085 			pr_err("Can't map the region\n");
1086 			err = -ENOMEM;
1087 			goto release;
1088 		}
1089 	}
1090 
1091 	if (cap_ecmds(iommu->cap)) {
1092 		int i;
1093 
1094 		for (i = 0; i < DMA_MAX_NUM_ECMDCAP; i++) {
1095 			iommu->ecmdcap[i] = readq(iommu->reg + DMAR_ECCAP_REG +
1096 						  i * DMA_ECMD_REG_STEP);
1097 		}
1098 	}
1099 
1100 	err = 0;
1101 	goto out;
1102 
1103 unmap:
1104 	iounmap(iommu->reg);
1105 release:
1106 	release_mem_region(iommu->reg_phys, iommu->reg_size);
1107 out:
1108 	return err;
1109 }
1110 
1111 static int alloc_iommu(struct dmar_drhd_unit *drhd)
1112 {
1113 	struct intel_iommu *iommu;
1114 	u32 ver, sts;
1115 	int agaw = -1;
1116 	int msagaw = -1;
1117 	int err;
1118 
1119 	if (!drhd->reg_base_addr) {
1120 		warn_invalid_dmar(0, "");
1121 		return -EINVAL;
1122 	}
1123 
1124 	iommu = kzalloc_obj(*iommu);
1125 	if (!iommu)
1126 		return -ENOMEM;
1127 
1128 	iommu->seq_id = ida_alloc_range(&dmar_seq_ids, 0,
1129 					DMAR_UNITS_SUPPORTED - 1, GFP_KERNEL);
1130 	if (iommu->seq_id < 0) {
1131 		pr_err("Failed to allocate seq_id\n");
1132 		err = iommu->seq_id;
1133 		goto error;
1134 	}
1135 	snprintf(iommu->name, sizeof(iommu->name), "dmar%d", iommu->seq_id);
1136 
1137 	err = map_iommu(iommu, drhd);
1138 	if (err) {
1139 		pr_err("Failed to map %s\n", iommu->name);
1140 		goto error_free_seq_id;
1141 	}
1142 
1143 	if (!cap_sagaw(iommu->cap) &&
1144 	    (!ecap_smts(iommu->ecap) || ecap_slts(iommu->ecap))) {
1145 		pr_info("%s: No supported address widths. Not attempting DMA translation.\n",
1146 			iommu->name);
1147 		drhd->ignored = 1;
1148 	}
1149 
1150 	if (!drhd->ignored) {
1151 		agaw = iommu_calculate_agaw(iommu);
1152 		if (agaw < 0) {
1153 			pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n",
1154 			       iommu->seq_id);
1155 			drhd->ignored = 1;
1156 		}
1157 	}
1158 	if (!drhd->ignored) {
1159 		msagaw = iommu_calculate_max_sagaw(iommu);
1160 		if (msagaw < 0) {
1161 			pr_err("Cannot get a valid max agaw for iommu (seq_id = %d)\n",
1162 			       iommu->seq_id);
1163 			drhd->ignored = 1;
1164 			agaw = -1;
1165 		}
1166 	}
1167 	iommu->agaw = agaw;
1168 	iommu->msagaw = msagaw;
1169 	iommu->segment = drhd->segment;
1170 	iommu->device_rbtree = RB_ROOT;
1171 	spin_lock_init(&iommu->device_rbtree_lock);
1172 	mutex_init(&iommu->iopf_lock);
1173 	iommu->node = NUMA_NO_NODE;
1174 	spin_lock_init(&iommu->lock);
1175 	ida_init(&iommu->domain_ida);
1176 	mutex_init(&iommu->did_lock);
1177 	iommu->max_domain_id = cap_ndoms(iommu->cap);
1178 
1179 	ver = readl(iommu->reg + DMAR_VER_REG);
1180 	pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n",
1181 		iommu->name,
1182 		(unsigned long long)drhd->reg_base_addr,
1183 		DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver),
1184 		(unsigned long long)iommu->cap,
1185 		(unsigned long long)iommu->ecap);
1186 
1187 	/* Reflect status in gcmd */
1188 	sts = readl(iommu->reg + DMAR_GSTS_REG);
1189 	if (sts & DMA_GSTS_IRES)
1190 		iommu->gcmd |= DMA_GCMD_IRE;
1191 	if (sts & DMA_GSTS_TES)
1192 		iommu->gcmd |= DMA_GCMD_TE;
1193 	if (sts & DMA_GSTS_QIES)
1194 		iommu->gcmd |= DMA_GCMD_QIE;
1195 
1196 	if (alloc_iommu_pmu(iommu))
1197 		pr_debug("Cannot alloc PMU for iommu (seq_id = %d)\n", iommu->seq_id);
1198 
1199 	raw_spin_lock_init(&iommu->register_lock);
1200 
1201 	/*
1202 	 * A value of N in PSS field of eCap register indicates hardware
1203 	 * supports PASID field of N+1 bits.
1204 	 */
1205 	if (pasid_supported(iommu))
1206 		iommu->iommu.max_pasids = 2UL << ecap_pss(iommu->ecap);
1207 
1208 	/*
1209 	 * This is only for hotplug; at boot time intel_iommu_enabled won't
1210 	 * be set yet. When intel_iommu_init() runs, it registers the units
1211 	 * present at boot time, then sets intel_iommu_enabled.
1212 	 */
1213 	if (intel_iommu_enabled && !drhd->ignored) {
1214 		err = iommu_device_sysfs_add(&iommu->iommu, NULL,
1215 					     intel_iommu_groups,
1216 					     "%s", iommu->name);
1217 		if (err)
1218 			goto err_unmap;
1219 
1220 		err = iommu_device_register(&iommu->iommu, &intel_iommu_ops, NULL);
1221 		if (err)
1222 			goto err_sysfs;
1223 
1224 		iommu_pmu_register(iommu);
1225 	}
1226 
1227 	drhd->iommu = iommu;
1228 	iommu->drhd = drhd;
1229 
1230 	return 0;
1231 
1232 err_sysfs:
1233 	iommu_device_sysfs_remove(&iommu->iommu);
1234 err_unmap:
1235 	free_iommu_pmu(iommu);
1236 	unmap_iommu(iommu);
1237 error_free_seq_id:
1238 	ida_free(&dmar_seq_ids, iommu->seq_id);
1239 error:
1240 	kfree(iommu);
1241 	return err;
1242 }
1243 
1244 static void free_iommu(struct intel_iommu *iommu)
1245 {
1246 	if (intel_iommu_enabled && !iommu->drhd->ignored) {
1247 		iommu_pmu_unregister(iommu);
1248 		iommu_device_unregister(&iommu->iommu);
1249 		iommu_device_sysfs_remove(&iommu->iommu);
1250 	}
1251 
1252 	free_iommu_pmu(iommu);
1253 
1254 	if (iommu->irq) {
1255 		if (iommu->pr_irq) {
1256 			free_irq(iommu->pr_irq, iommu);
1257 			dmar_free_hwirq(iommu->pr_irq);
1258 			iommu->pr_irq = 0;
1259 		}
1260 		free_irq(iommu->irq, iommu);
1261 		dmar_free_hwirq(iommu->irq);
1262 		iommu->irq = 0;
1263 	}
1264 
1265 	if (iommu->qi) {
1266 		iommu_free_pages(iommu->qi->desc);
1267 		kfree(iommu->qi->desc_status);
1268 		kfree(iommu->qi);
1269 	}
1270 
1271 	if (iommu->reg)
1272 		unmap_iommu(iommu);
1273 
1274 	ida_destroy(&iommu->domain_ida);
1275 	ida_free(&dmar_seq_ids, iommu->seq_id);
1276 	kfree(iommu);
1277 }
1278 
1279 /*
1280  * Reclaim all the submitted descriptors which have completed its work.
1281  */
1282 static inline void reclaim_free_desc(struct q_inval *qi)
1283 {
1284 	while (qi->desc_status[qi->free_tail] == QI_FREE && qi->free_tail != qi->free_head) {
1285 		qi->free_tail = (qi->free_tail + 1) % QI_LENGTH;
1286 		qi->free_cnt++;
1287 	}
1288 }
1289 
1290 static const char *qi_type_string(u8 type)
1291 {
1292 	switch (type) {
1293 	case QI_CC_TYPE:
1294 		return "Context-cache Invalidation";
1295 	case QI_IOTLB_TYPE:
1296 		return "IOTLB Invalidation";
1297 	case QI_DIOTLB_TYPE:
1298 		return "Device-TLB Invalidation";
1299 	case QI_IEC_TYPE:
1300 		return "Interrupt Entry Cache Invalidation";
1301 	case QI_IWD_TYPE:
1302 		return "Invalidation Wait";
1303 	case QI_EIOTLB_TYPE:
1304 		return "PASID-based IOTLB Invalidation";
1305 	case QI_PC_TYPE:
1306 		return "PASID-cache Invalidation";
1307 	case QI_DEIOTLB_TYPE:
1308 		return "PASID-based Device-TLB Invalidation";
1309 	case QI_PGRP_RESP_TYPE:
1310 		return "Page Group Response";
1311 	default:
1312 		return "UNKNOWN";
1313 	}
1314 }
1315 
1316 static void qi_dump_fault(struct intel_iommu *iommu, u32 fault)
1317 {
1318 	unsigned int head = readl(iommu->reg + DMAR_IQH_REG);
1319 	u64 iqe_err = readq(iommu->reg + DMAR_IQER_REG);
1320 	struct qi_desc *desc = iommu->qi->desc + head;
1321 
1322 	if (fault & DMA_FSTS_IQE)
1323 		pr_err("VT-d detected Invalidation Queue Error: Reason %llx",
1324 		       DMAR_IQER_REG_IQEI(iqe_err));
1325 	if (fault & DMA_FSTS_ITE)
1326 		pr_err("VT-d detected Invalidation Time-out Error: SID %llx",
1327 		       DMAR_IQER_REG_ITESID(iqe_err));
1328 	if (fault & DMA_FSTS_ICE)
1329 		pr_err("VT-d detected Invalidation Completion Error: SID %llx",
1330 		       DMAR_IQER_REG_ICESID(iqe_err));
1331 
1332 	pr_err("QI HEAD: %s qw0 = 0x%llx, qw1 = 0x%llx\n",
1333 	       qi_type_string(desc->qw0 & 0xf),
1334 	       (unsigned long long)desc->qw0,
1335 	       (unsigned long long)desc->qw1);
1336 
1337 	head = ((head >> qi_shift(iommu)) + QI_LENGTH - 1) % QI_LENGTH;
1338 	head <<= qi_shift(iommu);
1339 	desc = iommu->qi->desc + head;
1340 
1341 	pr_err("QI PRIOR: %s qw0 = 0x%llx, qw1 = 0x%llx\n",
1342 	       qi_type_string(desc->qw0 & 0xf),
1343 	       (unsigned long long)desc->qw0,
1344 	       (unsigned long long)desc->qw1);
1345 }
1346 
1347 static int qi_check_fault(struct intel_iommu *iommu, int index, int wait_index)
1348 {
1349 	u32 fault;
1350 	int head, tail;
1351 	struct device *dev;
1352 	u64 iqe_err, ite_sid;
1353 	struct q_inval *qi = iommu->qi;
1354 	int shift = qi_shift(iommu);
1355 
1356 	if (qi->desc_status[wait_index] == QI_ABORT)
1357 		return -EAGAIN;
1358 
1359 	fault = readl(iommu->reg + DMAR_FSTS_REG);
1360 	if (fault & (DMA_FSTS_IQE | DMA_FSTS_ITE | DMA_FSTS_ICE))
1361 		qi_dump_fault(iommu, fault);
1362 
1363 	/*
1364 	 * If IQE happens, the head points to the descriptor associated
1365 	 * with the error. No new descriptors are fetched until the IQE
1366 	 * is cleared.
1367 	 */
1368 	if (fault & DMA_FSTS_IQE) {
1369 		head = readl(iommu->reg + DMAR_IQH_REG);
1370 		if ((head >> shift) == index) {
1371 			struct qi_desc *desc = qi->desc + head;
1372 
1373 			/*
1374 			 * desc->qw2 and desc->qw3 are either reserved or
1375 			 * used by software as private data. We won't print
1376 			 * out these two qw's for security consideration.
1377 			 */
1378 			memcpy(desc, qi->desc + (wait_index << shift),
1379 			       1 << shift);
1380 			writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG);
1381 			pr_info("Invalidation Queue Error (IQE) cleared\n");
1382 			return -EINVAL;
1383 		}
1384 	}
1385 
1386 	/*
1387 	 * If ITE happens, all pending wait_desc commands are aborted.
1388 	 * No new descriptors are fetched until the ITE is cleared.
1389 	 */
1390 	if (fault & DMA_FSTS_ITE) {
1391 		head = readl(iommu->reg + DMAR_IQH_REG);
1392 		head = ((head >> shift) - 1 + QI_LENGTH) % QI_LENGTH;
1393 		tail = readl(iommu->reg + DMAR_IQT_REG);
1394 		tail = ((tail >> shift) - 1 + QI_LENGTH) % QI_LENGTH;
1395 
1396 		/*
1397 		 * SID field is valid only when the ITE field is Set in FSTS_REG
1398 		 * see Intel VT-d spec r4.1, section 11.4.9.9
1399 		 */
1400 		iqe_err = readq(iommu->reg + DMAR_IQER_REG);
1401 		ite_sid = DMAR_IQER_REG_ITESID(iqe_err);
1402 
1403 		writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG);
1404 		pr_info("Invalidation Time-out Error (ITE) cleared\n");
1405 
1406 		do {
1407 			if (qi->desc_status[head] == QI_IN_USE)
1408 				qi->desc_status[head] = QI_ABORT;
1409 			head = (head - 1 + QI_LENGTH) % QI_LENGTH;
1410 		} while (head != tail);
1411 
1412 		/*
1413 		 * If device was released or isn't present, no need to retry
1414 		 * the ATS invalidate request anymore.
1415 		 *
1416 		 * 0 value of ite_sid means old VT-d device, no ite_sid value.
1417 		 * see Intel VT-d spec r4.1, section 11.4.9.9
1418 		 */
1419 		if (ite_sid) {
1420 			dev = device_rbtree_find(iommu, ite_sid);
1421 			if (!dev || !dev_is_pci(dev) ||
1422 			    !pci_device_is_present(to_pci_dev(dev)))
1423 				return -ETIMEDOUT;
1424 		}
1425 		if (qi->desc_status[wait_index] == QI_ABORT)
1426 			return -EAGAIN;
1427 	}
1428 
1429 	if (fault & DMA_FSTS_ICE) {
1430 		writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG);
1431 		pr_info("Invalidation Completion Error (ICE) cleared\n");
1432 	}
1433 
1434 	return 0;
1435 }
1436 
1437 /*
1438  * Function to submit invalidation descriptors of all types to the queued
1439  * invalidation interface(QI). Multiple descriptors can be submitted at a
1440  * time, a wait descriptor will be appended to each submission to ensure
1441  * hardware has completed the invalidation before return. Wait descriptors
1442  * can be part of the submission but it will not be polled for completion.
1443  */
1444 int qi_submit_sync(struct intel_iommu *iommu, struct qi_desc *desc,
1445 		   unsigned int count, unsigned long options)
1446 {
1447 	struct q_inval *qi = iommu->qi;
1448 	s64 devtlb_start_ktime = 0;
1449 	s64 iotlb_start_ktime = 0;
1450 	s64 iec_start_ktime = 0;
1451 	struct qi_desc wait_desc;
1452 	int wait_index, index;
1453 	unsigned long flags;
1454 	int offset, shift;
1455 	int rc, i;
1456 	u64 type;
1457 
1458 	if (!qi)
1459 		return 0;
1460 
1461 	type = desc->qw0 & GENMASK_ULL(3, 0);
1462 
1463 	if ((type == QI_IOTLB_TYPE || type == QI_EIOTLB_TYPE) &&
1464 	    dmar_latency_enabled(iommu, DMAR_LATENCY_INV_IOTLB))
1465 		iotlb_start_ktime = ktime_to_ns(ktime_get());
1466 
1467 	if ((type == QI_DIOTLB_TYPE || type == QI_DEIOTLB_TYPE) &&
1468 	    dmar_latency_enabled(iommu, DMAR_LATENCY_INV_DEVTLB))
1469 		devtlb_start_ktime = ktime_to_ns(ktime_get());
1470 
1471 	if (type == QI_IEC_TYPE &&
1472 	    dmar_latency_enabled(iommu, DMAR_LATENCY_INV_IEC))
1473 		iec_start_ktime = ktime_to_ns(ktime_get());
1474 
1475 restart:
1476 	rc = 0;
1477 
1478 	raw_spin_lock_irqsave(&qi->q_lock, flags);
1479 	/*
1480 	 * Check if we have enough empty slots in the queue to submit,
1481 	 * the calculation is based on:
1482 	 * # of desc + 1 wait desc + 1 space between head and tail
1483 	 */
1484 	while (qi->free_cnt < count + 2) {
1485 		raw_spin_unlock_irqrestore(&qi->q_lock, flags);
1486 		cpu_relax();
1487 		raw_spin_lock_irqsave(&qi->q_lock, flags);
1488 	}
1489 
1490 	index = qi->free_head;
1491 	wait_index = (index + count) % QI_LENGTH;
1492 	shift = qi_shift(iommu);
1493 
1494 	for (i = 0; i < count; i++) {
1495 		offset = ((index + i) % QI_LENGTH) << shift;
1496 		memcpy(qi->desc + offset, &desc[i], 1 << shift);
1497 		qi->desc_status[(index + i) % QI_LENGTH] = QI_IN_USE;
1498 		trace_qi_submit(iommu, desc[i].qw0, desc[i].qw1,
1499 				desc[i].qw2, desc[i].qw3);
1500 	}
1501 	qi->desc_status[wait_index] = QI_IN_USE;
1502 
1503 	wait_desc.qw0 = QI_IWD_STATUS_DATA(QI_DONE) |
1504 			QI_IWD_STATUS_WRITE | QI_IWD_TYPE;
1505 	if (options & QI_OPT_WAIT_DRAIN)
1506 		wait_desc.qw0 |= QI_IWD_PRQ_DRAIN;
1507 	wait_desc.qw1 = virt_to_phys(&qi->desc_status[wait_index]);
1508 	wait_desc.qw2 = 0;
1509 	wait_desc.qw3 = 0;
1510 
1511 	offset = wait_index << shift;
1512 	memcpy(qi->desc + offset, &wait_desc, 1 << shift);
1513 
1514 	qi->free_head = (qi->free_head + count + 1) % QI_LENGTH;
1515 	qi->free_cnt -= count + 1;
1516 
1517 	/*
1518 	 * update the HW tail register indicating the presence of
1519 	 * new descriptors.
1520 	 */
1521 	writel(qi->free_head << shift, iommu->reg + DMAR_IQT_REG);
1522 
1523 	while (READ_ONCE(qi->desc_status[wait_index]) != QI_DONE) {
1524 		/*
1525 		 * We will leave the interrupts disabled, to prevent interrupt
1526 		 * context to queue another cmd while a cmd is already submitted
1527 		 * and waiting for completion on this cpu. This is to avoid
1528 		 * a deadlock where the interrupt context can wait indefinitely
1529 		 * for free slots in the queue.
1530 		 */
1531 		rc = qi_check_fault(iommu, index, wait_index);
1532 		if (rc)
1533 			break;
1534 
1535 		raw_spin_unlock(&qi->q_lock);
1536 		cpu_relax();
1537 		raw_spin_lock(&qi->q_lock);
1538 	}
1539 
1540 	/*
1541 	 * The reclaim code can free descriptors from multiple submissions
1542 	 * starting from the tail of the queue. When count == 0, the
1543 	 * status of the standalone wait descriptor at the tail of the queue
1544 	 * must be set to QI_FREE to allow the reclaim code to proceed.
1545 	 * It is also possible that descriptors from one of the previous
1546 	 * submissions has to be reclaimed by a subsequent submission.
1547 	 */
1548 	for (i = 0; i <= count; i++)
1549 		qi->desc_status[(index + i) % QI_LENGTH] = QI_FREE;
1550 
1551 	reclaim_free_desc(qi);
1552 	raw_spin_unlock_irqrestore(&qi->q_lock, flags);
1553 
1554 	if (rc == -EAGAIN)
1555 		goto restart;
1556 
1557 	if (iotlb_start_ktime)
1558 		dmar_latency_update(iommu, DMAR_LATENCY_INV_IOTLB,
1559 				ktime_to_ns(ktime_get()) - iotlb_start_ktime);
1560 
1561 	if (devtlb_start_ktime)
1562 		dmar_latency_update(iommu, DMAR_LATENCY_INV_DEVTLB,
1563 				ktime_to_ns(ktime_get()) - devtlb_start_ktime);
1564 
1565 	if (iec_start_ktime)
1566 		dmar_latency_update(iommu, DMAR_LATENCY_INV_IEC,
1567 				ktime_to_ns(ktime_get()) - iec_start_ktime);
1568 
1569 	return rc;
1570 }
1571 
1572 /*
1573  * Flush the global interrupt entry cache.
1574  */
1575 void qi_global_iec(struct intel_iommu *iommu)
1576 {
1577 	struct qi_desc desc;
1578 
1579 	desc.qw0 = QI_IEC_TYPE;
1580 	desc.qw1 = 0;
1581 	desc.qw2 = 0;
1582 	desc.qw3 = 0;
1583 
1584 	/* should never fail */
1585 	qi_submit_sync(iommu, &desc, 1, 0);
1586 }
1587 
1588 void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm,
1589 		      u64 type)
1590 {
1591 	struct qi_desc desc;
1592 
1593 	desc.qw0 = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did)
1594 			| QI_CC_GRAN(type) | QI_CC_TYPE;
1595 	desc.qw1 = 0;
1596 	desc.qw2 = 0;
1597 	desc.qw3 = 0;
1598 
1599 	qi_submit_sync(iommu, &desc, 1, 0);
1600 }
1601 
1602 void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
1603 		    unsigned int size_order, u64 type)
1604 {
1605 	struct qi_desc desc;
1606 
1607 	qi_desc_iotlb(iommu, did, addr, size_order, type, &desc);
1608 	qi_submit_sync(iommu, &desc, 1, 0);
1609 }
1610 
1611 void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 pfsid,
1612 			u16 qdep, u64 addr, unsigned mask)
1613 {
1614 	struct qi_desc desc;
1615 
1616 	/*
1617 	 * VT-d spec, section 4.3:
1618 	 *
1619 	 * Software is recommended to not submit any Device-TLB invalidation
1620 	 * requests while address remapping hardware is disabled.
1621 	 */
1622 	if (!(iommu->gcmd & DMA_GCMD_TE))
1623 		return;
1624 
1625 	qi_desc_dev_iotlb(sid, pfsid, qdep, addr, mask, &desc);
1626 	qi_submit_sync(iommu, &desc, 1, 0);
1627 }
1628 
1629 /* PASID-selective IOTLB invalidation */
1630 void qi_flush_piotlb_all(struct intel_iommu *iommu, u16 did, u32 pasid)
1631 {
1632 	struct qi_desc desc = {};
1633 
1634 	qi_desc_piotlb_all(did, pasid, &desc);
1635 	qi_submit_sync(iommu, &desc, 1, 0);
1636 }
1637 
1638 /* PASID-based device IOTLB Invalidate */
1639 void qi_flush_dev_iotlb_pasid(struct intel_iommu *iommu, u16 sid, u16 pfsid,
1640 			      u32 pasid,  u16 qdep, u64 addr, unsigned int size_order)
1641 {
1642 	struct qi_desc desc = {.qw1 = 0, .qw2 = 0, .qw3 = 0};
1643 
1644 	/*
1645 	 * VT-d spec, section 4.3:
1646 	 *
1647 	 * Software is recommended to not submit any Device-TLB invalidation
1648 	 * requests while address remapping hardware is disabled.
1649 	 */
1650 	if (!(iommu->gcmd & DMA_GCMD_TE))
1651 		return;
1652 
1653 	qi_desc_dev_iotlb_pasid(sid, pfsid, pasid,
1654 				qdep, addr, size_order,
1655 				&desc);
1656 	qi_submit_sync(iommu, &desc, 1, 0);
1657 }
1658 
1659 void qi_flush_pasid_cache(struct intel_iommu *iommu, u16 did,
1660 			  u64 granu, u32 pasid)
1661 {
1662 	struct qi_desc desc = {.qw1 = 0, .qw2 = 0, .qw3 = 0};
1663 
1664 	desc.qw0 = QI_PC_PASID(pasid) | QI_PC_DID(did) |
1665 			QI_PC_GRAN(granu) | QI_PC_TYPE;
1666 	qi_submit_sync(iommu, &desc, 1, 0);
1667 }
1668 
1669 /*
1670  * Disable Queued Invalidation interface.
1671  */
1672 void dmar_disable_qi(struct intel_iommu *iommu)
1673 {
1674 	unsigned long flags;
1675 	u32 sts;
1676 	cycles_t start_time = get_cycles();
1677 
1678 	if (!ecap_qis(iommu->ecap))
1679 		return;
1680 
1681 	raw_spin_lock_irqsave(&iommu->register_lock, flags);
1682 
1683 	sts =  readl(iommu->reg + DMAR_GSTS_REG);
1684 	if (!(sts & DMA_GSTS_QIES))
1685 		goto end;
1686 
1687 	/*
1688 	 * Give a chance to HW to complete the pending invalidation requests.
1689 	 */
1690 	while ((readl(iommu->reg + DMAR_IQT_REG) !=
1691 		readl(iommu->reg + DMAR_IQH_REG)) &&
1692 		(DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time)))
1693 		cpu_relax();
1694 
1695 	iommu->gcmd &= ~DMA_GCMD_QIE;
1696 	writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1697 
1698 	IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl,
1699 		      !(sts & DMA_GSTS_QIES), sts);
1700 end:
1701 	raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
1702 }
1703 
1704 /*
1705  * Enable queued invalidation.
1706  */
1707 static void __dmar_enable_qi(struct intel_iommu *iommu)
1708 {
1709 	u32 sts;
1710 	unsigned long flags;
1711 	struct q_inval *qi = iommu->qi;
1712 	u64 val = virt_to_phys(qi->desc);
1713 
1714 	qi->free_head = qi->free_tail = 0;
1715 	qi->free_cnt = QI_LENGTH;
1716 
1717 	/*
1718 	 * Set DW=1 and QS=1 in IQA_REG when Scalable Mode capability
1719 	 * is present.
1720 	 */
1721 	if (ecap_smts(iommu->ecap))
1722 		val |= BIT_ULL(11) | BIT_ULL(0);
1723 
1724 	raw_spin_lock_irqsave(&iommu->register_lock, flags);
1725 
1726 	/* write zero to the tail reg */
1727 	writel(0, iommu->reg + DMAR_IQT_REG);
1728 
1729 	writeq(val, iommu->reg + DMAR_IQA_REG);
1730 
1731 	iommu->gcmd |= DMA_GCMD_QIE;
1732 	writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1733 
1734 	/* Make sure hardware complete it */
1735 	IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts);
1736 
1737 	raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
1738 }
1739 
1740 /*
1741  * Enable Queued Invalidation interface. This is a must to support
1742  * interrupt-remapping. Also used by DMA-remapping, which replaces
1743  * register based IOTLB invalidation.
1744  */
1745 int dmar_enable_qi(struct intel_iommu *iommu)
1746 {
1747 	struct q_inval *qi;
1748 	void *desc;
1749 
1750 	if (!ecap_qis(iommu->ecap))
1751 		return -ENOENT;
1752 
1753 	/*
1754 	 * queued invalidation is already setup and enabled.
1755 	 */
1756 	if (iommu->qi)
1757 		return 0;
1758 
1759 	iommu->qi = kmalloc_obj(*qi, GFP_ATOMIC);
1760 	if (!iommu->qi)
1761 		return -ENOMEM;
1762 
1763 	qi = iommu->qi;
1764 
1765 	/*
1766 	 * Need two pages to accommodate 256 descriptors of 256 bits each
1767 	 * if the remapping hardware supports scalable mode translation.
1768 	 */
1769 	desc = iommu_alloc_pages_node_sz(iommu->node, GFP_ATOMIC,
1770 					 ecap_smts(iommu->ecap) ? SZ_8K :
1771 								  SZ_4K);
1772 	if (!desc) {
1773 		kfree(qi);
1774 		iommu->qi = NULL;
1775 		return -ENOMEM;
1776 	}
1777 
1778 	qi->desc = desc;
1779 
1780 	qi->desc_status = kzalloc_objs(int, QI_LENGTH, GFP_ATOMIC);
1781 	if (!qi->desc_status) {
1782 		iommu_free_pages(qi->desc);
1783 		kfree(qi);
1784 		iommu->qi = NULL;
1785 		return -ENOMEM;
1786 	}
1787 
1788 	raw_spin_lock_init(&qi->q_lock);
1789 
1790 	__dmar_enable_qi(iommu);
1791 
1792 	return 0;
1793 }
1794 
1795 /* iommu interrupt handling. Most stuff are MSI-like. */
1796 
1797 enum faulttype {
1798 	DMA_REMAP,
1799 	INTR_REMAP,
1800 	UNKNOWN,
1801 };
1802 
1803 static const char *dma_remap_fault_reasons[] =
1804 {
1805 	"Software",
1806 	"Present bit in root entry is clear",
1807 	"Present bit in context entry is clear",
1808 	"Invalid context entry",
1809 	"Access beyond MGAW",
1810 	"PTE Write access is not set",
1811 	"PTE Read access is not set",
1812 	"Next page table ptr is invalid",
1813 	"Root table address invalid",
1814 	"Context table ptr is invalid",
1815 	"non-zero reserved fields in RTP",
1816 	"non-zero reserved fields in CTP",
1817 	"non-zero reserved fields in PTE",
1818 	"PCE for translation request specifies blocking",
1819 };
1820 
1821 static const char * const dma_remap_sm_fault_reasons[] = {
1822 	"SM: Invalid Root Table Address",
1823 	"SM: TTM 0 for request with PASID",
1824 	"SM: TTM 0 for page group request",
1825 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x33-0x37 */
1826 	"SM: Error attempting to access Root Entry",
1827 	"SM: Present bit in Root Entry is clear",
1828 	"SM: Non-zero reserved field set in Root Entry",
1829 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x3B-0x3F */
1830 	"SM: Error attempting to access Context Entry",
1831 	"SM: Present bit in Context Entry is clear",
1832 	"SM: Non-zero reserved field set in the Context Entry",
1833 	"SM: Invalid Context Entry",
1834 	"SM: DTE field in Context Entry is clear",
1835 	"SM: PASID Enable field in Context Entry is clear",
1836 	"SM: PASID is larger than the max in Context Entry",
1837 	"SM: PRE field in Context-Entry is clear",
1838 	"SM: RID_PASID field error in Context-Entry",
1839 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x49-0x4F */
1840 	"SM: Error attempting to access the PASID Directory Entry",
1841 	"SM: Present bit in Directory Entry is clear",
1842 	"SM: Non-zero reserved field set in PASID Directory Entry",
1843 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x53-0x57 */
1844 	"SM: Error attempting to access PASID Table Entry",
1845 	"SM: Present bit in PASID Table Entry is clear",
1846 	"SM: Non-zero reserved field set in PASID Table Entry",
1847 	"SM: Invalid Scalable-Mode PASID Table Entry",
1848 	"SM: ERE field is clear in PASID Table Entry",
1849 	"SM: SRE field is clear in PASID Table Entry",
1850 	"Unknown", "Unknown",/* 0x5E-0x5F */
1851 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x60-0x67 */
1852 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x68-0x6F */
1853 	"SM: Error attempting to access first-level paging entry",
1854 	"SM: Present bit in first-level paging entry is clear",
1855 	"SM: Non-zero reserved field set in first-level paging entry",
1856 	"SM: Error attempting to access FL-PML4 entry",
1857 	"SM: First-level entry address beyond MGAW in Nested translation",
1858 	"SM: Read permission error in FL-PML4 entry in Nested translation",
1859 	"SM: Read permission error in first-level paging entry in Nested translation",
1860 	"SM: Write permission error in first-level paging entry in Nested translation",
1861 	"SM: Error attempting to access second-level paging entry",
1862 	"SM: Read/Write permission error in second-level paging entry",
1863 	"SM: Non-zero reserved field set in second-level paging entry",
1864 	"SM: Invalid second-level page table pointer",
1865 	"SM: A/D bit update needed in second-level entry when set up in no snoop",
1866 	"Unknown", "Unknown", "Unknown", /* 0x7D-0x7F */
1867 	"SM: Address in first-level translation is not canonical",
1868 	"SM: U/S set 0 for first-level translation with user privilege",
1869 	"SM: No execute permission for request with PASID and ER=1",
1870 	"SM: Address beyond the DMA hardware max",
1871 	"SM: Second-level entry address beyond the max",
1872 	"SM: No write permission for Write/AtomicOp request",
1873 	"SM: No read permission for Read/AtomicOp request",
1874 	"SM: Invalid address-interrupt address",
1875 	"Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x88-0x8F */
1876 	"SM: A/D bit update needed in first-level entry when set up in no snoop",
1877 };
1878 
1879 static const char *irq_remap_fault_reasons[] =
1880 {
1881 	"Detected reserved fields in the decoded interrupt-remapped request",
1882 	"Interrupt index exceeded the interrupt-remapping table size",
1883 	"Present field in the IRTE entry is clear",
1884 	"Error accessing interrupt-remapping table pointed by IRTA_REG",
1885 	"Detected reserved fields in the IRTE entry",
1886 	"Blocked a compatibility format interrupt request",
1887 	"Blocked an interrupt request due to source-id verification failure",
1888 };
1889 
1890 static const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type)
1891 {
1892 	if (fault_reason >= 0x20 && (fault_reason - 0x20 <
1893 					ARRAY_SIZE(irq_remap_fault_reasons))) {
1894 		*fault_type = INTR_REMAP;
1895 		return irq_remap_fault_reasons[fault_reason - 0x20];
1896 	} else if (fault_reason >= 0x30 && (fault_reason - 0x30 <
1897 			ARRAY_SIZE(dma_remap_sm_fault_reasons))) {
1898 		*fault_type = DMA_REMAP;
1899 		return dma_remap_sm_fault_reasons[fault_reason - 0x30];
1900 	} else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) {
1901 		*fault_type = DMA_REMAP;
1902 		return dma_remap_fault_reasons[fault_reason];
1903 	} else {
1904 		*fault_type = UNKNOWN;
1905 		return "Unknown";
1906 	}
1907 }
1908 
1909 
1910 static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq)
1911 {
1912 	if (iommu->irq == irq)
1913 		return DMAR_FECTL_REG;
1914 	else if (iommu->pr_irq == irq)
1915 		return DMAR_PECTL_REG;
1916 	else if (iommu->perf_irq == irq)
1917 		return DMAR_PERFINTRCTL_REG;
1918 	else
1919 		BUG();
1920 }
1921 
1922 void dmar_msi_unmask(struct irq_data *data)
1923 {
1924 	struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
1925 	int reg = dmar_msi_reg(iommu, data->irq);
1926 	unsigned long flag;
1927 
1928 	/* unmask it */
1929 	raw_spin_lock_irqsave(&iommu->register_lock, flag);
1930 	writel(0, iommu->reg + reg);
1931 	/* Read a reg to force flush the post write */
1932 	readl(iommu->reg + reg);
1933 	raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1934 }
1935 
1936 void dmar_msi_mask(struct irq_data *data)
1937 {
1938 	struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
1939 	int reg = dmar_msi_reg(iommu, data->irq);
1940 	unsigned long flag;
1941 
1942 	/* mask it */
1943 	raw_spin_lock_irqsave(&iommu->register_lock, flag);
1944 	writel(DMA_FECTL_IM, iommu->reg + reg);
1945 	/* Read a reg to force flush the post write */
1946 	readl(iommu->reg + reg);
1947 	raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1948 }
1949 
1950 void dmar_msi_write(int irq, struct msi_msg *msg)
1951 {
1952 	struct intel_iommu *iommu = irq_get_handler_data(irq);
1953 	int reg = dmar_msi_reg(iommu, irq);
1954 	unsigned long flag;
1955 
1956 	raw_spin_lock_irqsave(&iommu->register_lock, flag);
1957 	writel(msg->data, iommu->reg + reg + 4);
1958 	writel(msg->address_lo, iommu->reg + reg + 8);
1959 	writel(msg->address_hi, iommu->reg + reg + 12);
1960 	raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1961 }
1962 
1963 static int dmar_fault_do_one(struct intel_iommu *iommu, int type,
1964 		u8 fault_reason, u32 pasid, u16 source_id,
1965 		unsigned long long addr)
1966 {
1967 	const char *reason;
1968 	int fault_type;
1969 
1970 	reason = dmar_get_fault_reason(fault_reason, &fault_type);
1971 
1972 	if (fault_type == INTR_REMAP) {
1973 		pr_err("[INTR-REMAP] Request device [%04x:%02x:%02x.%d] fault index 0x%llx [fault reason 0x%02x] %s\n",
1974 		       iommu->segment,
1975 		       source_id >> 8, PCI_SLOT(source_id & 0xFF),
1976 		       PCI_FUNC(source_id & 0xFF), addr >> 48,
1977 		       fault_reason, reason);
1978 
1979 		return 0;
1980 	}
1981 
1982 	if (pasid == IOMMU_PASID_INVALID)
1983 		pr_err("[%s NO_PASID] Request device [%04x:%02x:%02x.%d] fault addr 0x%llx [fault reason 0x%02x] %s\n",
1984 		       type ? "DMA Read" : "DMA Write",
1985 		       iommu->segment,
1986 		       source_id >> 8, PCI_SLOT(source_id & 0xFF),
1987 		       PCI_FUNC(source_id & 0xFF), addr,
1988 		       fault_reason, reason);
1989 	else
1990 		pr_err("[%s PASID 0x%x] Request device [%04x:%02x:%02x.%d] fault addr 0x%llx [fault reason 0x%02x] %s\n",
1991 		       type ? "DMA Read" : "DMA Write", pasid,
1992 		       iommu->segment,
1993 		       source_id >> 8, PCI_SLOT(source_id & 0xFF),
1994 		       PCI_FUNC(source_id & 0xFF), addr,
1995 		       fault_reason, reason);
1996 
1997 	dmar_fault_dump_ptes(iommu, source_id, addr, pasid);
1998 
1999 	return 0;
2000 }
2001 
2002 #define PRIMARY_FAULT_REG_LEN (16)
2003 irqreturn_t dmar_fault(int irq, void *dev_id)
2004 {
2005 	struct intel_iommu *iommu = dev_id;
2006 	int reg, fault_index;
2007 	u32 fault_status;
2008 	unsigned long flag;
2009 	static DEFINE_RATELIMIT_STATE(rs,
2010 				      DEFAULT_RATELIMIT_INTERVAL,
2011 				      DEFAULT_RATELIMIT_BURST);
2012 
2013 	raw_spin_lock_irqsave(&iommu->register_lock, flag);
2014 	fault_status = readl(iommu->reg + DMAR_FSTS_REG);
2015 	if (fault_status && __ratelimit(&rs))
2016 		pr_err("DRHD: handling fault status reg %x\n", fault_status);
2017 
2018 	/* TBD: ignore advanced fault log currently */
2019 	if (!(fault_status & DMA_FSTS_PPF))
2020 		goto unlock_exit;
2021 
2022 	fault_index = dma_fsts_fault_record_index(fault_status);
2023 	reg = cap_fault_reg_offset(iommu->cap);
2024 	while (1) {
2025 		/* Disable printing, simply clear the fault when ratelimited */
2026 		bool ratelimited = !__ratelimit(&rs);
2027 		u8 fault_reason;
2028 		u16 source_id;
2029 		u64 guest_addr;
2030 		u32 pasid;
2031 		int type;
2032 		u32 data;
2033 		bool pasid_present;
2034 
2035 		/* highest 32 bits */
2036 		data = readl(iommu->reg + reg +
2037 				fault_index * PRIMARY_FAULT_REG_LEN + 12);
2038 		if (!(data & DMA_FRCD_F))
2039 			break;
2040 
2041 		if (!ratelimited) {
2042 			fault_reason = dma_frcd_fault_reason(data);
2043 			type = dma_frcd_type(data);
2044 
2045 			pasid = dma_frcd_pasid_value(data);
2046 			data = readl(iommu->reg + reg +
2047 				     fault_index * PRIMARY_FAULT_REG_LEN + 8);
2048 			source_id = dma_frcd_source_id(data);
2049 
2050 			pasid_present = dma_frcd_pasid_present(data);
2051 			guest_addr = readq(iommu->reg + reg +
2052 					   fault_index * PRIMARY_FAULT_REG_LEN);
2053 			guest_addr = dma_frcd_page_addr(guest_addr);
2054 		}
2055 
2056 		/* clear the fault */
2057 		writel(DMA_FRCD_F, iommu->reg + reg +
2058 			fault_index * PRIMARY_FAULT_REG_LEN + 12);
2059 
2060 		raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
2061 
2062 		if (!ratelimited)
2063 			/* Using pasid -1 if pasid is not present */
2064 			dmar_fault_do_one(iommu, type, fault_reason,
2065 					  pasid_present ? pasid : IOMMU_PASID_INVALID,
2066 					  source_id, guest_addr);
2067 
2068 		fault_index++;
2069 		if (fault_index >= cap_num_fault_regs(iommu->cap))
2070 			fault_index = 0;
2071 		raw_spin_lock_irqsave(&iommu->register_lock, flag);
2072 	}
2073 
2074 	writel(DMA_FSTS_PFO | DMA_FSTS_PPF | DMA_FSTS_PRO,
2075 	       iommu->reg + DMAR_FSTS_REG);
2076 
2077 unlock_exit:
2078 	raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
2079 	return IRQ_HANDLED;
2080 }
2081 
2082 int dmar_set_interrupt(struct intel_iommu *iommu)
2083 {
2084 	int irq, ret;
2085 
2086 	/*
2087 	 * Check if the fault interrupt is already initialized.
2088 	 */
2089 	if (iommu->irq)
2090 		return 0;
2091 
2092 	irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu);
2093 	if (irq > 0) {
2094 		iommu->irq = irq;
2095 	} else {
2096 		pr_err("No free IRQ vectors\n");
2097 		return -EINVAL;
2098 	}
2099 
2100 	ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu);
2101 	if (ret)
2102 		pr_err("Can't request irq\n");
2103 	return ret;
2104 }
2105 
2106 int enable_drhd_fault_handling(unsigned int cpu)
2107 {
2108 	struct dmar_drhd_unit *drhd;
2109 	struct intel_iommu *iommu;
2110 
2111 	/*
2112 	 * Enable fault control interrupt.
2113 	 */
2114 	guard(rwsem_read)(&dmar_global_lock);
2115 	for_each_iommu(iommu, drhd) {
2116 		u32 fault_status;
2117 		int ret;
2118 
2119 		if (iommu->irq || iommu->node != cpu_to_node(cpu))
2120 			continue;
2121 
2122 		ret = dmar_set_interrupt(iommu);
2123 
2124 		if (ret) {
2125 			pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n",
2126 			       (unsigned long long)drhd->reg_base_addr, ret);
2127 			return -1;
2128 		}
2129 
2130 		/*
2131 		 * Clear any previous faults.
2132 		 */
2133 		dmar_fault(iommu->irq, iommu);
2134 		fault_status = readl(iommu->reg + DMAR_FSTS_REG);
2135 		writel(fault_status, iommu->reg + DMAR_FSTS_REG);
2136 	}
2137 
2138 	return 0;
2139 }
2140 
2141 /*
2142  * Re-enable Queued Invalidation interface.
2143  */
2144 int dmar_reenable_qi(struct intel_iommu *iommu)
2145 {
2146 	if (!ecap_qis(iommu->ecap))
2147 		return -ENOENT;
2148 
2149 	if (!iommu->qi)
2150 		return -ENOENT;
2151 
2152 	/*
2153 	 * First disable queued invalidation.
2154 	 */
2155 	dmar_disable_qi(iommu);
2156 	/*
2157 	 * Then enable queued invalidation again. Since there is no pending
2158 	 * invalidation requests now, it's safe to re-enable queued
2159 	 * invalidation.
2160 	 */
2161 	__dmar_enable_qi(iommu);
2162 
2163 	return 0;
2164 }
2165 
2166 /*
2167  * Check interrupt remapping support in DMAR table description.
2168  */
2169 int __init dmar_ir_support(void)
2170 {
2171 	struct acpi_table_dmar *dmar;
2172 	dmar = (struct acpi_table_dmar *)dmar_tbl;
2173 	if (!dmar)
2174 		return 0;
2175 	return dmar->flags & 0x1;
2176 }
2177 
2178 /* Check whether DMAR units are in use */
2179 static inline bool dmar_in_use(void)
2180 {
2181 	return irq_remapping_enabled || intel_iommu_enabled;
2182 }
2183 
2184 static int __init dmar_free_unused_resources(void)
2185 {
2186 	struct dmar_drhd_unit *dmaru, *dmaru_n;
2187 
2188 	if (dmar_in_use())
2189 		return 0;
2190 
2191 	if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units))
2192 		bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb);
2193 
2194 	down_write(&dmar_global_lock);
2195 	list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) {
2196 		list_del(&dmaru->list);
2197 		dmar_free_drhd(dmaru);
2198 	}
2199 	up_write(&dmar_global_lock);
2200 
2201 	return 0;
2202 }
2203 
2204 late_initcall(dmar_free_unused_resources);
2205 
2206 /*
2207  * DMAR Hotplug Support
2208  * For more details, please refer to Intel(R) Virtualization Technology
2209  * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8
2210  * "Remapping Hardware Unit Hot Plug".
2211  */
2212 static guid_t dmar_hp_guid =
2213 	GUID_INIT(0xD8C1A3A6, 0xBE9B, 0x4C9B,
2214 		  0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF);
2215 
2216 /*
2217  * Currently there's only one revision and BIOS will not check the revision id,
2218  * so use 0 for safety.
2219  */
2220 #define	DMAR_DSM_REV_ID			0
2221 #define	DMAR_DSM_FUNC_DRHD		1
2222 #define	DMAR_DSM_FUNC_ATSR		2
2223 #define	DMAR_DSM_FUNC_RHSA		3
2224 #define	DMAR_DSM_FUNC_SATC		4
2225 
2226 static inline bool dmar_detect_dsm(acpi_handle handle, int func)
2227 {
2228 	return acpi_check_dsm(handle, &dmar_hp_guid, DMAR_DSM_REV_ID, 1 << func);
2229 }
2230 
2231 static int dmar_walk_dsm_resource(acpi_handle handle, int func,
2232 				  dmar_res_handler_t handler, void *arg)
2233 {
2234 	int ret = -ENODEV;
2235 	union acpi_object *obj;
2236 	struct acpi_dmar_header *start;
2237 	struct dmar_res_callback callback;
2238 	static int res_type[] = {
2239 		[DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT,
2240 		[DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS,
2241 		[DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY,
2242 		[DMAR_DSM_FUNC_SATC] = ACPI_DMAR_TYPE_SATC,
2243 	};
2244 
2245 	if (!dmar_detect_dsm(handle, func))
2246 		return 0;
2247 
2248 	obj = acpi_evaluate_dsm_typed(handle, &dmar_hp_guid, DMAR_DSM_REV_ID,
2249 				      func, NULL, ACPI_TYPE_BUFFER);
2250 	if (!obj)
2251 		return -ENODEV;
2252 
2253 	memset(&callback, 0, sizeof(callback));
2254 	callback.cb[res_type[func]] = handler;
2255 	callback.arg[res_type[func]] = arg;
2256 	start = (struct acpi_dmar_header *)obj->buffer.pointer;
2257 	ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback);
2258 
2259 	ACPI_FREE(obj);
2260 
2261 	return ret;
2262 }
2263 
2264 static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg)
2265 {
2266 	int ret;
2267 	struct dmar_drhd_unit *dmaru;
2268 
2269 	dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
2270 	if (!dmaru)
2271 		return -ENODEV;
2272 
2273 	ret = dmar_ir_hotplug(dmaru, true);
2274 	if (ret == 0)
2275 		ret = dmar_iommu_hotplug(dmaru, true);
2276 
2277 	return ret;
2278 }
2279 
2280 static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg)
2281 {
2282 	int i, ret;
2283 	struct device *dev;
2284 	struct dmar_drhd_unit *dmaru;
2285 
2286 	dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
2287 	if (!dmaru)
2288 		return 0;
2289 
2290 	/*
2291 	 * All PCI devices managed by this unit should have been destroyed.
2292 	 */
2293 	if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt) {
2294 		for_each_active_dev_scope(dmaru->devices,
2295 					  dmaru->devices_cnt, i, dev)
2296 			return -EBUSY;
2297 	}
2298 
2299 	ret = dmar_ir_hotplug(dmaru, false);
2300 	if (ret == 0)
2301 		ret = dmar_iommu_hotplug(dmaru, false);
2302 
2303 	return ret;
2304 }
2305 
2306 static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg)
2307 {
2308 	struct dmar_drhd_unit *dmaru;
2309 
2310 	dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
2311 	if (dmaru) {
2312 		list_del_rcu(&dmaru->list);
2313 		synchronize_rcu();
2314 		dmar_free_drhd(dmaru);
2315 	}
2316 
2317 	return 0;
2318 }
2319 
2320 static int dmar_hotplug_insert(acpi_handle handle)
2321 {
2322 	int ret;
2323 	int drhd_count = 0;
2324 
2325 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2326 				     &dmar_validate_one_drhd, (void *)1);
2327 	if (ret)
2328 		goto out;
2329 
2330 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2331 				     &dmar_parse_one_drhd, (void *)&drhd_count);
2332 	if (ret == 0 && drhd_count == 0) {
2333 		pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n");
2334 		goto out;
2335 	} else if (ret) {
2336 		goto release_drhd;
2337 	}
2338 
2339 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA,
2340 				     &dmar_parse_one_rhsa, NULL);
2341 	if (ret)
2342 		goto release_drhd;
2343 
2344 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2345 				     &dmar_parse_one_atsr, NULL);
2346 	if (ret)
2347 		goto release_atsr;
2348 
2349 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2350 				     &dmar_hp_add_drhd, NULL);
2351 	if (!ret)
2352 		return 0;
2353 
2354 	dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2355 			       &dmar_hp_remove_drhd, NULL);
2356 release_atsr:
2357 	dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2358 			       &dmar_release_one_atsr, NULL);
2359 release_drhd:
2360 	dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2361 			       &dmar_hp_release_drhd, NULL);
2362 out:
2363 	return ret;
2364 }
2365 
2366 static int dmar_hotplug_remove(acpi_handle handle)
2367 {
2368 	int ret;
2369 
2370 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2371 				     &dmar_check_one_atsr, NULL);
2372 	if (ret)
2373 		return ret;
2374 
2375 	ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2376 				     &dmar_hp_remove_drhd, NULL);
2377 	if (ret == 0) {
2378 		WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2379 					       &dmar_release_one_atsr, NULL));
2380 		WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2381 					       &dmar_hp_release_drhd, NULL));
2382 	} else {
2383 		dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2384 				       &dmar_hp_add_drhd, NULL);
2385 	}
2386 
2387 	return ret;
2388 }
2389 
2390 static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl,
2391 				       void *context, void **retval)
2392 {
2393 	acpi_handle *phdl = retval;
2394 
2395 	if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2396 		*phdl = handle;
2397 		return AE_CTRL_TERMINATE;
2398 	}
2399 
2400 	return AE_OK;
2401 }
2402 
2403 static int dmar_device_hotplug(acpi_handle handle, bool insert)
2404 {
2405 	int ret;
2406 	acpi_handle tmp = NULL;
2407 	acpi_status status;
2408 
2409 	if (!dmar_in_use())
2410 		return 0;
2411 
2412 	if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2413 		tmp = handle;
2414 	} else {
2415 		status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2416 					     ACPI_UINT32_MAX,
2417 					     dmar_get_dsm_handle,
2418 					     NULL, NULL, &tmp);
2419 		if (ACPI_FAILURE(status)) {
2420 			pr_warn("Failed to locate _DSM method.\n");
2421 			return -ENXIO;
2422 		}
2423 	}
2424 	if (tmp == NULL)
2425 		return 0;
2426 
2427 	down_write(&dmar_global_lock);
2428 	if (insert)
2429 		ret = dmar_hotplug_insert(tmp);
2430 	else
2431 		ret = dmar_hotplug_remove(tmp);
2432 	up_write(&dmar_global_lock);
2433 
2434 	return ret;
2435 }
2436 
2437 int dmar_device_add(acpi_handle handle)
2438 {
2439 	return dmar_device_hotplug(handle, true);
2440 }
2441 
2442 int dmar_device_remove(acpi_handle handle)
2443 {
2444 	return dmar_device_hotplug(handle, false);
2445 }
2446 
2447 /*
2448  * dmar_platform_optin - Is %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in DMAR table
2449  *
2450  * Returns true if the platform has %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in
2451  * the ACPI DMAR table. This means that the platform boot firmware has made
2452  * sure no device can issue DMA outside of RMRR regions.
2453  */
2454 bool dmar_platform_optin(void)
2455 {
2456 	struct acpi_table_dmar *dmar;
2457 	acpi_status status;
2458 	bool ret;
2459 
2460 	status = acpi_get_table(ACPI_SIG_DMAR, 0,
2461 				(struct acpi_table_header **)&dmar);
2462 	if (ACPI_FAILURE(status))
2463 		return false;
2464 
2465 	ret = !!(dmar->flags & DMAR_PLATFORM_OPT_IN);
2466 	acpi_put_table((struct acpi_table_header *)dmar);
2467 
2468 	return ret;
2469 }
2470 EXPORT_SYMBOL_GPL(dmar_platform_optin);
2471