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