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