Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006, Intel Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License along with |
| 14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
| 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 16 | * |
mark gross | 98bcef5 | 2008-02-23 15:23:35 -0800 | [diff] [blame] | 17 | * Copyright (C) 2006-2008 Intel Corporation |
| 18 | * Author: Ashok Raj <ashok.raj@intel.com> |
| 19 | * Author: Shaohua Li <shaohua.li@intel.com> |
| 20 | * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 21 | * |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 22 | * This file implements early detection/parsing of Remapping Devices |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 23 | * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI |
| 24 | * tables. |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 25 | * |
| 26 | * These routines are used by both DMA-remapping and Interrupt-remapping |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 29 | #define pr_fmt(fmt) "DMAR: " fmt |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 30 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 31 | #include <linux/pci.h> |
| 32 | #include <linux/dmar.h> |
Kay, Allen M | 3871794 | 2008-09-09 18:37:29 +0300 | [diff] [blame] | 33 | #include <linux/iova.h> |
| 34 | #include <linux/intel-iommu.h> |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 35 | #include <linux/timer.h> |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 36 | #include <linux/irq.h> |
| 37 | #include <linux/interrupt.h> |
Shane Wang | 69575d3 | 2009-09-01 18:25:07 -0700 | [diff] [blame] | 38 | #include <linux/tboot.h> |
Len Brown | eb27cae | 2009-07-06 23:40:19 -0400 | [diff] [blame] | 39 | #include <linux/dmi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 41 | #include <linux/iommu.h> |
Suresh Siddha | 8a8f422 | 2012-03-30 11:47:08 -0700 | [diff] [blame] | 42 | #include <asm/irq_remapping.h> |
Konrad Rzeszutek Wilk | 4db77ff | 2010-08-26 13:58:04 -0400 | [diff] [blame] | 43 | #include <asm/iommu_table.h> |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 44 | |
Joerg Roedel | 078e1ee | 2012-09-26 12:44:43 +0200 | [diff] [blame] | 45 | #include "irq_remapping.h" |
| 46 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 47 | typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *); |
| 48 | struct dmar_res_callback { |
| 49 | dmar_res_handler_t cb[ACPI_DMAR_TYPE_RESERVED]; |
| 50 | void *arg[ACPI_DMAR_TYPE_RESERVED]; |
| 51 | bool ignore_unhandled; |
| 52 | bool print_entry; |
| 53 | }; |
| 54 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 55 | /* |
| 56 | * Assumptions: |
| 57 | * 1) The hotplug framework guarentees that DMAR unit will be hot-added |
| 58 | * before IO devices managed by that unit. |
| 59 | * 2) The hotplug framework guarantees that DMAR unit will be hot-removed |
| 60 | * after IO devices managed by that unit. |
| 61 | * 3) Hotplug events are rare. |
| 62 | * |
| 63 | * Locking rules for DMA and interrupt remapping related global data structures: |
| 64 | * 1) Use dmar_global_lock in process context |
| 65 | * 2) Use RCU in interrupt context |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 66 | */ |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 67 | DECLARE_RWSEM(dmar_global_lock); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 68 | LIST_HEAD(dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 69 | |
Suresh Siddha | 41750d3 | 2011-08-23 17:05:18 -0700 | [diff] [blame] | 70 | struct acpi_table_header * __initdata dmar_tbl; |
Yinghai Lu | 8e1568f | 2009-02-11 01:06:59 -0800 | [diff] [blame] | 71 | static acpi_size dmar_tbl_size; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 72 | static int dmar_dev_scope_status = 1; |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 73 | 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] | 74 | |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 75 | static int alloc_iommu(struct dmar_drhd_unit *drhd); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 76 | static void free_iommu(struct intel_iommu *iommu); |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 77 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 78 | static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd) |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 79 | { |
| 80 | /* |
| 81 | * add INCLUDE_ALL at the tail, so scan the list will find it at |
| 82 | * the very end. |
| 83 | */ |
| 84 | if (drhd->include_all) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 85 | list_add_tail_rcu(&drhd->list, &dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 86 | else |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 87 | list_add_rcu(&drhd->list, &dmar_drhd_units); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 90 | void *dmar_alloc_dev_scope(void *start, void *end, int *cnt) |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 91 | { |
| 92 | struct acpi_dmar_device_scope *scope; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 93 | |
| 94 | *cnt = 0; |
| 95 | while (start < end) { |
| 96 | scope = start; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 97 | if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE || |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 98 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 99 | scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) |
| 100 | (*cnt)++; |
Linn Crosetto | ae3e7f3 | 2013-04-23 12:26:45 -0600 | [diff] [blame] | 101 | else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && |
| 102 | scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 103 | pr_warn("Unsupported device scope\n"); |
Yinghai Lu | 5715f0f | 2010-04-08 19:58:22 +0100 | [diff] [blame] | 104 | } |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 105 | start += scope->length; |
| 106 | } |
| 107 | if (*cnt == 0) |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 108 | return NULL; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 109 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 110 | return kcalloc(*cnt, sizeof(struct dmar_dev_scope), GFP_KERNEL); |
Jiang Liu | bb3a6b7 | 2014-02-19 14:07:24 +0800 | [diff] [blame] | 111 | } |
| 112 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 113 | void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt) |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 114 | { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 115 | int i; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 116 | struct device *tmp_dev; |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 117 | |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 118 | if (*devices && *cnt) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 119 | for_each_active_dev_scope(*devices, *cnt, i, tmp_dev) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 120 | put_device(tmp_dev); |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 121 | kfree(*devices); |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 122 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 123 | |
| 124 | *devices = NULL; |
| 125 | *cnt = 0; |
Jiang Liu | ada4d4b | 2014-01-06 14:18:09 +0800 | [diff] [blame] | 126 | } |
| 127 | |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 128 | /* Optimize out kzalloc()/kfree() for normal cases */ |
| 129 | static char dmar_pci_notify_info_buf[64]; |
| 130 | |
| 131 | static struct dmar_pci_notify_info * |
| 132 | dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event) |
| 133 | { |
| 134 | int level = 0; |
| 135 | size_t size; |
| 136 | struct pci_dev *tmp; |
| 137 | struct dmar_pci_notify_info *info; |
| 138 | |
| 139 | BUG_ON(dev->is_virtfn); |
| 140 | |
| 141 | /* Only generate path[] for device addition event */ |
| 142 | if (event == BUS_NOTIFY_ADD_DEVICE) |
| 143 | for (tmp = dev; tmp; tmp = tmp->bus->self) |
| 144 | level++; |
| 145 | |
| 146 | size = sizeof(*info) + level * sizeof(struct acpi_dmar_pci_path); |
| 147 | if (size <= sizeof(dmar_pci_notify_info_buf)) { |
| 148 | info = (struct dmar_pci_notify_info *)dmar_pci_notify_info_buf; |
| 149 | } else { |
| 150 | info = kzalloc(size, GFP_KERNEL); |
| 151 | if (!info) { |
| 152 | pr_warn("Out of memory when allocating notify_info " |
| 153 | "for %s.\n", pci_name(dev)); |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 154 | if (dmar_dev_scope_status == 0) |
| 155 | dmar_dev_scope_status = -ENOMEM; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 156 | return NULL; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | info->event = event; |
| 161 | info->dev = dev; |
| 162 | info->seg = pci_domain_nr(dev->bus); |
| 163 | info->level = level; |
| 164 | if (event == BUS_NOTIFY_ADD_DEVICE) { |
Jiang Liu | 5ae0566 | 2014-04-15 10:35:35 +0800 | [diff] [blame] | 165 | for (tmp = dev; tmp; tmp = tmp->bus->self) { |
| 166 | level--; |
Joerg Roedel | 5738459 | 2014-10-02 11:50:25 +0200 | [diff] [blame] | 167 | info->path[level].bus = tmp->bus->number; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 168 | info->path[level].device = PCI_SLOT(tmp->devfn); |
| 169 | info->path[level].function = PCI_FUNC(tmp->devfn); |
| 170 | if (pci_is_root_bus(tmp->bus)) |
| 171 | info->bus = tmp->bus->number; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | return info; |
| 176 | } |
| 177 | |
| 178 | static inline void dmar_free_pci_notify_info(struct dmar_pci_notify_info *info) |
| 179 | { |
| 180 | if ((void *)info != dmar_pci_notify_info_buf) |
| 181 | kfree(info); |
| 182 | } |
| 183 | |
| 184 | static bool dmar_match_pci_path(struct dmar_pci_notify_info *info, int bus, |
| 185 | struct acpi_dmar_pci_path *path, int count) |
| 186 | { |
| 187 | int i; |
| 188 | |
| 189 | if (info->bus != bus) |
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 | if (info->level != count) |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 192 | goto fallback; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 193 | |
| 194 | for (i = 0; i < count; i++) { |
| 195 | if (path[i].device != info->path[i].device || |
| 196 | path[i].function != info->path[i].function) |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 197 | goto fallback; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | return true; |
Joerg Roedel | 80f7b3d | 2014-09-22 16:30:22 +0200 | [diff] [blame] | 201 | |
| 202 | fallback: |
| 203 | |
| 204 | if (count != 1) |
| 205 | return false; |
| 206 | |
| 207 | i = info->level - 1; |
| 208 | if (bus == info->path[i].bus && |
| 209 | path[0].device == info->path[i].device && |
| 210 | path[0].function == info->path[i].function) { |
| 211 | pr_info(FW_BUG "RMRR entry for device %02x:%02x.%x is broken - applying workaround\n", |
| 212 | bus, path[0].device, path[0].function); |
| 213 | return true; |
| 214 | } |
| 215 | |
| 216 | return false; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /* Return: > 0 if match found, 0 if no match found, < 0 if error happens */ |
| 220 | int dmar_insert_dev_scope(struct dmar_pci_notify_info *info, |
| 221 | void *start, void*end, u16 segment, |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 222 | struct dmar_dev_scope *devices, |
| 223 | int devices_cnt) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 224 | { |
| 225 | int i, level; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 226 | struct device *tmp, *dev = &info->dev->dev; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 227 | struct acpi_dmar_device_scope *scope; |
| 228 | struct acpi_dmar_pci_path *path; |
| 229 | |
| 230 | if (segment != info->seg) |
| 231 | return 0; |
| 232 | |
| 233 | for (; start < end; start += scope->length) { |
| 234 | scope = start; |
| 235 | if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_ENDPOINT && |
| 236 | scope->entry_type != ACPI_DMAR_SCOPE_TYPE_BRIDGE) |
| 237 | continue; |
| 238 | |
| 239 | path = (struct acpi_dmar_pci_path *)(scope + 1); |
| 240 | level = (scope->length - sizeof(*scope)) / sizeof(*path); |
| 241 | if (!dmar_match_pci_path(info, scope->bus, path, level)) |
| 242 | continue; |
| 243 | |
| 244 | if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT) ^ |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 245 | (info->dev->hdr_type == PCI_HEADER_TYPE_NORMAL)) { |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 246 | pr_warn("Device scope type does not match for %s\n", |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 247 | pci_name(info->dev)); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 248 | return -EINVAL; |
| 249 | } |
| 250 | |
| 251 | for_each_dev_scope(devices, devices_cnt, i, tmp) |
| 252 | if (tmp == NULL) { |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 253 | devices[i].bus = info->dev->bus->number; |
| 254 | devices[i].devfn = info->dev->devfn; |
| 255 | rcu_assign_pointer(devices[i].dev, |
| 256 | get_device(dev)); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 257 | return 1; |
| 258 | } |
| 259 | BUG_ON(i >= devices_cnt); |
| 260 | } |
| 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | 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] | 266 | struct dmar_dev_scope *devices, int count) |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 267 | { |
| 268 | int index; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 269 | struct device *tmp; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 270 | |
| 271 | if (info->seg != segment) |
| 272 | return 0; |
| 273 | |
| 274 | for_each_active_dev_scope(devices, count, index, tmp) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 275 | if (tmp == &info->dev->dev) { |
Andreea-Cristina Bernat | eecbad7 | 2014-08-18 15:20:56 +0300 | [diff] [blame] | 276 | RCU_INIT_POINTER(devices[index].dev, NULL); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 277 | synchronize_rcu(); |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 278 | put_device(tmp); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 279 | return 1; |
| 280 | } |
| 281 | |
| 282 | return 0; |
| 283 | } |
| 284 | |
| 285 | static int dmar_pci_bus_add_dev(struct dmar_pci_notify_info *info) |
| 286 | { |
| 287 | int ret = 0; |
| 288 | struct dmar_drhd_unit *dmaru; |
| 289 | struct acpi_dmar_hardware_unit *drhd; |
| 290 | |
| 291 | for_each_drhd_unit(dmaru) { |
| 292 | if (dmaru->include_all) |
| 293 | continue; |
| 294 | |
| 295 | drhd = container_of(dmaru->hdr, |
| 296 | struct acpi_dmar_hardware_unit, header); |
| 297 | ret = dmar_insert_dev_scope(info, (void *)(drhd + 1), |
| 298 | ((void *)drhd) + drhd->header.length, |
| 299 | dmaru->segment, |
| 300 | dmaru->devices, dmaru->devices_cnt); |
| 301 | if (ret != 0) |
| 302 | break; |
| 303 | } |
| 304 | if (ret >= 0) |
| 305 | ret = dmar_iommu_notify_scope_dev(info); |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 306 | if (ret < 0 && dmar_dev_scope_status == 0) |
| 307 | dmar_dev_scope_status = ret; |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 308 | |
| 309 | return ret; |
| 310 | } |
| 311 | |
| 312 | static void dmar_pci_bus_del_dev(struct dmar_pci_notify_info *info) |
| 313 | { |
| 314 | struct dmar_drhd_unit *dmaru; |
| 315 | |
| 316 | for_each_drhd_unit(dmaru) |
| 317 | if (dmar_remove_dev_scope(info, dmaru->segment, |
| 318 | dmaru->devices, dmaru->devices_cnt)) |
| 319 | break; |
| 320 | dmar_iommu_notify_scope_dev(info); |
| 321 | } |
| 322 | |
| 323 | static int dmar_pci_bus_notifier(struct notifier_block *nb, |
| 324 | unsigned long action, void *data) |
| 325 | { |
| 326 | struct pci_dev *pdev = to_pci_dev(data); |
| 327 | struct dmar_pci_notify_info *info; |
| 328 | |
| 329 | /* Only care about add/remove events for physical functions */ |
| 330 | if (pdev->is_virtfn) |
| 331 | return NOTIFY_DONE; |
| 332 | if (action != BUS_NOTIFY_ADD_DEVICE && action != BUS_NOTIFY_DEL_DEVICE) |
| 333 | return NOTIFY_DONE; |
| 334 | |
| 335 | info = dmar_alloc_pci_notify_info(pdev, action); |
| 336 | if (!info) |
| 337 | return NOTIFY_DONE; |
| 338 | |
| 339 | down_write(&dmar_global_lock); |
| 340 | if (action == BUS_NOTIFY_ADD_DEVICE) |
| 341 | dmar_pci_bus_add_dev(info); |
| 342 | else if (action == BUS_NOTIFY_DEL_DEVICE) |
| 343 | dmar_pci_bus_del_dev(info); |
| 344 | up_write(&dmar_global_lock); |
| 345 | |
| 346 | dmar_free_pci_notify_info(info); |
| 347 | |
| 348 | return NOTIFY_OK; |
| 349 | } |
| 350 | |
| 351 | static struct notifier_block dmar_pci_bus_nb = { |
| 352 | .notifier_call = dmar_pci_bus_notifier, |
| 353 | .priority = INT_MIN, |
| 354 | }; |
| 355 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 356 | static struct dmar_drhd_unit * |
| 357 | dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd) |
| 358 | { |
| 359 | struct dmar_drhd_unit *dmaru; |
| 360 | |
| 361 | list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list) |
| 362 | if (dmaru->segment == drhd->segment && |
| 363 | dmaru->reg_base_addr == drhd->address) |
| 364 | return dmaru; |
| 365 | |
| 366 | return NULL; |
| 367 | } |
| 368 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 369 | /** |
| 370 | * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition |
| 371 | * structure which uniquely represent one DMA remapping hardware unit |
| 372 | * present in the platform |
| 373 | */ |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 374 | 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] | 375 | { |
| 376 | struct acpi_dmar_hardware_unit *drhd; |
| 377 | struct dmar_drhd_unit *dmaru; |
| 378 | int ret = 0; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 379 | |
David Woodhouse | e523b38 | 2009-04-10 22:27:48 -0700 | [diff] [blame] | 380 | drhd = (struct acpi_dmar_hardware_unit *)header; |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 381 | dmaru = dmar_find_dmaru(drhd); |
| 382 | if (dmaru) |
| 383 | goto out; |
| 384 | |
| 385 | dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 386 | if (!dmaru) |
| 387 | return -ENOMEM; |
| 388 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 389 | /* |
| 390 | * If header is allocated from slab by ACPI _DSM method, we need to |
| 391 | * copy the content because the memory buffer will be freed on return. |
| 392 | */ |
| 393 | dmaru->hdr = (void *)(dmaru + 1); |
| 394 | memcpy(dmaru->hdr, header, header->length); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 395 | dmaru->reg_base_addr = drhd->address; |
David Woodhouse | 276dbf99 | 2009-04-04 01:45:37 +0100 | [diff] [blame] | 396 | dmaru->segment = drhd->segment; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 397 | dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */ |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 398 | dmaru->devices = dmar_alloc_dev_scope((void *)(drhd + 1), |
| 399 | ((void *)drhd) + drhd->header.length, |
| 400 | &dmaru->devices_cnt); |
| 401 | if (dmaru->devices_cnt && dmaru->devices == NULL) { |
| 402 | kfree(dmaru); |
| 403 | return -ENOMEM; |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 404 | } |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 405 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 406 | ret = alloc_iommu(dmaru); |
| 407 | if (ret) { |
David Woodhouse | 07cb52f | 2014-03-07 14:39:27 +0000 | [diff] [blame] | 408 | dmar_free_dev_scope(&dmaru->devices, |
| 409 | &dmaru->devices_cnt); |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 410 | kfree(dmaru); |
| 411 | return ret; |
| 412 | } |
| 413 | dmar_register_drhd_unit(dmaru); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 414 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 415 | out: |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 416 | if (arg) |
| 417 | (*(int *)arg)++; |
| 418 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 419 | return 0; |
| 420 | } |
| 421 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 422 | static void dmar_free_drhd(struct dmar_drhd_unit *dmaru) |
| 423 | { |
| 424 | if (dmaru->devices && dmaru->devices_cnt) |
| 425 | dmar_free_dev_scope(&dmaru->devices, &dmaru->devices_cnt); |
| 426 | if (dmaru->iommu) |
| 427 | free_iommu(dmaru->iommu); |
| 428 | kfree(dmaru); |
| 429 | } |
| 430 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 431 | static int __init dmar_parse_one_andd(struct acpi_dmar_header *header, |
| 432 | void *arg) |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 433 | { |
| 434 | struct acpi_dmar_andd *andd = (void *)header; |
| 435 | |
| 436 | /* Check for NUL termination within the designated length */ |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 437 | if (strnlen(andd->device_name, header->length - 8) == header->length - 8) { |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 438 | WARN_TAINT(1, TAINT_FIRMWARE_WORKAROUND, |
| 439 | "Your BIOS is broken; ANDD object name is not NUL-terminated\n" |
| 440 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 441 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 442 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 443 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
| 444 | return -EINVAL; |
| 445 | } |
| 446 | pr_info("ANDD device: %x name: %s\n", andd->device_number, |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 447 | andd->device_name); |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 448 | |
| 449 | return 0; |
| 450 | } |
| 451 | |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 452 | #ifdef CONFIG_ACPI_NUMA |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 453 | 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] | 454 | { |
| 455 | struct acpi_dmar_rhsa *rhsa; |
| 456 | struct dmar_drhd_unit *drhd; |
| 457 | |
| 458 | rhsa = (struct acpi_dmar_rhsa *)header; |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 459 | for_each_drhd_unit(drhd) { |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 460 | if (drhd->reg_base_addr == rhsa->base_address) { |
| 461 | int node = acpi_map_pxm_to_node(rhsa->proximity_domain); |
| 462 | |
| 463 | if (!node_online(node)) |
| 464 | node = -1; |
| 465 | drhd->iommu->node = node; |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 466 | return 0; |
| 467 | } |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 468 | } |
Ben Hutchings | fd0c889 | 2010-04-03 19:38:43 +0100 | [diff] [blame] | 469 | WARN_TAINT( |
| 470 | 1, TAINT_FIRMWARE_WORKAROUND, |
| 471 | "Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n" |
| 472 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 473 | drhd->reg_base_addr, |
| 474 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 475 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 476 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 477 | |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 478 | return 0; |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 479 | } |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 480 | #else |
| 481 | #define dmar_parse_one_rhsa dmar_res_noop |
David Woodhouse | aa69707 | 2009-10-07 12:18:00 +0100 | [diff] [blame] | 482 | #endif |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 483 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 484 | static void __init |
| 485 | dmar_table_print_dmar_entry(struct acpi_dmar_header *header) |
| 486 | { |
| 487 | struct acpi_dmar_hardware_unit *drhd; |
| 488 | struct acpi_dmar_reserved_memory *rmrr; |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 489 | struct acpi_dmar_atsr *atsr; |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 490 | struct acpi_dmar_rhsa *rhsa; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 491 | |
| 492 | switch (header->type) { |
| 493 | case ACPI_DMAR_TYPE_HARDWARE_UNIT: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 494 | drhd = container_of(header, struct acpi_dmar_hardware_unit, |
| 495 | header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 496 | pr_info("DRHD base: %#016Lx flags: %#x\n", |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 497 | (unsigned long long)drhd->address, drhd->flags); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 498 | break; |
| 499 | case ACPI_DMAR_TYPE_RESERVED_MEMORY: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 500 | rmrr = container_of(header, struct acpi_dmar_reserved_memory, |
| 501 | header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 502 | pr_info("RMRR base: %#016Lx end: %#016Lx\n", |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 503 | (unsigned long long)rmrr->base_address, |
| 504 | (unsigned long long)rmrr->end_address); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 505 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 506 | case ACPI_DMAR_TYPE_ROOT_ATS: |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 507 | atsr = container_of(header, struct acpi_dmar_atsr, header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 508 | pr_info("ATSR flags: %#x\n", atsr->flags); |
Yu Zhao | aa5d2b5 | 2009-05-18 13:51:34 +0800 | [diff] [blame] | 509 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 510 | case ACPI_DMAR_TYPE_HARDWARE_AFFINITY: |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 511 | rhsa = container_of(header, struct acpi_dmar_rhsa, header); |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 512 | pr_info("RHSA base: %#016Lx proximity domain: %#x\n", |
Roland Dreier | 17b6097 | 2009-09-24 12:14:00 -0700 | [diff] [blame] | 513 | (unsigned long long)rhsa->base_address, |
| 514 | rhsa->proximity_domain); |
| 515 | break; |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 516 | case ACPI_DMAR_TYPE_NAMESPACE: |
David Woodhouse | e625b4a | 2014-03-07 14:34:38 +0000 | [diff] [blame] | 517 | /* We don't print this here because we need to sanity-check |
| 518 | it first. So print it in dmar_parse_one_andd() instead. */ |
| 519 | break; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 520 | } |
| 521 | } |
| 522 | |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 523 | /** |
| 524 | * dmar_table_detect - checks to see if the platform supports DMAR devices |
| 525 | */ |
| 526 | static int __init dmar_table_detect(void) |
| 527 | { |
| 528 | acpi_status status = AE_OK; |
| 529 | |
| 530 | /* if we could find DMAR table, then there are DMAR devices */ |
Yinghai Lu | 8e1568f | 2009-02-11 01:06:59 -0800 | [diff] [blame] | 531 | status = acpi_get_table_with_size(ACPI_SIG_DMAR, 0, |
| 532 | (struct acpi_table_header **)&dmar_tbl, |
| 533 | &dmar_tbl_size); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 534 | |
| 535 | if (ACPI_SUCCESS(status) && !dmar_tbl) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 536 | pr_warn("Unable to map DMAR\n"); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 537 | status = AE_NOT_FOUND; |
| 538 | } |
| 539 | |
| 540 | return (ACPI_SUCCESS(status) ? 1 : 0); |
| 541 | } |
Suresh Siddha | aaa9d1d | 2008-07-10 11:16:38 -0700 | [diff] [blame] | 542 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 543 | static int dmar_walk_remapping_entries(struct acpi_dmar_header *start, |
| 544 | size_t len, struct dmar_res_callback *cb) |
| 545 | { |
| 546 | int ret = 0; |
| 547 | struct acpi_dmar_header *iter, *next; |
| 548 | struct acpi_dmar_header *end = ((void *)start) + len; |
| 549 | |
| 550 | for (iter = start; iter < end && ret == 0; iter = next) { |
| 551 | next = (void *)iter + iter->length; |
| 552 | if (iter->length == 0) { |
| 553 | /* Avoid looping forever on bad ACPI tables */ |
| 554 | pr_debug(FW_BUG "Invalid 0-length structure\n"); |
| 555 | break; |
| 556 | } else if (next > end) { |
| 557 | /* Avoid passing table end */ |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 558 | pr_warn(FW_BUG "Record passes table end\n"); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 559 | ret = -EINVAL; |
| 560 | break; |
| 561 | } |
| 562 | |
| 563 | if (cb->print_entry) |
| 564 | dmar_table_print_dmar_entry(iter); |
| 565 | |
| 566 | if (iter->type >= ACPI_DMAR_TYPE_RESERVED) { |
| 567 | /* continue for forward compatibility */ |
| 568 | pr_debug("Unknown DMAR structure type %d\n", |
| 569 | iter->type); |
| 570 | } else if (cb->cb[iter->type]) { |
| 571 | ret = cb->cb[iter->type](iter, cb->arg[iter->type]); |
| 572 | } else if (!cb->ignore_unhandled) { |
| 573 | pr_warn("No handler for DMAR structure type %d\n", |
| 574 | iter->type); |
| 575 | ret = -EINVAL; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | return ret; |
| 580 | } |
| 581 | |
| 582 | static inline int dmar_walk_dmar_table(struct acpi_table_dmar *dmar, |
| 583 | struct dmar_res_callback *cb) |
| 584 | { |
| 585 | return dmar_walk_remapping_entries((void *)(dmar + 1), |
| 586 | dmar->header.length - sizeof(*dmar), cb); |
| 587 | } |
| 588 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 589 | /** |
| 590 | * parse_dmar_table - parses the DMA reporting table |
| 591 | */ |
| 592 | static int __init |
| 593 | parse_dmar_table(void) |
| 594 | { |
| 595 | struct acpi_table_dmar *dmar; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 596 | int ret = 0; |
Li, Zhen-Hua | 7cef334 | 2013-05-20 15:57:32 +0800 | [diff] [blame] | 597 | int drhd_count = 0; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 598 | struct dmar_res_callback cb = { |
| 599 | .print_entry = true, |
| 600 | .ignore_unhandled = true, |
| 601 | .arg[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &drhd_count, |
| 602 | .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_parse_one_drhd, |
| 603 | .cb[ACPI_DMAR_TYPE_RESERVED_MEMORY] = &dmar_parse_one_rmrr, |
| 604 | .cb[ACPI_DMAR_TYPE_ROOT_ATS] = &dmar_parse_one_atsr, |
| 605 | .cb[ACPI_DMAR_TYPE_HARDWARE_AFFINITY] = &dmar_parse_one_rhsa, |
| 606 | .cb[ACPI_DMAR_TYPE_NAMESPACE] = &dmar_parse_one_andd, |
| 607 | }; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 608 | |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 609 | /* |
| 610 | * Do it again, earlier dmar_tbl mapping could be mapped with |
| 611 | * fixed map. |
| 612 | */ |
| 613 | dmar_table_detect(); |
| 614 | |
Joseph Cihula | a59b50e | 2009-06-30 19:31:10 -0700 | [diff] [blame] | 615 | /* |
| 616 | * ACPI tables may not be DMA protected by tboot, so use DMAR copy |
| 617 | * SINIT saved in SinitMleData in TXT heap (which is DMA protected) |
| 618 | */ |
| 619 | dmar_tbl = tboot_get_dmar_table(dmar_tbl); |
| 620 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 621 | dmar = (struct acpi_table_dmar *)dmar_tbl; |
| 622 | if (!dmar) |
| 623 | return -ENODEV; |
| 624 | |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 625 | if (dmar->width < PAGE_SHIFT - 1) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 626 | pr_warn("Invalid DMAR haw\n"); |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 627 | return -EINVAL; |
| 628 | } |
| 629 | |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 630 | pr_info("Host address width %d\n", dmar->width + 1); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 631 | ret = dmar_walk_dmar_table(dmar, &cb); |
| 632 | if (ret == 0 && drhd_count == 0) |
Li, Zhen-Hua | 7cef334 | 2013-05-20 15:57:32 +0800 | [diff] [blame] | 633 | pr_warn(FW_BUG "No DRHD structure found in DMAR table\n"); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 634 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 635 | return ret; |
| 636 | } |
| 637 | |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 638 | static int dmar_pci_device_match(struct dmar_dev_scope devices[], |
| 639 | int cnt, struct pci_dev *dev) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 640 | { |
| 641 | int index; |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 642 | struct device *tmp; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 643 | |
| 644 | while (dev) { |
Jiang Liu | b683b23 | 2014-02-19 14:07:32 +0800 | [diff] [blame] | 645 | for_each_active_dev_scope(devices, cnt, index, tmp) |
David Woodhouse | 832bd85 | 2014-03-07 15:08:36 +0000 | [diff] [blame] | 646 | if (dev_is_pci(tmp) && dev == to_pci_dev(tmp)) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 647 | return 1; |
| 648 | |
| 649 | /* Check our parent */ |
| 650 | dev = dev->bus->self; |
| 651 | } |
| 652 | |
| 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | struct dmar_drhd_unit * |
| 657 | dmar_find_matched_drhd_unit(struct pci_dev *dev) |
| 658 | { |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 659 | struct dmar_drhd_unit *dmaru; |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 660 | struct acpi_dmar_hardware_unit *drhd; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 661 | |
Yinghai | dda5654 | 2010-04-09 01:07:55 +0100 | [diff] [blame] | 662 | dev = pci_physfn(dev); |
| 663 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 664 | rcu_read_lock(); |
Yijing Wang | 8b161f0 | 2013-10-31 17:25:16 +0800 | [diff] [blame] | 665 | for_each_drhd_unit(dmaru) { |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 666 | drhd = container_of(dmaru->hdr, |
| 667 | struct acpi_dmar_hardware_unit, |
| 668 | header); |
| 669 | |
| 670 | if (dmaru->include_all && |
| 671 | drhd->segment == pci_domain_nr(dev->bus)) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 672 | goto out; |
Yu Zhao | 2e824f7 | 2008-12-22 16:54:58 +0800 | [diff] [blame] | 673 | |
| 674 | if (dmar_pci_device_match(dmaru->devices, |
| 675 | dmaru->devices_cnt, dev)) |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 676 | goto out; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 677 | } |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 678 | dmaru = NULL; |
| 679 | out: |
| 680 | rcu_read_unlock(); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 681 | |
Jiang Liu | 0e24261 | 2014-02-19 14:07:34 +0800 | [diff] [blame] | 682 | return dmaru; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 683 | } |
| 684 | |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 685 | static void __init dmar_acpi_insert_dev_scope(u8 device_number, |
| 686 | struct acpi_device *adev) |
| 687 | { |
| 688 | struct dmar_drhd_unit *dmaru; |
| 689 | struct acpi_dmar_hardware_unit *drhd; |
| 690 | struct acpi_dmar_device_scope *scope; |
| 691 | struct device *tmp; |
| 692 | int i; |
| 693 | struct acpi_dmar_pci_path *path; |
| 694 | |
| 695 | for_each_drhd_unit(dmaru) { |
| 696 | drhd = container_of(dmaru->hdr, |
| 697 | struct acpi_dmar_hardware_unit, |
| 698 | header); |
| 699 | |
| 700 | for (scope = (void *)(drhd + 1); |
| 701 | (unsigned long)scope < ((unsigned long)drhd) + drhd->header.length; |
| 702 | scope = ((void *)scope) + scope->length) { |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 703 | if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE) |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 704 | continue; |
| 705 | if (scope->enumeration_id != device_number) |
| 706 | continue; |
| 707 | |
| 708 | path = (void *)(scope + 1); |
| 709 | pr_info("ACPI device \"%s\" under DMAR at %llx as %02x:%02x.%d\n", |
| 710 | dev_name(&adev->dev), dmaru->reg_base_addr, |
| 711 | scope->bus, path->device, path->function); |
| 712 | for_each_dev_scope(dmaru->devices, dmaru->devices_cnt, i, tmp) |
| 713 | if (tmp == NULL) { |
| 714 | dmaru->devices[i].bus = scope->bus; |
| 715 | dmaru->devices[i].devfn = PCI_DEVFN(path->device, |
| 716 | path->function); |
| 717 | rcu_assign_pointer(dmaru->devices[i].dev, |
| 718 | get_device(&adev->dev)); |
| 719 | return; |
| 720 | } |
| 721 | BUG_ON(i >= dmaru->devices_cnt); |
| 722 | } |
| 723 | } |
| 724 | pr_warn("No IOMMU scope found for ANDD enumeration ID %d (%s)\n", |
| 725 | device_number, dev_name(&adev->dev)); |
| 726 | } |
| 727 | |
| 728 | static int __init dmar_acpi_dev_scope_init(void) |
| 729 | { |
Joerg Roedel | 11f1a77 | 2014-03-25 20:16:40 +0100 | [diff] [blame] | 730 | struct acpi_dmar_andd *andd; |
| 731 | |
| 732 | if (dmar_tbl == NULL) |
| 733 | return -ENODEV; |
| 734 | |
David Woodhouse | 7713ec0 | 2014-04-01 14:58:36 +0100 | [diff] [blame] | 735 | for (andd = (void *)dmar_tbl + sizeof(struct acpi_table_dmar); |
| 736 | ((unsigned long)andd) < ((unsigned long)dmar_tbl) + dmar_tbl->length; |
| 737 | andd = ((void *)andd) + andd->header.length) { |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 738 | if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) { |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 739 | acpi_handle h; |
| 740 | struct acpi_device *adev; |
| 741 | |
| 742 | if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 743 | andd->device_name, |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 744 | &h))) { |
| 745 | pr_err("Failed to find handle for ACPI object %s\n", |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 746 | andd->device_name); |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 747 | continue; |
| 748 | } |
Joerg Roedel | c0df975 | 2014-08-21 23:06:48 +0200 | [diff] [blame] | 749 | if (acpi_bus_get_device(h, &adev)) { |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 750 | pr_err("Failed to get device for ACPI object %s\n", |
Bob Moore | 83118b0 | 2014-07-30 12:21:00 +0800 | [diff] [blame] | 751 | andd->device_name); |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 752 | continue; |
| 753 | } |
| 754 | dmar_acpi_insert_dev_scope(andd->device_number, adev); |
| 755 | } |
David Woodhouse | ed40356 | 2014-03-07 23:15:42 +0000 | [diff] [blame] | 756 | } |
| 757 | return 0; |
| 758 | } |
| 759 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 760 | int __init dmar_dev_scope_init(void) |
| 761 | { |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 762 | struct pci_dev *dev = NULL; |
| 763 | struct dmar_pci_notify_info *info; |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 764 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 765 | if (dmar_dev_scope_status != 1) |
| 766 | return dmar_dev_scope_status; |
Suresh Siddha | c2c7286 | 2011-08-23 17:05:19 -0700 | [diff] [blame] | 767 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 768 | if (list_empty(&dmar_drhd_units)) { |
| 769 | dmar_dev_scope_status = -ENODEV; |
| 770 | } else { |
| 771 | dmar_dev_scope_status = 0; |
Suresh Siddha | 318fe7d | 2011-08-23 17:05:20 -0700 | [diff] [blame] | 772 | |
David Woodhouse | 63b4262 | 2014-03-28 11:28:40 +0000 | [diff] [blame] | 773 | dmar_acpi_dev_scope_init(); |
| 774 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 775 | for_each_pci_dev(dev) { |
| 776 | if (dev->is_virtfn) |
| 777 | continue; |
| 778 | |
| 779 | info = dmar_alloc_pci_notify_info(dev, |
| 780 | BUS_NOTIFY_ADD_DEVICE); |
| 781 | if (!info) { |
| 782 | return dmar_dev_scope_status; |
| 783 | } else { |
| 784 | dmar_pci_bus_add_dev(info); |
| 785 | dmar_free_pci_notify_info(info); |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb); |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 790 | } |
| 791 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 792 | return dmar_dev_scope_status; |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 793 | } |
| 794 | |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 795 | |
| 796 | int __init dmar_table_init(void) |
| 797 | { |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 798 | static int dmar_table_initialized; |
Fenghua Yu | 093f87d | 2007-11-21 15:07:14 -0800 | [diff] [blame] | 799 | int ret; |
| 800 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 801 | if (dmar_table_initialized == 0) { |
| 802 | ret = parse_dmar_table(); |
| 803 | if (ret < 0) { |
| 804 | if (ret != -ENODEV) |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 805 | pr_info("Parse DMAR table failure.\n"); |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 806 | } else if (list_empty(&dmar_drhd_units)) { |
| 807 | pr_info("No DMAR devices found\n"); |
| 808 | ret = -ENODEV; |
| 809 | } |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 810 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 811 | if (ret < 0) |
| 812 | dmar_table_initialized = ret; |
| 813 | else |
| 814 | dmar_table_initialized = 1; |
Fenghua Yu | 093f87d | 2007-11-21 15:07:14 -0800 | [diff] [blame] | 815 | } |
| 816 | |
Jiang Liu | cc05301 | 2014-01-06 14:18:24 +0800 | [diff] [blame] | 817 | return dmar_table_initialized < 0 ? dmar_table_initialized : 0; |
Keshavamurthy, Anil S | 10e5247 | 2007-10-21 16:41:41 -0700 | [diff] [blame] | 818 | } |
| 819 | |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 820 | static void warn_invalid_dmar(u64 addr, const char *message) |
| 821 | { |
Ben Hutchings | fd0c889 | 2010-04-03 19:38:43 +0100 | [diff] [blame] | 822 | WARN_TAINT_ONCE( |
| 823 | 1, TAINT_FIRMWARE_WORKAROUND, |
| 824 | "Your BIOS is broken; DMAR reported at address %llx%s!\n" |
| 825 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", |
| 826 | addr, message, |
| 827 | dmi_get_system_info(DMI_BIOS_VENDOR), |
| 828 | dmi_get_system_info(DMI_BIOS_VERSION), |
| 829 | dmi_get_system_info(DMI_PRODUCT_VERSION)); |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 830 | } |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 831 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 832 | static int __ref |
| 833 | dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg) |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 834 | { |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 835 | struct acpi_dmar_hardware_unit *drhd; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 836 | void __iomem *addr; |
| 837 | u64 cap, ecap; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 838 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 839 | drhd = (void *)entry; |
| 840 | if (!drhd->address) { |
| 841 | warn_invalid_dmar(0, ""); |
| 842 | return -EINVAL; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 843 | } |
Chris Wright | 2c99220 | 2009-12-02 09:17:13 +0000 | [diff] [blame] | 844 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 845 | if (arg) |
| 846 | addr = ioremap(drhd->address, VTD_PAGE_SIZE); |
| 847 | else |
| 848 | addr = early_ioremap(drhd->address, VTD_PAGE_SIZE); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 849 | if (!addr) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 850 | pr_warn("Can't validate DRHD address: %llx\n", drhd->address); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 851 | return -EINVAL; |
| 852 | } |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 853 | |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 854 | cap = dmar_readq(addr + DMAR_CAP_REG); |
| 855 | ecap = dmar_readq(addr + DMAR_ECAP_REG); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 856 | |
| 857 | if (arg) |
| 858 | iounmap(addr); |
| 859 | else |
| 860 | early_iounmap(addr, VTD_PAGE_SIZE); |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 861 | |
| 862 | if (cap == (uint64_t)-1 && ecap == (uint64_t)-1) { |
| 863 | warn_invalid_dmar(drhd->address, " returns all ones"); |
| 864 | return -EINVAL; |
| 865 | } |
| 866 | |
Chris Wright | 2c99220 | 2009-12-02 09:17:13 +0000 | [diff] [blame] | 867 | return 0; |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 868 | } |
| 869 | |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 870 | int __init detect_intel_iommu(void) |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 871 | { |
| 872 | int ret; |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 873 | struct dmar_res_callback validate_drhd_cb = { |
| 874 | .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd, |
| 875 | .ignore_unhandled = true, |
| 876 | }; |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 877 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 878 | down_write(&dmar_global_lock); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 879 | ret = dmar_table_detect(); |
David Woodhouse | 86cf898 | 2009-11-09 22:15:15 +0000 | [diff] [blame] | 880 | if (ret) |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 881 | ret = !dmar_walk_dmar_table((struct acpi_table_dmar *)dmar_tbl, |
| 882 | &validate_drhd_cb); |
| 883 | if (ret && !no_iommu && !iommu_detected && !dmar_disabled) { |
| 884 | iommu_detected = 1; |
| 885 | /* Make sure ACS will be enabled */ |
| 886 | pci_request_acs(); |
| 887 | } |
Suresh Siddha | f5d1b97 | 2011-08-23 17:05:22 -0700 | [diff] [blame] | 888 | |
FUJITA Tomonori | 9d5ce73 | 2009-11-10 19:46:16 +0900 | [diff] [blame] | 889 | #ifdef CONFIG_X86 |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 890 | if (ret) |
| 891 | x86_init.iommu.iommu_init = intel_iommu_init; |
FUJITA Tomonori | 9d5ce73 | 2009-11-10 19:46:16 +0900 | [diff] [blame] | 892 | #endif |
Jiang Liu | c2a0b53 | 2014-11-09 22:47:56 +0800 | [diff] [blame] | 893 | |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 894 | early_acpi_os_unmap_memory((void __iomem *)dmar_tbl, dmar_tbl_size); |
Yinghai Lu | f6dd5c3 | 2008-09-03 16:58:32 -0700 | [diff] [blame] | 895 | dmar_tbl = NULL; |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 896 | up_write(&dmar_global_lock); |
Konrad Rzeszutek Wilk | 480125b | 2010-08-26 13:57:57 -0400 | [diff] [blame] | 897 | |
Konrad Rzeszutek Wilk | 4db77ff | 2010-08-26 13:58:04 -0400 | [diff] [blame] | 898 | return ret ? 1 : -ENODEV; |
Suresh Siddha | 2ae2101 | 2008-07-10 11:16:43 -0700 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 902 | static void unmap_iommu(struct intel_iommu *iommu) |
| 903 | { |
| 904 | iounmap(iommu->reg); |
| 905 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 906 | } |
| 907 | |
| 908 | /** |
| 909 | * map_iommu: map the iommu's registers |
| 910 | * @iommu: the iommu to map |
| 911 | * @phys_addr: the physical address of the base resgister |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 912 | * |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 913 | * Memory map the iommu's registers. Start w/ a single page, and |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 914 | * possibly expand if that turns out to be insufficent. |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 915 | */ |
| 916 | static int map_iommu(struct intel_iommu *iommu, u64 phys_addr) |
| 917 | { |
| 918 | int map_size, err=0; |
| 919 | |
| 920 | iommu->reg_phys = phys_addr; |
| 921 | iommu->reg_size = VTD_PAGE_SIZE; |
| 922 | |
| 923 | if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 924 | pr_err("Can't reserve memory\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 925 | err = -EBUSY; |
| 926 | goto out; |
| 927 | } |
| 928 | |
| 929 | iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size); |
| 930 | if (!iommu->reg) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 931 | pr_err("Can't map the region\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 932 | err = -ENOMEM; |
| 933 | goto release; |
| 934 | } |
| 935 | |
| 936 | iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG); |
| 937 | iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG); |
| 938 | |
| 939 | if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) { |
| 940 | err = -EINVAL; |
| 941 | warn_invalid_dmar(phys_addr, " returns all ones"); |
| 942 | goto unmap; |
| 943 | } |
| 944 | |
| 945 | /* the registers might be more than one page */ |
| 946 | map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap), |
| 947 | cap_max_fault_reg_offset(iommu->cap)); |
| 948 | map_size = VTD_PAGE_ALIGN(map_size); |
| 949 | if (map_size > iommu->reg_size) { |
| 950 | iounmap(iommu->reg); |
| 951 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 952 | iommu->reg_size = map_size; |
| 953 | if (!request_mem_region(iommu->reg_phys, iommu->reg_size, |
| 954 | iommu->name)) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 955 | pr_err("Can't reserve memory\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 956 | err = -EBUSY; |
| 957 | goto out; |
| 958 | } |
| 959 | iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size); |
| 960 | if (!iommu->reg) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 961 | pr_err("Can't map the region\n"); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 962 | err = -ENOMEM; |
| 963 | goto release; |
| 964 | } |
| 965 | } |
| 966 | err = 0; |
| 967 | goto out; |
| 968 | |
| 969 | unmap: |
| 970 | iounmap(iommu->reg); |
| 971 | release: |
| 972 | release_mem_region(iommu->reg_phys, iommu->reg_size); |
| 973 | out: |
| 974 | return err; |
| 975 | } |
| 976 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 977 | static int dmar_alloc_seq_id(struct intel_iommu *iommu) |
| 978 | { |
| 979 | iommu->seq_id = find_first_zero_bit(dmar_seq_ids, |
| 980 | DMAR_UNITS_SUPPORTED); |
| 981 | if (iommu->seq_id >= DMAR_UNITS_SUPPORTED) { |
| 982 | iommu->seq_id = -1; |
| 983 | } else { |
| 984 | set_bit(iommu->seq_id, dmar_seq_ids); |
| 985 | sprintf(iommu->name, "dmar%d", iommu->seq_id); |
| 986 | } |
| 987 | |
| 988 | return iommu->seq_id; |
| 989 | } |
| 990 | |
| 991 | static void dmar_free_seq_id(struct intel_iommu *iommu) |
| 992 | { |
| 993 | if (iommu->seq_id >= 0) { |
| 994 | clear_bit(iommu->seq_id, dmar_seq_ids); |
| 995 | iommu->seq_id = -1; |
| 996 | } |
| 997 | } |
| 998 | |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 999 | static int alloc_iommu(struct dmar_drhd_unit *drhd) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1000 | { |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1001 | struct intel_iommu *iommu; |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 1002 | u32 ver, sts; |
Joerg Roedel | 43f7392 | 2009-01-03 23:56:27 +0100 | [diff] [blame] | 1003 | int agaw = 0; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1004 | int msagaw = 0; |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1005 | int err; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1006 | |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 1007 | if (!drhd->reg_base_addr) { |
Ben Hutchings | 3a8663e | 2010-04-03 19:37:23 +0100 | [diff] [blame] | 1008 | warn_invalid_dmar(0, ""); |
David Woodhouse | 6ecbf01 | 2009-12-02 09:20:27 +0000 | [diff] [blame] | 1009 | return -EINVAL; |
| 1010 | } |
| 1011 | |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1012 | iommu = kzalloc(sizeof(*iommu), GFP_KERNEL); |
| 1013 | if (!iommu) |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 1014 | return -ENOMEM; |
Suresh Siddha | c42d9f3 | 2008-07-10 11:16:36 -0700 | [diff] [blame] | 1015 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1016 | if (dmar_alloc_seq_id(iommu) < 0) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1017 | pr_err("Failed to allocate seq_id\n"); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1018 | err = -ENOSPC; |
| 1019 | goto error; |
| 1020 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1021 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1022 | err = map_iommu(iommu, drhd->reg_base_addr); |
| 1023 | if (err) { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1024 | pr_err("Failed to map %s\n", iommu->name); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1025 | goto error_free_seq_id; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1026 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1027 | |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1028 | err = -EINVAL; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1029 | agaw = iommu_calculate_agaw(iommu); |
| 1030 | if (agaw < 0) { |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1031 | pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n", |
| 1032 | iommu->seq_id); |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1033 | goto err_unmap; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1034 | } |
| 1035 | msagaw = iommu_calculate_max_sagaw(iommu); |
| 1036 | if (msagaw < 0) { |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1037 | 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] | 1038 | iommu->seq_id); |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1039 | goto err_unmap; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1040 | } |
| 1041 | iommu->agaw = agaw; |
Fenghua Yu | 4ed0d3e | 2009-04-24 17:30:20 -0700 | [diff] [blame] | 1042 | iommu->msagaw = msagaw; |
David Woodhouse | 67ccac4 | 2014-03-09 13:49:45 -0700 | [diff] [blame] | 1043 | iommu->segment = drhd->segment; |
Weidong Han | 1b57368 | 2008-12-08 15:34:06 +0800 | [diff] [blame] | 1044 | |
Suresh Siddha | ee34b32 | 2009-10-02 11:01:21 -0700 | [diff] [blame] | 1045 | iommu->node = -1; |
| 1046 | |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1047 | ver = readl(iommu->reg + DMAR_VER_REG); |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1048 | pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n", |
| 1049 | iommu->name, |
Fenghua Yu | 5b6985c | 2008-10-16 18:02:32 -0700 | [diff] [blame] | 1050 | (unsigned long long)drhd->reg_base_addr, |
| 1051 | DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver), |
| 1052 | (unsigned long long)iommu->cap, |
| 1053 | (unsigned long long)iommu->ecap); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1054 | |
Takao Indoh | 3a93c84 | 2013-04-23 17:35:03 +0900 | [diff] [blame] | 1055 | /* Reflect status in gcmd */ |
| 1056 | sts = readl(iommu->reg + DMAR_GSTS_REG); |
| 1057 | if (sts & DMA_GSTS_IRES) |
| 1058 | iommu->gcmd |= DMA_GCMD_IRE; |
| 1059 | if (sts & DMA_GSTS_TES) |
| 1060 | iommu->gcmd |= DMA_GCMD_TE; |
| 1061 | if (sts & DMA_GSTS_QIES) |
| 1062 | iommu->gcmd |= DMA_GCMD_QIE; |
| 1063 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1064 | raw_spin_lock_init(&iommu->register_lock); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1065 | |
| 1066 | drhd->iommu = iommu; |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 1067 | |
| 1068 | if (intel_iommu_enabled) |
| 1069 | iommu->iommu_dev = iommu_device_create(NULL, iommu, |
| 1070 | intel_iommu_groups, |
Kees Cook | 2439d4a | 2015-07-24 16:27:57 -0700 | [diff] [blame] | 1071 | "%s", iommu->name); |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 1072 | |
Suresh Siddha | 1886e8a | 2008-07-10 11:16:37 -0700 | [diff] [blame] | 1073 | return 0; |
David Woodhouse | 0815565 | 2009-08-04 09:17:20 +0100 | [diff] [blame] | 1074 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1075 | err_unmap: |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1076 | unmap_iommu(iommu); |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1077 | error_free_seq_id: |
| 1078 | dmar_free_seq_id(iommu); |
| 1079 | error: |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1080 | kfree(iommu); |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1081 | return err; |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1084 | static void free_iommu(struct intel_iommu *iommu) |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1085 | { |
Alex Williamson | a5459cf | 2014-06-12 16:12:31 -0600 | [diff] [blame] | 1086 | iommu_device_destroy(iommu->iommu_dev); |
| 1087 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1088 | if (iommu->irq) { |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1089 | if (iommu->pr_irq) { |
| 1090 | free_irq(iommu->pr_irq, iommu); |
| 1091 | dmar_free_hwirq(iommu->pr_irq); |
| 1092 | iommu->pr_irq = 0; |
| 1093 | } |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1094 | free_irq(iommu->irq, iommu); |
Thomas Gleixner | a553b14 | 2014-05-07 15:44:11 +0000 | [diff] [blame] | 1095 | dmar_free_hwirq(iommu->irq); |
Jiang Liu | 34742db | 2015-04-13 14:11:41 +0800 | [diff] [blame] | 1096 | iommu->irq = 0; |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1097 | } |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1098 | |
Jiang Liu | a84da70 | 2014-01-06 14:18:23 +0800 | [diff] [blame] | 1099 | if (iommu->qi) { |
| 1100 | free_page((unsigned long)iommu->qi->desc); |
| 1101 | kfree(iommu->qi->desc_status); |
| 1102 | kfree(iommu->qi); |
| 1103 | } |
| 1104 | |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1105 | if (iommu->reg) |
Donald Dutile | 6f5cf52 | 2012-06-04 17:29:02 -0400 | [diff] [blame] | 1106 | unmap_iommu(iommu); |
| 1107 | |
Jiang Liu | 78d8e70 | 2014-11-09 22:47:57 +0800 | [diff] [blame] | 1108 | dmar_free_seq_id(iommu); |
Suresh Siddha | e61d98d | 2008-07-10 11:16:35 -0700 | [diff] [blame] | 1109 | kfree(iommu); |
| 1110 | } |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1111 | |
| 1112 | /* |
| 1113 | * Reclaim all the submitted descriptors which have completed its work. |
| 1114 | */ |
| 1115 | static inline void reclaim_free_desc(struct q_inval *qi) |
| 1116 | { |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1117 | while (qi->desc_status[qi->free_tail] == QI_DONE || |
| 1118 | qi->desc_status[qi->free_tail] == QI_ABORT) { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1119 | qi->desc_status[qi->free_tail] = QI_FREE; |
| 1120 | qi->free_tail = (qi->free_tail + 1) % QI_LENGTH; |
| 1121 | qi->free_cnt++; |
| 1122 | } |
| 1123 | } |
| 1124 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1125 | static int qi_check_fault(struct intel_iommu *iommu, int index) |
| 1126 | { |
| 1127 | u32 fault; |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1128 | int head, tail; |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1129 | struct q_inval *qi = iommu->qi; |
| 1130 | int wait_index = (index + 1) % QI_LENGTH; |
| 1131 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1132 | if (qi->desc_status[wait_index] == QI_ABORT) |
| 1133 | return -EAGAIN; |
| 1134 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1135 | fault = readl(iommu->reg + DMAR_FSTS_REG); |
| 1136 | |
| 1137 | /* |
| 1138 | * If IQE happens, the head points to the descriptor associated |
| 1139 | * with the error. No new descriptors are fetched until the IQE |
| 1140 | * is cleared. |
| 1141 | */ |
| 1142 | if (fault & DMA_FSTS_IQE) { |
| 1143 | head = readl(iommu->reg + DMAR_IQH_REG); |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1144 | if ((head >> DMAR_IQ_SHIFT) == index) { |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1145 | pr_err("VT-d detected invalid descriptor: " |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1146 | "low=%llx, high=%llx\n", |
| 1147 | (unsigned long long)qi->desc[index].low, |
| 1148 | (unsigned long long)qi->desc[index].high); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1149 | memcpy(&qi->desc[index], &qi->desc[wait_index], |
| 1150 | sizeof(struct qi_desc)); |
| 1151 | __iommu_flush_cache(iommu, &qi->desc[index], |
| 1152 | sizeof(struct qi_desc)); |
| 1153 | writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG); |
| 1154 | return -EINVAL; |
| 1155 | } |
| 1156 | } |
| 1157 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1158 | /* |
| 1159 | * If ITE happens, all pending wait_desc commands are aborted. |
| 1160 | * No new descriptors are fetched until the ITE is cleared. |
| 1161 | */ |
| 1162 | if (fault & DMA_FSTS_ITE) { |
| 1163 | head = readl(iommu->reg + DMAR_IQH_REG); |
| 1164 | head = ((head >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH; |
| 1165 | head |= 1; |
| 1166 | tail = readl(iommu->reg + DMAR_IQT_REG); |
| 1167 | tail = ((tail >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH; |
| 1168 | |
| 1169 | writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG); |
| 1170 | |
| 1171 | do { |
| 1172 | if (qi->desc_status[head] == QI_IN_USE) |
| 1173 | qi->desc_status[head] = QI_ABORT; |
| 1174 | head = (head - 2 + QI_LENGTH) % QI_LENGTH; |
| 1175 | } while (head != tail); |
| 1176 | |
| 1177 | if (qi->desc_status[wait_index] == QI_ABORT) |
| 1178 | return -EAGAIN; |
| 1179 | } |
| 1180 | |
| 1181 | if (fault & DMA_FSTS_ICE) |
| 1182 | writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG); |
| 1183 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1184 | return 0; |
| 1185 | } |
| 1186 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1187 | /* |
| 1188 | * Submit the queued invalidation descriptor to the remapping |
| 1189 | * hardware unit and wait for its completion. |
| 1190 | */ |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1191 | int qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu) |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1192 | { |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1193 | int rc; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1194 | struct q_inval *qi = iommu->qi; |
| 1195 | struct qi_desc *hw, wait_desc; |
| 1196 | int wait_index, index; |
| 1197 | unsigned long flags; |
| 1198 | |
| 1199 | if (!qi) |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1200 | return 0; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1201 | |
| 1202 | hw = qi->desc; |
| 1203 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1204 | restart: |
| 1205 | rc = 0; |
| 1206 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1207 | raw_spin_lock_irqsave(&qi->q_lock, flags); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1208 | while (qi->free_cnt < 3) { |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1209 | raw_spin_unlock_irqrestore(&qi->q_lock, flags); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1210 | cpu_relax(); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1211 | raw_spin_lock_irqsave(&qi->q_lock, flags); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1212 | } |
| 1213 | |
| 1214 | index = qi->free_head; |
| 1215 | wait_index = (index + 1) % QI_LENGTH; |
| 1216 | |
| 1217 | qi->desc_status[index] = qi->desc_status[wait_index] = QI_IN_USE; |
| 1218 | |
| 1219 | hw[index] = *desc; |
| 1220 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1221 | wait_desc.low = QI_IWD_STATUS_DATA(QI_DONE) | |
| 1222 | QI_IWD_STATUS_WRITE | QI_IWD_TYPE; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1223 | wait_desc.high = virt_to_phys(&qi->desc_status[wait_index]); |
| 1224 | |
| 1225 | hw[wait_index] = wait_desc; |
| 1226 | |
| 1227 | __iommu_flush_cache(iommu, &hw[index], sizeof(struct qi_desc)); |
| 1228 | __iommu_flush_cache(iommu, &hw[wait_index], sizeof(struct qi_desc)); |
| 1229 | |
| 1230 | qi->free_head = (qi->free_head + 2) % QI_LENGTH; |
| 1231 | qi->free_cnt -= 2; |
| 1232 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1233 | /* |
| 1234 | * update the HW tail register indicating the presence of |
| 1235 | * new descriptors. |
| 1236 | */ |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1237 | writel(qi->free_head << DMAR_IQ_SHIFT, iommu->reg + DMAR_IQT_REG); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1238 | |
| 1239 | while (qi->desc_status[wait_index] != QI_DONE) { |
Suresh Siddha | f05810c | 2008-10-16 16:31:54 -0700 | [diff] [blame] | 1240 | /* |
| 1241 | * We will leave the interrupts disabled, to prevent interrupt |
| 1242 | * context to queue another cmd while a cmd is already submitted |
| 1243 | * and waiting for completion on this cpu. This is to avoid |
| 1244 | * a deadlock where the interrupt context can wait indefinitely |
| 1245 | * for free slots in the queue. |
| 1246 | */ |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1247 | rc = qi_check_fault(iommu, index); |
| 1248 | if (rc) |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1249 | break; |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1250 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1251 | raw_spin_unlock(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1252 | cpu_relax(); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1253 | raw_spin_lock(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1254 | } |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1255 | |
| 1256 | qi->desc_status[index] = QI_DONE; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1257 | |
| 1258 | reclaim_free_desc(qi); |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1259 | raw_spin_unlock_irqrestore(&qi->q_lock, flags); |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1260 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1261 | if (rc == -EAGAIN) |
| 1262 | goto restart; |
| 1263 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1264 | return rc; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1265 | } |
| 1266 | |
| 1267 | /* |
| 1268 | * Flush the global interrupt entry cache. |
| 1269 | */ |
| 1270 | void qi_global_iec(struct intel_iommu *iommu) |
| 1271 | { |
| 1272 | struct qi_desc desc; |
| 1273 | |
| 1274 | desc.low = QI_IEC_TYPE; |
| 1275 | desc.high = 0; |
| 1276 | |
Yu Zhao | 704126a | 2009-01-04 16:28:52 +0800 | [diff] [blame] | 1277 | /* should never fail */ |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1278 | qi_submit_sync(&desc, iommu); |
| 1279 | } |
| 1280 | |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1281 | void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm, |
| 1282 | u64 type) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1283 | { |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1284 | struct qi_desc desc; |
| 1285 | |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1286 | desc.low = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did) |
| 1287 | | QI_CC_GRAN(type) | QI_CC_TYPE; |
| 1288 | desc.high = 0; |
| 1289 | |
David Woodhouse | 4c25a2c | 2009-05-10 17:16:06 +0100 | [diff] [blame] | 1290 | qi_submit_sync(&desc, iommu); |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1293 | void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr, |
| 1294 | unsigned int size_order, u64 type) |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1295 | { |
| 1296 | u8 dw = 0, dr = 0; |
| 1297 | |
| 1298 | struct qi_desc desc; |
| 1299 | int ih = 0; |
| 1300 | |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1301 | if (cap_write_drain(iommu->cap)) |
| 1302 | dw = 1; |
| 1303 | |
| 1304 | if (cap_read_drain(iommu->cap)) |
| 1305 | dr = 1; |
| 1306 | |
| 1307 | desc.low = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw) |
| 1308 | | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE; |
| 1309 | desc.high = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih) |
| 1310 | | QI_IOTLB_AM(size_order); |
| 1311 | |
David Woodhouse | 1f0ef2a | 2009-05-10 19:58:49 +0100 | [diff] [blame] | 1312 | qi_submit_sync(&desc, iommu); |
Youquan Song | 3481f21 | 2008-10-16 16:31:55 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
Yu Zhao | 6ba6c3a | 2009-05-18 13:51:35 +0800 | [diff] [blame] | 1315 | void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 qdep, |
| 1316 | u64 addr, unsigned mask) |
| 1317 | { |
| 1318 | struct qi_desc desc; |
| 1319 | |
| 1320 | if (mask) { |
| 1321 | BUG_ON(addr & ((1 << (VTD_PAGE_SHIFT + mask)) - 1)); |
| 1322 | addr |= (1 << (VTD_PAGE_SHIFT + mask - 1)) - 1; |
| 1323 | desc.high = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE; |
| 1324 | } else |
| 1325 | desc.high = QI_DEV_IOTLB_ADDR(addr); |
| 1326 | |
| 1327 | if (qdep >= QI_DEV_IOTLB_MAX_INVS) |
| 1328 | qdep = 0; |
| 1329 | |
| 1330 | desc.low = QI_DEV_IOTLB_SID(sid) | QI_DEV_IOTLB_QDEP(qdep) | |
| 1331 | QI_DIOTLB_TYPE; |
| 1332 | |
| 1333 | qi_submit_sync(&desc, iommu); |
| 1334 | } |
| 1335 | |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1336 | /* |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1337 | * Disable Queued Invalidation interface. |
| 1338 | */ |
| 1339 | void dmar_disable_qi(struct intel_iommu *iommu) |
| 1340 | { |
| 1341 | unsigned long flags; |
| 1342 | u32 sts; |
| 1343 | cycles_t start_time = get_cycles(); |
| 1344 | |
| 1345 | if (!ecap_qis(iommu->ecap)) |
| 1346 | return; |
| 1347 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1348 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1349 | |
| 1350 | sts = dmar_readq(iommu->reg + DMAR_GSTS_REG); |
| 1351 | if (!(sts & DMA_GSTS_QIES)) |
| 1352 | goto end; |
| 1353 | |
| 1354 | /* |
| 1355 | * Give a chance to HW to complete the pending invalidation requests. |
| 1356 | */ |
| 1357 | while ((readl(iommu->reg + DMAR_IQT_REG) != |
| 1358 | readl(iommu->reg + DMAR_IQH_REG)) && |
| 1359 | (DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time))) |
| 1360 | cpu_relax(); |
| 1361 | |
| 1362 | iommu->gcmd &= ~DMA_GCMD_QIE; |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1363 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
| 1364 | |
| 1365 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, |
| 1366 | !(sts & DMA_GSTS_QIES), sts); |
| 1367 | end: |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1368 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
Suresh Siddha | eba67e5 | 2009-03-16 17:04:56 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | /* |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1372 | * Enable queued invalidation. |
| 1373 | */ |
| 1374 | static void __dmar_enable_qi(struct intel_iommu *iommu) |
| 1375 | { |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1376 | u32 sts; |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1377 | unsigned long flags; |
| 1378 | struct q_inval *qi = iommu->qi; |
| 1379 | |
| 1380 | qi->free_head = qi->free_tail = 0; |
| 1381 | qi->free_cnt = QI_LENGTH; |
| 1382 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1383 | raw_spin_lock_irqsave(&iommu->register_lock, flags); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1384 | |
| 1385 | /* write zero to the tail reg */ |
| 1386 | writel(0, iommu->reg + DMAR_IQT_REG); |
| 1387 | |
| 1388 | dmar_writeq(iommu->reg + DMAR_IQA_REG, virt_to_phys(qi->desc)); |
| 1389 | |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1390 | iommu->gcmd |= DMA_GCMD_QIE; |
David Woodhouse | c416daa | 2009-05-10 20:30:58 +0100 | [diff] [blame] | 1391 | writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1392 | |
| 1393 | /* Make sure hardware complete it */ |
| 1394 | IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts); |
| 1395 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1396 | raw_spin_unlock_irqrestore(&iommu->register_lock, flags); |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | /* |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1400 | * Enable Queued Invalidation interface. This is a must to support |
| 1401 | * interrupt-remapping. Also used by DMA-remapping, which replaces |
| 1402 | * register based IOTLB invalidation. |
| 1403 | */ |
| 1404 | int dmar_enable_qi(struct intel_iommu *iommu) |
| 1405 | { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1406 | struct q_inval *qi; |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1407 | struct page *desc_page; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1408 | |
| 1409 | if (!ecap_qis(iommu->ecap)) |
| 1410 | return -ENOENT; |
| 1411 | |
| 1412 | /* |
| 1413 | * queued invalidation is already setup and enabled. |
| 1414 | */ |
| 1415 | if (iommu->qi) |
| 1416 | return 0; |
| 1417 | |
Suresh Siddha | fa4b57c | 2009-03-16 17:05:05 -0700 | [diff] [blame] | 1418 | iommu->qi = kmalloc(sizeof(*qi), GFP_ATOMIC); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1419 | if (!iommu->qi) |
| 1420 | return -ENOMEM; |
| 1421 | |
| 1422 | qi = iommu->qi; |
| 1423 | |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1424 | |
| 1425 | desc_page = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO, 0); |
| 1426 | if (!desc_page) { |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1427 | kfree(qi); |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 1428 | iommu->qi = NULL; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1429 | return -ENOMEM; |
| 1430 | } |
| 1431 | |
Suresh Siddha | 751cafe | 2009-10-02 11:01:22 -0700 | [diff] [blame] | 1432 | qi->desc = page_address(desc_page); |
| 1433 | |
Hannes Reinecke | 37a4071 | 2013-02-06 09:50:10 +0100 | [diff] [blame] | 1434 | qi->desc_status = kzalloc(QI_LENGTH * sizeof(int), GFP_ATOMIC); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1435 | if (!qi->desc_status) { |
| 1436 | free_page((unsigned long) qi->desc); |
| 1437 | kfree(qi); |
Jiang Liu | b707cb0 | 2014-01-06 14:18:26 +0800 | [diff] [blame] | 1438 | iommu->qi = NULL; |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1439 | return -ENOMEM; |
| 1440 | } |
| 1441 | |
Thomas Gleixner | 3b8f404 | 2011-07-19 17:02:07 +0200 | [diff] [blame] | 1442 | raw_spin_lock_init(&qi->q_lock); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1443 | |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1444 | __dmar_enable_qi(iommu); |
Suresh Siddha | fe962e9 | 2008-07-10 11:16:42 -0700 | [diff] [blame] | 1445 | |
| 1446 | return 0; |
| 1447 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1448 | |
| 1449 | /* iommu interrupt handling. Most stuff are MSI-like. */ |
| 1450 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1451 | enum faulttype { |
| 1452 | DMA_REMAP, |
| 1453 | INTR_REMAP, |
| 1454 | UNKNOWN, |
| 1455 | }; |
| 1456 | |
| 1457 | static const char *dma_remap_fault_reasons[] = |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1458 | { |
| 1459 | "Software", |
| 1460 | "Present bit in root entry is clear", |
| 1461 | "Present bit in context entry is clear", |
| 1462 | "Invalid context entry", |
| 1463 | "Access beyond MGAW", |
| 1464 | "PTE Write access is not set", |
| 1465 | "PTE Read access is not set", |
| 1466 | "Next page table ptr is invalid", |
| 1467 | "Root table address invalid", |
| 1468 | "Context table ptr is invalid", |
| 1469 | "non-zero reserved fields in RTP", |
| 1470 | "non-zero reserved fields in CTP", |
| 1471 | "non-zero reserved fields in PTE", |
Li, Zhen-Hua | 4ecccd9 | 2013-03-06 10:43:17 +0800 | [diff] [blame] | 1472 | "PCE for translation request specifies blocking", |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1473 | }; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1474 | |
Suresh Siddha | 95a02e9 | 2012-03-30 11:47:07 -0700 | [diff] [blame] | 1475 | static const char *irq_remap_fault_reasons[] = |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1476 | { |
| 1477 | "Detected reserved fields in the decoded interrupt-remapped request", |
| 1478 | "Interrupt index exceeded the interrupt-remapping table size", |
| 1479 | "Present field in the IRTE entry is clear", |
| 1480 | "Error accessing interrupt-remapping table pointed by IRTA_REG", |
| 1481 | "Detected reserved fields in the IRTE entry", |
| 1482 | "Blocked a compatibility format interrupt request", |
| 1483 | "Blocked an interrupt request due to source-id verification failure", |
| 1484 | }; |
| 1485 | |
Rashika Kheria | 21004dc | 2013-12-18 12:01:46 +0530 | [diff] [blame] | 1486 | 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] | 1487 | { |
Dan Carpenter | fefe1ed | 2012-05-13 20:09:38 +0300 | [diff] [blame] | 1488 | if (fault_reason >= 0x20 && (fault_reason - 0x20 < |
| 1489 | ARRAY_SIZE(irq_remap_fault_reasons))) { |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1490 | *fault_type = INTR_REMAP; |
Suresh Siddha | 95a02e9 | 2012-03-30 11:47:07 -0700 | [diff] [blame] | 1491 | return irq_remap_fault_reasons[fault_reason - 0x20]; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1492 | } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) { |
| 1493 | *fault_type = DMA_REMAP; |
| 1494 | return dma_remap_fault_reasons[fault_reason]; |
| 1495 | } else { |
| 1496 | *fault_type = UNKNOWN; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1497 | return "Unknown"; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1498 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1499 | } |
| 1500 | |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1501 | |
| 1502 | static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq) |
| 1503 | { |
| 1504 | if (iommu->irq == irq) |
| 1505 | return DMAR_FECTL_REG; |
| 1506 | else if (iommu->pr_irq == irq) |
| 1507 | return DMAR_PECTL_REG; |
| 1508 | else |
| 1509 | BUG(); |
| 1510 | } |
| 1511 | |
Thomas Gleixner | 5c2837f | 2010-09-28 17:15:11 +0200 | [diff] [blame] | 1512 | void dmar_msi_unmask(struct irq_data *data) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1513 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1514 | struct intel_iommu *iommu = irq_data_get_irq_handler_data(data); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1515 | int reg = dmar_msi_reg(iommu, data->irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1516 | unsigned long flag; |
| 1517 | |
| 1518 | /* unmask it */ |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1519 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1520 | writel(0, iommu->reg + reg); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1521 | /* Read a reg to force flush the post write */ |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1522 | readl(iommu->reg + reg); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1523 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1524 | } |
| 1525 | |
Thomas Gleixner | 5c2837f | 2010-09-28 17:15:11 +0200 | [diff] [blame] | 1526 | void dmar_msi_mask(struct irq_data *data) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1527 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1528 | struct intel_iommu *iommu = irq_data_get_irq_handler_data(data); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1529 | int reg = dmar_msi_reg(iommu, data->irq); |
| 1530 | unsigned long flag; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1531 | |
| 1532 | /* mask it */ |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1533 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1534 | writel(DMA_FECTL_IM, iommu->reg + reg); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1535 | /* Read a reg to force flush the post write */ |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1536 | readl(iommu->reg + reg); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1537 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1538 | } |
| 1539 | |
| 1540 | void dmar_msi_write(int irq, struct msi_msg *msg) |
| 1541 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1542 | struct intel_iommu *iommu = irq_get_handler_data(irq); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1543 | int reg = dmar_msi_reg(iommu, irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1544 | unsigned long flag; |
| 1545 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1546 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1547 | writel(msg->data, iommu->reg + reg + 4); |
| 1548 | writel(msg->address_lo, iommu->reg + reg + 8); |
| 1549 | writel(msg->address_hi, iommu->reg + reg + 12); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1550 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | void dmar_msi_read(int irq, struct msi_msg *msg) |
| 1554 | { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 1555 | struct intel_iommu *iommu = irq_get_handler_data(irq); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1556 | int reg = dmar_msi_reg(iommu, irq); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1557 | unsigned long flag; |
| 1558 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1559 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
David Woodhouse | 1208225 | 2015-10-07 15:37:03 +0100 | [diff] [blame] | 1560 | msg->data = readl(iommu->reg + reg + 4); |
| 1561 | msg->address_lo = readl(iommu->reg + reg + 8); |
| 1562 | msg->address_hi = readl(iommu->reg + reg + 12); |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1563 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | static int dmar_fault_do_one(struct intel_iommu *iommu, int type, |
| 1567 | u8 fault_reason, u16 source_id, unsigned long long addr) |
| 1568 | { |
| 1569 | const char *reason; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1570 | int fault_type; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1571 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1572 | reason = dmar_get_fault_reason(fault_reason, &fault_type); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1573 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1574 | if (fault_type == INTR_REMAP) |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1575 | pr_err("INTR-REMAP: Request device [[%02x:%02x.%d] " |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1576 | "fault index %llx\n" |
| 1577 | "INTR-REMAP:[fault reason %02d] %s\n", |
| 1578 | (source_id >> 8), PCI_SLOT(source_id & 0xFF), |
| 1579 | PCI_FUNC(source_id & 0xFF), addr >> 48, |
| 1580 | fault_reason, reason); |
| 1581 | else |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1582 | pr_err("DMAR:[%s] Request device [%02x:%02x.%d] " |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1583 | "fault addr %llx \n" |
| 1584 | "DMAR:[fault reason %02d] %s\n", |
| 1585 | (type ? "DMA Read" : "DMA Write"), |
| 1586 | (source_id >> 8), PCI_SLOT(source_id & 0xFF), |
| 1587 | PCI_FUNC(source_id & 0xFF), addr, fault_reason, reason); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1588 | return 0; |
| 1589 | } |
| 1590 | |
| 1591 | #define PRIMARY_FAULT_REG_LEN (16) |
Suresh Siddha | 1531a6a | 2009-03-16 17:04:57 -0700 | [diff] [blame] | 1592 | irqreturn_t dmar_fault(int irq, void *dev_id) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1593 | { |
| 1594 | struct intel_iommu *iommu = dev_id; |
| 1595 | int reg, fault_index; |
| 1596 | u32 fault_status; |
| 1597 | unsigned long flag; |
| 1598 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1599 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1600 | fault_status = readl(iommu->reg + DMAR_FSTS_REG); |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1601 | if (fault_status) |
Donald Dutile | bf947fcb | 2012-06-04 17:29:01 -0400 | [diff] [blame] | 1602 | pr_err("DRHD: handling fault status reg %x\n", fault_status); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1603 | |
| 1604 | /* TBD: ignore advanced fault log currently */ |
| 1605 | if (!(fault_status & DMA_FSTS_PPF)) |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1606 | goto unlock_exit; |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1607 | |
| 1608 | fault_index = dma_fsts_fault_record_index(fault_status); |
| 1609 | reg = cap_fault_reg_offset(iommu->cap); |
| 1610 | while (1) { |
| 1611 | u8 fault_reason; |
| 1612 | u16 source_id; |
| 1613 | u64 guest_addr; |
| 1614 | int type; |
| 1615 | u32 data; |
| 1616 | |
| 1617 | /* highest 32 bits */ |
| 1618 | data = readl(iommu->reg + reg + |
| 1619 | fault_index * PRIMARY_FAULT_REG_LEN + 12); |
| 1620 | if (!(data & DMA_FRCD_F)) |
| 1621 | break; |
| 1622 | |
| 1623 | fault_reason = dma_frcd_fault_reason(data); |
| 1624 | type = dma_frcd_type(data); |
| 1625 | |
| 1626 | data = readl(iommu->reg + reg + |
| 1627 | fault_index * PRIMARY_FAULT_REG_LEN + 8); |
| 1628 | source_id = dma_frcd_source_id(data); |
| 1629 | |
| 1630 | guest_addr = dmar_readq(iommu->reg + reg + |
| 1631 | fault_index * PRIMARY_FAULT_REG_LEN); |
| 1632 | guest_addr = dma_frcd_page_addr(guest_addr); |
| 1633 | /* clear the fault */ |
| 1634 | writel(DMA_FRCD_F, iommu->reg + reg + |
| 1635 | fault_index * PRIMARY_FAULT_REG_LEN + 12); |
| 1636 | |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1637 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1638 | |
| 1639 | dmar_fault_do_one(iommu, type, fault_reason, |
| 1640 | source_id, guest_addr); |
| 1641 | |
| 1642 | fault_index++; |
Troy Heber | 8211a7b | 2009-08-19 15:26:11 -0600 | [diff] [blame] | 1643 | if (fault_index >= cap_num_fault_regs(iommu->cap)) |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1644 | fault_index = 0; |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1645 | raw_spin_lock_irqsave(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1646 | } |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1647 | |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1648 | writel(DMA_FSTS_PFO | DMA_FSTS_PPF, iommu->reg + DMAR_FSTS_REG); |
| 1649 | |
| 1650 | unlock_exit: |
Thomas Gleixner | 1f5b3c3 | 2011-07-19 16:19:51 +0200 | [diff] [blame] | 1651 | raw_spin_unlock_irqrestore(&iommu->register_lock, flag); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1652 | return IRQ_HANDLED; |
| 1653 | } |
| 1654 | |
| 1655 | int dmar_set_interrupt(struct intel_iommu *iommu) |
| 1656 | { |
| 1657 | int irq, ret; |
| 1658 | |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1659 | /* |
| 1660 | * Check if the fault interrupt is already initialized. |
| 1661 | */ |
| 1662 | if (iommu->irq) |
| 1663 | return 0; |
| 1664 | |
Jiang Liu | 34742db | 2015-04-13 14:11:41 +0800 | [diff] [blame] | 1665 | irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu); |
| 1666 | if (irq > 0) { |
| 1667 | iommu->irq = irq; |
| 1668 | } else { |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1669 | pr_err("No free IRQ vectors\n"); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1670 | return -EINVAL; |
| 1671 | } |
| 1672 | |
Thomas Gleixner | 477694e | 2011-07-19 16:25:42 +0200 | [diff] [blame] | 1673 | ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1674 | if (ret) |
Joerg Roedel | 9f10e5b | 2015-06-12 09:57:06 +0200 | [diff] [blame] | 1675 | pr_err("Can't request irq\n"); |
Suresh Siddha | 0ac2491 | 2009-03-16 17:04:54 -0700 | [diff] [blame] | 1676 | return ret; |
| 1677 | } |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1678 | |
| 1679 | int __init enable_drhd_fault_handling(void) |
| 1680 | { |
| 1681 | struct dmar_drhd_unit *drhd; |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1682 | struct intel_iommu *iommu; |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1683 | |
| 1684 | /* |
| 1685 | * Enable fault control interrupt. |
| 1686 | */ |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1687 | for_each_iommu(iommu, drhd) { |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1688 | u32 fault_status; |
Jiang Liu | 7c91977 | 2014-01-06 14:18:18 +0800 | [diff] [blame] | 1689 | int ret = dmar_set_interrupt(iommu); |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1690 | |
| 1691 | if (ret) { |
Donald Dutile | e9071b0 | 2012-06-08 17:13:11 -0400 | [diff] [blame] | 1692 | pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n", |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1693 | (unsigned long long)drhd->reg_base_addr, ret); |
| 1694 | return -1; |
| 1695 | } |
Suresh Siddha | 7f99d94 | 2010-11-30 22:22:29 -0800 | [diff] [blame] | 1696 | |
| 1697 | /* |
| 1698 | * Clear any previous faults. |
| 1699 | */ |
| 1700 | dmar_fault(iommu->irq, iommu); |
Li, Zhen-Hua | bd5cdad | 2013-03-25 16:20:52 +0800 | [diff] [blame] | 1701 | fault_status = readl(iommu->reg + DMAR_FSTS_REG); |
| 1702 | writel(fault_status, iommu->reg + DMAR_FSTS_REG); |
Suresh Siddha | 9d783ba | 2009-03-16 17:04:55 -0700 | [diff] [blame] | 1703 | } |
| 1704 | |
| 1705 | return 0; |
| 1706 | } |
Fenghua Yu | eb4a52b | 2009-03-27 14:22:43 -0700 | [diff] [blame] | 1707 | |
| 1708 | /* |
| 1709 | * Re-enable Queued Invalidation interface. |
| 1710 | */ |
| 1711 | int dmar_reenable_qi(struct intel_iommu *iommu) |
| 1712 | { |
| 1713 | if (!ecap_qis(iommu->ecap)) |
| 1714 | return -ENOENT; |
| 1715 | |
| 1716 | if (!iommu->qi) |
| 1717 | return -ENOENT; |
| 1718 | |
| 1719 | /* |
| 1720 | * First disable queued invalidation. |
| 1721 | */ |
| 1722 | dmar_disable_qi(iommu); |
| 1723 | /* |
| 1724 | * Then enable queued invalidation again. Since there is no pending |
| 1725 | * invalidation requests now, it's safe to re-enable queued |
| 1726 | * invalidation. |
| 1727 | */ |
| 1728 | __dmar_enable_qi(iommu); |
| 1729 | |
| 1730 | return 0; |
| 1731 | } |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1732 | |
| 1733 | /* |
| 1734 | * Check interrupt remapping support in DMAR table description. |
| 1735 | */ |
Luck, Tony | 0b8973a | 2009-12-16 22:59:29 +0000 | [diff] [blame] | 1736 | int __init dmar_ir_support(void) |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1737 | { |
| 1738 | struct acpi_table_dmar *dmar; |
| 1739 | dmar = (struct acpi_table_dmar *)dmar_tbl; |
Arnaud Patard | 4f506e0 | 2010-03-25 18:02:58 +0000 | [diff] [blame] | 1740 | if (!dmar) |
| 1741 | return 0; |
Youquan Song | 074835f | 2009-09-09 12:05:39 -0400 | [diff] [blame] | 1742 | return dmar->flags & 0x1; |
| 1743 | } |
Jiang Liu | 694835d | 2014-01-06 14:18:16 +0800 | [diff] [blame] | 1744 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1745 | /* Check whether DMAR units are in use */ |
| 1746 | static inline bool dmar_in_use(void) |
| 1747 | { |
| 1748 | return irq_remapping_enabled || intel_iommu_enabled; |
| 1749 | } |
| 1750 | |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1751 | static int __init dmar_free_unused_resources(void) |
| 1752 | { |
| 1753 | struct dmar_drhd_unit *dmaru, *dmaru_n; |
| 1754 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1755 | if (dmar_in_use()) |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1756 | return 0; |
| 1757 | |
Jiang Liu | 2e45528 | 2014-02-19 14:07:36 +0800 | [diff] [blame] | 1758 | if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units)) |
| 1759 | bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb); |
Jiang Liu | 59ce051 | 2014-02-19 14:07:35 +0800 | [diff] [blame] | 1760 | |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 1761 | down_write(&dmar_global_lock); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1762 | list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) { |
| 1763 | list_del(&dmaru->list); |
| 1764 | dmar_free_drhd(dmaru); |
| 1765 | } |
Jiang Liu | 3a5670e | 2014-02-19 14:07:33 +0800 | [diff] [blame] | 1766 | up_write(&dmar_global_lock); |
Jiang Liu | a868e6b | 2014-01-06 14:18:20 +0800 | [diff] [blame] | 1767 | |
| 1768 | return 0; |
| 1769 | } |
| 1770 | |
| 1771 | late_initcall(dmar_free_unused_resources); |
Konrad Rzeszutek Wilk | 4db77ff | 2010-08-26 13:58:04 -0400 | [diff] [blame] | 1772 | IOMMU_INIT_POST(detect_intel_iommu); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1773 | |
| 1774 | /* |
| 1775 | * DMAR Hotplug Support |
| 1776 | * For more details, please refer to Intel(R) Virtualization Technology |
| 1777 | * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8 |
| 1778 | * "Remapping Hardware Unit Hot Plug". |
| 1779 | */ |
| 1780 | static u8 dmar_hp_uuid[] = { |
| 1781 | /* 0000 */ 0xA6, 0xA3, 0xC1, 0xD8, 0x9B, 0xBE, 0x9B, 0x4C, |
| 1782 | /* 0008 */ 0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF |
| 1783 | }; |
| 1784 | |
| 1785 | /* |
| 1786 | * Currently there's only one revision and BIOS will not check the revision id, |
| 1787 | * so use 0 for safety. |
| 1788 | */ |
| 1789 | #define DMAR_DSM_REV_ID 0 |
| 1790 | #define DMAR_DSM_FUNC_DRHD 1 |
| 1791 | #define DMAR_DSM_FUNC_ATSR 2 |
| 1792 | #define DMAR_DSM_FUNC_RHSA 3 |
| 1793 | |
| 1794 | static inline bool dmar_detect_dsm(acpi_handle handle, int func) |
| 1795 | { |
| 1796 | return acpi_check_dsm(handle, dmar_hp_uuid, DMAR_DSM_REV_ID, 1 << func); |
| 1797 | } |
| 1798 | |
| 1799 | static int dmar_walk_dsm_resource(acpi_handle handle, int func, |
| 1800 | dmar_res_handler_t handler, void *arg) |
| 1801 | { |
| 1802 | int ret = -ENODEV; |
| 1803 | union acpi_object *obj; |
| 1804 | struct acpi_dmar_header *start; |
| 1805 | struct dmar_res_callback callback; |
| 1806 | static int res_type[] = { |
| 1807 | [DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT, |
| 1808 | [DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS, |
| 1809 | [DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY, |
| 1810 | }; |
| 1811 | |
| 1812 | if (!dmar_detect_dsm(handle, func)) |
| 1813 | return 0; |
| 1814 | |
| 1815 | obj = acpi_evaluate_dsm_typed(handle, dmar_hp_uuid, DMAR_DSM_REV_ID, |
| 1816 | func, NULL, ACPI_TYPE_BUFFER); |
| 1817 | if (!obj) |
| 1818 | return -ENODEV; |
| 1819 | |
| 1820 | memset(&callback, 0, sizeof(callback)); |
| 1821 | callback.cb[res_type[func]] = handler; |
| 1822 | callback.arg[res_type[func]] = arg; |
| 1823 | start = (struct acpi_dmar_header *)obj->buffer.pointer; |
| 1824 | ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback); |
| 1825 | |
| 1826 | ACPI_FREE(obj); |
| 1827 | |
| 1828 | return ret; |
| 1829 | } |
| 1830 | |
| 1831 | static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg) |
| 1832 | { |
| 1833 | int ret; |
| 1834 | struct dmar_drhd_unit *dmaru; |
| 1835 | |
| 1836 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 1837 | if (!dmaru) |
| 1838 | return -ENODEV; |
| 1839 | |
| 1840 | ret = dmar_ir_hotplug(dmaru, true); |
| 1841 | if (ret == 0) |
| 1842 | ret = dmar_iommu_hotplug(dmaru, true); |
| 1843 | |
| 1844 | return ret; |
| 1845 | } |
| 1846 | |
| 1847 | static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg) |
| 1848 | { |
| 1849 | int i, ret; |
| 1850 | struct device *dev; |
| 1851 | struct dmar_drhd_unit *dmaru; |
| 1852 | |
| 1853 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 1854 | if (!dmaru) |
| 1855 | return 0; |
| 1856 | |
| 1857 | /* |
| 1858 | * All PCI devices managed by this unit should have been destroyed. |
| 1859 | */ |
| 1860 | if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt) |
| 1861 | for_each_active_dev_scope(dmaru->devices, |
| 1862 | dmaru->devices_cnt, i, dev) |
| 1863 | return -EBUSY; |
| 1864 | |
| 1865 | ret = dmar_ir_hotplug(dmaru, false); |
| 1866 | if (ret == 0) |
| 1867 | ret = dmar_iommu_hotplug(dmaru, false); |
| 1868 | |
| 1869 | return ret; |
| 1870 | } |
| 1871 | |
| 1872 | static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg) |
| 1873 | { |
| 1874 | struct dmar_drhd_unit *dmaru; |
| 1875 | |
| 1876 | dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header); |
| 1877 | if (dmaru) { |
| 1878 | list_del_rcu(&dmaru->list); |
| 1879 | synchronize_rcu(); |
| 1880 | dmar_free_drhd(dmaru); |
| 1881 | } |
| 1882 | |
| 1883 | return 0; |
| 1884 | } |
| 1885 | |
| 1886 | static int dmar_hotplug_insert(acpi_handle handle) |
| 1887 | { |
| 1888 | int ret; |
| 1889 | int drhd_count = 0; |
| 1890 | |
| 1891 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1892 | &dmar_validate_one_drhd, (void *)1); |
| 1893 | if (ret) |
| 1894 | goto out; |
| 1895 | |
| 1896 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1897 | &dmar_parse_one_drhd, (void *)&drhd_count); |
| 1898 | if (ret == 0 && drhd_count == 0) { |
| 1899 | pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n"); |
| 1900 | goto out; |
| 1901 | } else if (ret) { |
| 1902 | goto release_drhd; |
| 1903 | } |
| 1904 | |
| 1905 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA, |
| 1906 | &dmar_parse_one_rhsa, NULL); |
| 1907 | if (ret) |
| 1908 | goto release_drhd; |
| 1909 | |
| 1910 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 1911 | &dmar_parse_one_atsr, NULL); |
| 1912 | if (ret) |
| 1913 | goto release_atsr; |
| 1914 | |
| 1915 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1916 | &dmar_hp_add_drhd, NULL); |
| 1917 | if (!ret) |
| 1918 | return 0; |
| 1919 | |
| 1920 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1921 | &dmar_hp_remove_drhd, NULL); |
| 1922 | release_atsr: |
| 1923 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 1924 | &dmar_release_one_atsr, NULL); |
| 1925 | release_drhd: |
| 1926 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1927 | &dmar_hp_release_drhd, NULL); |
| 1928 | out: |
| 1929 | return ret; |
| 1930 | } |
| 1931 | |
| 1932 | static int dmar_hotplug_remove(acpi_handle handle) |
| 1933 | { |
| 1934 | int ret; |
| 1935 | |
| 1936 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 1937 | &dmar_check_one_atsr, NULL); |
| 1938 | if (ret) |
| 1939 | return ret; |
| 1940 | |
| 1941 | ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1942 | &dmar_hp_remove_drhd, NULL); |
| 1943 | if (ret == 0) { |
| 1944 | WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR, |
| 1945 | &dmar_release_one_atsr, NULL)); |
| 1946 | WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1947 | &dmar_hp_release_drhd, NULL)); |
| 1948 | } else { |
| 1949 | dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD, |
| 1950 | &dmar_hp_add_drhd, NULL); |
| 1951 | } |
| 1952 | |
| 1953 | return ret; |
| 1954 | } |
| 1955 | |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 1956 | static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl, |
| 1957 | void *context, void **retval) |
| 1958 | { |
| 1959 | acpi_handle *phdl = retval; |
| 1960 | |
| 1961 | if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) { |
| 1962 | *phdl = handle; |
| 1963 | return AE_CTRL_TERMINATE; |
| 1964 | } |
| 1965 | |
| 1966 | return AE_OK; |
| 1967 | } |
| 1968 | |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1969 | static int dmar_device_hotplug(acpi_handle handle, bool insert) |
| 1970 | { |
| 1971 | int ret; |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 1972 | acpi_handle tmp = NULL; |
| 1973 | acpi_status status; |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1974 | |
| 1975 | if (!dmar_in_use()) |
| 1976 | return 0; |
| 1977 | |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 1978 | if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) { |
| 1979 | tmp = handle; |
| 1980 | } else { |
| 1981 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 1982 | ACPI_UINT32_MAX, |
| 1983 | dmar_get_dsm_handle, |
| 1984 | NULL, NULL, &tmp); |
| 1985 | if (ACPI_FAILURE(status)) { |
| 1986 | pr_warn("Failed to locate _DSM method.\n"); |
| 1987 | return -ENXIO; |
| 1988 | } |
| 1989 | } |
| 1990 | if (tmp == NULL) |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1991 | return 0; |
| 1992 | |
| 1993 | down_write(&dmar_global_lock); |
| 1994 | if (insert) |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 1995 | ret = dmar_hotplug_insert(tmp); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1996 | else |
Jiang Liu | d35165a | 2014-11-09 22:47:59 +0800 | [diff] [blame] | 1997 | ret = dmar_hotplug_remove(tmp); |
Jiang Liu | 6b19724 | 2014-11-09 22:47:58 +0800 | [diff] [blame] | 1998 | up_write(&dmar_global_lock); |
| 1999 | |
| 2000 | return ret; |
| 2001 | } |
| 2002 | |
| 2003 | int dmar_device_add(acpi_handle handle) |
| 2004 | { |
| 2005 | return dmar_device_hotplug(handle, true); |
| 2006 | } |
| 2007 | |
| 2008 | int dmar_device_remove(acpi_handle handle) |
| 2009 | { |
| 2010 | return dmar_device_hotplug(handle, false); |
| 2011 | } |