]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/iommu/amd_iommu.c
Linux 3.6-rc7
[mirror_ubuntu-bionic-kernel.git] / drivers / iommu / amd_iommu.c
CommitLineData
b6c02715 1/*
5d0d7156 2 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
b6c02715
JR
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
72e1dcc4 20#include <linux/ratelimit.h>
b6c02715 21#include <linux/pci.h>
cb41ed85 22#include <linux/pci-ats.h>
a66022c4 23#include <linux/bitmap.h>
5a0e3ad6 24#include <linux/slab.h>
7f26508b 25#include <linux/debugfs.h>
b6c02715 26#include <linux/scatterlist.h>
51491367 27#include <linux/dma-mapping.h>
b6c02715 28#include <linux/iommu-helper.h>
c156e347 29#include <linux/iommu.h>
815b33fd 30#include <linux/delay.h>
403f81d8 31#include <linux/amd-iommu.h>
72e1dcc4
JR
32#include <linux/notifier.h>
33#include <linux/export.h>
17f5b569 34#include <asm/msidef.h>
b6c02715 35#include <asm/proto.h>
46a7fa27 36#include <asm/iommu.h>
1d9b16d1 37#include <asm/gart.h>
27c2127a 38#include <asm/dma.h>
403f81d8
JR
39
40#include "amd_iommu_proto.h"
41#include "amd_iommu_types.h"
b6c02715
JR
42
43#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
44
815b33fd 45#define LOOP_TIMEOUT 100000
136f78a1 46
aa3de9c0
OBC
47/*
48 * This bitmap is used to advertise the page sizes our hardware support
49 * to the IOMMU core, which will then use this information to split
50 * physically contiguous memory regions it is mapping into page sizes
51 * that we support.
52 *
53 * Traditionally the IOMMU core just handed us the mappings directly,
54 * after making sure the size is an order of a 4KiB page and that the
55 * mapping has natural alignment.
56 *
57 * To retain this behavior, we currently advertise that we support
58 * all page sizes that are an order of 4KiB.
59 *
60 * If at some point we'd like to utilize the IOMMU core's new behavior,
61 * we could change this to advertise the real page sizes we support.
62 */
63#define AMD_IOMMU_PGSIZES (~0xFFFUL)
64
b6c02715
JR
65static DEFINE_RWLOCK(amd_iommu_devtable_lock);
66
bd60b735
JR
67/* A list of preallocated protection domains */
68static LIST_HEAD(iommu_pd_list);
69static DEFINE_SPINLOCK(iommu_pd_list_lock);
70
8fa5f802
JR
71/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
0feae533
JR
75/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
79static struct protection_domain *pt_domain;
80
26961efe 81static struct iommu_ops amd_iommu_ops;
26961efe 82
72e1dcc4 83static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
52815b75 84int amd_iommu_max_glx_val = -1;
72e1dcc4 85
ac1534a5
JR
86static struct dma_map_ops amd_iommu_dma_ops;
87
431b2a20
JR
88/*
89 * general struct to manage commands send to an IOMMU
90 */
d6449536 91struct iommu_cmd {
b6c02715
JR
92 u32 data[4];
93};
94
04bfdd84 95static void update_domain(struct protection_domain *domain);
5abcdba4 96static int __init alloc_passthrough_domain(void);
c1eee67b 97
15898bbc
JR
98/****************************************************************************
99 *
100 * Helper functions
101 *
102 ****************************************************************************/
103
f62dda66 104static struct iommu_dev_data *alloc_dev_data(u16 devid)
8fa5f802
JR
105{
106 struct iommu_dev_data *dev_data;
107 unsigned long flags;
108
109 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
110 if (!dev_data)
111 return NULL;
112
f62dda66 113 dev_data->devid = devid;
8fa5f802
JR
114 atomic_set(&dev_data->bind, 0);
115
116 spin_lock_irqsave(&dev_data_list_lock, flags);
117 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
118 spin_unlock_irqrestore(&dev_data_list_lock, flags);
119
120 return dev_data;
121}
122
123static void free_dev_data(struct iommu_dev_data *dev_data)
124{
125 unsigned long flags;
126
127 spin_lock_irqsave(&dev_data_list_lock, flags);
128 list_del(&dev_data->dev_data_list);
129 spin_unlock_irqrestore(&dev_data_list_lock, flags);
130
131 kfree(dev_data);
132}
133
3b03bb74
JR
134static struct iommu_dev_data *search_dev_data(u16 devid)
135{
136 struct iommu_dev_data *dev_data;
137 unsigned long flags;
138
139 spin_lock_irqsave(&dev_data_list_lock, flags);
140 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
141 if (dev_data->devid == devid)
142 goto out_unlock;
143 }
144
145 dev_data = NULL;
146
147out_unlock:
148 spin_unlock_irqrestore(&dev_data_list_lock, flags);
149
150 return dev_data;
151}
152
153static struct iommu_dev_data *find_dev_data(u16 devid)
154{
155 struct iommu_dev_data *dev_data;
156
157 dev_data = search_dev_data(devid);
158
159 if (dev_data == NULL)
160 dev_data = alloc_dev_data(devid);
161
162 return dev_data;
163}
164
15898bbc
JR
165static inline u16 get_device_id(struct device *dev)
166{
167 struct pci_dev *pdev = to_pci_dev(dev);
168
169 return calc_devid(pdev->bus->number, pdev->devfn);
170}
171
657cbb6b
JR
172static struct iommu_dev_data *get_dev_data(struct device *dev)
173{
174 return dev->archdata.iommu;
175}
176
5abcdba4
JR
177static bool pci_iommuv2_capable(struct pci_dev *pdev)
178{
179 static const int caps[] = {
180 PCI_EXT_CAP_ID_ATS,
46277b75
JR
181 PCI_EXT_CAP_ID_PRI,
182 PCI_EXT_CAP_ID_PASID,
5abcdba4
JR
183 };
184 int i, pos;
185
186 for (i = 0; i < 3; ++i) {
187 pos = pci_find_ext_capability(pdev, caps[i]);
188 if (pos == 0)
189 return false;
190 }
191
192 return true;
193}
194
6a113ddc
JR
195static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
196{
197 struct iommu_dev_data *dev_data;
198
199 dev_data = get_dev_data(&pdev->dev);
200
201 return dev_data->errata & (1 << erratum) ? true : false;
202}
203
71c70984
JR
204/*
205 * In this function the list of preallocated protection domains is traversed to
206 * find the domain for a specific device
207 */
208static struct dma_ops_domain *find_protection_domain(u16 devid)
209{
210 struct dma_ops_domain *entry, *ret = NULL;
211 unsigned long flags;
212 u16 alias = amd_iommu_alias_table[devid];
213
214 if (list_empty(&iommu_pd_list))
215 return NULL;
216
217 spin_lock_irqsave(&iommu_pd_list_lock, flags);
218
219 list_for_each_entry(entry, &iommu_pd_list, list) {
220 if (entry->target_dev == devid ||
221 entry->target_dev == alias) {
222 ret = entry;
223 break;
224 }
225 }
226
227 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
228
229 return ret;
230}
231
98fc5a69
JR
232/*
233 * This function checks if the driver got a valid device from the caller to
234 * avoid dereferencing invalid pointers.
235 */
236static bool check_device(struct device *dev)
237{
238 u16 devid;
239
240 if (!dev || !dev->dma_mask)
241 return false;
242
243 /* No device or no PCI device */
339d3261 244 if (dev->bus != &pci_bus_type)
98fc5a69
JR
245 return false;
246
247 devid = get_device_id(dev);
248
249 /* Out of our scope? */
250 if (devid > amd_iommu_last_bdf)
251 return false;
252
253 if (amd_iommu_rlookup_table[devid] == NULL)
254 return false;
255
256 return true;
257}
258
664b6003
AW
259static void swap_pci_ref(struct pci_dev **from, struct pci_dev *to)
260{
261 pci_dev_put(*from);
262 *from = to;
263}
264
265#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
266
657cbb6b
JR
267static int iommu_init_device(struct device *dev)
268{
9dcd6130 269 struct pci_dev *dma_pdev, *pdev = to_pci_dev(dev);
657cbb6b 270 struct iommu_dev_data *dev_data;
9dcd6130 271 struct iommu_group *group;
8fa5f802 272 u16 alias;
9dcd6130 273 int ret;
657cbb6b
JR
274
275 if (dev->archdata.iommu)
276 return 0;
277
3b03bb74 278 dev_data = find_dev_data(get_device_id(dev));
657cbb6b
JR
279 if (!dev_data)
280 return -ENOMEM;
281
f62dda66 282 alias = amd_iommu_alias_table[dev_data->devid];
2b02b091 283 if (alias != dev_data->devid) {
71f77580 284 struct iommu_dev_data *alias_data;
b00d3bcf 285
71f77580
JR
286 alias_data = find_dev_data(alias);
287 if (alias_data == NULL) {
288 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
289 dev_name(dev));
2b02b091
JR
290 free_dev_data(dev_data);
291 return -ENOTSUPP;
292 }
71f77580 293 dev_data->alias_data = alias_data;
9dcd6130
AW
294
295 dma_pdev = pci_get_bus_and_slot(alias >> 8, alias & 0xff);
296 } else
297 dma_pdev = pci_dev_get(pdev);
298
31fe9435 299 /* Account for quirked devices */
664b6003
AW
300 swap_pci_ref(&dma_pdev, pci_get_dma_source(dma_pdev));
301
31fe9435
AW
302 /*
303 * If it's a multifunction device that does not support our
304 * required ACS flags, add to the same group as function 0.
305 */
664b6003
AW
306 if (dma_pdev->multifunction &&
307 !pci_acs_enabled(dma_pdev, REQ_ACS_FLAGS))
308 swap_pci_ref(&dma_pdev,
309 pci_get_slot(dma_pdev->bus,
310 PCI_DEVFN(PCI_SLOT(dma_pdev->devfn),
311 0)));
312
31fe9435
AW
313 /*
314 * Devices on the root bus go through the iommu. If that's not us,
315 * find the next upstream device and test ACS up to the root bus.
316 * Finding the next device may require skipping virtual buses.
317 */
664b6003 318 while (!pci_is_root_bus(dma_pdev->bus)) {
31fe9435
AW
319 struct pci_bus *bus = dma_pdev->bus;
320
321 while (!bus->self) {
322 if (!pci_is_root_bus(bus))
323 bus = bus->parent;
324 else
325 goto root_bus;
326 }
327
328 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
664b6003
AW
329 break;
330
31fe9435 331 swap_pci_ref(&dma_pdev, pci_dev_get(bus->self));
664b6003
AW
332 }
333
31fe9435 334root_bus:
9dcd6130
AW
335 group = iommu_group_get(&dma_pdev->dev);
336 pci_dev_put(dma_pdev);
337 if (!group) {
338 group = iommu_group_alloc();
339 if (IS_ERR(group))
340 return PTR_ERR(group);
26018874 341 }
657cbb6b 342
9dcd6130
AW
343 ret = iommu_group_add_device(group, dev);
344
345 iommu_group_put(group);
346
347 if (ret)
348 return ret;
349
5abcdba4
JR
350 if (pci_iommuv2_capable(pdev)) {
351 struct amd_iommu *iommu;
352
353 iommu = amd_iommu_rlookup_table[dev_data->devid];
354 dev_data->iommu_v2 = iommu->is_iommu_v2;
355 }
356
657cbb6b
JR
357 dev->archdata.iommu = dev_data;
358
657cbb6b
JR
359 return 0;
360}
361
26018874
JR
362static void iommu_ignore_device(struct device *dev)
363{
364 u16 devid, alias;
365
366 devid = get_device_id(dev);
367 alias = amd_iommu_alias_table[devid];
368
369 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
370 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
371
372 amd_iommu_rlookup_table[devid] = NULL;
373 amd_iommu_rlookup_table[alias] = NULL;
374}
375
657cbb6b
JR
376static void iommu_uninit_device(struct device *dev)
377{
9dcd6130
AW
378 iommu_group_remove_device(dev);
379
8fa5f802
JR
380 /*
381 * Nothing to do here - we keep dev_data around for unplugged devices
382 * and reuse it when the device is re-plugged - not doing so would
383 * introduce a ton of races.
384 */
657cbb6b 385}
b7cc9554
JR
386
387void __init amd_iommu_uninit_devices(void)
388{
8fa5f802 389 struct iommu_dev_data *dev_data, *n;
b7cc9554
JR
390 struct pci_dev *pdev = NULL;
391
392 for_each_pci_dev(pdev) {
393
394 if (!check_device(&pdev->dev))
395 continue;
396
397 iommu_uninit_device(&pdev->dev);
398 }
8fa5f802
JR
399
400 /* Free all of our dev_data structures */
401 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
402 free_dev_data(dev_data);
b7cc9554
JR
403}
404
405int __init amd_iommu_init_devices(void)
406{
407 struct pci_dev *pdev = NULL;
408 int ret = 0;
409
410 for_each_pci_dev(pdev) {
411
412 if (!check_device(&pdev->dev))
413 continue;
414
415 ret = iommu_init_device(&pdev->dev);
26018874
JR
416 if (ret == -ENOTSUPP)
417 iommu_ignore_device(&pdev->dev);
418 else if (ret)
b7cc9554
JR
419 goto out_free;
420 }
421
422 return 0;
423
424out_free:
425
426 amd_iommu_uninit_devices();
427
428 return ret;
429}
7f26508b
JR
430#ifdef CONFIG_AMD_IOMMU_STATS
431
432/*
433 * Initialization code for statistics collection
434 */
435
da49f6df 436DECLARE_STATS_COUNTER(compl_wait);
0f2a86f2 437DECLARE_STATS_COUNTER(cnt_map_single);
146a6917 438DECLARE_STATS_COUNTER(cnt_unmap_single);
d03f067a 439DECLARE_STATS_COUNTER(cnt_map_sg);
55877a6b 440DECLARE_STATS_COUNTER(cnt_unmap_sg);
c8f0fb36 441DECLARE_STATS_COUNTER(cnt_alloc_coherent);
5d31ee7e 442DECLARE_STATS_COUNTER(cnt_free_coherent);
c1858976 443DECLARE_STATS_COUNTER(cross_page);
f57d98ae 444DECLARE_STATS_COUNTER(domain_flush_single);
18811f55 445DECLARE_STATS_COUNTER(domain_flush_all);
5774f7c5 446DECLARE_STATS_COUNTER(alloced_io_mem);
8ecaf8f1 447DECLARE_STATS_COUNTER(total_map_requests);
399be2f5
JR
448DECLARE_STATS_COUNTER(complete_ppr);
449DECLARE_STATS_COUNTER(invalidate_iotlb);
450DECLARE_STATS_COUNTER(invalidate_iotlb_all);
451DECLARE_STATS_COUNTER(pri_requests);
452
7f26508b 453static struct dentry *stats_dir;
7f26508b
JR
454static struct dentry *de_fflush;
455
456static void amd_iommu_stats_add(struct __iommu_counter *cnt)
457{
458 if (stats_dir == NULL)
459 return;
460
461 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
462 &cnt->value);
463}
464
465static void amd_iommu_stats_init(void)
466{
467 stats_dir = debugfs_create_dir("amd-iommu", NULL);
468 if (stats_dir == NULL)
469 return;
470
7f26508b 471 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
3775d481 472 &amd_iommu_unmap_flush);
da49f6df
JR
473
474 amd_iommu_stats_add(&compl_wait);
0f2a86f2 475 amd_iommu_stats_add(&cnt_map_single);
146a6917 476 amd_iommu_stats_add(&cnt_unmap_single);
d03f067a 477 amd_iommu_stats_add(&cnt_map_sg);
55877a6b 478 amd_iommu_stats_add(&cnt_unmap_sg);
c8f0fb36 479 amd_iommu_stats_add(&cnt_alloc_coherent);
5d31ee7e 480 amd_iommu_stats_add(&cnt_free_coherent);
c1858976 481 amd_iommu_stats_add(&cross_page);
f57d98ae 482 amd_iommu_stats_add(&domain_flush_single);
18811f55 483 amd_iommu_stats_add(&domain_flush_all);
5774f7c5 484 amd_iommu_stats_add(&alloced_io_mem);
8ecaf8f1 485 amd_iommu_stats_add(&total_map_requests);
399be2f5
JR
486 amd_iommu_stats_add(&complete_ppr);
487 amd_iommu_stats_add(&invalidate_iotlb);
488 amd_iommu_stats_add(&invalidate_iotlb_all);
489 amd_iommu_stats_add(&pri_requests);
7f26508b
JR
490}
491
492#endif
493
a80dc3e0
JR
494/****************************************************************************
495 *
496 * Interrupt handling functions
497 *
498 ****************************************************************************/
499
e3e59876
JR
500static void dump_dte_entry(u16 devid)
501{
502 int i;
503
ee6c2868
JR
504 for (i = 0; i < 4; ++i)
505 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
e3e59876
JR
506 amd_iommu_dev_table[devid].data[i]);
507}
508
945b4ac4
JR
509static void dump_command(unsigned long phys_addr)
510{
511 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
512 int i;
513
514 for (i = 0; i < 4; ++i)
515 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
516}
517
a345b23b 518static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
90008ee4 519{
3d06fca8
JR
520 int type, devid, domid, flags;
521 volatile u32 *event = __evt;
522 int count = 0;
523 u64 address;
524
525retry:
526 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
527 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
528 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
529 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
530 address = (u64)(((u64)event[3]) << 32) | event[2];
531
532 if (type == 0) {
533 /* Did we hit the erratum? */
534 if (++count == LOOP_TIMEOUT) {
535 pr_err("AMD-Vi: No event written to event log\n");
536 return;
537 }
538 udelay(1);
539 goto retry;
540 }
90008ee4 541
4c6f40d4 542 printk(KERN_ERR "AMD-Vi: Event logged [");
90008ee4
JR
543
544 switch (type) {
545 case EVENT_TYPE_ILL_DEV:
546 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
547 "address=0x%016llx flags=0x%04x]\n",
548 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
549 address, flags);
e3e59876 550 dump_dte_entry(devid);
90008ee4
JR
551 break;
552 case EVENT_TYPE_IO_FAULT:
553 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
554 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
555 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
556 domid, address, flags);
557 break;
558 case EVENT_TYPE_DEV_TAB_ERR:
559 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
560 "address=0x%016llx flags=0x%04x]\n",
561 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
562 address, flags);
563 break;
564 case EVENT_TYPE_PAGE_TAB_ERR:
565 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
566 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
567 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
568 domid, address, flags);
569 break;
570 case EVENT_TYPE_ILL_CMD:
571 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
945b4ac4 572 dump_command(address);
90008ee4
JR
573 break;
574 case EVENT_TYPE_CMD_HARD_ERR:
575 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
576 "flags=0x%04x]\n", address, flags);
577 break;
578 case EVENT_TYPE_IOTLB_INV_TO:
579 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
580 "address=0x%016llx]\n",
581 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
582 address);
583 break;
584 case EVENT_TYPE_INV_DEV_REQ:
585 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
586 "address=0x%016llx flags=0x%04x]\n",
587 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
588 address, flags);
589 break;
590 default:
591 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
592 }
3d06fca8
JR
593
594 memset(__evt, 0, 4 * sizeof(u32));
90008ee4
JR
595}
596
597static void iommu_poll_events(struct amd_iommu *iommu)
598{
599 u32 head, tail;
600 unsigned long flags;
601
602 spin_lock_irqsave(&iommu->lock, flags);
603
604 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
605 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
606
607 while (head != tail) {
a345b23b 608 iommu_print_event(iommu, iommu->evt_buf + head);
90008ee4
JR
609 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
610 }
611
612 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
613
614 spin_unlock_irqrestore(&iommu->lock, flags);
615}
616
eee53537 617static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
72e1dcc4
JR
618{
619 struct amd_iommu_fault fault;
72e1dcc4 620
399be2f5
JR
621 INC_STATS_COUNTER(pri_requests);
622
72e1dcc4
JR
623 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
624 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
625 return;
626 }
627
628 fault.address = raw[1];
629 fault.pasid = PPR_PASID(raw[0]);
630 fault.device_id = PPR_DEVID(raw[0]);
631 fault.tag = PPR_TAG(raw[0]);
632 fault.flags = PPR_FLAGS(raw[0]);
633
72e1dcc4
JR
634 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
635}
636
637static void iommu_poll_ppr_log(struct amd_iommu *iommu)
638{
639 unsigned long flags;
640 u32 head, tail;
641
642 if (iommu->ppr_log == NULL)
643 return;
644
eee53537
JR
645 /* enable ppr interrupts again */
646 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
647
72e1dcc4
JR
648 spin_lock_irqsave(&iommu->lock, flags);
649
650 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
651 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
652
653 while (head != tail) {
eee53537
JR
654 volatile u64 *raw;
655 u64 entry[2];
656 int i;
657
658 raw = (u64 *)(iommu->ppr_log + head);
659
660 /*
661 * Hardware bug: Interrupt may arrive before the entry is
662 * written to memory. If this happens we need to wait for the
663 * entry to arrive.
664 */
665 for (i = 0; i < LOOP_TIMEOUT; ++i) {
666 if (PPR_REQ_TYPE(raw[0]) != 0)
667 break;
668 udelay(1);
669 }
72e1dcc4 670
eee53537
JR
671 /* Avoid memcpy function-call overhead */
672 entry[0] = raw[0];
673 entry[1] = raw[1];
72e1dcc4 674
eee53537
JR
675 /*
676 * To detect the hardware bug we need to clear the entry
677 * back to zero.
678 */
679 raw[0] = raw[1] = 0UL;
680
681 /* Update head pointer of hardware ring-buffer */
72e1dcc4
JR
682 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
683 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
eee53537
JR
684
685 /*
686 * Release iommu->lock because ppr-handling might need to
687 * re-aquire it
688 */
689 spin_unlock_irqrestore(&iommu->lock, flags);
690
691 /* Handle PPR entry */
692 iommu_handle_ppr_entry(iommu, entry);
693
694 spin_lock_irqsave(&iommu->lock, flags);
695
696 /* Refresh ring-buffer information */
697 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
72e1dcc4
JR
698 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
699 }
700
72e1dcc4
JR
701 spin_unlock_irqrestore(&iommu->lock, flags);
702}
703
72fe00f0 704irqreturn_t amd_iommu_int_thread(int irq, void *data)
a80dc3e0 705{
90008ee4
JR
706 struct amd_iommu *iommu;
707
72e1dcc4 708 for_each_iommu(iommu) {
90008ee4 709 iommu_poll_events(iommu);
72e1dcc4
JR
710 iommu_poll_ppr_log(iommu);
711 }
90008ee4
JR
712
713 return IRQ_HANDLED;
a80dc3e0
JR
714}
715
72fe00f0
JR
716irqreturn_t amd_iommu_int_handler(int irq, void *data)
717{
718 return IRQ_WAKE_THREAD;
719}
720
431b2a20
JR
721/****************************************************************************
722 *
723 * IOMMU command queuing functions
724 *
725 ****************************************************************************/
726
ac0ea6e9
JR
727static int wait_on_sem(volatile u64 *sem)
728{
729 int i = 0;
730
731 while (*sem == 0 && i < LOOP_TIMEOUT) {
732 udelay(1);
733 i += 1;
734 }
735
736 if (i == LOOP_TIMEOUT) {
737 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
738 return -EIO;
739 }
740
741 return 0;
742}
743
744static void copy_cmd_to_buffer(struct amd_iommu *iommu,
745 struct iommu_cmd *cmd,
746 u32 tail)
a19ae1ec 747{
a19ae1ec
JR
748 u8 *target;
749
8a7c5ef3 750 target = iommu->cmd_buf + tail;
ac0ea6e9
JR
751 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
752
753 /* Copy command to buffer */
754 memcpy(target, cmd, sizeof(*cmd));
755
756 /* Tell the IOMMU about it */
a19ae1ec 757 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
ac0ea6e9 758}
a19ae1ec 759
815b33fd 760static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
ded46737 761{
815b33fd
JR
762 WARN_ON(address & 0x7ULL);
763
ded46737 764 memset(cmd, 0, sizeof(*cmd));
815b33fd
JR
765 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
766 cmd->data[1] = upper_32_bits(__pa(address));
767 cmd->data[2] = 1;
ded46737
JR
768 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
769}
770
94fe79e2
JR
771static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
772{
773 memset(cmd, 0, sizeof(*cmd));
774 cmd->data[0] = devid;
775 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
776}
777
11b6402c
JR
778static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
779 size_t size, u16 domid, int pde)
780{
781 u64 pages;
782 int s;
783
784 pages = iommu_num_pages(address, size, PAGE_SIZE);
785 s = 0;
786
787 if (pages > 1) {
788 /*
789 * If we have to flush more than one page, flush all
790 * TLB entries for this domain
791 */
792 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
793 s = 1;
794 }
795
796 address &= PAGE_MASK;
797
798 memset(cmd, 0, sizeof(*cmd));
799 cmd->data[1] |= domid;
800 cmd->data[2] = lower_32_bits(address);
801 cmd->data[3] = upper_32_bits(address);
802 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
803 if (s) /* size bit - we flush more than one 4kb page */
804 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
805 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
806 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
807}
808
cb41ed85
JR
809static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
810 u64 address, size_t size)
811{
812 u64 pages;
813 int s;
814
815 pages = iommu_num_pages(address, size, PAGE_SIZE);
816 s = 0;
817
818 if (pages > 1) {
819 /*
820 * If we have to flush more than one page, flush all
821 * TLB entries for this domain
822 */
823 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
824 s = 1;
825 }
826
827 address &= PAGE_MASK;
828
829 memset(cmd, 0, sizeof(*cmd));
830 cmd->data[0] = devid;
831 cmd->data[0] |= (qdep & 0xff) << 24;
832 cmd->data[1] = devid;
833 cmd->data[2] = lower_32_bits(address);
834 cmd->data[3] = upper_32_bits(address);
835 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
836 if (s)
837 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
838}
839
22e266c7
JR
840static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
841 u64 address, bool size)
842{
843 memset(cmd, 0, sizeof(*cmd));
844
845 address &= ~(0xfffULL);
846
847 cmd->data[0] = pasid & PASID_MASK;
848 cmd->data[1] = domid;
849 cmd->data[2] = lower_32_bits(address);
850 cmd->data[3] = upper_32_bits(address);
851 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
852 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
853 if (size)
854 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
855 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
856}
857
858static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
859 int qdep, u64 address, bool size)
860{
861 memset(cmd, 0, sizeof(*cmd));
862
863 address &= ~(0xfffULL);
864
865 cmd->data[0] = devid;
866 cmd->data[0] |= (pasid & 0xff) << 16;
867 cmd->data[0] |= (qdep & 0xff) << 24;
868 cmd->data[1] = devid;
869 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
870 cmd->data[2] = lower_32_bits(address);
871 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
872 cmd->data[3] = upper_32_bits(address);
873 if (size)
874 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
875 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
876}
877
c99afa25
JR
878static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
879 int status, int tag, bool gn)
880{
881 memset(cmd, 0, sizeof(*cmd));
882
883 cmd->data[0] = devid;
884 if (gn) {
885 cmd->data[1] = pasid & PASID_MASK;
886 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
887 }
888 cmd->data[3] = tag & 0x1ff;
889 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
890
891 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
892}
893
58fc7f14
JR
894static void build_inv_all(struct iommu_cmd *cmd)
895{
896 memset(cmd, 0, sizeof(*cmd));
897 CMD_SET_TYPE(cmd, CMD_INV_ALL);
a19ae1ec
JR
898}
899
431b2a20 900/*
431b2a20 901 * Writes the command to the IOMMUs command buffer and informs the
ac0ea6e9 902 * hardware about the new command.
431b2a20 903 */
f1ca1512
JR
904static int iommu_queue_command_sync(struct amd_iommu *iommu,
905 struct iommu_cmd *cmd,
906 bool sync)
a19ae1ec 907{
ac0ea6e9 908 u32 left, tail, head, next_tail;
a19ae1ec 909 unsigned long flags;
a19ae1ec 910
549c90dc 911 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
ac0ea6e9
JR
912
913again:
a19ae1ec 914 spin_lock_irqsave(&iommu->lock, flags);
a19ae1ec 915
ac0ea6e9
JR
916 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
917 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
918 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
919 left = (head - next_tail) % iommu->cmd_buf_size;
a19ae1ec 920
ac0ea6e9
JR
921 if (left <= 2) {
922 struct iommu_cmd sync_cmd;
923 volatile u64 sem = 0;
924 int ret;
8d201968 925
ac0ea6e9
JR
926 build_completion_wait(&sync_cmd, (u64)&sem);
927 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
da49f6df 928
ac0ea6e9
JR
929 spin_unlock_irqrestore(&iommu->lock, flags);
930
931 if ((ret = wait_on_sem(&sem)) != 0)
932 return ret;
933
934 goto again;
8d201968
JR
935 }
936
ac0ea6e9
JR
937 copy_cmd_to_buffer(iommu, cmd, tail);
938
939 /* We need to sync now to make sure all commands are processed */
f1ca1512 940 iommu->need_sync = sync;
ac0ea6e9 941
a19ae1ec 942 spin_unlock_irqrestore(&iommu->lock, flags);
8d201968 943
815b33fd 944 return 0;
8d201968
JR
945}
946
f1ca1512
JR
947static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
948{
949 return iommu_queue_command_sync(iommu, cmd, true);
950}
951
8d201968
JR
952/*
953 * This function queues a completion wait command into the command
954 * buffer of an IOMMU
955 */
a19ae1ec 956static int iommu_completion_wait(struct amd_iommu *iommu)
8d201968
JR
957{
958 struct iommu_cmd cmd;
815b33fd 959 volatile u64 sem = 0;
ac0ea6e9 960 int ret;
8d201968 961
09ee17eb 962 if (!iommu->need_sync)
815b33fd 963 return 0;
09ee17eb 964
815b33fd 965 build_completion_wait(&cmd, (u64)&sem);
a19ae1ec 966
f1ca1512 967 ret = iommu_queue_command_sync(iommu, &cmd, false);
a19ae1ec 968 if (ret)
815b33fd 969 return ret;
8d201968 970
ac0ea6e9 971 return wait_on_sem(&sem);
8d201968
JR
972}
973
d8c13085 974static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
a19ae1ec 975{
d8c13085 976 struct iommu_cmd cmd;
a19ae1ec 977
d8c13085 978 build_inv_dte(&cmd, devid);
7e4f88da 979
d8c13085
JR
980 return iommu_queue_command(iommu, &cmd);
981}
09ee17eb 982
7d0c5cc5
JR
983static void iommu_flush_dte_all(struct amd_iommu *iommu)
984{
985 u32 devid;
09ee17eb 986
7d0c5cc5
JR
987 for (devid = 0; devid <= 0xffff; ++devid)
988 iommu_flush_dte(iommu, devid);
a19ae1ec 989
7d0c5cc5
JR
990 iommu_completion_wait(iommu);
991}
84df8175 992
7d0c5cc5
JR
993/*
994 * This function uses heavy locking and may disable irqs for some time. But
995 * this is no issue because it is only called during resume.
996 */
997static void iommu_flush_tlb_all(struct amd_iommu *iommu)
998{
999 u32 dom_id;
a19ae1ec 1000
7d0c5cc5
JR
1001 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1002 struct iommu_cmd cmd;
1003 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1004 dom_id, 1);
1005 iommu_queue_command(iommu, &cmd);
1006 }
8eed9833 1007
7d0c5cc5 1008 iommu_completion_wait(iommu);
a19ae1ec
JR
1009}
1010
58fc7f14 1011static void iommu_flush_all(struct amd_iommu *iommu)
0518a3a4 1012{
58fc7f14 1013 struct iommu_cmd cmd;
0518a3a4 1014
58fc7f14 1015 build_inv_all(&cmd);
0518a3a4 1016
58fc7f14
JR
1017 iommu_queue_command(iommu, &cmd);
1018 iommu_completion_wait(iommu);
1019}
1020
7d0c5cc5
JR
1021void iommu_flush_all_caches(struct amd_iommu *iommu)
1022{
58fc7f14
JR
1023 if (iommu_feature(iommu, FEATURE_IA)) {
1024 iommu_flush_all(iommu);
1025 } else {
1026 iommu_flush_dte_all(iommu);
1027 iommu_flush_tlb_all(iommu);
0518a3a4
JR
1028 }
1029}
1030
431b2a20 1031/*
cb41ed85 1032 * Command send function for flushing on-device TLB
431b2a20 1033 */
6c542047
JR
1034static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1035 u64 address, size_t size)
3fa43655
JR
1036{
1037 struct amd_iommu *iommu;
b00d3bcf 1038 struct iommu_cmd cmd;
cb41ed85 1039 int qdep;
3fa43655 1040
ea61cddb
JR
1041 qdep = dev_data->ats.qdep;
1042 iommu = amd_iommu_rlookup_table[dev_data->devid];
3fa43655 1043
ea61cddb 1044 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
b00d3bcf
JR
1045
1046 return iommu_queue_command(iommu, &cmd);
3fa43655
JR
1047}
1048
431b2a20 1049/*
431b2a20 1050 * Command send function for invalidating a device table entry
431b2a20 1051 */
6c542047 1052static int device_flush_dte(struct iommu_dev_data *dev_data)
a19ae1ec 1053{
3fa43655 1054 struct amd_iommu *iommu;
ee2fa743 1055 int ret;
a19ae1ec 1056
6c542047 1057 iommu = amd_iommu_rlookup_table[dev_data->devid];
a19ae1ec 1058
f62dda66 1059 ret = iommu_flush_dte(iommu, dev_data->devid);
cb41ed85
JR
1060 if (ret)
1061 return ret;
1062
ea61cddb 1063 if (dev_data->ats.enabled)
6c542047 1064 ret = device_flush_iotlb(dev_data, 0, ~0UL);
ee2fa743 1065
ee2fa743 1066 return ret;
a19ae1ec
JR
1067}
1068
431b2a20
JR
1069/*
1070 * TLB invalidation function which is called from the mapping functions.
1071 * It invalidates a single PTE if the range to flush is within a single
1072 * page. Otherwise it flushes the whole TLB of the IOMMU.
1073 */
17b124bf
JR
1074static void __domain_flush_pages(struct protection_domain *domain,
1075 u64 address, size_t size, int pde)
a19ae1ec 1076{
cb41ed85 1077 struct iommu_dev_data *dev_data;
11b6402c
JR
1078 struct iommu_cmd cmd;
1079 int ret = 0, i;
a19ae1ec 1080
11b6402c 1081 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
999ba417 1082
6de8ad9b
JR
1083 for (i = 0; i < amd_iommus_present; ++i) {
1084 if (!domain->dev_iommu[i])
1085 continue;
1086
1087 /*
1088 * Devices of this domain are behind this IOMMU
1089 * We need a TLB flush
1090 */
11b6402c 1091 ret |= iommu_queue_command(amd_iommus[i], &cmd);
6de8ad9b
JR
1092 }
1093
cb41ed85 1094 list_for_each_entry(dev_data, &domain->dev_list, list) {
cb41ed85 1095
ea61cddb 1096 if (!dev_data->ats.enabled)
cb41ed85
JR
1097 continue;
1098
6c542047 1099 ret |= device_flush_iotlb(dev_data, address, size);
cb41ed85
JR
1100 }
1101
11b6402c 1102 WARN_ON(ret);
6de8ad9b
JR
1103}
1104
17b124bf
JR
1105static void domain_flush_pages(struct protection_domain *domain,
1106 u64 address, size_t size)
6de8ad9b 1107{
17b124bf 1108 __domain_flush_pages(domain, address, size, 0);
a19ae1ec 1109}
b6c02715 1110
1c655773 1111/* Flush the whole IO/TLB for a given protection domain */
17b124bf 1112static void domain_flush_tlb(struct protection_domain *domain)
1c655773 1113{
17b124bf 1114 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
1c655773
JR
1115}
1116
42a49f96 1117/* Flush the whole IO/TLB for a given protection domain - including PDE */
17b124bf 1118static void domain_flush_tlb_pde(struct protection_domain *domain)
42a49f96 1119{
17b124bf 1120 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
42a49f96
CW
1121}
1122
17b124bf 1123static void domain_flush_complete(struct protection_domain *domain)
b00d3bcf 1124{
17b124bf 1125 int i;
18811f55 1126
17b124bf
JR
1127 for (i = 0; i < amd_iommus_present; ++i) {
1128 if (!domain->dev_iommu[i])
1129 continue;
bfd1be18 1130
17b124bf
JR
1131 /*
1132 * Devices of this domain are behind this IOMMU
1133 * We need to wait for completion of all commands.
1134 */
1135 iommu_completion_wait(amd_iommus[i]);
bfd1be18 1136 }
e394d72a
JR
1137}
1138
b00d3bcf 1139
09b42804 1140/*
b00d3bcf 1141 * This function flushes the DTEs for all devices in domain
09b42804 1142 */
17b124bf 1143static void domain_flush_devices(struct protection_domain *domain)
e394d72a 1144{
b00d3bcf 1145 struct iommu_dev_data *dev_data;
b26e81b8 1146
b00d3bcf 1147 list_for_each_entry(dev_data, &domain->dev_list, list)
6c542047 1148 device_flush_dte(dev_data);
a345b23b
JR
1149}
1150
431b2a20
JR
1151/****************************************************************************
1152 *
1153 * The functions below are used the create the page table mappings for
1154 * unity mapped regions.
1155 *
1156 ****************************************************************************/
1157
308973d3
JR
1158/*
1159 * This function is used to add another level to an IO page table. Adding
1160 * another level increases the size of the address space by 9 bits to a size up
1161 * to 64 bits.
1162 */
1163static bool increase_address_space(struct protection_domain *domain,
1164 gfp_t gfp)
1165{
1166 u64 *pte;
1167
1168 if (domain->mode == PAGE_MODE_6_LEVEL)
1169 /* address space already 64 bit large */
1170 return false;
1171
1172 pte = (void *)get_zeroed_page(gfp);
1173 if (!pte)
1174 return false;
1175
1176 *pte = PM_LEVEL_PDE(domain->mode,
1177 virt_to_phys(domain->pt_root));
1178 domain->pt_root = pte;
1179 domain->mode += 1;
1180 domain->updated = true;
1181
1182 return true;
1183}
1184
1185static u64 *alloc_pte(struct protection_domain *domain,
1186 unsigned long address,
cbb9d729 1187 unsigned long page_size,
308973d3
JR
1188 u64 **pte_page,
1189 gfp_t gfp)
1190{
cbb9d729 1191 int level, end_lvl;
308973d3 1192 u64 *pte, *page;
cbb9d729
JR
1193
1194 BUG_ON(!is_power_of_2(page_size));
308973d3
JR
1195
1196 while (address > PM_LEVEL_SIZE(domain->mode))
1197 increase_address_space(domain, gfp);
1198
cbb9d729
JR
1199 level = domain->mode - 1;
1200 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1201 address = PAGE_SIZE_ALIGN(address, page_size);
1202 end_lvl = PAGE_SIZE_LEVEL(page_size);
308973d3
JR
1203
1204 while (level > end_lvl) {
1205 if (!IOMMU_PTE_PRESENT(*pte)) {
1206 page = (u64 *)get_zeroed_page(gfp);
1207 if (!page)
1208 return NULL;
1209 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1210 }
1211
cbb9d729
JR
1212 /* No level skipping support yet */
1213 if (PM_PTE_LEVEL(*pte) != level)
1214 return NULL;
1215
308973d3
JR
1216 level -= 1;
1217
1218 pte = IOMMU_PTE_PAGE(*pte);
1219
1220 if (pte_page && level == end_lvl)
1221 *pte_page = pte;
1222
1223 pte = &pte[PM_LEVEL_INDEX(level, address)];
1224 }
1225
1226 return pte;
1227}
1228
1229/*
1230 * This function checks if there is a PTE for a given dma address. If
1231 * there is one, it returns the pointer to it.
1232 */
24cd7723 1233static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
308973d3
JR
1234{
1235 int level;
1236 u64 *pte;
1237
24cd7723
JR
1238 if (address > PM_LEVEL_SIZE(domain->mode))
1239 return NULL;
1240
1241 level = domain->mode - 1;
1242 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
308973d3 1243
24cd7723
JR
1244 while (level > 0) {
1245
1246 /* Not Present */
308973d3
JR
1247 if (!IOMMU_PTE_PRESENT(*pte))
1248 return NULL;
1249
24cd7723
JR
1250 /* Large PTE */
1251 if (PM_PTE_LEVEL(*pte) == 0x07) {
1252 unsigned long pte_mask, __pte;
1253
1254 /*
1255 * If we have a series of large PTEs, make
1256 * sure to return a pointer to the first one.
1257 */
1258 pte_mask = PTE_PAGE_SIZE(*pte);
1259 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1260 __pte = ((unsigned long)pte) & pte_mask;
1261
1262 return (u64 *)__pte;
1263 }
1264
1265 /* No level skipping support yet */
1266 if (PM_PTE_LEVEL(*pte) != level)
1267 return NULL;
1268
308973d3
JR
1269 level -= 1;
1270
24cd7723 1271 /* Walk to the next level */
308973d3
JR
1272 pte = IOMMU_PTE_PAGE(*pte);
1273 pte = &pte[PM_LEVEL_INDEX(level, address)];
308973d3
JR
1274 }
1275
1276 return pte;
1277}
1278
431b2a20
JR
1279/*
1280 * Generic mapping functions. It maps a physical address into a DMA
1281 * address space. It allocates the page table pages if necessary.
1282 * In the future it can be extended to a generic mapping function
1283 * supporting all features of AMD IOMMU page tables like level skipping
1284 * and full 64 bit address spaces.
1285 */
38e817fe
JR
1286static int iommu_map_page(struct protection_domain *dom,
1287 unsigned long bus_addr,
1288 unsigned long phys_addr,
abdc5eb3 1289 int prot,
cbb9d729 1290 unsigned long page_size)
bd0e5211 1291{
8bda3092 1292 u64 __pte, *pte;
cbb9d729 1293 int i, count;
abdc5eb3 1294
bad1cac2 1295 if (!(prot & IOMMU_PROT_MASK))
bd0e5211
JR
1296 return -EINVAL;
1297
cbb9d729
JR
1298 bus_addr = PAGE_ALIGN(bus_addr);
1299 phys_addr = PAGE_ALIGN(phys_addr);
1300 count = PAGE_SIZE_PTE_COUNT(page_size);
1301 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
1302
1303 for (i = 0; i < count; ++i)
1304 if (IOMMU_PTE_PRESENT(pte[i]))
1305 return -EBUSY;
bd0e5211 1306
cbb9d729
JR
1307 if (page_size > PAGE_SIZE) {
1308 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1309 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1310 } else
1311 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
bd0e5211 1312
bd0e5211
JR
1313 if (prot & IOMMU_PROT_IR)
1314 __pte |= IOMMU_PTE_IR;
1315 if (prot & IOMMU_PROT_IW)
1316 __pte |= IOMMU_PTE_IW;
1317
cbb9d729
JR
1318 for (i = 0; i < count; ++i)
1319 pte[i] = __pte;
bd0e5211 1320
04bfdd84
JR
1321 update_domain(dom);
1322
bd0e5211
JR
1323 return 0;
1324}
1325
24cd7723
JR
1326static unsigned long iommu_unmap_page(struct protection_domain *dom,
1327 unsigned long bus_addr,
1328 unsigned long page_size)
eb74ff6c 1329{
24cd7723
JR
1330 unsigned long long unmap_size, unmapped;
1331 u64 *pte;
1332
1333 BUG_ON(!is_power_of_2(page_size));
1334
1335 unmapped = 0;
eb74ff6c 1336
24cd7723
JR
1337 while (unmapped < page_size) {
1338
1339 pte = fetch_pte(dom, bus_addr);
1340
1341 if (!pte) {
1342 /*
1343 * No PTE for this address
1344 * move forward in 4kb steps
1345 */
1346 unmap_size = PAGE_SIZE;
1347 } else if (PM_PTE_LEVEL(*pte) == 0) {
1348 /* 4kb PTE found for this address */
1349 unmap_size = PAGE_SIZE;
1350 *pte = 0ULL;
1351 } else {
1352 int count, i;
1353
1354 /* Large PTE found which maps this address */
1355 unmap_size = PTE_PAGE_SIZE(*pte);
1356 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1357 for (i = 0; i < count; i++)
1358 pte[i] = 0ULL;
1359 }
1360
1361 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1362 unmapped += unmap_size;
1363 }
1364
1365 BUG_ON(!is_power_of_2(unmapped));
eb74ff6c 1366
24cd7723 1367 return unmapped;
eb74ff6c 1368}
eb74ff6c 1369
431b2a20
JR
1370/*
1371 * This function checks if a specific unity mapping entry is needed for
1372 * this specific IOMMU.
1373 */
bd0e5211
JR
1374static int iommu_for_unity_map(struct amd_iommu *iommu,
1375 struct unity_map_entry *entry)
1376{
1377 u16 bdf, i;
1378
1379 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1380 bdf = amd_iommu_alias_table[i];
1381 if (amd_iommu_rlookup_table[bdf] == iommu)
1382 return 1;
1383 }
1384
1385 return 0;
1386}
1387
431b2a20
JR
1388/*
1389 * This function actually applies the mapping to the page table of the
1390 * dma_ops domain.
1391 */
bd0e5211
JR
1392static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1393 struct unity_map_entry *e)
1394{
1395 u64 addr;
1396 int ret;
1397
1398 for (addr = e->address_start; addr < e->address_end;
1399 addr += PAGE_SIZE) {
abdc5eb3 1400 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
cbb9d729 1401 PAGE_SIZE);
bd0e5211
JR
1402 if (ret)
1403 return ret;
1404 /*
1405 * if unity mapping is in aperture range mark the page
1406 * as allocated in the aperture
1407 */
1408 if (addr < dma_dom->aperture_size)
c3239567 1409 __set_bit(addr >> PAGE_SHIFT,
384de729 1410 dma_dom->aperture[0]->bitmap);
bd0e5211
JR
1411 }
1412
1413 return 0;
1414}
1415
171e7b37
JR
1416/*
1417 * Init the unity mappings for a specific IOMMU in the system
1418 *
1419 * Basically iterates over all unity mapping entries and applies them to
1420 * the default domain DMA of that IOMMU if necessary.
1421 */
1422static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1423{
1424 struct unity_map_entry *entry;
1425 int ret;
1426
1427 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1428 if (!iommu_for_unity_map(iommu, entry))
1429 continue;
1430 ret = dma_ops_unity_map(iommu->default_dom, entry);
1431 if (ret)
1432 return ret;
1433 }
1434
1435 return 0;
1436}
1437
431b2a20
JR
1438/*
1439 * Inits the unity mappings required for a specific device
1440 */
bd0e5211
JR
1441static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1442 u16 devid)
1443{
1444 struct unity_map_entry *e;
1445 int ret;
1446
1447 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1448 if (!(devid >= e->devid_start && devid <= e->devid_end))
1449 continue;
1450 ret = dma_ops_unity_map(dma_dom, e);
1451 if (ret)
1452 return ret;
1453 }
1454
1455 return 0;
1456}
1457
431b2a20
JR
1458/****************************************************************************
1459 *
1460 * The next functions belong to the address allocator for the dma_ops
1461 * interface functions. They work like the allocators in the other IOMMU
1462 * drivers. Its basically a bitmap which marks the allocated pages in
1463 * the aperture. Maybe it could be enhanced in the future to a more
1464 * efficient allocator.
1465 *
1466 ****************************************************************************/
d3086444 1467
431b2a20 1468/*
384de729 1469 * The address allocator core functions.
431b2a20
JR
1470 *
1471 * called with domain->lock held
1472 */
384de729 1473
171e7b37
JR
1474/*
1475 * Used to reserve address ranges in the aperture (e.g. for exclusion
1476 * ranges.
1477 */
1478static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1479 unsigned long start_page,
1480 unsigned int pages)
1481{
1482 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1483
1484 if (start_page + pages > last_page)
1485 pages = last_page - start_page;
1486
1487 for (i = start_page; i < start_page + pages; ++i) {
1488 int index = i / APERTURE_RANGE_PAGES;
1489 int page = i % APERTURE_RANGE_PAGES;
1490 __set_bit(page, dom->aperture[index]->bitmap);
1491 }
1492}
1493
9cabe89b
JR
1494/*
1495 * This function is used to add a new aperture range to an existing
1496 * aperture in case of dma_ops domain allocation or address allocation
1497 * failure.
1498 */
576175c2 1499static int alloc_new_range(struct dma_ops_domain *dma_dom,
9cabe89b
JR
1500 bool populate, gfp_t gfp)
1501{
1502 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
576175c2 1503 struct amd_iommu *iommu;
17f5b569 1504 unsigned long i, old_size;
9cabe89b 1505
f5e9705c
JR
1506#ifdef CONFIG_IOMMU_STRESS
1507 populate = false;
1508#endif
1509
9cabe89b
JR
1510 if (index >= APERTURE_MAX_RANGES)
1511 return -ENOMEM;
1512
1513 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1514 if (!dma_dom->aperture[index])
1515 return -ENOMEM;
1516
1517 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1518 if (!dma_dom->aperture[index]->bitmap)
1519 goto out_free;
1520
1521 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1522
1523 if (populate) {
1524 unsigned long address = dma_dom->aperture_size;
1525 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1526 u64 *pte, *pte_page;
1527
1528 for (i = 0; i < num_ptes; ++i) {
cbb9d729 1529 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
9cabe89b
JR
1530 &pte_page, gfp);
1531 if (!pte)
1532 goto out_free;
1533
1534 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1535
1536 address += APERTURE_RANGE_SIZE / 64;
1537 }
1538 }
1539
17f5b569 1540 old_size = dma_dom->aperture_size;
9cabe89b
JR
1541 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1542
17f5b569
JR
1543 /* Reserve address range used for MSI messages */
1544 if (old_size < MSI_ADDR_BASE_LO &&
1545 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1546 unsigned long spage;
1547 int pages;
1548
1549 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1550 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1551
1552 dma_ops_reserve_addresses(dma_dom, spage, pages);
1553 }
1554
b595076a 1555 /* Initialize the exclusion range if necessary */
576175c2
JR
1556 for_each_iommu(iommu) {
1557 if (iommu->exclusion_start &&
1558 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1559 && iommu->exclusion_start < dma_dom->aperture_size) {
1560 unsigned long startpage;
1561 int pages = iommu_num_pages(iommu->exclusion_start,
1562 iommu->exclusion_length,
1563 PAGE_SIZE);
1564 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1565 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1566 }
00cd122a
JR
1567 }
1568
1569 /*
1570 * Check for areas already mapped as present in the new aperture
1571 * range and mark those pages as reserved in the allocator. Such
1572 * mappings may already exist as a result of requested unity
1573 * mappings for devices.
1574 */
1575 for (i = dma_dom->aperture[index]->offset;
1576 i < dma_dom->aperture_size;
1577 i += PAGE_SIZE) {
24cd7723 1578 u64 *pte = fetch_pte(&dma_dom->domain, i);
00cd122a
JR
1579 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1580 continue;
1581
fcd0861d 1582 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
00cd122a
JR
1583 }
1584
04bfdd84
JR
1585 update_domain(&dma_dom->domain);
1586
9cabe89b
JR
1587 return 0;
1588
1589out_free:
04bfdd84
JR
1590 update_domain(&dma_dom->domain);
1591
9cabe89b
JR
1592 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1593
1594 kfree(dma_dom->aperture[index]);
1595 dma_dom->aperture[index] = NULL;
1596
1597 return -ENOMEM;
1598}
1599
384de729
JR
1600static unsigned long dma_ops_area_alloc(struct device *dev,
1601 struct dma_ops_domain *dom,
1602 unsigned int pages,
1603 unsigned long align_mask,
1604 u64 dma_mask,
1605 unsigned long start)
1606{
803b8cb4 1607 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
384de729
JR
1608 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1609 int i = start >> APERTURE_RANGE_SHIFT;
1610 unsigned long boundary_size;
1611 unsigned long address = -1;
1612 unsigned long limit;
1613
803b8cb4
JR
1614 next_bit >>= PAGE_SHIFT;
1615
384de729
JR
1616 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1617 PAGE_SIZE) >> PAGE_SHIFT;
1618
1619 for (;i < max_index; ++i) {
1620 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1621
1622 if (dom->aperture[i]->offset >= dma_mask)
1623 break;
1624
1625 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1626 dma_mask >> PAGE_SHIFT);
1627
1628 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1629 limit, next_bit, pages, 0,
1630 boundary_size, align_mask);
1631 if (address != -1) {
1632 address = dom->aperture[i]->offset +
1633 (address << PAGE_SHIFT);
803b8cb4 1634 dom->next_address = address + (pages << PAGE_SHIFT);
384de729
JR
1635 break;
1636 }
1637
1638 next_bit = 0;
1639 }
1640
1641 return address;
1642}
1643
d3086444
JR
1644static unsigned long dma_ops_alloc_addresses(struct device *dev,
1645 struct dma_ops_domain *dom,
6d4f343f 1646 unsigned int pages,
832a90c3
JR
1647 unsigned long align_mask,
1648 u64 dma_mask)
d3086444 1649{
d3086444 1650 unsigned long address;
d3086444 1651
fe16f088
JR
1652#ifdef CONFIG_IOMMU_STRESS
1653 dom->next_address = 0;
1654 dom->need_flush = true;
1655#endif
d3086444 1656
384de729 1657 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
803b8cb4 1658 dma_mask, dom->next_address);
d3086444 1659
1c655773 1660 if (address == -1) {
803b8cb4 1661 dom->next_address = 0;
384de729
JR
1662 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1663 dma_mask, 0);
1c655773
JR
1664 dom->need_flush = true;
1665 }
d3086444 1666
384de729 1667 if (unlikely(address == -1))
8fd524b3 1668 address = DMA_ERROR_CODE;
d3086444
JR
1669
1670 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1671
1672 return address;
1673}
1674
431b2a20
JR
1675/*
1676 * The address free function.
1677 *
1678 * called with domain->lock held
1679 */
d3086444
JR
1680static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1681 unsigned long address,
1682 unsigned int pages)
1683{
384de729
JR
1684 unsigned i = address >> APERTURE_RANGE_SHIFT;
1685 struct aperture_range *range = dom->aperture[i];
80be308d 1686
384de729
JR
1687 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1688
47bccd6b
JR
1689#ifdef CONFIG_IOMMU_STRESS
1690 if (i < 4)
1691 return;
1692#endif
80be308d 1693
803b8cb4 1694 if (address >= dom->next_address)
80be308d 1695 dom->need_flush = true;
384de729
JR
1696
1697 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
803b8cb4 1698
a66022c4 1699 bitmap_clear(range->bitmap, address, pages);
384de729 1700
d3086444
JR
1701}
1702
431b2a20
JR
1703/****************************************************************************
1704 *
1705 * The next functions belong to the domain allocation. A domain is
1706 * allocated for every IOMMU as the default domain. If device isolation
1707 * is enabled, every device get its own domain. The most important thing
1708 * about domains is the page table mapping the DMA address space they
1709 * contain.
1710 *
1711 ****************************************************************************/
1712
aeb26f55
JR
1713/*
1714 * This function adds a protection domain to the global protection domain list
1715 */
1716static void add_domain_to_list(struct protection_domain *domain)
1717{
1718 unsigned long flags;
1719
1720 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1721 list_add(&domain->list, &amd_iommu_pd_list);
1722 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1723}
1724
1725/*
1726 * This function removes a protection domain to the global
1727 * protection domain list
1728 */
1729static void del_domain_from_list(struct protection_domain *domain)
1730{
1731 unsigned long flags;
1732
1733 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1734 list_del(&domain->list);
1735 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1736}
1737
ec487d1a
JR
1738static u16 domain_id_alloc(void)
1739{
1740 unsigned long flags;
1741 int id;
1742
1743 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1744 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1745 BUG_ON(id == 0);
1746 if (id > 0 && id < MAX_DOMAIN_ID)
1747 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1748 else
1749 id = 0;
1750 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1751
1752 return id;
1753}
1754
a2acfb75
JR
1755static void domain_id_free(int id)
1756{
1757 unsigned long flags;
1758
1759 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1760 if (id > 0 && id < MAX_DOMAIN_ID)
1761 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1762 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1763}
a2acfb75 1764
86db2e5d 1765static void free_pagetable(struct protection_domain *domain)
ec487d1a
JR
1766{
1767 int i, j;
1768 u64 *p1, *p2, *p3;
1769
86db2e5d 1770 p1 = domain->pt_root;
ec487d1a
JR
1771
1772 if (!p1)
1773 return;
1774
1775 for (i = 0; i < 512; ++i) {
1776 if (!IOMMU_PTE_PRESENT(p1[i]))
1777 continue;
1778
1779 p2 = IOMMU_PTE_PAGE(p1[i]);
3cc3d84b 1780 for (j = 0; j < 512; ++j) {
ec487d1a
JR
1781 if (!IOMMU_PTE_PRESENT(p2[j]))
1782 continue;
1783 p3 = IOMMU_PTE_PAGE(p2[j]);
1784 free_page((unsigned long)p3);
1785 }
1786
1787 free_page((unsigned long)p2);
1788 }
1789
1790 free_page((unsigned long)p1);
86db2e5d
JR
1791
1792 domain->pt_root = NULL;
ec487d1a
JR
1793}
1794
b16137b1
JR
1795static void free_gcr3_tbl_level1(u64 *tbl)
1796{
1797 u64 *ptr;
1798 int i;
1799
1800 for (i = 0; i < 512; ++i) {
1801 if (!(tbl[i] & GCR3_VALID))
1802 continue;
1803
1804 ptr = __va(tbl[i] & PAGE_MASK);
1805
1806 free_page((unsigned long)ptr);
1807 }
1808}
1809
1810static void free_gcr3_tbl_level2(u64 *tbl)
1811{
1812 u64 *ptr;
1813 int i;
1814
1815 for (i = 0; i < 512; ++i) {
1816 if (!(tbl[i] & GCR3_VALID))
1817 continue;
1818
1819 ptr = __va(tbl[i] & PAGE_MASK);
1820
1821 free_gcr3_tbl_level1(ptr);
1822 }
1823}
1824
52815b75
JR
1825static void free_gcr3_table(struct protection_domain *domain)
1826{
b16137b1
JR
1827 if (domain->glx == 2)
1828 free_gcr3_tbl_level2(domain->gcr3_tbl);
1829 else if (domain->glx == 1)
1830 free_gcr3_tbl_level1(domain->gcr3_tbl);
1831 else if (domain->glx != 0)
1832 BUG();
1833
52815b75
JR
1834 free_page((unsigned long)domain->gcr3_tbl);
1835}
1836
431b2a20
JR
1837/*
1838 * Free a domain, only used if something went wrong in the
1839 * allocation path and we need to free an already allocated page table
1840 */
ec487d1a
JR
1841static void dma_ops_domain_free(struct dma_ops_domain *dom)
1842{
384de729
JR
1843 int i;
1844
ec487d1a
JR
1845 if (!dom)
1846 return;
1847
aeb26f55
JR
1848 del_domain_from_list(&dom->domain);
1849
86db2e5d 1850 free_pagetable(&dom->domain);
ec487d1a 1851
384de729
JR
1852 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1853 if (!dom->aperture[i])
1854 continue;
1855 free_page((unsigned long)dom->aperture[i]->bitmap);
1856 kfree(dom->aperture[i]);
1857 }
ec487d1a
JR
1858
1859 kfree(dom);
1860}
1861
431b2a20
JR
1862/*
1863 * Allocates a new protection domain usable for the dma_ops functions.
b595076a 1864 * It also initializes the page table and the address allocator data
431b2a20
JR
1865 * structures required for the dma_ops interface
1866 */
87a64d52 1867static struct dma_ops_domain *dma_ops_domain_alloc(void)
ec487d1a
JR
1868{
1869 struct dma_ops_domain *dma_dom;
ec487d1a
JR
1870
1871 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1872 if (!dma_dom)
1873 return NULL;
1874
1875 spin_lock_init(&dma_dom->domain.lock);
1876
1877 dma_dom->domain.id = domain_id_alloc();
1878 if (dma_dom->domain.id == 0)
1879 goto free_dma_dom;
7c392cbe 1880 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
8f7a017c 1881 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
ec487d1a 1882 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
9fdb19d6 1883 dma_dom->domain.flags = PD_DMA_OPS_MASK;
ec487d1a
JR
1884 dma_dom->domain.priv = dma_dom;
1885 if (!dma_dom->domain.pt_root)
1886 goto free_dma_dom;
ec487d1a 1887
1c655773 1888 dma_dom->need_flush = false;
bd60b735 1889 dma_dom->target_dev = 0xffff;
1c655773 1890
aeb26f55
JR
1891 add_domain_to_list(&dma_dom->domain);
1892
576175c2 1893 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
ec487d1a 1894 goto free_dma_dom;
ec487d1a 1895
431b2a20 1896 /*
ec487d1a
JR
1897 * mark the first page as allocated so we never return 0 as
1898 * a valid dma-address. So we can use 0 as error value
431b2a20 1899 */
384de729 1900 dma_dom->aperture[0]->bitmap[0] = 1;
803b8cb4 1901 dma_dom->next_address = 0;
ec487d1a 1902
ec487d1a
JR
1903
1904 return dma_dom;
1905
1906free_dma_dom:
1907 dma_ops_domain_free(dma_dom);
1908
1909 return NULL;
1910}
1911
5b28df6f
JR
1912/*
1913 * little helper function to check whether a given protection domain is a
1914 * dma_ops domain
1915 */
1916static bool dma_ops_domain(struct protection_domain *domain)
1917{
1918 return domain->flags & PD_DMA_OPS_MASK;
1919}
1920
fd7b5535 1921static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
b20ac0d4 1922{
132bd68f 1923 u64 pte_root = 0;
ee6c2868 1924 u64 flags = 0;
863c74eb 1925
132bd68f
JR
1926 if (domain->mode != PAGE_MODE_NONE)
1927 pte_root = virt_to_phys(domain->pt_root);
1928
38ddf41b
JR
1929 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1930 << DEV_ENTRY_MODE_SHIFT;
1931 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
b20ac0d4 1932
ee6c2868
JR
1933 flags = amd_iommu_dev_table[devid].data[1];
1934
fd7b5535
JR
1935 if (ats)
1936 flags |= DTE_FLAG_IOTLB;
1937
52815b75
JR
1938 if (domain->flags & PD_IOMMUV2_MASK) {
1939 u64 gcr3 = __pa(domain->gcr3_tbl);
1940 u64 glx = domain->glx;
1941 u64 tmp;
1942
1943 pte_root |= DTE_FLAG_GV;
1944 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1945
1946 /* First mask out possible old values for GCR3 table */
1947 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1948 flags &= ~tmp;
1949
1950 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1951 flags &= ~tmp;
1952
1953 /* Encode GCR3 table into DTE */
1954 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1955 pte_root |= tmp;
1956
1957 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1958 flags |= tmp;
1959
1960 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1961 flags |= tmp;
1962 }
1963
ee6c2868
JR
1964 flags &= ~(0xffffUL);
1965 flags |= domain->id;
1966
1967 amd_iommu_dev_table[devid].data[1] = flags;
1968 amd_iommu_dev_table[devid].data[0] = pte_root;
15898bbc
JR
1969}
1970
1971static void clear_dte_entry(u16 devid)
1972{
15898bbc
JR
1973 /* remove entry from the device table seen by the hardware */
1974 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1975 amd_iommu_dev_table[devid].data[1] = 0;
15898bbc
JR
1976
1977 amd_iommu_apply_erratum_63(devid);
7f760ddd
JR
1978}
1979
ec9e79ef
JR
1980static void do_attach(struct iommu_dev_data *dev_data,
1981 struct protection_domain *domain)
7f760ddd 1982{
7f760ddd 1983 struct amd_iommu *iommu;
ec9e79ef 1984 bool ats;
fd7b5535 1985
ec9e79ef
JR
1986 iommu = amd_iommu_rlookup_table[dev_data->devid];
1987 ats = dev_data->ats.enabled;
7f760ddd
JR
1988
1989 /* Update data structures */
1990 dev_data->domain = domain;
1991 list_add(&dev_data->list, &domain->dev_list);
f62dda66 1992 set_dte_entry(dev_data->devid, domain, ats);
7f760ddd
JR
1993
1994 /* Do reference counting */
1995 domain->dev_iommu[iommu->index] += 1;
1996 domain->dev_cnt += 1;
1997
1998 /* Flush the DTE entry */
6c542047 1999 device_flush_dte(dev_data);
7f760ddd
JR
2000}
2001
ec9e79ef 2002static void do_detach(struct iommu_dev_data *dev_data)
7f760ddd 2003{
7f760ddd 2004 struct amd_iommu *iommu;
7f760ddd 2005
ec9e79ef 2006 iommu = amd_iommu_rlookup_table[dev_data->devid];
15898bbc
JR
2007
2008 /* decrease reference counters */
7f760ddd
JR
2009 dev_data->domain->dev_iommu[iommu->index] -= 1;
2010 dev_data->domain->dev_cnt -= 1;
2011
2012 /* Update data structures */
2013 dev_data->domain = NULL;
2014 list_del(&dev_data->list);
f62dda66 2015 clear_dte_entry(dev_data->devid);
15898bbc 2016
7f760ddd 2017 /* Flush the DTE entry */
6c542047 2018 device_flush_dte(dev_data);
2b681faf
JR
2019}
2020
2021/*
2022 * If a device is not yet associated with a domain, this function does
2023 * assigns it visible for the hardware
2024 */
ec9e79ef 2025static int __attach_device(struct iommu_dev_data *dev_data,
15898bbc 2026 struct protection_domain *domain)
2b681faf 2027{
84fe6c19 2028 int ret;
657cbb6b 2029
2b681faf
JR
2030 /* lock domain */
2031 spin_lock(&domain->lock);
2032
71f77580
JR
2033 if (dev_data->alias_data != NULL) {
2034 struct iommu_dev_data *alias_data = dev_data->alias_data;
15898bbc 2035
2b02b091
JR
2036 /* Some sanity checks */
2037 ret = -EBUSY;
2038 if (alias_data->domain != NULL &&
2039 alias_data->domain != domain)
2040 goto out_unlock;
eba6ac60 2041
2b02b091
JR
2042 if (dev_data->domain != NULL &&
2043 dev_data->domain != domain)
2044 goto out_unlock;
15898bbc 2045
2b02b091 2046 /* Do real assignment */
7f760ddd 2047 if (alias_data->domain == NULL)
ec9e79ef 2048 do_attach(alias_data, domain);
24100055
JR
2049
2050 atomic_inc(&alias_data->bind);
657cbb6b 2051 }
15898bbc 2052
7f760ddd 2053 if (dev_data->domain == NULL)
ec9e79ef 2054 do_attach(dev_data, domain);
eba6ac60 2055
24100055
JR
2056 atomic_inc(&dev_data->bind);
2057
84fe6c19
JL
2058 ret = 0;
2059
2060out_unlock:
2061
eba6ac60
JR
2062 /* ready */
2063 spin_unlock(&domain->lock);
15898bbc 2064
84fe6c19 2065 return ret;
0feae533 2066}
b20ac0d4 2067
52815b75
JR
2068
2069static void pdev_iommuv2_disable(struct pci_dev *pdev)
2070{
2071 pci_disable_ats(pdev);
2072 pci_disable_pri(pdev);
2073 pci_disable_pasid(pdev);
2074}
2075
6a113ddc
JR
2076/* FIXME: Change generic reset-function to do the same */
2077static int pri_reset_while_enabled(struct pci_dev *pdev)
2078{
2079 u16 control;
2080 int pos;
2081
46277b75 2082 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
6a113ddc
JR
2083 if (!pos)
2084 return -EINVAL;
2085
46277b75
JR
2086 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2087 control |= PCI_PRI_CTRL_RESET;
2088 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
6a113ddc
JR
2089
2090 return 0;
2091}
2092
52815b75
JR
2093static int pdev_iommuv2_enable(struct pci_dev *pdev)
2094{
6a113ddc
JR
2095 bool reset_enable;
2096 int reqs, ret;
2097
2098 /* FIXME: Hardcode number of outstanding requests for now */
2099 reqs = 32;
2100 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2101 reqs = 1;
2102 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
52815b75
JR
2103
2104 /* Only allow access to user-accessible pages */
2105 ret = pci_enable_pasid(pdev, 0);
2106 if (ret)
2107 goto out_err;
2108
2109 /* First reset the PRI state of the device */
2110 ret = pci_reset_pri(pdev);
2111 if (ret)
2112 goto out_err;
2113
6a113ddc
JR
2114 /* Enable PRI */
2115 ret = pci_enable_pri(pdev, reqs);
52815b75
JR
2116 if (ret)
2117 goto out_err;
2118
6a113ddc
JR
2119 if (reset_enable) {
2120 ret = pri_reset_while_enabled(pdev);
2121 if (ret)
2122 goto out_err;
2123 }
2124
52815b75
JR
2125 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2126 if (ret)
2127 goto out_err;
2128
2129 return 0;
2130
2131out_err:
2132 pci_disable_pri(pdev);
2133 pci_disable_pasid(pdev);
2134
2135 return ret;
2136}
2137
c99afa25 2138/* FIXME: Move this to PCI code */
a3b93121 2139#define PCI_PRI_TLP_OFF (1 << 15)
c99afa25 2140
98f1ad25 2141static bool pci_pri_tlp_required(struct pci_dev *pdev)
c99afa25 2142{
a3b93121 2143 u16 status;
c99afa25
JR
2144 int pos;
2145
46277b75 2146 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
c99afa25
JR
2147 if (!pos)
2148 return false;
2149
a3b93121 2150 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
c99afa25 2151
a3b93121 2152 return (status & PCI_PRI_TLP_OFF) ? true : false;
c99afa25
JR
2153}
2154
407d733e
JR
2155/*
2156 * If a device is not yet associated with a domain, this function does
2157 * assigns it visible for the hardware
2158 */
15898bbc
JR
2159static int attach_device(struct device *dev,
2160 struct protection_domain *domain)
0feae533 2161{
fd7b5535 2162 struct pci_dev *pdev = to_pci_dev(dev);
ea61cddb 2163 struct iommu_dev_data *dev_data;
eba6ac60 2164 unsigned long flags;
15898bbc 2165 int ret;
eba6ac60 2166
ea61cddb
JR
2167 dev_data = get_dev_data(dev);
2168
52815b75
JR
2169 if (domain->flags & PD_IOMMUV2_MASK) {
2170 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2171 return -EINVAL;
2172
2173 if (pdev_iommuv2_enable(pdev) != 0)
2174 return -EINVAL;
2175
2176 dev_data->ats.enabled = true;
2177 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
c99afa25 2178 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
52815b75
JR
2179 } else if (amd_iommu_iotlb_sup &&
2180 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
ea61cddb
JR
2181 dev_data->ats.enabled = true;
2182 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2183 }
fd7b5535 2184
eba6ac60 2185 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
ec9e79ef 2186 ret = __attach_device(dev_data, domain);
b20ac0d4
JR
2187 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2188
0feae533
JR
2189 /*
2190 * We might boot into a crash-kernel here. The crashed kernel
2191 * left the caches in the IOMMU dirty. So we have to flush
2192 * here to evict all dirty stuff.
2193 */
17b124bf 2194 domain_flush_tlb_pde(domain);
15898bbc
JR
2195
2196 return ret;
b20ac0d4
JR
2197}
2198
355bf553
JR
2199/*
2200 * Removes a device from a protection domain (unlocked)
2201 */
ec9e79ef 2202static void __detach_device(struct iommu_dev_data *dev_data)
355bf553 2203{
2ca76279 2204 struct protection_domain *domain;
7c392cbe 2205 unsigned long flags;
c4596114 2206
7f760ddd 2207 BUG_ON(!dev_data->domain);
355bf553 2208
2ca76279
JR
2209 domain = dev_data->domain;
2210
2211 spin_lock_irqsave(&domain->lock, flags);
24100055 2212
71f77580
JR
2213 if (dev_data->alias_data != NULL) {
2214 struct iommu_dev_data *alias_data = dev_data->alias_data;
2215
7f760ddd 2216 if (atomic_dec_and_test(&alias_data->bind))
ec9e79ef 2217 do_detach(alias_data);
24100055
JR
2218 }
2219
7f760ddd 2220 if (atomic_dec_and_test(&dev_data->bind))
ec9e79ef 2221 do_detach(dev_data);
7f760ddd 2222
2ca76279 2223 spin_unlock_irqrestore(&domain->lock, flags);
21129f78
JR
2224
2225 /*
2226 * If we run in passthrough mode the device must be assigned to the
d3ad9373
JR
2227 * passthrough domain if it is detached from any other domain.
2228 * Make sure we can deassign from the pt_domain itself.
21129f78 2229 */
5abcdba4 2230 if (dev_data->passthrough &&
d3ad9373 2231 (dev_data->domain == NULL && domain != pt_domain))
ec9e79ef 2232 __attach_device(dev_data, pt_domain);
355bf553
JR
2233}
2234
2235/*
2236 * Removes a device from a protection domain (with devtable_lock held)
2237 */
15898bbc 2238static void detach_device(struct device *dev)
355bf553 2239{
52815b75 2240 struct protection_domain *domain;
ea61cddb 2241 struct iommu_dev_data *dev_data;
355bf553
JR
2242 unsigned long flags;
2243
ec9e79ef 2244 dev_data = get_dev_data(dev);
52815b75 2245 domain = dev_data->domain;
ec9e79ef 2246
355bf553
JR
2247 /* lock device table */
2248 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
ec9e79ef 2249 __detach_device(dev_data);
355bf553 2250 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
fd7b5535 2251
52815b75
JR
2252 if (domain->flags & PD_IOMMUV2_MASK)
2253 pdev_iommuv2_disable(to_pci_dev(dev));
2254 else if (dev_data->ats.enabled)
ea61cddb 2255 pci_disable_ats(to_pci_dev(dev));
52815b75
JR
2256
2257 dev_data->ats.enabled = false;
355bf553 2258}
e275a2a0 2259
15898bbc
JR
2260/*
2261 * Find out the protection domain structure for a given PCI device. This
2262 * will give us the pointer to the page table root for example.
2263 */
2264static struct protection_domain *domain_for_device(struct device *dev)
2265{
71f77580 2266 struct iommu_dev_data *dev_data;
2b02b091 2267 struct protection_domain *dom = NULL;
15898bbc 2268 unsigned long flags;
15898bbc 2269
657cbb6b 2270 dev_data = get_dev_data(dev);
15898bbc 2271
2b02b091
JR
2272 if (dev_data->domain)
2273 return dev_data->domain;
15898bbc 2274
71f77580
JR
2275 if (dev_data->alias_data != NULL) {
2276 struct iommu_dev_data *alias_data = dev_data->alias_data;
2b02b091
JR
2277
2278 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2279 if (alias_data->domain != NULL) {
2280 __attach_device(dev_data, alias_data->domain);
2281 dom = alias_data->domain;
2282 }
2283 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2284 }
15898bbc
JR
2285
2286 return dom;
2287}
2288
e275a2a0
JR
2289static int device_change_notifier(struct notifier_block *nb,
2290 unsigned long action, void *data)
2291{
e275a2a0 2292 struct dma_ops_domain *dma_domain;
5abcdba4
JR
2293 struct protection_domain *domain;
2294 struct iommu_dev_data *dev_data;
2295 struct device *dev = data;
e275a2a0 2296 struct amd_iommu *iommu;
1ac4cbbc 2297 unsigned long flags;
5abcdba4 2298 u16 devid;
e275a2a0 2299
98fc5a69
JR
2300 if (!check_device(dev))
2301 return 0;
e275a2a0 2302
5abcdba4
JR
2303 devid = get_device_id(dev);
2304 iommu = amd_iommu_rlookup_table[devid];
2305 dev_data = get_dev_data(dev);
e275a2a0
JR
2306
2307 switch (action) {
c1eee67b 2308 case BUS_NOTIFY_UNBOUND_DRIVER:
657cbb6b
JR
2309
2310 domain = domain_for_device(dev);
2311
e275a2a0
JR
2312 if (!domain)
2313 goto out;
5abcdba4 2314 if (dev_data->passthrough)
a1ca331c 2315 break;
15898bbc 2316 detach_device(dev);
1ac4cbbc
JR
2317 break;
2318 case BUS_NOTIFY_ADD_DEVICE:
657cbb6b
JR
2319
2320 iommu_init_device(dev);
2321
2c9195e9
JR
2322 /*
2323 * dev_data is still NULL and
2324 * got initialized in iommu_init_device
2325 */
2326 dev_data = get_dev_data(dev);
2327
2328 if (iommu_pass_through || dev_data->iommu_v2) {
2329 dev_data->passthrough = true;
2330 attach_device(dev, pt_domain);
2331 break;
2332 }
2333
657cbb6b
JR
2334 domain = domain_for_device(dev);
2335
1ac4cbbc
JR
2336 /* allocate a protection domain if a device is added */
2337 dma_domain = find_protection_domain(devid);
2338 if (dma_domain)
2339 goto out;
87a64d52 2340 dma_domain = dma_ops_domain_alloc();
1ac4cbbc
JR
2341 if (!dma_domain)
2342 goto out;
2343 dma_domain->target_dev = devid;
2344
2345 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2346 list_add_tail(&dma_domain->list, &iommu_pd_list);
2347 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2348
ac1534a5
JR
2349 dev_data = get_dev_data(dev);
2350
2c9195e9 2351 dev->archdata.dma_ops = &amd_iommu_dma_ops;
ac1534a5 2352
e275a2a0 2353 break;
657cbb6b
JR
2354 case BUS_NOTIFY_DEL_DEVICE:
2355
2356 iommu_uninit_device(dev);
2357
e275a2a0
JR
2358 default:
2359 goto out;
2360 }
2361
e275a2a0
JR
2362 iommu_completion_wait(iommu);
2363
2364out:
2365 return 0;
2366}
2367
b25ae679 2368static struct notifier_block device_nb = {
e275a2a0
JR
2369 .notifier_call = device_change_notifier,
2370};
355bf553 2371
8638c491
JR
2372void amd_iommu_init_notifier(void)
2373{
2374 bus_register_notifier(&pci_bus_type, &device_nb);
2375}
2376
431b2a20
JR
2377/*****************************************************************************
2378 *
2379 * The next functions belong to the dma_ops mapping/unmapping code.
2380 *
2381 *****************************************************************************/
2382
2383/*
2384 * In the dma_ops path we only have the struct device. This function
2385 * finds the corresponding IOMMU, the protection domain and the
2386 * requestor id for a given device.
2387 * If the device is not yet associated with a domain this is also done
2388 * in this function.
2389 */
94f6d190 2390static struct protection_domain *get_domain(struct device *dev)
b20ac0d4 2391{
94f6d190 2392 struct protection_domain *domain;
b20ac0d4 2393 struct dma_ops_domain *dma_dom;
94f6d190 2394 u16 devid = get_device_id(dev);
b20ac0d4 2395
f99c0f1c 2396 if (!check_device(dev))
94f6d190 2397 return ERR_PTR(-EINVAL);
b20ac0d4 2398
94f6d190
JR
2399 domain = domain_for_device(dev);
2400 if (domain != NULL && !dma_ops_domain(domain))
2401 return ERR_PTR(-EBUSY);
f99c0f1c 2402
94f6d190
JR
2403 if (domain != NULL)
2404 return domain;
b20ac0d4 2405
15898bbc 2406 /* Device not bount yet - bind it */
94f6d190 2407 dma_dom = find_protection_domain(devid);
15898bbc 2408 if (!dma_dom)
94f6d190
JR
2409 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2410 attach_device(dev, &dma_dom->domain);
15898bbc 2411 DUMP_printk("Using protection domain %d for device %s\n",
94f6d190 2412 dma_dom->domain.id, dev_name(dev));
f91ba190 2413
94f6d190 2414 return &dma_dom->domain;
b20ac0d4
JR
2415}
2416
04bfdd84
JR
2417static void update_device_table(struct protection_domain *domain)
2418{
492667da 2419 struct iommu_dev_data *dev_data;
04bfdd84 2420
ea61cddb
JR
2421 list_for_each_entry(dev_data, &domain->dev_list, list)
2422 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
04bfdd84
JR
2423}
2424
2425static void update_domain(struct protection_domain *domain)
2426{
2427 if (!domain->updated)
2428 return;
2429
2430 update_device_table(domain);
17b124bf
JR
2431
2432 domain_flush_devices(domain);
2433 domain_flush_tlb_pde(domain);
04bfdd84
JR
2434
2435 domain->updated = false;
2436}
2437
8bda3092
JR
2438/*
2439 * This function fetches the PTE for a given address in the aperture
2440 */
2441static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2442 unsigned long address)
2443{
384de729 2444 struct aperture_range *aperture;
8bda3092
JR
2445 u64 *pte, *pte_page;
2446
384de729
JR
2447 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2448 if (!aperture)
2449 return NULL;
2450
2451 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
8bda3092 2452 if (!pte) {
cbb9d729 2453 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
abdc5eb3 2454 GFP_ATOMIC);
384de729
JR
2455 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2456 } else
8c8c143c 2457 pte += PM_LEVEL_INDEX(0, address);
8bda3092 2458
04bfdd84 2459 update_domain(&dom->domain);
8bda3092
JR
2460
2461 return pte;
2462}
2463
431b2a20
JR
2464/*
2465 * This is the generic map function. It maps one 4kb page at paddr to
2466 * the given address in the DMA address space for the domain.
2467 */
680525e0 2468static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
cb76c322
JR
2469 unsigned long address,
2470 phys_addr_t paddr,
2471 int direction)
2472{
2473 u64 *pte, __pte;
2474
2475 WARN_ON(address > dom->aperture_size);
2476
2477 paddr &= PAGE_MASK;
2478
8bda3092 2479 pte = dma_ops_get_pte(dom, address);
53812c11 2480 if (!pte)
8fd524b3 2481 return DMA_ERROR_CODE;
cb76c322
JR
2482
2483 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2484
2485 if (direction == DMA_TO_DEVICE)
2486 __pte |= IOMMU_PTE_IR;
2487 else if (direction == DMA_FROM_DEVICE)
2488 __pte |= IOMMU_PTE_IW;
2489 else if (direction == DMA_BIDIRECTIONAL)
2490 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2491
2492 WARN_ON(*pte);
2493
2494 *pte = __pte;
2495
2496 return (dma_addr_t)address;
2497}
2498
431b2a20
JR
2499/*
2500 * The generic unmapping function for on page in the DMA address space.
2501 */
680525e0 2502static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
cb76c322
JR
2503 unsigned long address)
2504{
384de729 2505 struct aperture_range *aperture;
cb76c322
JR
2506 u64 *pte;
2507
2508 if (address >= dom->aperture_size)
2509 return;
2510
384de729
JR
2511 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2512 if (!aperture)
2513 return;
2514
2515 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2516 if (!pte)
2517 return;
cb76c322 2518
8c8c143c 2519 pte += PM_LEVEL_INDEX(0, address);
cb76c322
JR
2520
2521 WARN_ON(!*pte);
2522
2523 *pte = 0ULL;
2524}
2525
431b2a20
JR
2526/*
2527 * This function contains common code for mapping of a physically
24f81160
JR
2528 * contiguous memory region into DMA address space. It is used by all
2529 * mapping functions provided with this IOMMU driver.
431b2a20
JR
2530 * Must be called with the domain lock held.
2531 */
cb76c322 2532static dma_addr_t __map_single(struct device *dev,
cb76c322
JR
2533 struct dma_ops_domain *dma_dom,
2534 phys_addr_t paddr,
2535 size_t size,
6d4f343f 2536 int dir,
832a90c3
JR
2537 bool align,
2538 u64 dma_mask)
cb76c322
JR
2539{
2540 dma_addr_t offset = paddr & ~PAGE_MASK;
53812c11 2541 dma_addr_t address, start, ret;
cb76c322 2542 unsigned int pages;
6d4f343f 2543 unsigned long align_mask = 0;
cb76c322
JR
2544 int i;
2545
e3c449f5 2546 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
cb76c322
JR
2547 paddr &= PAGE_MASK;
2548
8ecaf8f1
JR
2549 INC_STATS_COUNTER(total_map_requests);
2550
c1858976
JR
2551 if (pages > 1)
2552 INC_STATS_COUNTER(cross_page);
2553
6d4f343f
JR
2554 if (align)
2555 align_mask = (1UL << get_order(size)) - 1;
2556
11b83888 2557retry:
832a90c3
JR
2558 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2559 dma_mask);
8fd524b3 2560 if (unlikely(address == DMA_ERROR_CODE)) {
11b83888
JR
2561 /*
2562 * setting next_address here will let the address
2563 * allocator only scan the new allocated range in the
2564 * first run. This is a small optimization.
2565 */
2566 dma_dom->next_address = dma_dom->aperture_size;
2567
576175c2 2568 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
11b83888
JR
2569 goto out;
2570
2571 /*
af901ca1 2572 * aperture was successfully enlarged by 128 MB, try
11b83888
JR
2573 * allocation again
2574 */
2575 goto retry;
2576 }
cb76c322
JR
2577
2578 start = address;
2579 for (i = 0; i < pages; ++i) {
680525e0 2580 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
8fd524b3 2581 if (ret == DMA_ERROR_CODE)
53812c11
JR
2582 goto out_unmap;
2583
cb76c322
JR
2584 paddr += PAGE_SIZE;
2585 start += PAGE_SIZE;
2586 }
2587 address += offset;
2588
5774f7c5
JR
2589 ADD_STATS_COUNTER(alloced_io_mem, size);
2590
afa9fdc2 2591 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
17b124bf 2592 domain_flush_tlb(&dma_dom->domain);
1c655773 2593 dma_dom->need_flush = false;
318afd41 2594 } else if (unlikely(amd_iommu_np_cache))
17b124bf 2595 domain_flush_pages(&dma_dom->domain, address, size);
270cab24 2596
cb76c322
JR
2597out:
2598 return address;
53812c11
JR
2599
2600out_unmap:
2601
2602 for (--i; i >= 0; --i) {
2603 start -= PAGE_SIZE;
680525e0 2604 dma_ops_domain_unmap(dma_dom, start);
53812c11
JR
2605 }
2606
2607 dma_ops_free_addresses(dma_dom, address, pages);
2608
8fd524b3 2609 return DMA_ERROR_CODE;
cb76c322
JR
2610}
2611
431b2a20
JR
2612/*
2613 * Does the reverse of the __map_single function. Must be called with
2614 * the domain lock held too
2615 */
cd8c82e8 2616static void __unmap_single(struct dma_ops_domain *dma_dom,
cb76c322
JR
2617 dma_addr_t dma_addr,
2618 size_t size,
2619 int dir)
2620{
04e0463e 2621 dma_addr_t flush_addr;
cb76c322
JR
2622 dma_addr_t i, start;
2623 unsigned int pages;
2624
8fd524b3 2625 if ((dma_addr == DMA_ERROR_CODE) ||
b8d9905d 2626 (dma_addr + size > dma_dom->aperture_size))
cb76c322
JR
2627 return;
2628
04e0463e 2629 flush_addr = dma_addr;
e3c449f5 2630 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
cb76c322
JR
2631 dma_addr &= PAGE_MASK;
2632 start = dma_addr;
2633
2634 for (i = 0; i < pages; ++i) {
680525e0 2635 dma_ops_domain_unmap(dma_dom, start);
cb76c322
JR
2636 start += PAGE_SIZE;
2637 }
2638
5774f7c5
JR
2639 SUB_STATS_COUNTER(alloced_io_mem, size);
2640
cb76c322 2641 dma_ops_free_addresses(dma_dom, dma_addr, pages);
270cab24 2642
80be308d 2643 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
17b124bf 2644 domain_flush_pages(&dma_dom->domain, flush_addr, size);
80be308d
JR
2645 dma_dom->need_flush = false;
2646 }
cb76c322
JR
2647}
2648
431b2a20
JR
2649/*
2650 * The exported map_single function for dma_ops.
2651 */
51491367
FT
2652static dma_addr_t map_page(struct device *dev, struct page *page,
2653 unsigned long offset, size_t size,
2654 enum dma_data_direction dir,
2655 struct dma_attrs *attrs)
4da70b9e
JR
2656{
2657 unsigned long flags;
4da70b9e 2658 struct protection_domain *domain;
4da70b9e 2659 dma_addr_t addr;
832a90c3 2660 u64 dma_mask;
51491367 2661 phys_addr_t paddr = page_to_phys(page) + offset;
4da70b9e 2662
0f2a86f2
JR
2663 INC_STATS_COUNTER(cnt_map_single);
2664
94f6d190
JR
2665 domain = get_domain(dev);
2666 if (PTR_ERR(domain) == -EINVAL)
4da70b9e 2667 return (dma_addr_t)paddr;
94f6d190
JR
2668 else if (IS_ERR(domain))
2669 return DMA_ERROR_CODE;
4da70b9e 2670
f99c0f1c
JR
2671 dma_mask = *dev->dma_mask;
2672
4da70b9e 2673 spin_lock_irqsave(&domain->lock, flags);
94f6d190 2674
cd8c82e8 2675 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
832a90c3 2676 dma_mask);
8fd524b3 2677 if (addr == DMA_ERROR_CODE)
4da70b9e
JR
2678 goto out;
2679
17b124bf 2680 domain_flush_complete(domain);
4da70b9e
JR
2681
2682out:
2683 spin_unlock_irqrestore(&domain->lock, flags);
2684
2685 return addr;
2686}
2687
431b2a20
JR
2688/*
2689 * The exported unmap_single function for dma_ops.
2690 */
51491367
FT
2691static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2692 enum dma_data_direction dir, struct dma_attrs *attrs)
4da70b9e
JR
2693{
2694 unsigned long flags;
4da70b9e 2695 struct protection_domain *domain;
4da70b9e 2696
146a6917
JR
2697 INC_STATS_COUNTER(cnt_unmap_single);
2698
94f6d190
JR
2699 domain = get_domain(dev);
2700 if (IS_ERR(domain))
5b28df6f
JR
2701 return;
2702
4da70b9e
JR
2703 spin_lock_irqsave(&domain->lock, flags);
2704
cd8c82e8 2705 __unmap_single(domain->priv, dma_addr, size, dir);
4da70b9e 2706
17b124bf 2707 domain_flush_complete(domain);
4da70b9e
JR
2708
2709 spin_unlock_irqrestore(&domain->lock, flags);
2710}
2711
431b2a20
JR
2712/*
2713 * This is a special map_sg function which is used if we should map a
2714 * device which is not handled by an AMD IOMMU in the system.
2715 */
65b050ad
JR
2716static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2717 int nelems, int dir)
2718{
2719 struct scatterlist *s;
2720 int i;
2721
2722 for_each_sg(sglist, s, nelems, i) {
2723 s->dma_address = (dma_addr_t)sg_phys(s);
2724 s->dma_length = s->length;
2725 }
2726
2727 return nelems;
2728}
2729
431b2a20
JR
2730/*
2731 * The exported map_sg function for dma_ops (handles scatter-gather
2732 * lists).
2733 */
65b050ad 2734static int map_sg(struct device *dev, struct scatterlist *sglist,
160c1d8e
FT
2735 int nelems, enum dma_data_direction dir,
2736 struct dma_attrs *attrs)
65b050ad
JR
2737{
2738 unsigned long flags;
65b050ad 2739 struct protection_domain *domain;
65b050ad
JR
2740 int i;
2741 struct scatterlist *s;
2742 phys_addr_t paddr;
2743 int mapped_elems = 0;
832a90c3 2744 u64 dma_mask;
65b050ad 2745
d03f067a
JR
2746 INC_STATS_COUNTER(cnt_map_sg);
2747
94f6d190
JR
2748 domain = get_domain(dev);
2749 if (PTR_ERR(domain) == -EINVAL)
f99c0f1c 2750 return map_sg_no_iommu(dev, sglist, nelems, dir);
94f6d190
JR
2751 else if (IS_ERR(domain))
2752 return 0;
dbcc112e 2753
832a90c3 2754 dma_mask = *dev->dma_mask;
65b050ad 2755
65b050ad
JR
2756 spin_lock_irqsave(&domain->lock, flags);
2757
2758 for_each_sg(sglist, s, nelems, i) {
2759 paddr = sg_phys(s);
2760
cd8c82e8 2761 s->dma_address = __map_single(dev, domain->priv,
832a90c3
JR
2762 paddr, s->length, dir, false,
2763 dma_mask);
65b050ad
JR
2764
2765 if (s->dma_address) {
2766 s->dma_length = s->length;
2767 mapped_elems++;
2768 } else
2769 goto unmap;
65b050ad
JR
2770 }
2771
17b124bf 2772 domain_flush_complete(domain);
65b050ad
JR
2773
2774out:
2775 spin_unlock_irqrestore(&domain->lock, flags);
2776
2777 return mapped_elems;
2778unmap:
2779 for_each_sg(sglist, s, mapped_elems, i) {
2780 if (s->dma_address)
cd8c82e8 2781 __unmap_single(domain->priv, s->dma_address,
65b050ad
JR
2782 s->dma_length, dir);
2783 s->dma_address = s->dma_length = 0;
2784 }
2785
2786 mapped_elems = 0;
2787
2788 goto out;
2789}
2790
431b2a20
JR
2791/*
2792 * The exported map_sg function for dma_ops (handles scatter-gather
2793 * lists).
2794 */
65b050ad 2795static void unmap_sg(struct device *dev, struct scatterlist *sglist,
160c1d8e
FT
2796 int nelems, enum dma_data_direction dir,
2797 struct dma_attrs *attrs)
65b050ad
JR
2798{
2799 unsigned long flags;
65b050ad
JR
2800 struct protection_domain *domain;
2801 struct scatterlist *s;
65b050ad
JR
2802 int i;
2803
55877a6b
JR
2804 INC_STATS_COUNTER(cnt_unmap_sg);
2805
94f6d190
JR
2806 domain = get_domain(dev);
2807 if (IS_ERR(domain))
5b28df6f
JR
2808 return;
2809
65b050ad
JR
2810 spin_lock_irqsave(&domain->lock, flags);
2811
2812 for_each_sg(sglist, s, nelems, i) {
cd8c82e8 2813 __unmap_single(domain->priv, s->dma_address,
65b050ad 2814 s->dma_length, dir);
65b050ad
JR
2815 s->dma_address = s->dma_length = 0;
2816 }
2817
17b124bf 2818 domain_flush_complete(domain);
65b050ad
JR
2819
2820 spin_unlock_irqrestore(&domain->lock, flags);
2821}
2822
431b2a20
JR
2823/*
2824 * The exported alloc_coherent function for dma_ops.
2825 */
5d8b53cf 2826static void *alloc_coherent(struct device *dev, size_t size,
baa676fc
AP
2827 dma_addr_t *dma_addr, gfp_t flag,
2828 struct dma_attrs *attrs)
5d8b53cf
JR
2829{
2830 unsigned long flags;
2831 void *virt_addr;
5d8b53cf 2832 struct protection_domain *domain;
5d8b53cf 2833 phys_addr_t paddr;
832a90c3 2834 u64 dma_mask = dev->coherent_dma_mask;
5d8b53cf 2835
c8f0fb36
JR
2836 INC_STATS_COUNTER(cnt_alloc_coherent);
2837
94f6d190
JR
2838 domain = get_domain(dev);
2839 if (PTR_ERR(domain) == -EINVAL) {
f99c0f1c
JR
2840 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2841 *dma_addr = __pa(virt_addr);
2842 return virt_addr;
94f6d190
JR
2843 } else if (IS_ERR(domain))
2844 return NULL;
5d8b53cf 2845
f99c0f1c
JR
2846 dma_mask = dev->coherent_dma_mask;
2847 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2848 flag |= __GFP_ZERO;
5d8b53cf
JR
2849
2850 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2851 if (!virt_addr)
b25ae679 2852 return NULL;
5d8b53cf 2853
5d8b53cf
JR
2854 paddr = virt_to_phys(virt_addr);
2855
832a90c3
JR
2856 if (!dma_mask)
2857 dma_mask = *dev->dma_mask;
2858
5d8b53cf
JR
2859 spin_lock_irqsave(&domain->lock, flags);
2860
cd8c82e8 2861 *dma_addr = __map_single(dev, domain->priv, paddr,
832a90c3 2862 size, DMA_BIDIRECTIONAL, true, dma_mask);
5d8b53cf 2863
8fd524b3 2864 if (*dma_addr == DMA_ERROR_CODE) {
367d04c4 2865 spin_unlock_irqrestore(&domain->lock, flags);
5b28df6f 2866 goto out_free;
367d04c4 2867 }
5d8b53cf 2868
17b124bf 2869 domain_flush_complete(domain);
5d8b53cf 2870
5d8b53cf
JR
2871 spin_unlock_irqrestore(&domain->lock, flags);
2872
2873 return virt_addr;
5b28df6f
JR
2874
2875out_free:
2876
2877 free_pages((unsigned long)virt_addr, get_order(size));
2878
2879 return NULL;
5d8b53cf
JR
2880}
2881
431b2a20
JR
2882/*
2883 * The exported free_coherent function for dma_ops.
431b2a20 2884 */
5d8b53cf 2885static void free_coherent(struct device *dev, size_t size,
baa676fc
AP
2886 void *virt_addr, dma_addr_t dma_addr,
2887 struct dma_attrs *attrs)
5d8b53cf
JR
2888{
2889 unsigned long flags;
5d8b53cf 2890 struct protection_domain *domain;
5d8b53cf 2891
5d31ee7e
JR
2892 INC_STATS_COUNTER(cnt_free_coherent);
2893
94f6d190
JR
2894 domain = get_domain(dev);
2895 if (IS_ERR(domain))
5b28df6f
JR
2896 goto free_mem;
2897
5d8b53cf
JR
2898 spin_lock_irqsave(&domain->lock, flags);
2899
cd8c82e8 2900 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
5d8b53cf 2901
17b124bf 2902 domain_flush_complete(domain);
5d8b53cf
JR
2903
2904 spin_unlock_irqrestore(&domain->lock, flags);
2905
2906free_mem:
2907 free_pages((unsigned long)virt_addr, get_order(size));
2908}
2909
b39ba6ad
JR
2910/*
2911 * This function is called by the DMA layer to find out if we can handle a
2912 * particular device. It is part of the dma_ops.
2913 */
2914static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2915{
420aef8a 2916 return check_device(dev);
b39ba6ad
JR
2917}
2918
c432f3df 2919/*
431b2a20
JR
2920 * The function for pre-allocating protection domains.
2921 *
c432f3df
JR
2922 * If the driver core informs the DMA layer if a driver grabs a device
2923 * we don't need to preallocate the protection domains anymore.
2924 * For now we have to.
2925 */
943bc7e1 2926static void __init prealloc_protection_domains(void)
c432f3df 2927{
5abcdba4 2928 struct iommu_dev_data *dev_data;
c432f3df 2929 struct dma_ops_domain *dma_dom;
5abcdba4 2930 struct pci_dev *dev = NULL;
98fc5a69 2931 u16 devid;
c432f3df 2932
d18c69d3 2933 for_each_pci_dev(dev) {
98fc5a69
JR
2934
2935 /* Do we handle this device? */
2936 if (!check_device(&dev->dev))
c432f3df 2937 continue;
98fc5a69 2938
5abcdba4
JR
2939 dev_data = get_dev_data(&dev->dev);
2940 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2941 /* Make sure passthrough domain is allocated */
2942 alloc_passthrough_domain();
2943 dev_data->passthrough = true;
2944 attach_device(&dev->dev, pt_domain);
2945 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2946 dev_name(&dev->dev));
2947 }
2948
98fc5a69 2949 /* Is there already any domain for it? */
15898bbc 2950 if (domain_for_device(&dev->dev))
c432f3df 2951 continue;
98fc5a69
JR
2952
2953 devid = get_device_id(&dev->dev);
2954
87a64d52 2955 dma_dom = dma_ops_domain_alloc();
c432f3df
JR
2956 if (!dma_dom)
2957 continue;
2958 init_unity_mappings_for_device(dma_dom, devid);
bd60b735
JR
2959 dma_dom->target_dev = devid;
2960
15898bbc 2961 attach_device(&dev->dev, &dma_dom->domain);
be831297 2962
bd60b735 2963 list_add_tail(&dma_dom->list, &iommu_pd_list);
c432f3df
JR
2964 }
2965}
2966
160c1d8e 2967static struct dma_map_ops amd_iommu_dma_ops = {
baa676fc
AP
2968 .alloc = alloc_coherent,
2969 .free = free_coherent,
51491367
FT
2970 .map_page = map_page,
2971 .unmap_page = unmap_page,
6631ee9d
JR
2972 .map_sg = map_sg,
2973 .unmap_sg = unmap_sg,
b39ba6ad 2974 .dma_supported = amd_iommu_dma_supported,
6631ee9d
JR
2975};
2976
27c2127a
JR
2977static unsigned device_dma_ops_init(void)
2978{
5abcdba4 2979 struct iommu_dev_data *dev_data;
27c2127a
JR
2980 struct pci_dev *pdev = NULL;
2981 unsigned unhandled = 0;
2982
2983 for_each_pci_dev(pdev) {
2984 if (!check_device(&pdev->dev)) {
af1be049
JR
2985
2986 iommu_ignore_device(&pdev->dev);
2987
27c2127a
JR
2988 unhandled += 1;
2989 continue;
2990 }
2991
5abcdba4
JR
2992 dev_data = get_dev_data(&pdev->dev);
2993
2994 if (!dev_data->passthrough)
2995 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2996 else
2997 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
27c2127a
JR
2998 }
2999
3000 return unhandled;
3001}
3002
431b2a20
JR
3003/*
3004 * The function which clues the AMD IOMMU driver into dma_ops.
3005 */
f5325094
JR
3006
3007void __init amd_iommu_init_api(void)
3008{
2cc21c42 3009 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
f5325094
JR
3010}
3011
6631ee9d
JR
3012int __init amd_iommu_init_dma_ops(void)
3013{
3014 struct amd_iommu *iommu;
27c2127a 3015 int ret, unhandled;
6631ee9d 3016
431b2a20
JR
3017 /*
3018 * first allocate a default protection domain for every IOMMU we
3019 * found in the system. Devices not assigned to any other
3020 * protection domain will be assigned to the default one.
3021 */
3bd22172 3022 for_each_iommu(iommu) {
87a64d52 3023 iommu->default_dom = dma_ops_domain_alloc();
6631ee9d
JR
3024 if (iommu->default_dom == NULL)
3025 return -ENOMEM;
e2dc14a2 3026 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
6631ee9d
JR
3027 ret = iommu_init_unity_mappings(iommu);
3028 if (ret)
3029 goto free_domains;
3030 }
3031
431b2a20 3032 /*
8793abeb 3033 * Pre-allocate the protection domains for each device.
431b2a20 3034 */
8793abeb 3035 prealloc_protection_domains();
6631ee9d
JR
3036
3037 iommu_detected = 1;
75f1cdf1 3038 swiotlb = 0;
6631ee9d 3039
431b2a20 3040 /* Make the driver finally visible to the drivers */
27c2127a
JR
3041 unhandled = device_dma_ops_init();
3042 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3043 /* There are unhandled devices - initialize swiotlb for them */
3044 swiotlb = 1;
3045 }
6631ee9d 3046
7f26508b
JR
3047 amd_iommu_stats_init();
3048
62410eeb
JR
3049 if (amd_iommu_unmap_flush)
3050 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3051 else
3052 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3053
6631ee9d
JR
3054 return 0;
3055
3056free_domains:
3057
3bd22172 3058 for_each_iommu(iommu) {
6631ee9d
JR
3059 if (iommu->default_dom)
3060 dma_ops_domain_free(iommu->default_dom);
3061 }
3062
3063 return ret;
3064}
6d98cd80
JR
3065
3066/*****************************************************************************
3067 *
3068 * The following functions belong to the exported interface of AMD IOMMU
3069 *
3070 * This interface allows access to lower level functions of the IOMMU
3071 * like protection domain handling and assignement of devices to domains
3072 * which is not possible with the dma_ops interface.
3073 *
3074 *****************************************************************************/
3075
6d98cd80
JR
3076static void cleanup_domain(struct protection_domain *domain)
3077{
492667da 3078 struct iommu_dev_data *dev_data, *next;
6d98cd80 3079 unsigned long flags;
6d98cd80
JR
3080
3081 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3082
492667da 3083 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
ec9e79ef 3084 __detach_device(dev_data);
492667da
JR
3085 atomic_set(&dev_data->bind, 0);
3086 }
6d98cd80
JR
3087
3088 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3089}
3090
2650815f
JR
3091static void protection_domain_free(struct protection_domain *domain)
3092{
3093 if (!domain)
3094 return;
3095
aeb26f55
JR
3096 del_domain_from_list(domain);
3097
2650815f
JR
3098 if (domain->id)
3099 domain_id_free(domain->id);
3100
3101 kfree(domain);
3102}
3103
3104static struct protection_domain *protection_domain_alloc(void)
c156e347
JR
3105{
3106 struct protection_domain *domain;
3107
3108 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3109 if (!domain)
2650815f 3110 return NULL;
c156e347
JR
3111
3112 spin_lock_init(&domain->lock);
5d214fe6 3113 mutex_init(&domain->api_lock);
c156e347
JR
3114 domain->id = domain_id_alloc();
3115 if (!domain->id)
2650815f 3116 goto out_err;
7c392cbe 3117 INIT_LIST_HEAD(&domain->dev_list);
2650815f 3118
aeb26f55
JR
3119 add_domain_to_list(domain);
3120
2650815f
JR
3121 return domain;
3122
3123out_err:
3124 kfree(domain);
3125
3126 return NULL;
3127}
3128
5abcdba4
JR
3129static int __init alloc_passthrough_domain(void)
3130{
3131 if (pt_domain != NULL)
3132 return 0;
3133
3134 /* allocate passthrough domain */
3135 pt_domain = protection_domain_alloc();
3136 if (!pt_domain)
3137 return -ENOMEM;
3138
3139 pt_domain->mode = PAGE_MODE_NONE;
3140
3141 return 0;
3142}
2650815f
JR
3143static int amd_iommu_domain_init(struct iommu_domain *dom)
3144{
3145 struct protection_domain *domain;
3146
3147 domain = protection_domain_alloc();
3148 if (!domain)
c156e347 3149 goto out_free;
2650815f
JR
3150
3151 domain->mode = PAGE_MODE_3_LEVEL;
c156e347
JR
3152 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3153 if (!domain->pt_root)
3154 goto out_free;
3155
f3572db8
JR
3156 domain->iommu_domain = dom;
3157
c156e347
JR
3158 dom->priv = domain;
3159
0ff64f80
JR
3160 dom->geometry.aperture_start = 0;
3161 dom->geometry.aperture_end = ~0ULL;
3162 dom->geometry.force_aperture = true;
3163
c156e347
JR
3164 return 0;
3165
3166out_free:
2650815f 3167 protection_domain_free(domain);
c156e347
JR
3168
3169 return -ENOMEM;
3170}
3171
98383fc3
JR
3172static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3173{
3174 struct protection_domain *domain = dom->priv;
3175
3176 if (!domain)
3177 return;
3178
3179 if (domain->dev_cnt > 0)
3180 cleanup_domain(domain);
3181
3182 BUG_ON(domain->dev_cnt != 0);
3183
132bd68f
JR
3184 if (domain->mode != PAGE_MODE_NONE)
3185 free_pagetable(domain);
98383fc3 3186
52815b75
JR
3187 if (domain->flags & PD_IOMMUV2_MASK)
3188 free_gcr3_table(domain);
3189
8b408fe4 3190 protection_domain_free(domain);
98383fc3
JR
3191
3192 dom->priv = NULL;
3193}
3194
684f2888
JR
3195static void amd_iommu_detach_device(struct iommu_domain *dom,
3196 struct device *dev)
3197{
657cbb6b 3198 struct iommu_dev_data *dev_data = dev->archdata.iommu;
684f2888 3199 struct amd_iommu *iommu;
684f2888
JR
3200 u16 devid;
3201
98fc5a69 3202 if (!check_device(dev))
684f2888
JR
3203 return;
3204
98fc5a69 3205 devid = get_device_id(dev);
684f2888 3206
657cbb6b 3207 if (dev_data->domain != NULL)
15898bbc 3208 detach_device(dev);
684f2888
JR
3209
3210 iommu = amd_iommu_rlookup_table[devid];
3211 if (!iommu)
3212 return;
3213
684f2888
JR
3214 iommu_completion_wait(iommu);
3215}
3216
01106066
JR
3217static int amd_iommu_attach_device(struct iommu_domain *dom,
3218 struct device *dev)
3219{
3220 struct protection_domain *domain = dom->priv;
657cbb6b 3221 struct iommu_dev_data *dev_data;
01106066 3222 struct amd_iommu *iommu;
15898bbc 3223 int ret;
01106066 3224
98fc5a69 3225 if (!check_device(dev))
01106066
JR
3226 return -EINVAL;
3227
657cbb6b
JR
3228 dev_data = dev->archdata.iommu;
3229
f62dda66 3230 iommu = amd_iommu_rlookup_table[dev_data->devid];
01106066
JR
3231 if (!iommu)
3232 return -EINVAL;
3233
657cbb6b 3234 if (dev_data->domain)
15898bbc 3235 detach_device(dev);
01106066 3236
15898bbc 3237 ret = attach_device(dev, domain);
01106066
JR
3238
3239 iommu_completion_wait(iommu);
3240
15898bbc 3241 return ret;
01106066
JR
3242}
3243
468e2366 3244static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
5009065d 3245 phys_addr_t paddr, size_t page_size, int iommu_prot)
c6229ca6
JR
3246{
3247 struct protection_domain *domain = dom->priv;
c6229ca6
JR
3248 int prot = 0;
3249 int ret;
3250
132bd68f
JR
3251 if (domain->mode == PAGE_MODE_NONE)
3252 return -EINVAL;
3253
c6229ca6
JR
3254 if (iommu_prot & IOMMU_READ)
3255 prot |= IOMMU_PROT_IR;
3256 if (iommu_prot & IOMMU_WRITE)
3257 prot |= IOMMU_PROT_IW;
3258
5d214fe6 3259 mutex_lock(&domain->api_lock);
795e74f7 3260 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
5d214fe6
JR
3261 mutex_unlock(&domain->api_lock);
3262
795e74f7 3263 return ret;
c6229ca6
JR
3264}
3265
5009065d
OBC
3266static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3267 size_t page_size)
eb74ff6c 3268{
eb74ff6c 3269 struct protection_domain *domain = dom->priv;
5009065d 3270 size_t unmap_size;
eb74ff6c 3271
132bd68f
JR
3272 if (domain->mode == PAGE_MODE_NONE)
3273 return -EINVAL;
3274
5d214fe6 3275 mutex_lock(&domain->api_lock);
468e2366 3276 unmap_size = iommu_unmap_page(domain, iova, page_size);
795e74f7 3277 mutex_unlock(&domain->api_lock);
eb74ff6c 3278
17b124bf 3279 domain_flush_tlb_pde(domain);
5d214fe6 3280
5009065d 3281 return unmap_size;
eb74ff6c
JR
3282}
3283
645c4c8d
JR
3284static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3285 unsigned long iova)
3286{
3287 struct protection_domain *domain = dom->priv;
f03152bb 3288 unsigned long offset_mask;
645c4c8d 3289 phys_addr_t paddr;
f03152bb 3290 u64 *pte, __pte;
645c4c8d 3291
132bd68f
JR
3292 if (domain->mode == PAGE_MODE_NONE)
3293 return iova;
3294
24cd7723 3295 pte = fetch_pte(domain, iova);
645c4c8d 3296
a6d41a40 3297 if (!pte || !IOMMU_PTE_PRESENT(*pte))
645c4c8d
JR
3298 return 0;
3299
f03152bb
JR
3300 if (PM_PTE_LEVEL(*pte) == 0)
3301 offset_mask = PAGE_SIZE - 1;
3302 else
3303 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3304
3305 __pte = *pte & PM_ADDR_MASK;
3306 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
645c4c8d
JR
3307
3308 return paddr;
3309}
3310
dbb9fd86
SY
3311static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3312 unsigned long cap)
3313{
80a506b8
JR
3314 switch (cap) {
3315 case IOMMU_CAP_CACHE_COHERENCY:
3316 return 1;
3317 }
3318
dbb9fd86
SY
3319 return 0;
3320}
3321
26961efe
JR
3322static struct iommu_ops amd_iommu_ops = {
3323 .domain_init = amd_iommu_domain_init,
3324 .domain_destroy = amd_iommu_domain_destroy,
3325 .attach_dev = amd_iommu_attach_device,
3326 .detach_dev = amd_iommu_detach_device,
468e2366
JR
3327 .map = amd_iommu_map,
3328 .unmap = amd_iommu_unmap,
26961efe 3329 .iova_to_phys = amd_iommu_iova_to_phys,
dbb9fd86 3330 .domain_has_cap = amd_iommu_domain_has_cap,
aa3de9c0 3331 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
26961efe
JR
3332};
3333
0feae533
JR
3334/*****************************************************************************
3335 *
3336 * The next functions do a basic initialization of IOMMU for pass through
3337 * mode
3338 *
3339 * In passthrough mode the IOMMU is initialized and enabled but not used for
3340 * DMA-API translation.
3341 *
3342 *****************************************************************************/
3343
3344int __init amd_iommu_init_passthrough(void)
3345{
5abcdba4 3346 struct iommu_dev_data *dev_data;
0feae533 3347 struct pci_dev *dev = NULL;
5abcdba4 3348 struct amd_iommu *iommu;
15898bbc 3349 u16 devid;
5abcdba4 3350 int ret;
0feae533 3351
5abcdba4
JR
3352 ret = alloc_passthrough_domain();
3353 if (ret)
3354 return ret;
0feae533 3355
6c54aabd 3356 for_each_pci_dev(dev) {
98fc5a69 3357 if (!check_device(&dev->dev))
0feae533
JR
3358 continue;
3359
5abcdba4
JR
3360 dev_data = get_dev_data(&dev->dev);
3361 dev_data->passthrough = true;
3362
98fc5a69
JR
3363 devid = get_device_id(&dev->dev);
3364
15898bbc 3365 iommu = amd_iommu_rlookup_table[devid];
0feae533
JR
3366 if (!iommu)
3367 continue;
3368
15898bbc 3369 attach_device(&dev->dev, pt_domain);
0feae533
JR
3370 }
3371
2655d7a2
JR
3372 amd_iommu_stats_init();
3373
0feae533
JR
3374 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3375
3376 return 0;
3377}
72e1dcc4
JR
3378
3379/* IOMMUv2 specific functions */
3380int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3381{
3382 return atomic_notifier_chain_register(&ppr_notifier, nb);
3383}
3384EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3385
3386int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3387{
3388 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3389}
3390EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
132bd68f
JR
3391
3392void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3393{
3394 struct protection_domain *domain = dom->priv;
3395 unsigned long flags;
3396
3397 spin_lock_irqsave(&domain->lock, flags);
3398
3399 /* Update data structure */
3400 domain->mode = PAGE_MODE_NONE;
3401 domain->updated = true;
3402
3403 /* Make changes visible to IOMMUs */
3404 update_domain(domain);
3405
3406 /* Page-table is not visible to IOMMU anymore, so free it */
3407 free_pagetable(domain);
3408
3409 spin_unlock_irqrestore(&domain->lock, flags);
3410}
3411EXPORT_SYMBOL(amd_iommu_domain_direct_map);
52815b75
JR
3412
3413int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3414{
3415 struct protection_domain *domain = dom->priv;
3416 unsigned long flags;
3417 int levels, ret;
3418
3419 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3420 return -EINVAL;
3421
3422 /* Number of GCR3 table levels required */
3423 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3424 levels += 1;
3425
3426 if (levels > amd_iommu_max_glx_val)
3427 return -EINVAL;
3428
3429 spin_lock_irqsave(&domain->lock, flags);
3430
3431 /*
3432 * Save us all sanity checks whether devices already in the
3433 * domain support IOMMUv2. Just force that the domain has no
3434 * devices attached when it is switched into IOMMUv2 mode.
3435 */
3436 ret = -EBUSY;
3437 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3438 goto out;
3439
3440 ret = -ENOMEM;
3441 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3442 if (domain->gcr3_tbl == NULL)
3443 goto out;
3444
3445 domain->glx = levels;
3446 domain->flags |= PD_IOMMUV2_MASK;
3447 domain->updated = true;
3448
3449 update_domain(domain);
3450
3451 ret = 0;
3452
3453out:
3454 spin_unlock_irqrestore(&domain->lock, flags);
3455
3456 return ret;
3457}
3458EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
22e266c7
JR
3459
3460static int __flush_pasid(struct protection_domain *domain, int pasid,
3461 u64 address, bool size)
3462{
3463 struct iommu_dev_data *dev_data;
3464 struct iommu_cmd cmd;
3465 int i, ret;
3466
3467 if (!(domain->flags & PD_IOMMUV2_MASK))
3468 return -EINVAL;
3469
3470 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3471
3472 /*
3473 * IOMMU TLB needs to be flushed before Device TLB to
3474 * prevent device TLB refill from IOMMU TLB
3475 */
3476 for (i = 0; i < amd_iommus_present; ++i) {
3477 if (domain->dev_iommu[i] == 0)
3478 continue;
3479
3480 ret = iommu_queue_command(amd_iommus[i], &cmd);
3481 if (ret != 0)
3482 goto out;
3483 }
3484
3485 /* Wait until IOMMU TLB flushes are complete */
3486 domain_flush_complete(domain);
3487
3488 /* Now flush device TLBs */
3489 list_for_each_entry(dev_data, &domain->dev_list, list) {
3490 struct amd_iommu *iommu;
3491 int qdep;
3492
3493 BUG_ON(!dev_data->ats.enabled);
3494
3495 qdep = dev_data->ats.qdep;
3496 iommu = amd_iommu_rlookup_table[dev_data->devid];
3497
3498 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3499 qdep, address, size);
3500
3501 ret = iommu_queue_command(iommu, &cmd);
3502 if (ret != 0)
3503 goto out;
3504 }
3505
3506 /* Wait until all device TLBs are flushed */
3507 domain_flush_complete(domain);
3508
3509 ret = 0;
3510
3511out:
3512
3513 return ret;
3514}
3515
3516static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3517 u64 address)
3518{
399be2f5
JR
3519 INC_STATS_COUNTER(invalidate_iotlb);
3520
22e266c7
JR
3521 return __flush_pasid(domain, pasid, address, false);
3522}
3523
3524int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3525 u64 address)
3526{
3527 struct protection_domain *domain = dom->priv;
3528 unsigned long flags;
3529 int ret;
3530
3531 spin_lock_irqsave(&domain->lock, flags);
3532 ret = __amd_iommu_flush_page(domain, pasid, address);
3533 spin_unlock_irqrestore(&domain->lock, flags);
3534
3535 return ret;
3536}
3537EXPORT_SYMBOL(amd_iommu_flush_page);
3538
3539static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3540{
399be2f5
JR
3541 INC_STATS_COUNTER(invalidate_iotlb_all);
3542
22e266c7
JR
3543 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3544 true);
3545}
3546
3547int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3548{
3549 struct protection_domain *domain = dom->priv;
3550 unsigned long flags;
3551 int ret;
3552
3553 spin_lock_irqsave(&domain->lock, flags);
3554 ret = __amd_iommu_flush_tlb(domain, pasid);
3555 spin_unlock_irqrestore(&domain->lock, flags);
3556
3557 return ret;
3558}
3559EXPORT_SYMBOL(amd_iommu_flush_tlb);
3560
b16137b1
JR
3561static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3562{
3563 int index;
3564 u64 *pte;
3565
3566 while (true) {
3567
3568 index = (pasid >> (9 * level)) & 0x1ff;
3569 pte = &root[index];
3570
3571 if (level == 0)
3572 break;
3573
3574 if (!(*pte & GCR3_VALID)) {
3575 if (!alloc)
3576 return NULL;
3577
3578 root = (void *)get_zeroed_page(GFP_ATOMIC);
3579 if (root == NULL)
3580 return NULL;
3581
3582 *pte = __pa(root) | GCR3_VALID;
3583 }
3584
3585 root = __va(*pte & PAGE_MASK);
3586
3587 level -= 1;
3588 }
3589
3590 return pte;
3591}
3592
3593static int __set_gcr3(struct protection_domain *domain, int pasid,
3594 unsigned long cr3)
3595{
3596 u64 *pte;
3597
3598 if (domain->mode != PAGE_MODE_NONE)
3599 return -EINVAL;
3600
3601 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3602 if (pte == NULL)
3603 return -ENOMEM;
3604
3605 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3606
3607 return __amd_iommu_flush_tlb(domain, pasid);
3608}
3609
3610static int __clear_gcr3(struct protection_domain *domain, int pasid)
3611{
3612 u64 *pte;
3613
3614 if (domain->mode != PAGE_MODE_NONE)
3615 return -EINVAL;
3616
3617 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3618 if (pte == NULL)
3619 return 0;
3620
3621 *pte = 0;
3622
3623 return __amd_iommu_flush_tlb(domain, pasid);
3624}
3625
3626int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3627 unsigned long cr3)
3628{
3629 struct protection_domain *domain = dom->priv;
3630 unsigned long flags;
3631 int ret;
3632
3633 spin_lock_irqsave(&domain->lock, flags);
3634 ret = __set_gcr3(domain, pasid, cr3);
3635 spin_unlock_irqrestore(&domain->lock, flags);
3636
3637 return ret;
3638}
3639EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3640
3641int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3642{
3643 struct protection_domain *domain = dom->priv;
3644 unsigned long flags;
3645 int ret;
3646
3647 spin_lock_irqsave(&domain->lock, flags);
3648 ret = __clear_gcr3(domain, pasid);
3649 spin_unlock_irqrestore(&domain->lock, flags);
3650
3651 return ret;
3652}
3653EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
c99afa25
JR
3654
3655int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3656 int status, int tag)
3657{
3658 struct iommu_dev_data *dev_data;
3659 struct amd_iommu *iommu;
3660 struct iommu_cmd cmd;
3661
399be2f5
JR
3662 INC_STATS_COUNTER(complete_ppr);
3663
c99afa25
JR
3664 dev_data = get_dev_data(&pdev->dev);
3665 iommu = amd_iommu_rlookup_table[dev_data->devid];
3666
3667 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3668 tag, dev_data->pri_tlp);
3669
3670 return iommu_queue_command(iommu, &cmd);
3671}
3672EXPORT_SYMBOL(amd_iommu_complete_ppr);
f3572db8
JR
3673
3674struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3675{
3676 struct protection_domain *domain;
3677
3678 domain = get_domain(&pdev->dev);
3679 if (IS_ERR(domain))
3680 return NULL;
3681
3682 /* Only return IOMMUv2 domains */
3683 if (!(domain->flags & PD_IOMMUV2_MASK))
3684 return NULL;
3685
3686 return domain->iommu_domain;
3687}
3688EXPORT_SYMBOL(amd_iommu_get_v2_domain);
6a113ddc
JR
3689
3690void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3691{
3692 struct iommu_dev_data *dev_data;
3693
3694 if (!amd_iommu_v2_supported())
3695 return;
3696
3697 dev_data = get_dev_data(&pdev->dev);
3698 dev_data->errata |= (1 << erratum);
3699}
3700EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
52efdb89
JR
3701
3702int amd_iommu_device_info(struct pci_dev *pdev,
3703 struct amd_iommu_device_info *info)
3704{
3705 int max_pasids;
3706 int pos;
3707
3708 if (pdev == NULL || info == NULL)
3709 return -EINVAL;
3710
3711 if (!amd_iommu_v2_supported())
3712 return -EINVAL;
3713
3714 memset(info, 0, sizeof(*info));
3715
3716 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3717 if (pos)
3718 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3719
3720 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3721 if (pos)
3722 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3723
3724 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3725 if (pos) {
3726 int features;
3727
3728 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3729 max_pasids = min(max_pasids, (1 << 20));
3730
3731 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3732 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3733
3734 features = pci_pasid_features(pdev);
3735 if (features & PCI_PASID_CAP_EXEC)
3736 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3737 if (features & PCI_PASID_CAP_PRIV)
3738 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3739 }
3740
3741 return 0;
3742}
3743EXPORT_SYMBOL(amd_iommu_device_info);