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