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