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