blob: 24616525c90dcdcbf0b46f7a8ed14bd57c6e37c8 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (c) 2006, Intel Corporation.
4 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 * 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/intel-iommu.h>
23#include <linux/timer.h>
24#include <linux/irq.h>
25#include <linux/interrupt.h>
26#include <linux/tboot.h>
27#include <linux/dmi.h>
28#include <linux/slab.h>
29#include <linux/iommu.h>
David Brazdil0f672f62019-12-10 10:32:29 +000030#include <linux/numa.h>
Olivier Deprez0e641232021-09-23 10:07:05 +020031#include <linux/limits.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000032#include <asm/irq_remapping.h>
33#include <asm/iommu_table.h>
34
35#include "irq_remapping.h"
36
37typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *);
38struct dmar_res_callback {
39 dmar_res_handler_t cb[ACPI_DMAR_TYPE_RESERVED];
40 void *arg[ACPI_DMAR_TYPE_RESERVED];
41 bool ignore_unhandled;
42 bool print_entry;
43};
44
45/*
46 * Assumptions:
47 * 1) The hotplug framework guarentees that DMAR unit will be hot-added
48 * before IO devices managed by that unit.
49 * 2) The hotplug framework guarantees that DMAR unit will be hot-removed
50 * after IO devices managed by that unit.
51 * 3) Hotplug events are rare.
52 *
53 * Locking rules for DMA and interrupt remapping related global data structures:
54 * 1) Use dmar_global_lock in process context
55 * 2) Use RCU in interrupt context
56 */
57DECLARE_RWSEM(dmar_global_lock);
58LIST_HEAD(dmar_drhd_units);
59
60struct acpi_table_header * __initdata dmar_tbl;
61static int dmar_dev_scope_status = 1;
62static unsigned long dmar_seq_ids[BITS_TO_LONGS(DMAR_UNITS_SUPPORTED)];
63
64static int alloc_iommu(struct dmar_drhd_unit *drhd);
65static void free_iommu(struct intel_iommu *iommu);
66
67extern const struct iommu_ops intel_iommu_ops;
68
69static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
70{
71 /*
72 * add INCLUDE_ALL at the tail, so scan the list will find it at
73 * the very end.
74 */
75 if (drhd->include_all)
76 list_add_tail_rcu(&drhd->list, &dmar_drhd_units);
77 else
78 list_add_rcu(&drhd->list, &dmar_drhd_units);
79}
80
81void *dmar_alloc_dev_scope(void *start, void *end, int *cnt)
82{
83 struct acpi_dmar_device_scope *scope;
84
85 *cnt = 0;
86 while (start < end) {
87 scope = start;
88 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE ||
89 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
90 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)
91 (*cnt)++;
92 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC &&
93 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) {
94 pr_warn("Unsupported device scope\n");
95 }
96 start += scope->length;
97 }
98 if (*cnt == 0)
99 return NULL;
100
101 return kcalloc(*cnt, sizeof(struct dmar_dev_scope), GFP_KERNEL);
102}
103
104void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt)
105{
106 int i;
107 struct device *tmp_dev;
108
109 if (*devices && *cnt) {
110 for_each_active_dev_scope(*devices, *cnt, i, tmp_dev)
111 put_device(tmp_dev);
112 kfree(*devices);
113 }
114
115 *devices = NULL;
116 *cnt = 0;
117}
118
119/* Optimize out kzalloc()/kfree() for normal cases */
120static char dmar_pci_notify_info_buf[64];
121
122static struct dmar_pci_notify_info *
123dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event)
124{
125 int level = 0;
126 size_t size;
127 struct pci_dev *tmp;
128 struct dmar_pci_notify_info *info;
129
130 BUG_ON(dev->is_virtfn);
131
Olivier Deprez0e641232021-09-23 10:07:05 +0200132 /*
133 * Ignore devices that have a domain number higher than what can
134 * be looked up in DMAR, e.g. VMD subdevices with domain 0x10000
135 */
136 if (pci_domain_nr(dev->bus) > U16_MAX)
137 return NULL;
138
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000139 /* Only generate path[] for device addition event */
140 if (event == BUS_NOTIFY_ADD_DEVICE)
141 for (tmp = dev; tmp; tmp = tmp->bus->self)
142 level++;
143
David Brazdil0f672f62019-12-10 10:32:29 +0000144 size = struct_size(info, path, level);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000145 if (size <= sizeof(dmar_pci_notify_info_buf)) {
146 info = (struct dmar_pci_notify_info *)dmar_pci_notify_info_buf;
147 } else {
148 info = kzalloc(size, GFP_KERNEL);
149 if (!info) {
150 pr_warn("Out of memory when allocating notify_info "
151 "for %s.\n", pci_name(dev));
152 if (dmar_dev_scope_status == 0)
153 dmar_dev_scope_status = -ENOMEM;
154 return NULL;
155 }
156 }
157
158 info->event = event;
159 info->dev = dev;
160 info->seg = pci_domain_nr(dev->bus);
161 info->level = level;
162 if (event == BUS_NOTIFY_ADD_DEVICE) {
163 for (tmp = dev; tmp; tmp = tmp->bus->self) {
164 level--;
165 info->path[level].bus = tmp->bus->number;
166 info->path[level].device = PCI_SLOT(tmp->devfn);
167 info->path[level].function = PCI_FUNC(tmp->devfn);
168 if (pci_is_root_bus(tmp->bus))
169 info->bus = tmp->bus->number;
170 }
171 }
172
173 return info;
174}
175
176static inline void dmar_free_pci_notify_info(struct dmar_pci_notify_info *info)
177{
178 if ((void *)info != dmar_pci_notify_info_buf)
179 kfree(info);
180}
181
182static bool dmar_match_pci_path(struct dmar_pci_notify_info *info, int bus,
183 struct acpi_dmar_pci_path *path, int count)
184{
185 int i;
186
187 if (info->bus != bus)
188 goto fallback;
189 if (info->level != count)
190 goto fallback;
191
192 for (i = 0; i < count; i++) {
193 if (path[i].device != info->path[i].device ||
194 path[i].function != info->path[i].function)
195 goto fallback;
196 }
197
198 return true;
199
200fallback:
201
202 if (count != 1)
203 return false;
204
205 i = info->level - 1;
206 if (bus == info->path[i].bus &&
207 path[0].device == info->path[i].device &&
208 path[0].function == info->path[i].function) {
209 pr_info(FW_BUG "RMRR entry for device %02x:%02x.%x is broken - applying workaround\n",
210 bus, path[0].device, path[0].function);
211 return true;
212 }
213
214 return false;
215}
216
217/* Return: > 0 if match found, 0 if no match found, < 0 if error happens */
218int dmar_insert_dev_scope(struct dmar_pci_notify_info *info,
219 void *start, void*end, u16 segment,
220 struct dmar_dev_scope *devices,
221 int devices_cnt)
222{
223 int i, level;
224 struct device *tmp, *dev = &info->dev->dev;
225 struct acpi_dmar_device_scope *scope;
226 struct acpi_dmar_pci_path *path;
227
228 if (segment != info->seg)
229 return 0;
230
231 for (; start < end; start += scope->length) {
232 scope = start;
233 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
234 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_BRIDGE)
235 continue;
236
237 path = (struct acpi_dmar_pci_path *)(scope + 1);
238 level = (scope->length - sizeof(*scope)) / sizeof(*path);
239 if (!dmar_match_pci_path(info, scope->bus, path, level))
240 continue;
241
242 /*
243 * We expect devices with endpoint scope to have normal PCI
244 * headers, and devices with bridge scope to have bridge PCI
245 * headers. However PCI NTB devices may be listed in the
246 * DMAR table with bridge scope, even though they have a
247 * normal PCI header. NTB devices are identified by class
248 * "BRIDGE_OTHER" (0680h) - we don't declare a socpe mismatch
249 * for this special case.
250 */
251 if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
252 info->dev->hdr_type != PCI_HEADER_TYPE_NORMAL) ||
253 (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE &&
254 (info->dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
255 info->dev->class >> 8 != PCI_CLASS_BRIDGE_OTHER))) {
256 pr_warn("Device scope type does not match for %s\n",
257 pci_name(info->dev));
258 return -EINVAL;
259 }
260
261 for_each_dev_scope(devices, devices_cnt, i, tmp)
262 if (tmp == NULL) {
263 devices[i].bus = info->dev->bus->number;
264 devices[i].devfn = info->dev->devfn;
265 rcu_assign_pointer(devices[i].dev,
266 get_device(dev));
267 return 1;
268 }
269 BUG_ON(i >= devices_cnt);
270 }
271
272 return 0;
273}
274
275int dmar_remove_dev_scope(struct dmar_pci_notify_info *info, u16 segment,
276 struct dmar_dev_scope *devices, int count)
277{
278 int index;
279 struct device *tmp;
280
281 if (info->seg != segment)
282 return 0;
283
284 for_each_active_dev_scope(devices, count, index, tmp)
285 if (tmp == &info->dev->dev) {
286 RCU_INIT_POINTER(devices[index].dev, NULL);
287 synchronize_rcu();
288 put_device(tmp);
289 return 1;
290 }
291
292 return 0;
293}
294
295static int dmar_pci_bus_add_dev(struct dmar_pci_notify_info *info)
296{
297 int ret = 0;
298 struct dmar_drhd_unit *dmaru;
299 struct acpi_dmar_hardware_unit *drhd;
300
301 for_each_drhd_unit(dmaru) {
302 if (dmaru->include_all)
303 continue;
304
305 drhd = container_of(dmaru->hdr,
306 struct acpi_dmar_hardware_unit, header);
307 ret = dmar_insert_dev_scope(info, (void *)(drhd + 1),
308 ((void *)drhd) + drhd->header.length,
309 dmaru->segment,
310 dmaru->devices, dmaru->devices_cnt);
311 if (ret)
312 break;
313 }
314 if (ret >= 0)
315 ret = dmar_iommu_notify_scope_dev(info);
316 if (ret < 0 && dmar_dev_scope_status == 0)
317 dmar_dev_scope_status = ret;
318
319 return ret;
320}
321
322static void dmar_pci_bus_del_dev(struct dmar_pci_notify_info *info)
323{
324 struct dmar_drhd_unit *dmaru;
325
326 for_each_drhd_unit(dmaru)
327 if (dmar_remove_dev_scope(info, dmaru->segment,
328 dmaru->devices, dmaru->devices_cnt))
329 break;
330 dmar_iommu_notify_scope_dev(info);
331}
332
333static int dmar_pci_bus_notifier(struct notifier_block *nb,
334 unsigned long action, void *data)
335{
336 struct pci_dev *pdev = to_pci_dev(data);
337 struct dmar_pci_notify_info *info;
338
339 /* Only care about add/remove events for physical functions.
340 * For VFs we actually do the lookup based on the corresponding
341 * PF in device_to_iommu() anyway. */
342 if (pdev->is_virtfn)
343 return NOTIFY_DONE;
344 if (action != BUS_NOTIFY_ADD_DEVICE &&
345 action != BUS_NOTIFY_REMOVED_DEVICE)
346 return NOTIFY_DONE;
347
348 info = dmar_alloc_pci_notify_info(pdev, action);
349 if (!info)
350 return NOTIFY_DONE;
351
352 down_write(&dmar_global_lock);
353 if (action == BUS_NOTIFY_ADD_DEVICE)
354 dmar_pci_bus_add_dev(info);
355 else if (action == BUS_NOTIFY_REMOVED_DEVICE)
356 dmar_pci_bus_del_dev(info);
357 up_write(&dmar_global_lock);
358
359 dmar_free_pci_notify_info(info);
360
361 return NOTIFY_OK;
362}
363
364static struct notifier_block dmar_pci_bus_nb = {
365 .notifier_call = dmar_pci_bus_notifier,
366 .priority = INT_MIN,
367};
368
369static struct dmar_drhd_unit *
370dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd)
371{
372 struct dmar_drhd_unit *dmaru;
373
Olivier Deprez0e641232021-09-23 10:07:05 +0200374 list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list,
375 dmar_rcu_check())
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000376 if (dmaru->segment == drhd->segment &&
377 dmaru->reg_base_addr == drhd->address)
378 return dmaru;
379
380 return NULL;
381}
382
383/**
384 * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition
385 * structure which uniquely represent one DMA remapping hardware unit
386 * present in the platform
387 */
388static int dmar_parse_one_drhd(struct acpi_dmar_header *header, void *arg)
389{
390 struct acpi_dmar_hardware_unit *drhd;
391 struct dmar_drhd_unit *dmaru;
392 int ret;
393
394 drhd = (struct acpi_dmar_hardware_unit *)header;
395 dmaru = dmar_find_dmaru(drhd);
396 if (dmaru)
397 goto out;
398
399 dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL);
400 if (!dmaru)
401 return -ENOMEM;
402
403 /*
404 * If header is allocated from slab by ACPI _DSM method, we need to
405 * copy the content because the memory buffer will be freed on return.
406 */
407 dmaru->hdr = (void *)(dmaru + 1);
408 memcpy(dmaru->hdr, header, header->length);
409 dmaru->reg_base_addr = drhd->address;
410 dmaru->segment = drhd->segment;
411 dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */
412 dmaru->devices = dmar_alloc_dev_scope((void *)(drhd + 1),
413 ((void *)drhd) + drhd->header.length,
414 &dmaru->devices_cnt);
415 if (dmaru->devices_cnt && dmaru->devices == NULL) {
416 kfree(dmaru);
417 return -ENOMEM;
418 }
419
420 ret = alloc_iommu(dmaru);
421 if (ret) {
422 dmar_free_dev_scope(&dmaru->devices,
423 &dmaru->devices_cnt);
424 kfree(dmaru);
425 return ret;
426 }
427 dmar_register_drhd_unit(dmaru);
428
429out:
430 if (arg)
431 (*(int *)arg)++;
432
433 return 0;
434}
435
436static void dmar_free_drhd(struct dmar_drhd_unit *dmaru)
437{
438 if (dmaru->devices && dmaru->devices_cnt)
439 dmar_free_dev_scope(&dmaru->devices, &dmaru->devices_cnt);
440 if (dmaru->iommu)
441 free_iommu(dmaru->iommu);
442 kfree(dmaru);
443}
444
445static int __init dmar_parse_one_andd(struct acpi_dmar_header *header,
446 void *arg)
447{
448 struct acpi_dmar_andd *andd = (void *)header;
449
450 /* Check for NUL termination within the designated length */
451 if (strnlen(andd->device_name, header->length - 8) == header->length - 8) {
Olivier Deprez0e641232021-09-23 10:07:05 +0200452 pr_warn(FW_BUG
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000453 "Your BIOS is broken; ANDD object name is not NUL-terminated\n"
454 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
455 dmi_get_system_info(DMI_BIOS_VENDOR),
456 dmi_get_system_info(DMI_BIOS_VERSION),
457 dmi_get_system_info(DMI_PRODUCT_VERSION));
Olivier Deprez0e641232021-09-23 10:07:05 +0200458 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000459 return -EINVAL;
460 }
461 pr_info("ANDD device: %x name: %s\n", andd->device_number,
462 andd->device_name);
463
464 return 0;
465}
466
467#ifdef CONFIG_ACPI_NUMA
468static int dmar_parse_one_rhsa(struct acpi_dmar_header *header, void *arg)
469{
470 struct acpi_dmar_rhsa *rhsa;
471 struct dmar_drhd_unit *drhd;
472
473 rhsa = (struct acpi_dmar_rhsa *)header;
474 for_each_drhd_unit(drhd) {
475 if (drhd->reg_base_addr == rhsa->base_address) {
476 int node = acpi_map_pxm_to_node(rhsa->proximity_domain);
477
478 if (!node_online(node))
David Brazdil0f672f62019-12-10 10:32:29 +0000479 node = NUMA_NO_NODE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000480 drhd->iommu->node = node;
481 return 0;
482 }
483 }
Olivier Deprez0e641232021-09-23 10:07:05 +0200484 pr_warn(FW_BUG
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000485 "Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n"
486 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
Olivier Deprez0e641232021-09-23 10:07:05 +0200487 rhsa->base_address,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000488 dmi_get_system_info(DMI_BIOS_VENDOR),
489 dmi_get_system_info(DMI_BIOS_VERSION),
490 dmi_get_system_info(DMI_PRODUCT_VERSION));
Olivier Deprez0e641232021-09-23 10:07:05 +0200491 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000492
493 return 0;
494}
495#else
496#define dmar_parse_one_rhsa dmar_res_noop
497#endif
498
499static void
500dmar_table_print_dmar_entry(struct acpi_dmar_header *header)
501{
502 struct acpi_dmar_hardware_unit *drhd;
503 struct acpi_dmar_reserved_memory *rmrr;
504 struct acpi_dmar_atsr *atsr;
505 struct acpi_dmar_rhsa *rhsa;
506
507 switch (header->type) {
508 case ACPI_DMAR_TYPE_HARDWARE_UNIT:
509 drhd = container_of(header, struct acpi_dmar_hardware_unit,
510 header);
511 pr_info("DRHD base: %#016Lx flags: %#x\n",
512 (unsigned long long)drhd->address, drhd->flags);
513 break;
514 case ACPI_DMAR_TYPE_RESERVED_MEMORY:
515 rmrr = container_of(header, struct acpi_dmar_reserved_memory,
516 header);
517 pr_info("RMRR base: %#016Lx end: %#016Lx\n",
518 (unsigned long long)rmrr->base_address,
519 (unsigned long long)rmrr->end_address);
520 break;
521 case ACPI_DMAR_TYPE_ROOT_ATS:
522 atsr = container_of(header, struct acpi_dmar_atsr, header);
523 pr_info("ATSR flags: %#x\n", atsr->flags);
524 break;
525 case ACPI_DMAR_TYPE_HARDWARE_AFFINITY:
526 rhsa = container_of(header, struct acpi_dmar_rhsa, header);
527 pr_info("RHSA base: %#016Lx proximity domain: %#x\n",
528 (unsigned long long)rhsa->base_address,
529 rhsa->proximity_domain);
530 break;
531 case ACPI_DMAR_TYPE_NAMESPACE:
532 /* We don't print this here because we need to sanity-check
533 it first. So print it in dmar_parse_one_andd() instead. */
534 break;
535 }
536}
537
538/**
539 * dmar_table_detect - checks to see if the platform supports DMAR devices
540 */
541static int __init dmar_table_detect(void)
542{
543 acpi_status status = AE_OK;
544
545 /* if we could find DMAR table, then there are DMAR devices */
546 status = acpi_get_table(ACPI_SIG_DMAR, 0, &dmar_tbl);
547
548 if (ACPI_SUCCESS(status) && !dmar_tbl) {
549 pr_warn("Unable to map DMAR\n");
550 status = AE_NOT_FOUND;
551 }
552
553 return ACPI_SUCCESS(status) ? 0 : -ENOENT;
554}
555
556static int dmar_walk_remapping_entries(struct acpi_dmar_header *start,
557 size_t len, struct dmar_res_callback *cb)
558{
559 struct acpi_dmar_header *iter, *next;
560 struct acpi_dmar_header *end = ((void *)start) + len;
561
562 for (iter = start; iter < end; iter = next) {
563 next = (void *)iter + iter->length;
564 if (iter->length == 0) {
565 /* Avoid looping forever on bad ACPI tables */
566 pr_debug(FW_BUG "Invalid 0-length structure\n");
567 break;
568 } else if (next > end) {
569 /* Avoid passing table end */
570 pr_warn(FW_BUG "Record passes table end\n");
571 return -EINVAL;
572 }
573
574 if (cb->print_entry)
575 dmar_table_print_dmar_entry(iter);
576
577 if (iter->type >= ACPI_DMAR_TYPE_RESERVED) {
578 /* continue for forward compatibility */
579 pr_debug("Unknown DMAR structure type %d\n",
580 iter->type);
581 } else if (cb->cb[iter->type]) {
582 int ret;
583
584 ret = cb->cb[iter->type](iter, cb->arg[iter->type]);
585 if (ret)
586 return ret;
587 } else if (!cb->ignore_unhandled) {
588 pr_warn("No handler for DMAR structure type %d\n",
589 iter->type);
590 return -EINVAL;
591 }
592 }
593
594 return 0;
595}
596
597static inline int dmar_walk_dmar_table(struct acpi_table_dmar *dmar,
598 struct dmar_res_callback *cb)
599{
600 return dmar_walk_remapping_entries((void *)(dmar + 1),
601 dmar->header.length - sizeof(*dmar), cb);
602}
603
604/**
605 * parse_dmar_table - parses the DMA reporting table
606 */
607static int __init
608parse_dmar_table(void)
609{
610 struct acpi_table_dmar *dmar;
611 int drhd_count = 0;
612 int ret;
613 struct dmar_res_callback cb = {
614 .print_entry = true,
615 .ignore_unhandled = true,
616 .arg[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &drhd_count,
617 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_parse_one_drhd,
618 .cb[ACPI_DMAR_TYPE_RESERVED_MEMORY] = &dmar_parse_one_rmrr,
619 .cb[ACPI_DMAR_TYPE_ROOT_ATS] = &dmar_parse_one_atsr,
620 .cb[ACPI_DMAR_TYPE_HARDWARE_AFFINITY] = &dmar_parse_one_rhsa,
621 .cb[ACPI_DMAR_TYPE_NAMESPACE] = &dmar_parse_one_andd,
622 };
623
624 /*
625 * Do it again, earlier dmar_tbl mapping could be mapped with
626 * fixed map.
627 */
628 dmar_table_detect();
629
630 /*
631 * ACPI tables may not be DMA protected by tboot, so use DMAR copy
632 * SINIT saved in SinitMleData in TXT heap (which is DMA protected)
633 */
634 dmar_tbl = tboot_get_dmar_table(dmar_tbl);
635
636 dmar = (struct acpi_table_dmar *)dmar_tbl;
637 if (!dmar)
638 return -ENODEV;
639
640 if (dmar->width < PAGE_SHIFT - 1) {
641 pr_warn("Invalid DMAR haw\n");
642 return -EINVAL;
643 }
644
645 pr_info("Host address width %d\n", dmar->width + 1);
646 ret = dmar_walk_dmar_table(dmar, &cb);
647 if (ret == 0 && drhd_count == 0)
648 pr_warn(FW_BUG "No DRHD structure found in DMAR table\n");
649
650 return ret;
651}
652
653static int dmar_pci_device_match(struct dmar_dev_scope devices[],
654 int cnt, struct pci_dev *dev)
655{
656 int index;
657 struct device *tmp;
658
659 while (dev) {
660 for_each_active_dev_scope(devices, cnt, index, tmp)
661 if (dev_is_pci(tmp) && dev == to_pci_dev(tmp))
662 return 1;
663
664 /* Check our parent */
665 dev = dev->bus->self;
666 }
667
668 return 0;
669}
670
671struct dmar_drhd_unit *
672dmar_find_matched_drhd_unit(struct pci_dev *dev)
673{
674 struct dmar_drhd_unit *dmaru;
675 struct acpi_dmar_hardware_unit *drhd;
676
677 dev = pci_physfn(dev);
678
679 rcu_read_lock();
680 for_each_drhd_unit(dmaru) {
681 drhd = container_of(dmaru->hdr,
682 struct acpi_dmar_hardware_unit,
683 header);
684
685 if (dmaru->include_all &&
686 drhd->segment == pci_domain_nr(dev->bus))
687 goto out;
688
689 if (dmar_pci_device_match(dmaru->devices,
690 dmaru->devices_cnt, dev))
691 goto out;
692 }
693 dmaru = NULL;
694out:
695 rcu_read_unlock();
696
697 return dmaru;
698}
699
700static void __init dmar_acpi_insert_dev_scope(u8 device_number,
701 struct acpi_device *adev)
702{
703 struct dmar_drhd_unit *dmaru;
704 struct acpi_dmar_hardware_unit *drhd;
705 struct acpi_dmar_device_scope *scope;
706 struct device *tmp;
707 int i;
708 struct acpi_dmar_pci_path *path;
709
710 for_each_drhd_unit(dmaru) {
711 drhd = container_of(dmaru->hdr,
712 struct acpi_dmar_hardware_unit,
713 header);
714
715 for (scope = (void *)(drhd + 1);
716 (unsigned long)scope < ((unsigned long)drhd) + drhd->header.length;
717 scope = ((void *)scope) + scope->length) {
718 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE)
719 continue;
720 if (scope->enumeration_id != device_number)
721 continue;
722
723 path = (void *)(scope + 1);
724 pr_info("ACPI device \"%s\" under DMAR at %llx as %02x:%02x.%d\n",
725 dev_name(&adev->dev), dmaru->reg_base_addr,
726 scope->bus, path->device, path->function);
727 for_each_dev_scope(dmaru->devices, dmaru->devices_cnt, i, tmp)
728 if (tmp == NULL) {
729 dmaru->devices[i].bus = scope->bus;
730 dmaru->devices[i].devfn = PCI_DEVFN(path->device,
731 path->function);
732 rcu_assign_pointer(dmaru->devices[i].dev,
733 get_device(&adev->dev));
734 return;
735 }
736 BUG_ON(i >= dmaru->devices_cnt);
737 }
738 }
739 pr_warn("No IOMMU scope found for ANDD enumeration ID %d (%s)\n",
740 device_number, dev_name(&adev->dev));
741}
742
743static int __init dmar_acpi_dev_scope_init(void)
744{
745 struct acpi_dmar_andd *andd;
746
747 if (dmar_tbl == NULL)
748 return -ENODEV;
749
750 for (andd = (void *)dmar_tbl + sizeof(struct acpi_table_dmar);
751 ((unsigned long)andd) < ((unsigned long)dmar_tbl) + dmar_tbl->length;
752 andd = ((void *)andd) + andd->header.length) {
753 if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) {
754 acpi_handle h;
755 struct acpi_device *adev;
756
757 if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT,
758 andd->device_name,
759 &h))) {
760 pr_err("Failed to find handle for ACPI object %s\n",
761 andd->device_name);
762 continue;
763 }
764 if (acpi_bus_get_device(h, &adev)) {
765 pr_err("Failed to get device for ACPI object %s\n",
766 andd->device_name);
767 continue;
768 }
769 dmar_acpi_insert_dev_scope(andd->device_number, adev);
770 }
771 }
772 return 0;
773}
774
775int __init dmar_dev_scope_init(void)
776{
777 struct pci_dev *dev = NULL;
778 struct dmar_pci_notify_info *info;
779
780 if (dmar_dev_scope_status != 1)
781 return dmar_dev_scope_status;
782
783 if (list_empty(&dmar_drhd_units)) {
784 dmar_dev_scope_status = -ENODEV;
785 } else {
786 dmar_dev_scope_status = 0;
787
788 dmar_acpi_dev_scope_init();
789
790 for_each_pci_dev(dev) {
791 if (dev->is_virtfn)
792 continue;
793
794 info = dmar_alloc_pci_notify_info(dev,
795 BUS_NOTIFY_ADD_DEVICE);
796 if (!info) {
797 return dmar_dev_scope_status;
798 } else {
799 dmar_pci_bus_add_dev(info);
800 dmar_free_pci_notify_info(info);
801 }
802 }
803 }
804
805 return dmar_dev_scope_status;
806}
807
808void __init dmar_register_bus_notifier(void)
809{
810 bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb);
811}
812
813
814int __init dmar_table_init(void)
815{
816 static int dmar_table_initialized;
817 int ret;
818
819 if (dmar_table_initialized == 0) {
820 ret = parse_dmar_table();
821 if (ret < 0) {
822 if (ret != -ENODEV)
823 pr_info("Parse DMAR table failure.\n");
824 } else if (list_empty(&dmar_drhd_units)) {
825 pr_info("No DMAR devices found\n");
826 ret = -ENODEV;
827 }
828
829 if (ret < 0)
830 dmar_table_initialized = ret;
831 else
832 dmar_table_initialized = 1;
833 }
834
835 return dmar_table_initialized < 0 ? dmar_table_initialized : 0;
836}
837
838static void warn_invalid_dmar(u64 addr, const char *message)
839{
Olivier Deprez0e641232021-09-23 10:07:05 +0200840 pr_warn_once(FW_BUG
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000841 "Your BIOS is broken; DMAR reported at address %llx%s!\n"
842 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
843 addr, message,
844 dmi_get_system_info(DMI_BIOS_VENDOR),
845 dmi_get_system_info(DMI_BIOS_VERSION),
846 dmi_get_system_info(DMI_PRODUCT_VERSION));
Olivier Deprez0e641232021-09-23 10:07:05 +0200847 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000848}
849
850static int __ref
851dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg)
852{
853 struct acpi_dmar_hardware_unit *drhd;
854 void __iomem *addr;
855 u64 cap, ecap;
856
857 drhd = (void *)entry;
858 if (!drhd->address) {
859 warn_invalid_dmar(0, "");
860 return -EINVAL;
861 }
862
863 if (arg)
864 addr = ioremap(drhd->address, VTD_PAGE_SIZE);
865 else
866 addr = early_ioremap(drhd->address, VTD_PAGE_SIZE);
867 if (!addr) {
868 pr_warn("Can't validate DRHD address: %llx\n", drhd->address);
869 return -EINVAL;
870 }
871
872 cap = dmar_readq(addr + DMAR_CAP_REG);
873 ecap = dmar_readq(addr + DMAR_ECAP_REG);
874
875 if (arg)
876 iounmap(addr);
877 else
878 early_iounmap(addr, VTD_PAGE_SIZE);
879
880 if (cap == (uint64_t)-1 && ecap == (uint64_t)-1) {
881 warn_invalid_dmar(drhd->address, " returns all ones");
882 return -EINVAL;
883 }
884
885 return 0;
886}
887
888int __init detect_intel_iommu(void)
889{
890 int ret;
891 struct dmar_res_callback validate_drhd_cb = {
892 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd,
893 .ignore_unhandled = true,
894 };
895
896 down_write(&dmar_global_lock);
897 ret = dmar_table_detect();
898 if (!ret)
899 ret = dmar_walk_dmar_table((struct acpi_table_dmar *)dmar_tbl,
900 &validate_drhd_cb);
Olivier Deprez0e641232021-09-23 10:07:05 +0200901 if (!ret && !no_iommu && !iommu_detected &&
902 (!dmar_disabled || dmar_platform_optin())) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000903 iommu_detected = 1;
904 /* Make sure ACS will be enabled */
905 pci_request_acs();
906 }
907
908#ifdef CONFIG_X86
909 if (!ret)
910 x86_init.iommu.iommu_init = intel_iommu_init;
911#endif
912
913 if (dmar_tbl) {
914 acpi_put_table(dmar_tbl);
915 dmar_tbl = NULL;
916 }
917 up_write(&dmar_global_lock);
918
919 return ret ? ret : 1;
920}
921
922static void unmap_iommu(struct intel_iommu *iommu)
923{
924 iounmap(iommu->reg);
925 release_mem_region(iommu->reg_phys, iommu->reg_size);
926}
927
928/**
929 * map_iommu: map the iommu's registers
930 * @iommu: the iommu to map
931 * @phys_addr: the physical address of the base resgister
932 *
933 * Memory map the iommu's registers. Start w/ a single page, and
934 * possibly expand if that turns out to be insufficent.
935 */
936static int map_iommu(struct intel_iommu *iommu, u64 phys_addr)
937{
938 int map_size, err=0;
939
940 iommu->reg_phys = phys_addr;
941 iommu->reg_size = VTD_PAGE_SIZE;
942
943 if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) {
944 pr_err("Can't reserve memory\n");
945 err = -EBUSY;
946 goto out;
947 }
948
949 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
950 if (!iommu->reg) {
951 pr_err("Can't map the region\n");
952 err = -ENOMEM;
953 goto release;
954 }
955
956 iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG);
957 iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG);
958
959 if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) {
960 err = -EINVAL;
961 warn_invalid_dmar(phys_addr, " returns all ones");
962 goto unmap;
963 }
964
965 /* the registers might be more than one page */
966 map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap),
967 cap_max_fault_reg_offset(iommu->cap));
968 map_size = VTD_PAGE_ALIGN(map_size);
969 if (map_size > iommu->reg_size) {
970 iounmap(iommu->reg);
971 release_mem_region(iommu->reg_phys, iommu->reg_size);
972 iommu->reg_size = map_size;
973 if (!request_mem_region(iommu->reg_phys, iommu->reg_size,
974 iommu->name)) {
975 pr_err("Can't reserve memory\n");
976 err = -EBUSY;
977 goto out;
978 }
979 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
980 if (!iommu->reg) {
981 pr_err("Can't map the region\n");
982 err = -ENOMEM;
983 goto release;
984 }
985 }
986 err = 0;
987 goto out;
988
989unmap:
990 iounmap(iommu->reg);
991release:
992 release_mem_region(iommu->reg_phys, iommu->reg_size);
993out:
994 return err;
995}
996
997static int dmar_alloc_seq_id(struct intel_iommu *iommu)
998{
999 iommu->seq_id = find_first_zero_bit(dmar_seq_ids,
1000 DMAR_UNITS_SUPPORTED);
1001 if (iommu->seq_id >= DMAR_UNITS_SUPPORTED) {
1002 iommu->seq_id = -1;
1003 } else {
1004 set_bit(iommu->seq_id, dmar_seq_ids);
1005 sprintf(iommu->name, "dmar%d", iommu->seq_id);
1006 }
1007
1008 return iommu->seq_id;
1009}
1010
1011static void dmar_free_seq_id(struct intel_iommu *iommu)
1012{
1013 if (iommu->seq_id >= 0) {
1014 clear_bit(iommu->seq_id, dmar_seq_ids);
1015 iommu->seq_id = -1;
1016 }
1017}
1018
1019static int alloc_iommu(struct dmar_drhd_unit *drhd)
1020{
1021 struct intel_iommu *iommu;
1022 u32 ver, sts;
Olivier Deprez0e641232021-09-23 10:07:05 +02001023 int agaw = -1;
1024 int msagaw = -1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001025 int err;
1026
1027 if (!drhd->reg_base_addr) {
1028 warn_invalid_dmar(0, "");
1029 return -EINVAL;
1030 }
1031
1032 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
1033 if (!iommu)
1034 return -ENOMEM;
1035
1036 if (dmar_alloc_seq_id(iommu) < 0) {
1037 pr_err("Failed to allocate seq_id\n");
1038 err = -ENOSPC;
1039 goto error;
1040 }
1041
1042 err = map_iommu(iommu, drhd->reg_base_addr);
1043 if (err) {
1044 pr_err("Failed to map %s\n", iommu->name);
1045 goto error_free_seq_id;
1046 }
1047
1048 err = -EINVAL;
Olivier Deprez0e641232021-09-23 10:07:05 +02001049 if (cap_sagaw(iommu->cap) == 0) {
1050 pr_info("%s: No supported address widths. Not attempting DMA translation.\n",
1051 iommu->name);
1052 drhd->ignored = 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001053 }
Olivier Deprez0e641232021-09-23 10:07:05 +02001054
1055 if (!drhd->ignored) {
1056 agaw = iommu_calculate_agaw(iommu);
1057 if (agaw < 0) {
1058 pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n",
1059 iommu->seq_id);
1060 drhd->ignored = 1;
1061 }
1062 }
1063 if (!drhd->ignored) {
1064 msagaw = iommu_calculate_max_sagaw(iommu);
1065 if (msagaw < 0) {
1066 pr_err("Cannot get a valid max agaw for iommu (seq_id = %d)\n",
1067 iommu->seq_id);
1068 drhd->ignored = 1;
1069 agaw = -1;
1070 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001071 }
1072 iommu->agaw = agaw;
1073 iommu->msagaw = msagaw;
1074 iommu->segment = drhd->segment;
1075
David Brazdil0f672f62019-12-10 10:32:29 +00001076 iommu->node = NUMA_NO_NODE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001077
1078 ver = readl(iommu->reg + DMAR_VER_REG);
1079 pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n",
1080 iommu->name,
1081 (unsigned long long)drhd->reg_base_addr,
1082 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver),
1083 (unsigned long long)iommu->cap,
1084 (unsigned long long)iommu->ecap);
1085
1086 /* Reflect status in gcmd */
1087 sts = readl(iommu->reg + DMAR_GSTS_REG);
1088 if (sts & DMA_GSTS_IRES)
1089 iommu->gcmd |= DMA_GCMD_IRE;
1090 if (sts & DMA_GSTS_TES)
1091 iommu->gcmd |= DMA_GCMD_TE;
1092 if (sts & DMA_GSTS_QIES)
1093 iommu->gcmd |= DMA_GCMD_QIE;
1094
1095 raw_spin_lock_init(&iommu->register_lock);
1096
Olivier Deprez0e641232021-09-23 10:07:05 +02001097 /*
1098 * This is only for hotplug; at boot time intel_iommu_enabled won't
1099 * be set yet. When intel_iommu_init() runs, it registers the units
1100 * present at boot time, then sets intel_iommu_enabled.
1101 */
1102 if (intel_iommu_enabled && !drhd->ignored) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001103 err = iommu_device_sysfs_add(&iommu->iommu, NULL,
1104 intel_iommu_groups,
1105 "%s", iommu->name);
1106 if (err)
1107 goto err_unmap;
1108
1109 iommu_device_set_ops(&iommu->iommu, &intel_iommu_ops);
1110
1111 err = iommu_device_register(&iommu->iommu);
1112 if (err)
Olivier Deprez0e641232021-09-23 10:07:05 +02001113 goto err_sysfs;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001114 }
1115
1116 drhd->iommu = iommu;
Olivier Deprez0e641232021-09-23 10:07:05 +02001117 iommu->drhd = drhd;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001118
1119 return 0;
1120
Olivier Deprez0e641232021-09-23 10:07:05 +02001121err_sysfs:
1122 iommu_device_sysfs_remove(&iommu->iommu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001123err_unmap:
1124 unmap_iommu(iommu);
1125error_free_seq_id:
1126 dmar_free_seq_id(iommu);
1127error:
1128 kfree(iommu);
1129 return err;
1130}
1131
1132static void free_iommu(struct intel_iommu *iommu)
1133{
Olivier Deprez0e641232021-09-23 10:07:05 +02001134 if (intel_iommu_enabled && !iommu->drhd->ignored) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001135 iommu_device_unregister(&iommu->iommu);
1136 iommu_device_sysfs_remove(&iommu->iommu);
1137 }
1138
1139 if (iommu->irq) {
1140 if (iommu->pr_irq) {
1141 free_irq(iommu->pr_irq, iommu);
1142 dmar_free_hwirq(iommu->pr_irq);
1143 iommu->pr_irq = 0;
1144 }
1145 free_irq(iommu->irq, iommu);
1146 dmar_free_hwirq(iommu->irq);
1147 iommu->irq = 0;
1148 }
1149
1150 if (iommu->qi) {
1151 free_page((unsigned long)iommu->qi->desc);
1152 kfree(iommu->qi->desc_status);
1153 kfree(iommu->qi);
1154 }
1155
1156 if (iommu->reg)
1157 unmap_iommu(iommu);
1158
1159 dmar_free_seq_id(iommu);
1160 kfree(iommu);
1161}
1162
1163/*
1164 * Reclaim all the submitted descriptors which have completed its work.
1165 */
1166static inline void reclaim_free_desc(struct q_inval *qi)
1167{
1168 while (qi->desc_status[qi->free_tail] == QI_DONE ||
1169 qi->desc_status[qi->free_tail] == QI_ABORT) {
1170 qi->desc_status[qi->free_tail] = QI_FREE;
1171 qi->free_tail = (qi->free_tail + 1) % QI_LENGTH;
1172 qi->free_cnt++;
1173 }
1174}
1175
1176static int qi_check_fault(struct intel_iommu *iommu, int index)
1177{
1178 u32 fault;
1179 int head, tail;
1180 struct q_inval *qi = iommu->qi;
1181 int wait_index = (index + 1) % QI_LENGTH;
David Brazdil0f672f62019-12-10 10:32:29 +00001182 int shift = qi_shift(iommu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001183
1184 if (qi->desc_status[wait_index] == QI_ABORT)
1185 return -EAGAIN;
1186
1187 fault = readl(iommu->reg + DMAR_FSTS_REG);
1188
1189 /*
1190 * If IQE happens, the head points to the descriptor associated
1191 * with the error. No new descriptors are fetched until the IQE
1192 * is cleared.
1193 */
1194 if (fault & DMA_FSTS_IQE) {
1195 head = readl(iommu->reg + DMAR_IQH_REG);
David Brazdil0f672f62019-12-10 10:32:29 +00001196 if ((head >> shift) == index) {
1197 struct qi_desc *desc = qi->desc + head;
1198
1199 /*
1200 * desc->qw2 and desc->qw3 are either reserved or
1201 * used by software as private data. We won't print
1202 * out these two qw's for security consideration.
1203 */
1204 pr_err("VT-d detected invalid descriptor: qw0 = %llx, qw1 = %llx\n",
1205 (unsigned long long)desc->qw0,
1206 (unsigned long long)desc->qw1);
1207 memcpy(desc, qi->desc + (wait_index << shift),
1208 1 << shift);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001209 writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG);
1210 return -EINVAL;
1211 }
1212 }
1213
1214 /*
1215 * If ITE happens, all pending wait_desc commands are aborted.
1216 * No new descriptors are fetched until the ITE is cleared.
1217 */
1218 if (fault & DMA_FSTS_ITE) {
1219 head = readl(iommu->reg + DMAR_IQH_REG);
David Brazdil0f672f62019-12-10 10:32:29 +00001220 head = ((head >> shift) - 1 + QI_LENGTH) % QI_LENGTH;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001221 head |= 1;
1222 tail = readl(iommu->reg + DMAR_IQT_REG);
David Brazdil0f672f62019-12-10 10:32:29 +00001223 tail = ((tail >> shift) - 1 + QI_LENGTH) % QI_LENGTH;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001224
1225 writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG);
1226
1227 do {
1228 if (qi->desc_status[head] == QI_IN_USE)
1229 qi->desc_status[head] = QI_ABORT;
1230 head = (head - 2 + QI_LENGTH) % QI_LENGTH;
1231 } while (head != tail);
1232
1233 if (qi->desc_status[wait_index] == QI_ABORT)
1234 return -EAGAIN;
1235 }
1236
1237 if (fault & DMA_FSTS_ICE)
1238 writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG);
1239
1240 return 0;
1241}
1242
1243/*
1244 * Submit the queued invalidation descriptor to the remapping
1245 * hardware unit and wait for its completion.
1246 */
1247int qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu)
1248{
1249 int rc;
1250 struct q_inval *qi = iommu->qi;
David Brazdil0f672f62019-12-10 10:32:29 +00001251 int offset, shift, length;
1252 struct qi_desc wait_desc;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001253 int wait_index, index;
1254 unsigned long flags;
1255
1256 if (!qi)
1257 return 0;
1258
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001259restart:
1260 rc = 0;
1261
1262 raw_spin_lock_irqsave(&qi->q_lock, flags);
1263 while (qi->free_cnt < 3) {
1264 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
1265 cpu_relax();
1266 raw_spin_lock_irqsave(&qi->q_lock, flags);
1267 }
1268
1269 index = qi->free_head;
1270 wait_index = (index + 1) % QI_LENGTH;
David Brazdil0f672f62019-12-10 10:32:29 +00001271 shift = qi_shift(iommu);
1272 length = 1 << shift;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001273
1274 qi->desc_status[index] = qi->desc_status[wait_index] = QI_IN_USE;
1275
David Brazdil0f672f62019-12-10 10:32:29 +00001276 offset = index << shift;
1277 memcpy(qi->desc + offset, desc, length);
1278 wait_desc.qw0 = QI_IWD_STATUS_DATA(QI_DONE) |
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001279 QI_IWD_STATUS_WRITE | QI_IWD_TYPE;
David Brazdil0f672f62019-12-10 10:32:29 +00001280 wait_desc.qw1 = virt_to_phys(&qi->desc_status[wait_index]);
1281 wait_desc.qw2 = 0;
1282 wait_desc.qw3 = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001283
David Brazdil0f672f62019-12-10 10:32:29 +00001284 offset = wait_index << shift;
1285 memcpy(qi->desc + offset, &wait_desc, length);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001286
1287 qi->free_head = (qi->free_head + 2) % QI_LENGTH;
1288 qi->free_cnt -= 2;
1289
1290 /*
1291 * update the HW tail register indicating the presence of
1292 * new descriptors.
1293 */
David Brazdil0f672f62019-12-10 10:32:29 +00001294 writel(qi->free_head << shift, iommu->reg + DMAR_IQT_REG);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001295
1296 while (qi->desc_status[wait_index] != QI_DONE) {
1297 /*
1298 * We will leave the interrupts disabled, to prevent interrupt
1299 * context to queue another cmd while a cmd is already submitted
1300 * and waiting for completion on this cpu. This is to avoid
1301 * a deadlock where the interrupt context can wait indefinitely
1302 * for free slots in the queue.
1303 */
1304 rc = qi_check_fault(iommu, index);
1305 if (rc)
1306 break;
1307
1308 raw_spin_unlock(&qi->q_lock);
1309 cpu_relax();
1310 raw_spin_lock(&qi->q_lock);
1311 }
1312
1313 qi->desc_status[index] = QI_DONE;
1314
1315 reclaim_free_desc(qi);
1316 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
1317
1318 if (rc == -EAGAIN)
1319 goto restart;
1320
1321 return rc;
1322}
1323
1324/*
1325 * Flush the global interrupt entry cache.
1326 */
1327void qi_global_iec(struct intel_iommu *iommu)
1328{
1329 struct qi_desc desc;
1330
David Brazdil0f672f62019-12-10 10:32:29 +00001331 desc.qw0 = QI_IEC_TYPE;
1332 desc.qw1 = 0;
1333 desc.qw2 = 0;
1334 desc.qw3 = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001335
1336 /* should never fail */
1337 qi_submit_sync(&desc, iommu);
1338}
1339
1340void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm,
1341 u64 type)
1342{
1343 struct qi_desc desc;
1344
David Brazdil0f672f62019-12-10 10:32:29 +00001345 desc.qw0 = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001346 | QI_CC_GRAN(type) | QI_CC_TYPE;
David Brazdil0f672f62019-12-10 10:32:29 +00001347 desc.qw1 = 0;
1348 desc.qw2 = 0;
1349 desc.qw3 = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001350
1351 qi_submit_sync(&desc, iommu);
1352}
1353
1354void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
1355 unsigned int size_order, u64 type)
1356{
1357 u8 dw = 0, dr = 0;
1358
1359 struct qi_desc desc;
1360 int ih = 0;
1361
1362 if (cap_write_drain(iommu->cap))
1363 dw = 1;
1364
1365 if (cap_read_drain(iommu->cap))
1366 dr = 1;
1367
David Brazdil0f672f62019-12-10 10:32:29 +00001368 desc.qw0 = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001369 | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE;
David Brazdil0f672f62019-12-10 10:32:29 +00001370 desc.qw1 = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001371 | QI_IOTLB_AM(size_order);
David Brazdil0f672f62019-12-10 10:32:29 +00001372 desc.qw2 = 0;
1373 desc.qw3 = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001374
1375 qi_submit_sync(&desc, iommu);
1376}
1377
1378void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 pfsid,
1379 u16 qdep, u64 addr, unsigned mask)
1380{
1381 struct qi_desc desc;
1382
1383 if (mask) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001384 addr |= (1ULL << (VTD_PAGE_SHIFT + mask - 1)) - 1;
David Brazdil0f672f62019-12-10 10:32:29 +00001385 desc.qw1 = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001386 } else
David Brazdil0f672f62019-12-10 10:32:29 +00001387 desc.qw1 = QI_DEV_IOTLB_ADDR(addr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001388
1389 if (qdep >= QI_DEV_IOTLB_MAX_INVS)
1390 qdep = 0;
1391
David Brazdil0f672f62019-12-10 10:32:29 +00001392 desc.qw0 = QI_DEV_IOTLB_SID(sid) | QI_DEV_IOTLB_QDEP(qdep) |
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001393 QI_DIOTLB_TYPE | QI_DEV_IOTLB_PFSID(pfsid);
David Brazdil0f672f62019-12-10 10:32:29 +00001394 desc.qw2 = 0;
1395 desc.qw3 = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001396
1397 qi_submit_sync(&desc, iommu);
1398}
1399
1400/*
1401 * Disable Queued Invalidation interface.
1402 */
1403void dmar_disable_qi(struct intel_iommu *iommu)
1404{
1405 unsigned long flags;
1406 u32 sts;
1407 cycles_t start_time = get_cycles();
1408
1409 if (!ecap_qis(iommu->ecap))
1410 return;
1411
1412 raw_spin_lock_irqsave(&iommu->register_lock, flags);
1413
1414 sts = readl(iommu->reg + DMAR_GSTS_REG);
1415 if (!(sts & DMA_GSTS_QIES))
1416 goto end;
1417
1418 /*
1419 * Give a chance to HW to complete the pending invalidation requests.
1420 */
1421 while ((readl(iommu->reg + DMAR_IQT_REG) !=
1422 readl(iommu->reg + DMAR_IQH_REG)) &&
1423 (DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time)))
1424 cpu_relax();
1425
1426 iommu->gcmd &= ~DMA_GCMD_QIE;
1427 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1428
1429 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl,
1430 !(sts & DMA_GSTS_QIES), sts);
1431end:
1432 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
1433}
1434
1435/*
1436 * Enable queued invalidation.
1437 */
1438static void __dmar_enable_qi(struct intel_iommu *iommu)
1439{
1440 u32 sts;
1441 unsigned long flags;
1442 struct q_inval *qi = iommu->qi;
David Brazdil0f672f62019-12-10 10:32:29 +00001443 u64 val = virt_to_phys(qi->desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001444
1445 qi->free_head = qi->free_tail = 0;
1446 qi->free_cnt = QI_LENGTH;
1447
David Brazdil0f672f62019-12-10 10:32:29 +00001448 /*
1449 * Set DW=1 and QS=1 in IQA_REG when Scalable Mode capability
1450 * is present.
1451 */
1452 if (ecap_smts(iommu->ecap))
1453 val |= (1 << 11) | 1;
1454
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001455 raw_spin_lock_irqsave(&iommu->register_lock, flags);
1456
1457 /* write zero to the tail reg */
1458 writel(0, iommu->reg + DMAR_IQT_REG);
1459
David Brazdil0f672f62019-12-10 10:32:29 +00001460 dmar_writeq(iommu->reg + DMAR_IQA_REG, val);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001461
1462 iommu->gcmd |= DMA_GCMD_QIE;
1463 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1464
1465 /* Make sure hardware complete it */
1466 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts);
1467
1468 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
1469}
1470
1471/*
1472 * Enable Queued Invalidation interface. This is a must to support
1473 * interrupt-remapping. Also used by DMA-remapping, which replaces
1474 * register based IOTLB invalidation.
1475 */
1476int dmar_enable_qi(struct intel_iommu *iommu)
1477{
1478 struct q_inval *qi;
1479 struct page *desc_page;
1480
1481 if (!ecap_qis(iommu->ecap))
1482 return -ENOENT;
1483
1484 /*
1485 * queued invalidation is already setup and enabled.
1486 */
1487 if (iommu->qi)
1488 return 0;
1489
1490 iommu->qi = kmalloc(sizeof(*qi), GFP_ATOMIC);
1491 if (!iommu->qi)
1492 return -ENOMEM;
1493
1494 qi = iommu->qi;
1495
David Brazdil0f672f62019-12-10 10:32:29 +00001496 /*
1497 * Need two pages to accommodate 256 descriptors of 256 bits each
1498 * if the remapping hardware supports scalable mode translation.
1499 */
1500 desc_page = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO,
1501 !!ecap_smts(iommu->ecap));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001502 if (!desc_page) {
1503 kfree(qi);
1504 iommu->qi = NULL;
1505 return -ENOMEM;
1506 }
1507
1508 qi->desc = page_address(desc_page);
1509
1510 qi->desc_status = kcalloc(QI_LENGTH, sizeof(int), GFP_ATOMIC);
1511 if (!qi->desc_status) {
1512 free_page((unsigned long) qi->desc);
1513 kfree(qi);
1514 iommu->qi = NULL;
1515 return -ENOMEM;
1516 }
1517
1518 raw_spin_lock_init(&qi->q_lock);
1519
1520 __dmar_enable_qi(iommu);
1521
1522 return 0;
1523}
1524
1525/* iommu interrupt handling. Most stuff are MSI-like. */
1526
1527enum faulttype {
1528 DMA_REMAP,
1529 INTR_REMAP,
1530 UNKNOWN,
1531};
1532
1533static const char *dma_remap_fault_reasons[] =
1534{
1535 "Software",
1536 "Present bit in root entry is clear",
1537 "Present bit in context entry is clear",
1538 "Invalid context entry",
1539 "Access beyond MGAW",
1540 "PTE Write access is not set",
1541 "PTE Read access is not set",
1542 "Next page table ptr is invalid",
1543 "Root table address invalid",
1544 "Context table ptr is invalid",
1545 "non-zero reserved fields in RTP",
1546 "non-zero reserved fields in CTP",
1547 "non-zero reserved fields in PTE",
1548 "PCE for translation request specifies blocking",
1549};
1550
David Brazdil0f672f62019-12-10 10:32:29 +00001551static const char * const dma_remap_sm_fault_reasons[] = {
1552 "SM: Invalid Root Table Address",
1553 "SM: TTM 0 for request with PASID",
1554 "SM: TTM 0 for page group request",
1555 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x33-0x37 */
1556 "SM: Error attempting to access Root Entry",
1557 "SM: Present bit in Root Entry is clear",
1558 "SM: Non-zero reserved field set in Root Entry",
1559 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x3B-0x3F */
1560 "SM: Error attempting to access Context Entry",
1561 "SM: Present bit in Context Entry is clear",
1562 "SM: Non-zero reserved field set in the Context Entry",
1563 "SM: Invalid Context Entry",
1564 "SM: DTE field in Context Entry is clear",
1565 "SM: PASID Enable field in Context Entry is clear",
1566 "SM: PASID is larger than the max in Context Entry",
1567 "SM: PRE field in Context-Entry is clear",
1568 "SM: RID_PASID field error in Context-Entry",
1569 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x49-0x4F */
1570 "SM: Error attempting to access the PASID Directory Entry",
1571 "SM: Present bit in Directory Entry is clear",
1572 "SM: Non-zero reserved field set in PASID Directory Entry",
1573 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x53-0x57 */
1574 "SM: Error attempting to access PASID Table Entry",
1575 "SM: Present bit in PASID Table Entry is clear",
1576 "SM: Non-zero reserved field set in PASID Table Entry",
1577 "SM: Invalid Scalable-Mode PASID Table Entry",
1578 "SM: ERE field is clear in PASID Table Entry",
1579 "SM: SRE field is clear in PASID Table Entry",
1580 "Unknown", "Unknown",/* 0x5E-0x5F */
1581 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x60-0x67 */
1582 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x68-0x6F */
1583 "SM: Error attempting to access first-level paging entry",
1584 "SM: Present bit in first-level paging entry is clear",
1585 "SM: Non-zero reserved field set in first-level paging entry",
1586 "SM: Error attempting to access FL-PML4 entry",
1587 "SM: First-level entry address beyond MGAW in Nested translation",
1588 "SM: Read permission error in FL-PML4 entry in Nested translation",
1589 "SM: Read permission error in first-level paging entry in Nested translation",
1590 "SM: Write permission error in first-level paging entry in Nested translation",
1591 "SM: Error attempting to access second-level paging entry",
1592 "SM: Read/Write permission error in second-level paging entry",
1593 "SM: Non-zero reserved field set in second-level paging entry",
1594 "SM: Invalid second-level page table pointer",
1595 "SM: A/D bit update needed in second-level entry when set up in no snoop",
1596 "Unknown", "Unknown", "Unknown", /* 0x7D-0x7F */
1597 "SM: Address in first-level translation is not canonical",
1598 "SM: U/S set 0 for first-level translation with user privilege",
1599 "SM: No execute permission for request with PASID and ER=1",
1600 "SM: Address beyond the DMA hardware max",
1601 "SM: Second-level entry address beyond the max",
1602 "SM: No write permission for Write/AtomicOp request",
1603 "SM: No read permission for Read/AtomicOp request",
1604 "SM: Invalid address-interrupt address",
1605 "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x88-0x8F */
1606 "SM: A/D bit update needed in first-level entry when set up in no snoop",
1607};
1608
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001609static const char *irq_remap_fault_reasons[] =
1610{
1611 "Detected reserved fields in the decoded interrupt-remapped request",
1612 "Interrupt index exceeded the interrupt-remapping table size",
1613 "Present field in the IRTE entry is clear",
1614 "Error accessing interrupt-remapping table pointed by IRTA_REG",
1615 "Detected reserved fields in the IRTE entry",
1616 "Blocked a compatibility format interrupt request",
1617 "Blocked an interrupt request due to source-id verification failure",
1618};
1619
1620static const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type)
1621{
1622 if (fault_reason >= 0x20 && (fault_reason - 0x20 <
1623 ARRAY_SIZE(irq_remap_fault_reasons))) {
1624 *fault_type = INTR_REMAP;
1625 return irq_remap_fault_reasons[fault_reason - 0x20];
David Brazdil0f672f62019-12-10 10:32:29 +00001626 } else if (fault_reason >= 0x30 && (fault_reason - 0x30 <
1627 ARRAY_SIZE(dma_remap_sm_fault_reasons))) {
1628 *fault_type = DMA_REMAP;
1629 return dma_remap_sm_fault_reasons[fault_reason - 0x30];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001630 } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) {
1631 *fault_type = DMA_REMAP;
1632 return dma_remap_fault_reasons[fault_reason];
1633 } else {
1634 *fault_type = UNKNOWN;
1635 return "Unknown";
1636 }
1637}
1638
1639
1640static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq)
1641{
1642 if (iommu->irq == irq)
1643 return DMAR_FECTL_REG;
1644 else if (iommu->pr_irq == irq)
1645 return DMAR_PECTL_REG;
1646 else
1647 BUG();
1648}
1649
1650void dmar_msi_unmask(struct irq_data *data)
1651{
1652 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
1653 int reg = dmar_msi_reg(iommu, data->irq);
1654 unsigned long flag;
1655
1656 /* unmask it */
1657 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1658 writel(0, iommu->reg + reg);
1659 /* Read a reg to force flush the post write */
1660 readl(iommu->reg + reg);
1661 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1662}
1663
1664void dmar_msi_mask(struct irq_data *data)
1665{
1666 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
1667 int reg = dmar_msi_reg(iommu, data->irq);
1668 unsigned long flag;
1669
1670 /* mask it */
1671 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1672 writel(DMA_FECTL_IM, iommu->reg + reg);
1673 /* Read a reg to force flush the post write */
1674 readl(iommu->reg + reg);
1675 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1676}
1677
1678void dmar_msi_write(int irq, struct msi_msg *msg)
1679{
1680 struct intel_iommu *iommu = irq_get_handler_data(irq);
1681 int reg = dmar_msi_reg(iommu, irq);
1682 unsigned long flag;
1683
1684 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1685 writel(msg->data, iommu->reg + reg + 4);
1686 writel(msg->address_lo, iommu->reg + reg + 8);
1687 writel(msg->address_hi, iommu->reg + reg + 12);
1688 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1689}
1690
1691void dmar_msi_read(int irq, struct msi_msg *msg)
1692{
1693 struct intel_iommu *iommu = irq_get_handler_data(irq);
1694 int reg = dmar_msi_reg(iommu, irq);
1695 unsigned long flag;
1696
1697 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1698 msg->data = readl(iommu->reg + reg + 4);
1699 msg->address_lo = readl(iommu->reg + reg + 8);
1700 msg->address_hi = readl(iommu->reg + reg + 12);
1701 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1702}
1703
1704static int dmar_fault_do_one(struct intel_iommu *iommu, int type,
David Brazdil0f672f62019-12-10 10:32:29 +00001705 u8 fault_reason, int pasid, u16 source_id,
1706 unsigned long long addr)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001707{
1708 const char *reason;
1709 int fault_type;
1710
1711 reason = dmar_get_fault_reason(fault_reason, &fault_type);
1712
1713 if (fault_type == INTR_REMAP)
1714 pr_err("[INTR-REMAP] Request device [%02x:%02x.%d] fault index %llx [fault reason %02d] %s\n",
1715 source_id >> 8, PCI_SLOT(source_id & 0xFF),
1716 PCI_FUNC(source_id & 0xFF), addr >> 48,
1717 fault_reason, reason);
1718 else
David Brazdil0f672f62019-12-10 10:32:29 +00001719 pr_err("[%s] Request device [%02x:%02x.%d] PASID %x fault addr %llx [fault reason %02d] %s\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001720 type ? "DMA Read" : "DMA Write",
1721 source_id >> 8, PCI_SLOT(source_id & 0xFF),
David Brazdil0f672f62019-12-10 10:32:29 +00001722 PCI_FUNC(source_id & 0xFF), pasid, addr,
1723 fault_reason, reason);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001724 return 0;
1725}
1726
1727#define PRIMARY_FAULT_REG_LEN (16)
1728irqreturn_t dmar_fault(int irq, void *dev_id)
1729{
1730 struct intel_iommu *iommu = dev_id;
1731 int reg, fault_index;
1732 u32 fault_status;
1733 unsigned long flag;
1734 static DEFINE_RATELIMIT_STATE(rs,
1735 DEFAULT_RATELIMIT_INTERVAL,
1736 DEFAULT_RATELIMIT_BURST);
1737
1738 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1739 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
1740 if (fault_status && __ratelimit(&rs))
1741 pr_err("DRHD: handling fault status reg %x\n", fault_status);
1742
1743 /* TBD: ignore advanced fault log currently */
1744 if (!(fault_status & DMA_FSTS_PPF))
1745 goto unlock_exit;
1746
1747 fault_index = dma_fsts_fault_record_index(fault_status);
1748 reg = cap_fault_reg_offset(iommu->cap);
1749 while (1) {
1750 /* Disable printing, simply clear the fault when ratelimited */
1751 bool ratelimited = !__ratelimit(&rs);
1752 u8 fault_reason;
1753 u16 source_id;
1754 u64 guest_addr;
David Brazdil0f672f62019-12-10 10:32:29 +00001755 int type, pasid;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001756 u32 data;
David Brazdil0f672f62019-12-10 10:32:29 +00001757 bool pasid_present;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001758
1759 /* highest 32 bits */
1760 data = readl(iommu->reg + reg +
1761 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1762 if (!(data & DMA_FRCD_F))
1763 break;
1764
1765 if (!ratelimited) {
1766 fault_reason = dma_frcd_fault_reason(data);
1767 type = dma_frcd_type(data);
1768
David Brazdil0f672f62019-12-10 10:32:29 +00001769 pasid = dma_frcd_pasid_value(data);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001770 data = readl(iommu->reg + reg +
1771 fault_index * PRIMARY_FAULT_REG_LEN + 8);
1772 source_id = dma_frcd_source_id(data);
1773
David Brazdil0f672f62019-12-10 10:32:29 +00001774 pasid_present = dma_frcd_pasid_present(data);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001775 guest_addr = dmar_readq(iommu->reg + reg +
1776 fault_index * PRIMARY_FAULT_REG_LEN);
1777 guest_addr = dma_frcd_page_addr(guest_addr);
1778 }
1779
1780 /* clear the fault */
1781 writel(DMA_FRCD_F, iommu->reg + reg +
1782 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1783
1784 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1785
1786 if (!ratelimited)
David Brazdil0f672f62019-12-10 10:32:29 +00001787 /* Using pasid -1 if pasid is not present */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001788 dmar_fault_do_one(iommu, type, fault_reason,
David Brazdil0f672f62019-12-10 10:32:29 +00001789 pasid_present ? pasid : -1,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001790 source_id, guest_addr);
1791
1792 fault_index++;
1793 if (fault_index >= cap_num_fault_regs(iommu->cap))
1794 fault_index = 0;
1795 raw_spin_lock_irqsave(&iommu->register_lock, flag);
1796 }
1797
1798 writel(DMA_FSTS_PFO | DMA_FSTS_PPF | DMA_FSTS_PRO,
1799 iommu->reg + DMAR_FSTS_REG);
1800
1801unlock_exit:
1802 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
1803 return IRQ_HANDLED;
1804}
1805
1806int dmar_set_interrupt(struct intel_iommu *iommu)
1807{
1808 int irq, ret;
1809
1810 /*
1811 * Check if the fault interrupt is already initialized.
1812 */
1813 if (iommu->irq)
1814 return 0;
1815
1816 irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu);
1817 if (irq > 0) {
1818 iommu->irq = irq;
1819 } else {
1820 pr_err("No free IRQ vectors\n");
1821 return -EINVAL;
1822 }
1823
1824 ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu);
1825 if (ret)
1826 pr_err("Can't request irq\n");
1827 return ret;
1828}
1829
1830int __init enable_drhd_fault_handling(void)
1831{
1832 struct dmar_drhd_unit *drhd;
1833 struct intel_iommu *iommu;
1834
1835 /*
1836 * Enable fault control interrupt.
1837 */
1838 for_each_iommu(iommu, drhd) {
1839 u32 fault_status;
1840 int ret = dmar_set_interrupt(iommu);
1841
1842 if (ret) {
1843 pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n",
1844 (unsigned long long)drhd->reg_base_addr, ret);
1845 return -1;
1846 }
1847
1848 /*
1849 * Clear any previous faults.
1850 */
1851 dmar_fault(iommu->irq, iommu);
1852 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
1853 writel(fault_status, iommu->reg + DMAR_FSTS_REG);
1854 }
1855
1856 return 0;
1857}
1858
1859/*
1860 * Re-enable Queued Invalidation interface.
1861 */
1862int dmar_reenable_qi(struct intel_iommu *iommu)
1863{
1864 if (!ecap_qis(iommu->ecap))
1865 return -ENOENT;
1866
1867 if (!iommu->qi)
1868 return -ENOENT;
1869
1870 /*
1871 * First disable queued invalidation.
1872 */
1873 dmar_disable_qi(iommu);
1874 /*
1875 * Then enable queued invalidation again. Since there is no pending
1876 * invalidation requests now, it's safe to re-enable queued
1877 * invalidation.
1878 */
1879 __dmar_enable_qi(iommu);
1880
1881 return 0;
1882}
1883
1884/*
1885 * Check interrupt remapping support in DMAR table description.
1886 */
1887int __init dmar_ir_support(void)
1888{
1889 struct acpi_table_dmar *dmar;
1890 dmar = (struct acpi_table_dmar *)dmar_tbl;
1891 if (!dmar)
1892 return 0;
1893 return dmar->flags & 0x1;
1894}
1895
1896/* Check whether DMAR units are in use */
1897static inline bool dmar_in_use(void)
1898{
1899 return irq_remapping_enabled || intel_iommu_enabled;
1900}
1901
1902static int __init dmar_free_unused_resources(void)
1903{
1904 struct dmar_drhd_unit *dmaru, *dmaru_n;
1905
1906 if (dmar_in_use())
1907 return 0;
1908
1909 if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units))
1910 bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb);
1911
1912 down_write(&dmar_global_lock);
1913 list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) {
1914 list_del(&dmaru->list);
1915 dmar_free_drhd(dmaru);
1916 }
1917 up_write(&dmar_global_lock);
1918
1919 return 0;
1920}
1921
1922late_initcall(dmar_free_unused_resources);
1923IOMMU_INIT_POST(detect_intel_iommu);
1924
1925/*
1926 * DMAR Hotplug Support
1927 * For more details, please refer to Intel(R) Virtualization Technology
1928 * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8
1929 * "Remapping Hardware Unit Hot Plug".
1930 */
1931static guid_t dmar_hp_guid =
1932 GUID_INIT(0xD8C1A3A6, 0xBE9B, 0x4C9B,
1933 0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF);
1934
1935/*
1936 * Currently there's only one revision and BIOS will not check the revision id,
1937 * so use 0 for safety.
1938 */
1939#define DMAR_DSM_REV_ID 0
1940#define DMAR_DSM_FUNC_DRHD 1
1941#define DMAR_DSM_FUNC_ATSR 2
1942#define DMAR_DSM_FUNC_RHSA 3
1943
1944static inline bool dmar_detect_dsm(acpi_handle handle, int func)
1945{
1946 return acpi_check_dsm(handle, &dmar_hp_guid, DMAR_DSM_REV_ID, 1 << func);
1947}
1948
1949static int dmar_walk_dsm_resource(acpi_handle handle, int func,
1950 dmar_res_handler_t handler, void *arg)
1951{
1952 int ret = -ENODEV;
1953 union acpi_object *obj;
1954 struct acpi_dmar_header *start;
1955 struct dmar_res_callback callback;
1956 static int res_type[] = {
1957 [DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT,
1958 [DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS,
1959 [DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY,
1960 };
1961
1962 if (!dmar_detect_dsm(handle, func))
1963 return 0;
1964
1965 obj = acpi_evaluate_dsm_typed(handle, &dmar_hp_guid, DMAR_DSM_REV_ID,
1966 func, NULL, ACPI_TYPE_BUFFER);
1967 if (!obj)
1968 return -ENODEV;
1969
1970 memset(&callback, 0, sizeof(callback));
1971 callback.cb[res_type[func]] = handler;
1972 callback.arg[res_type[func]] = arg;
1973 start = (struct acpi_dmar_header *)obj->buffer.pointer;
1974 ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback);
1975
1976 ACPI_FREE(obj);
1977
1978 return ret;
1979}
1980
1981static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg)
1982{
1983 int ret;
1984 struct dmar_drhd_unit *dmaru;
1985
1986 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1987 if (!dmaru)
1988 return -ENODEV;
1989
1990 ret = dmar_ir_hotplug(dmaru, true);
1991 if (ret == 0)
1992 ret = dmar_iommu_hotplug(dmaru, true);
1993
1994 return ret;
1995}
1996
1997static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg)
1998{
1999 int i, ret;
2000 struct device *dev;
2001 struct dmar_drhd_unit *dmaru;
2002
2003 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
2004 if (!dmaru)
2005 return 0;
2006
2007 /*
2008 * All PCI devices managed by this unit should have been destroyed.
2009 */
2010 if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt) {
2011 for_each_active_dev_scope(dmaru->devices,
2012 dmaru->devices_cnt, i, dev)
2013 return -EBUSY;
2014 }
2015
2016 ret = dmar_ir_hotplug(dmaru, false);
2017 if (ret == 0)
2018 ret = dmar_iommu_hotplug(dmaru, false);
2019
2020 return ret;
2021}
2022
2023static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg)
2024{
2025 struct dmar_drhd_unit *dmaru;
2026
2027 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
2028 if (dmaru) {
2029 list_del_rcu(&dmaru->list);
2030 synchronize_rcu();
2031 dmar_free_drhd(dmaru);
2032 }
2033
2034 return 0;
2035}
2036
2037static int dmar_hotplug_insert(acpi_handle handle)
2038{
2039 int ret;
2040 int drhd_count = 0;
2041
2042 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2043 &dmar_validate_one_drhd, (void *)1);
2044 if (ret)
2045 goto out;
2046
2047 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2048 &dmar_parse_one_drhd, (void *)&drhd_count);
2049 if (ret == 0 && drhd_count == 0) {
2050 pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n");
2051 goto out;
2052 } else if (ret) {
2053 goto release_drhd;
2054 }
2055
2056 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA,
2057 &dmar_parse_one_rhsa, NULL);
2058 if (ret)
2059 goto release_drhd;
2060
2061 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2062 &dmar_parse_one_atsr, NULL);
2063 if (ret)
2064 goto release_atsr;
2065
2066 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2067 &dmar_hp_add_drhd, NULL);
2068 if (!ret)
2069 return 0;
2070
2071 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2072 &dmar_hp_remove_drhd, NULL);
2073release_atsr:
2074 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2075 &dmar_release_one_atsr, NULL);
2076release_drhd:
2077 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2078 &dmar_hp_release_drhd, NULL);
2079out:
2080 return ret;
2081}
2082
2083static int dmar_hotplug_remove(acpi_handle handle)
2084{
2085 int ret;
2086
2087 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2088 &dmar_check_one_atsr, NULL);
2089 if (ret)
2090 return ret;
2091
2092 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2093 &dmar_hp_remove_drhd, NULL);
2094 if (ret == 0) {
2095 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
2096 &dmar_release_one_atsr, NULL));
2097 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2098 &dmar_hp_release_drhd, NULL));
2099 } else {
2100 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
2101 &dmar_hp_add_drhd, NULL);
2102 }
2103
2104 return ret;
2105}
2106
2107static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl,
2108 void *context, void **retval)
2109{
2110 acpi_handle *phdl = retval;
2111
2112 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2113 *phdl = handle;
2114 return AE_CTRL_TERMINATE;
2115 }
2116
2117 return AE_OK;
2118}
2119
2120static int dmar_device_hotplug(acpi_handle handle, bool insert)
2121{
2122 int ret;
2123 acpi_handle tmp = NULL;
2124 acpi_status status;
2125
2126 if (!dmar_in_use())
2127 return 0;
2128
2129 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2130 tmp = handle;
2131 } else {
2132 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2133 ACPI_UINT32_MAX,
2134 dmar_get_dsm_handle,
2135 NULL, NULL, &tmp);
2136 if (ACPI_FAILURE(status)) {
2137 pr_warn("Failed to locate _DSM method.\n");
2138 return -ENXIO;
2139 }
2140 }
2141 if (tmp == NULL)
2142 return 0;
2143
2144 down_write(&dmar_global_lock);
2145 if (insert)
2146 ret = dmar_hotplug_insert(tmp);
2147 else
2148 ret = dmar_hotplug_remove(tmp);
2149 up_write(&dmar_global_lock);
2150
2151 return ret;
2152}
2153
2154int dmar_device_add(acpi_handle handle)
2155{
2156 return dmar_device_hotplug(handle, true);
2157}
2158
2159int dmar_device_remove(acpi_handle handle)
2160{
2161 return dmar_device_hotplug(handle, false);
2162}
David Brazdil0f672f62019-12-10 10:32:29 +00002163
2164/*
2165 * dmar_platform_optin - Is %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in DMAR table
2166 *
2167 * Returns true if the platform has %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in
2168 * the ACPI DMAR table. This means that the platform boot firmware has made
2169 * sure no device can issue DMA outside of RMRR regions.
2170 */
2171bool dmar_platform_optin(void)
2172{
2173 struct acpi_table_dmar *dmar;
2174 acpi_status status;
2175 bool ret;
2176
2177 status = acpi_get_table(ACPI_SIG_DMAR, 0,
2178 (struct acpi_table_header **)&dmar);
2179 if (ACPI_FAILURE(status))
2180 return false;
2181
2182 ret = !!(dmar->flags & DMAR_PLATFORM_OPT_IN);
2183 acpi_put_table((struct acpi_table_header *)dmar);
2184
2185 return ret;
2186}
2187EXPORT_SYMBOL_GPL(dmar_platform_optin);