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