blob: c8b0329c85d2801e1cd99c74c9959f03ee1790d2 [file] [log] [blame]
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -07001/*
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 gross98bcef52008-02-23 15:23:35 -080017 * 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 S10e52472007-10-21 16:41:41 -070021 *
Suresh Siddhae61d98d2008-07-10 11:16:35 -070022 * This file implements early detection/parsing of Remapping Devices
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070023 * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI
24 * tables.
Suresh Siddhae61d98d2008-07-10 11:16:35 -070025 *
26 * These routines are used by both DMA-remapping and Interrupt-remapping
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070027 */
28
Joerg Roedel9f10e5b2015-06-12 09:57:06 +020029#define pr_fmt(fmt) "DMAR: " fmt
Donald Dutilee9071b02012-06-08 17:13:11 -040030
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070031#include <linux/pci.h>
32#include <linux/dmar.h>
Kay, Allen M38717942008-09-09 18:37:29 +030033#include <linux/iova.h>
34#include <linux/intel-iommu.h>
Suresh Siddhafe962e92008-07-10 11:16:42 -070035#include <linux/timer.h>
Suresh Siddha0ac24912009-03-16 17:04:54 -070036#include <linux/irq.h>
37#include <linux/interrupt.h>
Shane Wang69575d32009-09-01 18:25:07 -070038#include <linux/tboot.h>
Len Browneb27cae2009-07-06 23:40:19 -040039#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Alex Williamsona5459cf2014-06-12 16:12:31 -060041#include <linux/iommu.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070042#include <asm/irq_remapping.h>
Konrad Rzeszutek Wilk4db77ff2010-08-26 13:58:04 -040043#include <asm/iommu_table.h>
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070044
Joerg Roedel078e1ee2012-09-26 12:44:43 +020045#include "irq_remapping.h"
46
Jiang Liuc2a0b532014-11-09 22:47:56 +080047typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *);
48struct dmar_res_callback {
49 dmar_res_handler_t cb[ACPI_DMAR_TYPE_RESERVED];
50 void *arg[ACPI_DMAR_TYPE_RESERVED];
51 bool ignore_unhandled;
52 bool print_entry;
53};
54
Jiang Liu3a5670e2014-02-19 14:07:33 +080055/*
56 * Assumptions:
57 * 1) The hotplug framework guarentees that DMAR unit will be hot-added
58 * before IO devices managed by that unit.
59 * 2) The hotplug framework guarantees that DMAR unit will be hot-removed
60 * after IO devices managed by that unit.
61 * 3) Hotplug events are rare.
62 *
63 * Locking rules for DMA and interrupt remapping related global data structures:
64 * 1) Use dmar_global_lock in process context
65 * 2) Use RCU in interrupt context
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070066 */
Jiang Liu3a5670e2014-02-19 14:07:33 +080067DECLARE_RWSEM(dmar_global_lock);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070068LIST_HEAD(dmar_drhd_units);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070069
Suresh Siddha41750d32011-08-23 17:05:18 -070070struct acpi_table_header * __initdata dmar_tbl;
Jiang Liu2e455282014-02-19 14:07:36 +080071static int dmar_dev_scope_status = 1;
Jiang Liu78d8e702014-11-09 22:47:57 +080072static unsigned long dmar_seq_ids[BITS_TO_LONGS(DMAR_UNITS_SUPPORTED)];
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070073
Jiang Liu694835d2014-01-06 14:18:16 +080074static int alloc_iommu(struct dmar_drhd_unit *drhd);
Jiang Liua868e6b2014-01-06 14:18:20 +080075static void free_iommu(struct intel_iommu *iommu);
Jiang Liu694835d2014-01-06 14:18:16 +080076
Joerg Roedelb0119e82017-02-01 13:23:08 +010077extern const struct iommu_ops intel_iommu_ops;
78
Jiang Liu6b197242014-11-09 22:47:58 +080079static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070080{
81 /*
82 * add INCLUDE_ALL at the tail, so scan the list will find it at
83 * the very end.
84 */
85 if (drhd->include_all)
Jiang Liu0e242612014-02-19 14:07:34 +080086 list_add_tail_rcu(&drhd->list, &dmar_drhd_units);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070087 else
Jiang Liu0e242612014-02-19 14:07:34 +080088 list_add_rcu(&drhd->list, &dmar_drhd_units);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070089}
90
Jiang Liubb3a6b72014-02-19 14:07:24 +080091void *dmar_alloc_dev_scope(void *start, void *end, int *cnt)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070092{
93 struct acpi_dmar_device_scope *scope;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070094
95 *cnt = 0;
96 while (start < end) {
97 scope = start;
Bob Moore83118b02014-07-30 12:21:00 +080098 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE ||
David Woodhouse07cb52f2014-03-07 14:39:27 +000099 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700100 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)
101 (*cnt)++;
Linn Crosettoae3e7f32013-04-23 12:26:45 -0600102 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC &&
103 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400104 pr_warn("Unsupported device scope\n");
Yinghai Lu5715f0f2010-04-08 19:58:22 +0100105 }
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700106 start += scope->length;
107 }
108 if (*cnt == 0)
Jiang Liubb3a6b72014-02-19 14:07:24 +0800109 return NULL;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700110
David Woodhouse832bd852014-03-07 15:08:36 +0000111 return kcalloc(*cnt, sizeof(struct dmar_dev_scope), GFP_KERNEL);
Jiang Liubb3a6b72014-02-19 14:07:24 +0800112}
113
David Woodhouse832bd852014-03-07 15:08:36 +0000114void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt)
Jiang Liuada4d4b2014-01-06 14:18:09 +0800115{
Jiang Liub683b232014-02-19 14:07:32 +0800116 int i;
David Woodhouse832bd852014-03-07 15:08:36 +0000117 struct device *tmp_dev;
Jiang Liub683b232014-02-19 14:07:32 +0800118
Jiang Liuada4d4b2014-01-06 14:18:09 +0800119 if (*devices && *cnt) {
Jiang Liub683b232014-02-19 14:07:32 +0800120 for_each_active_dev_scope(*devices, *cnt, i, tmp_dev)
David Woodhouse832bd852014-03-07 15:08:36 +0000121 put_device(tmp_dev);
Jiang Liuada4d4b2014-01-06 14:18:09 +0800122 kfree(*devices);
Jiang Liuada4d4b2014-01-06 14:18:09 +0800123 }
Jiang Liu0e242612014-02-19 14:07:34 +0800124
125 *devices = NULL;
126 *cnt = 0;
Jiang Liuada4d4b2014-01-06 14:18:09 +0800127}
128
Jiang Liu59ce0512014-02-19 14:07:35 +0800129/* Optimize out kzalloc()/kfree() for normal cases */
130static char dmar_pci_notify_info_buf[64];
131
132static struct dmar_pci_notify_info *
133dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event)
134{
135 int level = 0;
136 size_t size;
137 struct pci_dev *tmp;
138 struct dmar_pci_notify_info *info;
139
140 BUG_ON(dev->is_virtfn);
141
142 /* Only generate path[] for device addition event */
143 if (event == BUS_NOTIFY_ADD_DEVICE)
144 for (tmp = dev; tmp; tmp = tmp->bus->self)
145 level++;
146
147 size = sizeof(*info) + level * sizeof(struct acpi_dmar_pci_path);
148 if (size <= sizeof(dmar_pci_notify_info_buf)) {
149 info = (struct dmar_pci_notify_info *)dmar_pci_notify_info_buf;
150 } else {
151 info = kzalloc(size, GFP_KERNEL);
152 if (!info) {
153 pr_warn("Out of memory when allocating notify_info "
154 "for %s.\n", pci_name(dev));
Jiang Liu2e455282014-02-19 14:07:36 +0800155 if (dmar_dev_scope_status == 0)
156 dmar_dev_scope_status = -ENOMEM;
Jiang Liu59ce0512014-02-19 14:07:35 +0800157 return NULL;
158 }
159 }
160
161 info->event = event;
162 info->dev = dev;
163 info->seg = pci_domain_nr(dev->bus);
164 info->level = level;
165 if (event == BUS_NOTIFY_ADD_DEVICE) {
Jiang Liu5ae05662014-04-15 10:35:35 +0800166 for (tmp = dev; tmp; tmp = tmp->bus->self) {
167 level--;
Joerg Roedel57384592014-10-02 11:50:25 +0200168 info->path[level].bus = tmp->bus->number;
Jiang Liu59ce0512014-02-19 14:07:35 +0800169 info->path[level].device = PCI_SLOT(tmp->devfn);
170 info->path[level].function = PCI_FUNC(tmp->devfn);
171 if (pci_is_root_bus(tmp->bus))
172 info->bus = tmp->bus->number;
173 }
174 }
175
176 return info;
177}
178
179static inline void dmar_free_pci_notify_info(struct dmar_pci_notify_info *info)
180{
181 if ((void *)info != dmar_pci_notify_info_buf)
182 kfree(info);
183}
184
185static bool dmar_match_pci_path(struct dmar_pci_notify_info *info, int bus,
186 struct acpi_dmar_pci_path *path, int count)
187{
188 int i;
189
190 if (info->bus != bus)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200191 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800192 if (info->level != count)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200193 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800194
195 for (i = 0; i < count; i++) {
196 if (path[i].device != info->path[i].device ||
197 path[i].function != info->path[i].function)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200198 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800199 }
200
201 return true;
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200202
203fallback:
204
205 if (count != 1)
206 return false;
207
208 i = info->level - 1;
209 if (bus == info->path[i].bus &&
210 path[0].device == info->path[i].device &&
211 path[0].function == info->path[i].function) {
212 pr_info(FW_BUG "RMRR entry for device %02x:%02x.%x is broken - applying workaround\n",
213 bus, path[0].device, path[0].function);
214 return true;
215 }
216
217 return false;
Jiang Liu59ce0512014-02-19 14:07:35 +0800218}
219
220/* Return: > 0 if match found, 0 if no match found, < 0 if error happens */
221int dmar_insert_dev_scope(struct dmar_pci_notify_info *info,
222 void *start, void*end, u16 segment,
David Woodhouse832bd852014-03-07 15:08:36 +0000223 struct dmar_dev_scope *devices,
224 int devices_cnt)
Jiang Liu59ce0512014-02-19 14:07:35 +0800225{
226 int i, level;
David Woodhouse832bd852014-03-07 15:08:36 +0000227 struct device *tmp, *dev = &info->dev->dev;
Jiang Liu59ce0512014-02-19 14:07:35 +0800228 struct acpi_dmar_device_scope *scope;
229 struct acpi_dmar_pci_path *path;
230
231 if (segment != info->seg)
232 return 0;
233
234 for (; start < end; start += scope->length) {
235 scope = start;
236 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
237 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_BRIDGE)
238 continue;
239
240 path = (struct acpi_dmar_pci_path *)(scope + 1);
241 level = (scope->length - sizeof(*scope)) / sizeof(*path);
242 if (!dmar_match_pci_path(info, scope->bus, path, level))
243 continue;
244
Roland Dreierffb2d1e2016-06-02 17:46:10 -0700245 /*
246 * We expect devices with endpoint scope to have normal PCI
247 * headers, and devices with bridge scope to have bridge PCI
248 * headers. However PCI NTB devices may be listed in the
249 * DMAR table with bridge scope, even though they have a
250 * normal PCI header. NTB devices are identified by class
251 * "BRIDGE_OTHER" (0680h) - we don't declare a socpe mismatch
252 * for this special case.
253 */
254 if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
255 info->dev->hdr_type != PCI_HEADER_TYPE_NORMAL) ||
256 (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE &&
257 (info->dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
258 info->dev->class >> 8 != PCI_CLASS_BRIDGE_OTHER))) {
Jiang Liu59ce0512014-02-19 14:07:35 +0800259 pr_warn("Device scope type does not match for %s\n",
David Woodhouse832bd852014-03-07 15:08:36 +0000260 pci_name(info->dev));
Jiang Liu59ce0512014-02-19 14:07:35 +0800261 return -EINVAL;
262 }
263
264 for_each_dev_scope(devices, devices_cnt, i, tmp)
265 if (tmp == NULL) {
David Woodhouse832bd852014-03-07 15:08:36 +0000266 devices[i].bus = info->dev->bus->number;
267 devices[i].devfn = info->dev->devfn;
268 rcu_assign_pointer(devices[i].dev,
269 get_device(dev));
Jiang Liu59ce0512014-02-19 14:07:35 +0800270 return 1;
271 }
272 BUG_ON(i >= devices_cnt);
273 }
274
275 return 0;
276}
277
278int dmar_remove_dev_scope(struct dmar_pci_notify_info *info, u16 segment,
David Woodhouse832bd852014-03-07 15:08:36 +0000279 struct dmar_dev_scope *devices, int count)
Jiang Liu59ce0512014-02-19 14:07:35 +0800280{
281 int index;
David Woodhouse832bd852014-03-07 15:08:36 +0000282 struct device *tmp;
Jiang Liu59ce0512014-02-19 14:07:35 +0800283
284 if (info->seg != segment)
285 return 0;
286
287 for_each_active_dev_scope(devices, count, index, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +0000288 if (tmp == &info->dev->dev) {
Andreea-Cristina Bernateecbad72014-08-18 15:20:56 +0300289 RCU_INIT_POINTER(devices[index].dev, NULL);
Jiang Liu59ce0512014-02-19 14:07:35 +0800290 synchronize_rcu();
David Woodhouse832bd852014-03-07 15:08:36 +0000291 put_device(tmp);
Jiang Liu59ce0512014-02-19 14:07:35 +0800292 return 1;
293 }
294
295 return 0;
296}
297
298static int dmar_pci_bus_add_dev(struct dmar_pci_notify_info *info)
299{
300 int ret = 0;
301 struct dmar_drhd_unit *dmaru;
302 struct acpi_dmar_hardware_unit *drhd;
303
304 for_each_drhd_unit(dmaru) {
305 if (dmaru->include_all)
306 continue;
307
308 drhd = container_of(dmaru->hdr,
309 struct acpi_dmar_hardware_unit, header);
310 ret = dmar_insert_dev_scope(info, (void *)(drhd + 1),
311 ((void *)drhd) + drhd->header.length,
312 dmaru->segment,
313 dmaru->devices, dmaru->devices_cnt);
Andy Shevchenkof9808072017-03-16 16:23:54 +0200314 if (ret)
Jiang Liu59ce0512014-02-19 14:07:35 +0800315 break;
316 }
317 if (ret >= 0)
318 ret = dmar_iommu_notify_scope_dev(info);
Jiang Liu2e455282014-02-19 14:07:36 +0800319 if (ret < 0 && dmar_dev_scope_status == 0)
320 dmar_dev_scope_status = ret;
Jiang Liu59ce0512014-02-19 14:07:35 +0800321
322 return ret;
323}
324
325static void dmar_pci_bus_del_dev(struct dmar_pci_notify_info *info)
326{
327 struct dmar_drhd_unit *dmaru;
328
329 for_each_drhd_unit(dmaru)
330 if (dmar_remove_dev_scope(info, dmaru->segment,
331 dmaru->devices, dmaru->devices_cnt))
332 break;
333 dmar_iommu_notify_scope_dev(info);
334}
335
336static int dmar_pci_bus_notifier(struct notifier_block *nb,
337 unsigned long action, void *data)
338{
339 struct pci_dev *pdev = to_pci_dev(data);
340 struct dmar_pci_notify_info *info;
341
Ashok Raj1c387182016-10-21 15:32:05 -0700342 /* Only care about add/remove events for physical functions.
343 * For VFs we actually do the lookup based on the corresponding
344 * PF in device_to_iommu() anyway. */
Jiang Liu59ce0512014-02-19 14:07:35 +0800345 if (pdev->is_virtfn)
346 return NOTIFY_DONE;
Joerg Roedele6a8c9b2016-02-29 23:49:47 +0100347 if (action != BUS_NOTIFY_ADD_DEVICE &&
348 action != BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu59ce0512014-02-19 14:07:35 +0800349 return NOTIFY_DONE;
350
351 info = dmar_alloc_pci_notify_info(pdev, action);
352 if (!info)
353 return NOTIFY_DONE;
354
355 down_write(&dmar_global_lock);
356 if (action == BUS_NOTIFY_ADD_DEVICE)
357 dmar_pci_bus_add_dev(info);
Joerg Roedele6a8c9b2016-02-29 23:49:47 +0100358 else if (action == BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu59ce0512014-02-19 14:07:35 +0800359 dmar_pci_bus_del_dev(info);
360 up_write(&dmar_global_lock);
361
362 dmar_free_pci_notify_info(info);
363
364 return NOTIFY_OK;
365}
366
367static struct notifier_block dmar_pci_bus_nb = {
368 .notifier_call = dmar_pci_bus_notifier,
369 .priority = INT_MIN,
370};
371
Jiang Liu6b197242014-11-09 22:47:58 +0800372static struct dmar_drhd_unit *
373dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd)
374{
375 struct dmar_drhd_unit *dmaru;
376
377 list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list)
378 if (dmaru->segment == drhd->segment &&
379 dmaru->reg_base_addr == drhd->address)
380 return dmaru;
381
382 return NULL;
383}
384
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700385/**
386 * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition
387 * structure which uniquely represent one DMA remapping hardware unit
388 * present in the platform
389 */
Jiang Liu6b197242014-11-09 22:47:58 +0800390static int dmar_parse_one_drhd(struct acpi_dmar_header *header, void *arg)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700391{
392 struct acpi_dmar_hardware_unit *drhd;
393 struct dmar_drhd_unit *dmaru;
Andy Shevchenko3f6db652017-03-16 16:23:53 +0200394 int ret;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700395
David Woodhousee523b382009-04-10 22:27:48 -0700396 drhd = (struct acpi_dmar_hardware_unit *)header;
Jiang Liu6b197242014-11-09 22:47:58 +0800397 dmaru = dmar_find_dmaru(drhd);
398 if (dmaru)
399 goto out;
400
401 dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700402 if (!dmaru)
403 return -ENOMEM;
404
Jiang Liu6b197242014-11-09 22:47:58 +0800405 /*
406 * If header is allocated from slab by ACPI _DSM method, we need to
407 * copy the content because the memory buffer will be freed on return.
408 */
409 dmaru->hdr = (void *)(dmaru + 1);
410 memcpy(dmaru->hdr, header, header->length);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700411 dmaru->reg_base_addr = drhd->address;
David Woodhouse276dbf992009-04-04 01:45:37 +0100412 dmaru->segment = drhd->segment;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700413 dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */
David Woodhouse07cb52f2014-03-07 14:39:27 +0000414 dmaru->devices = dmar_alloc_dev_scope((void *)(drhd + 1),
415 ((void *)drhd) + drhd->header.length,
416 &dmaru->devices_cnt);
417 if (dmaru->devices_cnt && dmaru->devices == NULL) {
418 kfree(dmaru);
419 return -ENOMEM;
Jiang Liu2e455282014-02-19 14:07:36 +0800420 }
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700421
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700422 ret = alloc_iommu(dmaru);
423 if (ret) {
David Woodhouse07cb52f2014-03-07 14:39:27 +0000424 dmar_free_dev_scope(&dmaru->devices,
425 &dmaru->devices_cnt);
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700426 kfree(dmaru);
427 return ret;
428 }
429 dmar_register_drhd_unit(dmaru);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800430
Jiang Liu6b197242014-11-09 22:47:58 +0800431out:
Jiang Liuc2a0b532014-11-09 22:47:56 +0800432 if (arg)
433 (*(int *)arg)++;
434
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700435 return 0;
436}
437
Jiang Liua868e6b2014-01-06 14:18:20 +0800438static void dmar_free_drhd(struct dmar_drhd_unit *dmaru)
439{
440 if (dmaru->devices && dmaru->devices_cnt)
441 dmar_free_dev_scope(&dmaru->devices, &dmaru->devices_cnt);
442 if (dmaru->iommu)
443 free_iommu(dmaru->iommu);
444 kfree(dmaru);
445}
446
Jiang Liuc2a0b532014-11-09 22:47:56 +0800447static int __init dmar_parse_one_andd(struct acpi_dmar_header *header,
448 void *arg)
David Woodhousee625b4a2014-03-07 14:34:38 +0000449{
450 struct acpi_dmar_andd *andd = (void *)header;
451
452 /* Check for NUL termination within the designated length */
Bob Moore83118b02014-07-30 12:21:00 +0800453 if (strnlen(andd->device_name, header->length - 8) == header->length - 8) {
David Woodhousee625b4a2014-03-07 14:34:38 +0000454 WARN_TAINT(1, TAINT_FIRMWARE_WORKAROUND,
455 "Your BIOS is broken; ANDD object name is not NUL-terminated\n"
456 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
457 dmi_get_system_info(DMI_BIOS_VENDOR),
458 dmi_get_system_info(DMI_BIOS_VERSION),
459 dmi_get_system_info(DMI_PRODUCT_VERSION));
460 return -EINVAL;
461 }
462 pr_info("ANDD device: %x name: %s\n", andd->device_number,
Bob Moore83118b02014-07-30 12:21:00 +0800463 andd->device_name);
David Woodhousee625b4a2014-03-07 14:34:38 +0000464
465 return 0;
466}
467
David Woodhouseaa697072009-10-07 12:18:00 +0100468#ifdef CONFIG_ACPI_NUMA
Jiang Liu6b197242014-11-09 22:47:58 +0800469static int dmar_parse_one_rhsa(struct acpi_dmar_header *header, void *arg)
Suresh Siddhaee34b322009-10-02 11:01:21 -0700470{
471 struct acpi_dmar_rhsa *rhsa;
472 struct dmar_drhd_unit *drhd;
473
474 rhsa = (struct acpi_dmar_rhsa *)header;
David Woodhouseaa697072009-10-07 12:18:00 +0100475 for_each_drhd_unit(drhd) {
Suresh Siddhaee34b322009-10-02 11:01:21 -0700476 if (drhd->reg_base_addr == rhsa->base_address) {
477 int node = acpi_map_pxm_to_node(rhsa->proximity_domain);
478
479 if (!node_online(node))
480 node = -1;
481 drhd->iommu->node = node;
David Woodhouseaa697072009-10-07 12:18:00 +0100482 return 0;
483 }
Suresh Siddhaee34b322009-10-02 11:01:21 -0700484 }
Ben Hutchingsfd0c8892010-04-03 19:38:43 +0100485 WARN_TAINT(
486 1, TAINT_FIRMWARE_WORKAROUND,
487 "Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n"
488 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
489 drhd->reg_base_addr,
490 dmi_get_system_info(DMI_BIOS_VENDOR),
491 dmi_get_system_info(DMI_BIOS_VERSION),
492 dmi_get_system_info(DMI_PRODUCT_VERSION));
Suresh Siddhaee34b322009-10-02 11:01:21 -0700493
David Woodhouseaa697072009-10-07 12:18:00 +0100494 return 0;
Suresh Siddhaee34b322009-10-02 11:01:21 -0700495}
Jiang Liuc2a0b532014-11-09 22:47:56 +0800496#else
497#define dmar_parse_one_rhsa dmar_res_noop
David Woodhouseaa697072009-10-07 12:18:00 +0100498#endif
Suresh Siddhaee34b322009-10-02 11:01:21 -0700499
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700500static void __init
501dmar_table_print_dmar_entry(struct acpi_dmar_header *header)
502{
503 struct acpi_dmar_hardware_unit *drhd;
504 struct acpi_dmar_reserved_memory *rmrr;
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800505 struct acpi_dmar_atsr *atsr;
Roland Dreier17b60972009-09-24 12:14:00 -0700506 struct acpi_dmar_rhsa *rhsa;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700507
508 switch (header->type) {
509 case ACPI_DMAR_TYPE_HARDWARE_UNIT:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800510 drhd = container_of(header, struct acpi_dmar_hardware_unit,
511 header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400512 pr_info("DRHD base: %#016Lx flags: %#x\n",
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800513 (unsigned long long)drhd->address, drhd->flags);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700514 break;
515 case ACPI_DMAR_TYPE_RESERVED_MEMORY:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800516 rmrr = container_of(header, struct acpi_dmar_reserved_memory,
517 header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400518 pr_info("RMRR base: %#016Lx end: %#016Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700519 (unsigned long long)rmrr->base_address,
520 (unsigned long long)rmrr->end_address);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700521 break;
Bob Moore83118b02014-07-30 12:21:00 +0800522 case ACPI_DMAR_TYPE_ROOT_ATS:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800523 atsr = container_of(header, struct acpi_dmar_atsr, header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400524 pr_info("ATSR flags: %#x\n", atsr->flags);
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800525 break;
Bob Moore83118b02014-07-30 12:21:00 +0800526 case ACPI_DMAR_TYPE_HARDWARE_AFFINITY:
Roland Dreier17b60972009-09-24 12:14:00 -0700527 rhsa = container_of(header, struct acpi_dmar_rhsa, header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400528 pr_info("RHSA base: %#016Lx proximity domain: %#x\n",
Roland Dreier17b60972009-09-24 12:14:00 -0700529 (unsigned long long)rhsa->base_address,
530 rhsa->proximity_domain);
531 break;
Bob Moore83118b02014-07-30 12:21:00 +0800532 case ACPI_DMAR_TYPE_NAMESPACE:
David Woodhousee625b4a2014-03-07 14:34:38 +0000533 /* We don't print this here because we need to sanity-check
534 it first. So print it in dmar_parse_one_andd() instead. */
535 break;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700536 }
537}
538
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700539/**
540 * dmar_table_detect - checks to see if the platform supports DMAR devices
541 */
542static int __init dmar_table_detect(void)
543{
544 acpi_status status = AE_OK;
545
546 /* if we could find DMAR table, then there are DMAR devices */
Lv Zheng6b11d1d2016-12-14 15:04:39 +0800547 status = acpi_get_table(ACPI_SIG_DMAR, 0, &dmar_tbl);
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700548
549 if (ACPI_SUCCESS(status) && !dmar_tbl) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400550 pr_warn("Unable to map DMAR\n");
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700551 status = AE_NOT_FOUND;
552 }
553
Andy Shevchenko8326c5d2017-03-16 16:23:51 +0200554 return ACPI_SUCCESS(status) ? 0 : -ENOENT;
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700555}
Suresh Siddhaaaa9d1d2008-07-10 11:16:38 -0700556
Jiang Liuc2a0b532014-11-09 22:47:56 +0800557static int dmar_walk_remapping_entries(struct acpi_dmar_header *start,
558 size_t len, struct dmar_res_callback *cb)
559{
Jiang Liuc2a0b532014-11-09 22:47:56 +0800560 struct acpi_dmar_header *iter, *next;
561 struct acpi_dmar_header *end = ((void *)start) + len;
562
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200563 for (iter = start; iter < end; iter = next) {
Jiang Liuc2a0b532014-11-09 22:47:56 +0800564 next = (void *)iter + iter->length;
565 if (iter->length == 0) {
566 /* Avoid looping forever on bad ACPI tables */
567 pr_debug(FW_BUG "Invalid 0-length structure\n");
568 break;
569 } else if (next > end) {
570 /* Avoid passing table end */
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200571 pr_warn(FW_BUG "Record passes table end\n");
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200572 return -EINVAL;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800573 }
574
575 if (cb->print_entry)
576 dmar_table_print_dmar_entry(iter);
577
578 if (iter->type >= ACPI_DMAR_TYPE_RESERVED) {
579 /* continue for forward compatibility */
580 pr_debug("Unknown DMAR structure type %d\n",
581 iter->type);
582 } else if (cb->cb[iter->type]) {
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200583 int ret;
584
Jiang Liuc2a0b532014-11-09 22:47:56 +0800585 ret = cb->cb[iter->type](iter, cb->arg[iter->type]);
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200586 if (ret)
587 return ret;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800588 } else if (!cb->ignore_unhandled) {
589 pr_warn("No handler for DMAR structure type %d\n",
590 iter->type);
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200591 return -EINVAL;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800592 }
593 }
594
Andy Shevchenko4a8ed2b2017-03-16 16:23:52 +0200595 return 0;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800596}
597
598static inline int dmar_walk_dmar_table(struct acpi_table_dmar *dmar,
599 struct dmar_res_callback *cb)
600{
601 return dmar_walk_remapping_entries((void *)(dmar + 1),
602 dmar->header.length - sizeof(*dmar), cb);
603}
604
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700605/**
606 * parse_dmar_table - parses the DMA reporting table
607 */
608static int __init
609parse_dmar_table(void)
610{
611 struct acpi_table_dmar *dmar;
Li, Zhen-Hua7cef3342013-05-20 15:57:32 +0800612 int drhd_count = 0;
Andy Shevchenko3f6db652017-03-16 16:23:53 +0200613 int ret;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800614 struct dmar_res_callback cb = {
615 .print_entry = true,
616 .ignore_unhandled = true,
617 .arg[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &drhd_count,
618 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_parse_one_drhd,
619 .cb[ACPI_DMAR_TYPE_RESERVED_MEMORY] = &dmar_parse_one_rmrr,
620 .cb[ACPI_DMAR_TYPE_ROOT_ATS] = &dmar_parse_one_atsr,
621 .cb[ACPI_DMAR_TYPE_HARDWARE_AFFINITY] = &dmar_parse_one_rhsa,
622 .cb[ACPI_DMAR_TYPE_NAMESPACE] = &dmar_parse_one_andd,
623 };
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700624
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700625 /*
626 * Do it again, earlier dmar_tbl mapping could be mapped with
627 * fixed map.
628 */
629 dmar_table_detect();
630
Joseph Cihulaa59b50e2009-06-30 19:31:10 -0700631 /*
632 * ACPI tables may not be DMA protected by tboot, so use DMAR copy
633 * SINIT saved in SinitMleData in TXT heap (which is DMA protected)
634 */
635 dmar_tbl = tboot_get_dmar_table(dmar_tbl);
636
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700637 dmar = (struct acpi_table_dmar *)dmar_tbl;
638 if (!dmar)
639 return -ENODEV;
640
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700641 if (dmar->width < PAGE_SHIFT - 1) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400642 pr_warn("Invalid DMAR haw\n");
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700643 return -EINVAL;
644 }
645
Donald Dutilee9071b02012-06-08 17:13:11 -0400646 pr_info("Host address width %d\n", dmar->width + 1);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800647 ret = dmar_walk_dmar_table(dmar, &cb);
648 if (ret == 0 && drhd_count == 0)
Li, Zhen-Hua7cef3342013-05-20 15:57:32 +0800649 pr_warn(FW_BUG "No DRHD structure found in DMAR table\n");
Jiang Liuc2a0b532014-11-09 22:47:56 +0800650
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700651 return ret;
652}
653
David Woodhouse832bd852014-03-07 15:08:36 +0000654static int dmar_pci_device_match(struct dmar_dev_scope devices[],
655 int cnt, struct pci_dev *dev)
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700656{
657 int index;
David Woodhouse832bd852014-03-07 15:08:36 +0000658 struct device *tmp;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700659
660 while (dev) {
Jiang Liub683b232014-02-19 14:07:32 +0800661 for_each_active_dev_scope(devices, cnt, index, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +0000662 if (dev_is_pci(tmp) && dev == to_pci_dev(tmp))
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700663 return 1;
664
665 /* Check our parent */
666 dev = dev->bus->self;
667 }
668
669 return 0;
670}
671
672struct dmar_drhd_unit *
673dmar_find_matched_drhd_unit(struct pci_dev *dev)
674{
Jiang Liu0e242612014-02-19 14:07:34 +0800675 struct dmar_drhd_unit *dmaru;
Yu Zhao2e824f72008-12-22 16:54:58 +0800676 struct acpi_dmar_hardware_unit *drhd;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700677
Yinghaidda56542010-04-09 01:07:55 +0100678 dev = pci_physfn(dev);
679
Jiang Liu0e242612014-02-19 14:07:34 +0800680 rcu_read_lock();
Yijing Wang8b161f02013-10-31 17:25:16 +0800681 for_each_drhd_unit(dmaru) {
Yu Zhao2e824f72008-12-22 16:54:58 +0800682 drhd = container_of(dmaru->hdr,
683 struct acpi_dmar_hardware_unit,
684 header);
685
686 if (dmaru->include_all &&
687 drhd->segment == pci_domain_nr(dev->bus))
Jiang Liu0e242612014-02-19 14:07:34 +0800688 goto out;
Yu Zhao2e824f72008-12-22 16:54:58 +0800689
690 if (dmar_pci_device_match(dmaru->devices,
691 dmaru->devices_cnt, dev))
Jiang Liu0e242612014-02-19 14:07:34 +0800692 goto out;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700693 }
Jiang Liu0e242612014-02-19 14:07:34 +0800694 dmaru = NULL;
695out:
696 rcu_read_unlock();
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700697
Jiang Liu0e242612014-02-19 14:07:34 +0800698 return dmaru;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700699}
700
David Woodhouseed403562014-03-07 23:15:42 +0000701static void __init dmar_acpi_insert_dev_scope(u8 device_number,
702 struct acpi_device *adev)
703{
704 struct dmar_drhd_unit *dmaru;
705 struct acpi_dmar_hardware_unit *drhd;
706 struct acpi_dmar_device_scope *scope;
707 struct device *tmp;
708 int i;
709 struct acpi_dmar_pci_path *path;
710
711 for_each_drhd_unit(dmaru) {
712 drhd = container_of(dmaru->hdr,
713 struct acpi_dmar_hardware_unit,
714 header);
715
716 for (scope = (void *)(drhd + 1);
717 (unsigned long)scope < ((unsigned long)drhd) + drhd->header.length;
718 scope = ((void *)scope) + scope->length) {
Bob Moore83118b02014-07-30 12:21:00 +0800719 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE)
David Woodhouseed403562014-03-07 23:15:42 +0000720 continue;
721 if (scope->enumeration_id != device_number)
722 continue;
723
724 path = (void *)(scope + 1);
725 pr_info("ACPI device \"%s\" under DMAR at %llx as %02x:%02x.%d\n",
726 dev_name(&adev->dev), dmaru->reg_base_addr,
727 scope->bus, path->device, path->function);
728 for_each_dev_scope(dmaru->devices, dmaru->devices_cnt, i, tmp)
729 if (tmp == NULL) {
730 dmaru->devices[i].bus = scope->bus;
731 dmaru->devices[i].devfn = PCI_DEVFN(path->device,
732 path->function);
733 rcu_assign_pointer(dmaru->devices[i].dev,
734 get_device(&adev->dev));
735 return;
736 }
737 BUG_ON(i >= dmaru->devices_cnt);
738 }
739 }
740 pr_warn("No IOMMU scope found for ANDD enumeration ID %d (%s)\n",
741 device_number, dev_name(&adev->dev));
742}
743
744static int __init dmar_acpi_dev_scope_init(void)
745{
Joerg Roedel11f1a772014-03-25 20:16:40 +0100746 struct acpi_dmar_andd *andd;
747
748 if (dmar_tbl == NULL)
749 return -ENODEV;
750
David Woodhouse7713ec02014-04-01 14:58:36 +0100751 for (andd = (void *)dmar_tbl + sizeof(struct acpi_table_dmar);
752 ((unsigned long)andd) < ((unsigned long)dmar_tbl) + dmar_tbl->length;
753 andd = ((void *)andd) + andd->header.length) {
Bob Moore83118b02014-07-30 12:21:00 +0800754 if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) {
David Woodhouseed403562014-03-07 23:15:42 +0000755 acpi_handle h;
756 struct acpi_device *adev;
757
758 if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT,
Bob Moore83118b02014-07-30 12:21:00 +0800759 andd->device_name,
David Woodhouseed403562014-03-07 23:15:42 +0000760 &h))) {
761 pr_err("Failed to find handle for ACPI object %s\n",
Bob Moore83118b02014-07-30 12:21:00 +0800762 andd->device_name);
David Woodhouseed403562014-03-07 23:15:42 +0000763 continue;
764 }
Joerg Roedelc0df9752014-08-21 23:06:48 +0200765 if (acpi_bus_get_device(h, &adev)) {
David Woodhouseed403562014-03-07 23:15:42 +0000766 pr_err("Failed to get device for ACPI object %s\n",
Bob Moore83118b02014-07-30 12:21:00 +0800767 andd->device_name);
David Woodhouseed403562014-03-07 23:15:42 +0000768 continue;
769 }
770 dmar_acpi_insert_dev_scope(andd->device_number, adev);
771 }
David Woodhouseed403562014-03-07 23:15:42 +0000772 }
773 return 0;
774}
775
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700776int __init dmar_dev_scope_init(void)
777{
Jiang Liu2e455282014-02-19 14:07:36 +0800778 struct pci_dev *dev = NULL;
779 struct dmar_pci_notify_info *info;
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700780
Jiang Liu2e455282014-02-19 14:07:36 +0800781 if (dmar_dev_scope_status != 1)
782 return dmar_dev_scope_status;
Suresh Siddhac2c72862011-08-23 17:05:19 -0700783
Jiang Liu2e455282014-02-19 14:07:36 +0800784 if (list_empty(&dmar_drhd_units)) {
785 dmar_dev_scope_status = -ENODEV;
786 } else {
787 dmar_dev_scope_status = 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -0700788
David Woodhouse63b42622014-03-28 11:28:40 +0000789 dmar_acpi_dev_scope_init();
790
Jiang Liu2e455282014-02-19 14:07:36 +0800791 for_each_pci_dev(dev) {
792 if (dev->is_virtfn)
793 continue;
794
795 info = dmar_alloc_pci_notify_info(dev,
796 BUS_NOTIFY_ADD_DEVICE);
797 if (!info) {
798 return dmar_dev_scope_status;
799 } else {
800 dmar_pci_bus_add_dev(info);
801 dmar_free_pci_notify_info(info);
802 }
803 }
804
805 bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb);
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700806 }
807
Jiang Liu2e455282014-02-19 14:07:36 +0800808 return dmar_dev_scope_status;
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700809}
810
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700811
812int __init dmar_table_init(void)
813{
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700814 static int dmar_table_initialized;
Fenghua Yu093f87d2007-11-21 15:07:14 -0800815 int ret;
816
Jiang Liucc053012014-01-06 14:18:24 +0800817 if (dmar_table_initialized == 0) {
818 ret = parse_dmar_table();
819 if (ret < 0) {
820 if (ret != -ENODEV)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200821 pr_info("Parse DMAR table failure.\n");
Jiang Liucc053012014-01-06 14:18:24 +0800822 } else if (list_empty(&dmar_drhd_units)) {
823 pr_info("No DMAR devices found\n");
824 ret = -ENODEV;
825 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700826
Jiang Liucc053012014-01-06 14:18:24 +0800827 if (ret < 0)
828 dmar_table_initialized = ret;
829 else
830 dmar_table_initialized = 1;
Fenghua Yu093f87d2007-11-21 15:07:14 -0800831 }
832
Jiang Liucc053012014-01-06 14:18:24 +0800833 return dmar_table_initialized < 0 ? dmar_table_initialized : 0;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700834}
835
Ben Hutchings3a8663e2010-04-03 19:37:23 +0100836static void warn_invalid_dmar(u64 addr, const char *message)
837{
Ben Hutchingsfd0c8892010-04-03 19:38:43 +0100838 WARN_TAINT_ONCE(
839 1, TAINT_FIRMWARE_WORKAROUND,
840 "Your BIOS is broken; DMAR reported at address %llx%s!\n"
841 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
842 addr, message,
843 dmi_get_system_info(DMI_BIOS_VENDOR),
844 dmi_get_system_info(DMI_BIOS_VERSION),
845 dmi_get_system_info(DMI_PRODUCT_VERSION));
Ben Hutchings3a8663e2010-04-03 19:37:23 +0100846}
David Woodhouse6ecbf012009-12-02 09:20:27 +0000847
Jiang Liuc2a0b532014-11-09 22:47:56 +0800848static int __ref
849dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg)
David Woodhouse86cf8982009-11-09 22:15:15 +0000850{
David Woodhouse86cf8982009-11-09 22:15:15 +0000851 struct acpi_dmar_hardware_unit *drhd;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800852 void __iomem *addr;
853 u64 cap, ecap;
David Woodhouse86cf8982009-11-09 22:15:15 +0000854
Jiang Liuc2a0b532014-11-09 22:47:56 +0800855 drhd = (void *)entry;
856 if (!drhd->address) {
857 warn_invalid_dmar(0, "");
858 return -EINVAL;
David Woodhouse86cf8982009-11-09 22:15:15 +0000859 }
Chris Wright2c992202009-12-02 09:17:13 +0000860
Jiang Liu6b197242014-11-09 22:47:58 +0800861 if (arg)
862 addr = ioremap(drhd->address, VTD_PAGE_SIZE);
863 else
864 addr = early_ioremap(drhd->address, VTD_PAGE_SIZE);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800865 if (!addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200866 pr_warn("Can't validate DRHD address: %llx\n", drhd->address);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800867 return -EINVAL;
868 }
Jiang Liu6b197242014-11-09 22:47:58 +0800869
Jiang Liuc2a0b532014-11-09 22:47:56 +0800870 cap = dmar_readq(addr + DMAR_CAP_REG);
871 ecap = dmar_readq(addr + DMAR_ECAP_REG);
Jiang Liu6b197242014-11-09 22:47:58 +0800872
873 if (arg)
874 iounmap(addr);
875 else
876 early_iounmap(addr, VTD_PAGE_SIZE);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800877
878 if (cap == (uint64_t)-1 && ecap == (uint64_t)-1) {
879 warn_invalid_dmar(drhd->address, " returns all ones");
880 return -EINVAL;
881 }
882
Chris Wright2c992202009-12-02 09:17:13 +0000883 return 0;
David Woodhouse86cf8982009-11-09 22:15:15 +0000884}
885
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -0400886int __init detect_intel_iommu(void)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700887{
888 int ret;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800889 struct dmar_res_callback validate_drhd_cb = {
890 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd,
891 .ignore_unhandled = true,
892 };
Suresh Siddha2ae21012008-07-10 11:16:43 -0700893
Jiang Liu3a5670e2014-02-19 14:07:33 +0800894 down_write(&dmar_global_lock);
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700895 ret = dmar_table_detect();
Andy Shevchenko8326c5d2017-03-16 16:23:51 +0200896 if (!ret)
897 ret = dmar_walk_dmar_table((struct acpi_table_dmar *)dmar_tbl,
898 &validate_drhd_cb);
899 if (!ret && !no_iommu && !iommu_detected && !dmar_disabled) {
Jiang Liuc2a0b532014-11-09 22:47:56 +0800900 iommu_detected = 1;
901 /* Make sure ACS will be enabled */
902 pci_request_acs();
903 }
Suresh Siddhaf5d1b972011-08-23 17:05:22 -0700904
FUJITA Tomonori9d5ce732009-11-10 19:46:16 +0900905#ifdef CONFIG_X86
Andy Shevchenko8326c5d2017-03-16 16:23:51 +0200906 if (!ret)
Jiang Liuc2a0b532014-11-09 22:47:56 +0800907 x86_init.iommu.iommu_init = intel_iommu_init;
FUJITA Tomonori9d5ce732009-11-10 19:46:16 +0900908#endif
Jiang Liuc2a0b532014-11-09 22:47:56 +0800909
Rafael J. Wysocki696c7f82017-01-05 02:13:31 +0100910 if (dmar_tbl) {
911 acpi_put_table(dmar_tbl);
912 dmar_tbl = NULL;
913 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800914 up_write(&dmar_global_lock);
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -0400915
Andy Shevchenko8326c5d2017-03-16 16:23:51 +0200916 return ret ? ret : 1;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700917}
918
Donald Dutile6f5cf522012-06-04 17:29:02 -0400919static void unmap_iommu(struct intel_iommu *iommu)
920{
921 iounmap(iommu->reg);
922 release_mem_region(iommu->reg_phys, iommu->reg_size);
923}
924
925/**
926 * map_iommu: map the iommu's registers
927 * @iommu: the iommu to map
928 * @phys_addr: the physical address of the base resgister
Donald Dutilee9071b02012-06-08 17:13:11 -0400929 *
Donald Dutile6f5cf522012-06-04 17:29:02 -0400930 * Memory map the iommu's registers. Start w/ a single page, and
Donald Dutilee9071b02012-06-08 17:13:11 -0400931 * possibly expand if that turns out to be insufficent.
Donald Dutile6f5cf522012-06-04 17:29:02 -0400932 */
933static int map_iommu(struct intel_iommu *iommu, u64 phys_addr)
934{
935 int map_size, err=0;
936
937 iommu->reg_phys = phys_addr;
938 iommu->reg_size = VTD_PAGE_SIZE;
939
940 if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200941 pr_err("Can't reserve memory\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400942 err = -EBUSY;
943 goto out;
944 }
945
946 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
947 if (!iommu->reg) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200948 pr_err("Can't map the region\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400949 err = -ENOMEM;
950 goto release;
951 }
952
953 iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG);
954 iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG);
955
956 if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) {
957 err = -EINVAL;
958 warn_invalid_dmar(phys_addr, " returns all ones");
959 goto unmap;
960 }
961
962 /* the registers might be more than one page */
963 map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap),
964 cap_max_fault_reg_offset(iommu->cap));
965 map_size = VTD_PAGE_ALIGN(map_size);
966 if (map_size > iommu->reg_size) {
967 iounmap(iommu->reg);
968 release_mem_region(iommu->reg_phys, iommu->reg_size);
969 iommu->reg_size = map_size;
970 if (!request_mem_region(iommu->reg_phys, iommu->reg_size,
971 iommu->name)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200972 pr_err("Can't reserve memory\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400973 err = -EBUSY;
974 goto out;
975 }
976 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
977 if (!iommu->reg) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200978 pr_err("Can't map the region\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400979 err = -ENOMEM;
980 goto release;
981 }
982 }
983 err = 0;
984 goto out;
985
986unmap:
987 iounmap(iommu->reg);
988release:
989 release_mem_region(iommu->reg_phys, iommu->reg_size);
990out:
991 return err;
992}
993
Jiang Liu78d8e702014-11-09 22:47:57 +0800994static int dmar_alloc_seq_id(struct intel_iommu *iommu)
995{
996 iommu->seq_id = find_first_zero_bit(dmar_seq_ids,
997 DMAR_UNITS_SUPPORTED);
998 if (iommu->seq_id >= DMAR_UNITS_SUPPORTED) {
999 iommu->seq_id = -1;
1000 } else {
1001 set_bit(iommu->seq_id, dmar_seq_ids);
1002 sprintf(iommu->name, "dmar%d", iommu->seq_id);
1003 }
1004
1005 return iommu->seq_id;
1006}
1007
1008static void dmar_free_seq_id(struct intel_iommu *iommu)
1009{
1010 if (iommu->seq_id >= 0) {
1011 clear_bit(iommu->seq_id, dmar_seq_ids);
1012 iommu->seq_id = -1;
1013 }
1014}
1015
Jiang Liu694835d2014-01-06 14:18:16 +08001016static int alloc_iommu(struct dmar_drhd_unit *drhd)
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001017{
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001018 struct intel_iommu *iommu;
Takao Indoh3a93c842013-04-23 17:35:03 +09001019 u32 ver, sts;
Joerg Roedel43f73922009-01-03 23:56:27 +01001020 int agaw = 0;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001021 int msagaw = 0;
Donald Dutile6f5cf522012-06-04 17:29:02 -04001022 int err;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001023
David Woodhouse6ecbf012009-12-02 09:20:27 +00001024 if (!drhd->reg_base_addr) {
Ben Hutchings3a8663e2010-04-03 19:37:23 +01001025 warn_invalid_dmar(0, "");
David Woodhouse6ecbf012009-12-02 09:20:27 +00001026 return -EINVAL;
1027 }
1028
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001029 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
1030 if (!iommu)
Suresh Siddha1886e8a2008-07-10 11:16:37 -07001031 return -ENOMEM;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001032
Jiang Liu78d8e702014-11-09 22:47:57 +08001033 if (dmar_alloc_seq_id(iommu) < 0) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001034 pr_err("Failed to allocate seq_id\n");
Jiang Liu78d8e702014-11-09 22:47:57 +08001035 err = -ENOSPC;
1036 goto error;
1037 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001038
Donald Dutile6f5cf522012-06-04 17:29:02 -04001039 err = map_iommu(iommu, drhd->reg_base_addr);
1040 if (err) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001041 pr_err("Failed to map %s\n", iommu->name);
Jiang Liu78d8e702014-11-09 22:47:57 +08001042 goto error_free_seq_id;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001043 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001044
Donald Dutile6f5cf522012-06-04 17:29:02 -04001045 err = -EINVAL;
Weidong Han1b573682008-12-08 15:34:06 +08001046 agaw = iommu_calculate_agaw(iommu);
1047 if (agaw < 0) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001048 pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n",
1049 iommu->seq_id);
David Woodhouse08155652009-08-04 09:17:20 +01001050 goto err_unmap;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001051 }
1052 msagaw = iommu_calculate_max_sagaw(iommu);
1053 if (msagaw < 0) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001054 pr_err("Cannot get a valid max agaw for iommu (seq_id = %d)\n",
Weidong Han1b573682008-12-08 15:34:06 +08001055 iommu->seq_id);
David Woodhouse08155652009-08-04 09:17:20 +01001056 goto err_unmap;
Weidong Han1b573682008-12-08 15:34:06 +08001057 }
1058 iommu->agaw = agaw;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001059 iommu->msagaw = msagaw;
David Woodhouse67ccac42014-03-09 13:49:45 -07001060 iommu->segment = drhd->segment;
Weidong Han1b573682008-12-08 15:34:06 +08001061
Suresh Siddhaee34b322009-10-02 11:01:21 -07001062 iommu->node = -1;
1063
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001064 ver = readl(iommu->reg + DMAR_VER_REG);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001065 pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n",
1066 iommu->name,
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001067 (unsigned long long)drhd->reg_base_addr,
1068 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver),
1069 (unsigned long long)iommu->cap,
1070 (unsigned long long)iommu->ecap);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001071
Takao Indoh3a93c842013-04-23 17:35:03 +09001072 /* Reflect status in gcmd */
1073 sts = readl(iommu->reg + DMAR_GSTS_REG);
1074 if (sts & DMA_GSTS_IRES)
1075 iommu->gcmd |= DMA_GCMD_IRE;
1076 if (sts & DMA_GSTS_TES)
1077 iommu->gcmd |= DMA_GCMD_TE;
1078 if (sts & DMA_GSTS_QIES)
1079 iommu->gcmd |= DMA_GCMD_QIE;
1080
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001081 raw_spin_lock_init(&iommu->register_lock);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001082
Joerg Roedelbc847452016-01-07 12:16:51 +01001083 if (intel_iommu_enabled) {
Joerg Roedel39ab9552017-02-01 16:56:46 +01001084 err = iommu_device_sysfs_add(&iommu->iommu, NULL,
1085 intel_iommu_groups,
1086 "%s", iommu->name);
1087 if (err)
Joerg Roedelbc847452016-01-07 12:16:51 +01001088 goto err_unmap;
Joerg Roedelb0119e82017-02-01 13:23:08 +01001089
1090 iommu_device_set_ops(&iommu->iommu, &intel_iommu_ops);
1091
1092 err = iommu_device_register(&iommu->iommu);
1093 if (err)
1094 goto err_unmap;
Nicholas Krause59203372016-01-04 18:27:57 -05001095 }
1096
Joerg Roedelbc847452016-01-07 12:16:51 +01001097 drhd->iommu = iommu;
1098
Suresh Siddha1886e8a2008-07-10 11:16:37 -07001099 return 0;
David Woodhouse08155652009-08-04 09:17:20 +01001100
Jiang Liu78d8e702014-11-09 22:47:57 +08001101err_unmap:
Donald Dutile6f5cf522012-06-04 17:29:02 -04001102 unmap_iommu(iommu);
Jiang Liu78d8e702014-11-09 22:47:57 +08001103error_free_seq_id:
1104 dmar_free_seq_id(iommu);
1105error:
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001106 kfree(iommu);
Donald Dutile6f5cf522012-06-04 17:29:02 -04001107 return err;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001108}
1109
Jiang Liua868e6b2014-01-06 14:18:20 +08001110static void free_iommu(struct intel_iommu *iommu)
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001111{
Andy Shevchenkoc37a0172017-02-15 16:42:21 +02001112 if (intel_iommu_enabled) {
1113 iommu_device_unregister(&iommu->iommu);
1114 iommu_device_sysfs_remove(&iommu->iommu);
1115 }
Alex Williamsona5459cf2014-06-12 16:12:31 -06001116
Jiang Liua868e6b2014-01-06 14:18:20 +08001117 if (iommu->irq) {
David Woodhouse12082252015-10-07 15:37:03 +01001118 if (iommu->pr_irq) {
1119 free_irq(iommu->pr_irq, iommu);
1120 dmar_free_hwirq(iommu->pr_irq);
1121 iommu->pr_irq = 0;
1122 }
Jiang Liua868e6b2014-01-06 14:18:20 +08001123 free_irq(iommu->irq, iommu);
Thomas Gleixnera553b142014-05-07 15:44:11 +00001124 dmar_free_hwirq(iommu->irq);
Jiang Liu34742db2015-04-13 14:11:41 +08001125 iommu->irq = 0;
Jiang Liua868e6b2014-01-06 14:18:20 +08001126 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001127
Jiang Liua84da702014-01-06 14:18:23 +08001128 if (iommu->qi) {
1129 free_page((unsigned long)iommu->qi->desc);
1130 kfree(iommu->qi->desc_status);
1131 kfree(iommu->qi);
1132 }
1133
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001134 if (iommu->reg)
Donald Dutile6f5cf522012-06-04 17:29:02 -04001135 unmap_iommu(iommu);
1136
Jiang Liu78d8e702014-11-09 22:47:57 +08001137 dmar_free_seq_id(iommu);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001138 kfree(iommu);
1139}
Suresh Siddhafe962e92008-07-10 11:16:42 -07001140
1141/*
1142 * Reclaim all the submitted descriptors which have completed its work.
1143 */
1144static inline void reclaim_free_desc(struct q_inval *qi)
1145{
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001146 while (qi->desc_status[qi->free_tail] == QI_DONE ||
1147 qi->desc_status[qi->free_tail] == QI_ABORT) {
Suresh Siddhafe962e92008-07-10 11:16:42 -07001148 qi->desc_status[qi->free_tail] = QI_FREE;
1149 qi->free_tail = (qi->free_tail + 1) % QI_LENGTH;
1150 qi->free_cnt++;
1151 }
1152}
1153
Yu Zhao704126a2009-01-04 16:28:52 +08001154static int qi_check_fault(struct intel_iommu *iommu, int index)
1155{
1156 u32 fault;
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001157 int head, tail;
Yu Zhao704126a2009-01-04 16:28:52 +08001158 struct q_inval *qi = iommu->qi;
1159 int wait_index = (index + 1) % QI_LENGTH;
1160
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001161 if (qi->desc_status[wait_index] == QI_ABORT)
1162 return -EAGAIN;
1163
Yu Zhao704126a2009-01-04 16:28:52 +08001164 fault = readl(iommu->reg + DMAR_FSTS_REG);
1165
1166 /*
1167 * If IQE happens, the head points to the descriptor associated
1168 * with the error. No new descriptors are fetched until the IQE
1169 * is cleared.
1170 */
1171 if (fault & DMA_FSTS_IQE) {
1172 head = readl(iommu->reg + DMAR_IQH_REG);
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001173 if ((head >> DMAR_IQ_SHIFT) == index) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001174 pr_err("VT-d detected invalid descriptor: "
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001175 "low=%llx, high=%llx\n",
1176 (unsigned long long)qi->desc[index].low,
1177 (unsigned long long)qi->desc[index].high);
Yu Zhao704126a2009-01-04 16:28:52 +08001178 memcpy(&qi->desc[index], &qi->desc[wait_index],
1179 sizeof(struct qi_desc));
Yu Zhao704126a2009-01-04 16:28:52 +08001180 writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG);
1181 return -EINVAL;
1182 }
1183 }
1184
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001185 /*
1186 * If ITE happens, all pending wait_desc commands are aborted.
1187 * No new descriptors are fetched until the ITE is cleared.
1188 */
1189 if (fault & DMA_FSTS_ITE) {
1190 head = readl(iommu->reg + DMAR_IQH_REG);
1191 head = ((head >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH;
1192 head |= 1;
1193 tail = readl(iommu->reg + DMAR_IQT_REG);
1194 tail = ((tail >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH;
1195
1196 writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG);
1197
1198 do {
1199 if (qi->desc_status[head] == QI_IN_USE)
1200 qi->desc_status[head] = QI_ABORT;
1201 head = (head - 2 + QI_LENGTH) % QI_LENGTH;
1202 } while (head != tail);
1203
1204 if (qi->desc_status[wait_index] == QI_ABORT)
1205 return -EAGAIN;
1206 }
1207
1208 if (fault & DMA_FSTS_ICE)
1209 writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG);
1210
Yu Zhao704126a2009-01-04 16:28:52 +08001211 return 0;
1212}
1213
Suresh Siddhafe962e92008-07-10 11:16:42 -07001214/*
1215 * Submit the queued invalidation descriptor to the remapping
1216 * hardware unit and wait for its completion.
1217 */
Yu Zhao704126a2009-01-04 16:28:52 +08001218int qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu)
Suresh Siddhafe962e92008-07-10 11:16:42 -07001219{
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001220 int rc;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001221 struct q_inval *qi = iommu->qi;
1222 struct qi_desc *hw, wait_desc;
1223 int wait_index, index;
1224 unsigned long flags;
1225
1226 if (!qi)
Yu Zhao704126a2009-01-04 16:28:52 +08001227 return 0;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001228
1229 hw = qi->desc;
1230
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001231restart:
1232 rc = 0;
1233
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001234 raw_spin_lock_irqsave(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001235 while (qi->free_cnt < 3) {
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001236 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001237 cpu_relax();
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001238 raw_spin_lock_irqsave(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001239 }
1240
1241 index = qi->free_head;
1242 wait_index = (index + 1) % QI_LENGTH;
1243
1244 qi->desc_status[index] = qi->desc_status[wait_index] = QI_IN_USE;
1245
1246 hw[index] = *desc;
1247
Yu Zhao704126a2009-01-04 16:28:52 +08001248 wait_desc.low = QI_IWD_STATUS_DATA(QI_DONE) |
1249 QI_IWD_STATUS_WRITE | QI_IWD_TYPE;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001250 wait_desc.high = virt_to_phys(&qi->desc_status[wait_index]);
1251
1252 hw[wait_index] = wait_desc;
1253
Suresh Siddhafe962e92008-07-10 11:16:42 -07001254 qi->free_head = (qi->free_head + 2) % QI_LENGTH;
1255 qi->free_cnt -= 2;
1256
Suresh Siddhafe962e92008-07-10 11:16:42 -07001257 /*
1258 * update the HW tail register indicating the presence of
1259 * new descriptors.
1260 */
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001261 writel(qi->free_head << DMAR_IQ_SHIFT, iommu->reg + DMAR_IQT_REG);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001262
1263 while (qi->desc_status[wait_index] != QI_DONE) {
Suresh Siddhaf05810c2008-10-16 16:31:54 -07001264 /*
1265 * We will leave the interrupts disabled, to prevent interrupt
1266 * context to queue another cmd while a cmd is already submitted
1267 * and waiting for completion on this cpu. This is to avoid
1268 * a deadlock where the interrupt context can wait indefinitely
1269 * for free slots in the queue.
1270 */
Yu Zhao704126a2009-01-04 16:28:52 +08001271 rc = qi_check_fault(iommu, index);
1272 if (rc)
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001273 break;
Yu Zhao704126a2009-01-04 16:28:52 +08001274
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001275 raw_spin_unlock(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001276 cpu_relax();
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001277 raw_spin_lock(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001278 }
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001279
1280 qi->desc_status[index] = QI_DONE;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001281
1282 reclaim_free_desc(qi);
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001283 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +08001284
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001285 if (rc == -EAGAIN)
1286 goto restart;
1287
Yu Zhao704126a2009-01-04 16:28:52 +08001288 return rc;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001289}
1290
1291/*
1292 * Flush the global interrupt entry cache.
1293 */
1294void qi_global_iec(struct intel_iommu *iommu)
1295{
1296 struct qi_desc desc;
1297
1298 desc.low = QI_IEC_TYPE;
1299 desc.high = 0;
1300
Yu Zhao704126a2009-01-04 16:28:52 +08001301 /* should never fail */
Suresh Siddhafe962e92008-07-10 11:16:42 -07001302 qi_submit_sync(&desc, iommu);
1303}
1304
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001305void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm,
1306 u64 type)
Youquan Song3481f212008-10-16 16:31:55 -07001307{
Youquan Song3481f212008-10-16 16:31:55 -07001308 struct qi_desc desc;
1309
Youquan Song3481f212008-10-16 16:31:55 -07001310 desc.low = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did)
1311 | QI_CC_GRAN(type) | QI_CC_TYPE;
1312 desc.high = 0;
1313
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001314 qi_submit_sync(&desc, iommu);
Youquan Song3481f212008-10-16 16:31:55 -07001315}
1316
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001317void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
1318 unsigned int size_order, u64 type)
Youquan Song3481f212008-10-16 16:31:55 -07001319{
1320 u8 dw = 0, dr = 0;
1321
1322 struct qi_desc desc;
1323 int ih = 0;
1324
Youquan Song3481f212008-10-16 16:31:55 -07001325 if (cap_write_drain(iommu->cap))
1326 dw = 1;
1327
1328 if (cap_read_drain(iommu->cap))
1329 dr = 1;
1330
1331 desc.low = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw)
1332 | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE;
1333 desc.high = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih)
1334 | QI_IOTLB_AM(size_order);
1335
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001336 qi_submit_sync(&desc, iommu);
Youquan Song3481f212008-10-16 16:31:55 -07001337}
1338
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001339void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 qdep,
1340 u64 addr, unsigned mask)
1341{
1342 struct qi_desc desc;
1343
1344 if (mask) {
1345 BUG_ON(addr & ((1 << (VTD_PAGE_SHIFT + mask)) - 1));
1346 addr |= (1 << (VTD_PAGE_SHIFT + mask - 1)) - 1;
1347 desc.high = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE;
1348 } else
1349 desc.high = QI_DEV_IOTLB_ADDR(addr);
1350
1351 if (qdep >= QI_DEV_IOTLB_MAX_INVS)
1352 qdep = 0;
1353
1354 desc.low = QI_DEV_IOTLB_SID(sid) | QI_DEV_IOTLB_QDEP(qdep) |
1355 QI_DIOTLB_TYPE;
1356
1357 qi_submit_sync(&desc, iommu);
1358}
1359
Suresh Siddhafe962e92008-07-10 11:16:42 -07001360/*
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001361 * Disable Queued Invalidation interface.
1362 */
1363void dmar_disable_qi(struct intel_iommu *iommu)
1364{
1365 unsigned long flags;
1366 u32 sts;
1367 cycles_t start_time = get_cycles();
1368
1369 if (!ecap_qis(iommu->ecap))
1370 return;
1371
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001372 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001373
CQ Tangfda3bec2016-01-13 21:15:03 +00001374 sts = readl(iommu->reg + DMAR_GSTS_REG);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001375 if (!(sts & DMA_GSTS_QIES))
1376 goto end;
1377
1378 /*
1379 * Give a chance to HW to complete the pending invalidation requests.
1380 */
1381 while ((readl(iommu->reg + DMAR_IQT_REG) !=
1382 readl(iommu->reg + DMAR_IQH_REG)) &&
1383 (DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time)))
1384 cpu_relax();
1385
1386 iommu->gcmd &= ~DMA_GCMD_QIE;
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001387 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1388
1389 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl,
1390 !(sts & DMA_GSTS_QIES), sts);
1391end:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001392 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001393}
1394
1395/*
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001396 * Enable queued invalidation.
1397 */
1398static void __dmar_enable_qi(struct intel_iommu *iommu)
1399{
David Woodhousec416daa2009-05-10 20:30:58 +01001400 u32 sts;
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001401 unsigned long flags;
1402 struct q_inval *qi = iommu->qi;
1403
1404 qi->free_head = qi->free_tail = 0;
1405 qi->free_cnt = QI_LENGTH;
1406
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001407 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001408
1409 /* write zero to the tail reg */
1410 writel(0, iommu->reg + DMAR_IQT_REG);
1411
1412 dmar_writeq(iommu->reg + DMAR_IQA_REG, virt_to_phys(qi->desc));
1413
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001414 iommu->gcmd |= DMA_GCMD_QIE;
David Woodhousec416daa2009-05-10 20:30:58 +01001415 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001416
1417 /* Make sure hardware complete it */
1418 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts);
1419
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001420 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001421}
1422
1423/*
Suresh Siddhafe962e92008-07-10 11:16:42 -07001424 * Enable Queued Invalidation interface. This is a must to support
1425 * interrupt-remapping. Also used by DMA-remapping, which replaces
1426 * register based IOTLB invalidation.
1427 */
1428int dmar_enable_qi(struct intel_iommu *iommu)
1429{
Suresh Siddhafe962e92008-07-10 11:16:42 -07001430 struct q_inval *qi;
Suresh Siddha751cafe2009-10-02 11:01:22 -07001431 struct page *desc_page;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001432
1433 if (!ecap_qis(iommu->ecap))
1434 return -ENOENT;
1435
1436 /*
1437 * queued invalidation is already setup and enabled.
1438 */
1439 if (iommu->qi)
1440 return 0;
1441
Suresh Siddhafa4b57c2009-03-16 17:05:05 -07001442 iommu->qi = kmalloc(sizeof(*qi), GFP_ATOMIC);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001443 if (!iommu->qi)
1444 return -ENOMEM;
1445
1446 qi = iommu->qi;
1447
Suresh Siddha751cafe2009-10-02 11:01:22 -07001448
1449 desc_page = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO, 0);
1450 if (!desc_page) {
Suresh Siddhafe962e92008-07-10 11:16:42 -07001451 kfree(qi);
Jiang Liub707cb02014-01-06 14:18:26 +08001452 iommu->qi = NULL;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001453 return -ENOMEM;
1454 }
1455
Suresh Siddha751cafe2009-10-02 11:01:22 -07001456 qi->desc = page_address(desc_page);
1457
Hannes Reinecke37a40712013-02-06 09:50:10 +01001458 qi->desc_status = kzalloc(QI_LENGTH * sizeof(int), GFP_ATOMIC);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001459 if (!qi->desc_status) {
1460 free_page((unsigned long) qi->desc);
1461 kfree(qi);
Jiang Liub707cb02014-01-06 14:18:26 +08001462 iommu->qi = NULL;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001463 return -ENOMEM;
1464 }
1465
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001466 raw_spin_lock_init(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001467
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001468 __dmar_enable_qi(iommu);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001469
1470 return 0;
1471}
Suresh Siddha0ac24912009-03-16 17:04:54 -07001472
1473/* iommu interrupt handling. Most stuff are MSI-like. */
1474
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001475enum faulttype {
1476 DMA_REMAP,
1477 INTR_REMAP,
1478 UNKNOWN,
1479};
1480
1481static const char *dma_remap_fault_reasons[] =
Suresh Siddha0ac24912009-03-16 17:04:54 -07001482{
1483 "Software",
1484 "Present bit in root entry is clear",
1485 "Present bit in context entry is clear",
1486 "Invalid context entry",
1487 "Access beyond MGAW",
1488 "PTE Write access is not set",
1489 "PTE Read access is not set",
1490 "Next page table ptr is invalid",
1491 "Root table address invalid",
1492 "Context table ptr is invalid",
1493 "non-zero reserved fields in RTP",
1494 "non-zero reserved fields in CTP",
1495 "non-zero reserved fields in PTE",
Li, Zhen-Hua4ecccd92013-03-06 10:43:17 +08001496 "PCE for translation request specifies blocking",
Suresh Siddha0ac24912009-03-16 17:04:54 -07001497};
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001498
Suresh Siddha95a02e92012-03-30 11:47:07 -07001499static const char *irq_remap_fault_reasons[] =
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001500{
1501 "Detected reserved fields in the decoded interrupt-remapped request",
1502 "Interrupt index exceeded the interrupt-remapping table size",
1503 "Present field in the IRTE entry is clear",
1504 "Error accessing interrupt-remapping table pointed by IRTA_REG",
1505 "Detected reserved fields in the IRTE entry",
1506 "Blocked a compatibility format interrupt request",
1507 "Blocked an interrupt request due to source-id verification failure",
1508};
1509
Rashika Kheria21004dc2013-12-18 12:01:46 +05301510static const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001511{
Dan Carpenterfefe1ed2012-05-13 20:09:38 +03001512 if (fault_reason >= 0x20 && (fault_reason - 0x20 <
1513 ARRAY_SIZE(irq_remap_fault_reasons))) {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001514 *fault_type = INTR_REMAP;
Suresh Siddha95a02e92012-03-30 11:47:07 -07001515 return irq_remap_fault_reasons[fault_reason - 0x20];
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001516 } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) {
1517 *fault_type = DMA_REMAP;
1518 return dma_remap_fault_reasons[fault_reason];
1519 } else {
1520 *fault_type = UNKNOWN;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001521 return "Unknown";
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001522 }
Suresh Siddha0ac24912009-03-16 17:04:54 -07001523}
1524
David Woodhouse12082252015-10-07 15:37:03 +01001525
1526static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq)
1527{
1528 if (iommu->irq == irq)
1529 return DMAR_FECTL_REG;
1530 else if (iommu->pr_irq == irq)
1531 return DMAR_PECTL_REG;
1532 else
1533 BUG();
1534}
1535
Thomas Gleixner5c2837f2010-09-28 17:15:11 +02001536void dmar_msi_unmask(struct irq_data *data)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001537{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001538 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
David Woodhouse12082252015-10-07 15:37:03 +01001539 int reg = dmar_msi_reg(iommu, data->irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001540 unsigned long flag;
1541
1542 /* unmask it */
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001543 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001544 writel(0, iommu->reg + reg);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001545 /* Read a reg to force flush the post write */
David Woodhouse12082252015-10-07 15:37:03 +01001546 readl(iommu->reg + reg);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001547 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001548}
1549
Thomas Gleixner5c2837f2010-09-28 17:15:11 +02001550void dmar_msi_mask(struct irq_data *data)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001551{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001552 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
David Woodhouse12082252015-10-07 15:37:03 +01001553 int reg = dmar_msi_reg(iommu, data->irq);
1554 unsigned long flag;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001555
1556 /* mask it */
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001557 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001558 writel(DMA_FECTL_IM, iommu->reg + reg);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001559 /* Read a reg to force flush the post write */
David Woodhouse12082252015-10-07 15:37:03 +01001560 readl(iommu->reg + reg);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001561 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001562}
1563
1564void dmar_msi_write(int irq, struct msi_msg *msg)
1565{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001566 struct intel_iommu *iommu = irq_get_handler_data(irq);
David Woodhouse12082252015-10-07 15:37:03 +01001567 int reg = dmar_msi_reg(iommu, irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001568 unsigned long flag;
1569
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001570 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001571 writel(msg->data, iommu->reg + reg + 4);
1572 writel(msg->address_lo, iommu->reg + reg + 8);
1573 writel(msg->address_hi, iommu->reg + reg + 12);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001574 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001575}
1576
1577void dmar_msi_read(int irq, struct msi_msg *msg)
1578{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001579 struct intel_iommu *iommu = irq_get_handler_data(irq);
David Woodhouse12082252015-10-07 15:37:03 +01001580 int reg = dmar_msi_reg(iommu, irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001581 unsigned long flag;
1582
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001583 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001584 msg->data = readl(iommu->reg + reg + 4);
1585 msg->address_lo = readl(iommu->reg + reg + 8);
1586 msg->address_hi = readl(iommu->reg + reg + 12);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001587 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001588}
1589
1590static int dmar_fault_do_one(struct intel_iommu *iommu, int type,
1591 u8 fault_reason, u16 source_id, unsigned long long addr)
1592{
1593 const char *reason;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001594 int fault_type;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001595
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001596 reason = dmar_get_fault_reason(fault_reason, &fault_type);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001597
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001598 if (fault_type == INTR_REMAP)
Alex Williamsona0fe14d2016-03-17 14:12:31 -06001599 pr_err("[INTR-REMAP] Request device [%02x:%02x.%d] fault index %llx [fault reason %02d] %s\n",
1600 source_id >> 8, PCI_SLOT(source_id & 0xFF),
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001601 PCI_FUNC(source_id & 0xFF), addr >> 48,
1602 fault_reason, reason);
1603 else
Alex Williamsona0fe14d2016-03-17 14:12:31 -06001604 pr_err("[%s] Request device [%02x:%02x.%d] fault addr %llx [fault reason %02d] %s\n",
1605 type ? "DMA Read" : "DMA Write",
1606 source_id >> 8, PCI_SLOT(source_id & 0xFF),
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001607 PCI_FUNC(source_id & 0xFF), addr, fault_reason, reason);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001608 return 0;
1609}
1610
1611#define PRIMARY_FAULT_REG_LEN (16)
Suresh Siddha1531a6a2009-03-16 17:04:57 -07001612irqreturn_t dmar_fault(int irq, void *dev_id)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001613{
1614 struct intel_iommu *iommu = dev_id;
1615 int reg, fault_index;
1616 u32 fault_status;
1617 unsigned long flag;
Alex Williamsonc43fce42016-03-17 14:12:25 -06001618 bool ratelimited;
1619 static DEFINE_RATELIMIT_STATE(rs,
1620 DEFAULT_RATELIMIT_INTERVAL,
1621 DEFAULT_RATELIMIT_BURST);
1622
1623 /* Disable printing, simply clear the fault when ratelimited */
1624 ratelimited = !__ratelimit(&rs);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001625
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001626 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001627 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
Alex Williamsonc43fce42016-03-17 14:12:25 -06001628 if (fault_status && !ratelimited)
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001629 pr_err("DRHD: handling fault status reg %x\n", fault_status);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001630
1631 /* TBD: ignore advanced fault log currently */
1632 if (!(fault_status & DMA_FSTS_PPF))
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001633 goto unlock_exit;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001634
1635 fault_index = dma_fsts_fault_record_index(fault_status);
1636 reg = cap_fault_reg_offset(iommu->cap);
1637 while (1) {
1638 u8 fault_reason;
1639 u16 source_id;
1640 u64 guest_addr;
1641 int type;
1642 u32 data;
1643
1644 /* highest 32 bits */
1645 data = readl(iommu->reg + reg +
1646 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1647 if (!(data & DMA_FRCD_F))
1648 break;
1649
Alex Williamsonc43fce42016-03-17 14:12:25 -06001650 if (!ratelimited) {
1651 fault_reason = dma_frcd_fault_reason(data);
1652 type = dma_frcd_type(data);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001653
Alex Williamsonc43fce42016-03-17 14:12:25 -06001654 data = readl(iommu->reg + reg +
1655 fault_index * PRIMARY_FAULT_REG_LEN + 8);
1656 source_id = dma_frcd_source_id(data);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001657
Alex Williamsonc43fce42016-03-17 14:12:25 -06001658 guest_addr = dmar_readq(iommu->reg + reg +
1659 fault_index * PRIMARY_FAULT_REG_LEN);
1660 guest_addr = dma_frcd_page_addr(guest_addr);
1661 }
1662
Suresh Siddha0ac24912009-03-16 17:04:54 -07001663 /* clear the fault */
1664 writel(DMA_FRCD_F, iommu->reg + reg +
1665 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1666
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001667 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001668
Alex Williamsonc43fce42016-03-17 14:12:25 -06001669 if (!ratelimited)
1670 dmar_fault_do_one(iommu, type, fault_reason,
1671 source_id, guest_addr);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001672
1673 fault_index++;
Troy Heber8211a7b2009-08-19 15:26:11 -06001674 if (fault_index >= cap_num_fault_regs(iommu->cap))
Suresh Siddha0ac24912009-03-16 17:04:54 -07001675 fault_index = 0;
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001676 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001677 }
Suresh Siddha0ac24912009-03-16 17:04:54 -07001678
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001679 writel(DMA_FSTS_PFO | DMA_FSTS_PPF, iommu->reg + DMAR_FSTS_REG);
1680
1681unlock_exit:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001682 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001683 return IRQ_HANDLED;
1684}
1685
1686int dmar_set_interrupt(struct intel_iommu *iommu)
1687{
1688 int irq, ret;
1689
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001690 /*
1691 * Check if the fault interrupt is already initialized.
1692 */
1693 if (iommu->irq)
1694 return 0;
1695
Jiang Liu34742db2015-04-13 14:11:41 +08001696 irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu);
1697 if (irq > 0) {
1698 iommu->irq = irq;
1699 } else {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001700 pr_err("No free IRQ vectors\n");
Suresh Siddha0ac24912009-03-16 17:04:54 -07001701 return -EINVAL;
1702 }
1703
Thomas Gleixner477694e2011-07-19 16:25:42 +02001704 ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001705 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001706 pr_err("Can't request irq\n");
Suresh Siddha0ac24912009-03-16 17:04:54 -07001707 return ret;
1708}
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001709
1710int __init enable_drhd_fault_handling(void)
1711{
1712 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08001713 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001714
1715 /*
1716 * Enable fault control interrupt.
1717 */
Jiang Liu7c919772014-01-06 14:18:18 +08001718 for_each_iommu(iommu, drhd) {
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001719 u32 fault_status;
Jiang Liu7c919772014-01-06 14:18:18 +08001720 int ret = dmar_set_interrupt(iommu);
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001721
1722 if (ret) {
Donald Dutilee9071b02012-06-08 17:13:11 -04001723 pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n",
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001724 (unsigned long long)drhd->reg_base_addr, ret);
1725 return -1;
1726 }
Suresh Siddha7f99d942010-11-30 22:22:29 -08001727
1728 /*
1729 * Clear any previous faults.
1730 */
1731 dmar_fault(iommu->irq, iommu);
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001732 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
1733 writel(fault_status, iommu->reg + DMAR_FSTS_REG);
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001734 }
1735
1736 return 0;
1737}
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001738
1739/*
1740 * Re-enable Queued Invalidation interface.
1741 */
1742int dmar_reenable_qi(struct intel_iommu *iommu)
1743{
1744 if (!ecap_qis(iommu->ecap))
1745 return -ENOENT;
1746
1747 if (!iommu->qi)
1748 return -ENOENT;
1749
1750 /*
1751 * First disable queued invalidation.
1752 */
1753 dmar_disable_qi(iommu);
1754 /*
1755 * Then enable queued invalidation again. Since there is no pending
1756 * invalidation requests now, it's safe to re-enable queued
1757 * invalidation.
1758 */
1759 __dmar_enable_qi(iommu);
1760
1761 return 0;
1762}
Youquan Song074835f2009-09-09 12:05:39 -04001763
1764/*
1765 * Check interrupt remapping support in DMAR table description.
1766 */
Luck, Tony0b8973a2009-12-16 22:59:29 +00001767int __init dmar_ir_support(void)
Youquan Song074835f2009-09-09 12:05:39 -04001768{
1769 struct acpi_table_dmar *dmar;
1770 dmar = (struct acpi_table_dmar *)dmar_tbl;
Arnaud Patard4f506e02010-03-25 18:02:58 +00001771 if (!dmar)
1772 return 0;
Youquan Song074835f2009-09-09 12:05:39 -04001773 return dmar->flags & 0x1;
1774}
Jiang Liu694835d2014-01-06 14:18:16 +08001775
Jiang Liu6b197242014-11-09 22:47:58 +08001776/* Check whether DMAR units are in use */
1777static inline bool dmar_in_use(void)
1778{
1779 return irq_remapping_enabled || intel_iommu_enabled;
1780}
1781
Jiang Liua868e6b2014-01-06 14:18:20 +08001782static int __init dmar_free_unused_resources(void)
1783{
1784 struct dmar_drhd_unit *dmaru, *dmaru_n;
1785
Jiang Liu6b197242014-11-09 22:47:58 +08001786 if (dmar_in_use())
Jiang Liua868e6b2014-01-06 14:18:20 +08001787 return 0;
1788
Jiang Liu2e455282014-02-19 14:07:36 +08001789 if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units))
1790 bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb);
Jiang Liu59ce0512014-02-19 14:07:35 +08001791
Jiang Liu3a5670e2014-02-19 14:07:33 +08001792 down_write(&dmar_global_lock);
Jiang Liua868e6b2014-01-06 14:18:20 +08001793 list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) {
1794 list_del(&dmaru->list);
1795 dmar_free_drhd(dmaru);
1796 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08001797 up_write(&dmar_global_lock);
Jiang Liua868e6b2014-01-06 14:18:20 +08001798
1799 return 0;
1800}
1801
1802late_initcall(dmar_free_unused_resources);
Konrad Rzeszutek Wilk4db77ff2010-08-26 13:58:04 -04001803IOMMU_INIT_POST(detect_intel_iommu);
Jiang Liu6b197242014-11-09 22:47:58 +08001804
1805/*
1806 * DMAR Hotplug Support
1807 * For more details, please refer to Intel(R) Virtualization Technology
1808 * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8
1809 * "Remapping Hardware Unit Hot Plug".
1810 */
Andy Shevchenko94116f82017-06-05 19:40:46 +03001811static guid_t dmar_hp_guid =
1812 GUID_INIT(0xD8C1A3A6, 0xBE9B, 0x4C9B,
1813 0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF);
Jiang Liu6b197242014-11-09 22:47:58 +08001814
1815/*
1816 * Currently there's only one revision and BIOS will not check the revision id,
1817 * so use 0 for safety.
1818 */
1819#define DMAR_DSM_REV_ID 0
1820#define DMAR_DSM_FUNC_DRHD 1
1821#define DMAR_DSM_FUNC_ATSR 2
1822#define DMAR_DSM_FUNC_RHSA 3
1823
1824static inline bool dmar_detect_dsm(acpi_handle handle, int func)
1825{
Andy Shevchenko94116f82017-06-05 19:40:46 +03001826 return acpi_check_dsm(handle, &dmar_hp_guid, DMAR_DSM_REV_ID, 1 << func);
Jiang Liu6b197242014-11-09 22:47:58 +08001827}
1828
1829static int dmar_walk_dsm_resource(acpi_handle handle, int func,
1830 dmar_res_handler_t handler, void *arg)
1831{
1832 int ret = -ENODEV;
1833 union acpi_object *obj;
1834 struct acpi_dmar_header *start;
1835 struct dmar_res_callback callback;
1836 static int res_type[] = {
1837 [DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT,
1838 [DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS,
1839 [DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY,
1840 };
1841
1842 if (!dmar_detect_dsm(handle, func))
1843 return 0;
1844
Andy Shevchenko94116f82017-06-05 19:40:46 +03001845 obj = acpi_evaluate_dsm_typed(handle, &dmar_hp_guid, DMAR_DSM_REV_ID,
Jiang Liu6b197242014-11-09 22:47:58 +08001846 func, NULL, ACPI_TYPE_BUFFER);
1847 if (!obj)
1848 return -ENODEV;
1849
1850 memset(&callback, 0, sizeof(callback));
1851 callback.cb[res_type[func]] = handler;
1852 callback.arg[res_type[func]] = arg;
1853 start = (struct acpi_dmar_header *)obj->buffer.pointer;
1854 ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback);
1855
1856 ACPI_FREE(obj);
1857
1858 return ret;
1859}
1860
1861static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg)
1862{
1863 int ret;
1864 struct dmar_drhd_unit *dmaru;
1865
1866 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1867 if (!dmaru)
1868 return -ENODEV;
1869
1870 ret = dmar_ir_hotplug(dmaru, true);
1871 if (ret == 0)
1872 ret = dmar_iommu_hotplug(dmaru, true);
1873
1874 return ret;
1875}
1876
1877static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg)
1878{
1879 int i, ret;
1880 struct device *dev;
1881 struct dmar_drhd_unit *dmaru;
1882
1883 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1884 if (!dmaru)
1885 return 0;
1886
1887 /*
1888 * All PCI devices managed by this unit should have been destroyed.
1889 */
Linus Torvalds194dc872016-07-27 20:03:31 -07001890 if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt) {
Jiang Liu6b197242014-11-09 22:47:58 +08001891 for_each_active_dev_scope(dmaru->devices,
1892 dmaru->devices_cnt, i, dev)
1893 return -EBUSY;
Linus Torvalds194dc872016-07-27 20:03:31 -07001894 }
Jiang Liu6b197242014-11-09 22:47:58 +08001895
1896 ret = dmar_ir_hotplug(dmaru, false);
1897 if (ret == 0)
1898 ret = dmar_iommu_hotplug(dmaru, false);
1899
1900 return ret;
1901}
1902
1903static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg)
1904{
1905 struct dmar_drhd_unit *dmaru;
1906
1907 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1908 if (dmaru) {
1909 list_del_rcu(&dmaru->list);
1910 synchronize_rcu();
1911 dmar_free_drhd(dmaru);
1912 }
1913
1914 return 0;
1915}
1916
1917static int dmar_hotplug_insert(acpi_handle handle)
1918{
1919 int ret;
1920 int drhd_count = 0;
1921
1922 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1923 &dmar_validate_one_drhd, (void *)1);
1924 if (ret)
1925 goto out;
1926
1927 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1928 &dmar_parse_one_drhd, (void *)&drhd_count);
1929 if (ret == 0 && drhd_count == 0) {
1930 pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n");
1931 goto out;
1932 } else if (ret) {
1933 goto release_drhd;
1934 }
1935
1936 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA,
1937 &dmar_parse_one_rhsa, NULL);
1938 if (ret)
1939 goto release_drhd;
1940
1941 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1942 &dmar_parse_one_atsr, NULL);
1943 if (ret)
1944 goto release_atsr;
1945
1946 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1947 &dmar_hp_add_drhd, NULL);
1948 if (!ret)
1949 return 0;
1950
1951 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1952 &dmar_hp_remove_drhd, NULL);
1953release_atsr:
1954 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1955 &dmar_release_one_atsr, NULL);
1956release_drhd:
1957 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1958 &dmar_hp_release_drhd, NULL);
1959out:
1960 return ret;
1961}
1962
1963static int dmar_hotplug_remove(acpi_handle handle)
1964{
1965 int ret;
1966
1967 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1968 &dmar_check_one_atsr, NULL);
1969 if (ret)
1970 return ret;
1971
1972 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1973 &dmar_hp_remove_drhd, NULL);
1974 if (ret == 0) {
1975 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1976 &dmar_release_one_atsr, NULL));
1977 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1978 &dmar_hp_release_drhd, NULL));
1979 } else {
1980 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1981 &dmar_hp_add_drhd, NULL);
1982 }
1983
1984 return ret;
1985}
1986
Jiang Liud35165a2014-11-09 22:47:59 +08001987static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl,
1988 void *context, void **retval)
1989{
1990 acpi_handle *phdl = retval;
1991
1992 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
1993 *phdl = handle;
1994 return AE_CTRL_TERMINATE;
1995 }
1996
1997 return AE_OK;
1998}
1999
Jiang Liu6b197242014-11-09 22:47:58 +08002000static int dmar_device_hotplug(acpi_handle handle, bool insert)
2001{
2002 int ret;
Jiang Liud35165a2014-11-09 22:47:59 +08002003 acpi_handle tmp = NULL;
2004 acpi_status status;
Jiang Liu6b197242014-11-09 22:47:58 +08002005
2006 if (!dmar_in_use())
2007 return 0;
2008
Jiang Liud35165a2014-11-09 22:47:59 +08002009 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2010 tmp = handle;
2011 } else {
2012 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2013 ACPI_UINT32_MAX,
2014 dmar_get_dsm_handle,
2015 NULL, NULL, &tmp);
2016 if (ACPI_FAILURE(status)) {
2017 pr_warn("Failed to locate _DSM method.\n");
2018 return -ENXIO;
2019 }
2020 }
2021 if (tmp == NULL)
Jiang Liu6b197242014-11-09 22:47:58 +08002022 return 0;
2023
2024 down_write(&dmar_global_lock);
2025 if (insert)
Jiang Liud35165a2014-11-09 22:47:59 +08002026 ret = dmar_hotplug_insert(tmp);
Jiang Liu6b197242014-11-09 22:47:58 +08002027 else
Jiang Liud35165a2014-11-09 22:47:59 +08002028 ret = dmar_hotplug_remove(tmp);
Jiang Liu6b197242014-11-09 22:47:58 +08002029 up_write(&dmar_global_lock);
2030
2031 return ret;
2032}
2033
2034int dmar_device_add(acpi_handle handle)
2035{
2036 return dmar_device_hotplug(handle, true);
2037}
2038
2039int dmar_device_remove(acpi_handle handle)
2040{
2041 return dmar_device_hotplug(handle, false);
2042}