IB/qib: Add qib post send table
[deliverable/linux.git] / drivers / iommu / amd_iommu.c
CommitLineData
b6c02715 1/*
5d0d7156 2 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
63ce3ae8 3 * Author: Joerg Roedel <jroedel@suse.de>
b6c02715
JR
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>
2bf9a0a1 22#include <linux/acpi.h>
9a4d3bf5 23#include <linux/amba/bus.h>
cb41ed85 24#include <linux/pci-ats.h>
a66022c4 25#include <linux/bitmap.h>
5a0e3ad6 26#include <linux/slab.h>
7f26508b 27#include <linux/debugfs.h>
b6c02715 28#include <linux/scatterlist.h>
51491367 29#include <linux/dma-mapping.h>
b6c02715 30#include <linux/iommu-helper.h>
c156e347 31#include <linux/iommu.h>
815b33fd 32#include <linux/delay.h>
403f81d8 33#include <linux/amd-iommu.h>
72e1dcc4
JR
34#include <linux/notifier.h>
35#include <linux/export.h>
2b324506
JR
36#include <linux/irq.h>
37#include <linux/msi.h>
3b839a57 38#include <linux/dma-contiguous.h>
7c71d306 39#include <linux/irqdomain.h>
5f6bed50 40#include <linux/percpu.h>
2b324506
JR
41#include <asm/irq_remapping.h>
42#include <asm/io_apic.h>
43#include <asm/apic.h>
44#include <asm/hw_irq.h>
17f5b569 45#include <asm/msidef.h>
b6c02715 46#include <asm/proto.h>
46a7fa27 47#include <asm/iommu.h>
1d9b16d1 48#include <asm/gart.h>
27c2127a 49#include <asm/dma.h>
403f81d8
JR
50
51#include "amd_iommu_proto.h"
52#include "amd_iommu_types.h"
6b474b82 53#include "irq_remapping.h"
b6c02715
JR
54
55#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
56
815b33fd 57#define LOOP_TIMEOUT 100000
136f78a1 58
aa3de9c0
OBC
59/*
60 * This bitmap is used to advertise the page sizes our hardware support
61 * to the IOMMU core, which will then use this information to split
62 * physically contiguous memory regions it is mapping into page sizes
63 * that we support.
64 *
954e3dd8 65 * 512GB Pages are not supported due to a hardware bug
aa3de9c0 66 */
954e3dd8 67#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
aa3de9c0 68
b6c02715
JR
69static DEFINE_RWLOCK(amd_iommu_devtable_lock);
70
8fa5f802
JR
71/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
6efed63b
JR
75LIST_HEAD(ioapic_map);
76LIST_HEAD(hpet_map);
2a0cb4e2 77LIST_HEAD(acpihid_map);
6efed63b 78
0feae533
JR
79/*
80 * Domain for untranslated devices - only allocated
81 * if iommu=pt passed on kernel cmd line.
82 */
b22f6434 83static const struct iommu_ops amd_iommu_ops;
26961efe 84
72e1dcc4 85static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
52815b75 86int amd_iommu_max_glx_val = -1;
72e1dcc4 87
ac1534a5
JR
88static struct dma_map_ops amd_iommu_dma_ops;
89
50917e26
JR
90/*
91 * This struct contains device specific data for the IOMMU
92 */
93struct iommu_dev_data {
94 struct list_head list; /* For domain->dev_list */
95 struct list_head dev_data_list; /* For global dev_data_list */
50917e26 96 struct protection_domain *domain; /* Domain the device is bound to */
50917e26 97 u16 devid; /* PCI Device ID */
e3156048 98 u16 alias; /* Alias Device ID */
50917e26 99 bool iommu_v2; /* Device can make use of IOMMUv2 */
1e6a7b04 100 bool passthrough; /* Device is identity mapped */
50917e26
JR
101 struct {
102 bool enabled;
103 int qdep;
104 } ats; /* ATS state */
105 bool pri_tlp; /* PASID TLB required for
106 PPR completions */
107 u32 errata; /* Bitmap for errata to apply */
108};
109
431b2a20
JR
110/*
111 * general struct to manage commands send to an IOMMU
112 */
d6449536 113struct iommu_cmd {
b6c02715
JR
114 u32 data[4];
115};
116
05152a04
JR
117struct kmem_cache *amd_iommu_irq_cache;
118
04bfdd84 119static void update_domain(struct protection_domain *domain);
7a5a566e 120static int protection_domain_init(struct protection_domain *domain);
b6809ee5 121static void detach_device(struct device *dev);
c1eee67b 122
007b74ba
JR
123/*
124 * For dynamic growth the aperture size is split into ranges of 128MB of
125 * DMA address space each. This struct represents one such range.
126 */
127struct aperture_range {
128
08c5fb93
JR
129 spinlock_t bitmap_lock;
130
007b74ba
JR
131 /* address allocation bitmap */
132 unsigned long *bitmap;
ae62d49c 133 unsigned long offset;
60e6a7cb 134 unsigned long next_bit;
007b74ba
JR
135
136 /*
137 * Array of PTE pages for the aperture. In this array we save all the
138 * leaf pages of the domain page table used for the aperture. This way
139 * we don't need to walk the page table to find a specific PTE. We can
140 * just calculate its address in constant time.
141 */
142 u64 *pte_pages[64];
007b74ba
JR
143};
144
145/*
146 * Data container for a dma_ops specific protection domain
147 */
148struct dma_ops_domain {
149 /* generic protection domain information */
150 struct protection_domain domain;
151
152 /* size of the aperture for the mappings */
153 unsigned long aperture_size;
154
ebaecb42 155 /* aperture index we start searching for free addresses */
5f6bed50 156 u32 __percpu *next_index;
007b74ba
JR
157
158 /* address space relevant data */
159 struct aperture_range *aperture[APERTURE_MAX_RANGES];
007b74ba
JR
160};
161
15898bbc
JR
162/****************************************************************************
163 *
164 * Helper functions
165 *
166 ****************************************************************************/
167
2bf9a0a1
WZ
168static inline int match_hid_uid(struct device *dev,
169 struct acpihid_map_entry *entry)
3f4b87b9 170{
2bf9a0a1
WZ
171 const char *hid, *uid;
172
173 hid = acpi_device_hid(ACPI_COMPANION(dev));
174 uid = acpi_device_uid(ACPI_COMPANION(dev));
175
176 if (!hid || !(*hid))
177 return -ENODEV;
178
179 if (!uid || !(*uid))
180 return strcmp(hid, entry->hid);
181
182 if (!(*entry->uid))
183 return strcmp(hid, entry->hid);
184
185 return (strcmp(hid, entry->hid) || strcmp(uid, entry->uid));
3f4b87b9
JR
186}
187
2bf9a0a1 188static inline u16 get_pci_device_id(struct device *dev)
e3156048
JR
189{
190 struct pci_dev *pdev = to_pci_dev(dev);
191
192 return PCI_DEVID(pdev->bus->number, pdev->devfn);
193}
194
2bf9a0a1
WZ
195static inline int get_acpihid_device_id(struct device *dev,
196 struct acpihid_map_entry **entry)
197{
198 struct acpihid_map_entry *p;
199
200 list_for_each_entry(p, &acpihid_map, list) {
201 if (!match_hid_uid(dev, p)) {
202 if (entry)
203 *entry = p;
204 return p->devid;
205 }
206 }
207 return -EINVAL;
208}
209
210static inline int get_device_id(struct device *dev)
211{
212 int devid;
213
214 if (dev_is_pci(dev))
215 devid = get_pci_device_id(dev);
216 else
217 devid = get_acpihid_device_id(dev, NULL);
218
219 return devid;
220}
221
3f4b87b9
JR
222static struct protection_domain *to_pdomain(struct iommu_domain *dom)
223{
224 return container_of(dom, struct protection_domain, domain);
225}
226
f62dda66 227static struct iommu_dev_data *alloc_dev_data(u16 devid)
8fa5f802
JR
228{
229 struct iommu_dev_data *dev_data;
230 unsigned long flags;
231
232 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
233 if (!dev_data)
234 return NULL;
235
f62dda66 236 dev_data->devid = devid;
8fa5f802
JR
237
238 spin_lock_irqsave(&dev_data_list_lock, flags);
239 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
240 spin_unlock_irqrestore(&dev_data_list_lock, flags);
241
242 return dev_data;
243}
244
3b03bb74
JR
245static struct iommu_dev_data *search_dev_data(u16 devid)
246{
247 struct iommu_dev_data *dev_data;
248 unsigned long flags;
249
250 spin_lock_irqsave(&dev_data_list_lock, flags);
251 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
252 if (dev_data->devid == devid)
253 goto out_unlock;
254 }
255
256 dev_data = NULL;
257
258out_unlock:
259 spin_unlock_irqrestore(&dev_data_list_lock, flags);
260
261 return dev_data;
262}
263
e3156048
JR
264static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
265{
266 *(u16 *)data = alias;
267 return 0;
268}
269
270static u16 get_alias(struct device *dev)
271{
272 struct pci_dev *pdev = to_pci_dev(dev);
273 u16 devid, ivrs_alias, pci_alias;
274
6c0b43df 275 /* The callers make sure that get_device_id() does not fail here */
e3156048
JR
276 devid = get_device_id(dev);
277 ivrs_alias = amd_iommu_alias_table[devid];
278 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
279
280 if (ivrs_alias == pci_alias)
281 return ivrs_alias;
282
283 /*
284 * DMA alias showdown
285 *
286 * The IVRS is fairly reliable in telling us about aliases, but it
287 * can't know about every screwy device. If we don't have an IVRS
288 * reported alias, use the PCI reported alias. In that case we may
289 * still need to initialize the rlookup and dev_table entries if the
290 * alias is to a non-existent device.
291 */
292 if (ivrs_alias == devid) {
293 if (!amd_iommu_rlookup_table[pci_alias]) {
294 amd_iommu_rlookup_table[pci_alias] =
295 amd_iommu_rlookup_table[devid];
296 memcpy(amd_iommu_dev_table[pci_alias].data,
297 amd_iommu_dev_table[devid].data,
298 sizeof(amd_iommu_dev_table[pci_alias].data));
299 }
300
301 return pci_alias;
302 }
303
304 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
305 "for device %s[%04x:%04x], kernel reported alias "
306 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
307 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
308 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
309 PCI_FUNC(pci_alias));
310
311 /*
312 * If we don't have a PCI DMA alias and the IVRS alias is on the same
313 * bus, then the IVRS table may know about a quirk that we don't.
314 */
315 if (pci_alias == devid &&
316 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
7afd16f8 317 pci_add_dma_alias(pdev, ivrs_alias & 0xff);
e3156048
JR
318 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
319 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
320 dev_name(dev));
321 }
322
323 return ivrs_alias;
324}
325
3b03bb74
JR
326static struct iommu_dev_data *find_dev_data(u16 devid)
327{
328 struct iommu_dev_data *dev_data;
329
330 dev_data = search_dev_data(devid);
331
332 if (dev_data == NULL)
333 dev_data = alloc_dev_data(devid);
334
335 return dev_data;
336}
337
657cbb6b
JR
338static struct iommu_dev_data *get_dev_data(struct device *dev)
339{
340 return dev->archdata.iommu;
341}
342
b097d11a
WZ
343/*
344* Find or create an IOMMU group for a acpihid device.
345*/
346static struct iommu_group *acpihid_device_group(struct device *dev)
657cbb6b 347{
b097d11a 348 struct acpihid_map_entry *p, *entry = NULL;
2d8e1f03 349 int devid;
b097d11a
WZ
350
351 devid = get_acpihid_device_id(dev, &entry);
352 if (devid < 0)
353 return ERR_PTR(devid);
354
355 list_for_each_entry(p, &acpihid_map, list) {
356 if ((devid == p->devid) && p->group)
357 entry->group = p->group;
358 }
359
360 if (!entry->group)
361 entry->group = generic_device_group(dev);
362
363 return entry->group;
657cbb6b
JR
364}
365
5abcdba4
JR
366static bool pci_iommuv2_capable(struct pci_dev *pdev)
367{
368 static const int caps[] = {
369 PCI_EXT_CAP_ID_ATS,
46277b75
JR
370 PCI_EXT_CAP_ID_PRI,
371 PCI_EXT_CAP_ID_PASID,
5abcdba4
JR
372 };
373 int i, pos;
374
375 for (i = 0; i < 3; ++i) {
376 pos = pci_find_ext_capability(pdev, caps[i]);
377 if (pos == 0)
378 return false;
379 }
380
381 return true;
382}
383
6a113ddc
JR
384static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
385{
386 struct iommu_dev_data *dev_data;
387
388 dev_data = get_dev_data(&pdev->dev);
389
390 return dev_data->errata & (1 << erratum) ? true : false;
391}
392
71c70984 393/*
0bb6e243
JR
394 * This function actually applies the mapping to the page table of the
395 * dma_ops domain.
71c70984 396 */
0bb6e243
JR
397static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
398 struct unity_map_entry *e)
71c70984 399{
0bb6e243 400 u64 addr;
71c70984 401
0bb6e243
JR
402 for (addr = e->address_start; addr < e->address_end;
403 addr += PAGE_SIZE) {
404 if (addr < dma_dom->aperture_size)
405 __set_bit(addr >> PAGE_SHIFT,
406 dma_dom->aperture[0]->bitmap);
71c70984 407 }
0bb6e243 408}
71c70984 409
0bb6e243
JR
410/*
411 * Inits the unity mappings required for a specific device
412 */
413static void init_unity_mappings_for_device(struct device *dev,
414 struct dma_ops_domain *dma_dom)
415{
416 struct unity_map_entry *e;
7aba6cb9 417 int devid;
71c70984 418
0bb6e243 419 devid = get_device_id(dev);
9ee35e4c 420 if (devid < 0)
7aba6cb9 421 return;
71c70984 422
0bb6e243
JR
423 list_for_each_entry(e, &amd_iommu_unity_map, list) {
424 if (!(devid >= e->devid_start && devid <= e->devid_end))
425 continue;
426 alloc_unity_mapping(dma_dom, e);
427 }
71c70984
JR
428}
429
98fc5a69
JR
430/*
431 * This function checks if the driver got a valid device from the caller to
432 * avoid dereferencing invalid pointers.
433 */
434static bool check_device(struct device *dev)
435{
7aba6cb9 436 int devid;
98fc5a69
JR
437
438 if (!dev || !dev->dma_mask)
439 return false;
440
98fc5a69 441 devid = get_device_id(dev);
9ee35e4c 442 if (devid < 0)
7aba6cb9 443 return false;
98fc5a69
JR
444
445 /* Out of our scope? */
446 if (devid > amd_iommu_last_bdf)
447 return false;
448
449 if (amd_iommu_rlookup_table[devid] == NULL)
450 return false;
451
452 return true;
453}
454
25b11ce2 455static void init_iommu_group(struct device *dev)
2851db21 456{
0bb6e243
JR
457 struct dma_ops_domain *dma_domain;
458 struct iommu_domain *domain;
2851db21 459 struct iommu_group *group;
2851db21 460
65d5352f 461 group = iommu_group_get_for_dev(dev);
0bb6e243
JR
462 if (IS_ERR(group))
463 return;
464
465 domain = iommu_group_default_domain(group);
466 if (!domain)
467 goto out;
468
469 dma_domain = to_pdomain(domain)->priv;
470
471 init_unity_mappings_for_device(dev, dma_domain);
472out:
473 iommu_group_put(group);
eb9c9527
AW
474}
475
476static int iommu_init_device(struct device *dev)
477{
eb9c9527 478 struct iommu_dev_data *dev_data;
7aba6cb9 479 int devid;
eb9c9527
AW
480
481 if (dev->archdata.iommu)
482 return 0;
483
7aba6cb9 484 devid = get_device_id(dev);
9ee35e4c 485 if (devid < 0)
7aba6cb9
WZ
486 return devid;
487
488 dev_data = find_dev_data(devid);
eb9c9527
AW
489 if (!dev_data)
490 return -ENOMEM;
491
e3156048
JR
492 dev_data->alias = get_alias(dev);
493
2bf9a0a1 494 if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev))) {
5abcdba4
JR
495 struct amd_iommu *iommu;
496
2bf9a0a1 497 iommu = amd_iommu_rlookup_table[dev_data->devid];
5abcdba4
JR
498 dev_data->iommu_v2 = iommu->is_iommu_v2;
499 }
500
657cbb6b
JR
501 dev->archdata.iommu = dev_data;
502
066f2e98
AW
503 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
504 dev);
505
657cbb6b
JR
506 return 0;
507}
508
26018874
JR
509static void iommu_ignore_device(struct device *dev)
510{
7aba6cb9
WZ
511 u16 alias;
512 int devid;
26018874
JR
513
514 devid = get_device_id(dev);
9ee35e4c 515 if (devid < 0)
7aba6cb9
WZ
516 return;
517
e3156048 518 alias = get_alias(dev);
26018874
JR
519
520 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
521 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
522
523 amd_iommu_rlookup_table[devid] = NULL;
524 amd_iommu_rlookup_table[alias] = NULL;
525}
526
657cbb6b
JR
527static void iommu_uninit_device(struct device *dev)
528{
7aba6cb9
WZ
529 int devid;
530 struct iommu_dev_data *dev_data;
c1931090 531
7aba6cb9 532 devid = get_device_id(dev);
9ee35e4c 533 if (devid < 0)
7aba6cb9 534 return;
c1931090 535
7aba6cb9 536 dev_data = search_dev_data(devid);
c1931090
AW
537 if (!dev_data)
538 return;
539
b6809ee5
JR
540 if (dev_data->domain)
541 detach_device(dev);
542
066f2e98
AW
543 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
544 dev);
545
9dcd6130
AW
546 iommu_group_remove_device(dev);
547
aafd8ba0
JR
548 /* Remove dma-ops */
549 dev->archdata.dma_ops = NULL;
550
8fa5f802 551 /*
c1931090
AW
552 * We keep dev_data around for unplugged devices and reuse it when the
553 * device is re-plugged - not doing so would introduce a ton of races.
8fa5f802 554 */
657cbb6b 555}
b7cc9554 556
a80dc3e0
JR
557/****************************************************************************
558 *
559 * Interrupt handling functions
560 *
561 ****************************************************************************/
562
e3e59876
JR
563static void dump_dte_entry(u16 devid)
564{
565 int i;
566
ee6c2868
JR
567 for (i = 0; i < 4; ++i)
568 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
e3e59876
JR
569 amd_iommu_dev_table[devid].data[i]);
570}
571
945b4ac4
JR
572static void dump_command(unsigned long phys_addr)
573{
574 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
575 int i;
576
577 for (i = 0; i < 4; ++i)
578 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
579}
580
a345b23b 581static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
90008ee4 582{
3d06fca8
JR
583 int type, devid, domid, flags;
584 volatile u32 *event = __evt;
585 int count = 0;
586 u64 address;
587
588retry:
589 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
590 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
591 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
592 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
593 address = (u64)(((u64)event[3]) << 32) | event[2];
594
595 if (type == 0) {
596 /* Did we hit the erratum? */
597 if (++count == LOOP_TIMEOUT) {
598 pr_err("AMD-Vi: No event written to event log\n");
599 return;
600 }
601 udelay(1);
602 goto retry;
603 }
90008ee4 604
4c6f40d4 605 printk(KERN_ERR "AMD-Vi: Event logged [");
90008ee4
JR
606
607 switch (type) {
608 case EVENT_TYPE_ILL_DEV:
609 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
610 "address=0x%016llx flags=0x%04x]\n",
c5081cd7 611 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4 612 address, flags);
e3e59876 613 dump_dte_entry(devid);
90008ee4
JR
614 break;
615 case EVENT_TYPE_IO_FAULT:
616 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
617 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
c5081cd7 618 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4
JR
619 domid, address, flags);
620 break;
621 case EVENT_TYPE_DEV_TAB_ERR:
622 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
623 "address=0x%016llx flags=0x%04x]\n",
c5081cd7 624 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4
JR
625 address, flags);
626 break;
627 case EVENT_TYPE_PAGE_TAB_ERR:
628 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
629 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
c5081cd7 630 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4
JR
631 domid, address, flags);
632 break;
633 case EVENT_TYPE_ILL_CMD:
634 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
945b4ac4 635 dump_command(address);
90008ee4
JR
636 break;
637 case EVENT_TYPE_CMD_HARD_ERR:
638 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
639 "flags=0x%04x]\n", address, flags);
640 break;
641 case EVENT_TYPE_IOTLB_INV_TO:
642 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
643 "address=0x%016llx]\n",
c5081cd7 644 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4
JR
645 address);
646 break;
647 case EVENT_TYPE_INV_DEV_REQ:
648 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
649 "address=0x%016llx flags=0x%04x]\n",
c5081cd7 650 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
90008ee4
JR
651 address, flags);
652 break;
653 default:
654 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
655 }
3d06fca8
JR
656
657 memset(__evt, 0, 4 * sizeof(u32));
90008ee4
JR
658}
659
660static void iommu_poll_events(struct amd_iommu *iommu)
661{
662 u32 head, tail;
90008ee4
JR
663
664 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
665 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
666
667 while (head != tail) {
a345b23b 668 iommu_print_event(iommu, iommu->evt_buf + head);
deba4bce 669 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
90008ee4
JR
670 }
671
672 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
90008ee4
JR
673}
674
eee53537 675static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
72e1dcc4
JR
676{
677 struct amd_iommu_fault fault;
72e1dcc4 678
72e1dcc4
JR
679 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
680 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
681 return;
682 }
683
684 fault.address = raw[1];
685 fault.pasid = PPR_PASID(raw[0]);
686 fault.device_id = PPR_DEVID(raw[0]);
687 fault.tag = PPR_TAG(raw[0]);
688 fault.flags = PPR_FLAGS(raw[0]);
689
72e1dcc4
JR
690 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
691}
692
693static void iommu_poll_ppr_log(struct amd_iommu *iommu)
694{
72e1dcc4
JR
695 u32 head, tail;
696
697 if (iommu->ppr_log == NULL)
698 return;
699
72e1dcc4
JR
700 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
701 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
702
703 while (head != tail) {
eee53537
JR
704 volatile u64 *raw;
705 u64 entry[2];
706 int i;
707
708 raw = (u64 *)(iommu->ppr_log + head);
709
710 /*
711 * Hardware bug: Interrupt may arrive before the entry is
712 * written to memory. If this happens we need to wait for the
713 * entry to arrive.
714 */
715 for (i = 0; i < LOOP_TIMEOUT; ++i) {
716 if (PPR_REQ_TYPE(raw[0]) != 0)
717 break;
718 udelay(1);
719 }
72e1dcc4 720
eee53537
JR
721 /* Avoid memcpy function-call overhead */
722 entry[0] = raw[0];
723 entry[1] = raw[1];
72e1dcc4 724
eee53537
JR
725 /*
726 * To detect the hardware bug we need to clear the entry
727 * back to zero.
728 */
729 raw[0] = raw[1] = 0UL;
730
731 /* Update head pointer of hardware ring-buffer */
72e1dcc4
JR
732 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
733 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
eee53537 734
eee53537
JR
735 /* Handle PPR entry */
736 iommu_handle_ppr_entry(iommu, entry);
737
eee53537
JR
738 /* Refresh ring-buffer information */
739 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
72e1dcc4
JR
740 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
741 }
72e1dcc4
JR
742}
743
72fe00f0 744irqreturn_t amd_iommu_int_thread(int irq, void *data)
a80dc3e0 745{
3f398bc7
SS
746 struct amd_iommu *iommu = (struct amd_iommu *) data;
747 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
90008ee4 748
3f398bc7
SS
749 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
750 /* Enable EVT and PPR interrupts again */
751 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
752 iommu->mmio_base + MMIO_STATUS_OFFSET);
90008ee4 753
3f398bc7
SS
754 if (status & MMIO_STATUS_EVT_INT_MASK) {
755 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
756 iommu_poll_events(iommu);
757 }
90008ee4 758
3f398bc7
SS
759 if (status & MMIO_STATUS_PPR_INT_MASK) {
760 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
761 iommu_poll_ppr_log(iommu);
762 }
90008ee4 763
3f398bc7
SS
764 /*
765 * Hardware bug: ERBT1312
766 * When re-enabling interrupt (by writing 1
767 * to clear the bit), the hardware might also try to set
768 * the interrupt bit in the event status register.
769 * In this scenario, the bit will be set, and disable
770 * subsequent interrupts.
771 *
772 * Workaround: The IOMMU driver should read back the
773 * status register and check if the interrupt bits are cleared.
774 * If not, driver will need to go through the interrupt handler
775 * again and re-clear the bits
776 */
777 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
778 }
90008ee4 779 return IRQ_HANDLED;
a80dc3e0
JR
780}
781
72fe00f0
JR
782irqreturn_t amd_iommu_int_handler(int irq, void *data)
783{
784 return IRQ_WAKE_THREAD;
785}
786
431b2a20
JR
787/****************************************************************************
788 *
789 * IOMMU command queuing functions
790 *
791 ****************************************************************************/
792
ac0ea6e9
JR
793static int wait_on_sem(volatile u64 *sem)
794{
795 int i = 0;
796
797 while (*sem == 0 && i < LOOP_TIMEOUT) {
798 udelay(1);
799 i += 1;
800 }
801
802 if (i == LOOP_TIMEOUT) {
803 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
804 return -EIO;
805 }
806
807 return 0;
808}
809
810static void copy_cmd_to_buffer(struct amd_iommu *iommu,
811 struct iommu_cmd *cmd,
812 u32 tail)
a19ae1ec 813{
a19ae1ec
JR
814 u8 *target;
815
8a7c5ef3 816 target = iommu->cmd_buf + tail;
deba4bce 817 tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
ac0ea6e9
JR
818
819 /* Copy command to buffer */
820 memcpy(target, cmd, sizeof(*cmd));
821
822 /* Tell the IOMMU about it */
a19ae1ec 823 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
ac0ea6e9 824}
a19ae1ec 825
815b33fd 826static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
ded46737 827{
815b33fd
JR
828 WARN_ON(address & 0x7ULL);
829
ded46737 830 memset(cmd, 0, sizeof(*cmd));
815b33fd
JR
831 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
832 cmd->data[1] = upper_32_bits(__pa(address));
833 cmd->data[2] = 1;
ded46737
JR
834 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
835}
836
94fe79e2
JR
837static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
838{
839 memset(cmd, 0, sizeof(*cmd));
840 cmd->data[0] = devid;
841 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
842}
843
11b6402c
JR
844static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
845 size_t size, u16 domid, int pde)
846{
847 u64 pages;
ae0cbbb1 848 bool s;
11b6402c
JR
849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
ae0cbbb1 851 s = false;
11b6402c
JR
852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
ae0cbbb1 859 s = true;
11b6402c
JR
860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[1] |= domid;
866 cmd->data[2] = lower_32_bits(address);
867 cmd->data[3] = upper_32_bits(address);
868 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
869 if (s) /* size bit - we flush more than one 4kb page */
870 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
df805abb 871 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
11b6402c
JR
872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
873}
874
cb41ed85
JR
875static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
876 u64 address, size_t size)
877{
878 u64 pages;
ae0cbbb1 879 bool s;
cb41ed85
JR
880
881 pages = iommu_num_pages(address, size, PAGE_SIZE);
ae0cbbb1 882 s = false;
cb41ed85
JR
883
884 if (pages > 1) {
885 /*
886 * If we have to flush more than one page, flush all
887 * TLB entries for this domain
888 */
889 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
ae0cbbb1 890 s = true;
cb41ed85
JR
891 }
892
893 address &= PAGE_MASK;
894
895 memset(cmd, 0, sizeof(*cmd));
896 cmd->data[0] = devid;
897 cmd->data[0] |= (qdep & 0xff) << 24;
898 cmd->data[1] = devid;
899 cmd->data[2] = lower_32_bits(address);
900 cmd->data[3] = upper_32_bits(address);
901 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
902 if (s)
903 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
904}
905
22e266c7
JR
906static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
907 u64 address, bool size)
908{
909 memset(cmd, 0, sizeof(*cmd));
910
911 address &= ~(0xfffULL);
912
a919a018 913 cmd->data[0] = pasid;
22e266c7
JR
914 cmd->data[1] = domid;
915 cmd->data[2] = lower_32_bits(address);
916 cmd->data[3] = upper_32_bits(address);
917 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
918 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
919 if (size)
920 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
921 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
922}
923
924static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
925 int qdep, u64 address, bool size)
926{
927 memset(cmd, 0, sizeof(*cmd));
928
929 address &= ~(0xfffULL);
930
931 cmd->data[0] = devid;
e8d2d82d 932 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
22e266c7
JR
933 cmd->data[0] |= (qdep & 0xff) << 24;
934 cmd->data[1] = devid;
e8d2d82d 935 cmd->data[1] |= (pasid & 0xff) << 16;
22e266c7
JR
936 cmd->data[2] = lower_32_bits(address);
937 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
938 cmd->data[3] = upper_32_bits(address);
939 if (size)
940 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
941 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
942}
943
c99afa25
JR
944static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
945 int status, int tag, bool gn)
946{
947 memset(cmd, 0, sizeof(*cmd));
948
949 cmd->data[0] = devid;
950 if (gn) {
a919a018 951 cmd->data[1] = pasid;
c99afa25
JR
952 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
953 }
954 cmd->data[3] = tag & 0x1ff;
955 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
956
957 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
958}
959
58fc7f14
JR
960static void build_inv_all(struct iommu_cmd *cmd)
961{
962 memset(cmd, 0, sizeof(*cmd));
963 CMD_SET_TYPE(cmd, CMD_INV_ALL);
a19ae1ec
JR
964}
965
7ef2798d
JR
966static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
967{
968 memset(cmd, 0, sizeof(*cmd));
969 cmd->data[0] = devid;
970 CMD_SET_TYPE(cmd, CMD_INV_IRT);
971}
972
431b2a20 973/*
431b2a20 974 * Writes the command to the IOMMUs command buffer and informs the
ac0ea6e9 975 * hardware about the new command.
431b2a20 976 */
f1ca1512
JR
977static int iommu_queue_command_sync(struct amd_iommu *iommu,
978 struct iommu_cmd *cmd,
979 bool sync)
a19ae1ec 980{
ac0ea6e9 981 u32 left, tail, head, next_tail;
a19ae1ec 982 unsigned long flags;
a19ae1ec 983
ac0ea6e9 984again:
a19ae1ec 985 spin_lock_irqsave(&iommu->lock, flags);
a19ae1ec 986
ac0ea6e9
JR
987 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
988 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
deba4bce
JR
989 next_tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
990 left = (head - next_tail) % CMD_BUFFER_SIZE;
a19ae1ec 991
ac0ea6e9
JR
992 if (left <= 2) {
993 struct iommu_cmd sync_cmd;
994 volatile u64 sem = 0;
995 int ret;
8d201968 996
ac0ea6e9
JR
997 build_completion_wait(&sync_cmd, (u64)&sem);
998 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
da49f6df 999
ac0ea6e9
JR
1000 spin_unlock_irqrestore(&iommu->lock, flags);
1001
1002 if ((ret = wait_on_sem(&sem)) != 0)
1003 return ret;
1004
1005 goto again;
8d201968
JR
1006 }
1007
ac0ea6e9
JR
1008 copy_cmd_to_buffer(iommu, cmd, tail);
1009
1010 /* We need to sync now to make sure all commands are processed */
f1ca1512 1011 iommu->need_sync = sync;
ac0ea6e9 1012
a19ae1ec 1013 spin_unlock_irqrestore(&iommu->lock, flags);
8d201968 1014
815b33fd 1015 return 0;
8d201968
JR
1016}
1017
f1ca1512
JR
1018static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1019{
1020 return iommu_queue_command_sync(iommu, cmd, true);
1021}
1022
8d201968
JR
1023/*
1024 * This function queues a completion wait command into the command
1025 * buffer of an IOMMU
1026 */
a19ae1ec 1027static int iommu_completion_wait(struct amd_iommu *iommu)
8d201968
JR
1028{
1029 struct iommu_cmd cmd;
815b33fd 1030 volatile u64 sem = 0;
ac0ea6e9 1031 int ret;
8d201968 1032
09ee17eb 1033 if (!iommu->need_sync)
815b33fd 1034 return 0;
09ee17eb 1035
815b33fd 1036 build_completion_wait(&cmd, (u64)&sem);
a19ae1ec 1037
f1ca1512 1038 ret = iommu_queue_command_sync(iommu, &cmd, false);
a19ae1ec 1039 if (ret)
815b33fd 1040 return ret;
8d201968 1041
ac0ea6e9 1042 return wait_on_sem(&sem);
8d201968
JR
1043}
1044
d8c13085 1045static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
a19ae1ec 1046{
d8c13085 1047 struct iommu_cmd cmd;
a19ae1ec 1048
d8c13085 1049 build_inv_dte(&cmd, devid);
7e4f88da 1050
d8c13085
JR
1051 return iommu_queue_command(iommu, &cmd);
1052}
09ee17eb 1053
7d0c5cc5
JR
1054static void iommu_flush_dte_all(struct amd_iommu *iommu)
1055{
1056 u32 devid;
09ee17eb 1057
7d0c5cc5
JR
1058 for (devid = 0; devid <= 0xffff; ++devid)
1059 iommu_flush_dte(iommu, devid);
a19ae1ec 1060
7d0c5cc5
JR
1061 iommu_completion_wait(iommu);
1062}
84df8175 1063
7d0c5cc5
JR
1064/*
1065 * This function uses heavy locking and may disable irqs for some time. But
1066 * this is no issue because it is only called during resume.
1067 */
1068static void iommu_flush_tlb_all(struct amd_iommu *iommu)
1069{
1070 u32 dom_id;
a19ae1ec 1071
7d0c5cc5
JR
1072 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1073 struct iommu_cmd cmd;
1074 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1075 dom_id, 1);
1076 iommu_queue_command(iommu, &cmd);
1077 }
8eed9833 1078
7d0c5cc5 1079 iommu_completion_wait(iommu);
a19ae1ec
JR
1080}
1081
58fc7f14 1082static void iommu_flush_all(struct amd_iommu *iommu)
0518a3a4 1083{
58fc7f14 1084 struct iommu_cmd cmd;
0518a3a4 1085
58fc7f14 1086 build_inv_all(&cmd);
0518a3a4 1087
58fc7f14
JR
1088 iommu_queue_command(iommu, &cmd);
1089 iommu_completion_wait(iommu);
1090}
1091
7ef2798d
JR
1092static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1093{
1094 struct iommu_cmd cmd;
1095
1096 build_inv_irt(&cmd, devid);
1097
1098 iommu_queue_command(iommu, &cmd);
1099}
1100
1101static void iommu_flush_irt_all(struct amd_iommu *iommu)
1102{
1103 u32 devid;
1104
1105 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1106 iommu_flush_irt(iommu, devid);
1107
1108 iommu_completion_wait(iommu);
1109}
1110
7d0c5cc5
JR
1111void iommu_flush_all_caches(struct amd_iommu *iommu)
1112{
58fc7f14
JR
1113 if (iommu_feature(iommu, FEATURE_IA)) {
1114 iommu_flush_all(iommu);
1115 } else {
1116 iommu_flush_dte_all(iommu);
7ef2798d 1117 iommu_flush_irt_all(iommu);
58fc7f14 1118 iommu_flush_tlb_all(iommu);
0518a3a4
JR
1119 }
1120}
1121
431b2a20 1122/*
cb41ed85 1123 * Command send function for flushing on-device TLB
431b2a20 1124 */
6c542047
JR
1125static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1126 u64 address, size_t size)
3fa43655
JR
1127{
1128 struct amd_iommu *iommu;
b00d3bcf 1129 struct iommu_cmd cmd;
cb41ed85 1130 int qdep;
3fa43655 1131
ea61cddb
JR
1132 qdep = dev_data->ats.qdep;
1133 iommu = amd_iommu_rlookup_table[dev_data->devid];
3fa43655 1134
ea61cddb 1135 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
b00d3bcf
JR
1136
1137 return iommu_queue_command(iommu, &cmd);
3fa43655
JR
1138}
1139
431b2a20 1140/*
431b2a20 1141 * Command send function for invalidating a device table entry
431b2a20 1142 */
6c542047 1143static int device_flush_dte(struct iommu_dev_data *dev_data)
a19ae1ec 1144{
3fa43655 1145 struct amd_iommu *iommu;
e25bfb56 1146 u16 alias;
ee2fa743 1147 int ret;
a19ae1ec 1148
6c542047 1149 iommu = amd_iommu_rlookup_table[dev_data->devid];
e3156048 1150 alias = dev_data->alias;
a19ae1ec 1151
f62dda66 1152 ret = iommu_flush_dte(iommu, dev_data->devid);
e25bfb56
JR
1153 if (!ret && alias != dev_data->devid)
1154 ret = iommu_flush_dte(iommu, alias);
cb41ed85
JR
1155 if (ret)
1156 return ret;
1157
ea61cddb 1158 if (dev_data->ats.enabled)
6c542047 1159 ret = device_flush_iotlb(dev_data, 0, ~0UL);
ee2fa743 1160
ee2fa743 1161 return ret;
a19ae1ec
JR
1162}
1163
431b2a20
JR
1164/*
1165 * TLB invalidation function which is called from the mapping functions.
1166 * It invalidates a single PTE if the range to flush is within a single
1167 * page. Otherwise it flushes the whole TLB of the IOMMU.
1168 */
17b124bf
JR
1169static void __domain_flush_pages(struct protection_domain *domain,
1170 u64 address, size_t size, int pde)
a19ae1ec 1171{
cb41ed85 1172 struct iommu_dev_data *dev_data;
11b6402c
JR
1173 struct iommu_cmd cmd;
1174 int ret = 0, i;
a19ae1ec 1175
11b6402c 1176 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
999ba417 1177
6de8ad9b
JR
1178 for (i = 0; i < amd_iommus_present; ++i) {
1179 if (!domain->dev_iommu[i])
1180 continue;
1181
1182 /*
1183 * Devices of this domain are behind this IOMMU
1184 * We need a TLB flush
1185 */
11b6402c 1186 ret |= iommu_queue_command(amd_iommus[i], &cmd);
6de8ad9b
JR
1187 }
1188
cb41ed85 1189 list_for_each_entry(dev_data, &domain->dev_list, list) {
cb41ed85 1190
ea61cddb 1191 if (!dev_data->ats.enabled)
cb41ed85
JR
1192 continue;
1193
6c542047 1194 ret |= device_flush_iotlb(dev_data, address, size);
cb41ed85
JR
1195 }
1196
11b6402c 1197 WARN_ON(ret);
6de8ad9b
JR
1198}
1199
17b124bf
JR
1200static void domain_flush_pages(struct protection_domain *domain,
1201 u64 address, size_t size)
6de8ad9b 1202{
17b124bf 1203 __domain_flush_pages(domain, address, size, 0);
a19ae1ec 1204}
b6c02715 1205
1c655773 1206/* Flush the whole IO/TLB for a given protection domain */
17b124bf 1207static void domain_flush_tlb(struct protection_domain *domain)
1c655773 1208{
17b124bf 1209 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
1c655773
JR
1210}
1211
42a49f96 1212/* Flush the whole IO/TLB for a given protection domain - including PDE */
17b124bf 1213static void domain_flush_tlb_pde(struct protection_domain *domain)
42a49f96 1214{
17b124bf 1215 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
42a49f96
CW
1216}
1217
17b124bf 1218static void domain_flush_complete(struct protection_domain *domain)
b00d3bcf 1219{
17b124bf 1220 int i;
18811f55 1221
17b124bf
JR
1222 for (i = 0; i < amd_iommus_present; ++i) {
1223 if (!domain->dev_iommu[i])
1224 continue;
bfd1be18 1225
17b124bf
JR
1226 /*
1227 * Devices of this domain are behind this IOMMU
1228 * We need to wait for completion of all commands.
1229 */
1230 iommu_completion_wait(amd_iommus[i]);
bfd1be18 1231 }
e394d72a
JR
1232}
1233
b00d3bcf 1234
09b42804 1235/*
b00d3bcf 1236 * This function flushes the DTEs for all devices in domain
09b42804 1237 */
17b124bf 1238static void domain_flush_devices(struct protection_domain *domain)
e394d72a 1239{
b00d3bcf 1240 struct iommu_dev_data *dev_data;
b26e81b8 1241
b00d3bcf 1242 list_for_each_entry(dev_data, &domain->dev_list, list)
6c542047 1243 device_flush_dte(dev_data);
a345b23b
JR
1244}
1245
431b2a20
JR
1246/****************************************************************************
1247 *
1248 * The functions below are used the create the page table mappings for
1249 * unity mapped regions.
1250 *
1251 ****************************************************************************/
1252
308973d3
JR
1253/*
1254 * This function is used to add another level to an IO page table. Adding
1255 * another level increases the size of the address space by 9 bits to a size up
1256 * to 64 bits.
1257 */
1258static bool increase_address_space(struct protection_domain *domain,
1259 gfp_t gfp)
1260{
1261 u64 *pte;
1262
1263 if (domain->mode == PAGE_MODE_6_LEVEL)
1264 /* address space already 64 bit large */
1265 return false;
1266
1267 pte = (void *)get_zeroed_page(gfp);
1268 if (!pte)
1269 return false;
1270
1271 *pte = PM_LEVEL_PDE(domain->mode,
1272 virt_to_phys(domain->pt_root));
1273 domain->pt_root = pte;
1274 domain->mode += 1;
1275 domain->updated = true;
1276
1277 return true;
1278}
1279
1280static u64 *alloc_pte(struct protection_domain *domain,
1281 unsigned long address,
cbb9d729 1282 unsigned long page_size,
308973d3
JR
1283 u64 **pte_page,
1284 gfp_t gfp)
1285{
cbb9d729 1286 int level, end_lvl;
308973d3 1287 u64 *pte, *page;
cbb9d729
JR
1288
1289 BUG_ON(!is_power_of_2(page_size));
308973d3
JR
1290
1291 while (address > PM_LEVEL_SIZE(domain->mode))
1292 increase_address_space(domain, gfp);
1293
cbb9d729
JR
1294 level = domain->mode - 1;
1295 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1296 address = PAGE_SIZE_ALIGN(address, page_size);
1297 end_lvl = PAGE_SIZE_LEVEL(page_size);
308973d3
JR
1298
1299 while (level > end_lvl) {
7bfa5bd2
JR
1300 u64 __pte, __npte;
1301
1302 __pte = *pte;
1303
1304 if (!IOMMU_PTE_PRESENT(__pte)) {
308973d3
JR
1305 page = (u64 *)get_zeroed_page(gfp);
1306 if (!page)
1307 return NULL;
7bfa5bd2
JR
1308
1309 __npte = PM_LEVEL_PDE(level, virt_to_phys(page));
1310
1311 if (cmpxchg64(pte, __pte, __npte)) {
1312 free_page((unsigned long)page);
1313 continue;
1314 }
308973d3
JR
1315 }
1316
cbb9d729
JR
1317 /* No level skipping support yet */
1318 if (PM_PTE_LEVEL(*pte) != level)
1319 return NULL;
1320
308973d3
JR
1321 level -= 1;
1322
1323 pte = IOMMU_PTE_PAGE(*pte);
1324
1325 if (pte_page && level == end_lvl)
1326 *pte_page = pte;
1327
1328 pte = &pte[PM_LEVEL_INDEX(level, address)];
1329 }
1330
1331 return pte;
1332}
1333
1334/*
1335 * This function checks if there is a PTE for a given dma address. If
1336 * there is one, it returns the pointer to it.
1337 */
3039ca1b
JR
1338static u64 *fetch_pte(struct protection_domain *domain,
1339 unsigned long address,
1340 unsigned long *page_size)
308973d3
JR
1341{
1342 int level;
1343 u64 *pte;
1344
24cd7723
JR
1345 if (address > PM_LEVEL_SIZE(domain->mode))
1346 return NULL;
1347
3039ca1b
JR
1348 level = domain->mode - 1;
1349 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1350 *page_size = PTE_LEVEL_PAGE_SIZE(level);
308973d3 1351
24cd7723
JR
1352 while (level > 0) {
1353
1354 /* Not Present */
308973d3
JR
1355 if (!IOMMU_PTE_PRESENT(*pte))
1356 return NULL;
1357
24cd7723 1358 /* Large PTE */
3039ca1b
JR
1359 if (PM_PTE_LEVEL(*pte) == 7 ||
1360 PM_PTE_LEVEL(*pte) == 0)
1361 break;
24cd7723
JR
1362
1363 /* No level skipping support yet */
1364 if (PM_PTE_LEVEL(*pte) != level)
1365 return NULL;
1366
308973d3
JR
1367 level -= 1;
1368
24cd7723 1369 /* Walk to the next level */
3039ca1b
JR
1370 pte = IOMMU_PTE_PAGE(*pte);
1371 pte = &pte[PM_LEVEL_INDEX(level, address)];
1372 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1373 }
1374
1375 if (PM_PTE_LEVEL(*pte) == 0x07) {
1376 unsigned long pte_mask;
1377
1378 /*
1379 * If we have a series of large PTEs, make
1380 * sure to return a pointer to the first one.
1381 */
1382 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1383 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1384 pte = (u64 *)(((unsigned long)pte) & pte_mask);
308973d3
JR
1385 }
1386
1387 return pte;
1388}
1389
431b2a20
JR
1390/*
1391 * Generic mapping functions. It maps a physical address into a DMA
1392 * address space. It allocates the page table pages if necessary.
1393 * In the future it can be extended to a generic mapping function
1394 * supporting all features of AMD IOMMU page tables like level skipping
1395 * and full 64 bit address spaces.
1396 */
38e817fe
JR
1397static int iommu_map_page(struct protection_domain *dom,
1398 unsigned long bus_addr,
1399 unsigned long phys_addr,
abdc5eb3 1400 int prot,
cbb9d729 1401 unsigned long page_size)
bd0e5211 1402{
8bda3092 1403 u64 __pte, *pte;
cbb9d729 1404 int i, count;
abdc5eb3 1405
d4b03664
JR
1406 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1407 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1408
bad1cac2 1409 if (!(prot & IOMMU_PROT_MASK))
bd0e5211
JR
1410 return -EINVAL;
1411
d4b03664
JR
1412 count = PAGE_SIZE_PTE_COUNT(page_size);
1413 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
cbb9d729 1414
63eaa75e
ML
1415 if (!pte)
1416 return -ENOMEM;
1417
cbb9d729
JR
1418 for (i = 0; i < count; ++i)
1419 if (IOMMU_PTE_PRESENT(pte[i]))
1420 return -EBUSY;
bd0e5211 1421
d4b03664 1422 if (count > 1) {
cbb9d729
JR
1423 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1424 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1425 } else
1426 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
bd0e5211 1427
bd0e5211
JR
1428 if (prot & IOMMU_PROT_IR)
1429 __pte |= IOMMU_PTE_IR;
1430 if (prot & IOMMU_PROT_IW)
1431 __pte |= IOMMU_PTE_IW;
1432
cbb9d729
JR
1433 for (i = 0; i < count; ++i)
1434 pte[i] = __pte;
bd0e5211 1435
04bfdd84
JR
1436 update_domain(dom);
1437
bd0e5211
JR
1438 return 0;
1439}
1440
24cd7723
JR
1441static unsigned long iommu_unmap_page(struct protection_domain *dom,
1442 unsigned long bus_addr,
1443 unsigned long page_size)
eb74ff6c 1444{
71b390e9
JR
1445 unsigned long long unmapped;
1446 unsigned long unmap_size;
24cd7723
JR
1447 u64 *pte;
1448
1449 BUG_ON(!is_power_of_2(page_size));
1450
1451 unmapped = 0;
eb74ff6c 1452
24cd7723
JR
1453 while (unmapped < page_size) {
1454
71b390e9
JR
1455 pte = fetch_pte(dom, bus_addr, &unmap_size);
1456
1457 if (pte) {
1458 int i, count;
1459
1460 count = PAGE_SIZE_PTE_COUNT(unmap_size);
24cd7723
JR
1461 for (i = 0; i < count; i++)
1462 pte[i] = 0ULL;
1463 }
1464
1465 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1466 unmapped += unmap_size;
1467 }
1468
60d0ca3c 1469 BUG_ON(unmapped && !is_power_of_2(unmapped));
eb74ff6c 1470
24cd7723 1471 return unmapped;
eb74ff6c 1472}
eb74ff6c 1473
431b2a20
JR
1474/****************************************************************************
1475 *
1476 * The next functions belong to the address allocator for the dma_ops
1477 * interface functions. They work like the allocators in the other IOMMU
1478 * drivers. Its basically a bitmap which marks the allocated pages in
1479 * the aperture. Maybe it could be enhanced in the future to a more
1480 * efficient allocator.
1481 *
1482 ****************************************************************************/
d3086444 1483
431b2a20 1484/*
384de729 1485 * The address allocator core functions.
431b2a20
JR
1486 *
1487 * called with domain->lock held
1488 */
384de729 1489
171e7b37
JR
1490/*
1491 * Used to reserve address ranges in the aperture (e.g. for exclusion
1492 * ranges.
1493 */
1494static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1495 unsigned long start_page,
1496 unsigned int pages)
1497{
1498 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1499
1500 if (start_page + pages > last_page)
1501 pages = last_page - start_page;
1502
1503 for (i = start_page; i < start_page + pages; ++i) {
1504 int index = i / APERTURE_RANGE_PAGES;
1505 int page = i % APERTURE_RANGE_PAGES;
1506 __set_bit(page, dom->aperture[index]->bitmap);
1507 }
1508}
1509
9cabe89b
JR
1510/*
1511 * This function is used to add a new aperture range to an existing
1512 * aperture in case of dma_ops domain allocation or address allocation
1513 * failure.
1514 */
576175c2 1515static int alloc_new_range(struct dma_ops_domain *dma_dom,
9cabe89b
JR
1516 bool populate, gfp_t gfp)
1517{
1518 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
5d7c94c3 1519 unsigned long i, old_size, pte_pgsize;
a73c1566
JR
1520 struct aperture_range *range;
1521 struct amd_iommu *iommu;
1522 unsigned long flags;
9cabe89b 1523
f5e9705c
JR
1524#ifdef CONFIG_IOMMU_STRESS
1525 populate = false;
1526#endif
1527
9cabe89b
JR
1528 if (index >= APERTURE_MAX_RANGES)
1529 return -ENOMEM;
1530
a73c1566
JR
1531 range = kzalloc(sizeof(struct aperture_range), gfp);
1532 if (!range)
9cabe89b
JR
1533 return -ENOMEM;
1534
a73c1566
JR
1535 range->bitmap = (void *)get_zeroed_page(gfp);
1536 if (!range->bitmap)
9cabe89b
JR
1537 goto out_free;
1538
a73c1566 1539 range->offset = dma_dom->aperture_size;
9cabe89b 1540
a73c1566 1541 spin_lock_init(&range->bitmap_lock);
08c5fb93 1542
9cabe89b
JR
1543 if (populate) {
1544 unsigned long address = dma_dom->aperture_size;
1545 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1546 u64 *pte, *pte_page;
1547
1548 for (i = 0; i < num_ptes; ++i) {
cbb9d729 1549 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
9cabe89b
JR
1550 &pte_page, gfp);
1551 if (!pte)
1552 goto out_free;
1553
a73c1566 1554 range->pte_pages[i] = pte_page;
9cabe89b
JR
1555
1556 address += APERTURE_RANGE_SIZE / 64;
1557 }
1558 }
1559
92d420ec
JR
1560 spin_lock_irqsave(&dma_dom->domain.lock, flags);
1561
a73c1566 1562 /* First take the bitmap_lock and then publish the range */
92d420ec 1563 spin_lock(&range->bitmap_lock);
a73c1566
JR
1564
1565 old_size = dma_dom->aperture_size;
1566 dma_dom->aperture[index] = range;
1567 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
9cabe89b 1568
17f5b569
JR
1569 /* Reserve address range used for MSI messages */
1570 if (old_size < MSI_ADDR_BASE_LO &&
1571 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1572 unsigned long spage;
1573 int pages;
1574
1575 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1576 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1577
1578 dma_ops_reserve_addresses(dma_dom, spage, pages);
1579 }
1580
b595076a 1581 /* Initialize the exclusion range if necessary */
576175c2
JR
1582 for_each_iommu(iommu) {
1583 if (iommu->exclusion_start &&
1584 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1585 && iommu->exclusion_start < dma_dom->aperture_size) {
1586 unsigned long startpage;
1587 int pages = iommu_num_pages(iommu->exclusion_start,
1588 iommu->exclusion_length,
1589 PAGE_SIZE);
1590 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1591 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1592 }
00cd122a
JR
1593 }
1594
1595 /*
1596 * Check for areas already mapped as present in the new aperture
1597 * range and mark those pages as reserved in the allocator. Such
1598 * mappings may already exist as a result of requested unity
1599 * mappings for devices.
1600 */
1601 for (i = dma_dom->aperture[index]->offset;
1602 i < dma_dom->aperture_size;
5d7c94c3 1603 i += pte_pgsize) {
3039ca1b 1604 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
00cd122a
JR
1605 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1606 continue;
1607
5d7c94c3
JR
1608 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1609 pte_pgsize >> 12);
00cd122a
JR
1610 }
1611
04bfdd84
JR
1612 update_domain(&dma_dom->domain);
1613
92d420ec
JR
1614 spin_unlock(&range->bitmap_lock);
1615
1616 spin_unlock_irqrestore(&dma_dom->domain.lock, flags);
a73c1566 1617
9cabe89b
JR
1618 return 0;
1619
1620out_free:
04bfdd84
JR
1621 update_domain(&dma_dom->domain);
1622
a73c1566 1623 free_page((unsigned long)range->bitmap);
9cabe89b 1624
a73c1566 1625 kfree(range);
9cabe89b
JR
1626
1627 return -ENOMEM;
1628}
1629
ccb50e03
JR
1630static dma_addr_t dma_ops_aperture_alloc(struct dma_ops_domain *dom,
1631 struct aperture_range *range,
a0f51447 1632 unsigned long pages,
a0f51447
JR
1633 unsigned long dma_mask,
1634 unsigned long boundary_size,
7b5e25b8
JR
1635 unsigned long align_mask,
1636 bool trylock)
a0f51447
JR
1637{
1638 unsigned long offset, limit, flags;
1639 dma_addr_t address;
ccb50e03 1640 bool flush = false;
a0f51447
JR
1641
1642 offset = range->offset >> PAGE_SHIFT;
1643 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1644 dma_mask >> PAGE_SHIFT);
1645
7b5e25b8
JR
1646 if (trylock) {
1647 if (!spin_trylock_irqsave(&range->bitmap_lock, flags))
1648 return -1;
1649 } else {
1650 spin_lock_irqsave(&range->bitmap_lock, flags);
1651 }
1652
60e6a7cb
JR
1653 address = iommu_area_alloc(range->bitmap, limit, range->next_bit,
1654 pages, offset, boundary_size, align_mask);
ccb50e03 1655 if (address == -1) {
60e6a7cb
JR
1656 /* Nothing found, retry one time */
1657 address = iommu_area_alloc(range->bitmap, limit,
1658 0, pages, offset, boundary_size,
1659 align_mask);
ccb50e03
JR
1660 flush = true;
1661 }
60e6a7cb
JR
1662
1663 if (address != -1)
1664 range->next_bit = address + pages;
1665
a0f51447
JR
1666 spin_unlock_irqrestore(&range->bitmap_lock, flags);
1667
ccb50e03
JR
1668 if (flush) {
1669 domain_flush_tlb(&dom->domain);
1670 domain_flush_complete(&dom->domain);
1671 }
1672
a0f51447
JR
1673 return address;
1674}
1675
384de729
JR
1676static unsigned long dma_ops_area_alloc(struct device *dev,
1677 struct dma_ops_domain *dom,
1678 unsigned int pages,
1679 unsigned long align_mask,
05ab49e0 1680 u64 dma_mask)
384de729 1681{
ab7032bb 1682 unsigned long boundary_size, mask;
384de729 1683 unsigned long address = -1;
7b5e25b8 1684 bool first = true;
5f6bed50
JR
1685 u32 start, i;
1686
1687 preempt_disable();
384de729 1688
e6aabee0
JR
1689 mask = dma_get_seg_boundary(dev);
1690
7b5e25b8 1691again:
5f6bed50
JR
1692 start = this_cpu_read(*dom->next_index);
1693
1694 /* Sanity check - is it really necessary? */
1695 if (unlikely(start > APERTURE_MAX_RANGES)) {
1696 start = 0;
1697 this_cpu_write(*dom->next_index, 0);
1698 }
1699
e6aabee0
JR
1700 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1701 1UL << (BITS_PER_LONG - PAGE_SHIFT);
384de729 1702
2a87442c
JR
1703 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1704 struct aperture_range *range;
5f6bed50
JR
1705 int index;
1706
1707 index = (start + i) % APERTURE_MAX_RANGES;
ccb50e03 1708
5f6bed50 1709 range = dom->aperture[index];
2a87442c
JR
1710
1711 if (!range || range->offset >= dma_mask)
1712 continue;
384de729 1713
2a87442c 1714 address = dma_ops_aperture_alloc(dom, range, pages,
60e6a7cb 1715 dma_mask, boundary_size,
7b5e25b8 1716 align_mask, first);
384de729 1717 if (address != -1) {
2a87442c 1718 address = range->offset + (address << PAGE_SHIFT);
5f6bed50 1719 this_cpu_write(*dom->next_index, index);
384de729
JR
1720 break;
1721 }
384de729
JR
1722 }
1723
7b5e25b8
JR
1724 if (address == -1 && first) {
1725 first = false;
1726 goto again;
1727 }
1728
5f6bed50
JR
1729 preempt_enable();
1730
384de729
JR
1731 return address;
1732}
1733
d3086444
JR
1734static unsigned long dma_ops_alloc_addresses(struct device *dev,
1735 struct dma_ops_domain *dom,
6d4f343f 1736 unsigned int pages,
832a90c3
JR
1737 unsigned long align_mask,
1738 u64 dma_mask)
d3086444 1739{
266a3bd2 1740 unsigned long address = -1;
d3086444 1741
266a3bd2
JR
1742 while (address == -1) {
1743 address = dma_ops_area_alloc(dev, dom, pages,
1744 align_mask, dma_mask);
1745
7bfa5bd2 1746 if (address == -1 && alloc_new_range(dom, false, GFP_ATOMIC))
266a3bd2
JR
1747 break;
1748 }
d3086444 1749
384de729 1750 if (unlikely(address == -1))
8fd524b3 1751 address = DMA_ERROR_CODE;
d3086444
JR
1752
1753 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1754
1755 return address;
1756}
1757
431b2a20
JR
1758/*
1759 * The address free function.
1760 *
1761 * called with domain->lock held
1762 */
d3086444
JR
1763static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1764 unsigned long address,
1765 unsigned int pages)
1766{
384de729
JR
1767 unsigned i = address >> APERTURE_RANGE_SHIFT;
1768 struct aperture_range *range = dom->aperture[i];
08c5fb93 1769 unsigned long flags;
80be308d 1770
384de729
JR
1771 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1772
47bccd6b
JR
1773#ifdef CONFIG_IOMMU_STRESS
1774 if (i < 4)
1775 return;
1776#endif
80be308d 1777
4eeca8c5 1778 if (amd_iommu_unmap_flush) {
d41ab098
JR
1779 domain_flush_tlb(&dom->domain);
1780 domain_flush_complete(&dom->domain);
1781 }
384de729
JR
1782
1783 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
803b8cb4 1784
08c5fb93 1785 spin_lock_irqsave(&range->bitmap_lock, flags);
4eeca8c5
JR
1786 if (address + pages > range->next_bit)
1787 range->next_bit = address + pages;
a66022c4 1788 bitmap_clear(range->bitmap, address, pages);
08c5fb93 1789 spin_unlock_irqrestore(&range->bitmap_lock, flags);
384de729 1790
d3086444
JR
1791}
1792
431b2a20
JR
1793/****************************************************************************
1794 *
1795 * The next functions belong to the domain allocation. A domain is
1796 * allocated for every IOMMU as the default domain. If device isolation
1797 * is enabled, every device get its own domain. The most important thing
1798 * about domains is the page table mapping the DMA address space they
1799 * contain.
1800 *
1801 ****************************************************************************/
1802
aeb26f55
JR
1803/*
1804 * This function adds a protection domain to the global protection domain list
1805 */
1806static void add_domain_to_list(struct protection_domain *domain)
1807{
1808 unsigned long flags;
1809
1810 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1811 list_add(&domain->list, &amd_iommu_pd_list);
1812 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1813}
1814
1815/*
1816 * This function removes a protection domain to the global
1817 * protection domain list
1818 */
1819static void del_domain_from_list(struct protection_domain *domain)
1820{
1821 unsigned long flags;
1822
1823 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1824 list_del(&domain->list);
1825 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1826}
1827
ec487d1a
JR
1828static u16 domain_id_alloc(void)
1829{
1830 unsigned long flags;
1831 int id;
1832
1833 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1834 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1835 BUG_ON(id == 0);
1836 if (id > 0 && id < MAX_DOMAIN_ID)
1837 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1838 else
1839 id = 0;
1840 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1841
1842 return id;
1843}
1844
a2acfb75
JR
1845static void domain_id_free(int id)
1846{
1847 unsigned long flags;
1848
1849 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1850 if (id > 0 && id < MAX_DOMAIN_ID)
1851 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1852 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1853}
a2acfb75 1854
5c34c403
JR
1855#define DEFINE_FREE_PT_FN(LVL, FN) \
1856static void free_pt_##LVL (unsigned long __pt) \
1857{ \
1858 unsigned long p; \
1859 u64 *pt; \
1860 int i; \
1861 \
1862 pt = (u64 *)__pt; \
1863 \
1864 for (i = 0; i < 512; ++i) { \
0b3fff54 1865 /* PTE present? */ \
5c34c403
JR
1866 if (!IOMMU_PTE_PRESENT(pt[i])) \
1867 continue; \
1868 \
0b3fff54
JR
1869 /* Large PTE? */ \
1870 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1871 PM_PTE_LEVEL(pt[i]) == 7) \
1872 continue; \
1873 \
5c34c403
JR
1874 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1875 FN(p); \
1876 } \
1877 free_page((unsigned long)pt); \
1878}
1879
1880DEFINE_FREE_PT_FN(l2, free_page)
1881DEFINE_FREE_PT_FN(l3, free_pt_l2)
1882DEFINE_FREE_PT_FN(l4, free_pt_l3)
1883DEFINE_FREE_PT_FN(l5, free_pt_l4)
1884DEFINE_FREE_PT_FN(l6, free_pt_l5)
1885
86db2e5d 1886static void free_pagetable(struct protection_domain *domain)
ec487d1a 1887{
5c34c403 1888 unsigned long root = (unsigned long)domain->pt_root;
ec487d1a 1889
5c34c403
JR
1890 switch (domain->mode) {
1891 case PAGE_MODE_NONE:
1892 break;
1893 case PAGE_MODE_1_LEVEL:
1894 free_page(root);
1895 break;
1896 case PAGE_MODE_2_LEVEL:
1897 free_pt_l2(root);
1898 break;
1899 case PAGE_MODE_3_LEVEL:
1900 free_pt_l3(root);
1901 break;
1902 case PAGE_MODE_4_LEVEL:
1903 free_pt_l4(root);
1904 break;
1905 case PAGE_MODE_5_LEVEL:
1906 free_pt_l5(root);
1907 break;
1908 case PAGE_MODE_6_LEVEL:
1909 free_pt_l6(root);
1910 break;
1911 default:
1912 BUG();
ec487d1a 1913 }
ec487d1a
JR
1914}
1915
b16137b1
JR
1916static void free_gcr3_tbl_level1(u64 *tbl)
1917{
1918 u64 *ptr;
1919 int i;
1920
1921 for (i = 0; i < 512; ++i) {
1922 if (!(tbl[i] & GCR3_VALID))
1923 continue;
1924
1925 ptr = __va(tbl[i] & PAGE_MASK);
1926
1927 free_page((unsigned long)ptr);
1928 }
1929}
1930
1931static void free_gcr3_tbl_level2(u64 *tbl)
1932{
1933 u64 *ptr;
1934 int i;
1935
1936 for (i = 0; i < 512; ++i) {
1937 if (!(tbl[i] & GCR3_VALID))
1938 continue;
1939
1940 ptr = __va(tbl[i] & PAGE_MASK);
1941
1942 free_gcr3_tbl_level1(ptr);
1943 }
1944}
1945
52815b75
JR
1946static void free_gcr3_table(struct protection_domain *domain)
1947{
b16137b1
JR
1948 if (domain->glx == 2)
1949 free_gcr3_tbl_level2(domain->gcr3_tbl);
1950 else if (domain->glx == 1)
1951 free_gcr3_tbl_level1(domain->gcr3_tbl);
23d3a98c
JR
1952 else
1953 BUG_ON(domain->glx != 0);
b16137b1 1954
52815b75
JR
1955 free_page((unsigned long)domain->gcr3_tbl);
1956}
1957
431b2a20
JR
1958/*
1959 * Free a domain, only used if something went wrong in the
1960 * allocation path and we need to free an already allocated page table
1961 */
ec487d1a
JR
1962static void dma_ops_domain_free(struct dma_ops_domain *dom)
1963{
384de729
JR
1964 int i;
1965
ec487d1a
JR
1966 if (!dom)
1967 return;
1968
5f6bed50
JR
1969 free_percpu(dom->next_index);
1970
aeb26f55
JR
1971 del_domain_from_list(&dom->domain);
1972
86db2e5d 1973 free_pagetable(&dom->domain);
ec487d1a 1974
384de729
JR
1975 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1976 if (!dom->aperture[i])
1977 continue;
1978 free_page((unsigned long)dom->aperture[i]->bitmap);
1979 kfree(dom->aperture[i]);
1980 }
ec487d1a
JR
1981
1982 kfree(dom);
1983}
1984
a639a8ee
JR
1985static int dma_ops_domain_alloc_apertures(struct dma_ops_domain *dma_dom,
1986 int max_apertures)
1987{
1988 int ret, i, apertures;
1989
1990 apertures = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
1991 ret = 0;
1992
1993 for (i = apertures; i < max_apertures; ++i) {
1994 ret = alloc_new_range(dma_dom, false, GFP_KERNEL);
1995 if (ret)
1996 break;
1997 }
1998
1999 return ret;
2000}
2001
431b2a20
JR
2002/*
2003 * Allocates a new protection domain usable for the dma_ops functions.
b595076a 2004 * It also initializes the page table and the address allocator data
431b2a20
JR
2005 * structures required for the dma_ops interface
2006 */
87a64d52 2007static struct dma_ops_domain *dma_ops_domain_alloc(void)
ec487d1a
JR
2008{
2009 struct dma_ops_domain *dma_dom;
5f6bed50 2010 int cpu;
ec487d1a
JR
2011
2012 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
2013 if (!dma_dom)
2014 return NULL;
2015
7a5a566e 2016 if (protection_domain_init(&dma_dom->domain))
ec487d1a 2017 goto free_dma_dom;
7a5a566e 2018
5f6bed50
JR
2019 dma_dom->next_index = alloc_percpu(u32);
2020 if (!dma_dom->next_index)
2021 goto free_dma_dom;
2022
8f7a017c 2023 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
ec487d1a 2024 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
9fdb19d6 2025 dma_dom->domain.flags = PD_DMA_OPS_MASK;
ec487d1a
JR
2026 dma_dom->domain.priv = dma_dom;
2027 if (!dma_dom->domain.pt_root)
2028 goto free_dma_dom;
ec487d1a 2029
aeb26f55
JR
2030 add_domain_to_list(&dma_dom->domain);
2031
576175c2 2032 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
ec487d1a 2033 goto free_dma_dom;
ec487d1a 2034
431b2a20 2035 /*
ec487d1a
JR
2036 * mark the first page as allocated so we never return 0 as
2037 * a valid dma-address. So we can use 0 as error value
431b2a20 2038 */
384de729 2039 dma_dom->aperture[0]->bitmap[0] = 1;
ec487d1a 2040
5f6bed50
JR
2041 for_each_possible_cpu(cpu)
2042 *per_cpu_ptr(dma_dom->next_index, cpu) = 0;
ec487d1a
JR
2043
2044 return dma_dom;
2045
2046free_dma_dom:
2047 dma_ops_domain_free(dma_dom);
2048
2049 return NULL;
2050}
2051
5b28df6f
JR
2052/*
2053 * little helper function to check whether a given protection domain is a
2054 * dma_ops domain
2055 */
2056static bool dma_ops_domain(struct protection_domain *domain)
2057{
2058 return domain->flags & PD_DMA_OPS_MASK;
2059}
2060
fd7b5535 2061static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
b20ac0d4 2062{
132bd68f 2063 u64 pte_root = 0;
ee6c2868 2064 u64 flags = 0;
863c74eb 2065
132bd68f
JR
2066 if (domain->mode != PAGE_MODE_NONE)
2067 pte_root = virt_to_phys(domain->pt_root);
2068
38ddf41b
JR
2069 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2070 << DEV_ENTRY_MODE_SHIFT;
2071 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
b20ac0d4 2072
ee6c2868
JR
2073 flags = amd_iommu_dev_table[devid].data[1];
2074
fd7b5535
JR
2075 if (ats)
2076 flags |= DTE_FLAG_IOTLB;
2077
52815b75
JR
2078 if (domain->flags & PD_IOMMUV2_MASK) {
2079 u64 gcr3 = __pa(domain->gcr3_tbl);
2080 u64 glx = domain->glx;
2081 u64 tmp;
2082
2083 pte_root |= DTE_FLAG_GV;
2084 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2085
2086 /* First mask out possible old values for GCR3 table */
2087 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2088 flags &= ~tmp;
2089
2090 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2091 flags &= ~tmp;
2092
2093 /* Encode GCR3 table into DTE */
2094 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2095 pte_root |= tmp;
2096
2097 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2098 flags |= tmp;
2099
2100 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2101 flags |= tmp;
2102 }
2103
ee6c2868
JR
2104 flags &= ~(0xffffUL);
2105 flags |= domain->id;
2106
2107 amd_iommu_dev_table[devid].data[1] = flags;
2108 amd_iommu_dev_table[devid].data[0] = pte_root;
15898bbc
JR
2109}
2110
2111static void clear_dte_entry(u16 devid)
2112{
15898bbc 2113 /* remove entry from the device table seen by the hardware */
cbf3ccd0
JR
2114 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2115 amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
15898bbc
JR
2116
2117 amd_iommu_apply_erratum_63(devid);
7f760ddd
JR
2118}
2119
ec9e79ef
JR
2120static void do_attach(struct iommu_dev_data *dev_data,
2121 struct protection_domain *domain)
7f760ddd 2122{
7f760ddd 2123 struct amd_iommu *iommu;
e25bfb56 2124 u16 alias;
ec9e79ef 2125 bool ats;
fd7b5535 2126
ec9e79ef 2127 iommu = amd_iommu_rlookup_table[dev_data->devid];
e3156048 2128 alias = dev_data->alias;
ec9e79ef 2129 ats = dev_data->ats.enabled;
7f760ddd
JR
2130
2131 /* Update data structures */
2132 dev_data->domain = domain;
2133 list_add(&dev_data->list, &domain->dev_list);
7f760ddd
JR
2134
2135 /* Do reference counting */
2136 domain->dev_iommu[iommu->index] += 1;
2137 domain->dev_cnt += 1;
2138
e25bfb56
JR
2139 /* Update device table */
2140 set_dte_entry(dev_data->devid, domain, ats);
2141 if (alias != dev_data->devid)
9b1a12d2 2142 set_dte_entry(alias, domain, ats);
e25bfb56 2143
6c542047 2144 device_flush_dte(dev_data);
7f760ddd
JR
2145}
2146
ec9e79ef 2147static void do_detach(struct iommu_dev_data *dev_data)
7f760ddd 2148{
7f760ddd 2149 struct amd_iommu *iommu;
e25bfb56 2150 u16 alias;
7f760ddd 2151
5adad991
JR
2152 /*
2153 * First check if the device is still attached. It might already
2154 * be detached from its domain because the generic
2155 * iommu_detach_group code detached it and we try again here in
2156 * our alias handling.
2157 */
2158 if (!dev_data->domain)
2159 return;
2160
ec9e79ef 2161 iommu = amd_iommu_rlookup_table[dev_data->devid];
e3156048 2162 alias = dev_data->alias;
15898bbc
JR
2163
2164 /* decrease reference counters */
7f760ddd
JR
2165 dev_data->domain->dev_iommu[iommu->index] -= 1;
2166 dev_data->domain->dev_cnt -= 1;
2167
2168 /* Update data structures */
2169 dev_data->domain = NULL;
2170 list_del(&dev_data->list);
f62dda66 2171 clear_dte_entry(dev_data->devid);
e25bfb56
JR
2172 if (alias != dev_data->devid)
2173 clear_dte_entry(alias);
15898bbc 2174
7f760ddd 2175 /* Flush the DTE entry */
6c542047 2176 device_flush_dte(dev_data);
2b681faf
JR
2177}
2178
2179/*
2180 * If a device is not yet associated with a domain, this function does
2181 * assigns it visible for the hardware
2182 */
ec9e79ef 2183static int __attach_device(struct iommu_dev_data *dev_data,
15898bbc 2184 struct protection_domain *domain)
2b681faf 2185{
84fe6c19 2186 int ret;
657cbb6b 2187
272e4f99
JR
2188 /*
2189 * Must be called with IRQs disabled. Warn here to detect early
2190 * when its not.
2191 */
2192 WARN_ON(!irqs_disabled());
2193
2b681faf
JR
2194 /* lock domain */
2195 spin_lock(&domain->lock);
2196
397111ab 2197 ret = -EBUSY;
150952f9 2198 if (dev_data->domain != NULL)
397111ab 2199 goto out_unlock;
15898bbc 2200
397111ab 2201 /* Attach alias group root */
150952f9 2202 do_attach(dev_data, domain);
24100055 2203
84fe6c19
JL
2204 ret = 0;
2205
2206out_unlock:
2207
eba6ac60
JR
2208 /* ready */
2209 spin_unlock(&domain->lock);
15898bbc 2210
84fe6c19 2211 return ret;
0feae533 2212}
b20ac0d4 2213
52815b75
JR
2214
2215static void pdev_iommuv2_disable(struct pci_dev *pdev)
2216{
2217 pci_disable_ats(pdev);
2218 pci_disable_pri(pdev);
2219 pci_disable_pasid(pdev);
2220}
2221
6a113ddc
JR
2222/* FIXME: Change generic reset-function to do the same */
2223static int pri_reset_while_enabled(struct pci_dev *pdev)
2224{
2225 u16 control;
2226 int pos;
2227
46277b75 2228 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
6a113ddc
JR
2229 if (!pos)
2230 return -EINVAL;
2231
46277b75
JR
2232 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2233 control |= PCI_PRI_CTRL_RESET;
2234 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
6a113ddc
JR
2235
2236 return 0;
2237}
2238
52815b75
JR
2239static int pdev_iommuv2_enable(struct pci_dev *pdev)
2240{
6a113ddc
JR
2241 bool reset_enable;
2242 int reqs, ret;
2243
2244 /* FIXME: Hardcode number of outstanding requests for now */
2245 reqs = 32;
2246 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2247 reqs = 1;
2248 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
52815b75
JR
2249
2250 /* Only allow access to user-accessible pages */
2251 ret = pci_enable_pasid(pdev, 0);
2252 if (ret)
2253 goto out_err;
2254
2255 /* First reset the PRI state of the device */
2256 ret = pci_reset_pri(pdev);
2257 if (ret)
2258 goto out_err;
2259
6a113ddc
JR
2260 /* Enable PRI */
2261 ret = pci_enable_pri(pdev, reqs);
52815b75
JR
2262 if (ret)
2263 goto out_err;
2264
6a113ddc
JR
2265 if (reset_enable) {
2266 ret = pri_reset_while_enabled(pdev);
2267 if (ret)
2268 goto out_err;
2269 }
2270
52815b75
JR
2271 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2272 if (ret)
2273 goto out_err;
2274
2275 return 0;
2276
2277out_err:
2278 pci_disable_pri(pdev);
2279 pci_disable_pasid(pdev);
2280
2281 return ret;
2282}
2283
c99afa25 2284/* FIXME: Move this to PCI code */
a3b93121 2285#define PCI_PRI_TLP_OFF (1 << 15)
c99afa25 2286
98f1ad25 2287static bool pci_pri_tlp_required(struct pci_dev *pdev)
c99afa25 2288{
a3b93121 2289 u16 status;
c99afa25
JR
2290 int pos;
2291
46277b75 2292 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
c99afa25
JR
2293 if (!pos)
2294 return false;
2295
a3b93121 2296 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
c99afa25 2297
a3b93121 2298 return (status & PCI_PRI_TLP_OFF) ? true : false;
c99afa25
JR
2299}
2300
407d733e 2301/*
df805abb 2302 * If a device is not yet associated with a domain, this function
407d733e
JR
2303 * assigns it visible for the hardware
2304 */
15898bbc
JR
2305static int attach_device(struct device *dev,
2306 struct protection_domain *domain)
0feae533 2307{
2bf9a0a1 2308 struct pci_dev *pdev;
ea61cddb 2309 struct iommu_dev_data *dev_data;
eba6ac60 2310 unsigned long flags;
15898bbc 2311 int ret;
eba6ac60 2312
ea61cddb
JR
2313 dev_data = get_dev_data(dev);
2314
2bf9a0a1
WZ
2315 if (!dev_is_pci(dev))
2316 goto skip_ats_check;
2317
2318 pdev = to_pci_dev(dev);
52815b75 2319 if (domain->flags & PD_IOMMUV2_MASK) {
02ca2021 2320 if (!dev_data->passthrough)
52815b75
JR
2321 return -EINVAL;
2322
02ca2021
JR
2323 if (dev_data->iommu_v2) {
2324 if (pdev_iommuv2_enable(pdev) != 0)
2325 return -EINVAL;
52815b75 2326
02ca2021
JR
2327 dev_data->ats.enabled = true;
2328 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2329 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2330 }
52815b75
JR
2331 } else if (amd_iommu_iotlb_sup &&
2332 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
ea61cddb
JR
2333 dev_data->ats.enabled = true;
2334 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2335 }
fd7b5535 2336
2bf9a0a1 2337skip_ats_check:
eba6ac60 2338 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
ec9e79ef 2339 ret = __attach_device(dev_data, domain);
b20ac0d4
JR
2340 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2341
0feae533
JR
2342 /*
2343 * We might boot into a crash-kernel here. The crashed kernel
2344 * left the caches in the IOMMU dirty. So we have to flush
2345 * here to evict all dirty stuff.
2346 */
17b124bf 2347 domain_flush_tlb_pde(domain);
15898bbc
JR
2348
2349 return ret;
b20ac0d4
JR
2350}
2351
355bf553
JR
2352/*
2353 * Removes a device from a protection domain (unlocked)
2354 */
ec9e79ef 2355static void __detach_device(struct iommu_dev_data *dev_data)
355bf553 2356{
2ca76279 2357 struct protection_domain *domain;
c4596114 2358
272e4f99
JR
2359 /*
2360 * Must be called with IRQs disabled. Warn here to detect early
2361 * when its not.
2362 */
2363 WARN_ON(!irqs_disabled());
2ca76279 2364
f34c73f5
JR
2365 if (WARN_ON(!dev_data->domain))
2366 return;
24100055 2367
2ca76279 2368 domain = dev_data->domain;
71f77580 2369
f1dd0a8b 2370 spin_lock(&domain->lock);
24100055 2371
150952f9 2372 do_detach(dev_data);
7f760ddd 2373
f1dd0a8b 2374 spin_unlock(&domain->lock);
355bf553
JR
2375}
2376
2377/*
2378 * Removes a device from a protection domain (with devtable_lock held)
2379 */
15898bbc 2380static void detach_device(struct device *dev)
355bf553 2381{
52815b75 2382 struct protection_domain *domain;
ea61cddb 2383 struct iommu_dev_data *dev_data;
355bf553
JR
2384 unsigned long flags;
2385
ec9e79ef 2386 dev_data = get_dev_data(dev);
52815b75 2387 domain = dev_data->domain;
ec9e79ef 2388
355bf553
JR
2389 /* lock device table */
2390 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
ec9e79ef 2391 __detach_device(dev_data);
355bf553 2392 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
fd7b5535 2393
2bf9a0a1
WZ
2394 if (!dev_is_pci(dev))
2395 return;
2396
02ca2021 2397 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
52815b75
JR
2398 pdev_iommuv2_disable(to_pci_dev(dev));
2399 else if (dev_data->ats.enabled)
ea61cddb 2400 pci_disable_ats(to_pci_dev(dev));
52815b75
JR
2401
2402 dev_data->ats.enabled = false;
355bf553 2403}
e275a2a0 2404
aafd8ba0 2405static int amd_iommu_add_device(struct device *dev)
e275a2a0 2406{
5abcdba4 2407 struct iommu_dev_data *dev_data;
07ee8694 2408 struct iommu_domain *domain;
e275a2a0 2409 struct amd_iommu *iommu;
7aba6cb9 2410 int ret, devid;
e275a2a0 2411
aafd8ba0 2412 if (!check_device(dev) || get_dev_data(dev))
98fc5a69 2413 return 0;
e275a2a0 2414
aafd8ba0 2415 devid = get_device_id(dev);
9ee35e4c 2416 if (devid < 0)
7aba6cb9
WZ
2417 return devid;
2418
aafd8ba0 2419 iommu = amd_iommu_rlookup_table[devid];
657cbb6b 2420
aafd8ba0 2421 ret = iommu_init_device(dev);
4d58b8a6
JR
2422 if (ret) {
2423 if (ret != -ENOTSUPP)
2424 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2425 dev_name(dev));
657cbb6b 2426
aafd8ba0 2427 iommu_ignore_device(dev);
343e9cac 2428 dev->archdata.dma_ops = &nommu_dma_ops;
aafd8ba0
JR
2429 goto out;
2430 }
2431 init_iommu_group(dev);
2c9195e9 2432
07ee8694 2433 dev_data = get_dev_data(dev);
2c9195e9 2434
4d58b8a6 2435 BUG_ON(!dev_data);
657cbb6b 2436
1e6a7b04 2437 if (iommu_pass_through || dev_data->iommu_v2)
07ee8694 2438 iommu_request_dm_for_dev(dev);
ac1534a5 2439
07ee8694
JR
2440 /* Domains are initialized for this device - have a look what we ended up with */
2441 domain = iommu_get_domain_for_dev(dev);
32302324 2442 if (domain->type == IOMMU_DOMAIN_IDENTITY)
07ee8694 2443 dev_data->passthrough = true;
32302324 2444 else
2c9195e9 2445 dev->archdata.dma_ops = &amd_iommu_dma_ops;
e275a2a0 2446
aafd8ba0 2447out:
e275a2a0
JR
2448 iommu_completion_wait(iommu);
2449
e275a2a0
JR
2450 return 0;
2451}
2452
aafd8ba0 2453static void amd_iommu_remove_device(struct device *dev)
8638c491 2454{
aafd8ba0 2455 struct amd_iommu *iommu;
7aba6cb9 2456 int devid;
aafd8ba0
JR
2457
2458 if (!check_device(dev))
2459 return;
2460
2461 devid = get_device_id(dev);
9ee35e4c 2462 if (devid < 0)
7aba6cb9
WZ
2463 return;
2464
aafd8ba0
JR
2465 iommu = amd_iommu_rlookup_table[devid];
2466
2467 iommu_uninit_device(dev);
2468 iommu_completion_wait(iommu);
8638c491
JR
2469}
2470
b097d11a
WZ
2471static struct iommu_group *amd_iommu_device_group(struct device *dev)
2472{
2473 if (dev_is_pci(dev))
2474 return pci_device_group(dev);
2475
2476 return acpihid_device_group(dev);
2477}
2478
431b2a20
JR
2479/*****************************************************************************
2480 *
2481 * The next functions belong to the dma_ops mapping/unmapping code.
2482 *
2483 *****************************************************************************/
2484
2485/*
2486 * In the dma_ops path we only have the struct device. This function
2487 * finds the corresponding IOMMU, the protection domain and the
2488 * requestor id for a given device.
2489 * If the device is not yet associated with a domain this is also done
2490 * in this function.
2491 */
94f6d190 2492static struct protection_domain *get_domain(struct device *dev)
b20ac0d4 2493{
94f6d190 2494 struct protection_domain *domain;
063071df 2495 struct iommu_domain *io_domain;
b20ac0d4 2496
f99c0f1c 2497 if (!check_device(dev))
94f6d190 2498 return ERR_PTR(-EINVAL);
b20ac0d4 2499
063071df 2500 io_domain = iommu_get_domain_for_dev(dev);
0bb6e243
JR
2501 if (!io_domain)
2502 return NULL;
b20ac0d4 2503
0bb6e243
JR
2504 domain = to_pdomain(io_domain);
2505 if (!dma_ops_domain(domain))
94f6d190 2506 return ERR_PTR(-EBUSY);
f91ba190 2507
0bb6e243 2508 return domain;
b20ac0d4
JR
2509}
2510
04bfdd84
JR
2511static void update_device_table(struct protection_domain *domain)
2512{
492667da 2513 struct iommu_dev_data *dev_data;
04bfdd84 2514
ea61cddb
JR
2515 list_for_each_entry(dev_data, &domain->dev_list, list)
2516 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
04bfdd84
JR
2517}
2518
2519static void update_domain(struct protection_domain *domain)
2520{
2521 if (!domain->updated)
2522 return;
2523
2524 update_device_table(domain);
17b124bf
JR
2525
2526 domain_flush_devices(domain);
2527 domain_flush_tlb_pde(domain);
04bfdd84
JR
2528
2529 domain->updated = false;
2530}
2531
8bda3092
JR
2532/*
2533 * This function fetches the PTE for a given address in the aperture
2534 */
2535static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2536 unsigned long address)
2537{
384de729 2538 struct aperture_range *aperture;
8bda3092
JR
2539 u64 *pte, *pte_page;
2540
384de729
JR
2541 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2542 if (!aperture)
2543 return NULL;
2544
2545 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
8bda3092 2546 if (!pte) {
cbb9d729 2547 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
abdc5eb3 2548 GFP_ATOMIC);
384de729
JR
2549 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2550 } else
8c8c143c 2551 pte += PM_LEVEL_INDEX(0, address);
8bda3092 2552
04bfdd84 2553 update_domain(&dom->domain);
8bda3092
JR
2554
2555 return pte;
2556}
2557
431b2a20
JR
2558/*
2559 * This is the generic map function. It maps one 4kb page at paddr to
2560 * the given address in the DMA address space for the domain.
2561 */
680525e0 2562static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
cb76c322
JR
2563 unsigned long address,
2564 phys_addr_t paddr,
2565 int direction)
2566{
2567 u64 *pte, __pte;
2568
2569 WARN_ON(address > dom->aperture_size);
2570
2571 paddr &= PAGE_MASK;
2572
8bda3092 2573 pte = dma_ops_get_pte(dom, address);
53812c11 2574 if (!pte)
8fd524b3 2575 return DMA_ERROR_CODE;
cb76c322
JR
2576
2577 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2578
2579 if (direction == DMA_TO_DEVICE)
2580 __pte |= IOMMU_PTE_IR;
2581 else if (direction == DMA_FROM_DEVICE)
2582 __pte |= IOMMU_PTE_IW;
2583 else if (direction == DMA_BIDIRECTIONAL)
2584 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2585
a7fb668f 2586 WARN_ON_ONCE(*pte);
cb76c322
JR
2587
2588 *pte = __pte;
2589
2590 return (dma_addr_t)address;
2591}
2592
431b2a20
JR
2593/*
2594 * The generic unmapping function for on page in the DMA address space.
2595 */
680525e0 2596static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
cb76c322
JR
2597 unsigned long address)
2598{
384de729 2599 struct aperture_range *aperture;
cb76c322
JR
2600 u64 *pte;
2601
2602 if (address >= dom->aperture_size)
2603 return;
2604
384de729
JR
2605 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2606 if (!aperture)
2607 return;
2608
2609 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2610 if (!pte)
2611 return;
cb76c322 2612
8c8c143c 2613 pte += PM_LEVEL_INDEX(0, address);
cb76c322 2614
a7fb668f 2615 WARN_ON_ONCE(!*pte);
cb76c322
JR
2616
2617 *pte = 0ULL;
2618}
2619
431b2a20
JR
2620/*
2621 * This function contains common code for mapping of a physically
24f81160
JR
2622 * contiguous memory region into DMA address space. It is used by all
2623 * mapping functions provided with this IOMMU driver.
431b2a20
JR
2624 * Must be called with the domain lock held.
2625 */
cb76c322 2626static dma_addr_t __map_single(struct device *dev,
cb76c322
JR
2627 struct dma_ops_domain *dma_dom,
2628 phys_addr_t paddr,
2629 size_t size,
6d4f343f 2630 int dir,
832a90c3
JR
2631 bool align,
2632 u64 dma_mask)
cb76c322
JR
2633{
2634 dma_addr_t offset = paddr & ~PAGE_MASK;
53812c11 2635 dma_addr_t address, start, ret;
cb76c322 2636 unsigned int pages;
6d4f343f 2637 unsigned long align_mask = 0;
cb76c322
JR
2638 int i;
2639
e3c449f5 2640 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
cb76c322
JR
2641 paddr &= PAGE_MASK;
2642
6d4f343f
JR
2643 if (align)
2644 align_mask = (1UL << get_order(size)) - 1;
2645
832a90c3
JR
2646 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2647 dma_mask);
ebaecb42 2648
266a3bd2
JR
2649 if (address == DMA_ERROR_CODE)
2650 goto out;
cb76c322
JR
2651
2652 start = address;
2653 for (i = 0; i < pages; ++i) {
680525e0 2654 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
8fd524b3 2655 if (ret == DMA_ERROR_CODE)
53812c11
JR
2656 goto out_unmap;
2657
cb76c322
JR
2658 paddr += PAGE_SIZE;
2659 start += PAGE_SIZE;
2660 }
2661 address += offset;
2662
ab7032bb 2663 if (unlikely(amd_iommu_np_cache)) {
17b124bf 2664 domain_flush_pages(&dma_dom->domain, address, size);
ab7032bb
JR
2665 domain_flush_complete(&dma_dom->domain);
2666 }
270cab24 2667
cb76c322
JR
2668out:
2669 return address;
53812c11
JR
2670
2671out_unmap:
2672
2673 for (--i; i >= 0; --i) {
2674 start -= PAGE_SIZE;
680525e0 2675 dma_ops_domain_unmap(dma_dom, start);
53812c11
JR
2676 }
2677
2678 dma_ops_free_addresses(dma_dom, address, pages);
2679
8fd524b3 2680 return DMA_ERROR_CODE;
cb76c322
JR
2681}
2682
431b2a20
JR
2683/*
2684 * Does the reverse of the __map_single function. Must be called with
2685 * the domain lock held too
2686 */
cd8c82e8 2687static void __unmap_single(struct dma_ops_domain *dma_dom,
cb76c322
JR
2688 dma_addr_t dma_addr,
2689 size_t size,
2690 int dir)
2691{
04e0463e 2692 dma_addr_t flush_addr;
cb76c322
JR
2693 dma_addr_t i, start;
2694 unsigned int pages;
2695
8fd524b3 2696 if ((dma_addr == DMA_ERROR_CODE) ||
b8d9905d 2697 (dma_addr + size > dma_dom->aperture_size))
cb76c322
JR
2698 return;
2699
04e0463e 2700 flush_addr = dma_addr;
e3c449f5 2701 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
cb76c322
JR
2702 dma_addr &= PAGE_MASK;
2703 start = dma_addr;
2704
2705 for (i = 0; i < pages; ++i) {
680525e0 2706 dma_ops_domain_unmap(dma_dom, start);
cb76c322
JR
2707 start += PAGE_SIZE;
2708 }
2709
84b3a0bc 2710 dma_ops_free_addresses(dma_dom, dma_addr, pages);
cb76c322
JR
2711}
2712
431b2a20
JR
2713/*
2714 * The exported map_single function for dma_ops.
2715 */
51491367
FT
2716static dma_addr_t map_page(struct device *dev, struct page *page,
2717 unsigned long offset, size_t size,
2718 enum dma_data_direction dir,
2719 struct dma_attrs *attrs)
4da70b9e 2720{
92d420ec 2721 phys_addr_t paddr = page_to_phys(page) + offset;
4da70b9e 2722 struct protection_domain *domain;
832a90c3 2723 u64 dma_mask;
4da70b9e 2724
94f6d190
JR
2725 domain = get_domain(dev);
2726 if (PTR_ERR(domain) == -EINVAL)
4da70b9e 2727 return (dma_addr_t)paddr;
94f6d190
JR
2728 else if (IS_ERR(domain))
2729 return DMA_ERROR_CODE;
4da70b9e 2730
f99c0f1c
JR
2731 dma_mask = *dev->dma_mask;
2732
92d420ec 2733 return __map_single(dev, domain->priv, paddr, size, dir, false,
832a90c3 2734 dma_mask);
4da70b9e
JR
2735}
2736
431b2a20
JR
2737/*
2738 * The exported unmap_single function for dma_ops.
2739 */
51491367
FT
2740static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2741 enum dma_data_direction dir, struct dma_attrs *attrs)
4da70b9e 2742{
4da70b9e 2743 struct protection_domain *domain;
4da70b9e 2744
94f6d190
JR
2745 domain = get_domain(dev);
2746 if (IS_ERR(domain))
5b28df6f
JR
2747 return;
2748
cd8c82e8 2749 __unmap_single(domain->priv, dma_addr, size, dir);
4da70b9e
JR
2750}
2751
431b2a20
JR
2752/*
2753 * The exported map_sg function for dma_ops (handles scatter-gather
2754 * lists).
2755 */
65b050ad 2756static int map_sg(struct device *dev, struct scatterlist *sglist,
160c1d8e
FT
2757 int nelems, enum dma_data_direction dir,
2758 struct dma_attrs *attrs)
65b050ad 2759{
65b050ad 2760 struct protection_domain *domain;
65b050ad
JR
2761 int i;
2762 struct scatterlist *s;
2763 phys_addr_t paddr;
2764 int mapped_elems = 0;
832a90c3 2765 u64 dma_mask;
65b050ad 2766
94f6d190 2767 domain = get_domain(dev);
a0e191b2 2768 if (IS_ERR(domain))
94f6d190 2769 return 0;
dbcc112e 2770
832a90c3 2771 dma_mask = *dev->dma_mask;
65b050ad 2772
65b050ad
JR
2773 for_each_sg(sglist, s, nelems, i) {
2774 paddr = sg_phys(s);
2775
cd8c82e8 2776 s->dma_address = __map_single(dev, domain->priv,
832a90c3
JR
2777 paddr, s->length, dir, false,
2778 dma_mask);
65b050ad
JR
2779
2780 if (s->dma_address) {
2781 s->dma_length = s->length;
2782 mapped_elems++;
2783 } else
2784 goto unmap;
65b050ad
JR
2785 }
2786
65b050ad 2787 return mapped_elems;
92d420ec 2788
65b050ad
JR
2789unmap:
2790 for_each_sg(sglist, s, mapped_elems, i) {
2791 if (s->dma_address)
cd8c82e8 2792 __unmap_single(domain->priv, s->dma_address,
65b050ad
JR
2793 s->dma_length, dir);
2794 s->dma_address = s->dma_length = 0;
2795 }
2796
92d420ec 2797 return 0;
65b050ad
JR
2798}
2799
431b2a20
JR
2800/*
2801 * The exported map_sg function for dma_ops (handles scatter-gather
2802 * lists).
2803 */
65b050ad 2804static void unmap_sg(struct device *dev, struct scatterlist *sglist,
160c1d8e
FT
2805 int nelems, enum dma_data_direction dir,
2806 struct dma_attrs *attrs)
65b050ad 2807{
65b050ad
JR
2808 struct protection_domain *domain;
2809 struct scatterlist *s;
65b050ad
JR
2810 int i;
2811
94f6d190
JR
2812 domain = get_domain(dev);
2813 if (IS_ERR(domain))
5b28df6f
JR
2814 return;
2815
65b050ad 2816 for_each_sg(sglist, s, nelems, i) {
cd8c82e8 2817 __unmap_single(domain->priv, s->dma_address,
65b050ad 2818 s->dma_length, dir);
65b050ad
JR
2819 s->dma_address = s->dma_length = 0;
2820 }
65b050ad
JR
2821}
2822
431b2a20
JR
2823/*
2824 * The exported alloc_coherent function for dma_ops.
2825 */
5d8b53cf 2826static void *alloc_coherent(struct device *dev, size_t size,
baa676fc
AP
2827 dma_addr_t *dma_addr, gfp_t flag,
2828 struct dma_attrs *attrs)
5d8b53cf 2829{
832a90c3 2830 u64 dma_mask = dev->coherent_dma_mask;
3b839a57 2831 struct protection_domain *domain;
3b839a57 2832 struct page *page;
5d8b53cf 2833
94f6d190
JR
2834 domain = get_domain(dev);
2835 if (PTR_ERR(domain) == -EINVAL) {
3b839a57
JR
2836 page = alloc_pages(flag, get_order(size));
2837 *dma_addr = page_to_phys(page);
2838 return page_address(page);
94f6d190
JR
2839 } else if (IS_ERR(domain))
2840 return NULL;
5d8b53cf 2841
3b839a57 2842 size = PAGE_ALIGN(size);
f99c0f1c
JR
2843 dma_mask = dev->coherent_dma_mask;
2844 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2d0ec7a1 2845 flag |= __GFP_ZERO;
5d8b53cf 2846
3b839a57
JR
2847 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2848 if (!page) {
d0164adc 2849 if (!gfpflags_allow_blocking(flag))
3b839a57 2850 return NULL;
5d8b53cf 2851
3b839a57
JR
2852 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2853 get_order(size));
2854 if (!page)
2855 return NULL;
2856 }
5d8b53cf 2857
832a90c3
JR
2858 if (!dma_mask)
2859 dma_mask = *dev->dma_mask;
2860
3b839a57 2861 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
832a90c3 2862 size, DMA_BIDIRECTIONAL, true, dma_mask);
5d8b53cf 2863
92d420ec 2864 if (*dma_addr == DMA_ERROR_CODE)
5b28df6f 2865 goto out_free;
5d8b53cf 2866
3b839a57 2867 return page_address(page);
5b28df6f
JR
2868
2869out_free:
2870
3b839a57
JR
2871 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2872 __free_pages(page, get_order(size));
5b28df6f
JR
2873
2874 return NULL;
5d8b53cf
JR
2875}
2876
431b2a20
JR
2877/*
2878 * The exported free_coherent function for dma_ops.
431b2a20 2879 */
5d8b53cf 2880static void free_coherent(struct device *dev, size_t size,
baa676fc
AP
2881 void *virt_addr, dma_addr_t dma_addr,
2882 struct dma_attrs *attrs)
5d8b53cf 2883{
5d8b53cf 2884 struct protection_domain *domain;
3b839a57 2885 struct page *page;
5d8b53cf 2886
3b839a57
JR
2887 page = virt_to_page(virt_addr);
2888 size = PAGE_ALIGN(size);
2889
94f6d190
JR
2890 domain = get_domain(dev);
2891 if (IS_ERR(domain))
5b28df6f
JR
2892 goto free_mem;
2893
cd8c82e8 2894 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
5d8b53cf 2895
5d8b53cf 2896free_mem:
3b839a57
JR
2897 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2898 __free_pages(page, get_order(size));
5d8b53cf
JR
2899}
2900
b39ba6ad
JR
2901/*
2902 * This function is called by the DMA layer to find out if we can handle a
2903 * particular device. It is part of the dma_ops.
2904 */
2905static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2906{
420aef8a 2907 return check_device(dev);
b39ba6ad
JR
2908}
2909
a639a8ee
JR
2910static int set_dma_mask(struct device *dev, u64 mask)
2911{
2912 struct protection_domain *domain;
2913 int max_apertures = 1;
2914
2915 domain = get_domain(dev);
2916 if (IS_ERR(domain))
2917 return PTR_ERR(domain);
2918
2919 if (mask == DMA_BIT_MASK(64))
2920 max_apertures = 8;
2921 else if (mask > DMA_BIT_MASK(32))
2922 max_apertures = 4;
2923
2924 /*
2925 * To prevent lock contention it doesn't make sense to allocate more
2926 * apertures than online cpus
2927 */
2928 if (max_apertures > num_online_cpus())
2929 max_apertures = num_online_cpus();
2930
2931 if (dma_ops_domain_alloc_apertures(domain->priv, max_apertures))
2932 dev_err(dev, "Can't allocate %d iommu apertures\n",
2933 max_apertures);
2934
2935 return 0;
2936}
2937
160c1d8e 2938static struct dma_map_ops amd_iommu_dma_ops = {
a639a8ee
JR
2939 .alloc = alloc_coherent,
2940 .free = free_coherent,
2941 .map_page = map_page,
2942 .unmap_page = unmap_page,
2943 .map_sg = map_sg,
2944 .unmap_sg = unmap_sg,
2945 .dma_supported = amd_iommu_dma_supported,
2946 .set_dma_mask = set_dma_mask,
6631ee9d
JR
2947};
2948
3a18404c 2949int __init amd_iommu_init_api(void)
27c2127a 2950{
9a4d3bf5
WZ
2951 int err = 0;
2952
2953 err = bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
2954 if (err)
2955 return err;
2956#ifdef CONFIG_ARM_AMBA
2957 err = bus_set_iommu(&amba_bustype, &amd_iommu_ops);
2958 if (err)
2959 return err;
2960#endif
2961 return 0;
f5325094
JR
2962}
2963
6631ee9d
JR
2964int __init amd_iommu_init_dma_ops(void)
2965{
32302324 2966 swiotlb = iommu_pass_through ? 1 : 0;
6631ee9d 2967 iommu_detected = 1;
6631ee9d 2968
52717828
JR
2969 /*
2970 * In case we don't initialize SWIOTLB (actually the common case
2971 * when AMD IOMMU is enabled), make sure there are global
2972 * dma_ops set as a fall-back for devices not handled by this
2973 * driver (for example non-PCI devices).
2974 */
2975 if (!swiotlb)
2976 dma_ops = &nommu_dma_ops;
2977
62410eeb
JR
2978 if (amd_iommu_unmap_flush)
2979 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2980 else
2981 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2982
6631ee9d 2983 return 0;
6631ee9d 2984}
6d98cd80
JR
2985
2986/*****************************************************************************
2987 *
2988 * The following functions belong to the exported interface of AMD IOMMU
2989 *
2990 * This interface allows access to lower level functions of the IOMMU
2991 * like protection domain handling and assignement of devices to domains
2992 * which is not possible with the dma_ops interface.
2993 *
2994 *****************************************************************************/
2995
6d98cd80
JR
2996static void cleanup_domain(struct protection_domain *domain)
2997{
9b29d3c6 2998 struct iommu_dev_data *entry;
6d98cd80 2999 unsigned long flags;
6d98cd80
JR
3000
3001 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3002
9b29d3c6
JR
3003 while (!list_empty(&domain->dev_list)) {
3004 entry = list_first_entry(&domain->dev_list,
3005 struct iommu_dev_data, list);
3006 __detach_device(entry);
492667da 3007 }
6d98cd80
JR
3008
3009 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3010}
3011
2650815f
JR
3012static void protection_domain_free(struct protection_domain *domain)
3013{
3014 if (!domain)
3015 return;
3016
aeb26f55
JR
3017 del_domain_from_list(domain);
3018
2650815f
JR
3019 if (domain->id)
3020 domain_id_free(domain->id);
3021
3022 kfree(domain);
3023}
3024
7a5a566e
JR
3025static int protection_domain_init(struct protection_domain *domain)
3026{
3027 spin_lock_init(&domain->lock);
3028 mutex_init(&domain->api_lock);
3029 domain->id = domain_id_alloc();
3030 if (!domain->id)
3031 return -ENOMEM;
3032 INIT_LIST_HEAD(&domain->dev_list);
3033
3034 return 0;
3035}
3036
2650815f 3037static struct protection_domain *protection_domain_alloc(void)
c156e347
JR
3038{
3039 struct protection_domain *domain;
3040
3041 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3042 if (!domain)
2650815f 3043 return NULL;
c156e347 3044
7a5a566e 3045 if (protection_domain_init(domain))
2650815f
JR
3046 goto out_err;
3047
aeb26f55
JR
3048 add_domain_to_list(domain);
3049
2650815f
JR
3050 return domain;
3051
3052out_err:
3053 kfree(domain);
3054
3055 return NULL;
3056}
3057
3f4b87b9 3058static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2650815f 3059{
3f4b87b9 3060 struct protection_domain *pdomain;
0bb6e243 3061 struct dma_ops_domain *dma_domain;
2650815f 3062
0bb6e243
JR
3063 switch (type) {
3064 case IOMMU_DOMAIN_UNMANAGED:
3065 pdomain = protection_domain_alloc();
3066 if (!pdomain)
3067 return NULL;
c156e347 3068
0bb6e243
JR
3069 pdomain->mode = PAGE_MODE_3_LEVEL;
3070 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3071 if (!pdomain->pt_root) {
3072 protection_domain_free(pdomain);
3073 return NULL;
3074 }
c156e347 3075
0bb6e243
JR
3076 pdomain->domain.geometry.aperture_start = 0;
3077 pdomain->domain.geometry.aperture_end = ~0ULL;
3078 pdomain->domain.geometry.force_aperture = true;
0ff64f80 3079
0bb6e243
JR
3080 break;
3081 case IOMMU_DOMAIN_DMA:
3082 dma_domain = dma_ops_domain_alloc();
3083 if (!dma_domain) {
3084 pr_err("AMD-Vi: Failed to allocate\n");
3085 return NULL;
3086 }
3087 pdomain = &dma_domain->domain;
3088 break;
07f643a3
JR
3089 case IOMMU_DOMAIN_IDENTITY:
3090 pdomain = protection_domain_alloc();
3091 if (!pdomain)
3092 return NULL;
c156e347 3093
07f643a3
JR
3094 pdomain->mode = PAGE_MODE_NONE;
3095 break;
0bb6e243
JR
3096 default:
3097 return NULL;
3098 }
c156e347 3099
3f4b87b9 3100 return &pdomain->domain;
c156e347
JR
3101}
3102
3f4b87b9 3103static void amd_iommu_domain_free(struct iommu_domain *dom)
98383fc3 3104{
3f4b87b9 3105 struct protection_domain *domain;
98383fc3 3106
3f4b87b9 3107 if (!dom)
98383fc3
JR
3108 return;
3109
3f4b87b9
JR
3110 domain = to_pdomain(dom);
3111
98383fc3
JR
3112 if (domain->dev_cnt > 0)
3113 cleanup_domain(domain);
3114
3115 BUG_ON(domain->dev_cnt != 0);
3116
132bd68f
JR
3117 if (domain->mode != PAGE_MODE_NONE)
3118 free_pagetable(domain);
98383fc3 3119
52815b75
JR
3120 if (domain->flags & PD_IOMMUV2_MASK)
3121 free_gcr3_table(domain);
3122
8b408fe4 3123 protection_domain_free(domain);
98383fc3
JR
3124}
3125
684f2888
JR
3126static void amd_iommu_detach_device(struct iommu_domain *dom,
3127 struct device *dev)
3128{
657cbb6b 3129 struct iommu_dev_data *dev_data = dev->archdata.iommu;
684f2888 3130 struct amd_iommu *iommu;
7aba6cb9 3131 int devid;
684f2888 3132
98fc5a69 3133 if (!check_device(dev))
684f2888
JR
3134 return;
3135
98fc5a69 3136 devid = get_device_id(dev);
9ee35e4c 3137 if (devid < 0)
7aba6cb9 3138 return;
684f2888 3139
657cbb6b 3140 if (dev_data->domain != NULL)
15898bbc 3141 detach_device(dev);
684f2888
JR
3142
3143 iommu = amd_iommu_rlookup_table[devid];
3144 if (!iommu)
3145 return;
3146
684f2888
JR
3147 iommu_completion_wait(iommu);
3148}
3149
01106066
JR
3150static int amd_iommu_attach_device(struct iommu_domain *dom,
3151 struct device *dev)
3152{
3f4b87b9 3153 struct protection_domain *domain = to_pdomain(dom);
657cbb6b 3154 struct iommu_dev_data *dev_data;
01106066 3155 struct amd_iommu *iommu;
15898bbc 3156 int ret;
01106066 3157
98fc5a69 3158 if (!check_device(dev))
01106066
JR
3159 return -EINVAL;
3160
657cbb6b
JR
3161 dev_data = dev->archdata.iommu;
3162
f62dda66 3163 iommu = amd_iommu_rlookup_table[dev_data->devid];
01106066
JR
3164 if (!iommu)
3165 return -EINVAL;
3166
657cbb6b 3167 if (dev_data->domain)
15898bbc 3168 detach_device(dev);
01106066 3169
15898bbc 3170 ret = attach_device(dev, domain);
01106066
JR
3171
3172 iommu_completion_wait(iommu);
3173
15898bbc 3174 return ret;
01106066
JR
3175}
3176
468e2366 3177static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
5009065d 3178 phys_addr_t paddr, size_t page_size, int iommu_prot)
c6229ca6 3179{
3f4b87b9 3180 struct protection_domain *domain = to_pdomain(dom);
c6229ca6
JR
3181 int prot = 0;
3182 int ret;
3183
132bd68f
JR
3184 if (domain->mode == PAGE_MODE_NONE)
3185 return -EINVAL;
3186
c6229ca6
JR
3187 if (iommu_prot & IOMMU_READ)
3188 prot |= IOMMU_PROT_IR;
3189 if (iommu_prot & IOMMU_WRITE)
3190 prot |= IOMMU_PROT_IW;
3191
5d214fe6 3192 mutex_lock(&domain->api_lock);
795e74f7 3193 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
5d214fe6
JR
3194 mutex_unlock(&domain->api_lock);
3195
795e74f7 3196 return ret;
c6229ca6
JR
3197}
3198
5009065d
OBC
3199static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3200 size_t page_size)
eb74ff6c 3201{
3f4b87b9 3202 struct protection_domain *domain = to_pdomain(dom);
5009065d 3203 size_t unmap_size;
eb74ff6c 3204
132bd68f
JR
3205 if (domain->mode == PAGE_MODE_NONE)
3206 return -EINVAL;
3207
5d214fe6 3208 mutex_lock(&domain->api_lock);
468e2366 3209 unmap_size = iommu_unmap_page(domain, iova, page_size);
795e74f7 3210 mutex_unlock(&domain->api_lock);
eb74ff6c 3211
17b124bf 3212 domain_flush_tlb_pde(domain);
5d214fe6 3213
5009065d 3214 return unmap_size;
eb74ff6c
JR
3215}
3216
645c4c8d 3217static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
bb5547ac 3218 dma_addr_t iova)
645c4c8d 3219{
3f4b87b9 3220 struct protection_domain *domain = to_pdomain(dom);
3039ca1b 3221 unsigned long offset_mask, pte_pgsize;
f03152bb 3222 u64 *pte, __pte;
645c4c8d 3223
132bd68f
JR
3224 if (domain->mode == PAGE_MODE_NONE)
3225 return iova;
3226
3039ca1b 3227 pte = fetch_pte(domain, iova, &pte_pgsize);
645c4c8d 3228
a6d41a40 3229 if (!pte || !IOMMU_PTE_PRESENT(*pte))
645c4c8d
JR
3230 return 0;
3231
b24b1b63
JR
3232 offset_mask = pte_pgsize - 1;
3233 __pte = *pte & PM_ADDR_MASK;
645c4c8d 3234
b24b1b63 3235 return (__pte & ~offset_mask) | (iova & offset_mask);
645c4c8d
JR
3236}
3237
ab636481 3238static bool amd_iommu_capable(enum iommu_cap cap)
dbb9fd86 3239{
80a506b8
JR
3240 switch (cap) {
3241 case IOMMU_CAP_CACHE_COHERENCY:
ab636481 3242 return true;
bdddadcb 3243 case IOMMU_CAP_INTR_REMAP:
ab636481 3244 return (irq_remapping_enabled == 1);
cfdeec22
WD
3245 case IOMMU_CAP_NOEXEC:
3246 return false;
80a506b8
JR
3247 }
3248
ab636481 3249 return false;
dbb9fd86
SY
3250}
3251
35cf248f
JR
3252static void amd_iommu_get_dm_regions(struct device *dev,
3253 struct list_head *head)
3254{
3255 struct unity_map_entry *entry;
7aba6cb9 3256 int devid;
35cf248f
JR
3257
3258 devid = get_device_id(dev);
9ee35e4c 3259 if (devid < 0)
7aba6cb9 3260 return;
35cf248f
JR
3261
3262 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3263 struct iommu_dm_region *region;
3264
3265 if (devid < entry->devid_start || devid > entry->devid_end)
3266 continue;
3267
3268 region = kzalloc(sizeof(*region), GFP_KERNEL);
3269 if (!region) {
3270 pr_err("Out of memory allocating dm-regions for %s\n",
3271 dev_name(dev));
3272 return;
3273 }
3274
3275 region->start = entry->address_start;
3276 region->length = entry->address_end - entry->address_start;
3277 if (entry->prot & IOMMU_PROT_IR)
3278 region->prot |= IOMMU_READ;
3279 if (entry->prot & IOMMU_PROT_IW)
3280 region->prot |= IOMMU_WRITE;
3281
3282 list_add_tail(&region->list, head);
3283 }
3284}
3285
3286static void amd_iommu_put_dm_regions(struct device *dev,
3287 struct list_head *head)
3288{
3289 struct iommu_dm_region *entry, *next;
3290
3291 list_for_each_entry_safe(entry, next, head, list)
3292 kfree(entry);
3293}
3294
b22f6434 3295static const struct iommu_ops amd_iommu_ops = {
ab636481 3296 .capable = amd_iommu_capable,
3f4b87b9
JR
3297 .domain_alloc = amd_iommu_domain_alloc,
3298 .domain_free = amd_iommu_domain_free,
26961efe
JR
3299 .attach_dev = amd_iommu_attach_device,
3300 .detach_dev = amd_iommu_detach_device,
468e2366
JR
3301 .map = amd_iommu_map,
3302 .unmap = amd_iommu_unmap,
315786eb 3303 .map_sg = default_iommu_map_sg,
26961efe 3304 .iova_to_phys = amd_iommu_iova_to_phys,
aafd8ba0
JR
3305 .add_device = amd_iommu_add_device,
3306 .remove_device = amd_iommu_remove_device,
b097d11a 3307 .device_group = amd_iommu_device_group,
35cf248f
JR
3308 .get_dm_regions = amd_iommu_get_dm_regions,
3309 .put_dm_regions = amd_iommu_put_dm_regions,
aa3de9c0 3310 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
26961efe
JR
3311};
3312
0feae533
JR
3313/*****************************************************************************
3314 *
3315 * The next functions do a basic initialization of IOMMU for pass through
3316 * mode
3317 *
3318 * In passthrough mode the IOMMU is initialized and enabled but not used for
3319 * DMA-API translation.
3320 *
3321 *****************************************************************************/
3322
72e1dcc4
JR
3323/* IOMMUv2 specific functions */
3324int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3325{
3326 return atomic_notifier_chain_register(&ppr_notifier, nb);
3327}
3328EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3329
3330int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3331{
3332 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3333}
3334EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
132bd68f
JR
3335
3336void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3337{
3f4b87b9 3338 struct protection_domain *domain = to_pdomain(dom);
132bd68f
JR
3339 unsigned long flags;
3340
3341 spin_lock_irqsave(&domain->lock, flags);
3342
3343 /* Update data structure */
3344 domain->mode = PAGE_MODE_NONE;
3345 domain->updated = true;
3346
3347 /* Make changes visible to IOMMUs */
3348 update_domain(domain);
3349
3350 /* Page-table is not visible to IOMMU anymore, so free it */
3351 free_pagetable(domain);
3352
3353 spin_unlock_irqrestore(&domain->lock, flags);
3354}
3355EXPORT_SYMBOL(amd_iommu_domain_direct_map);
52815b75
JR
3356
3357int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3358{
3f4b87b9 3359 struct protection_domain *domain = to_pdomain(dom);
52815b75
JR
3360 unsigned long flags;
3361 int levels, ret;
3362
3363 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3364 return -EINVAL;
3365
3366 /* Number of GCR3 table levels required */
3367 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3368 levels += 1;
3369
3370 if (levels > amd_iommu_max_glx_val)
3371 return -EINVAL;
3372
3373 spin_lock_irqsave(&domain->lock, flags);
3374
3375 /*
3376 * Save us all sanity checks whether devices already in the
3377 * domain support IOMMUv2. Just force that the domain has no
3378 * devices attached when it is switched into IOMMUv2 mode.
3379 */
3380 ret = -EBUSY;
3381 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3382 goto out;
3383
3384 ret = -ENOMEM;
3385 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3386 if (domain->gcr3_tbl == NULL)
3387 goto out;
3388
3389 domain->glx = levels;
3390 domain->flags |= PD_IOMMUV2_MASK;
3391 domain->updated = true;
3392
3393 update_domain(domain);
3394
3395 ret = 0;
3396
3397out:
3398 spin_unlock_irqrestore(&domain->lock, flags);
3399
3400 return ret;
3401}
3402EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
22e266c7
JR
3403
3404static int __flush_pasid(struct protection_domain *domain, int pasid,
3405 u64 address, bool size)
3406{
3407 struct iommu_dev_data *dev_data;
3408 struct iommu_cmd cmd;
3409 int i, ret;
3410
3411 if (!(domain->flags & PD_IOMMUV2_MASK))
3412 return -EINVAL;
3413
3414 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3415
3416 /*
3417 * IOMMU TLB needs to be flushed before Device TLB to
3418 * prevent device TLB refill from IOMMU TLB
3419 */
3420 for (i = 0; i < amd_iommus_present; ++i) {
3421 if (domain->dev_iommu[i] == 0)
3422 continue;
3423
3424 ret = iommu_queue_command(amd_iommus[i], &cmd);
3425 if (ret != 0)
3426 goto out;
3427 }
3428
3429 /* Wait until IOMMU TLB flushes are complete */
3430 domain_flush_complete(domain);
3431
3432 /* Now flush device TLBs */
3433 list_for_each_entry(dev_data, &domain->dev_list, list) {
3434 struct amd_iommu *iommu;
3435 int qdep;
3436
1c1cc454
JR
3437 /*
3438 There might be non-IOMMUv2 capable devices in an IOMMUv2
3439 * domain.
3440 */
3441 if (!dev_data->ats.enabled)
3442 continue;
22e266c7
JR
3443
3444 qdep = dev_data->ats.qdep;
3445 iommu = amd_iommu_rlookup_table[dev_data->devid];
3446
3447 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3448 qdep, address, size);
3449
3450 ret = iommu_queue_command(iommu, &cmd);
3451 if (ret != 0)
3452 goto out;
3453 }
3454
3455 /* Wait until all device TLBs are flushed */
3456 domain_flush_complete(domain);
3457
3458 ret = 0;
3459
3460out:
3461
3462 return ret;
3463}
3464
3465static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3466 u64 address)
3467{
3468 return __flush_pasid(domain, pasid, address, false);
3469}
3470
3471int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3472 u64 address)
3473{
3f4b87b9 3474 struct protection_domain *domain = to_pdomain(dom);
22e266c7
JR
3475 unsigned long flags;
3476 int ret;
3477
3478 spin_lock_irqsave(&domain->lock, flags);
3479 ret = __amd_iommu_flush_page(domain, pasid, address);
3480 spin_unlock_irqrestore(&domain->lock, flags);
3481
3482 return ret;
3483}
3484EXPORT_SYMBOL(amd_iommu_flush_page);
3485
3486static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3487{
3488 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3489 true);
3490}
3491
3492int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3493{
3f4b87b9 3494 struct protection_domain *domain = to_pdomain(dom);
22e266c7
JR
3495 unsigned long flags;
3496 int ret;
3497
3498 spin_lock_irqsave(&domain->lock, flags);
3499 ret = __amd_iommu_flush_tlb(domain, pasid);
3500 spin_unlock_irqrestore(&domain->lock, flags);
3501
3502 return ret;
3503}
3504EXPORT_SYMBOL(amd_iommu_flush_tlb);
3505
b16137b1
JR
3506static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3507{
3508 int index;
3509 u64 *pte;
3510
3511 while (true) {
3512
3513 index = (pasid >> (9 * level)) & 0x1ff;
3514 pte = &root[index];
3515
3516 if (level == 0)
3517 break;
3518
3519 if (!(*pte & GCR3_VALID)) {
3520 if (!alloc)
3521 return NULL;
3522
3523 root = (void *)get_zeroed_page(GFP_ATOMIC);
3524 if (root == NULL)
3525 return NULL;
3526
3527 *pte = __pa(root) | GCR3_VALID;
3528 }
3529
3530 root = __va(*pte & PAGE_MASK);
3531
3532 level -= 1;
3533 }
3534
3535 return pte;
3536}
3537
3538static int __set_gcr3(struct protection_domain *domain, int pasid,
3539 unsigned long cr3)
3540{
3541 u64 *pte;
3542
3543 if (domain->mode != PAGE_MODE_NONE)
3544 return -EINVAL;
3545
3546 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3547 if (pte == NULL)
3548 return -ENOMEM;
3549
3550 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3551
3552 return __amd_iommu_flush_tlb(domain, pasid);
3553}
3554
3555static int __clear_gcr3(struct protection_domain *domain, int pasid)
3556{
3557 u64 *pte;
3558
3559 if (domain->mode != PAGE_MODE_NONE)
3560 return -EINVAL;
3561
3562 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3563 if (pte == NULL)
3564 return 0;
3565
3566 *pte = 0;
3567
3568 return __amd_iommu_flush_tlb(domain, pasid);
3569}
3570
3571int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3572 unsigned long cr3)
3573{
3f4b87b9 3574 struct protection_domain *domain = to_pdomain(dom);
b16137b1
JR
3575 unsigned long flags;
3576 int ret;
3577
3578 spin_lock_irqsave(&domain->lock, flags);
3579 ret = __set_gcr3(domain, pasid, cr3);
3580 spin_unlock_irqrestore(&domain->lock, flags);
3581
3582 return ret;
3583}
3584EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3585
3586int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3587{
3f4b87b9 3588 struct protection_domain *domain = to_pdomain(dom);
b16137b1
JR
3589 unsigned long flags;
3590 int ret;
3591
3592 spin_lock_irqsave(&domain->lock, flags);
3593 ret = __clear_gcr3(domain, pasid);
3594 spin_unlock_irqrestore(&domain->lock, flags);
3595
3596 return ret;
3597}
3598EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
c99afa25
JR
3599
3600int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3601 int status, int tag)
3602{
3603 struct iommu_dev_data *dev_data;
3604 struct amd_iommu *iommu;
3605 struct iommu_cmd cmd;
3606
3607 dev_data = get_dev_data(&pdev->dev);
3608 iommu = amd_iommu_rlookup_table[dev_data->devid];
3609
3610 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3611 tag, dev_data->pri_tlp);
3612
3613 return iommu_queue_command(iommu, &cmd);
3614}
3615EXPORT_SYMBOL(amd_iommu_complete_ppr);
f3572db8
JR
3616
3617struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3618{
3f4b87b9 3619 struct protection_domain *pdomain;
f3572db8 3620
3f4b87b9
JR
3621 pdomain = get_domain(&pdev->dev);
3622 if (IS_ERR(pdomain))
f3572db8
JR
3623 return NULL;
3624
3625 /* Only return IOMMUv2 domains */
3f4b87b9 3626 if (!(pdomain->flags & PD_IOMMUV2_MASK))
f3572db8
JR
3627 return NULL;
3628
3f4b87b9 3629 return &pdomain->domain;
f3572db8
JR
3630}
3631EXPORT_SYMBOL(amd_iommu_get_v2_domain);
6a113ddc
JR
3632
3633void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3634{
3635 struct iommu_dev_data *dev_data;
3636
3637 if (!amd_iommu_v2_supported())
3638 return;
3639
3640 dev_data = get_dev_data(&pdev->dev);
3641 dev_data->errata |= (1 << erratum);
3642}
3643EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
52efdb89
JR
3644
3645int amd_iommu_device_info(struct pci_dev *pdev,
3646 struct amd_iommu_device_info *info)
3647{
3648 int max_pasids;
3649 int pos;
3650
3651 if (pdev == NULL || info == NULL)
3652 return -EINVAL;
3653
3654 if (!amd_iommu_v2_supported())
3655 return -EINVAL;
3656
3657 memset(info, 0, sizeof(*info));
3658
3659 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3660 if (pos)
3661 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3662
3663 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3664 if (pos)
3665 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3666
3667 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3668 if (pos) {
3669 int features;
3670
3671 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3672 max_pasids = min(max_pasids, (1 << 20));
3673
3674 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3675 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3676
3677 features = pci_pasid_features(pdev);
3678 if (features & PCI_PASID_CAP_EXEC)
3679 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3680 if (features & PCI_PASID_CAP_PRIV)
3681 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3682 }
3683
3684 return 0;
3685}
3686EXPORT_SYMBOL(amd_iommu_device_info);
2b324506
JR
3687
3688#ifdef CONFIG_IRQ_REMAP
3689
3690/*****************************************************************************
3691 *
3692 * Interrupt Remapping Implementation
3693 *
3694 *****************************************************************************/
3695
3696union irte {
3697 u32 val;
3698 struct {
3699 u32 valid : 1,
3700 no_fault : 1,
3701 int_type : 3,
3702 rq_eoi : 1,
3703 dm : 1,
3704 rsvd_1 : 1,
3705 destination : 8,
3706 vector : 8,
3707 rsvd_2 : 8;
3708 } fields;
3709};
3710
9c724966
JL
3711struct irq_2_irte {
3712 u16 devid; /* Device ID for IRTE table */
3713 u16 index; /* Index into IRTE table*/
3714};
3715
7c71d306
JL
3716struct amd_ir_data {
3717 struct irq_2_irte irq_2_irte;
3718 union irte irte_entry;
3719 union {
3720 struct msi_msg msi_entry;
3721 };
3722};
3723
3724static struct irq_chip amd_ir_chip;
3725
2b324506
JR
3726#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3727#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3728#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3729#define DTE_IRQ_REMAP_ENABLE 1ULL
3730
3731static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3732{
3733 u64 dte;
3734
3735 dte = amd_iommu_dev_table[devid].data[2];
3736 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3737 dte |= virt_to_phys(table->table);
3738 dte |= DTE_IRQ_REMAP_INTCTL;
3739 dte |= DTE_IRQ_TABLE_LEN;
3740 dte |= DTE_IRQ_REMAP_ENABLE;
3741
3742 amd_iommu_dev_table[devid].data[2] = dte;
3743}
3744
3745#define IRTE_ALLOCATED (~1U)
3746
3747static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3748{
3749 struct irq_remap_table *table = NULL;
3750 struct amd_iommu *iommu;
3751 unsigned long flags;
3752 u16 alias;
3753
3754 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3755
3756 iommu = amd_iommu_rlookup_table[devid];
3757 if (!iommu)
3758 goto out_unlock;
3759
3760 table = irq_lookup_table[devid];
3761 if (table)
3762 goto out;
3763
3764 alias = amd_iommu_alias_table[devid];
3765 table = irq_lookup_table[alias];
3766 if (table) {
3767 irq_lookup_table[devid] = table;
3768 set_dte_irq_entry(devid, table);
3769 iommu_flush_dte(iommu, devid);
3770 goto out;
3771 }
3772
3773 /* Nothing there yet, allocate new irq remapping table */
3774 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3775 if (!table)
3776 goto out;
3777
197887f0
JR
3778 /* Initialize table spin-lock */
3779 spin_lock_init(&table->lock);
3780
2b324506
JR
3781 if (ioapic)
3782 /* Keep the first 32 indexes free for IOAPIC interrupts */
3783 table->min_index = 32;
3784
3785 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3786 if (!table->table) {
3787 kfree(table);
821f0f68 3788 table = NULL;
2b324506
JR
3789 goto out;
3790 }
3791
3792 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3793
3794 if (ioapic) {
3795 int i;
3796
3797 for (i = 0; i < 32; ++i)
3798 table->table[i] = IRTE_ALLOCATED;
3799 }
3800
3801 irq_lookup_table[devid] = table;
3802 set_dte_irq_entry(devid, table);
3803 iommu_flush_dte(iommu, devid);
3804 if (devid != alias) {
3805 irq_lookup_table[alias] = table;
e028a9e6 3806 set_dte_irq_entry(alias, table);
2b324506
JR
3807 iommu_flush_dte(iommu, alias);
3808 }
3809
3810out:
3811 iommu_completion_wait(iommu);
3812
3813out_unlock:
3814 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3815
3816 return table;
3817}
3818
3c3d4f90 3819static int alloc_irq_index(u16 devid, int count)
2b324506
JR
3820{
3821 struct irq_remap_table *table;
3822 unsigned long flags;
3823 int index, c;
3824
3825 table = get_irq_table(devid, false);
3826 if (!table)
3827 return -ENODEV;
3828
3829 spin_lock_irqsave(&table->lock, flags);
3830
3831 /* Scan table for free entries */
3832 for (c = 0, index = table->min_index;
3833 index < MAX_IRQS_PER_TABLE;
3834 ++index) {
3835 if (table->table[index] == 0)
3836 c += 1;
3837 else
3838 c = 0;
3839
3840 if (c == count) {
2b324506
JR
3841 for (; c != 0; --c)
3842 table->table[index - c + 1] = IRTE_ALLOCATED;
3843
3844 index -= count - 1;
2b324506
JR
3845 goto out;
3846 }
3847 }
3848
3849 index = -ENOSPC;
3850
3851out:
3852 spin_unlock_irqrestore(&table->lock, flags);
3853
3854 return index;
3855}
3856
2b324506
JR
3857static int modify_irte(u16 devid, int index, union irte irte)
3858{
3859 struct irq_remap_table *table;
3860 struct amd_iommu *iommu;
3861 unsigned long flags;
3862
3863 iommu = amd_iommu_rlookup_table[devid];
3864 if (iommu == NULL)
3865 return -EINVAL;
3866
3867 table = get_irq_table(devid, false);
3868 if (!table)
3869 return -ENOMEM;
3870
3871 spin_lock_irqsave(&table->lock, flags);
3872 table->table[index] = irte.val;
3873 spin_unlock_irqrestore(&table->lock, flags);
3874
3875 iommu_flush_irt(iommu, devid);
3876 iommu_completion_wait(iommu);
3877
3878 return 0;
3879}
3880
3881static void free_irte(u16 devid, int index)
3882{
3883 struct irq_remap_table *table;
3884 struct amd_iommu *iommu;
3885 unsigned long flags;
3886
3887 iommu = amd_iommu_rlookup_table[devid];
3888 if (iommu == NULL)
3889 return;
3890
3891 table = get_irq_table(devid, false);
3892 if (!table)
3893 return;
3894
3895 spin_lock_irqsave(&table->lock, flags);
3896 table->table[index] = 0;
3897 spin_unlock_irqrestore(&table->lock, flags);
3898
3899 iommu_flush_irt(iommu, devid);
3900 iommu_completion_wait(iommu);
3901}
3902
7c71d306 3903static int get_devid(struct irq_alloc_info *info)
5527de74 3904{
7c71d306 3905 int devid = -1;
5527de74 3906
7c71d306
JL
3907 switch (info->type) {
3908 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3909 devid = get_ioapic_devid(info->ioapic_id);
3910 break;
3911 case X86_IRQ_ALLOC_TYPE_HPET:
3912 devid = get_hpet_devid(info->hpet_id);
3913 break;
3914 case X86_IRQ_ALLOC_TYPE_MSI:
3915 case X86_IRQ_ALLOC_TYPE_MSIX:
3916 devid = get_device_id(&info->msi_dev->dev);
3917 break;
3918 default:
3919 BUG_ON(1);
3920 break;
3921 }
5527de74 3922
7c71d306
JL
3923 return devid;
3924}
5527de74 3925
7c71d306
JL
3926static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
3927{
3928 struct amd_iommu *iommu;
3929 int devid;
5527de74 3930
7c71d306
JL
3931 if (!info)
3932 return NULL;
5527de74 3933
7c71d306
JL
3934 devid = get_devid(info);
3935 if (devid >= 0) {
3936 iommu = amd_iommu_rlookup_table[devid];
3937 if (iommu)
3938 return iommu->ir_domain;
3939 }
5527de74 3940
7c71d306 3941 return NULL;
5527de74
JR
3942}
3943
7c71d306 3944static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
5527de74 3945{
7c71d306
JL
3946 struct amd_iommu *iommu;
3947 int devid;
5527de74 3948
7c71d306
JL
3949 if (!info)
3950 return NULL;
5527de74 3951
7c71d306
JL
3952 switch (info->type) {
3953 case X86_IRQ_ALLOC_TYPE_MSI:
3954 case X86_IRQ_ALLOC_TYPE_MSIX:
3955 devid = get_device_id(&info->msi_dev->dev);
9ee35e4c 3956 if (devid < 0)
7aba6cb9
WZ
3957 return NULL;
3958
1fb260bc
DC
3959 iommu = amd_iommu_rlookup_table[devid];
3960 if (iommu)
3961 return iommu->msi_domain;
7c71d306
JL
3962 break;
3963 default:
3964 break;
3965 }
5527de74 3966
7c71d306
JL
3967 return NULL;
3968}
5527de74 3969
6b474b82 3970struct irq_remap_ops amd_iommu_irq_ops = {
6b474b82
JR
3971 .prepare = amd_iommu_prepare,
3972 .enable = amd_iommu_enable,
3973 .disable = amd_iommu_disable,
3974 .reenable = amd_iommu_reenable,
3975 .enable_faulting = amd_iommu_enable_faulting,
7c71d306
JL
3976 .get_ir_irq_domain = get_ir_irq_domain,
3977 .get_irq_domain = get_irq_domain,
3978};
5527de74 3979
7c71d306
JL
3980static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3981 struct irq_cfg *irq_cfg,
3982 struct irq_alloc_info *info,
3983 int devid, int index, int sub_handle)
3984{
3985 struct irq_2_irte *irte_info = &data->irq_2_irte;
3986 struct msi_msg *msg = &data->msi_entry;
3987 union irte *irte = &data->irte_entry;
3988 struct IO_APIC_route_entry *entry;
5527de74 3989
7c71d306
JL
3990 data->irq_2_irte.devid = devid;
3991 data->irq_2_irte.index = index + sub_handle;
5527de74 3992
7c71d306
JL
3993 /* Setup IRTE for IOMMU */
3994 irte->val = 0;
3995 irte->fields.vector = irq_cfg->vector;
3996 irte->fields.int_type = apic->irq_delivery_mode;
3997 irte->fields.destination = irq_cfg->dest_apicid;
3998 irte->fields.dm = apic->irq_dest_mode;
3999 irte->fields.valid = 1;
4000
4001 switch (info->type) {
4002 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4003 /* Setup IOAPIC entry */
4004 entry = info->ioapic_entry;
4005 info->ioapic_entry = NULL;
4006 memset(entry, 0, sizeof(*entry));
4007 entry->vector = index;
4008 entry->mask = 0;
4009 entry->trigger = info->ioapic_trigger;
4010 entry->polarity = info->ioapic_polarity;
4011 /* Mask level triggered irqs. */
4012 if (info->ioapic_trigger)
4013 entry->mask = 1;
4014 break;
5527de74 4015
7c71d306
JL
4016 case X86_IRQ_ALLOC_TYPE_HPET:
4017 case X86_IRQ_ALLOC_TYPE_MSI:
4018 case X86_IRQ_ALLOC_TYPE_MSIX:
4019 msg->address_hi = MSI_ADDR_BASE_HI;
4020 msg->address_lo = MSI_ADDR_BASE_LO;
4021 msg->data = irte_info->index;
4022 break;
5527de74 4023
7c71d306
JL
4024 default:
4025 BUG_ON(1);
4026 break;
4027 }
5527de74
JR
4028}
4029
7c71d306
JL
4030static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
4031 unsigned int nr_irqs, void *arg)
5527de74 4032{
7c71d306
JL
4033 struct irq_alloc_info *info = arg;
4034 struct irq_data *irq_data;
4035 struct amd_ir_data *data;
5527de74 4036 struct irq_cfg *cfg;
7c71d306
JL
4037 int i, ret, devid;
4038 int index = -1;
5527de74 4039
7c71d306
JL
4040 if (!info)
4041 return -EINVAL;
4042 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
4043 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
5527de74
JR
4044 return -EINVAL;
4045
7c71d306
JL
4046 /*
4047 * With IRQ remapping enabled, don't need contiguous CPU vectors
4048 * to support multiple MSI interrupts.
4049 */
4050 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
4051 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
5527de74 4052
7c71d306
JL
4053 devid = get_devid(info);
4054 if (devid < 0)
4055 return -EINVAL;
5527de74 4056
7c71d306
JL
4057 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
4058 if (ret < 0)
4059 return ret;
0b4d48cb 4060
7c71d306
JL
4061 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
4062 if (get_irq_table(devid, true))
4063 index = info->ioapic_pin;
4064 else
4065 ret = -ENOMEM;
4066 } else {
3c3d4f90 4067 index = alloc_irq_index(devid, nr_irqs);
7c71d306
JL
4068 }
4069 if (index < 0) {
4070 pr_warn("Failed to allocate IRTE\n");
7c71d306
JL
4071 goto out_free_parent;
4072 }
0b4d48cb 4073
7c71d306
JL
4074 for (i = 0; i < nr_irqs; i++) {
4075 irq_data = irq_domain_get_irq_data(domain, virq + i);
4076 cfg = irqd_cfg(irq_data);
4077 if (!irq_data || !cfg) {
4078 ret = -EINVAL;
4079 goto out_free_data;
4080 }
0b4d48cb 4081
a130e69f
JR
4082 ret = -ENOMEM;
4083 data = kzalloc(sizeof(*data), GFP_KERNEL);
4084 if (!data)
4085 goto out_free_data;
4086
7c71d306
JL
4087 irq_data->hwirq = (devid << 16) + i;
4088 irq_data->chip_data = data;
4089 irq_data->chip = &amd_ir_chip;
4090 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4091 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4092 }
a130e69f 4093
7c71d306 4094 return 0;
0b4d48cb 4095
7c71d306
JL
4096out_free_data:
4097 for (i--; i >= 0; i--) {
4098 irq_data = irq_domain_get_irq_data(domain, virq + i);
4099 if (irq_data)
4100 kfree(irq_data->chip_data);
4101 }
4102 for (i = 0; i < nr_irqs; i++)
4103 free_irte(devid, index + i);
4104out_free_parent:
4105 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4106 return ret;
0b4d48cb
JR
4107}
4108
7c71d306
JL
4109static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4110 unsigned int nr_irqs)
0b4d48cb 4111{
7c71d306
JL
4112 struct irq_2_irte *irte_info;
4113 struct irq_data *irq_data;
4114 struct amd_ir_data *data;
4115 int i;
0b4d48cb 4116
7c71d306
JL
4117 for (i = 0; i < nr_irqs; i++) {
4118 irq_data = irq_domain_get_irq_data(domain, virq + i);
4119 if (irq_data && irq_data->chip_data) {
4120 data = irq_data->chip_data;
4121 irte_info = &data->irq_2_irte;
4122 free_irte(irte_info->devid, irte_info->index);
4123 kfree(data);
4124 }
4125 }
4126 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4127}
0b4d48cb 4128
7c71d306
JL
4129static void irq_remapping_activate(struct irq_domain *domain,
4130 struct irq_data *irq_data)
4131{
4132 struct amd_ir_data *data = irq_data->chip_data;
4133 struct irq_2_irte *irte_info = &data->irq_2_irte;
0b4d48cb 4134
7c71d306 4135 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
0b4d48cb
JR
4136}
4137
7c71d306
JL
4138static void irq_remapping_deactivate(struct irq_domain *domain,
4139 struct irq_data *irq_data)
0b4d48cb 4140{
7c71d306
JL
4141 struct amd_ir_data *data = irq_data->chip_data;
4142 struct irq_2_irte *irte_info = &data->irq_2_irte;
4143 union irte entry;
0b4d48cb 4144
7c71d306
JL
4145 entry.val = 0;
4146 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4147}
0b4d48cb 4148
7c71d306
JL
4149static struct irq_domain_ops amd_ir_domain_ops = {
4150 .alloc = irq_remapping_alloc,
4151 .free = irq_remapping_free,
4152 .activate = irq_remapping_activate,
4153 .deactivate = irq_remapping_deactivate,
6b474b82 4154};
0b4d48cb 4155
7c71d306
JL
4156static int amd_ir_set_affinity(struct irq_data *data,
4157 const struct cpumask *mask, bool force)
4158{
4159 struct amd_ir_data *ir_data = data->chip_data;
4160 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4161 struct irq_cfg *cfg = irqd_cfg(data);
4162 struct irq_data *parent = data->parent_data;
4163 int ret;
0b4d48cb 4164
7c71d306
JL
4165 ret = parent->chip->irq_set_affinity(parent, mask, force);
4166 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4167 return ret;
0b4d48cb 4168
7c71d306
JL
4169 /*
4170 * Atomically updates the IRTE with the new destination, vector
4171 * and flushes the interrupt entry cache.
4172 */
4173 ir_data->irte_entry.fields.vector = cfg->vector;
4174 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4175 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
0b4d48cb 4176
7c71d306
JL
4177 /*
4178 * After this point, all the interrupts will start arriving
4179 * at the new destination. So, time to cleanup the previous
4180 * vector allocation.
4181 */
c6c2002b 4182 send_cleanup_vector(cfg);
7c71d306
JL
4183
4184 return IRQ_SET_MASK_OK_DONE;
0b4d48cb
JR
4185}
4186
7c71d306 4187static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
d976195c 4188{
7c71d306 4189 struct amd_ir_data *ir_data = irq_data->chip_data;
d976195c 4190
7c71d306
JL
4191 *msg = ir_data->msi_entry;
4192}
d976195c 4193
7c71d306
JL
4194static struct irq_chip amd_ir_chip = {
4195 .irq_ack = ir_ack_apic_edge,
4196 .irq_set_affinity = amd_ir_set_affinity,
4197 .irq_compose_msi_msg = ir_compose_msi_msg,
4198};
d976195c 4199
7c71d306
JL
4200int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4201{
4202 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4203 if (!iommu->ir_domain)
4204 return -ENOMEM;
d976195c 4205
7c71d306
JL
4206 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4207 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
d976195c
JR
4208
4209 return 0;
4210}
2b324506 4211#endif
This page took 1.008803 seconds and 5 git commands to generate.