Thomas Gleixner | 3b20eb2 | 2019-05-29 16:57:35 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2006, Intel Corporation. |
| 4 | * |
mark gross | 98bcef5 | 2008-02-23 15:23:35 -0800 | [diff] [blame] | 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> |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 9 | * |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 10 | * This file implements early detection/parsing of Remapping Devices |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 11 | * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI |
| 12 | * tables. |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 13 | * |
| 14 | * These routines are used by both DMA-remapping and Interrupt-remapping |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 17 | #define pr_fmt(fmt) "DMAR: " fmt |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 18 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 19 | #include <linux/pci.h> |
| 20 | #include <linux/dmar.h> |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 21 | #include <linux/iova.h> |
| 22 | #include <linux/intel-iommu.h> |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 23 | #include <linux/timer.h> |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 24 | #include <linux/irq.h> |
| 25 | #include <linux/interrupt.h> |
Shane Wang | 69575d3 | 2009-09-01 18:25:07 -0700 | [diff] [blame] | 26 | #include <linux/tboot.h> |
Len Brown | eb27cae | 2009-07-06 23:40:19 -0400 | [diff] [blame] | 27 | #include <linux/dmi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 29 | #include <linux/iommu.h> |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 30 | #include <linux/numa.h> |
Daniel Drake | da72a37 | 2020-03-12 14:09:55 +0800 | [diff] [blame] | 31 | #include <linux/limits.h> |
Suresh Siddha | 8a8f422 | 2012-03-30 11:47:08 -0700 | [diff] [blame] | 32 | #include <asm/irq_remapping.h> |
Konrad Rzeszutek Wilk | 4db77ff | 2010-08-26 13:58:04 -0400 | [diff] [blame] | 33 | #include <asm/iommu_table.h> |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 34 | |
Joerg Roedel | 672cf6d | 2020-06-09 15:03:03 +0200 | [diff] [blame] | 35 | #include "../irq_remapping.h" |
Joerg Roedel | 078e1ee | 2012-09-26 12:44:43 +0200 | [diff] [blame] | 36 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 37 | typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *); |
| 38 | struct 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 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 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 |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 56 | */ |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 57 | DECLARE_RWSEM(dmar_global_lock); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 58 | LIST_HEAD(dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 59 | |
Suresh Siddha | 41750d3 | 2011-08-23 17:05:18 -0700 | [diff] [blame] | 60 | struct acpi_table_header * __initdata dmar_tbl; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 61 | static int dmar_dev_scope_status = 1; |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 62 | static unsigned long dmar_seq_ids[BITS_TO_LONGS(DMAR_UNITS_SUPPORTED)]; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 63 | |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 64 | static int alloc_iommu(struct dmar_drhd_unit *drhd); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 65 | static void free_iommu(struct intel_iommu *iommu); |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 66 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 67 | extern const struct iommu_ops intel_iommu_ops; |
| 68 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 69 | static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd) |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 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) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 76 | list_add_tail_rcu(&drhd->list, &dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 77 | else |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 78 | list_add_rcu(&drhd->list, &dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 81 | void *dmar_alloc_dev_scope(void *start, void *end, int *cnt) |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 82 | { |
| 83 | struct acpi_dmar_device_scope *scope; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 84 | |
| 85 | *cnt = 0; |
| 86 | while (start < end) { |
| 87 | scope = start; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 88 | if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE || |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 89 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 90 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) |
| 91 | (*cnt)++; |
Linn Crosetto | ae3e7f3 | 2013-04-23 12:26:45 -0600 | [diff] [blame] | 92 | else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && |
| 93 | scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 94 | pr_warn("Unsupported device scope\n"); |
Yinghai Lu | 5715f0f | 2010-04-08 19:58:22 +0100 | [diff] [blame] | 95 | } |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 96 | start += scope->length; |
| 97 | } |
| 98 | if (*cnt == 0) |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 99 | return NULL; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 100 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 101 | return kcalloc(*cnt, sizeof(struct dmar_dev_scope), GFP_KERNEL); |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 102 | } |
| 103 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 104 | void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt) |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 105 | { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 106 | int i; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 107 | struct device *tmp_dev; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 108 | |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 109 | if (*devices && *cnt) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 110 | for_each_active_dev_scope(*devices, *cnt, i, tmp_dev) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 111 | put_device(tmp_dev); |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 112 | kfree(*devices); |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 113 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 114 | |
| 115 | *devices = NULL; |
| 116 | *cnt = 0; |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 117 | } |
| 118 | |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 119 | /* Optimize out kzalloc()/kfree() for normal cases */ |
| 120 | static char dmar_pci_notify_info_buf[64]; |
| 121 | |
| 122 | static struct dmar_pci_notify_info * |
| 123 | dmar_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 | |
Daniel Drake | da72a37 | 2020-03-12 14:09:55 +0800 | [diff] [blame] | 132 | /* |
| 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 | |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 139 | /* 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 | |
Gustavo A. R. Silva | 553d66c | 2019-04-18 13:46:24 -0500 | [diff] [blame] | 144 | size = struct_size(info, path, level); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 145 | 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)); |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 152 | if (dmar_dev_scope_status == 0) |
| 153 | dmar_dev_scope_status = -ENOMEM; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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) { |
Jiang Liu | 5ae0566 | 2014-04-15 10:35:35 +0800 | [diff] [blame] | 163 | for (tmp = dev; tmp; tmp = tmp->bus->self) { |
| 164 | level--; |
Joerg Roedel | 5738459 | 2014-10-02 11:50:25 +0200 | [diff] [blame] | 165 | info->path[level].bus = tmp->bus->number; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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 | |
| 176 | static 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 | |
| 182 | static 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) |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 188 | goto fallback; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 189 | if (info->level != count) |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 190 | goto fallback; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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) |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 195 | goto fallback; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | return true; |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 199 | |
| 200 | fallback: |
| 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; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /* Return: > 0 if match found, 0 if no match found, < 0 if error happens */ |
| 218 | int dmar_insert_dev_scope(struct dmar_pci_notify_info *info, |
| 219 | void *start, void*end, u16 segment, |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 220 | struct dmar_dev_scope *devices, |
| 221 | int devices_cnt) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 222 | { |
| 223 | int i, level; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 224 | struct device *tmp, *dev = &info->dev->dev; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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 | |
Roland Dreier | ffb2d1e | 2016-06-02 17:46:10 -0700 | [diff] [blame] | 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 && |
jimyan | 5329162 | 2020-01-15 11:03:55 +0800 | [diff] [blame] | 255 | info->dev->class >> 16 != PCI_BASE_CLASS_BRIDGE))) { |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 256 | pr_warn("Device scope type does not match for %s\n", |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 257 | pci_name(info->dev)); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 258 | return -EINVAL; |
| 259 | } |
| 260 | |
| 261 | for_each_dev_scope(devices, devices_cnt, i, tmp) |
| 262 | if (tmp == NULL) { |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 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)); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 267 | return 1; |
| 268 | } |
| 269 | BUG_ON(i >= devices_cnt); |
| 270 | } |
| 271 | |
| 272 | return 0; |
| 273 | } |
| 274 | |
| 275 | int dmar_remove_dev_scope(struct dmar_pci_notify_info *info, u16 segment, |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 276 | struct dmar_dev_scope *devices, int count) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 277 | { |
| 278 | int index; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 279 | struct device *tmp; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 280 | |
| 281 | if (info->seg != segment) |
| 282 | return 0; |
| 283 | |
| 284 | for_each_active_dev_scope(devices, count, index, tmp) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 285 | if (tmp == &info->dev->dev) { |
Andreea-Cristina Bernat | eecbad7 | 2014-08-18 15:20:56 +0300 | [diff] [blame] | 286 | RCU_INIT_POINTER(devices[index].dev, NULL); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 287 | synchronize_rcu(); |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 288 | put_device(tmp); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 289 | return 1; |
| 290 | } |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static 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); |
Andy Shevchenko | f980807 | 2017-03-16 16:23:54 +0200 | [diff] [blame] | 311 | if (ret) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 312 | break; |
| 313 | } |
| 314 | if (ret >= 0) |
| 315 | ret = dmar_iommu_notify_scope_dev(info); |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 316 | if (ret < 0 && dmar_dev_scope_status == 0) |
| 317 | dmar_dev_scope_status = ret; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 318 | |
| 319 | return ret; |
| 320 | } |
| 321 | |
| 322 | static 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 | |
| 333 | static 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 | |
Ashok Raj | 1c38718 | 2016-10-21 15:32:05 -0700 | [diff] [blame] | 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. */ |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 342 | if (pdev->is_virtfn) |
| 343 | return NOTIFY_DONE; |
Joerg Roedel | e6a8c9b | 2016-02-29 23:49:47 +0100 | [diff] [blame] | 344 | if (action != BUS_NOTIFY_ADD_DEVICE && |
| 345 | action != BUS_NOTIFY_REMOVED_DEVICE) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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); |
Joerg Roedel | e6a8c9b | 2016-02-29 23:49:47 +0100 | [diff] [blame] | 355 | else if (action == BUS_NOTIFY_REMOVED_DEVICE) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 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 | |
| 364 | static struct notifier_block dmar_pci_bus_nb = { |
| 365 | .notifier_call = dmar_pci_bus_notifier, |
| 366 | .priority = INT_MIN, |
| 367 | }; |
| 368 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 369 | static struct dmar_drhd_unit * |
| 370 | dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd) |
| 371 | { |
| 372 | struct dmar_drhd_unit *dmaru; |
| 373 | |
Qian Cai | f5152416 | 2020-03-05 15:15:02 -0500 | [diff] [blame] | 374 | list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list, |
| 375 | dmar_rcu_check()) |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 376 | if (dmaru->segment == drhd->segment && |
| 377 | dmaru->reg_base_addr == drhd->address) |
| 378 | return dmaru; |
| 379 | |
| 380 | return NULL; |
| 381 | } |
| 382 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 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 | */ |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 388 | static int dmar_parse_one_drhd(struct acpi_dmar_header *header, void *arg) |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 389 | { |
| 390 | struct acpi_dmar_hardware_unit *drhd; |
| 391 | struct dmar_drhd_unit *dmaru; |
Andy Shevchenko | 3f6db65 | 2017-03-16 16:23:53 +0200 | [diff] [blame] | 392 | int ret; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 393 | |
David Woodhouse | e523b38 | 2009-04-10 22:27:48 -0700 | [diff] [blame] | 394 | drhd = (struct acpi_dmar_hardware_unit *)header; |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 395 | dmaru = dmar_find_dmaru(drhd); |
| 396 | if (dmaru) |
| 397 | goto out; |
| 398 | |
| 399 | dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 400 | if (!dmaru) |
| 401 | return -ENOMEM; |
| 402 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 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); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 409 | dmaru->reg_base_addr = drhd->address; |
David Woodhouse | 276dbf99 | 2009-04-04 01:45:37 +0100 | [diff] [blame] | 410 | dmaru->segment = drhd->segment; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 411 | dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */ |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 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; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 418 | } |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 419 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 420 | ret = alloc_iommu(dmaru); |
| 421 | if (ret) { |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 422 | dmar_free_dev_scope(&dmaru->devices, |
| 423 | &dmaru->devices_cnt); |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 424 | kfree(dmaru); |
| 425 | return ret; |
| 426 | } |
| 427 | dmar_register_drhd_unit(dmaru); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 428 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 429 | out: |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 430 | if (arg) |
| 431 | (*(int *)arg)++; |
| 432 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 433 | return 0; |
| 434 | } |
| 435 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 436 | static 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 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 445 | static int __init dmar_parse_one_andd(struct acpi_dmar_header *header, |
| 446 | void *arg) |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 447 | { |
| 448 | struct acpi_dmar_andd *andd = (void *)header; |
| 449 | |
| 450 | /* Check for NUL termination within the designated length */ |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 451 | if (strnlen(andd->device_name, header->length - 8) == header->length - 8) { |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 452 | pr_warn(FW_BUG |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 453 | "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)); |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 458 | add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 459 | return -EINVAL; |
| 460 | } |
| 461 | pr_info("ANDD device: %x name: %s\n", andd->device_number, |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 462 | andd->device_name); |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 463 | |
| 464 | return 0; |
| 465 | } |
| 466 | |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 467 | #ifdef CONFIG_ACPI_NUMA |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 468 | static int dmar_parse_one_rhsa(struct acpi_dmar_header *header, void *arg) |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 469 | { |
| 470 | struct acpi_dmar_rhsa *rhsa; |
| 471 | struct dmar_drhd_unit *drhd; |
| 472 | |
| 473 | rhsa = (struct acpi_dmar_rhsa *)header; |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 474 | for_each_drhd_unit(drhd) { |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 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)) |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 479 | node = NUMA_NO_NODE; |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 480 | drhd->iommu->node = node; |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 481 | return 0; |
| 482 | } |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 483 | } |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 484 | pr_warn(FW_BUG |
Ben Hutchings | fd0c889 | 2010-04-03 19:38:43 +0100 | [diff] [blame] | 485 | "Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n" |
| 486 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
Zhenzhong Duan | b0bb0c2 | 2020-03-12 14:09:54 +0800 | [diff] [blame] | 487 | rhsa->base_address, |
Ben Hutchings | fd0c889 | 2010-04-03 19:38:43 +0100 | [diff] [blame] | 488 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 489 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 490 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 491 | add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 492 | |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 493 | return 0; |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 494 | } |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 495 | #else |
| 496 | #define dmar_parse_one_rhsa dmar_res_noop |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 497 | #endif |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 498 | |
Arnd Bergmann | 3bd71e1 | 2017-09-12 22:10:21 +0200 | [diff] [blame] | 499 | static void |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 500 | dmar_table_print_dmar_entry(struct acpi_dmar_header *header) |
| 501 | { |
| 502 | struct acpi_dmar_hardware_unit *drhd; |
| 503 | struct acpi_dmar_reserved_memory *rmrr; |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 504 | struct acpi_dmar_atsr *atsr; |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 505 | struct acpi_dmar_rhsa *rhsa; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 506 | |
| 507 | switch (header->type) { |
| 508 | case ACPI_DMAR_TYPE_HARDWARE_UNIT: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 509 | drhd = container_of(header, struct acpi_dmar_hardware_unit, |
| 510 | header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 511 | pr_info("DRHD base: %#016Lx flags: %#x\n", |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 512 | (unsigned long long)drhd->address, drhd->flags); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 513 | break; |
| 514 | case ACPI_DMAR_TYPE_RESERVED_MEMORY: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 515 | rmrr = container_of(header, struct acpi_dmar_reserved_memory, |
| 516 | header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 517 | pr_info("RMRR base: %#016Lx end: %#016Lx\n", |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 518 | (unsigned long long)rmrr->base_address, |
| 519 | (unsigned long long)rmrr->end_address); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 520 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 521 | case ACPI_DMAR_TYPE_ROOT_ATS: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 522 | atsr = container_of(header, struct acpi_dmar_atsr, header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 523 | pr_info("ATSR flags: %#x\n", atsr->flags); |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 524 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 525 | case ACPI_DMAR_TYPE_HARDWARE_AFFINITY: |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 526 | rhsa = container_of(header, struct acpi_dmar_rhsa, header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 527 | pr_info("RHSA base: %#016Lx proximity domain: %#x\n", |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 528 | (unsigned long long)rhsa->base_address, |
| 529 | rhsa->proximity_domain); |
| 530 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 531 | case ACPI_DMAR_TYPE_NAMESPACE: |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 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; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 538 | /** |
| 539 | * dmar_table_detect - checks to see if the platform supports DMAR devices |
| 540 | */ |
| 541 | static 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 */ |
Lv Zheng | 6b11d1d | 2016-12-14 15:04:39 +0800 | [diff] [blame] | 546 | status = acpi_get_table(ACPI_SIG_DMAR, 0, &dmar_tbl); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 547 | |
| 548 | if (ACPI_SUCCESS(status) && !dmar_tbl) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 549 | pr_warn("Unable to map DMAR\n"); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 550 | status = AE_NOT_FOUND; |
| 551 | } |
| 552 | |
Andy Shevchenko | 8326c5d | 2017-03-16 16:23:51 +0200 | [diff] [blame] | 553 | return ACPI_SUCCESS(status) ? 0 : -ENOENT; |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 554 | } |
Suresh Siddha | aaa9d1d | 2008-07-10 11:16:38 -0700 | [diff] [blame] | 555 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 556 | static int dmar_walk_remapping_entries(struct acpi_dmar_header *start, |
| 557 | size_t len, struct dmar_res_callback *cb) |
| 558 | { |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 559 | struct acpi_dmar_header *iter, *next; |
| 560 | struct acpi_dmar_header *end = ((void *)start) + len; |
| 561 | |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 562 | for (iter = start; iter < end; iter = next) { |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 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 */ |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 570 | pr_warn(FW_BUG "Record passes table end\n"); |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 571 | return -EINVAL; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 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]) { |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 582 | int ret; |
| 583 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 584 | ret = cb->cb[iter->type](iter, cb->arg[iter->type]); |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 585 | if (ret) |
| 586 | return ret; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 587 | } else if (!cb->ignore_unhandled) { |
| 588 | pr_warn("No handler for DMAR structure type %d\n", |
| 589 | iter->type); |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 590 | return -EINVAL; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 591 | } |
| 592 | } |
| 593 | |
Andy Shevchenko | 4a8ed2b | 2017-03-16 16:23:52 +0200 | [diff] [blame] | 594 | return 0; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | static 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 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 604 | /** |
| 605 | * parse_dmar_table - parses the DMA reporting table |
| 606 | */ |
| 607 | static int __init |
| 608 | parse_dmar_table(void) |
| 609 | { |
| 610 | struct acpi_table_dmar *dmar; |
Li, Zhen-Hua | 7cef334 | 2013-05-20 15:57:32 +0800 | [diff] [blame] | 611 | int drhd_count = 0; |
Andy Shevchenko | 3f6db65 | 2017-03-16 16:23:53 +0200 | [diff] [blame] | 612 | int ret; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 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 | }; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 623 | |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 624 | /* |
| 625 | * Do it again, earlier dmar_tbl mapping could be mapped with |
| 626 | * fixed map. |
| 627 | */ |
| 628 | dmar_table_detect(); |
| 629 | |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 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 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 636 | dmar = (struct acpi_table_dmar *)dmar_tbl; |
| 637 | if (!dmar) |
| 638 | return -ENODEV; |
| 639 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 640 | if (dmar->width < PAGE_SHIFT - 1) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 641 | pr_warn("Invalid DMAR haw\n"); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 642 | return -EINVAL; |
| 643 | } |
| 644 | |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 645 | pr_info("Host address width %d\n", dmar->width + 1); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 646 | ret = dmar_walk_dmar_table(dmar, &cb); |
| 647 | if (ret == 0 && drhd_count == 0) |
Li, Zhen-Hua | 7cef334 | 2013-05-20 15:57:32 +0800 | [diff] [blame] | 648 | pr_warn(FW_BUG "No DRHD structure found in DMAR table\n"); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 649 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 650 | return ret; |
| 651 | } |
| 652 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 653 | static int dmar_pci_device_match(struct dmar_dev_scope devices[], |
| 654 | int cnt, struct pci_dev *dev) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 655 | { |
| 656 | int index; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 657 | struct device *tmp; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 658 | |
| 659 | while (dev) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 660 | for_each_active_dev_scope(devices, cnt, index, tmp) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 661 | if (dev_is_pci(tmp) && dev == to_pci_dev(tmp)) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 662 | return 1; |
| 663 | |
| 664 | /* Check our parent */ |
| 665 | dev = dev->bus->self; |
| 666 | } |
| 667 | |
| 668 | return 0; |
| 669 | } |
| 670 | |
| 671 | struct dmar_drhd_unit * |
| 672 | dmar_find_matched_drhd_unit(struct pci_dev *dev) |
| 673 | { |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 674 | struct dmar_drhd_unit *dmaru; |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 675 | struct acpi_dmar_hardware_unit *drhd; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 676 | |
Yinghai | dda5654 | 2010-04-09 01:07:55 +0100 | [diff] [blame] | 677 | dev = pci_physfn(dev); |
| 678 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 679 | rcu_read_lock(); |
Yijing Wang | 8b161f0 | 2013-10-31 17:25:16 +0800 | [diff] [blame] | 680 | for_each_drhd_unit(dmaru) { |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 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)) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 687 | goto out; |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 688 | |
| 689 | if (dmar_pci_device_match(dmaru->devices, |
| 690 | dmaru->devices_cnt, dev)) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 691 | goto out; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 692 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 693 | dmaru = NULL; |
| 694 | out: |
| 695 | rcu_read_unlock(); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 696 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 697 | return dmaru; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 698 | } |
| 699 | |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 700 | static 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) { |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 718 | if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE) |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 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 | |
| 743 | static int __init dmar_acpi_dev_scope_init(void) |
| 744 | { |
Joerg Roedel | 11f1a77 | 2014-03-25 20:16:40 +0100 | [diff] [blame] | 745 | struct acpi_dmar_andd *andd; |
| 746 | |
| 747 | if (dmar_tbl == NULL) |
| 748 | return -ENODEV; |
| 749 | |
David Woodhouse | 7713ec0 | 2014-04-01 14:58:36 +0100 | [diff] [blame] | 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) { |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 753 | if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) { |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 754 | acpi_handle h; |
| 755 | struct acpi_device *adev; |
| 756 | |
| 757 | if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 758 | andd->device_name, |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 759 | &h))) { |
| 760 | pr_err("Failed to find handle for ACPI object %s\n", |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 761 | andd->device_name); |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 762 | continue; |
| 763 | } |
Joerg Roedel | c0df975 | 2014-08-21 23:06:48 +0200 | [diff] [blame] | 764 | if (acpi_bus_get_device(h, &adev)) { |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 765 | pr_err("Failed to get device for ACPI object %s\n", |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 766 | andd->device_name); |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 767 | continue; |
| 768 | } |
| 769 | dmar_acpi_insert_dev_scope(andd->device_number, adev); |
| 770 | } |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 771 | } |
| 772 | return 0; |
| 773 | } |
| 774 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 775 | int __init dmar_dev_scope_init(void) |
| 776 | { |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 777 | struct pci_dev *dev = NULL; |
| 778 | struct dmar_pci_notify_info *info; |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 779 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 780 | if (dmar_dev_scope_status != 1) |
| 781 | return dmar_dev_scope_status; |
Suresh Siddha | c2c7286 | 2011-08-23 17:05:19 -0700 | [diff] [blame] | 782 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 783 | if (list_empty(&dmar_drhd_units)) { |
| 784 | dmar_dev_scope_status = -ENODEV; |
| 785 | } else { |
| 786 | dmar_dev_scope_status = 0; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 787 | |
David Woodhouse | 63b4262 | 2014-03-28 11:28:40 +0000 | [diff] [blame] | 788 | dmar_acpi_dev_scope_init(); |
| 789 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 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 | } |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 803 | } |
| 804 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 805 | return dmar_dev_scope_status; |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 806 | } |
| 807 | |
Dmitry Safonov | d15a339 | 2018-02-12 16:48:20 +0000 | [diff] [blame] | 808 | void __init dmar_register_bus_notifier(void) |
Joerg Roedel | ec154bf | 2017-10-06 15:00:53 +0200 | [diff] [blame] | 809 | { |
| 810 | bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb); |
| 811 | } |
| 812 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 813 | |
| 814 | int __init dmar_table_init(void) |
| 815 | { |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 816 | static int dmar_table_initialized; |
Fenghua Yu | 093f87d | 2007-11-21 15:07:14 -0800 | [diff] [blame] | 817 | int ret; |
| 818 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 819 | if (dmar_table_initialized == 0) { |
| 820 | ret = parse_dmar_table(); |
| 821 | if (ret < 0) { |
| 822 | if (ret != -ENODEV) |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 823 | pr_info("Parse DMAR table failure.\n"); |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 824 | } else if (list_empty(&dmar_drhd_units)) { |
| 825 | pr_info("No DMAR devices found\n"); |
| 826 | ret = -ENODEV; |
| 827 | } |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 828 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 829 | if (ret < 0) |
| 830 | dmar_table_initialized = ret; |
| 831 | else |
| 832 | dmar_table_initialized = 1; |
Fenghua Yu | 093f87d | 2007-11-21 15:07:14 -0800 | [diff] [blame] | 833 | } |
| 834 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 835 | return dmar_table_initialized < 0 ? dmar_table_initialized : 0; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 838 | static void warn_invalid_dmar(u64 addr, const char *message) |
| 839 | { |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 840 | pr_warn_once(FW_BUG |
Ben Hutchings | fd0c889 | 2010-04-03 19:38:43 +0100 | [diff] [blame] | 841 | "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)); |
Hans de Goede | 5983369 | 2020-03-09 15:01:37 +0100 | [diff] [blame] | 847 | add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 848 | } |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 849 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 850 | static int __ref |
| 851 | dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg) |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 852 | { |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 853 | struct acpi_dmar_hardware_unit *drhd; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 854 | void __iomem *addr; |
| 855 | u64 cap, ecap; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 856 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 857 | drhd = (void *)entry; |
| 858 | if (!drhd->address) { |
| 859 | warn_invalid_dmar(0, ""); |
| 860 | return -EINVAL; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 861 | } |
Chris Wright | 2c99220 | 2009-12-02 09:17:13 +0000 | [diff] [blame] | 862 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 863 | if (arg) |
| 864 | addr = ioremap(drhd->address, VTD_PAGE_SIZE); |
| 865 | else |
| 866 | addr = early_ioremap(drhd->address, VTD_PAGE_SIZE); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 867 | if (!addr) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 868 | pr_warn("Can't validate DRHD address: %llx\n", drhd->address); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 869 | return -EINVAL; |
| 870 | } |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 871 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 872 | cap = dmar_readq(addr + DMAR_CAP_REG); |
| 873 | ecap = dmar_readq(addr + DMAR_ECAP_REG); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 874 | |
| 875 | if (arg) |
| 876 | iounmap(addr); |
| 877 | else |
| 878 | early_iounmap(addr, VTD_PAGE_SIZE); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 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 | |
Chris Wright | 2c99220 | 2009-12-02 09:17:13 +0000 | [diff] [blame] | 885 | return 0; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 886 | } |
| 887 | |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 888 | int __init detect_intel_iommu(void) |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 889 | { |
| 890 | int ret; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 891 | struct dmar_res_callback validate_drhd_cb = { |
| 892 | .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd, |
| 893 | .ignore_unhandled = true, |
| 894 | }; |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 895 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 896 | down_write(&dmar_global_lock); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 897 | ret = dmar_table_detect(); |
Andy Shevchenko | 8326c5d | 2017-03-16 16:23:51 +0200 | [diff] [blame] | 898 | if (!ret) |
| 899 | ret = dmar_walk_dmar_table((struct acpi_table_dmar *)dmar_tbl, |
| 900 | &validate_drhd_cb); |
Lu Baolu | 5031060 | 2020-06-23 07:13:43 +0800 | [diff] [blame] | 901 | if (!ret && !no_iommu && !iommu_detected && |
| 902 | (!dmar_disabled || dmar_platform_optin())) { |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 903 | iommu_detected = 1; |
| 904 | /* Make sure ACS will be enabled */ |
| 905 | pci_request_acs(); |
| 906 | } |
Suresh Siddha | f5d1b97 | 2011-08-23 17:05:22 -0700 | [diff] [blame] | 907 | |
FUJITA Tomonori | 9d5ce73 | 2009-11-10 19:46:16 +0900 | [diff] [blame] | 908 | #ifdef CONFIG_X86 |
Deepa Dinamani | 6c3a44e | 2019-11-10 09:27:44 -0800 | [diff] [blame] | 909 | if (!ret) { |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 910 | x86_init.iommu.iommu_init = intel_iommu_init; |
Deepa Dinamani | 6c3a44e | 2019-11-10 09:27:44 -0800 | [diff] [blame] | 911 | x86_platform.iommu_shutdown = intel_iommu_shutdown; |
| 912 | } |
| 913 | |
FUJITA Tomonori | 9d5ce73 | 2009-11-10 19:46:16 +0900 | [diff] [blame] | 914 | #endif |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 915 | |
Rafael J. Wysocki | 696c7f8 | 2017-01-05 02:13:31 +0100 | [diff] [blame] | 916 | if (dmar_tbl) { |
| 917 | acpi_put_table(dmar_tbl); |
| 918 | dmar_tbl = NULL; |
| 919 | } |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 920 | up_write(&dmar_global_lock); |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 921 | |
Andy Shevchenko | 8326c5d | 2017-03-16 16:23:51 +0200 | [diff] [blame] | 922 | return ret ? ret : 1; |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 923 | } |
| 924 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 925 | static void unmap_iommu(struct intel_iommu *iommu) |
| 926 | { |
| 927 | iounmap(iommu->reg); |
| 928 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 929 | } |
| 930 | |
| 931 | /** |
| 932 | * map_iommu: map the iommu's registers |
| 933 | * @iommu: the iommu to map |
| 934 | * @phys_addr: the physical address of the base resgister |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 935 | * |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 936 | * Memory map the iommu's registers. Start w/ a single page, and |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 937 | * possibly expand if that turns out to be insufficent. |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 938 | */ |
| 939 | static int map_iommu(struct intel_iommu *iommu, u64 phys_addr) |
| 940 | { |
| 941 | int map_size, err=0; |
| 942 | |
| 943 | iommu->reg_phys = phys_addr; |
| 944 | iommu->reg_size = VTD_PAGE_SIZE; |
| 945 | |
| 946 | if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 947 | pr_err("Can't reserve memory\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 948 | err = -EBUSY; |
| 949 | goto out; |
| 950 | } |
| 951 | |
| 952 | iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size); |
| 953 | if (!iommu->reg) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 954 | pr_err("Can't map the region\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 955 | err = -ENOMEM; |
| 956 | goto release; |
| 957 | } |
| 958 | |
| 959 | iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG); |
| 960 | iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG); |
| 961 | |
| 962 | if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) { |
| 963 | err = -EINVAL; |
| 964 | warn_invalid_dmar(phys_addr, " returns all ones"); |
| 965 | goto unmap; |
| 966 | } |
Jacob Pan | 3375303 | 2020-05-16 14:20:51 +0800 | [diff] [blame] | 967 | iommu->vccap = dmar_readq(iommu->reg + DMAR_VCCAP_REG); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 968 | |
| 969 | /* the registers might be more than one page */ |
| 970 | map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap), |
| 971 | cap_max_fault_reg_offset(iommu->cap)); |
| 972 | map_size = VTD_PAGE_ALIGN(map_size); |
| 973 | if (map_size > iommu->reg_size) { |
| 974 | iounmap(iommu->reg); |
| 975 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 976 | iommu->reg_size = map_size; |
| 977 | if (!request_mem_region(iommu->reg_phys, iommu->reg_size, |
| 978 | iommu->name)) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 979 | pr_err("Can't reserve memory\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 980 | err = -EBUSY; |
| 981 | goto out; |
| 982 | } |
| 983 | iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size); |
| 984 | if (!iommu->reg) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 985 | pr_err("Can't map the region\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 986 | err = -ENOMEM; |
| 987 | goto release; |
| 988 | } |
| 989 | } |
| 990 | err = 0; |
| 991 | goto out; |
| 992 | |
| 993 | unmap: |
| 994 | iounmap(iommu->reg); |
| 995 | release: |
| 996 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 997 | out: |
| 998 | return err; |
| 999 | } |
| 1000 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1001 | static int dmar_alloc_seq_id(struct intel_iommu *iommu) |
| 1002 | { |
| 1003 | iommu->seq_id = find_first_zero_bit(dmar_seq_ids, |
| 1004 | DMAR_UNITS_SUPPORTED); |
| 1005 | if (iommu->seq_id >= DMAR_UNITS_SUPPORTED) { |
| 1006 | iommu->seq_id = -1; |
| 1007 | } else { |
| 1008 | set_bit(iommu->seq_id, dmar_seq_ids); |
| 1009 | sprintf(iommu->name, "dmar%d", iommu->seq_id); |
| 1010 | } |
| 1011 | |
| 1012 | return iommu->seq_id; |
| 1013 | } |
| 1014 | |
| 1015 | static void dmar_free_seq_id(struct intel_iommu *iommu) |
| 1016 | { |
| 1017 | if (iommu->seq_id >= 0) { |
| 1018 | clear_bit(iommu->seq_id, dmar_seq_ids); |
| 1019 | iommu->seq_id = -1; |
| 1020 | } |
| 1021 | } |
| 1022 | |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 1023 | static int alloc_iommu(struct dmar_drhd_unit *drhd) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1024 | { |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1025 | struct intel_iommu *iommu; |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 1026 | u32 ver, sts; |
Joerg Roedel | 43f7392 | 2009-01-03 23:56:27 +0100 | [diff] [blame] | 1027 | int agaw = 0; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1028 | int msagaw = 0; |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1029 | int err; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1030 | |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 1031 | if (!drhd->reg_base_addr) { |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 1032 | warn_invalid_dmar(0, ""); |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 1033 | return -EINVAL; |
| 1034 | } |
| 1035 | |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1036 | iommu = kzalloc(sizeof(*iommu), GFP_KERNEL); |
| 1037 | if (!iommu) |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 1038 | return -ENOMEM; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1039 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1040 | if (dmar_alloc_seq_id(iommu) < 0) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1041 | pr_err("Failed to allocate seq_id\n"); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1042 | err = -ENOSPC; |
| 1043 | goto error; |
| 1044 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1045 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1046 | err = map_iommu(iommu, drhd->reg_base_addr); |
| 1047 | if (err) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1048 | pr_err("Failed to map %s\n", iommu->name); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1049 | goto error_free_seq_id; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1050 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1051 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1052 | err = -EINVAL; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1053 | agaw = iommu_calculate_agaw(iommu); |
| 1054 | if (agaw < 0) { |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1055 | pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n", |
| 1056 | iommu->seq_id); |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1057 | goto err_unmap; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1058 | } |
| 1059 | msagaw = iommu_calculate_max_sagaw(iommu); |
| 1060 | if (msagaw < 0) { |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1061 | pr_err("Cannot get a valid max agaw for iommu (seq_id = %d)\n", |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1062 | iommu->seq_id); |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1063 | goto err_unmap; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1064 | } |
| 1065 | iommu->agaw = agaw; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1066 | iommu->msagaw = msagaw; |
David Woodhouse | 67ccac4 | 2014-03-09 13:49:45 -0700 | [diff] [blame] | 1067 | iommu->segment = drhd->segment; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1068 | |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 1069 | iommu->node = NUMA_NO_NODE; |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 1070 | |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1071 | ver = readl(iommu->reg + DMAR_VER_REG); |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1072 | pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n", |
| 1073 | iommu->name, |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 1074 | (unsigned long long)drhd->reg_base_addr, |
| 1075 | DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver), |
| 1076 | (unsigned long long)iommu->cap, |
| 1077 | (unsigned long long)iommu->ecap); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1078 | |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 1079 | /* Reflect status in gcmd */ |
| 1080 | sts = readl(iommu->reg + DMAR_GSTS_REG); |
| 1081 | if (sts & DMA_GSTS_IRES) |
| 1082 | iommu->gcmd |= DMA_GCMD_IRE; |
| 1083 | if (sts & DMA_GSTS_TES) |
| 1084 | iommu->gcmd |= DMA_GCMD_TE; |
| 1085 | if (sts & DMA_GSTS_QIES) |
| 1086 | iommu->gcmd |= DMA_GCMD_QIE; |
| 1087 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1088 | raw_spin_lock_init(&iommu->register_lock); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1089 | |
Joerg Roedel | bc84745 | 2016-01-07 12:16:51 +0100 | [diff] [blame] | 1090 | if (intel_iommu_enabled) { |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 1091 | err = iommu_device_sysfs_add(&iommu->iommu, NULL, |
| 1092 | intel_iommu_groups, |
| 1093 | "%s", iommu->name); |
| 1094 | if (err) |
Joerg Roedel | bc84745 | 2016-01-07 12:16:51 +0100 | [diff] [blame] | 1095 | goto err_unmap; |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 1096 | |
| 1097 | iommu_device_set_ops(&iommu->iommu, &intel_iommu_ops); |
| 1098 | |
| 1099 | err = iommu_device_register(&iommu->iommu); |
| 1100 | if (err) |
| 1101 | goto err_unmap; |
Nicholas Krause | 5920337 | 2016-01-04 18:27:57 -0500 | [diff] [blame] | 1102 | } |
| 1103 | |
Joerg Roedel | bc84745 | 2016-01-07 12:16:51 +0100 | [diff] [blame] | 1104 | drhd->iommu = iommu; |
| 1105 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 1106 | return 0; |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1107 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1108 | err_unmap: |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1109 | unmap_iommu(iommu); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1110 | error_free_seq_id: |
| 1111 | dmar_free_seq_id(iommu); |
| 1112 | error: |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1113 | kfree(iommu); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1114 | return err; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1117 | static void free_iommu(struct intel_iommu *iommu) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1118 | { |
Andy Shevchenko | c37a017 | 2017-02-15 16:42:21 +0200 | [diff] [blame] | 1119 | if (intel_iommu_enabled) { |
| 1120 | iommu_device_unregister(&iommu->iommu); |
| 1121 | iommu_device_sysfs_remove(&iommu->iommu); |
| 1122 | } |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 1123 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1124 | if (iommu->irq) { |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1125 | if (iommu->pr_irq) { |
| 1126 | free_irq(iommu->pr_irq, iommu); |
| 1127 | dmar_free_hwirq(iommu->pr_irq); |
| 1128 | iommu->pr_irq = 0; |
| 1129 | } |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1130 | free_irq(iommu->irq, iommu); |
Thomas Gleixner | a553b14 | 2014-05-07 15:44:11 +0000 | [diff] [blame] | 1131 | dmar_free_hwirq(iommu->irq); |
Jiang Liu | 34742db | 2015-04-13 14:11:41 +0800 | [diff] [blame] | 1132 | iommu->irq = 0; |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1133 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1134 | |
Jiang Liu | a84da70 | 2014-01-06 14:18:23 +0800 | [diff] [blame] | 1135 | if (iommu->qi) { |
| 1136 | free_page((unsigned long)iommu->qi->desc); |
| 1137 | kfree(iommu->qi->desc_status); |
| 1138 | kfree(iommu->qi); |
| 1139 | } |
| 1140 | |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1141 | if (iommu->reg) |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1142 | unmap_iommu(iommu); |
| 1143 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1144 | dmar_free_seq_id(iommu); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1145 | kfree(iommu); |
| 1146 | } |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1147 | |
| 1148 | /* |
| 1149 | * Reclaim all the submitted descriptors which have completed its work. |
| 1150 | */ |
| 1151 | static inline void reclaim_free_desc(struct q_inval *qi) |
| 1152 | { |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1153 | while (qi->desc_status[qi->free_tail] == QI_DONE || |
| 1154 | qi->desc_status[qi->free_tail] == QI_ABORT) { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1155 | qi->desc_status[qi->free_tail] = QI_FREE; |
| 1156 | qi->free_tail = (qi->free_tail + 1) % QI_LENGTH; |
| 1157 | qi->free_cnt++; |
| 1158 | } |
| 1159 | } |
| 1160 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1161 | static int qi_check_fault(struct intel_iommu *iommu, int index, int wait_index) |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1162 | { |
| 1163 | u32 fault; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1164 | int head, tail; |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1165 | struct q_inval *qi = iommu->qi; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1166 | int shift = qi_shift(iommu); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1167 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1168 | if (qi->desc_status[wait_index] == QI_ABORT) |
| 1169 | return -EAGAIN; |
| 1170 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1171 | fault = readl(iommu->reg + DMAR_FSTS_REG); |
| 1172 | |
| 1173 | /* |
| 1174 | * If IQE happens, the head points to the descriptor associated |
| 1175 | * with the error. No new descriptors are fetched until the IQE |
| 1176 | * is cleared. |
| 1177 | */ |
| 1178 | if (fault & DMA_FSTS_IQE) { |
| 1179 | head = readl(iommu->reg + DMAR_IQH_REG); |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1180 | if ((head >> shift) == index) { |
| 1181 | struct qi_desc *desc = qi->desc + head; |
| 1182 | |
| 1183 | /* |
| 1184 | * desc->qw2 and desc->qw3 are either reserved or |
| 1185 | * used by software as private data. We won't print |
| 1186 | * out these two qw's for security consideration. |
| 1187 | */ |
| 1188 | pr_err("VT-d detected invalid descriptor: qw0 = %llx, qw1 = %llx\n", |
| 1189 | (unsigned long long)desc->qw0, |
| 1190 | (unsigned long long)desc->qw1); |
| 1191 | memcpy(desc, qi->desc + (wait_index << shift), |
| 1192 | 1 << shift); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1193 | writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG); |
| 1194 | return -EINVAL; |
| 1195 | } |
| 1196 | } |
| 1197 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1198 | /* |
| 1199 | * If ITE happens, all pending wait_desc commands are aborted. |
| 1200 | * No new descriptors are fetched until the ITE is cleared. |
| 1201 | */ |
| 1202 | if (fault & DMA_FSTS_ITE) { |
| 1203 | head = readl(iommu->reg + DMAR_IQH_REG); |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1204 | head = ((head >> shift) - 1 + QI_LENGTH) % QI_LENGTH; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1205 | head |= 1; |
| 1206 | tail = readl(iommu->reg + DMAR_IQT_REG); |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1207 | tail = ((tail >> shift) - 1 + QI_LENGTH) % QI_LENGTH; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1208 | |
| 1209 | writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG); |
| 1210 | |
| 1211 | do { |
| 1212 | if (qi->desc_status[head] == QI_IN_USE) |
| 1213 | qi->desc_status[head] = QI_ABORT; |
| 1214 | head = (head - 2 + QI_LENGTH) % QI_LENGTH; |
| 1215 | } while (head != tail); |
| 1216 | |
| 1217 | if (qi->desc_status[wait_index] == QI_ABORT) |
| 1218 | return -EAGAIN; |
| 1219 | } |
| 1220 | |
| 1221 | if (fault & DMA_FSTS_ICE) |
| 1222 | writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG); |
| 1223 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1224 | return 0; |
| 1225 | } |
| 1226 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1227 | /* |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1228 | * Function to submit invalidation descriptors of all types to the queued |
| 1229 | * invalidation interface(QI). Multiple descriptors can be submitted at a |
| 1230 | * time, a wait descriptor will be appended to each submission to ensure |
| 1231 | * hardware has completed the invalidation before return. Wait descriptors |
| 1232 | * can be part of the submission but it will not be polled for completion. |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1233 | */ |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1234 | int qi_submit_sync(struct intel_iommu *iommu, struct qi_desc *desc, |
| 1235 | unsigned int count, unsigned long options) |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1236 | { |
| 1237 | struct q_inval *qi = iommu->qi; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1238 | struct qi_desc wait_desc; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1239 | int wait_index, index; |
| 1240 | unsigned long flags; |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1241 | int offset, shift; |
| 1242 | int rc, i; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1243 | |
| 1244 | if (!qi) |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1245 | return 0; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1246 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1247 | restart: |
| 1248 | rc = 0; |
| 1249 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1250 | raw_spin_lock_irqsave(&qi->q_lock, flags); |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1251 | /* |
| 1252 | * Check if we have enough empty slots in the queue to submit, |
| 1253 | * the calculation is based on: |
| 1254 | * # of desc + 1 wait desc + 1 space between head and tail |
| 1255 | */ |
| 1256 | while (qi->free_cnt < count + 2) { |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1257 | raw_spin_unlock_irqrestore(&qi->q_lock, flags); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1258 | cpu_relax(); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1259 | raw_spin_lock_irqsave(&qi->q_lock, flags); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1260 | } |
| 1261 | |
| 1262 | index = qi->free_head; |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1263 | wait_index = (index + count) % QI_LENGTH; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1264 | shift = qi_shift(iommu); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1265 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1266 | for (i = 0; i < count; i++) { |
| 1267 | offset = ((index + i) % QI_LENGTH) << shift; |
| 1268 | memcpy(qi->desc + offset, &desc[i], 1 << shift); |
| 1269 | qi->desc_status[(index + i) % QI_LENGTH] = QI_IN_USE; |
| 1270 | } |
| 1271 | qi->desc_status[wait_index] = QI_IN_USE; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1272 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1273 | wait_desc.qw0 = QI_IWD_STATUS_DATA(QI_DONE) | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1274 | QI_IWD_STATUS_WRITE | QI_IWD_TYPE; |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1275 | if (options & QI_OPT_WAIT_DRAIN) |
| 1276 | wait_desc.qw0 |= QI_IWD_PRQ_DRAIN; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1277 | wait_desc.qw1 = virt_to_phys(&qi->desc_status[wait_index]); |
| 1278 | wait_desc.qw2 = 0; |
| 1279 | wait_desc.qw3 = 0; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1280 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1281 | offset = wait_index << shift; |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1282 | memcpy(qi->desc + offset, &wait_desc, 1 << shift); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1283 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1284 | qi->free_head = (qi->free_head + count + 1) % QI_LENGTH; |
| 1285 | qi->free_cnt -= count + 1; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1286 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1287 | /* |
| 1288 | * update the HW tail register indicating the presence of |
| 1289 | * new descriptors. |
| 1290 | */ |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1291 | writel(qi->free_head << shift, iommu->reg + DMAR_IQT_REG); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1292 | |
| 1293 | while (qi->desc_status[wait_index] != QI_DONE) { |
Suresh Siddha | f05810c | 2008-10-16 16:31:54 -0700 | [diff] [blame] | 1294 | /* |
| 1295 | * We will leave the interrupts disabled, to prevent interrupt |
| 1296 | * context to queue another cmd while a cmd is already submitted |
| 1297 | * and waiting for completion on this cpu. This is to avoid |
| 1298 | * a deadlock where the interrupt context can wait indefinitely |
| 1299 | * for free slots in the queue. |
| 1300 | */ |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1301 | rc = qi_check_fault(iommu, index, wait_index); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1302 | if (rc) |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1303 | break; |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1304 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1305 | raw_spin_unlock(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1306 | cpu_relax(); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1307 | raw_spin_lock(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1308 | } |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1309 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1310 | for (i = 0; i < count; i++) |
| 1311 | qi->desc_status[(index + i) % QI_LENGTH] = QI_DONE; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1312 | |
| 1313 | reclaim_free_desc(qi); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1314 | raw_spin_unlock_irqrestore(&qi->q_lock, flags); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1315 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1316 | if (rc == -EAGAIN) |
| 1317 | goto restart; |
| 1318 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1319 | return rc; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1320 | } |
| 1321 | |
| 1322 | /* |
| 1323 | * Flush the global interrupt entry cache. |
| 1324 | */ |
| 1325 | void qi_global_iec(struct intel_iommu *iommu) |
| 1326 | { |
| 1327 | struct qi_desc desc; |
| 1328 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1329 | desc.qw0 = QI_IEC_TYPE; |
| 1330 | desc.qw1 = 0; |
| 1331 | desc.qw2 = 0; |
| 1332 | desc.qw3 = 0; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1333 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1334 | /* should never fail */ |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1335 | qi_submit_sync(iommu, &desc, 1, 0); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1338 | void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm, |
| 1339 | u64 type) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1340 | { |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1341 | struct qi_desc desc; |
| 1342 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1343 | desc.qw0 = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1344 | | QI_CC_GRAN(type) | QI_CC_TYPE; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1345 | desc.qw1 = 0; |
| 1346 | desc.qw2 = 0; |
| 1347 | desc.qw3 = 0; |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1348 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1349 | qi_submit_sync(iommu, &desc, 1, 0); |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1350 | } |
| 1351 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1352 | void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr, |
| 1353 | unsigned int size_order, u64 type) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1354 | { |
| 1355 | u8 dw = 0, dr = 0; |
| 1356 | |
| 1357 | struct qi_desc desc; |
| 1358 | int ih = 0; |
| 1359 | |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1360 | if (cap_write_drain(iommu->cap)) |
| 1361 | dw = 1; |
| 1362 | |
| 1363 | if (cap_read_drain(iommu->cap)) |
| 1364 | dr = 1; |
| 1365 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1366 | desc.qw0 = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1367 | | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1368 | desc.qw1 = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1369 | | QI_IOTLB_AM(size_order); |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1370 | desc.qw2 = 0; |
| 1371 | desc.qw3 = 0; |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1372 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1373 | qi_submit_sync(iommu, &desc, 1, 0); |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1374 | } |
| 1375 | |
Jacob Pan | 1c48db4 | 2018-06-07 09:57:00 -0700 | [diff] [blame] | 1376 | void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 pfsid, |
| 1377 | u16 qdep, u64 addr, unsigned mask) |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1378 | { |
| 1379 | struct qi_desc desc; |
| 1380 | |
| 1381 | if (mask) { |
Joerg Roedel | c8acb28 | 2017-08-11 11:42:46 +0200 | [diff] [blame] | 1382 | addr |= (1ULL << (VTD_PAGE_SHIFT + mask - 1)) - 1; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1383 | desc.qw1 = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1384 | } else |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1385 | desc.qw1 = QI_DEV_IOTLB_ADDR(addr); |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1386 | |
| 1387 | if (qdep >= QI_DEV_IOTLB_MAX_INVS) |
| 1388 | qdep = 0; |
| 1389 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1390 | desc.qw0 = QI_DEV_IOTLB_SID(sid) | QI_DEV_IOTLB_QDEP(qdep) | |
Jacob Pan | 1c48db4 | 2018-06-07 09:57:00 -0700 | [diff] [blame] | 1391 | QI_DIOTLB_TYPE | QI_DEV_IOTLB_PFSID(pfsid); |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1392 | desc.qw2 = 0; |
| 1393 | desc.qw3 = 0; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1394 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1395 | qi_submit_sync(iommu, &desc, 1, 0); |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1396 | } |
| 1397 | |
Lu Baolu | 33cd6e6 | 2020-01-02 08:18:18 +0800 | [diff] [blame] | 1398 | /* PASID-based IOTLB invalidation */ |
| 1399 | void qi_flush_piotlb(struct intel_iommu *iommu, u16 did, u32 pasid, u64 addr, |
| 1400 | unsigned long npages, bool ih) |
| 1401 | { |
| 1402 | struct qi_desc desc = {.qw2 = 0, .qw3 = 0}; |
| 1403 | |
| 1404 | /* |
| 1405 | * npages == -1 means a PASID-selective invalidation, otherwise, |
| 1406 | * a positive value for Page-selective-within-PASID invalidation. |
| 1407 | * 0 is not a valid input. |
| 1408 | */ |
| 1409 | if (WARN_ON(!npages)) { |
| 1410 | pr_err("Invalid input npages = %ld\n", npages); |
| 1411 | return; |
| 1412 | } |
| 1413 | |
| 1414 | if (npages == -1) { |
| 1415 | desc.qw0 = QI_EIOTLB_PASID(pasid) | |
| 1416 | QI_EIOTLB_DID(did) | |
| 1417 | QI_EIOTLB_GRAN(QI_GRAN_NONG_PASID) | |
| 1418 | QI_EIOTLB_TYPE; |
| 1419 | desc.qw1 = 0; |
| 1420 | } else { |
| 1421 | int mask = ilog2(__roundup_pow_of_two(npages)); |
| 1422 | unsigned long align = (1ULL << (VTD_PAGE_SHIFT + mask)); |
| 1423 | |
| 1424 | if (WARN_ON_ONCE(!ALIGN(addr, align))) |
| 1425 | addr &= ~(align - 1); |
| 1426 | |
| 1427 | desc.qw0 = QI_EIOTLB_PASID(pasid) | |
| 1428 | QI_EIOTLB_DID(did) | |
| 1429 | QI_EIOTLB_GRAN(QI_GRAN_PSI_PASID) | |
| 1430 | QI_EIOTLB_TYPE; |
| 1431 | desc.qw1 = QI_EIOTLB_ADDR(addr) | |
| 1432 | QI_EIOTLB_IH(ih) | |
| 1433 | QI_EIOTLB_AM(mask); |
| 1434 | } |
| 1435 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1436 | qi_submit_sync(iommu, &desc, 1, 0); |
Lu Baolu | 33cd6e6 | 2020-01-02 08:18:18 +0800 | [diff] [blame] | 1437 | } |
| 1438 | |
Jacob Pan | 61a06a1 | 2020-05-16 14:20:48 +0800 | [diff] [blame] | 1439 | /* PASID-based device IOTLB Invalidate */ |
| 1440 | void qi_flush_dev_iotlb_pasid(struct intel_iommu *iommu, u16 sid, u16 pfsid, |
| 1441 | u32 pasid, u16 qdep, u64 addr, |
| 1442 | unsigned int size_order, u64 granu) |
| 1443 | { |
| 1444 | unsigned long mask = 1UL << (VTD_PAGE_SHIFT + size_order - 1); |
| 1445 | struct qi_desc desc = {.qw1 = 0, .qw2 = 0, .qw3 = 0}; |
| 1446 | |
| 1447 | desc.qw0 = QI_DEV_EIOTLB_PASID(pasid) | QI_DEV_EIOTLB_SID(sid) | |
| 1448 | QI_DEV_EIOTLB_QDEP(qdep) | QI_DEIOTLB_TYPE | |
| 1449 | QI_DEV_IOTLB_PFSID(pfsid); |
| 1450 | desc.qw1 = QI_DEV_EIOTLB_GLOB(granu); |
| 1451 | |
| 1452 | /* |
| 1453 | * If S bit is 0, we only flush a single page. If S bit is set, |
| 1454 | * The least significant zero bit indicates the invalidation address |
| 1455 | * range. VT-d spec 6.5.2.6. |
| 1456 | * e.g. address bit 12[0] indicates 8KB, 13[0] indicates 16KB. |
| 1457 | * size order = 0 is PAGE_SIZE 4KB |
| 1458 | * Max Invs Pending (MIP) is set to 0 for now until we have DIT in |
| 1459 | * ECAP. |
| 1460 | */ |
| 1461 | desc.qw1 |= addr & ~mask; |
| 1462 | if (size_order) |
| 1463 | desc.qw1 |= QI_DEV_EIOTLB_SIZE; |
| 1464 | |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1465 | qi_submit_sync(iommu, &desc, 1, 0); |
Jacob Pan | 61a06a1 | 2020-05-16 14:20:48 +0800 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | void qi_flush_pasid_cache(struct intel_iommu *iommu, u16 did, |
| 1469 | u64 granu, int pasid) |
| 1470 | { |
| 1471 | struct qi_desc desc = {.qw1 = 0, .qw2 = 0, .qw3 = 0}; |
| 1472 | |
| 1473 | desc.qw0 = QI_PC_PASID(pasid) | QI_PC_DID(did) | |
| 1474 | QI_PC_GRAN(granu) | QI_PC_TYPE; |
Lu Baolu | 8a1d824 | 2020-05-16 14:20:55 +0800 | [diff] [blame] | 1475 | qi_submit_sync(iommu, &desc, 1, 0); |
Jacob Pan | 61a06a1 | 2020-05-16 14:20:48 +0800 | [diff] [blame] | 1476 | } |
| 1477 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1478 | /* |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1479 | * Disable Queued Invalidation interface. |
| 1480 | */ |
| 1481 | void dmar_disable_qi(struct intel_iommu *iommu) |
| 1482 | { |
| 1483 | unsigned long flags; |
| 1484 | u32 sts; |
| 1485 | cycles_t start_time = get_cycles(); |
| 1486 | |
| 1487 | if (!ecap_qis(iommu->ecap)) |
| 1488 | return; |
| 1489 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1490 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1491 | |
CQ Tang | fda3bec | 2016-01-13 21:15:03 +0000 | [diff] [blame] | 1492 | sts = readl(iommu->reg + DMAR_GSTS_REG); |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1493 | if (!(sts & DMA_GSTS_QIES)) |
| 1494 | goto end; |
| 1495 | |
| 1496 | /* |
| 1497 | * Give a chance to HW to complete the pending invalidation requests. |
| 1498 | */ |
| 1499 | while ((readl(iommu->reg + DMAR_IQT_REG) != |
| 1500 | readl(iommu->reg + DMAR_IQH_REG)) && |
| 1501 | (DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time))) |
| 1502 | cpu_relax(); |
| 1503 | |
| 1504 | iommu->gcmd &= ~DMA_GCMD_QIE; |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1505 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
| 1506 | |
| 1507 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, |
| 1508 | !(sts & DMA_GSTS_QIES), sts); |
| 1509 | end: |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1510 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | /* |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1514 | * Enable queued invalidation. |
| 1515 | */ |
| 1516 | static void __dmar_enable_qi(struct intel_iommu *iommu) |
| 1517 | { |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1518 | u32 sts; |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1519 | unsigned long flags; |
| 1520 | struct q_inval *qi = iommu->qi; |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1521 | u64 val = virt_to_phys(qi->desc); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1522 | |
| 1523 | qi->free_head = qi->free_tail = 0; |
| 1524 | qi->free_cnt = QI_LENGTH; |
| 1525 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1526 | /* |
| 1527 | * Set DW=1 and QS=1 in IQA_REG when Scalable Mode capability |
| 1528 | * is present. |
| 1529 | */ |
| 1530 | if (ecap_smts(iommu->ecap)) |
| 1531 | val |= (1 << 11) | 1; |
| 1532 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1533 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1534 | |
| 1535 | /* write zero to the tail reg */ |
| 1536 | writel(0, iommu->reg + DMAR_IQT_REG); |
| 1537 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1538 | dmar_writeq(iommu->reg + DMAR_IQA_REG, val); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1539 | |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1540 | iommu->gcmd |= DMA_GCMD_QIE; |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1541 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1542 | |
| 1543 | /* Make sure hardware complete it */ |
| 1544 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts); |
| 1545 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1546 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1547 | } |
| 1548 | |
| 1549 | /* |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1550 | * Enable Queued Invalidation interface. This is a must to support |
| 1551 | * interrupt-remapping. Also used by DMA-remapping, which replaces |
| 1552 | * register based IOTLB invalidation. |
| 1553 | */ |
| 1554 | int dmar_enable_qi(struct intel_iommu *iommu) |
| 1555 | { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1556 | struct q_inval *qi; |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1557 | struct page *desc_page; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1558 | |
| 1559 | if (!ecap_qis(iommu->ecap)) |
| 1560 | return -ENOENT; |
| 1561 | |
| 1562 | /* |
| 1563 | * queued invalidation is already setup and enabled. |
| 1564 | */ |
| 1565 | if (iommu->qi) |
| 1566 | return 0; |
| 1567 | |
Suresh Siddha | fa4b57c | 2009-03-16 17:05:05 -0700 | [diff] [blame] | 1568 | iommu->qi = kmalloc(sizeof(*qi), GFP_ATOMIC); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1569 | if (!iommu->qi) |
| 1570 | return -ENOMEM; |
| 1571 | |
| 1572 | qi = iommu->qi; |
| 1573 | |
Lu Baolu | 5d308fc | 2018-12-10 09:58:58 +0800 | [diff] [blame] | 1574 | /* |
| 1575 | * Need two pages to accommodate 256 descriptors of 256 bits each |
| 1576 | * if the remapping hardware supports scalable mode translation. |
| 1577 | */ |
| 1578 | desc_page = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO, |
| 1579 | !!ecap_smts(iommu->ecap)); |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1580 | if (!desc_page) { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1581 | kfree(qi); |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 1582 | iommu->qi = NULL; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1583 | return -ENOMEM; |
| 1584 | } |
| 1585 | |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1586 | qi->desc = page_address(desc_page); |
| 1587 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1588 | qi->desc_status = kcalloc(QI_LENGTH, sizeof(int), GFP_ATOMIC); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1589 | if (!qi->desc_status) { |
| 1590 | free_page((unsigned long) qi->desc); |
| 1591 | kfree(qi); |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 1592 | iommu->qi = NULL; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1593 | return -ENOMEM; |
| 1594 | } |
| 1595 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1596 | raw_spin_lock_init(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1597 | |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1598 | __dmar_enable_qi(iommu); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1599 | |
| 1600 | return 0; |
| 1601 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1602 | |
| 1603 | /* iommu interrupt handling. Most stuff are MSI-like. */ |
| 1604 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1605 | enum faulttype { |
| 1606 | DMA_REMAP, |
| 1607 | INTR_REMAP, |
| 1608 | UNKNOWN, |
| 1609 | }; |
| 1610 | |
| 1611 | static const char *dma_remap_fault_reasons[] = |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1612 | { |
| 1613 | "Software", |
| 1614 | "Present bit in root entry is clear", |
| 1615 | "Present bit in context entry is clear", |
| 1616 | "Invalid context entry", |
| 1617 | "Access beyond MGAW", |
| 1618 | "PTE Write access is not set", |
| 1619 | "PTE Read access is not set", |
| 1620 | "Next page table ptr is invalid", |
| 1621 | "Root table address invalid", |
| 1622 | "Context table ptr is invalid", |
| 1623 | "non-zero reserved fields in RTP", |
| 1624 | "non-zero reserved fields in CTP", |
| 1625 | "non-zero reserved fields in PTE", |
Li, Zhen-Hua | 4ecccd9 | 2013-03-06 10:43:17 +0800 | [diff] [blame] | 1626 | "PCE for translation request specifies blocking", |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1627 | }; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1628 | |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1629 | static const char * const dma_remap_sm_fault_reasons[] = { |
| 1630 | "SM: Invalid Root Table Address", |
| 1631 | "SM: TTM 0 for request with PASID", |
| 1632 | "SM: TTM 0 for page group request", |
| 1633 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x33-0x37 */ |
| 1634 | "SM: Error attempting to access Root Entry", |
| 1635 | "SM: Present bit in Root Entry is clear", |
| 1636 | "SM: Non-zero reserved field set in Root Entry", |
| 1637 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x3B-0x3F */ |
| 1638 | "SM: Error attempting to access Context Entry", |
| 1639 | "SM: Present bit in Context Entry is clear", |
| 1640 | "SM: Non-zero reserved field set in the Context Entry", |
| 1641 | "SM: Invalid Context Entry", |
| 1642 | "SM: DTE field in Context Entry is clear", |
| 1643 | "SM: PASID Enable field in Context Entry is clear", |
| 1644 | "SM: PASID is larger than the max in Context Entry", |
| 1645 | "SM: PRE field in Context-Entry is clear", |
| 1646 | "SM: RID_PASID field error in Context-Entry", |
| 1647 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x49-0x4F */ |
| 1648 | "SM: Error attempting to access the PASID Directory Entry", |
| 1649 | "SM: Present bit in Directory Entry is clear", |
| 1650 | "SM: Non-zero reserved field set in PASID Directory Entry", |
| 1651 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x53-0x57 */ |
| 1652 | "SM: Error attempting to access PASID Table Entry", |
| 1653 | "SM: Present bit in PASID Table Entry is clear", |
| 1654 | "SM: Non-zero reserved field set in PASID Table Entry", |
| 1655 | "SM: Invalid Scalable-Mode PASID Table Entry", |
| 1656 | "SM: ERE field is clear in PASID Table Entry", |
| 1657 | "SM: SRE field is clear in PASID Table Entry", |
| 1658 | "Unknown", "Unknown",/* 0x5E-0x5F */ |
| 1659 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x60-0x67 */ |
| 1660 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x68-0x6F */ |
| 1661 | "SM: Error attempting to access first-level paging entry", |
| 1662 | "SM: Present bit in first-level paging entry is clear", |
| 1663 | "SM: Non-zero reserved field set in first-level paging entry", |
| 1664 | "SM: Error attempting to access FL-PML4 entry", |
| 1665 | "SM: First-level entry address beyond MGAW in Nested translation", |
| 1666 | "SM: Read permission error in FL-PML4 entry in Nested translation", |
| 1667 | "SM: Read permission error in first-level paging entry in Nested translation", |
| 1668 | "SM: Write permission error in first-level paging entry in Nested translation", |
| 1669 | "SM: Error attempting to access second-level paging entry", |
| 1670 | "SM: Read/Write permission error in second-level paging entry", |
| 1671 | "SM: Non-zero reserved field set in second-level paging entry", |
| 1672 | "SM: Invalid second-level page table pointer", |
| 1673 | "SM: A/D bit update needed in second-level entry when set up in no snoop", |
| 1674 | "Unknown", "Unknown", "Unknown", /* 0x7D-0x7F */ |
| 1675 | "SM: Address in first-level translation is not canonical", |
| 1676 | "SM: U/S set 0 for first-level translation with user privilege", |
| 1677 | "SM: No execute permission for request with PASID and ER=1", |
| 1678 | "SM: Address beyond the DMA hardware max", |
| 1679 | "SM: Second-level entry address beyond the max", |
| 1680 | "SM: No write permission for Write/AtomicOp request", |
| 1681 | "SM: No read permission for Read/AtomicOp request", |
| 1682 | "SM: Invalid address-interrupt address", |
| 1683 | "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", "Unknown", /* 0x88-0x8F */ |
| 1684 | "SM: A/D bit update needed in first-level entry when set up in no snoop", |
| 1685 | }; |
| 1686 | |
Suresh Siddha | 95a02e9 | 2012-03-30 11:47:07 -0700 | [diff] [blame] | 1687 | static const char *irq_remap_fault_reasons[] = |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1688 | { |
| 1689 | "Detected reserved fields in the decoded interrupt-remapped request", |
| 1690 | "Interrupt index exceeded the interrupt-remapping table size", |
| 1691 | "Present field in the IRTE entry is clear", |
| 1692 | "Error accessing interrupt-remapping table pointed by IRTA_REG", |
| 1693 | "Detected reserved fields in the IRTE entry", |
| 1694 | "Blocked a compatibility format interrupt request", |
| 1695 | "Blocked an interrupt request due to source-id verification failure", |
| 1696 | }; |
| 1697 | |
Rashika Kheria | 21004dc | 2013-12-18 12:01:46 +0530 | [diff] [blame] | 1698 | static const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1699 | { |
Dan Carpenter | fefe1ed | 2012-05-13 20:09:38 +0300 | [diff] [blame] | 1700 | if (fault_reason >= 0x20 && (fault_reason - 0x20 < |
| 1701 | ARRAY_SIZE(irq_remap_fault_reasons))) { |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1702 | *fault_type = INTR_REMAP; |
Suresh Siddha | 95a02e9 | 2012-03-30 11:47:07 -0700 | [diff] [blame] | 1703 | return irq_remap_fault_reasons[fault_reason - 0x20]; |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1704 | } else if (fault_reason >= 0x30 && (fault_reason - 0x30 < |
| 1705 | ARRAY_SIZE(dma_remap_sm_fault_reasons))) { |
| 1706 | *fault_type = DMA_REMAP; |
| 1707 | return dma_remap_sm_fault_reasons[fault_reason - 0x30]; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1708 | } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) { |
| 1709 | *fault_type = DMA_REMAP; |
| 1710 | return dma_remap_fault_reasons[fault_reason]; |
| 1711 | } else { |
| 1712 | *fault_type = UNKNOWN; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1713 | return "Unknown"; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1714 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1715 | } |
| 1716 | |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1717 | |
| 1718 | static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq) |
| 1719 | { |
| 1720 | if (iommu->irq == irq) |
| 1721 | return DMAR_FECTL_REG; |
| 1722 | else if (iommu->pr_irq == irq) |
| 1723 | return DMAR_PECTL_REG; |
| 1724 | else |
| 1725 | BUG(); |
| 1726 | } |
| 1727 | |
Thomas Gleixner | 5c2837f | 2010-09-28 17:15:11 +0200 | [diff] [blame] | 1728 | void dmar_msi_unmask(struct irq_data *data) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1729 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1730 | struct intel_iommu *iommu = irq_data_get_irq_handler_data(data); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1731 | int reg = dmar_msi_reg(iommu, data->irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1732 | unsigned long flag; |
| 1733 | |
| 1734 | /* unmask it */ |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1735 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1736 | writel(0, iommu->reg + reg); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1737 | /* Read a reg to force flush the post write */ |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1738 | readl(iommu->reg + reg); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1739 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1740 | } |
| 1741 | |
Thomas Gleixner | 5c2837f | 2010-09-28 17:15:11 +0200 | [diff] [blame] | 1742 | void dmar_msi_mask(struct irq_data *data) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1743 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1744 | struct intel_iommu *iommu = irq_data_get_irq_handler_data(data); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1745 | int reg = dmar_msi_reg(iommu, data->irq); |
| 1746 | unsigned long flag; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1747 | |
| 1748 | /* mask it */ |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1749 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1750 | writel(DMA_FECTL_IM, iommu->reg + reg); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1751 | /* Read a reg to force flush the post write */ |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1752 | readl(iommu->reg + reg); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1753 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | void dmar_msi_write(int irq, struct msi_msg *msg) |
| 1757 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1758 | struct intel_iommu *iommu = irq_get_handler_data(irq); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1759 | int reg = dmar_msi_reg(iommu, irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1760 | unsigned long flag; |
| 1761 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1762 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1763 | writel(msg->data, iommu->reg + reg + 4); |
| 1764 | writel(msg->address_lo, iommu->reg + reg + 8); |
| 1765 | writel(msg->address_hi, iommu->reg + reg + 12); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1766 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1767 | } |
| 1768 | |
| 1769 | void dmar_msi_read(int irq, struct msi_msg *msg) |
| 1770 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1771 | struct intel_iommu *iommu = irq_get_handler_data(irq); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1772 | int reg = dmar_msi_reg(iommu, irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1773 | unsigned long flag; |
| 1774 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1775 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1776 | msg->data = readl(iommu->reg + reg + 4); |
| 1777 | msg->address_lo = readl(iommu->reg + reg + 8); |
| 1778 | msg->address_hi = readl(iommu->reg + reg + 12); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1779 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1780 | } |
| 1781 | |
| 1782 | static int dmar_fault_do_one(struct intel_iommu *iommu, int type, |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1783 | u8 fault_reason, int pasid, u16 source_id, |
| 1784 | unsigned long long addr) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1785 | { |
| 1786 | const char *reason; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1787 | int fault_type; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1788 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1789 | reason = dmar_get_fault_reason(fault_reason, &fault_type); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1790 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1791 | if (fault_type == INTR_REMAP) |
Alex Williamson | a0fe14d | 2016-03-17 14:12:31 -0600 | [diff] [blame] | 1792 | pr_err("[INTR-REMAP] Request device [%02x:%02x.%d] fault index %llx [fault reason %02d] %s\n", |
| 1793 | source_id >> 8, PCI_SLOT(source_id & 0xFF), |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1794 | PCI_FUNC(source_id & 0xFF), addr >> 48, |
| 1795 | fault_reason, reason); |
| 1796 | else |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1797 | pr_err("[%s] Request device [%02x:%02x.%d] PASID %x fault addr %llx [fault reason %02d] %s\n", |
Alex Williamson | a0fe14d | 2016-03-17 14:12:31 -0600 | [diff] [blame] | 1798 | type ? "DMA Read" : "DMA Write", |
| 1799 | source_id >> 8, PCI_SLOT(source_id & 0xFF), |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1800 | PCI_FUNC(source_id & 0xFF), pasid, addr, |
| 1801 | fault_reason, reason); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1802 | return 0; |
| 1803 | } |
| 1804 | |
| 1805 | #define PRIMARY_FAULT_REG_LEN (16) |
Suresh Siddha | 1531a6a | 2009-03-16 17:04:57 -0700 | [diff] [blame] | 1806 | irqreturn_t dmar_fault(int irq, void *dev_id) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1807 | { |
| 1808 | struct intel_iommu *iommu = dev_id; |
| 1809 | int reg, fault_index; |
| 1810 | u32 fault_status; |
| 1811 | unsigned long flag; |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1812 | static DEFINE_RATELIMIT_STATE(rs, |
| 1813 | DEFAULT_RATELIMIT_INTERVAL, |
| 1814 | DEFAULT_RATELIMIT_BURST); |
| 1815 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1816 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1817 | fault_status = readl(iommu->reg + DMAR_FSTS_REG); |
Dmitry Safonov | 6c50d79 | 2018-03-31 01:33:11 +0100 | [diff] [blame] | 1818 | if (fault_status && __ratelimit(&rs)) |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1819 | pr_err("DRHD: handling fault status reg %x\n", fault_status); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1820 | |
| 1821 | /* TBD: ignore advanced fault log currently */ |
| 1822 | if (!(fault_status & DMA_FSTS_PPF)) |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1823 | goto unlock_exit; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1824 | |
| 1825 | fault_index = dma_fsts_fault_record_index(fault_status); |
| 1826 | reg = cap_fault_reg_offset(iommu->cap); |
| 1827 | while (1) { |
Dmitry Safonov | 6c50d79 | 2018-03-31 01:33:11 +0100 | [diff] [blame] | 1828 | /* Disable printing, simply clear the fault when ratelimited */ |
| 1829 | bool ratelimited = !__ratelimit(&rs); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1830 | u8 fault_reason; |
| 1831 | u16 source_id; |
| 1832 | u64 guest_addr; |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1833 | int type, pasid; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1834 | u32 data; |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1835 | bool pasid_present; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1836 | |
| 1837 | /* highest 32 bits */ |
| 1838 | data = readl(iommu->reg + reg + |
| 1839 | fault_index * PRIMARY_FAULT_REG_LEN + 12); |
| 1840 | if (!(data & DMA_FRCD_F)) |
| 1841 | break; |
| 1842 | |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1843 | if (!ratelimited) { |
| 1844 | fault_reason = dma_frcd_fault_reason(data); |
| 1845 | type = dma_frcd_type(data); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1846 | |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1847 | pasid = dma_frcd_pasid_value(data); |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1848 | data = readl(iommu->reg + reg + |
| 1849 | fault_index * PRIMARY_FAULT_REG_LEN + 8); |
| 1850 | source_id = dma_frcd_source_id(data); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1851 | |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1852 | pasid_present = dma_frcd_pasid_present(data); |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1853 | guest_addr = dmar_readq(iommu->reg + reg + |
| 1854 | fault_index * PRIMARY_FAULT_REG_LEN); |
| 1855 | guest_addr = dma_frcd_page_addr(guest_addr); |
| 1856 | } |
| 1857 | |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1858 | /* clear the fault */ |
| 1859 | writel(DMA_FRCD_F, iommu->reg + reg + |
| 1860 | fault_index * PRIMARY_FAULT_REG_LEN + 12); |
| 1861 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1862 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1863 | |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1864 | if (!ratelimited) |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1865 | /* Using pasid -1 if pasid is not present */ |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1866 | dmar_fault_do_one(iommu, type, fault_reason, |
Kyung Min Park | fd73000 | 2019-09-06 11:14:02 -0700 | [diff] [blame] | 1867 | pasid_present ? pasid : -1, |
Alex Williamson | c43fce4 | 2016-03-17 14:12:25 -0600 | [diff] [blame] | 1868 | source_id, guest_addr); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1869 | |
| 1870 | fault_index++; |
Troy Heber | 8211a7b | 2009-08-19 15:26:11 -0600 | [diff] [blame] | 1871 | if (fault_index >= cap_num_fault_regs(iommu->cap)) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1872 | fault_index = 0; |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1873 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1874 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1875 | |
Lu Baolu | 973b546 | 2017-11-03 10:51:33 -0600 | [diff] [blame] | 1876 | writel(DMA_FSTS_PFO | DMA_FSTS_PPF | DMA_FSTS_PRO, |
| 1877 | iommu->reg + DMAR_FSTS_REG); |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1878 | |
| 1879 | unlock_exit: |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1880 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1881 | return IRQ_HANDLED; |
| 1882 | } |
| 1883 | |
| 1884 | int dmar_set_interrupt(struct intel_iommu *iommu) |
| 1885 | { |
| 1886 | int irq, ret; |
| 1887 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1888 | /* |
| 1889 | * Check if the fault interrupt is already initialized. |
| 1890 | */ |
| 1891 | if (iommu->irq) |
| 1892 | return 0; |
| 1893 | |
Jiang Liu | 34742db | 2015-04-13 14:11:41 +0800 | [diff] [blame] | 1894 | irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu); |
| 1895 | if (irq > 0) { |
| 1896 | iommu->irq = irq; |
| 1897 | } else { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1898 | pr_err("No free IRQ vectors\n"); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1899 | return -EINVAL; |
| 1900 | } |
| 1901 | |
Thomas Gleixner | 477694e | 2011-07-19 16:25:42 +0200 | [diff] [blame] | 1902 | ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1903 | if (ret) |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1904 | pr_err("Can't request irq\n"); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1905 | return ret; |
| 1906 | } |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1907 | |
| 1908 | int __init enable_drhd_fault_handling(void) |
| 1909 | { |
| 1910 | struct dmar_drhd_unit *drhd; |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1911 | struct intel_iommu *iommu; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1912 | |
| 1913 | /* |
| 1914 | * Enable fault control interrupt. |
| 1915 | */ |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1916 | for_each_iommu(iommu, drhd) { |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1917 | u32 fault_status; |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1918 | int ret = dmar_set_interrupt(iommu); |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1919 | |
| 1920 | if (ret) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 1921 | pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n", |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1922 | (unsigned long long)drhd->reg_base_addr, ret); |
| 1923 | return -1; |
| 1924 | } |
Suresh Siddha | 7f99d94 | 2010-11-30 22:22:29 -0800 | [diff] [blame] | 1925 | |
| 1926 | /* |
| 1927 | * Clear any previous faults. |
| 1928 | */ |
| 1929 | dmar_fault(iommu->irq, iommu); |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1930 | fault_status = readl(iommu->reg + DMAR_FSTS_REG); |
| 1931 | writel(fault_status, iommu->reg + DMAR_FSTS_REG); |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
| 1934 | return 0; |
| 1935 | } |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1936 | |
| 1937 | /* |
| 1938 | * Re-enable Queued Invalidation interface. |
| 1939 | */ |
| 1940 | int dmar_reenable_qi(struct intel_iommu *iommu) |
| 1941 | { |
| 1942 | if (!ecap_qis(iommu->ecap)) |
| 1943 | return -ENOENT; |
| 1944 | |
| 1945 | if (!iommu->qi) |
| 1946 | return -ENOENT; |
| 1947 | |
| 1948 | /* |
| 1949 | * First disable queued invalidation. |
| 1950 | */ |
| 1951 | dmar_disable_qi(iommu); |
| 1952 | /* |
| 1953 | * Then enable queued invalidation again. Since there is no pending |
| 1954 | * invalidation requests now, it's safe to re-enable queued |
| 1955 | * invalidation. |
| 1956 | */ |
| 1957 | __dmar_enable_qi(iommu); |
| 1958 | |
| 1959 | return 0; |
| 1960 | } |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1961 | |
| 1962 | /* |
| 1963 | * Check interrupt remapping support in DMAR table description. |
| 1964 | */ |
Luck, Tony | 0b8973a | 2009-12-16 22:59:29 +0000 | [diff] [blame] | 1965 | int __init dmar_ir_support(void) |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1966 | { |
| 1967 | struct acpi_table_dmar *dmar; |
| 1968 | dmar = (struct acpi_table_dmar *)dmar_tbl; |
Arnaud Patard | 4f506e0 | 2010-03-25 18:02:58 +0000 | [diff] [blame] | 1969 | if (!dmar) |
| 1970 | return 0; |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1971 | return dmar->flags & 0x1; |
| 1972 | } |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 1973 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1974 | /* Check whether DMAR units are in use */ |
| 1975 | static inline bool dmar_in_use(void) |
| 1976 | { |
| 1977 | return irq_remapping_enabled || intel_iommu_enabled; |
| 1978 | } |
| 1979 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1980 | static int __init dmar_free_unused_resources(void) |
| 1981 | { |
| 1982 | struct dmar_drhd_unit *dmaru, *dmaru_n; |
| 1983 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1984 | if (dmar_in_use()) |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1985 | return 0; |
| 1986 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 1987 | if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units)) |
| 1988 | bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 1989 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 1990 | down_write(&dmar_global_lock); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1991 | list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) { |
| 1992 | list_del(&dmaru->list); |
| 1993 | dmar_free_drhd(dmaru); |
| 1994 | } |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 1995 | up_write(&dmar_global_lock); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1996 | |
| 1997 | return 0; |
| 1998 | } |
| 1999 | |
| 2000 | late_initcall(dmar_free_unused_resources); |
Konrad Rzeszutek Wilk | 4db77ff | 2010-08-26 13:58:04 -0400 | [diff] [blame] | 2001 | IOMMU_INIT_POST(detect_intel_iommu); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2002 | |
| 2003 | /* |
| 2004 | * DMAR Hotplug Support |
| 2005 | * For more details, please refer to Intel(R) Virtualization Technology |
| 2006 | * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8 |
| 2007 | * "Remapping Hardware Unit Hot Plug". |
| 2008 | */ |
Andy Shevchenko | 94116f8 | 2017-06-05 19:40:46 +0300 | [diff] [blame] | 2009 | static guid_t dmar_hp_guid = |
| 2010 | GUID_INIT(0xD8C1A3A6, 0xBE9B, 0x4C9B, |
| 2011 | 0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2012 | |
| 2013 | /* |
| 2014 | * Currently there's only one revision and BIOS will not check the revision id, |
| 2015 | * so use 0 for safety. |
| 2016 | */ |
| 2017 | #define DMAR_DSM_REV_ID 0 |
| 2018 | #define DMAR_DSM_FUNC_DRHD 1 |
| 2019 | #define DMAR_DSM_FUNC_ATSR 2 |
| 2020 | #define DMAR_DSM_FUNC_RHSA 3 |
| 2021 | |
| 2022 | static inline bool dmar_detect_dsm(acpi_handle handle, int func) |
| 2023 | { |
Andy Shevchenko | 94116f8 | 2017-06-05 19:40:46 +0300 | [diff] [blame] | 2024 | return acpi_check_dsm(handle, &dmar_hp_guid, DMAR_DSM_REV_ID, 1 << func); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2025 | } |
| 2026 | |
| 2027 | static int dmar_walk_dsm_resource(acpi_handle handle, int func, |
| 2028 | dmar_res_handler_t handler, void *arg) |
| 2029 | { |
| 2030 | int ret = -ENODEV; |
| 2031 | union acpi_object *obj; |
| 2032 | struct acpi_dmar_header *start; |
| 2033 | struct dmar_res_callback callback; |
| 2034 | static int res_type[] = { |
| 2035 | [DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT, |
| 2036 | [DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS, |
| 2037 | [DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY, |
| 2038 | }; |
| 2039 | |
| 2040 | if (!dmar_detect_dsm(handle, func)) |
| 2041 | return 0; |
| 2042 | |
Andy Shevchenko | 94116f8 | 2017-06-05 19:40:46 +0300 | [diff] [blame] | 2043 | obj = acpi_evaluate_dsm_typed(handle, &dmar_hp_guid, DMAR_DSM_REV_ID, |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2044 | func, NULL, ACPI_TYPE_BUFFER); |
| 2045 | if (!obj) |
| 2046 | return -ENODEV; |
| 2047 | |
| 2048 | memset(&callback, 0, sizeof(callback)); |
| 2049 | callback.cb[res_type[func]] = handler; |
| 2050 | callback.arg[res_type[func]] = arg; |
| 2051 | start = (struct acpi_dmar_header *)obj->buffer.pointer; |
| 2052 | ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback); |
| 2053 | |
| 2054 | ACPI_FREE(obj); |
| 2055 | |
| 2056 | return ret; |
| 2057 | } |
| 2058 | |
| 2059 | static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg) |
| 2060 | { |
| 2061 | int ret; |
| 2062 | struct dmar_drhd_unit *dmaru; |
| 2063 | |
| 2064 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 2065 | if (!dmaru) |
| 2066 | return -ENODEV; |
| 2067 | |
| 2068 | ret = dmar_ir_hotplug(dmaru, true); |
| 2069 | if (ret == 0) |
| 2070 | ret = dmar_iommu_hotplug(dmaru, true); |
| 2071 | |
| 2072 | return ret; |
| 2073 | } |
| 2074 | |
| 2075 | static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg) |
| 2076 | { |
| 2077 | int i, ret; |
| 2078 | struct device *dev; |
| 2079 | struct dmar_drhd_unit *dmaru; |
| 2080 | |
| 2081 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 2082 | if (!dmaru) |
| 2083 | return 0; |
| 2084 | |
| 2085 | /* |
| 2086 | * All PCI devices managed by this unit should have been destroyed. |
| 2087 | */ |
Linus Torvalds | 194dc87 | 2016-07-27 20:03:31 -0700 | [diff] [blame] | 2088 | if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt) { |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2089 | for_each_active_dev_scope(dmaru->devices, |
| 2090 | dmaru->devices_cnt, i, dev) |
| 2091 | return -EBUSY; |
Linus Torvalds | 194dc87 | 2016-07-27 20:03:31 -0700 | [diff] [blame] | 2092 | } |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2093 | |
| 2094 | ret = dmar_ir_hotplug(dmaru, false); |
| 2095 | if (ret == 0) |
| 2096 | ret = dmar_iommu_hotplug(dmaru, false); |
| 2097 | |
| 2098 | return ret; |
| 2099 | } |
| 2100 | |
| 2101 | static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg) |
| 2102 | { |
| 2103 | struct dmar_drhd_unit *dmaru; |
| 2104 | |
| 2105 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 2106 | if (dmaru) { |
| 2107 | list_del_rcu(&dmaru->list); |
| 2108 | synchronize_rcu(); |
| 2109 | dmar_free_drhd(dmaru); |
| 2110 | } |
| 2111 | |
| 2112 | return 0; |
| 2113 | } |
| 2114 | |
| 2115 | static int dmar_hotplug_insert(acpi_handle handle) |
| 2116 | { |
| 2117 | int ret; |
| 2118 | int drhd_count = 0; |
| 2119 | |
| 2120 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2121 | &dmar_validate_one_drhd, (void *)1); |
| 2122 | if (ret) |
| 2123 | goto out; |
| 2124 | |
| 2125 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2126 | &dmar_parse_one_drhd, (void *)&drhd_count); |
| 2127 | if (ret == 0 && drhd_count == 0) { |
| 2128 | pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n"); |
| 2129 | goto out; |
| 2130 | } else if (ret) { |
| 2131 | goto release_drhd; |
| 2132 | } |
| 2133 | |
| 2134 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA, |
| 2135 | &dmar_parse_one_rhsa, NULL); |
| 2136 | if (ret) |
| 2137 | goto release_drhd; |
| 2138 | |
| 2139 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 2140 | &dmar_parse_one_atsr, NULL); |
| 2141 | if (ret) |
| 2142 | goto release_atsr; |
| 2143 | |
| 2144 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2145 | &dmar_hp_add_drhd, NULL); |
| 2146 | if (!ret) |
| 2147 | return 0; |
| 2148 | |
| 2149 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2150 | &dmar_hp_remove_drhd, NULL); |
| 2151 | release_atsr: |
| 2152 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 2153 | &dmar_release_one_atsr, NULL); |
| 2154 | release_drhd: |
| 2155 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2156 | &dmar_hp_release_drhd, NULL); |
| 2157 | out: |
| 2158 | return ret; |
| 2159 | } |
| 2160 | |
| 2161 | static int dmar_hotplug_remove(acpi_handle handle) |
| 2162 | { |
| 2163 | int ret; |
| 2164 | |
| 2165 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 2166 | &dmar_check_one_atsr, NULL); |
| 2167 | if (ret) |
| 2168 | return ret; |
| 2169 | |
| 2170 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2171 | &dmar_hp_remove_drhd, NULL); |
| 2172 | if (ret == 0) { |
| 2173 | WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 2174 | &dmar_release_one_atsr, NULL)); |
| 2175 | WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2176 | &dmar_hp_release_drhd, NULL)); |
| 2177 | } else { |
| 2178 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 2179 | &dmar_hp_add_drhd, NULL); |
| 2180 | } |
| 2181 | |
| 2182 | return ret; |
| 2183 | } |
| 2184 | |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 2185 | static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl, |
| 2186 | void *context, void **retval) |
| 2187 | { |
| 2188 | acpi_handle *phdl = retval; |
| 2189 | |
| 2190 | if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) { |
| 2191 | *phdl = handle; |
| 2192 | return AE_CTRL_TERMINATE; |
| 2193 | } |
| 2194 | |
| 2195 | return AE_OK; |
| 2196 | } |
| 2197 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2198 | static int dmar_device_hotplug(acpi_handle handle, bool insert) |
| 2199 | { |
| 2200 | int ret; |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 2201 | acpi_handle tmp = NULL; |
| 2202 | acpi_status status; |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2203 | |
| 2204 | if (!dmar_in_use()) |
| 2205 | return 0; |
| 2206 | |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 2207 | if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) { |
| 2208 | tmp = handle; |
| 2209 | } else { |
| 2210 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 2211 | ACPI_UINT32_MAX, |
| 2212 | dmar_get_dsm_handle, |
| 2213 | NULL, NULL, &tmp); |
| 2214 | if (ACPI_FAILURE(status)) { |
| 2215 | pr_warn("Failed to locate _DSM method.\n"); |
| 2216 | return -ENXIO; |
| 2217 | } |
| 2218 | } |
| 2219 | if (tmp == NULL) |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2220 | return 0; |
| 2221 | |
| 2222 | down_write(&dmar_global_lock); |
| 2223 | if (insert) |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 2224 | ret = dmar_hotplug_insert(tmp); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2225 | else |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 2226 | ret = dmar_hotplug_remove(tmp); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 2227 | up_write(&dmar_global_lock); |
| 2228 | |
| 2229 | return ret; |
| 2230 | } |
| 2231 | |
| 2232 | int dmar_device_add(acpi_handle handle) |
| 2233 | { |
| 2234 | return dmar_device_hotplug(handle, true); |
| 2235 | } |
| 2236 | |
| 2237 | int dmar_device_remove(acpi_handle handle) |
| 2238 | { |
| 2239 | return dmar_device_hotplug(handle, false); |
| 2240 | } |
Lu Baolu | 89a6079 | 2018-10-23 15:45:01 +0800 | [diff] [blame] | 2241 | |
| 2242 | /* |
| 2243 | * dmar_platform_optin - Is %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in DMAR table |
| 2244 | * |
| 2245 | * Returns true if the platform has %DMA_CTRL_PLATFORM_OPT_IN_FLAG set in |
| 2246 | * the ACPI DMAR table. This means that the platform boot firmware has made |
| 2247 | * sure no device can issue DMA outside of RMRR regions. |
| 2248 | */ |
| 2249 | bool dmar_platform_optin(void) |
| 2250 | { |
| 2251 | struct acpi_table_dmar *dmar; |
| 2252 | acpi_status status; |
| 2253 | bool ret; |
| 2254 | |
| 2255 | status = acpi_get_table(ACPI_SIG_DMAR, 0, |
| 2256 | (struct acpi_table_header **)&dmar); |
| 2257 | if (ACPI_FAILURE(status)) |
| 2258 | return false; |
| 2259 | |
| 2260 | ret = !!(dmar->flags & DMAR_PLATFORM_OPT_IN); |
| 2261 | acpi_put_table((struct acpi_table_header *)dmar); |
| 2262 | |
| 2263 | return ret; |
| 2264 | } |
| 2265 | EXPORT_SYMBOL_GPL(dmar_platform_optin); |