blob: 2eff7b6c6c98f673864e101531656b9ddc7574fd [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;
Yinghai Lu8e1568f2009-02-11 01:06:59 -080071static acpi_size dmar_tbl_size;
Jiang Liu2e455282014-02-19 14:07:36 +080072static int dmar_dev_scope_status = 1;
Jiang Liu78d8e702014-11-09 22:47:57 +080073static unsigned long dmar_seq_ids[BITS_TO_LONGS(DMAR_UNITS_SUPPORTED)];
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070074
Jiang Liu694835d2014-01-06 14:18:16 +080075static int alloc_iommu(struct dmar_drhd_unit *drhd);
Jiang Liua868e6b2014-01-06 14:18:20 +080076static void free_iommu(struct intel_iommu *iommu);
Jiang Liu694835d2014-01-06 14:18:16 +080077
Jiang Liu6b197242014-11-09 22:47:58 +080078static void dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070079{
80 /*
81 * add INCLUDE_ALL at the tail, so scan the list will find it at
82 * the very end.
83 */
84 if (drhd->include_all)
Jiang Liu0e2426122014-02-19 14:07:34 +080085 list_add_tail_rcu(&drhd->list, &dmar_drhd_units);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070086 else
Jiang Liu0e2426122014-02-19 14:07:34 +080087 list_add_rcu(&drhd->list, &dmar_drhd_units);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070088}
89
Jiang Liubb3a6b72014-02-19 14:07:24 +080090void *dmar_alloc_dev_scope(void *start, void *end, int *cnt)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070091{
92 struct acpi_dmar_device_scope *scope;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070093
94 *cnt = 0;
95 while (start < end) {
96 scope = start;
Bob Moore83118b02014-07-30 12:21:00 +080097 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE ||
David Woodhouse07cb52f2014-03-07 14:39:27 +000098 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -070099 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)
100 (*cnt)++;
Linn Crosettoae3e7f32013-04-23 12:26:45 -0600101 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC &&
102 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400103 pr_warn("Unsupported device scope\n");
Yinghai Lu5715f0f2010-04-08 19:58:22 +0100104 }
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700105 start += scope->length;
106 }
107 if (*cnt == 0)
Jiang Liubb3a6b72014-02-19 14:07:24 +0800108 return NULL;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700109
David Woodhouse832bd852014-03-07 15:08:36 +0000110 return kcalloc(*cnt, sizeof(struct dmar_dev_scope), GFP_KERNEL);
Jiang Liubb3a6b72014-02-19 14:07:24 +0800111}
112
David Woodhouse832bd852014-03-07 15:08:36 +0000113void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt)
Jiang Liuada4d4b2014-01-06 14:18:09 +0800114{
Jiang Liub683b232014-02-19 14:07:32 +0800115 int i;
David Woodhouse832bd852014-03-07 15:08:36 +0000116 struct device *tmp_dev;
Jiang Liub683b232014-02-19 14:07:32 +0800117
Jiang Liuada4d4b2014-01-06 14:18:09 +0800118 if (*devices && *cnt) {
Jiang Liub683b232014-02-19 14:07:32 +0800119 for_each_active_dev_scope(*devices, *cnt, i, tmp_dev)
David Woodhouse832bd852014-03-07 15:08:36 +0000120 put_device(tmp_dev);
Jiang Liuada4d4b2014-01-06 14:18:09 +0800121 kfree(*devices);
Jiang Liuada4d4b2014-01-06 14:18:09 +0800122 }
Jiang Liu0e2426122014-02-19 14:07:34 +0800123
124 *devices = NULL;
125 *cnt = 0;
Jiang Liuada4d4b2014-01-06 14:18:09 +0800126}
127
Jiang Liu59ce0512014-02-19 14:07:35 +0800128/* Optimize out kzalloc()/kfree() for normal cases */
129static char dmar_pci_notify_info_buf[64];
130
131static struct dmar_pci_notify_info *
132dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event)
133{
134 int level = 0;
135 size_t size;
136 struct pci_dev *tmp;
137 struct dmar_pci_notify_info *info;
138
139 BUG_ON(dev->is_virtfn);
140
141 /* Only generate path[] for device addition event */
142 if (event == BUS_NOTIFY_ADD_DEVICE)
143 for (tmp = dev; tmp; tmp = tmp->bus->self)
144 level++;
145
146 size = sizeof(*info) + level * sizeof(struct acpi_dmar_pci_path);
147 if (size <= sizeof(dmar_pci_notify_info_buf)) {
148 info = (struct dmar_pci_notify_info *)dmar_pci_notify_info_buf;
149 } else {
150 info = kzalloc(size, GFP_KERNEL);
151 if (!info) {
152 pr_warn("Out of memory when allocating notify_info "
153 "for %s.\n", pci_name(dev));
Jiang Liu2e455282014-02-19 14:07:36 +0800154 if (dmar_dev_scope_status == 0)
155 dmar_dev_scope_status = -ENOMEM;
Jiang Liu59ce0512014-02-19 14:07:35 +0800156 return NULL;
157 }
158 }
159
160 info->event = event;
161 info->dev = dev;
162 info->seg = pci_domain_nr(dev->bus);
163 info->level = level;
164 if (event == BUS_NOTIFY_ADD_DEVICE) {
Jiang Liu5ae05662014-04-15 10:35:35 +0800165 for (tmp = dev; tmp; tmp = tmp->bus->self) {
166 level--;
Joerg Roedel57384592014-10-02 11:50:25 +0200167 info->path[level].bus = tmp->bus->number;
Jiang Liu59ce0512014-02-19 14:07:35 +0800168 info->path[level].device = PCI_SLOT(tmp->devfn);
169 info->path[level].function = PCI_FUNC(tmp->devfn);
170 if (pci_is_root_bus(tmp->bus))
171 info->bus = tmp->bus->number;
172 }
173 }
174
175 return info;
176}
177
178static inline void dmar_free_pci_notify_info(struct dmar_pci_notify_info *info)
179{
180 if ((void *)info != dmar_pci_notify_info_buf)
181 kfree(info);
182}
183
184static bool dmar_match_pci_path(struct dmar_pci_notify_info *info, int bus,
185 struct acpi_dmar_pci_path *path, int count)
186{
187 int i;
188
189 if (info->bus != bus)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200190 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800191 if (info->level != count)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200192 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800193
194 for (i = 0; i < count; i++) {
195 if (path[i].device != info->path[i].device ||
196 path[i].function != info->path[i].function)
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200197 goto fallback;
Jiang Liu59ce0512014-02-19 14:07:35 +0800198 }
199
200 return true;
Joerg Roedel80f7b3d2014-09-22 16:30:22 +0200201
202fallback:
203
204 if (count != 1)
205 return false;
206
207 i = info->level - 1;
208 if (bus == info->path[i].bus &&
209 path[0].device == info->path[i].device &&
210 path[0].function == info->path[i].function) {
211 pr_info(FW_BUG "RMRR entry for device %02x:%02x.%x is broken - applying workaround\n",
212 bus, path[0].device, path[0].function);
213 return true;
214 }
215
216 return false;
Jiang Liu59ce0512014-02-19 14:07:35 +0800217}
218
219/* Return: > 0 if match found, 0 if no match found, < 0 if error happens */
220int dmar_insert_dev_scope(struct dmar_pci_notify_info *info,
221 void *start, void*end, u16 segment,
David Woodhouse832bd852014-03-07 15:08:36 +0000222 struct dmar_dev_scope *devices,
223 int devices_cnt)
Jiang Liu59ce0512014-02-19 14:07:35 +0800224{
225 int i, level;
David Woodhouse832bd852014-03-07 15:08:36 +0000226 struct device *tmp, *dev = &info->dev->dev;
Jiang Liu59ce0512014-02-19 14:07:35 +0800227 struct acpi_dmar_device_scope *scope;
228 struct acpi_dmar_pci_path *path;
229
230 if (segment != info->seg)
231 return 0;
232
233 for (; start < end; start += scope->length) {
234 scope = start;
235 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
236 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_BRIDGE)
237 continue;
238
239 path = (struct acpi_dmar_pci_path *)(scope + 1);
240 level = (scope->length - sizeof(*scope)) / sizeof(*path);
241 if (!dmar_match_pci_path(info, scope->bus, path, level))
242 continue;
243
Roland Dreierffb2d1e2016-06-02 17:46:10 -0700244 /*
245 * We expect devices with endpoint scope to have normal PCI
246 * headers, and devices with bridge scope to have bridge PCI
247 * headers. However PCI NTB devices may be listed in the
248 * DMAR table with bridge scope, even though they have a
249 * normal PCI header. NTB devices are identified by class
250 * "BRIDGE_OTHER" (0680h) - we don't declare a socpe mismatch
251 * for this special case.
252 */
253 if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
254 info->dev->hdr_type != PCI_HEADER_TYPE_NORMAL) ||
255 (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE &&
256 (info->dev->hdr_type == PCI_HEADER_TYPE_NORMAL &&
257 info->dev->class >> 8 != PCI_CLASS_BRIDGE_OTHER))) {
Jiang Liu59ce0512014-02-19 14:07:35 +0800258 pr_warn("Device scope type does not match for %s\n",
David Woodhouse832bd852014-03-07 15:08:36 +0000259 pci_name(info->dev));
Jiang Liu59ce0512014-02-19 14:07:35 +0800260 return -EINVAL;
261 }
262
263 for_each_dev_scope(devices, devices_cnt, i, tmp)
264 if (tmp == NULL) {
David Woodhouse832bd852014-03-07 15:08:36 +0000265 devices[i].bus = info->dev->bus->number;
266 devices[i].devfn = info->dev->devfn;
267 rcu_assign_pointer(devices[i].dev,
268 get_device(dev));
Jiang Liu59ce0512014-02-19 14:07:35 +0800269 return 1;
270 }
271 BUG_ON(i >= devices_cnt);
272 }
273
274 return 0;
275}
276
277int dmar_remove_dev_scope(struct dmar_pci_notify_info *info, u16 segment,
David Woodhouse832bd852014-03-07 15:08:36 +0000278 struct dmar_dev_scope *devices, int count)
Jiang Liu59ce0512014-02-19 14:07:35 +0800279{
280 int index;
David Woodhouse832bd852014-03-07 15:08:36 +0000281 struct device *tmp;
Jiang Liu59ce0512014-02-19 14:07:35 +0800282
283 if (info->seg != segment)
284 return 0;
285
286 for_each_active_dev_scope(devices, count, index, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +0000287 if (tmp == &info->dev->dev) {
Andreea-Cristina Bernateecbad72014-08-18 15:20:56 +0300288 RCU_INIT_POINTER(devices[index].dev, NULL);
Jiang Liu59ce0512014-02-19 14:07:35 +0800289 synchronize_rcu();
David Woodhouse832bd852014-03-07 15:08:36 +0000290 put_device(tmp);
Jiang Liu59ce0512014-02-19 14:07:35 +0800291 return 1;
292 }
293
294 return 0;
295}
296
297static int dmar_pci_bus_add_dev(struct dmar_pci_notify_info *info)
298{
299 int ret = 0;
300 struct dmar_drhd_unit *dmaru;
301 struct acpi_dmar_hardware_unit *drhd;
302
303 for_each_drhd_unit(dmaru) {
304 if (dmaru->include_all)
305 continue;
306
307 drhd = container_of(dmaru->hdr,
308 struct acpi_dmar_hardware_unit, header);
309 ret = dmar_insert_dev_scope(info, (void *)(drhd + 1),
310 ((void *)drhd) + drhd->header.length,
311 dmaru->segment,
312 dmaru->devices, dmaru->devices_cnt);
313 if (ret != 0)
314 break;
315 }
316 if (ret >= 0)
317 ret = dmar_iommu_notify_scope_dev(info);
Jiang Liu2e455282014-02-19 14:07:36 +0800318 if (ret < 0 && dmar_dev_scope_status == 0)
319 dmar_dev_scope_status = ret;
Jiang Liu59ce0512014-02-19 14:07:35 +0800320
321 return ret;
322}
323
324static void dmar_pci_bus_del_dev(struct dmar_pci_notify_info *info)
325{
326 struct dmar_drhd_unit *dmaru;
327
328 for_each_drhd_unit(dmaru)
329 if (dmar_remove_dev_scope(info, dmaru->segment,
330 dmaru->devices, dmaru->devices_cnt))
331 break;
332 dmar_iommu_notify_scope_dev(info);
333}
334
335static int dmar_pci_bus_notifier(struct notifier_block *nb,
336 unsigned long action, void *data)
337{
338 struct pci_dev *pdev = to_pci_dev(data);
339 struct dmar_pci_notify_info *info;
340
341 /* Only care about add/remove events for physical functions */
342 if (pdev->is_virtfn)
343 return NOTIFY_DONE;
Joerg Roedele6a8c9b2016-02-29 23:49:47 +0100344 if (action != BUS_NOTIFY_ADD_DEVICE &&
345 action != BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu59ce0512014-02-19 14:07:35 +0800346 return NOTIFY_DONE;
347
348 info = dmar_alloc_pci_notify_info(pdev, action);
349 if (!info)
350 return NOTIFY_DONE;
351
352 down_write(&dmar_global_lock);
353 if (action == BUS_NOTIFY_ADD_DEVICE)
354 dmar_pci_bus_add_dev(info);
Joerg Roedele6a8c9b2016-02-29 23:49:47 +0100355 else if (action == BUS_NOTIFY_REMOVED_DEVICE)
Jiang Liu59ce0512014-02-19 14:07:35 +0800356 dmar_pci_bus_del_dev(info);
357 up_write(&dmar_global_lock);
358
359 dmar_free_pci_notify_info(info);
360
361 return NOTIFY_OK;
362}
363
364static struct notifier_block dmar_pci_bus_nb = {
365 .notifier_call = dmar_pci_bus_notifier,
366 .priority = INT_MIN,
367};
368
Jiang Liu6b197242014-11-09 22:47:58 +0800369static struct dmar_drhd_unit *
370dmar_find_dmaru(struct acpi_dmar_hardware_unit *drhd)
371{
372 struct dmar_drhd_unit *dmaru;
373
374 list_for_each_entry_rcu(dmaru, &dmar_drhd_units, list)
375 if (dmaru->segment == drhd->segment &&
376 dmaru->reg_base_addr == drhd->address)
377 return dmaru;
378
379 return NULL;
380}
381
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700382/**
383 * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition
384 * structure which uniquely represent one DMA remapping hardware unit
385 * present in the platform
386 */
Jiang Liu6b197242014-11-09 22:47:58 +0800387static int dmar_parse_one_drhd(struct acpi_dmar_header *header, void *arg)
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700388{
389 struct acpi_dmar_hardware_unit *drhd;
390 struct dmar_drhd_unit *dmaru;
391 int ret = 0;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700392
David Woodhousee523b382009-04-10 22:27:48 -0700393 drhd = (struct acpi_dmar_hardware_unit *)header;
Jiang Liu6b197242014-11-09 22:47:58 +0800394 dmaru = dmar_find_dmaru(drhd);
395 if (dmaru)
396 goto out;
397
398 dmaru = kzalloc(sizeof(*dmaru) + header->length, GFP_KERNEL);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700399 if (!dmaru)
400 return -ENOMEM;
401
Jiang Liu6b197242014-11-09 22:47:58 +0800402 /*
403 * If header is allocated from slab by ACPI _DSM method, we need to
404 * copy the content because the memory buffer will be freed on return.
405 */
406 dmaru->hdr = (void *)(dmaru + 1);
407 memcpy(dmaru->hdr, header, header->length);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700408 dmaru->reg_base_addr = drhd->address;
David Woodhouse276dbf992009-04-04 01:45:37 +0100409 dmaru->segment = drhd->segment;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700410 dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */
David Woodhouse07cb52f2014-03-07 14:39:27 +0000411 dmaru->devices = dmar_alloc_dev_scope((void *)(drhd + 1),
412 ((void *)drhd) + drhd->header.length,
413 &dmaru->devices_cnt);
414 if (dmaru->devices_cnt && dmaru->devices == NULL) {
415 kfree(dmaru);
416 return -ENOMEM;
Jiang Liu2e455282014-02-19 14:07:36 +0800417 }
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700418
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700419 ret = alloc_iommu(dmaru);
420 if (ret) {
David Woodhouse07cb52f2014-03-07 14:39:27 +0000421 dmar_free_dev_scope(&dmaru->devices,
422 &dmaru->devices_cnt);
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700423 kfree(dmaru);
424 return ret;
425 }
426 dmar_register_drhd_unit(dmaru);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800427
Jiang Liu6b197242014-11-09 22:47:58 +0800428out:
Jiang Liuc2a0b532014-11-09 22:47:56 +0800429 if (arg)
430 (*(int *)arg)++;
431
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700432 return 0;
433}
434
Jiang Liua868e6b2014-01-06 14:18:20 +0800435static void dmar_free_drhd(struct dmar_drhd_unit *dmaru)
436{
437 if (dmaru->devices && dmaru->devices_cnt)
438 dmar_free_dev_scope(&dmaru->devices, &dmaru->devices_cnt);
439 if (dmaru->iommu)
440 free_iommu(dmaru->iommu);
441 kfree(dmaru);
442}
443
Jiang Liuc2a0b532014-11-09 22:47:56 +0800444static int __init dmar_parse_one_andd(struct acpi_dmar_header *header,
445 void *arg)
David Woodhousee625b4a2014-03-07 14:34:38 +0000446{
447 struct acpi_dmar_andd *andd = (void *)header;
448
449 /* Check for NUL termination within the designated length */
Bob Moore83118b02014-07-30 12:21:00 +0800450 if (strnlen(andd->device_name, header->length - 8) == header->length - 8) {
David Woodhousee625b4a2014-03-07 14:34:38 +0000451 WARN_TAINT(1, TAINT_FIRMWARE_WORKAROUND,
452 "Your BIOS is broken; ANDD object name is not NUL-terminated\n"
453 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
454 dmi_get_system_info(DMI_BIOS_VENDOR),
455 dmi_get_system_info(DMI_BIOS_VERSION),
456 dmi_get_system_info(DMI_PRODUCT_VERSION));
457 return -EINVAL;
458 }
459 pr_info("ANDD device: %x name: %s\n", andd->device_number,
Bob Moore83118b02014-07-30 12:21:00 +0800460 andd->device_name);
David Woodhousee625b4a2014-03-07 14:34:38 +0000461
462 return 0;
463}
464
David Woodhouseaa697072009-10-07 12:18:00 +0100465#ifdef CONFIG_ACPI_NUMA
Jiang Liu6b197242014-11-09 22:47:58 +0800466static int dmar_parse_one_rhsa(struct acpi_dmar_header *header, void *arg)
Suresh Siddhaee34b322009-10-02 11:01:21 -0700467{
468 struct acpi_dmar_rhsa *rhsa;
469 struct dmar_drhd_unit *drhd;
470
471 rhsa = (struct acpi_dmar_rhsa *)header;
David Woodhouseaa697072009-10-07 12:18:00 +0100472 for_each_drhd_unit(drhd) {
Suresh Siddhaee34b322009-10-02 11:01:21 -0700473 if (drhd->reg_base_addr == rhsa->base_address) {
474 int node = acpi_map_pxm_to_node(rhsa->proximity_domain);
475
476 if (!node_online(node))
477 node = -1;
478 drhd->iommu->node = node;
David Woodhouseaa697072009-10-07 12:18:00 +0100479 return 0;
480 }
Suresh Siddhaee34b322009-10-02 11:01:21 -0700481 }
Ben Hutchingsfd0c8892010-04-03 19:38:43 +0100482 WARN_TAINT(
483 1, TAINT_FIRMWARE_WORKAROUND,
484 "Your BIOS is broken; RHSA refers to non-existent DMAR unit at %llx\n"
485 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
486 drhd->reg_base_addr,
487 dmi_get_system_info(DMI_BIOS_VENDOR),
488 dmi_get_system_info(DMI_BIOS_VERSION),
489 dmi_get_system_info(DMI_PRODUCT_VERSION));
Suresh Siddhaee34b322009-10-02 11:01:21 -0700490
David Woodhouseaa697072009-10-07 12:18:00 +0100491 return 0;
Suresh Siddhaee34b322009-10-02 11:01:21 -0700492}
Jiang Liuc2a0b532014-11-09 22:47:56 +0800493#else
494#define dmar_parse_one_rhsa dmar_res_noop
David Woodhouseaa697072009-10-07 12:18:00 +0100495#endif
Suresh Siddhaee34b322009-10-02 11:01:21 -0700496
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700497static void __init
498dmar_table_print_dmar_entry(struct acpi_dmar_header *header)
499{
500 struct acpi_dmar_hardware_unit *drhd;
501 struct acpi_dmar_reserved_memory *rmrr;
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800502 struct acpi_dmar_atsr *atsr;
Roland Dreier17b60972009-09-24 12:14:00 -0700503 struct acpi_dmar_rhsa *rhsa;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700504
505 switch (header->type) {
506 case ACPI_DMAR_TYPE_HARDWARE_UNIT:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800507 drhd = container_of(header, struct acpi_dmar_hardware_unit,
508 header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400509 pr_info("DRHD base: %#016Lx flags: %#x\n",
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800510 (unsigned long long)drhd->address, drhd->flags);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700511 break;
512 case ACPI_DMAR_TYPE_RESERVED_MEMORY:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800513 rmrr = container_of(header, struct acpi_dmar_reserved_memory,
514 header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400515 pr_info("RMRR base: %#016Lx end: %#016Lx\n",
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700516 (unsigned long long)rmrr->base_address,
517 (unsigned long long)rmrr->end_address);
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700518 break;
Bob Moore83118b02014-07-30 12:21:00 +0800519 case ACPI_DMAR_TYPE_ROOT_ATS:
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800520 atsr = container_of(header, struct acpi_dmar_atsr, header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400521 pr_info("ATSR flags: %#x\n", atsr->flags);
Yu Zhaoaa5d2b52009-05-18 13:51:34 +0800522 break;
Bob Moore83118b02014-07-30 12:21:00 +0800523 case ACPI_DMAR_TYPE_HARDWARE_AFFINITY:
Roland Dreier17b60972009-09-24 12:14:00 -0700524 rhsa = container_of(header, struct acpi_dmar_rhsa, header);
Donald Dutilee9071b02012-06-08 17:13:11 -0400525 pr_info("RHSA base: %#016Lx proximity domain: %#x\n",
Roland Dreier17b60972009-09-24 12:14:00 -0700526 (unsigned long long)rhsa->base_address,
527 rhsa->proximity_domain);
528 break;
Bob Moore83118b02014-07-30 12:21:00 +0800529 case ACPI_DMAR_TYPE_NAMESPACE:
David Woodhousee625b4a2014-03-07 14:34:38 +0000530 /* We don't print this here because we need to sanity-check
531 it first. So print it in dmar_parse_one_andd() instead. */
532 break;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700533 }
534}
535
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700536/**
537 * dmar_table_detect - checks to see if the platform supports DMAR devices
538 */
539static int __init dmar_table_detect(void)
540{
541 acpi_status status = AE_OK;
542
543 /* if we could find DMAR table, then there are DMAR devices */
Yinghai Lu8e1568f2009-02-11 01:06:59 -0800544 status = acpi_get_table_with_size(ACPI_SIG_DMAR, 0,
545 (struct acpi_table_header **)&dmar_tbl,
546 &dmar_tbl_size);
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700547
548 if (ACPI_SUCCESS(status) && !dmar_tbl) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400549 pr_warn("Unable to map DMAR\n");
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700550 status = AE_NOT_FOUND;
551 }
552
553 return (ACPI_SUCCESS(status) ? 1 : 0);
554}
Suresh Siddhaaaa9d1d2008-07-10 11:16:38 -0700555
Jiang Liuc2a0b532014-11-09 22:47:56 +0800556static int dmar_walk_remapping_entries(struct acpi_dmar_header *start,
557 size_t len, struct dmar_res_callback *cb)
558{
559 int ret = 0;
560 struct acpi_dmar_header *iter, *next;
561 struct acpi_dmar_header *end = ((void *)start) + len;
562
563 for (iter = start; iter < end && ret == 0; iter = next) {
564 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");
Jiang Liuc2a0b532014-11-09 22:47:56 +0800572 ret = -EINVAL;
573 break;
574 }
575
576 if (cb->print_entry)
577 dmar_table_print_dmar_entry(iter);
578
579 if (iter->type >= ACPI_DMAR_TYPE_RESERVED) {
580 /* continue for forward compatibility */
581 pr_debug("Unknown DMAR structure type %d\n",
582 iter->type);
583 } else if (cb->cb[iter->type]) {
584 ret = cb->cb[iter->type](iter, cb->arg[iter->type]);
585 } else if (!cb->ignore_unhandled) {
586 pr_warn("No handler for DMAR structure type %d\n",
587 iter->type);
588 ret = -EINVAL;
589 }
590 }
591
592 return ret;
593}
594
595static inline int dmar_walk_dmar_table(struct acpi_table_dmar *dmar,
596 struct dmar_res_callback *cb)
597{
598 return dmar_walk_remapping_entries((void *)(dmar + 1),
599 dmar->header.length - sizeof(*dmar), cb);
600}
601
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700602/**
603 * parse_dmar_table - parses the DMA reporting table
604 */
605static int __init
606parse_dmar_table(void)
607{
608 struct acpi_table_dmar *dmar;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700609 int ret = 0;
Li, Zhen-Hua7cef3342013-05-20 15:57:32 +0800610 int drhd_count = 0;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800611 struct dmar_res_callback cb = {
612 .print_entry = true,
613 .ignore_unhandled = true,
614 .arg[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &drhd_count,
615 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_parse_one_drhd,
616 .cb[ACPI_DMAR_TYPE_RESERVED_MEMORY] = &dmar_parse_one_rmrr,
617 .cb[ACPI_DMAR_TYPE_ROOT_ATS] = &dmar_parse_one_atsr,
618 .cb[ACPI_DMAR_TYPE_HARDWARE_AFFINITY] = &dmar_parse_one_rhsa,
619 .cb[ACPI_DMAR_TYPE_NAMESPACE] = &dmar_parse_one_andd,
620 };
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700621
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700622 /*
623 * Do it again, earlier dmar_tbl mapping could be mapped with
624 * fixed map.
625 */
626 dmar_table_detect();
627
Joseph Cihulaa59b50e2009-06-30 19:31:10 -0700628 /*
629 * ACPI tables may not be DMA protected by tboot, so use DMAR copy
630 * SINIT saved in SinitMleData in TXT heap (which is DMA protected)
631 */
632 dmar_tbl = tboot_get_dmar_table(dmar_tbl);
633
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700634 dmar = (struct acpi_table_dmar *)dmar_tbl;
635 if (!dmar)
636 return -ENODEV;
637
Fenghua Yu5b6985c2008-10-16 18:02:32 -0700638 if (dmar->width < PAGE_SHIFT - 1) {
Donald Dutilee9071b02012-06-08 17:13:11 -0400639 pr_warn("Invalid DMAR haw\n");
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700640 return -EINVAL;
641 }
642
Donald Dutilee9071b02012-06-08 17:13:11 -0400643 pr_info("Host address width %d\n", dmar->width + 1);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800644 ret = dmar_walk_dmar_table(dmar, &cb);
645 if (ret == 0 && drhd_count == 0)
Li, Zhen-Hua7cef3342013-05-20 15:57:32 +0800646 pr_warn(FW_BUG "No DRHD structure found in DMAR table\n");
Jiang Liuc2a0b532014-11-09 22:47:56 +0800647
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700648 return ret;
649}
650
David Woodhouse832bd852014-03-07 15:08:36 +0000651static int dmar_pci_device_match(struct dmar_dev_scope devices[],
652 int cnt, struct pci_dev *dev)
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700653{
654 int index;
David Woodhouse832bd852014-03-07 15:08:36 +0000655 struct device *tmp;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700656
657 while (dev) {
Jiang Liub683b232014-02-19 14:07:32 +0800658 for_each_active_dev_scope(devices, cnt, index, tmp)
David Woodhouse832bd852014-03-07 15:08:36 +0000659 if (dev_is_pci(tmp) && dev == to_pci_dev(tmp))
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700660 return 1;
661
662 /* Check our parent */
663 dev = dev->bus->self;
664 }
665
666 return 0;
667}
668
669struct dmar_drhd_unit *
670dmar_find_matched_drhd_unit(struct pci_dev *dev)
671{
Jiang Liu0e2426122014-02-19 14:07:34 +0800672 struct dmar_drhd_unit *dmaru;
Yu Zhao2e824f72008-12-22 16:54:58 +0800673 struct acpi_dmar_hardware_unit *drhd;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700674
Yinghaidda56542010-04-09 01:07:55 +0100675 dev = pci_physfn(dev);
676
Jiang Liu0e2426122014-02-19 14:07:34 +0800677 rcu_read_lock();
Yijing Wang8b161f02013-10-31 17:25:16 +0800678 for_each_drhd_unit(dmaru) {
Yu Zhao2e824f72008-12-22 16:54:58 +0800679 drhd = container_of(dmaru->hdr,
680 struct acpi_dmar_hardware_unit,
681 header);
682
683 if (dmaru->include_all &&
684 drhd->segment == pci_domain_nr(dev->bus))
Jiang Liu0e2426122014-02-19 14:07:34 +0800685 goto out;
Yu Zhao2e824f72008-12-22 16:54:58 +0800686
687 if (dmar_pci_device_match(dmaru->devices,
688 dmaru->devices_cnt, dev))
Jiang Liu0e2426122014-02-19 14:07:34 +0800689 goto out;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700690 }
Jiang Liu0e2426122014-02-19 14:07:34 +0800691 dmaru = NULL;
692out:
693 rcu_read_unlock();
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700694
Jiang Liu0e2426122014-02-19 14:07:34 +0800695 return dmaru;
Suresh Siddhae61d98d2008-07-10 11:16:35 -0700696}
697
David Woodhouseed403562014-03-07 23:15:42 +0000698static void __init dmar_acpi_insert_dev_scope(u8 device_number,
699 struct acpi_device *adev)
700{
701 struct dmar_drhd_unit *dmaru;
702 struct acpi_dmar_hardware_unit *drhd;
703 struct acpi_dmar_device_scope *scope;
704 struct device *tmp;
705 int i;
706 struct acpi_dmar_pci_path *path;
707
708 for_each_drhd_unit(dmaru) {
709 drhd = container_of(dmaru->hdr,
710 struct acpi_dmar_hardware_unit,
711 header);
712
713 for (scope = (void *)(drhd + 1);
714 (unsigned long)scope < ((unsigned long)drhd) + drhd->header.length;
715 scope = ((void *)scope) + scope->length) {
Bob Moore83118b02014-07-30 12:21:00 +0800716 if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_NAMESPACE)
David Woodhouseed403562014-03-07 23:15:42 +0000717 continue;
718 if (scope->enumeration_id != device_number)
719 continue;
720
721 path = (void *)(scope + 1);
722 pr_info("ACPI device \"%s\" under DMAR at %llx as %02x:%02x.%d\n",
723 dev_name(&adev->dev), dmaru->reg_base_addr,
724 scope->bus, path->device, path->function);
725 for_each_dev_scope(dmaru->devices, dmaru->devices_cnt, i, tmp)
726 if (tmp == NULL) {
727 dmaru->devices[i].bus = scope->bus;
728 dmaru->devices[i].devfn = PCI_DEVFN(path->device,
729 path->function);
730 rcu_assign_pointer(dmaru->devices[i].dev,
731 get_device(&adev->dev));
732 return;
733 }
734 BUG_ON(i >= dmaru->devices_cnt);
735 }
736 }
737 pr_warn("No IOMMU scope found for ANDD enumeration ID %d (%s)\n",
738 device_number, dev_name(&adev->dev));
739}
740
741static int __init dmar_acpi_dev_scope_init(void)
742{
Joerg Roedel11f1a772014-03-25 20:16:40 +0100743 struct acpi_dmar_andd *andd;
744
745 if (dmar_tbl == NULL)
746 return -ENODEV;
747
David Woodhouse7713ec02014-04-01 14:58:36 +0100748 for (andd = (void *)dmar_tbl + sizeof(struct acpi_table_dmar);
749 ((unsigned long)andd) < ((unsigned long)dmar_tbl) + dmar_tbl->length;
750 andd = ((void *)andd) + andd->header.length) {
Bob Moore83118b02014-07-30 12:21:00 +0800751 if (andd->header.type == ACPI_DMAR_TYPE_NAMESPACE) {
David Woodhouseed403562014-03-07 23:15:42 +0000752 acpi_handle h;
753 struct acpi_device *adev;
754
755 if (!ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT,
Bob Moore83118b02014-07-30 12:21:00 +0800756 andd->device_name,
David Woodhouseed403562014-03-07 23:15:42 +0000757 &h))) {
758 pr_err("Failed to find handle for ACPI object %s\n",
Bob Moore83118b02014-07-30 12:21:00 +0800759 andd->device_name);
David Woodhouseed403562014-03-07 23:15:42 +0000760 continue;
761 }
Joerg Roedelc0df9752014-08-21 23:06:48 +0200762 if (acpi_bus_get_device(h, &adev)) {
David Woodhouseed403562014-03-07 23:15:42 +0000763 pr_err("Failed to get device for ACPI object %s\n",
Bob Moore83118b02014-07-30 12:21:00 +0800764 andd->device_name);
David Woodhouseed403562014-03-07 23:15:42 +0000765 continue;
766 }
767 dmar_acpi_insert_dev_scope(andd->device_number, adev);
768 }
David Woodhouseed403562014-03-07 23:15:42 +0000769 }
770 return 0;
771}
772
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700773int __init dmar_dev_scope_init(void)
774{
Jiang Liu2e455282014-02-19 14:07:36 +0800775 struct pci_dev *dev = NULL;
776 struct dmar_pci_notify_info *info;
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700777
Jiang Liu2e455282014-02-19 14:07:36 +0800778 if (dmar_dev_scope_status != 1)
779 return dmar_dev_scope_status;
Suresh Siddhac2c72862011-08-23 17:05:19 -0700780
Jiang Liu2e455282014-02-19 14:07:36 +0800781 if (list_empty(&dmar_drhd_units)) {
782 dmar_dev_scope_status = -ENODEV;
783 } else {
784 dmar_dev_scope_status = 0;
Suresh Siddha318fe7d2011-08-23 17:05:20 -0700785
David Woodhouse63b42622014-03-28 11:28:40 +0000786 dmar_acpi_dev_scope_init();
787
Jiang Liu2e455282014-02-19 14:07:36 +0800788 for_each_pci_dev(dev) {
789 if (dev->is_virtfn)
790 continue;
791
792 info = dmar_alloc_pci_notify_info(dev,
793 BUS_NOTIFY_ADD_DEVICE);
794 if (!info) {
795 return dmar_dev_scope_status;
796 } else {
797 dmar_pci_bus_add_dev(info);
798 dmar_free_pci_notify_info(info);
799 }
800 }
801
802 bus_register_notifier(&pci_bus_type, &dmar_pci_bus_nb);
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700803 }
804
Jiang Liu2e455282014-02-19 14:07:36 +0800805 return dmar_dev_scope_status;
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700806}
807
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700808
809int __init dmar_table_init(void)
810{
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700811 static int dmar_table_initialized;
Fenghua Yu093f87d2007-11-21 15:07:14 -0800812 int ret;
813
Jiang Liucc053012014-01-06 14:18:24 +0800814 if (dmar_table_initialized == 0) {
815 ret = parse_dmar_table();
816 if (ret < 0) {
817 if (ret != -ENODEV)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200818 pr_info("Parse DMAR table failure.\n");
Jiang Liucc053012014-01-06 14:18:24 +0800819 } else if (list_empty(&dmar_drhd_units)) {
820 pr_info("No DMAR devices found\n");
821 ret = -ENODEV;
822 }
Suresh Siddha1886e8a2008-07-10 11:16:37 -0700823
Jiang Liucc053012014-01-06 14:18:24 +0800824 if (ret < 0)
825 dmar_table_initialized = ret;
826 else
827 dmar_table_initialized = 1;
Fenghua Yu093f87d2007-11-21 15:07:14 -0800828 }
829
Jiang Liucc053012014-01-06 14:18:24 +0800830 return dmar_table_initialized < 0 ? dmar_table_initialized : 0;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700831}
832
Ben Hutchings3a8663e2010-04-03 19:37:23 +0100833static void warn_invalid_dmar(u64 addr, const char *message)
834{
Ben Hutchingsfd0c8892010-04-03 19:38:43 +0100835 WARN_TAINT_ONCE(
836 1, TAINT_FIRMWARE_WORKAROUND,
837 "Your BIOS is broken; DMAR reported at address %llx%s!\n"
838 "BIOS vendor: %s; Ver: %s; Product Version: %s\n",
839 addr, message,
840 dmi_get_system_info(DMI_BIOS_VENDOR),
841 dmi_get_system_info(DMI_BIOS_VERSION),
842 dmi_get_system_info(DMI_PRODUCT_VERSION));
Ben Hutchings3a8663e2010-04-03 19:37:23 +0100843}
David Woodhouse6ecbf012009-12-02 09:20:27 +0000844
Jiang Liuc2a0b532014-11-09 22:47:56 +0800845static int __ref
846dmar_validate_one_drhd(struct acpi_dmar_header *entry, void *arg)
David Woodhouse86cf8982009-11-09 22:15:15 +0000847{
David Woodhouse86cf8982009-11-09 22:15:15 +0000848 struct acpi_dmar_hardware_unit *drhd;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800849 void __iomem *addr;
850 u64 cap, ecap;
David Woodhouse86cf8982009-11-09 22:15:15 +0000851
Jiang Liuc2a0b532014-11-09 22:47:56 +0800852 drhd = (void *)entry;
853 if (!drhd->address) {
854 warn_invalid_dmar(0, "");
855 return -EINVAL;
David Woodhouse86cf8982009-11-09 22:15:15 +0000856 }
Chris Wright2c992202009-12-02 09:17:13 +0000857
Jiang Liu6b197242014-11-09 22:47:58 +0800858 if (arg)
859 addr = ioremap(drhd->address, VTD_PAGE_SIZE);
860 else
861 addr = early_ioremap(drhd->address, VTD_PAGE_SIZE);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800862 if (!addr) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200863 pr_warn("Can't validate DRHD address: %llx\n", drhd->address);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800864 return -EINVAL;
865 }
Jiang Liu6b197242014-11-09 22:47:58 +0800866
Jiang Liuc2a0b532014-11-09 22:47:56 +0800867 cap = dmar_readq(addr + DMAR_CAP_REG);
868 ecap = dmar_readq(addr + DMAR_ECAP_REG);
Jiang Liu6b197242014-11-09 22:47:58 +0800869
870 if (arg)
871 iounmap(addr);
872 else
873 early_iounmap(addr, VTD_PAGE_SIZE);
Jiang Liuc2a0b532014-11-09 22:47:56 +0800874
875 if (cap == (uint64_t)-1 && ecap == (uint64_t)-1) {
876 warn_invalid_dmar(drhd->address, " returns all ones");
877 return -EINVAL;
878 }
879
Chris Wright2c992202009-12-02 09:17:13 +0000880 return 0;
David Woodhouse86cf8982009-11-09 22:15:15 +0000881}
882
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -0400883int __init detect_intel_iommu(void)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700884{
885 int ret;
Jiang Liuc2a0b532014-11-09 22:47:56 +0800886 struct dmar_res_callback validate_drhd_cb = {
887 .cb[ACPI_DMAR_TYPE_HARDWARE_UNIT] = &dmar_validate_one_drhd,
888 .ignore_unhandled = true,
889 };
Suresh Siddha2ae21012008-07-10 11:16:43 -0700890
Jiang Liu3a5670e2014-02-19 14:07:33 +0800891 down_write(&dmar_global_lock);
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700892 ret = dmar_table_detect();
David Woodhouse86cf8982009-11-09 22:15:15 +0000893 if (ret)
Jiang Liuc2a0b532014-11-09 22:47:56 +0800894 ret = !dmar_walk_dmar_table((struct acpi_table_dmar *)dmar_tbl,
895 &validate_drhd_cb);
896 if (ret && !no_iommu && !iommu_detected && !dmar_disabled) {
897 iommu_detected = 1;
898 /* Make sure ACS will be enabled */
899 pci_request_acs();
900 }
Suresh Siddhaf5d1b972011-08-23 17:05:22 -0700901
FUJITA Tomonori9d5ce732009-11-10 19:46:16 +0900902#ifdef CONFIG_X86
Jiang Liuc2a0b532014-11-09 22:47:56 +0800903 if (ret)
904 x86_init.iommu.iommu_init = intel_iommu_init;
FUJITA Tomonori9d5ce732009-11-10 19:46:16 +0900905#endif
Jiang Liuc2a0b532014-11-09 22:47:56 +0800906
Jiang Liub707cb02014-01-06 14:18:26 +0800907 early_acpi_os_unmap_memory((void __iomem *)dmar_tbl, dmar_tbl_size);
Yinghai Luf6dd5c32008-09-03 16:58:32 -0700908 dmar_tbl = NULL;
Jiang Liu3a5670e2014-02-19 14:07:33 +0800909 up_write(&dmar_global_lock);
Konrad Rzeszutek Wilk480125b2010-08-26 13:57:57 -0400910
Konrad Rzeszutek Wilk4db77ff2010-08-26 13:58:04 -0400911 return ret ? 1 : -ENODEV;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700912}
913
914
Donald Dutile6f5cf522012-06-04 17:29:02 -0400915static void unmap_iommu(struct intel_iommu *iommu)
916{
917 iounmap(iommu->reg);
918 release_mem_region(iommu->reg_phys, iommu->reg_size);
919}
920
921/**
922 * map_iommu: map the iommu's registers
923 * @iommu: the iommu to map
924 * @phys_addr: the physical address of the base resgister
Donald Dutilee9071b02012-06-08 17:13:11 -0400925 *
Donald Dutile6f5cf522012-06-04 17:29:02 -0400926 * Memory map the iommu's registers. Start w/ a single page, and
Donald Dutilee9071b02012-06-08 17:13:11 -0400927 * possibly expand if that turns out to be insufficent.
Donald Dutile6f5cf522012-06-04 17:29:02 -0400928 */
929static int map_iommu(struct intel_iommu *iommu, u64 phys_addr)
930{
931 int map_size, err=0;
932
933 iommu->reg_phys = phys_addr;
934 iommu->reg_size = VTD_PAGE_SIZE;
935
936 if (!request_mem_region(iommu->reg_phys, iommu->reg_size, iommu->name)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200937 pr_err("Can't reserve memory\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400938 err = -EBUSY;
939 goto out;
940 }
941
942 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
943 if (!iommu->reg) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200944 pr_err("Can't map the region\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400945 err = -ENOMEM;
946 goto release;
947 }
948
949 iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG);
950 iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG);
951
952 if (iommu->cap == (uint64_t)-1 && iommu->ecap == (uint64_t)-1) {
953 err = -EINVAL;
954 warn_invalid_dmar(phys_addr, " returns all ones");
955 goto unmap;
956 }
957
958 /* the registers might be more than one page */
959 map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap),
960 cap_max_fault_reg_offset(iommu->cap));
961 map_size = VTD_PAGE_ALIGN(map_size);
962 if (map_size > iommu->reg_size) {
963 iounmap(iommu->reg);
964 release_mem_region(iommu->reg_phys, iommu->reg_size);
965 iommu->reg_size = map_size;
966 if (!request_mem_region(iommu->reg_phys, iommu->reg_size,
967 iommu->name)) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200968 pr_err("Can't reserve memory\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400969 err = -EBUSY;
970 goto out;
971 }
972 iommu->reg = ioremap(iommu->reg_phys, iommu->reg_size);
973 if (!iommu->reg) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +0200974 pr_err("Can't map the region\n");
Donald Dutile6f5cf522012-06-04 17:29:02 -0400975 err = -ENOMEM;
976 goto release;
977 }
978 }
979 err = 0;
980 goto out;
981
982unmap:
983 iounmap(iommu->reg);
984release:
985 release_mem_region(iommu->reg_phys, iommu->reg_size);
986out:
987 return err;
988}
989
Jiang Liu78d8e702014-11-09 22:47:57 +0800990static int dmar_alloc_seq_id(struct intel_iommu *iommu)
991{
992 iommu->seq_id = find_first_zero_bit(dmar_seq_ids,
993 DMAR_UNITS_SUPPORTED);
994 if (iommu->seq_id >= DMAR_UNITS_SUPPORTED) {
995 iommu->seq_id = -1;
996 } else {
997 set_bit(iommu->seq_id, dmar_seq_ids);
998 sprintf(iommu->name, "dmar%d", iommu->seq_id);
999 }
1000
1001 return iommu->seq_id;
1002}
1003
1004static void dmar_free_seq_id(struct intel_iommu *iommu)
1005{
1006 if (iommu->seq_id >= 0) {
1007 clear_bit(iommu->seq_id, dmar_seq_ids);
1008 iommu->seq_id = -1;
1009 }
1010}
1011
Jiang Liu694835d2014-01-06 14:18:16 +08001012static int alloc_iommu(struct dmar_drhd_unit *drhd)
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001013{
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001014 struct intel_iommu *iommu;
Takao Indoh3a93c842013-04-23 17:35:03 +09001015 u32 ver, sts;
Joerg Roedel43f73922009-01-03 23:56:27 +01001016 int agaw = 0;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001017 int msagaw = 0;
Donald Dutile6f5cf522012-06-04 17:29:02 -04001018 int err;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001019
David Woodhouse6ecbf012009-12-02 09:20:27 +00001020 if (!drhd->reg_base_addr) {
Ben Hutchings3a8663e2010-04-03 19:37:23 +01001021 warn_invalid_dmar(0, "");
David Woodhouse6ecbf012009-12-02 09:20:27 +00001022 return -EINVAL;
1023 }
1024
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001025 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
1026 if (!iommu)
Suresh Siddha1886e8a2008-07-10 11:16:37 -07001027 return -ENOMEM;
Suresh Siddhac42d9f32008-07-10 11:16:36 -07001028
Jiang Liu78d8e702014-11-09 22:47:57 +08001029 if (dmar_alloc_seq_id(iommu) < 0) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001030 pr_err("Failed to allocate seq_id\n");
Jiang Liu78d8e702014-11-09 22:47:57 +08001031 err = -ENOSPC;
1032 goto error;
1033 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001034
Donald Dutile6f5cf522012-06-04 17:29:02 -04001035 err = map_iommu(iommu, drhd->reg_base_addr);
1036 if (err) {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001037 pr_err("Failed to map %s\n", iommu->name);
Jiang Liu78d8e702014-11-09 22:47:57 +08001038 goto error_free_seq_id;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001039 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001040
Donald Dutile6f5cf522012-06-04 17:29:02 -04001041 err = -EINVAL;
Weidong Han1b573682008-12-08 15:34:06 +08001042 agaw = iommu_calculate_agaw(iommu);
1043 if (agaw < 0) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001044 pr_err("Cannot get a valid agaw for iommu (seq_id = %d)\n",
1045 iommu->seq_id);
David Woodhouse08155652009-08-04 09:17:20 +01001046 goto err_unmap;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001047 }
1048 msagaw = iommu_calculate_max_sagaw(iommu);
1049 if (msagaw < 0) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001050 pr_err("Cannot get a valid max agaw for iommu (seq_id = %d)\n",
Weidong Han1b573682008-12-08 15:34:06 +08001051 iommu->seq_id);
David Woodhouse08155652009-08-04 09:17:20 +01001052 goto err_unmap;
Weidong Han1b573682008-12-08 15:34:06 +08001053 }
1054 iommu->agaw = agaw;
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -07001055 iommu->msagaw = msagaw;
David Woodhouse67ccac42014-03-09 13:49:45 -07001056 iommu->segment = drhd->segment;
Weidong Han1b573682008-12-08 15:34:06 +08001057
Suresh Siddhaee34b322009-10-02 11:01:21 -07001058 iommu->node = -1;
1059
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001060 ver = readl(iommu->reg + DMAR_VER_REG);
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001061 pr_info("%s: reg_base_addr %llx ver %d:%d cap %llx ecap %llx\n",
1062 iommu->name,
Fenghua Yu5b6985c2008-10-16 18:02:32 -07001063 (unsigned long long)drhd->reg_base_addr,
1064 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver),
1065 (unsigned long long)iommu->cap,
1066 (unsigned long long)iommu->ecap);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001067
Takao Indoh3a93c842013-04-23 17:35:03 +09001068 /* Reflect status in gcmd */
1069 sts = readl(iommu->reg + DMAR_GSTS_REG);
1070 if (sts & DMA_GSTS_IRES)
1071 iommu->gcmd |= DMA_GCMD_IRE;
1072 if (sts & DMA_GSTS_TES)
1073 iommu->gcmd |= DMA_GCMD_TE;
1074 if (sts & DMA_GSTS_QIES)
1075 iommu->gcmd |= DMA_GCMD_QIE;
1076
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001077 raw_spin_lock_init(&iommu->register_lock);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001078
Joerg Roedelbc847452016-01-07 12:16:51 +01001079 if (intel_iommu_enabled) {
Alex Williamsona5459cf2014-06-12 16:12:31 -06001080 iommu->iommu_dev = iommu_device_create(NULL, iommu,
1081 intel_iommu_groups,
Kees Cook2439d4a2015-07-24 16:27:57 -07001082 "%s", iommu->name);
Alex Williamsona5459cf2014-06-12 16:12:31 -06001083
Joerg Roedelbc847452016-01-07 12:16:51 +01001084 if (IS_ERR(iommu->iommu_dev)) {
1085 err = PTR_ERR(iommu->iommu_dev);
1086 goto err_unmap;
1087 }
Nicholas Krause59203372016-01-04 18:27:57 -05001088 }
1089
Joerg Roedelbc847452016-01-07 12:16:51 +01001090 drhd->iommu = iommu;
1091
Suresh Siddha1886e8a2008-07-10 11:16:37 -07001092 return 0;
David Woodhouse08155652009-08-04 09:17:20 +01001093
Jiang Liu78d8e702014-11-09 22:47:57 +08001094err_unmap:
Donald Dutile6f5cf522012-06-04 17:29:02 -04001095 unmap_iommu(iommu);
Jiang Liu78d8e702014-11-09 22:47:57 +08001096error_free_seq_id:
1097 dmar_free_seq_id(iommu);
1098error:
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001099 kfree(iommu);
Donald Dutile6f5cf522012-06-04 17:29:02 -04001100 return err;
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001101}
1102
Jiang Liua868e6b2014-01-06 14:18:20 +08001103static void free_iommu(struct intel_iommu *iommu)
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001104{
Alex Williamsona5459cf2014-06-12 16:12:31 -06001105 iommu_device_destroy(iommu->iommu_dev);
1106
Jiang Liua868e6b2014-01-06 14:18:20 +08001107 if (iommu->irq) {
David Woodhouse12082252015-10-07 15:37:03 +01001108 if (iommu->pr_irq) {
1109 free_irq(iommu->pr_irq, iommu);
1110 dmar_free_hwirq(iommu->pr_irq);
1111 iommu->pr_irq = 0;
1112 }
Jiang Liua868e6b2014-01-06 14:18:20 +08001113 free_irq(iommu->irq, iommu);
Thomas Gleixnera553b142014-05-07 15:44:11 +00001114 dmar_free_hwirq(iommu->irq);
Jiang Liu34742db2015-04-13 14:11:41 +08001115 iommu->irq = 0;
Jiang Liua868e6b2014-01-06 14:18:20 +08001116 }
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001117
Jiang Liua84da702014-01-06 14:18:23 +08001118 if (iommu->qi) {
1119 free_page((unsigned long)iommu->qi->desc);
1120 kfree(iommu->qi->desc_status);
1121 kfree(iommu->qi);
1122 }
1123
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001124 if (iommu->reg)
Donald Dutile6f5cf522012-06-04 17:29:02 -04001125 unmap_iommu(iommu);
1126
Jiang Liu78d8e702014-11-09 22:47:57 +08001127 dmar_free_seq_id(iommu);
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001128 kfree(iommu);
1129}
Suresh Siddhafe962e92008-07-10 11:16:42 -07001130
1131/*
1132 * Reclaim all the submitted descriptors which have completed its work.
1133 */
1134static inline void reclaim_free_desc(struct q_inval *qi)
1135{
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001136 while (qi->desc_status[qi->free_tail] == QI_DONE ||
1137 qi->desc_status[qi->free_tail] == QI_ABORT) {
Suresh Siddhafe962e92008-07-10 11:16:42 -07001138 qi->desc_status[qi->free_tail] = QI_FREE;
1139 qi->free_tail = (qi->free_tail + 1) % QI_LENGTH;
1140 qi->free_cnt++;
1141 }
1142}
1143
Yu Zhao704126a2009-01-04 16:28:52 +08001144static int qi_check_fault(struct intel_iommu *iommu, int index)
1145{
1146 u32 fault;
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001147 int head, tail;
Yu Zhao704126a2009-01-04 16:28:52 +08001148 struct q_inval *qi = iommu->qi;
1149 int wait_index = (index + 1) % QI_LENGTH;
1150
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001151 if (qi->desc_status[wait_index] == QI_ABORT)
1152 return -EAGAIN;
1153
Yu Zhao704126a2009-01-04 16:28:52 +08001154 fault = readl(iommu->reg + DMAR_FSTS_REG);
1155
1156 /*
1157 * If IQE happens, the head points to the descriptor associated
1158 * with the error. No new descriptors are fetched until the IQE
1159 * is cleared.
1160 */
1161 if (fault & DMA_FSTS_IQE) {
1162 head = readl(iommu->reg + DMAR_IQH_REG);
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001163 if ((head >> DMAR_IQ_SHIFT) == index) {
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001164 pr_err("VT-d detected invalid descriptor: "
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001165 "low=%llx, high=%llx\n",
1166 (unsigned long long)qi->desc[index].low,
1167 (unsigned long long)qi->desc[index].high);
Yu Zhao704126a2009-01-04 16:28:52 +08001168 memcpy(&qi->desc[index], &qi->desc[wait_index],
1169 sizeof(struct qi_desc));
1170 __iommu_flush_cache(iommu, &qi->desc[index],
1171 sizeof(struct qi_desc));
1172 writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG);
1173 return -EINVAL;
1174 }
1175 }
1176
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001177 /*
1178 * If ITE happens, all pending wait_desc commands are aborted.
1179 * No new descriptors are fetched until the ITE is cleared.
1180 */
1181 if (fault & DMA_FSTS_ITE) {
1182 head = readl(iommu->reg + DMAR_IQH_REG);
1183 head = ((head >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH;
1184 head |= 1;
1185 tail = readl(iommu->reg + DMAR_IQT_REG);
1186 tail = ((tail >> DMAR_IQ_SHIFT) - 1 + QI_LENGTH) % QI_LENGTH;
1187
1188 writel(DMA_FSTS_ITE, iommu->reg + DMAR_FSTS_REG);
1189
1190 do {
1191 if (qi->desc_status[head] == QI_IN_USE)
1192 qi->desc_status[head] = QI_ABORT;
1193 head = (head - 2 + QI_LENGTH) % QI_LENGTH;
1194 } while (head != tail);
1195
1196 if (qi->desc_status[wait_index] == QI_ABORT)
1197 return -EAGAIN;
1198 }
1199
1200 if (fault & DMA_FSTS_ICE)
1201 writel(DMA_FSTS_ICE, iommu->reg + DMAR_FSTS_REG);
1202
Yu Zhao704126a2009-01-04 16:28:52 +08001203 return 0;
1204}
1205
Suresh Siddhafe962e92008-07-10 11:16:42 -07001206/*
1207 * Submit the queued invalidation descriptor to the remapping
1208 * hardware unit and wait for its completion.
1209 */
Yu Zhao704126a2009-01-04 16:28:52 +08001210int qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu)
Suresh Siddhafe962e92008-07-10 11:16:42 -07001211{
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001212 int rc;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001213 struct q_inval *qi = iommu->qi;
1214 struct qi_desc *hw, wait_desc;
1215 int wait_index, index;
1216 unsigned long flags;
1217
1218 if (!qi)
Yu Zhao704126a2009-01-04 16:28:52 +08001219 return 0;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001220
1221 hw = qi->desc;
1222
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001223restart:
1224 rc = 0;
1225
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001226 raw_spin_lock_irqsave(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001227 while (qi->free_cnt < 3) {
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001228 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001229 cpu_relax();
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001230 raw_spin_lock_irqsave(&qi->q_lock, flags);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001231 }
1232
1233 index = qi->free_head;
1234 wait_index = (index + 1) % QI_LENGTH;
1235
1236 qi->desc_status[index] = qi->desc_status[wait_index] = QI_IN_USE;
1237
1238 hw[index] = *desc;
1239
Yu Zhao704126a2009-01-04 16:28:52 +08001240 wait_desc.low = QI_IWD_STATUS_DATA(QI_DONE) |
1241 QI_IWD_STATUS_WRITE | QI_IWD_TYPE;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001242 wait_desc.high = virt_to_phys(&qi->desc_status[wait_index]);
1243
1244 hw[wait_index] = wait_desc;
1245
1246 __iommu_flush_cache(iommu, &hw[index], sizeof(struct qi_desc));
1247 __iommu_flush_cache(iommu, &hw[wait_index], sizeof(struct qi_desc));
1248
1249 qi->free_head = (qi->free_head + 2) % QI_LENGTH;
1250 qi->free_cnt -= 2;
1251
Suresh Siddhafe962e92008-07-10 11:16:42 -07001252 /*
1253 * update the HW tail register indicating the presence of
1254 * new descriptors.
1255 */
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001256 writel(qi->free_head << DMAR_IQ_SHIFT, iommu->reg + DMAR_IQT_REG);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001257
1258 while (qi->desc_status[wait_index] != QI_DONE) {
Suresh Siddhaf05810c2008-10-16 16:31:54 -07001259 /*
1260 * We will leave the interrupts disabled, to prevent interrupt
1261 * context to queue another cmd while a cmd is already submitted
1262 * and waiting for completion on this cpu. This is to avoid
1263 * a deadlock where the interrupt context can wait indefinitely
1264 * for free slots in the queue.
1265 */
Yu Zhao704126a2009-01-04 16:28:52 +08001266 rc = qi_check_fault(iommu, index);
1267 if (rc)
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001268 break;
Yu Zhao704126a2009-01-04 16:28:52 +08001269
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001270 raw_spin_unlock(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001271 cpu_relax();
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001272 raw_spin_lock(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001273 }
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001274
1275 qi->desc_status[index] = QI_DONE;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001276
1277 reclaim_free_desc(qi);
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001278 raw_spin_unlock_irqrestore(&qi->q_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +08001279
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001280 if (rc == -EAGAIN)
1281 goto restart;
1282
Yu Zhao704126a2009-01-04 16:28:52 +08001283 return rc;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001284}
1285
1286/*
1287 * Flush the global interrupt entry cache.
1288 */
1289void qi_global_iec(struct intel_iommu *iommu)
1290{
1291 struct qi_desc desc;
1292
1293 desc.low = QI_IEC_TYPE;
1294 desc.high = 0;
1295
Yu Zhao704126a2009-01-04 16:28:52 +08001296 /* should never fail */
Suresh Siddhafe962e92008-07-10 11:16:42 -07001297 qi_submit_sync(&desc, iommu);
1298}
1299
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001300void qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm,
1301 u64 type)
Youquan Song3481f212008-10-16 16:31:55 -07001302{
Youquan Song3481f212008-10-16 16:31:55 -07001303 struct qi_desc desc;
1304
Youquan Song3481f212008-10-16 16:31:55 -07001305 desc.low = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did)
1306 | QI_CC_GRAN(type) | QI_CC_TYPE;
1307 desc.high = 0;
1308
David Woodhouse4c25a2c2009-05-10 17:16:06 +01001309 qi_submit_sync(&desc, iommu);
Youquan Song3481f212008-10-16 16:31:55 -07001310}
1311
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001312void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
1313 unsigned int size_order, u64 type)
Youquan Song3481f212008-10-16 16:31:55 -07001314{
1315 u8 dw = 0, dr = 0;
1316
1317 struct qi_desc desc;
1318 int ih = 0;
1319
Youquan Song3481f212008-10-16 16:31:55 -07001320 if (cap_write_drain(iommu->cap))
1321 dw = 1;
1322
1323 if (cap_read_drain(iommu->cap))
1324 dr = 1;
1325
1326 desc.low = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw)
1327 | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE;
1328 desc.high = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih)
1329 | QI_IOTLB_AM(size_order);
1330
David Woodhouse1f0ef2a2009-05-10 19:58:49 +01001331 qi_submit_sync(&desc, iommu);
Youquan Song3481f212008-10-16 16:31:55 -07001332}
1333
Yu Zhao6ba6c3a2009-05-18 13:51:35 +08001334void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 qdep,
1335 u64 addr, unsigned mask)
1336{
1337 struct qi_desc desc;
1338
1339 if (mask) {
1340 BUG_ON(addr & ((1 << (VTD_PAGE_SHIFT + mask)) - 1));
1341 addr |= (1 << (VTD_PAGE_SHIFT + mask - 1)) - 1;
1342 desc.high = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE;
1343 } else
1344 desc.high = QI_DEV_IOTLB_ADDR(addr);
1345
1346 if (qdep >= QI_DEV_IOTLB_MAX_INVS)
1347 qdep = 0;
1348
1349 desc.low = QI_DEV_IOTLB_SID(sid) | QI_DEV_IOTLB_QDEP(qdep) |
1350 QI_DIOTLB_TYPE;
1351
1352 qi_submit_sync(&desc, iommu);
1353}
1354
Suresh Siddhafe962e92008-07-10 11:16:42 -07001355/*
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001356 * Disable Queued Invalidation interface.
1357 */
1358void dmar_disable_qi(struct intel_iommu *iommu)
1359{
1360 unsigned long flags;
1361 u32 sts;
1362 cycles_t start_time = get_cycles();
1363
1364 if (!ecap_qis(iommu->ecap))
1365 return;
1366
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001367 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001368
CQ Tangfda3bec2016-01-13 21:15:03 +00001369 sts = readl(iommu->reg + DMAR_GSTS_REG);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001370 if (!(sts & DMA_GSTS_QIES))
1371 goto end;
1372
1373 /*
1374 * Give a chance to HW to complete the pending invalidation requests.
1375 */
1376 while ((readl(iommu->reg + DMAR_IQT_REG) !=
1377 readl(iommu->reg + DMAR_IQH_REG)) &&
1378 (DMAR_OPERATION_TIMEOUT > (get_cycles() - start_time)))
1379 cpu_relax();
1380
1381 iommu->gcmd &= ~DMA_GCMD_QIE;
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001382 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
1383
1384 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl,
1385 !(sts & DMA_GSTS_QIES), sts);
1386end:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001387 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -07001388}
1389
1390/*
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001391 * Enable queued invalidation.
1392 */
1393static void __dmar_enable_qi(struct intel_iommu *iommu)
1394{
David Woodhousec416daa2009-05-10 20:30:58 +01001395 u32 sts;
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001396 unsigned long flags;
1397 struct q_inval *qi = iommu->qi;
1398
1399 qi->free_head = qi->free_tail = 0;
1400 qi->free_cnt = QI_LENGTH;
1401
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001402 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001403
1404 /* write zero to the tail reg */
1405 writel(0, iommu->reg + DMAR_IQT_REG);
1406
1407 dmar_writeq(iommu->reg + DMAR_IQA_REG, virt_to_phys(qi->desc));
1408
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001409 iommu->gcmd |= DMA_GCMD_QIE;
David Woodhousec416daa2009-05-10 20:30:58 +01001410 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001411
1412 /* Make sure hardware complete it */
1413 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts);
1414
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001415 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001416}
1417
1418/*
Suresh Siddhafe962e92008-07-10 11:16:42 -07001419 * Enable Queued Invalidation interface. This is a must to support
1420 * interrupt-remapping. Also used by DMA-remapping, which replaces
1421 * register based IOTLB invalidation.
1422 */
1423int dmar_enable_qi(struct intel_iommu *iommu)
1424{
Suresh Siddhafe962e92008-07-10 11:16:42 -07001425 struct q_inval *qi;
Suresh Siddha751cafe2009-10-02 11:01:22 -07001426 struct page *desc_page;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001427
1428 if (!ecap_qis(iommu->ecap))
1429 return -ENOENT;
1430
1431 /*
1432 * queued invalidation is already setup and enabled.
1433 */
1434 if (iommu->qi)
1435 return 0;
1436
Suresh Siddhafa4b57c2009-03-16 17:05:05 -07001437 iommu->qi = kmalloc(sizeof(*qi), GFP_ATOMIC);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001438 if (!iommu->qi)
1439 return -ENOMEM;
1440
1441 qi = iommu->qi;
1442
Suresh Siddha751cafe2009-10-02 11:01:22 -07001443
1444 desc_page = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO, 0);
1445 if (!desc_page) {
Suresh Siddhafe962e92008-07-10 11:16:42 -07001446 kfree(qi);
Jiang Liub707cb02014-01-06 14:18:26 +08001447 iommu->qi = NULL;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001448 return -ENOMEM;
1449 }
1450
Suresh Siddha751cafe2009-10-02 11:01:22 -07001451 qi->desc = page_address(desc_page);
1452
Hannes Reinecke37a40712013-02-06 09:50:10 +01001453 qi->desc_status = kzalloc(QI_LENGTH * sizeof(int), GFP_ATOMIC);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001454 if (!qi->desc_status) {
1455 free_page((unsigned long) qi->desc);
1456 kfree(qi);
Jiang Liub707cb02014-01-06 14:18:26 +08001457 iommu->qi = NULL;
Suresh Siddhafe962e92008-07-10 11:16:42 -07001458 return -ENOMEM;
1459 }
1460
Thomas Gleixner3b8f4042011-07-19 17:02:07 +02001461 raw_spin_lock_init(&qi->q_lock);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001462
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001463 __dmar_enable_qi(iommu);
Suresh Siddhafe962e92008-07-10 11:16:42 -07001464
1465 return 0;
1466}
Suresh Siddha0ac24912009-03-16 17:04:54 -07001467
1468/* iommu interrupt handling. Most stuff are MSI-like. */
1469
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001470enum faulttype {
1471 DMA_REMAP,
1472 INTR_REMAP,
1473 UNKNOWN,
1474};
1475
1476static const char *dma_remap_fault_reasons[] =
Suresh Siddha0ac24912009-03-16 17:04:54 -07001477{
1478 "Software",
1479 "Present bit in root entry is clear",
1480 "Present bit in context entry is clear",
1481 "Invalid context entry",
1482 "Access beyond MGAW",
1483 "PTE Write access is not set",
1484 "PTE Read access is not set",
1485 "Next page table ptr is invalid",
1486 "Root table address invalid",
1487 "Context table ptr is invalid",
1488 "non-zero reserved fields in RTP",
1489 "non-zero reserved fields in CTP",
1490 "non-zero reserved fields in PTE",
Li, Zhen-Hua4ecccd92013-03-06 10:43:17 +08001491 "PCE for translation request specifies blocking",
Suresh Siddha0ac24912009-03-16 17:04:54 -07001492};
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001493
Suresh Siddha95a02e92012-03-30 11:47:07 -07001494static const char *irq_remap_fault_reasons[] =
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001495{
1496 "Detected reserved fields in the decoded interrupt-remapped request",
1497 "Interrupt index exceeded the interrupt-remapping table size",
1498 "Present field in the IRTE entry is clear",
1499 "Error accessing interrupt-remapping table pointed by IRTA_REG",
1500 "Detected reserved fields in the IRTE entry",
1501 "Blocked a compatibility format interrupt request",
1502 "Blocked an interrupt request due to source-id verification failure",
1503};
1504
Rashika Kheria21004dc2013-12-18 12:01:46 +05301505static const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001506{
Dan Carpenterfefe1ed2012-05-13 20:09:38 +03001507 if (fault_reason >= 0x20 && (fault_reason - 0x20 <
1508 ARRAY_SIZE(irq_remap_fault_reasons))) {
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001509 *fault_type = INTR_REMAP;
Suresh Siddha95a02e92012-03-30 11:47:07 -07001510 return irq_remap_fault_reasons[fault_reason - 0x20];
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001511 } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) {
1512 *fault_type = DMA_REMAP;
1513 return dma_remap_fault_reasons[fault_reason];
1514 } else {
1515 *fault_type = UNKNOWN;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001516 return "Unknown";
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001517 }
Suresh Siddha0ac24912009-03-16 17:04:54 -07001518}
1519
David Woodhouse12082252015-10-07 15:37:03 +01001520
1521static inline int dmar_msi_reg(struct intel_iommu *iommu, int irq)
1522{
1523 if (iommu->irq == irq)
1524 return DMAR_FECTL_REG;
1525 else if (iommu->pr_irq == irq)
1526 return DMAR_PECTL_REG;
1527 else
1528 BUG();
1529}
1530
Thomas Gleixner5c2837f2010-09-28 17:15:11 +02001531void dmar_msi_unmask(struct irq_data *data)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001532{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001533 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
David Woodhouse12082252015-10-07 15:37:03 +01001534 int reg = dmar_msi_reg(iommu, data->irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001535 unsigned long flag;
1536
1537 /* unmask it */
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001538 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001539 writel(0, iommu->reg + reg);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001540 /* Read a reg to force flush the post write */
David Woodhouse12082252015-10-07 15:37:03 +01001541 readl(iommu->reg + reg);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001542 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001543}
1544
Thomas Gleixner5c2837f2010-09-28 17:15:11 +02001545void dmar_msi_mask(struct irq_data *data)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001546{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001547 struct intel_iommu *iommu = irq_data_get_irq_handler_data(data);
David Woodhouse12082252015-10-07 15:37:03 +01001548 int reg = dmar_msi_reg(iommu, data->irq);
1549 unsigned long flag;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001550
1551 /* mask it */
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001552 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001553 writel(DMA_FECTL_IM, iommu->reg + reg);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001554 /* Read a reg to force flush the post write */
David Woodhouse12082252015-10-07 15:37:03 +01001555 readl(iommu->reg + reg);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001556 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001557}
1558
1559void dmar_msi_write(int irq, struct msi_msg *msg)
1560{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001561 struct intel_iommu *iommu = irq_get_handler_data(irq);
David Woodhouse12082252015-10-07 15:37:03 +01001562 int reg = dmar_msi_reg(iommu, irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001563 unsigned long flag;
1564
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001565 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001566 writel(msg->data, iommu->reg + reg + 4);
1567 writel(msg->address_lo, iommu->reg + reg + 8);
1568 writel(msg->address_hi, iommu->reg + reg + 12);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001569 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001570}
1571
1572void dmar_msi_read(int irq, struct msi_msg *msg)
1573{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001574 struct intel_iommu *iommu = irq_get_handler_data(irq);
David Woodhouse12082252015-10-07 15:37:03 +01001575 int reg = dmar_msi_reg(iommu, irq);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001576 unsigned long flag;
1577
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001578 raw_spin_lock_irqsave(&iommu->register_lock, flag);
David Woodhouse12082252015-10-07 15:37:03 +01001579 msg->data = readl(iommu->reg + reg + 4);
1580 msg->address_lo = readl(iommu->reg + reg + 8);
1581 msg->address_hi = readl(iommu->reg + reg + 12);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001582 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001583}
1584
1585static int dmar_fault_do_one(struct intel_iommu *iommu, int type,
1586 u8 fault_reason, u16 source_id, unsigned long long addr)
1587{
1588 const char *reason;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001589 int fault_type;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001590
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001591 reason = dmar_get_fault_reason(fault_reason, &fault_type);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001592
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001593 if (fault_type == INTR_REMAP)
Alex Williamsona0fe14d2016-03-17 14:12:31 -06001594 pr_err("[INTR-REMAP] Request device [%02x:%02x.%d] fault index %llx [fault reason %02d] %s\n",
1595 source_id >> 8, PCI_SLOT(source_id & 0xFF),
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001596 PCI_FUNC(source_id & 0xFF), addr >> 48,
1597 fault_reason, reason);
1598 else
Alex Williamsona0fe14d2016-03-17 14:12:31 -06001599 pr_err("[%s] Request device [%02x:%02x.%d] fault addr %llx [fault reason %02d] %s\n",
1600 type ? "DMA Read" : "DMA Write",
1601 source_id >> 8, PCI_SLOT(source_id & 0xFF),
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001602 PCI_FUNC(source_id & 0xFF), addr, fault_reason, reason);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001603 return 0;
1604}
1605
1606#define PRIMARY_FAULT_REG_LEN (16)
Suresh Siddha1531a6a2009-03-16 17:04:57 -07001607irqreturn_t dmar_fault(int irq, void *dev_id)
Suresh Siddha0ac24912009-03-16 17:04:54 -07001608{
1609 struct intel_iommu *iommu = dev_id;
1610 int reg, fault_index;
1611 u32 fault_status;
1612 unsigned long flag;
Alex Williamsonc43fce42016-03-17 14:12:25 -06001613 bool ratelimited;
1614 static DEFINE_RATELIMIT_STATE(rs,
1615 DEFAULT_RATELIMIT_INTERVAL,
1616 DEFAULT_RATELIMIT_BURST);
1617
1618 /* Disable printing, simply clear the fault when ratelimited */
1619 ratelimited = !__ratelimit(&rs);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001620
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001621 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001622 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
Alex Williamsonc43fce42016-03-17 14:12:25 -06001623 if (fault_status && !ratelimited)
Donald Dutilebf947fcb2012-06-04 17:29:01 -04001624 pr_err("DRHD: handling fault status reg %x\n", fault_status);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001625
1626 /* TBD: ignore advanced fault log currently */
1627 if (!(fault_status & DMA_FSTS_PPF))
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001628 goto unlock_exit;
Suresh Siddha0ac24912009-03-16 17:04:54 -07001629
1630 fault_index = dma_fsts_fault_record_index(fault_status);
1631 reg = cap_fault_reg_offset(iommu->cap);
1632 while (1) {
1633 u8 fault_reason;
1634 u16 source_id;
1635 u64 guest_addr;
1636 int type;
1637 u32 data;
1638
1639 /* highest 32 bits */
1640 data = readl(iommu->reg + reg +
1641 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1642 if (!(data & DMA_FRCD_F))
1643 break;
1644
Alex Williamsonc43fce42016-03-17 14:12:25 -06001645 if (!ratelimited) {
1646 fault_reason = dma_frcd_fault_reason(data);
1647 type = dma_frcd_type(data);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001648
Alex Williamsonc43fce42016-03-17 14:12:25 -06001649 data = readl(iommu->reg + reg +
1650 fault_index * PRIMARY_FAULT_REG_LEN + 8);
1651 source_id = dma_frcd_source_id(data);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001652
Alex Williamsonc43fce42016-03-17 14:12:25 -06001653 guest_addr = dmar_readq(iommu->reg + reg +
1654 fault_index * PRIMARY_FAULT_REG_LEN);
1655 guest_addr = dma_frcd_page_addr(guest_addr);
1656 }
1657
Suresh Siddha0ac24912009-03-16 17:04:54 -07001658 /* clear the fault */
1659 writel(DMA_FRCD_F, iommu->reg + reg +
1660 fault_index * PRIMARY_FAULT_REG_LEN + 12);
1661
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001662 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001663
Alex Williamsonc43fce42016-03-17 14:12:25 -06001664 if (!ratelimited)
1665 dmar_fault_do_one(iommu, type, fault_reason,
1666 source_id, guest_addr);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001667
1668 fault_index++;
Troy Heber8211a7b2009-08-19 15:26:11 -06001669 if (fault_index >= cap_num_fault_regs(iommu->cap))
Suresh Siddha0ac24912009-03-16 17:04:54 -07001670 fault_index = 0;
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001671 raw_spin_lock_irqsave(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001672 }
Suresh Siddha0ac24912009-03-16 17:04:54 -07001673
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001674 writel(DMA_FSTS_PFO | DMA_FSTS_PPF, iommu->reg + DMAR_FSTS_REG);
1675
1676unlock_exit:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +02001677 raw_spin_unlock_irqrestore(&iommu->register_lock, flag);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001678 return IRQ_HANDLED;
1679}
1680
1681int dmar_set_interrupt(struct intel_iommu *iommu)
1682{
1683 int irq, ret;
1684
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001685 /*
1686 * Check if the fault interrupt is already initialized.
1687 */
1688 if (iommu->irq)
1689 return 0;
1690
Jiang Liu34742db2015-04-13 14:11:41 +08001691 irq = dmar_alloc_hwirq(iommu->seq_id, iommu->node, iommu);
1692 if (irq > 0) {
1693 iommu->irq = irq;
1694 } else {
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001695 pr_err("No free IRQ vectors\n");
Suresh Siddha0ac24912009-03-16 17:04:54 -07001696 return -EINVAL;
1697 }
1698
Thomas Gleixner477694e2011-07-19 16:25:42 +02001699 ret = request_irq(irq, dmar_fault, IRQF_NO_THREAD, iommu->name, iommu);
Suresh Siddha0ac24912009-03-16 17:04:54 -07001700 if (ret)
Joerg Roedel9f10e5b2015-06-12 09:57:06 +02001701 pr_err("Can't request irq\n");
Suresh Siddha0ac24912009-03-16 17:04:54 -07001702 return ret;
1703}
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001704
1705int __init enable_drhd_fault_handling(void)
1706{
1707 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +08001708 struct intel_iommu *iommu;
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001709
1710 /*
1711 * Enable fault control interrupt.
1712 */
Jiang Liu7c919772014-01-06 14:18:18 +08001713 for_each_iommu(iommu, drhd) {
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001714 u32 fault_status;
Jiang Liu7c919772014-01-06 14:18:18 +08001715 int ret = dmar_set_interrupt(iommu);
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001716
1717 if (ret) {
Donald Dutilee9071b02012-06-08 17:13:11 -04001718 pr_err("DRHD %Lx: failed to enable fault, interrupt, ret %d\n",
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001719 (unsigned long long)drhd->reg_base_addr, ret);
1720 return -1;
1721 }
Suresh Siddha7f99d942010-11-30 22:22:29 -08001722
1723 /*
1724 * Clear any previous faults.
1725 */
1726 dmar_fault(iommu->irq, iommu);
Li, Zhen-Huabd5cdad2013-03-25 16:20:52 +08001727 fault_status = readl(iommu->reg + DMAR_FSTS_REG);
1728 writel(fault_status, iommu->reg + DMAR_FSTS_REG);
Suresh Siddha9d783ba2009-03-16 17:04:55 -07001729 }
1730
1731 return 0;
1732}
Fenghua Yueb4a52b2009-03-27 14:22:43 -07001733
1734/*
1735 * Re-enable Queued Invalidation interface.
1736 */
1737int dmar_reenable_qi(struct intel_iommu *iommu)
1738{
1739 if (!ecap_qis(iommu->ecap))
1740 return -ENOENT;
1741
1742 if (!iommu->qi)
1743 return -ENOENT;
1744
1745 /*
1746 * First disable queued invalidation.
1747 */
1748 dmar_disable_qi(iommu);
1749 /*
1750 * Then enable queued invalidation again. Since there is no pending
1751 * invalidation requests now, it's safe to re-enable queued
1752 * invalidation.
1753 */
1754 __dmar_enable_qi(iommu);
1755
1756 return 0;
1757}
Youquan Song074835f2009-09-09 12:05:39 -04001758
1759/*
1760 * Check interrupt remapping support in DMAR table description.
1761 */
Luck, Tony0b8973a2009-12-16 22:59:29 +00001762int __init dmar_ir_support(void)
Youquan Song074835f2009-09-09 12:05:39 -04001763{
1764 struct acpi_table_dmar *dmar;
1765 dmar = (struct acpi_table_dmar *)dmar_tbl;
Arnaud Patard4f506e02010-03-25 18:02:58 +00001766 if (!dmar)
1767 return 0;
Youquan Song074835f2009-09-09 12:05:39 -04001768 return dmar->flags & 0x1;
1769}
Jiang Liu694835d2014-01-06 14:18:16 +08001770
Jiang Liu6b197242014-11-09 22:47:58 +08001771/* Check whether DMAR units are in use */
1772static inline bool dmar_in_use(void)
1773{
1774 return irq_remapping_enabled || intel_iommu_enabled;
1775}
1776
Jiang Liua868e6b2014-01-06 14:18:20 +08001777static int __init dmar_free_unused_resources(void)
1778{
1779 struct dmar_drhd_unit *dmaru, *dmaru_n;
1780
Jiang Liu6b197242014-11-09 22:47:58 +08001781 if (dmar_in_use())
Jiang Liua868e6b2014-01-06 14:18:20 +08001782 return 0;
1783
Jiang Liu2e455282014-02-19 14:07:36 +08001784 if (dmar_dev_scope_status != 1 && !list_empty(&dmar_drhd_units))
1785 bus_unregister_notifier(&pci_bus_type, &dmar_pci_bus_nb);
Jiang Liu59ce0512014-02-19 14:07:35 +08001786
Jiang Liu3a5670e2014-02-19 14:07:33 +08001787 down_write(&dmar_global_lock);
Jiang Liua868e6b2014-01-06 14:18:20 +08001788 list_for_each_entry_safe(dmaru, dmaru_n, &dmar_drhd_units, list) {
1789 list_del(&dmaru->list);
1790 dmar_free_drhd(dmaru);
1791 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08001792 up_write(&dmar_global_lock);
Jiang Liua868e6b2014-01-06 14:18:20 +08001793
1794 return 0;
1795}
1796
1797late_initcall(dmar_free_unused_resources);
Konrad Rzeszutek Wilk4db77ff2010-08-26 13:58:04 -04001798IOMMU_INIT_POST(detect_intel_iommu);
Jiang Liu6b197242014-11-09 22:47:58 +08001799
1800/*
1801 * DMAR Hotplug Support
1802 * For more details, please refer to Intel(R) Virtualization Technology
1803 * for Directed-IO Architecture Specifiction, Rev 2.2, Section 8.8
1804 * "Remapping Hardware Unit Hot Plug".
1805 */
1806static u8 dmar_hp_uuid[] = {
1807 /* 0000 */ 0xA6, 0xA3, 0xC1, 0xD8, 0x9B, 0xBE, 0x9B, 0x4C,
1808 /* 0008 */ 0x91, 0xBF, 0xC3, 0xCB, 0x81, 0xFC, 0x5D, 0xAF
1809};
1810
1811/*
1812 * Currently there's only one revision and BIOS will not check the revision id,
1813 * so use 0 for safety.
1814 */
1815#define DMAR_DSM_REV_ID 0
1816#define DMAR_DSM_FUNC_DRHD 1
1817#define DMAR_DSM_FUNC_ATSR 2
1818#define DMAR_DSM_FUNC_RHSA 3
1819
1820static inline bool dmar_detect_dsm(acpi_handle handle, int func)
1821{
1822 return acpi_check_dsm(handle, dmar_hp_uuid, DMAR_DSM_REV_ID, 1 << func);
1823}
1824
1825static int dmar_walk_dsm_resource(acpi_handle handle, int func,
1826 dmar_res_handler_t handler, void *arg)
1827{
1828 int ret = -ENODEV;
1829 union acpi_object *obj;
1830 struct acpi_dmar_header *start;
1831 struct dmar_res_callback callback;
1832 static int res_type[] = {
1833 [DMAR_DSM_FUNC_DRHD] = ACPI_DMAR_TYPE_HARDWARE_UNIT,
1834 [DMAR_DSM_FUNC_ATSR] = ACPI_DMAR_TYPE_ROOT_ATS,
1835 [DMAR_DSM_FUNC_RHSA] = ACPI_DMAR_TYPE_HARDWARE_AFFINITY,
1836 };
1837
1838 if (!dmar_detect_dsm(handle, func))
1839 return 0;
1840
1841 obj = acpi_evaluate_dsm_typed(handle, dmar_hp_uuid, DMAR_DSM_REV_ID,
1842 func, NULL, ACPI_TYPE_BUFFER);
1843 if (!obj)
1844 return -ENODEV;
1845
1846 memset(&callback, 0, sizeof(callback));
1847 callback.cb[res_type[func]] = handler;
1848 callback.arg[res_type[func]] = arg;
1849 start = (struct acpi_dmar_header *)obj->buffer.pointer;
1850 ret = dmar_walk_remapping_entries(start, obj->buffer.length, &callback);
1851
1852 ACPI_FREE(obj);
1853
1854 return ret;
1855}
1856
1857static int dmar_hp_add_drhd(struct acpi_dmar_header *header, void *arg)
1858{
1859 int ret;
1860 struct dmar_drhd_unit *dmaru;
1861
1862 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1863 if (!dmaru)
1864 return -ENODEV;
1865
1866 ret = dmar_ir_hotplug(dmaru, true);
1867 if (ret == 0)
1868 ret = dmar_iommu_hotplug(dmaru, true);
1869
1870 return ret;
1871}
1872
1873static int dmar_hp_remove_drhd(struct acpi_dmar_header *header, void *arg)
1874{
1875 int i, ret;
1876 struct device *dev;
1877 struct dmar_drhd_unit *dmaru;
1878
1879 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1880 if (!dmaru)
1881 return 0;
1882
1883 /*
1884 * All PCI devices managed by this unit should have been destroyed.
1885 */
1886 if (!dmaru->include_all && dmaru->devices && dmaru->devices_cnt)
1887 for_each_active_dev_scope(dmaru->devices,
1888 dmaru->devices_cnt, i, dev)
1889 return -EBUSY;
1890
1891 ret = dmar_ir_hotplug(dmaru, false);
1892 if (ret == 0)
1893 ret = dmar_iommu_hotplug(dmaru, false);
1894
1895 return ret;
1896}
1897
1898static int dmar_hp_release_drhd(struct acpi_dmar_header *header, void *arg)
1899{
1900 struct dmar_drhd_unit *dmaru;
1901
1902 dmaru = dmar_find_dmaru((struct acpi_dmar_hardware_unit *)header);
1903 if (dmaru) {
1904 list_del_rcu(&dmaru->list);
1905 synchronize_rcu();
1906 dmar_free_drhd(dmaru);
1907 }
1908
1909 return 0;
1910}
1911
1912static int dmar_hotplug_insert(acpi_handle handle)
1913{
1914 int ret;
1915 int drhd_count = 0;
1916
1917 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1918 &dmar_validate_one_drhd, (void *)1);
1919 if (ret)
1920 goto out;
1921
1922 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1923 &dmar_parse_one_drhd, (void *)&drhd_count);
1924 if (ret == 0 && drhd_count == 0) {
1925 pr_warn(FW_BUG "No DRHD structures in buffer returned by _DSM method\n");
1926 goto out;
1927 } else if (ret) {
1928 goto release_drhd;
1929 }
1930
1931 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_RHSA,
1932 &dmar_parse_one_rhsa, NULL);
1933 if (ret)
1934 goto release_drhd;
1935
1936 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1937 &dmar_parse_one_atsr, NULL);
1938 if (ret)
1939 goto release_atsr;
1940
1941 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1942 &dmar_hp_add_drhd, NULL);
1943 if (!ret)
1944 return 0;
1945
1946 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1947 &dmar_hp_remove_drhd, NULL);
1948release_atsr:
1949 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1950 &dmar_release_one_atsr, NULL);
1951release_drhd:
1952 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1953 &dmar_hp_release_drhd, NULL);
1954out:
1955 return ret;
1956}
1957
1958static int dmar_hotplug_remove(acpi_handle handle)
1959{
1960 int ret;
1961
1962 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1963 &dmar_check_one_atsr, NULL);
1964 if (ret)
1965 return ret;
1966
1967 ret = dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1968 &dmar_hp_remove_drhd, NULL);
1969 if (ret == 0) {
1970 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_ATSR,
1971 &dmar_release_one_atsr, NULL));
1972 WARN_ON(dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1973 &dmar_hp_release_drhd, NULL));
1974 } else {
1975 dmar_walk_dsm_resource(handle, DMAR_DSM_FUNC_DRHD,
1976 &dmar_hp_add_drhd, NULL);
1977 }
1978
1979 return ret;
1980}
1981
Jiang Liud35165a2014-11-09 22:47:59 +08001982static acpi_status dmar_get_dsm_handle(acpi_handle handle, u32 lvl,
1983 void *context, void **retval)
1984{
1985 acpi_handle *phdl = retval;
1986
1987 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
1988 *phdl = handle;
1989 return AE_CTRL_TERMINATE;
1990 }
1991
1992 return AE_OK;
1993}
1994
Jiang Liu6b197242014-11-09 22:47:58 +08001995static int dmar_device_hotplug(acpi_handle handle, bool insert)
1996{
1997 int ret;
Jiang Liud35165a2014-11-09 22:47:59 +08001998 acpi_handle tmp = NULL;
1999 acpi_status status;
Jiang Liu6b197242014-11-09 22:47:58 +08002000
2001 if (!dmar_in_use())
2002 return 0;
2003
Jiang Liud35165a2014-11-09 22:47:59 +08002004 if (dmar_detect_dsm(handle, DMAR_DSM_FUNC_DRHD)) {
2005 tmp = handle;
2006 } else {
2007 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2008 ACPI_UINT32_MAX,
2009 dmar_get_dsm_handle,
2010 NULL, NULL, &tmp);
2011 if (ACPI_FAILURE(status)) {
2012 pr_warn("Failed to locate _DSM method.\n");
2013 return -ENXIO;
2014 }
2015 }
2016 if (tmp == NULL)
Jiang Liu6b197242014-11-09 22:47:58 +08002017 return 0;
2018
2019 down_write(&dmar_global_lock);
2020 if (insert)
Jiang Liud35165a2014-11-09 22:47:59 +08002021 ret = dmar_hotplug_insert(tmp);
Jiang Liu6b197242014-11-09 22:47:58 +08002022 else
Jiang Liud35165a2014-11-09 22:47:59 +08002023 ret = dmar_hotplug_remove(tmp);
Jiang Liu6b197242014-11-09 22:47:58 +08002024 up_write(&dmar_global_lock);
2025
2026 return ret;
2027}
2028
2029int dmar_device_add(acpi_handle handle)
2030{
2031 return dmar_device_hotplug(handle, true);
2032}
2033
2034int dmar_device_remove(acpi_handle handle)
2035{
2036 return dmar_device_hotplug(handle, false);
2037}