blob: 8858cb6c70ded2bfd70d6566bfe09ec9271e2721 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * 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
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020034#include <linux/irq.h>
35#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020036#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080037#include <linux/irqdomain.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020038#include <asm/irq_remapping.h>
39#include <asm/io_apic.h>
40#include <asm/apic.h>
41#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020042#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020043#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090044#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010045#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020046#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020047
48#include "amd_iommu_proto.h"
49#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020050#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020051
52#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
53
Joerg Roedel815b33f2011-04-06 17:26:49 +020054#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020055
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020056/*
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 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010064#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020065
Joerg Roedelb6c02712008-06-26 21:27:53 +020066static DEFINE_RWLOCK(amd_iommu_devtable_lock);
67
Joerg Roedelbd60b732008-09-11 10:24:48 +020068/* A list of preallocated protection domains */
69static LIST_HEAD(iommu_pd_list);
70static DEFINE_SPINLOCK(iommu_pd_list_lock);
71
Joerg Roedel8fa5f802011-06-09 12:24:45 +020072/* List of all available dev_data structures */
73static LIST_HEAD(dev_data_list);
74static DEFINE_SPINLOCK(dev_data_list_lock);
75
Joerg Roedel6efed632012-06-14 15:52:58 +020076LIST_HEAD(ioapic_map);
77LIST_HEAD(hpet_map);
78
Joerg Roedel0feae532009-08-26 15:26:30 +020079/*
80 * Domain for untranslated devices - only allocated
81 * if iommu=pt passed on kernel cmd line.
82 */
83static struct protection_domain *pt_domain;
84
Thierry Redingb22f6432014-06-27 09:03:12 +020085static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010086
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010087static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010088int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010089
Joerg Roedelac1534a2012-06-21 14:52:40 +020090static struct dma_map_ops amd_iommu_dma_ops;
91
Joerg Roedel431b2a22008-07-11 17:14:22 +020092/*
Joerg Roedel50917e22014-08-05 16:38:38 +020093 * This struct contains device specific data for the IOMMU
94 */
95struct iommu_dev_data {
96 struct list_head list; /* For domain->dev_list */
97 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020098 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020099 struct iommu_dev_data *alias_data;/* The alias dev_data */
100 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +0200101 u16 devid; /* PCI Device ID */
102 bool iommu_v2; /* Device can make use of IOMMUv2 */
103 bool passthrough; /* Default for device is pt_domain */
104 struct {
105 bool enabled;
106 int qdep;
107 } ats; /* ATS state */
108 bool pri_tlp; /* PASID TLB required for
109 PPR completions */
110 u32 errata; /* Bitmap for errata to apply */
111};
112
113/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200114 * general struct to manage commands send to an IOMMU
115 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200116struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200117 u32 data[4];
118};
119
Joerg Roedel05152a02012-06-15 16:53:51 +0200120struct kmem_cache *amd_iommu_irq_cache;
121
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200122static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100123static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700124
Joerg Roedel15898bb2009-11-24 15:39:42 +0100125/****************************************************************************
126 *
127 * Helper functions
128 *
129 ****************************************************************************/
130
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100131static struct protection_domain *to_pdomain(struct iommu_domain *dom)
132{
133 return container_of(dom, struct protection_domain, domain);
134}
135
Joerg Roedelf62dda62011-06-09 12:55:35 +0200136static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200137{
138 struct iommu_dev_data *dev_data;
139 unsigned long flags;
140
141 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
142 if (!dev_data)
143 return NULL;
144
Joerg Roedelf251e182014-08-05 16:48:10 +0200145 INIT_LIST_HEAD(&dev_data->alias_list);
146
Joerg Roedelf62dda62011-06-09 12:55:35 +0200147 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200148
149 spin_lock_irqsave(&dev_data_list_lock, flags);
150 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
151 spin_unlock_irqrestore(&dev_data_list_lock, flags);
152
153 return dev_data;
154}
155
156static void free_dev_data(struct iommu_dev_data *dev_data)
157{
158 unsigned long flags;
159
160 spin_lock_irqsave(&dev_data_list_lock, flags);
161 list_del(&dev_data->dev_data_list);
162 spin_unlock_irqrestore(&dev_data_list_lock, flags);
163
164 kfree(dev_data);
165}
166
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200167static struct iommu_dev_data *search_dev_data(u16 devid)
168{
169 struct iommu_dev_data *dev_data;
170 unsigned long flags;
171
172 spin_lock_irqsave(&dev_data_list_lock, flags);
173 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
174 if (dev_data->devid == devid)
175 goto out_unlock;
176 }
177
178 dev_data = NULL;
179
180out_unlock:
181 spin_unlock_irqrestore(&dev_data_list_lock, flags);
182
183 return dev_data;
184}
185
186static struct iommu_dev_data *find_dev_data(u16 devid)
187{
188 struct iommu_dev_data *dev_data;
189
190 dev_data = search_dev_data(devid);
191
192 if (dev_data == NULL)
193 dev_data = alloc_dev_data(devid);
194
195 return dev_data;
196}
197
Joerg Roedel15898bb2009-11-24 15:39:42 +0100198static inline u16 get_device_id(struct device *dev)
199{
200 struct pci_dev *pdev = to_pci_dev(dev);
201
Shuah Khan6f2729b2013-02-27 17:07:30 -0700202 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100203}
204
Joerg Roedel657cbb62009-11-23 15:26:46 +0100205static struct iommu_dev_data *get_dev_data(struct device *dev)
206{
207 return dev->archdata.iommu;
208}
209
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100210static bool pci_iommuv2_capable(struct pci_dev *pdev)
211{
212 static const int caps[] = {
213 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100214 PCI_EXT_CAP_ID_PRI,
215 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100216 };
217 int i, pos;
218
219 for (i = 0; i < 3; ++i) {
220 pos = pci_find_ext_capability(pdev, caps[i]);
221 if (pos == 0)
222 return false;
223 }
224
225 return true;
226}
227
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100228static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
229{
230 struct iommu_dev_data *dev_data;
231
232 dev_data = get_dev_data(&pdev->dev);
233
234 return dev_data->errata & (1 << erratum) ? true : false;
235}
236
Joerg Roedel71c70982009-11-24 16:43:06 +0100237/*
238 * In this function the list of preallocated protection domains is traversed to
239 * find the domain for a specific device
240 */
241static struct dma_ops_domain *find_protection_domain(u16 devid)
242{
243 struct dma_ops_domain *entry, *ret = NULL;
244 unsigned long flags;
245 u16 alias = amd_iommu_alias_table[devid];
246
247 if (list_empty(&iommu_pd_list))
248 return NULL;
249
250 spin_lock_irqsave(&iommu_pd_list_lock, flags);
251
252 list_for_each_entry(entry, &iommu_pd_list, list) {
253 if (entry->target_dev == devid ||
254 entry->target_dev == alias) {
255 ret = entry;
256 break;
257 }
258 }
259
260 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
261
262 return ret;
263}
264
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100265/*
266 * This function checks if the driver got a valid device from the caller to
267 * avoid dereferencing invalid pointers.
268 */
269static bool check_device(struct device *dev)
270{
271 u16 devid;
272
273 if (!dev || !dev->dma_mask)
274 return false;
275
Yijing Wangb82a2272013-12-05 19:42:41 +0800276 /* No PCI device */
277 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100278 return false;
279
280 devid = get_device_id(dev);
281
282 /* Out of our scope? */
283 if (devid > amd_iommu_last_bdf)
284 return false;
285
286 if (amd_iommu_rlookup_table[devid] == NULL)
287 return false;
288
289 return true;
290}
291
Alex Williamson25b11ce2014-09-19 10:03:13 -0600292static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600293{
Alex Williamson2851db22012-10-08 22:49:41 -0600294 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600295
Alex Williamson65d53522014-07-03 09:51:30 -0600296 group = iommu_group_get_for_dev(dev);
Alex Williamson25b11ce2014-09-19 10:03:13 -0600297 if (!IS_ERR(group))
298 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600299}
300
Alex Williamsonc1931092014-07-03 09:51:24 -0600301static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
302{
303 *(u16 *)data = alias;
304 return 0;
305}
306
307static u16 get_alias(struct device *dev)
308{
309 struct pci_dev *pdev = to_pci_dev(dev);
310 u16 devid, ivrs_alias, pci_alias;
311
312 devid = get_device_id(dev);
313 ivrs_alias = amd_iommu_alias_table[devid];
314 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
315
316 if (ivrs_alias == pci_alias)
317 return ivrs_alias;
318
319 /*
320 * DMA alias showdown
321 *
322 * The IVRS is fairly reliable in telling us about aliases, but it
323 * can't know about every screwy device. If we don't have an IVRS
324 * reported alias, use the PCI reported alias. In that case we may
325 * still need to initialize the rlookup and dev_table entries if the
326 * alias is to a non-existent device.
327 */
328 if (ivrs_alias == devid) {
329 if (!amd_iommu_rlookup_table[pci_alias]) {
330 amd_iommu_rlookup_table[pci_alias] =
331 amd_iommu_rlookup_table[devid];
332 memcpy(amd_iommu_dev_table[pci_alias].data,
333 amd_iommu_dev_table[devid].data,
334 sizeof(amd_iommu_dev_table[pci_alias].data));
335 }
336
337 return pci_alias;
338 }
339
340 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
341 "for device %s[%04x:%04x], kernel reported alias "
342 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
343 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
344 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
345 PCI_FUNC(pci_alias));
346
347 /*
348 * If we don't have a PCI DMA alias and the IVRS alias is on the same
349 * bus, then the IVRS table may know about a quirk that we don't.
350 */
351 if (pci_alias == devid &&
352 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
353 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
354 pdev->dma_alias_devfn = ivrs_alias & 0xff;
355 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
356 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
357 dev_name(dev));
358 }
359
360 return ivrs_alias;
361}
362
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600363static int iommu_init_device(struct device *dev)
364{
365 struct pci_dev *pdev = to_pci_dev(dev);
366 struct iommu_dev_data *dev_data;
367 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600368
369 if (dev->archdata.iommu)
370 return 0;
371
372 dev_data = find_dev_data(get_device_id(dev));
373 if (!dev_data)
374 return -ENOMEM;
375
Alex Williamsonc1931092014-07-03 09:51:24 -0600376 alias = get_alias(dev);
377
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600378 if (alias != dev_data->devid) {
379 struct iommu_dev_data *alias_data;
380
381 alias_data = find_dev_data(alias);
382 if (alias_data == NULL) {
383 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
384 dev_name(dev));
385 free_dev_data(dev_data);
386 return -ENOTSUPP;
387 }
388 dev_data->alias_data = alias_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600389
Joerg Roedelf251e182014-08-05 16:48:10 +0200390 /* Add device to the alias_list */
391 list_add(&dev_data->alias_list, &alias_data->alias_list);
Radmila Kompováe644a012013-05-02 17:24:25 +0200392 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600393
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100394 if (pci_iommuv2_capable(pdev)) {
395 struct amd_iommu *iommu;
396
397 iommu = amd_iommu_rlookup_table[dev_data->devid];
398 dev_data->iommu_v2 = iommu->is_iommu_v2;
399 }
400
Joerg Roedel657cbb62009-11-23 15:26:46 +0100401 dev->archdata.iommu = dev_data;
402
Alex Williamson066f2e92014-06-12 16:12:37 -0600403 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
404 dev);
405
Joerg Roedel657cbb62009-11-23 15:26:46 +0100406 return 0;
407}
408
Joerg Roedel26018872011-06-06 16:50:14 +0200409static void iommu_ignore_device(struct device *dev)
410{
411 u16 devid, alias;
412
413 devid = get_device_id(dev);
414 alias = amd_iommu_alias_table[devid];
415
416 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
417 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
418
419 amd_iommu_rlookup_table[devid] = NULL;
420 amd_iommu_rlookup_table[alias] = NULL;
421}
422
Joerg Roedel657cbb62009-11-23 15:26:46 +0100423static void iommu_uninit_device(struct device *dev)
424{
Alex Williamsonc1931092014-07-03 09:51:24 -0600425 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
426
427 if (!dev_data)
428 return;
429
Alex Williamson066f2e92014-06-12 16:12:37 -0600430 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
431 dev);
432
Alex Williamson9dcd6132012-05-30 14:19:07 -0600433 iommu_group_remove_device(dev);
434
Alex Williamsonc1931092014-07-03 09:51:24 -0600435 /* Unlink from alias, it may change if another device is re-plugged */
436 dev_data->alias_data = NULL;
437
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200438 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600439 * We keep dev_data around for unplugged devices and reuse it when the
440 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200441 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100442}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100443
444void __init amd_iommu_uninit_devices(void)
445{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200446 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100447 struct pci_dev *pdev = NULL;
448
449 for_each_pci_dev(pdev) {
450
451 if (!check_device(&pdev->dev))
452 continue;
453
454 iommu_uninit_device(&pdev->dev);
455 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200456
457 /* Free all of our dev_data structures */
458 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
459 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100460}
461
462int __init amd_iommu_init_devices(void)
463{
464 struct pci_dev *pdev = NULL;
465 int ret = 0;
466
467 for_each_pci_dev(pdev) {
468
469 if (!check_device(&pdev->dev))
470 continue;
471
472 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200473 if (ret == -ENOTSUPP)
474 iommu_ignore_device(&pdev->dev);
475 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100476 goto out_free;
477 }
478
Alex Williamson25b11ce2014-09-19 10:03:13 -0600479 /*
480 * Initialize IOMMU groups only after iommu_init_device() has
481 * had a chance to populate any IVRS defined aliases.
482 */
483 for_each_pci_dev(pdev) {
484 if (check_device(&pdev->dev))
485 init_iommu_group(&pdev->dev);
486 }
487
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100488 return 0;
489
490out_free:
491
492 amd_iommu_uninit_devices();
493
494 return ret;
495}
Joerg Roedel7f265082008-12-12 13:50:21 +0100496#ifdef CONFIG_AMD_IOMMU_STATS
497
498/*
499 * Initialization code for statistics collection
500 */
501
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100502DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100503DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100504DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100505DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100506DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100507DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100508DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100509DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100510DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100511DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100512DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100513DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100514DECLARE_STATS_COUNTER(complete_ppr);
515DECLARE_STATS_COUNTER(invalidate_iotlb);
516DECLARE_STATS_COUNTER(invalidate_iotlb_all);
517DECLARE_STATS_COUNTER(pri_requests);
518
Joerg Roedel7f265082008-12-12 13:50:21 +0100519static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100520static struct dentry *de_fflush;
521
522static void amd_iommu_stats_add(struct __iommu_counter *cnt)
523{
524 if (stats_dir == NULL)
525 return;
526
527 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
528 &cnt->value);
529}
530
531static void amd_iommu_stats_init(void)
532{
533 stats_dir = debugfs_create_dir("amd-iommu", NULL);
534 if (stats_dir == NULL)
535 return;
536
Joerg Roedel7f265082008-12-12 13:50:21 +0100537 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300538 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100539
540 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100541 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100542 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100543 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100544 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100545 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100546 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100547 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100548 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100549 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100550 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100551 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100552 amd_iommu_stats_add(&complete_ppr);
553 amd_iommu_stats_add(&invalidate_iotlb);
554 amd_iommu_stats_add(&invalidate_iotlb_all);
555 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100556}
557
558#endif
559
Joerg Roedel431b2a22008-07-11 17:14:22 +0200560/****************************************************************************
561 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200562 * Interrupt handling functions
563 *
564 ****************************************************************************/
565
Joerg Roedele3e59872009-09-03 14:02:10 +0200566static void dump_dte_entry(u16 devid)
567{
568 int i;
569
Joerg Roedelee6c2862011-11-09 12:06:03 +0100570 for (i = 0; i < 4; ++i)
571 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200572 amd_iommu_dev_table[devid].data[i]);
573}
574
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200575static void dump_command(unsigned long phys_addr)
576{
577 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
578 int i;
579
580 for (i = 0; i < 4; ++i)
581 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
582}
583
Joerg Roedela345b232009-09-03 15:01:43 +0200584static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200585{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200586 int type, devid, domid, flags;
587 volatile u32 *event = __evt;
588 int count = 0;
589 u64 address;
590
591retry:
592 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
593 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
594 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
595 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
596 address = (u64)(((u64)event[3]) << 32) | event[2];
597
598 if (type == 0) {
599 /* Did we hit the erratum? */
600 if (++count == LOOP_TIMEOUT) {
601 pr_err("AMD-Vi: No event written to event log\n");
602 return;
603 }
604 udelay(1);
605 goto retry;
606 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200607
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200608 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200609
610 switch (type) {
611 case EVENT_TYPE_ILL_DEV:
612 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
613 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700614 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200615 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200616 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200617 break;
618 case EVENT_TYPE_IO_FAULT:
619 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
620 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700621 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200622 domid, address, flags);
623 break;
624 case EVENT_TYPE_DEV_TAB_ERR:
625 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
626 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700627 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200628 address, flags);
629 break;
630 case EVENT_TYPE_PAGE_TAB_ERR:
631 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
632 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700633 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200634 domid, address, flags);
635 break;
636 case EVENT_TYPE_ILL_CMD:
637 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200638 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200639 break;
640 case EVENT_TYPE_CMD_HARD_ERR:
641 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
642 "flags=0x%04x]\n", address, flags);
643 break;
644 case EVENT_TYPE_IOTLB_INV_TO:
645 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
646 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700647 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200648 address);
649 break;
650 case EVENT_TYPE_INV_DEV_REQ:
651 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
652 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700653 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200654 address, flags);
655 break;
656 default:
657 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
658 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200659
660 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200661}
662
663static void iommu_poll_events(struct amd_iommu *iommu)
664{
665 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200666
667 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
668 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
669
670 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200671 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200672 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
673 }
674
675 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200676}
677
Joerg Roedeleee53532012-06-01 15:20:23 +0200678static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679{
680 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100681
Joerg Roedel399be2f2011-12-01 16:53:47 +0100682 INC_STATS_COUNTER(pri_requests);
683
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100684 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
685 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
686 return;
687 }
688
689 fault.address = raw[1];
690 fault.pasid = PPR_PASID(raw[0]);
691 fault.device_id = PPR_DEVID(raw[0]);
692 fault.tag = PPR_TAG(raw[0]);
693 fault.flags = PPR_FLAGS(raw[0]);
694
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100695 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
696}
697
698static void iommu_poll_ppr_log(struct amd_iommu *iommu)
699{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100700 u32 head, tail;
701
702 if (iommu->ppr_log == NULL)
703 return;
704
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100705 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
706 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
707
708 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200709 volatile u64 *raw;
710 u64 entry[2];
711 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100712
Joerg Roedeleee53532012-06-01 15:20:23 +0200713 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100714
Joerg Roedeleee53532012-06-01 15:20:23 +0200715 /*
716 * Hardware bug: Interrupt may arrive before the entry is
717 * written to memory. If this happens we need to wait for the
718 * entry to arrive.
719 */
720 for (i = 0; i < LOOP_TIMEOUT; ++i) {
721 if (PPR_REQ_TYPE(raw[0]) != 0)
722 break;
723 udelay(1);
724 }
725
726 /* Avoid memcpy function-call overhead */
727 entry[0] = raw[0];
728 entry[1] = raw[1];
729
730 /*
731 * To detect the hardware bug we need to clear the entry
732 * back to zero.
733 */
734 raw[0] = raw[1] = 0UL;
735
736 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100737 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
738 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200739
Joerg Roedeleee53532012-06-01 15:20:23 +0200740 /* Handle PPR entry */
741 iommu_handle_ppr_entry(iommu, entry);
742
Joerg Roedeleee53532012-06-01 15:20:23 +0200743 /* Refresh ring-buffer information */
744 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100745 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
746 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100747}
748
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200749irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200750{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500751 struct amd_iommu *iommu = (struct amd_iommu *) data;
752 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200753
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500754 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
755 /* Enable EVT and PPR interrupts again */
756 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
757 iommu->mmio_base + MMIO_STATUS_OFFSET);
758
759 if (status & MMIO_STATUS_EVT_INT_MASK) {
760 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
761 iommu_poll_events(iommu);
762 }
763
764 if (status & MMIO_STATUS_PPR_INT_MASK) {
765 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
766 iommu_poll_ppr_log(iommu);
767 }
768
769 /*
770 * Hardware bug: ERBT1312
771 * When re-enabling interrupt (by writing 1
772 * to clear the bit), the hardware might also try to set
773 * the interrupt bit in the event status register.
774 * In this scenario, the bit will be set, and disable
775 * subsequent interrupts.
776 *
777 * Workaround: The IOMMU driver should read back the
778 * status register and check if the interrupt bits are cleared.
779 * If not, driver will need to go through the interrupt handler
780 * again and re-clear the bits
781 */
782 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100783 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200784 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200785}
786
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200787irqreturn_t amd_iommu_int_handler(int irq, void *data)
788{
789 return IRQ_WAKE_THREAD;
790}
791
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200792/****************************************************************************
793 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200794 * IOMMU command queuing functions
795 *
796 ****************************************************************************/
797
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200798static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200799{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200800 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200801
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200802 while (*sem == 0 && i < LOOP_TIMEOUT) {
803 udelay(1);
804 i += 1;
805 }
806
807 if (i == LOOP_TIMEOUT) {
808 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
809 return -EIO;
810 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200811
812 return 0;
813}
814
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200815static void copy_cmd_to_buffer(struct amd_iommu *iommu,
816 struct iommu_cmd *cmd,
817 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200818{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200819 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200820
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200821 target = iommu->cmd_buf + tail;
822 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200823
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200824 /* Copy command to buffer */
825 memcpy(target, cmd, sizeof(*cmd));
826
827 /* Tell the IOMMU about it */
828 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
829}
830
Joerg Roedel815b33f2011-04-06 17:26:49 +0200831static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200832{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200833 WARN_ON(address & 0x7ULL);
834
Joerg Roedelded46732011-04-06 10:53:48 +0200835 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200836 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
837 cmd->data[1] = upper_32_bits(__pa(address));
838 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200839 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
840}
841
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200842static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
843{
844 memset(cmd, 0, sizeof(*cmd));
845 cmd->data[0] = devid;
846 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
847}
848
Joerg Roedel11b64022011-04-06 11:49:28 +0200849static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
850 size_t size, u16 domid, int pde)
851{
852 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100853 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200854
855 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100856 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200857
858 if (pages > 1) {
859 /*
860 * If we have to flush more than one page, flush all
861 * TLB entries for this domain
862 */
863 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100864 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200865 }
866
867 address &= PAGE_MASK;
868
869 memset(cmd, 0, sizeof(*cmd));
870 cmd->data[1] |= domid;
871 cmd->data[2] = lower_32_bits(address);
872 cmd->data[3] = upper_32_bits(address);
873 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
874 if (s) /* size bit - we flush more than one 4kb page */
875 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200876 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200877 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
878}
879
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200880static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
881 u64 address, size_t size)
882{
883 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100884 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200885
886 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100887 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200888
889 if (pages > 1) {
890 /*
891 * If we have to flush more than one page, flush all
892 * TLB entries for this domain
893 */
894 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100895 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200896 }
897
898 address &= PAGE_MASK;
899
900 memset(cmd, 0, sizeof(*cmd));
901 cmd->data[0] = devid;
902 cmd->data[0] |= (qdep & 0xff) << 24;
903 cmd->data[1] = devid;
904 cmd->data[2] = lower_32_bits(address);
905 cmd->data[3] = upper_32_bits(address);
906 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
907 if (s)
908 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
909}
910
Joerg Roedel22e266c2011-11-21 15:59:08 +0100911static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
912 u64 address, bool size)
913{
914 memset(cmd, 0, sizeof(*cmd));
915
916 address &= ~(0xfffULL);
917
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600918 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100919 cmd->data[1] = domid;
920 cmd->data[2] = lower_32_bits(address);
921 cmd->data[3] = upper_32_bits(address);
922 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
923 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
924 if (size)
925 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
926 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
927}
928
929static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
930 int qdep, u64 address, bool size)
931{
932 memset(cmd, 0, sizeof(*cmd));
933
934 address &= ~(0xfffULL);
935
936 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600937 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100938 cmd->data[0] |= (qdep & 0xff) << 24;
939 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600940 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100941 cmd->data[2] = lower_32_bits(address);
942 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
943 cmd->data[3] = upper_32_bits(address);
944 if (size)
945 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
946 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
947}
948
Joerg Roedelc99afa22011-11-21 18:19:25 +0100949static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
950 int status, int tag, bool gn)
951{
952 memset(cmd, 0, sizeof(*cmd));
953
954 cmd->data[0] = devid;
955 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600956 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100957 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
958 }
959 cmd->data[3] = tag & 0x1ff;
960 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
961
962 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
963}
964
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200965static void build_inv_all(struct iommu_cmd *cmd)
966{
967 memset(cmd, 0, sizeof(*cmd));
968 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200969}
970
Joerg Roedel7ef27982012-06-21 16:46:04 +0200971static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
972{
973 memset(cmd, 0, sizeof(*cmd));
974 cmd->data[0] = devid;
975 CMD_SET_TYPE(cmd, CMD_INV_IRT);
976}
977
Joerg Roedel431b2a22008-07-11 17:14:22 +0200978/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200979 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200980 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200981 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200982static int iommu_queue_command_sync(struct amd_iommu *iommu,
983 struct iommu_cmd *cmd,
984 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200985{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200986 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200987 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200988
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200989 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100990
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200991again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200992 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200993
994 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
995 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
996 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
997 left = (head - next_tail) % iommu->cmd_buf_size;
998
999 if (left <= 2) {
1000 struct iommu_cmd sync_cmd;
1001 volatile u64 sem = 0;
1002 int ret;
1003
1004 build_completion_wait(&sync_cmd, (u64)&sem);
1005 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
1006
1007 spin_unlock_irqrestore(&iommu->lock, flags);
1008
1009 if ((ret = wait_on_sem(&sem)) != 0)
1010 return ret;
1011
1012 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001013 }
1014
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001015 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001016
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001017 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001018 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001019
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001020 spin_unlock_irqrestore(&iommu->lock, flags);
1021
Joerg Roedel815b33f2011-04-06 17:26:49 +02001022 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001023}
1024
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001025static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1026{
1027 return iommu_queue_command_sync(iommu, cmd, true);
1028}
1029
Joerg Roedel8d201962008-12-02 20:34:41 +01001030/*
1031 * This function queues a completion wait command into the command
1032 * buffer of an IOMMU
1033 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001034static int iommu_completion_wait(struct amd_iommu *iommu)
1035{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001036 struct iommu_cmd cmd;
1037 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001038 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001039
1040 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001041 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001042
Joerg Roedel815b33f2011-04-06 17:26:49 +02001043 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001044
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001045 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001046 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001047 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001048
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001049 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001050}
1051
Joerg Roedeld8c13082011-04-06 18:51:26 +02001052static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001053{
1054 struct iommu_cmd cmd;
1055
Joerg Roedeld8c13082011-04-06 18:51:26 +02001056 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001057
Joerg Roedeld8c13082011-04-06 18:51:26 +02001058 return iommu_queue_command(iommu, &cmd);
1059}
1060
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001061static void iommu_flush_dte_all(struct amd_iommu *iommu)
1062{
1063 u32 devid;
1064
1065 for (devid = 0; devid <= 0xffff; ++devid)
1066 iommu_flush_dte(iommu, devid);
1067
1068 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001069}
1070
1071/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001072 * This function uses heavy locking and may disable irqs for some time. But
1073 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001074 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001075static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001076{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001077 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001078
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001079 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1080 struct iommu_cmd cmd;
1081 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1082 dom_id, 1);
1083 iommu_queue_command(iommu, &cmd);
1084 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001085
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001086 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001087}
1088
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001089static void iommu_flush_all(struct amd_iommu *iommu)
1090{
1091 struct iommu_cmd cmd;
1092
1093 build_inv_all(&cmd);
1094
1095 iommu_queue_command(iommu, &cmd);
1096 iommu_completion_wait(iommu);
1097}
1098
Joerg Roedel7ef27982012-06-21 16:46:04 +02001099static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1100{
1101 struct iommu_cmd cmd;
1102
1103 build_inv_irt(&cmd, devid);
1104
1105 iommu_queue_command(iommu, &cmd);
1106}
1107
1108static void iommu_flush_irt_all(struct amd_iommu *iommu)
1109{
1110 u32 devid;
1111
1112 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1113 iommu_flush_irt(iommu, devid);
1114
1115 iommu_completion_wait(iommu);
1116}
1117
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001118void iommu_flush_all_caches(struct amd_iommu *iommu)
1119{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001120 if (iommu_feature(iommu, FEATURE_IA)) {
1121 iommu_flush_all(iommu);
1122 } else {
1123 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001124 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001125 iommu_flush_tlb_all(iommu);
1126 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001127}
1128
Joerg Roedel431b2a22008-07-11 17:14:22 +02001129/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001130 * Command send function for flushing on-device TLB
1131 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001132static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1133 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001134{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001135 struct amd_iommu *iommu;
1136 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001137 int qdep;
1138
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001139 qdep = dev_data->ats.qdep;
1140 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001141
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001142 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001143
1144 return iommu_queue_command(iommu, &cmd);
1145}
1146
1147/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001148 * Command send function for invalidating a device table entry
1149 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001150static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001151{
1152 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001153 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001154
Joerg Roedel6c542042011-06-09 17:07:31 +02001155 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001156
Joerg Roedelf62dda62011-06-09 12:55:35 +02001157 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001158 if (ret)
1159 return ret;
1160
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001161 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001162 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001163
1164 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001165}
1166
Joerg Roedel431b2a22008-07-11 17:14:22 +02001167/*
1168 * TLB invalidation function which is called from the mapping functions.
1169 * It invalidates a single PTE if the range to flush is within a single
1170 * page. Otherwise it flushes the whole TLB of the IOMMU.
1171 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001172static void __domain_flush_pages(struct protection_domain *domain,
1173 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001174{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001175 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001176 struct iommu_cmd cmd;
1177 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001178
Joerg Roedel11b64022011-04-06 11:49:28 +02001179 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001180
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001181 for (i = 0; i < amd_iommus_present; ++i) {
1182 if (!domain->dev_iommu[i])
1183 continue;
1184
1185 /*
1186 * Devices of this domain are behind this IOMMU
1187 * We need a TLB flush
1188 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001189 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001190 }
1191
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001192 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001193
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001194 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001195 continue;
1196
Joerg Roedel6c542042011-06-09 17:07:31 +02001197 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001198 }
1199
Joerg Roedel11b64022011-04-06 11:49:28 +02001200 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001201}
1202
Joerg Roedel17b124b2011-04-06 18:01:35 +02001203static void domain_flush_pages(struct protection_domain *domain,
1204 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001205{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001206 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001207}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001208
Joerg Roedel1c655772008-09-04 18:40:05 +02001209/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001210static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001211{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001212 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001213}
1214
Chris Wright42a49f92009-06-15 15:42:00 +02001215/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001216static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001217{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001218 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1219}
1220
1221static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001222{
1223 int i;
1224
1225 for (i = 0; i < amd_iommus_present; ++i) {
1226 if (!domain->dev_iommu[i])
1227 continue;
1228
1229 /*
1230 * Devices of this domain are behind this IOMMU
1231 * We need to wait for completion of all commands.
1232 */
1233 iommu_completion_wait(amd_iommus[i]);
1234 }
1235}
1236
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001237
Joerg Roedel43f49602008-12-02 21:01:12 +01001238/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001239 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001240 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001241static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001242{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001243 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001244
1245 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001246 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001247}
1248
Joerg Roedel431b2a22008-07-11 17:14:22 +02001249/****************************************************************************
1250 *
1251 * The functions below are used the create the page table mappings for
1252 * unity mapped regions.
1253 *
1254 ****************************************************************************/
1255
1256/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001257 * This function is used to add another level to an IO page table. Adding
1258 * another level increases the size of the address space by 9 bits to a size up
1259 * to 64 bits.
1260 */
1261static bool increase_address_space(struct protection_domain *domain,
1262 gfp_t gfp)
1263{
1264 u64 *pte;
1265
1266 if (domain->mode == PAGE_MODE_6_LEVEL)
1267 /* address space already 64 bit large */
1268 return false;
1269
1270 pte = (void *)get_zeroed_page(gfp);
1271 if (!pte)
1272 return false;
1273
1274 *pte = PM_LEVEL_PDE(domain->mode,
1275 virt_to_phys(domain->pt_root));
1276 domain->pt_root = pte;
1277 domain->mode += 1;
1278 domain->updated = true;
1279
1280 return true;
1281}
1282
1283static u64 *alloc_pte(struct protection_domain *domain,
1284 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001285 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001286 u64 **pte_page,
1287 gfp_t gfp)
1288{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001289 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001290 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001291
1292 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001293
1294 while (address > PM_LEVEL_SIZE(domain->mode))
1295 increase_address_space(domain, gfp);
1296
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001297 level = domain->mode - 1;
1298 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1299 address = PAGE_SIZE_ALIGN(address, page_size);
1300 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001301
1302 while (level > end_lvl) {
1303 if (!IOMMU_PTE_PRESENT(*pte)) {
1304 page = (u64 *)get_zeroed_page(gfp);
1305 if (!page)
1306 return NULL;
1307 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1308 }
1309
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001310 /* No level skipping support yet */
1311 if (PM_PTE_LEVEL(*pte) != level)
1312 return NULL;
1313
Joerg Roedel308973d2009-11-24 17:43:32 +01001314 level -= 1;
1315
1316 pte = IOMMU_PTE_PAGE(*pte);
1317
1318 if (pte_page && level == end_lvl)
1319 *pte_page = pte;
1320
1321 pte = &pte[PM_LEVEL_INDEX(level, address)];
1322 }
1323
1324 return pte;
1325}
1326
1327/*
1328 * This function checks if there is a PTE for a given dma address. If
1329 * there is one, it returns the pointer to it.
1330 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001331static u64 *fetch_pte(struct protection_domain *domain,
1332 unsigned long address,
1333 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001334{
1335 int level;
1336 u64 *pte;
1337
Joerg Roedel24cd7722010-01-19 17:27:39 +01001338 if (address > PM_LEVEL_SIZE(domain->mode))
1339 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001340
Joerg Roedel3039ca12015-04-01 14:58:48 +02001341 level = domain->mode - 1;
1342 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1343 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001344
1345 while (level > 0) {
1346
1347 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001348 if (!IOMMU_PTE_PRESENT(*pte))
1349 return NULL;
1350
Joerg Roedel24cd7722010-01-19 17:27:39 +01001351 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001352 if (PM_PTE_LEVEL(*pte) == 7 ||
1353 PM_PTE_LEVEL(*pte) == 0)
1354 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001355
1356 /* No level skipping support yet */
1357 if (PM_PTE_LEVEL(*pte) != level)
1358 return NULL;
1359
Joerg Roedel308973d2009-11-24 17:43:32 +01001360 level -= 1;
1361
Joerg Roedel24cd7722010-01-19 17:27:39 +01001362 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001363 pte = IOMMU_PTE_PAGE(*pte);
1364 pte = &pte[PM_LEVEL_INDEX(level, address)];
1365 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1366 }
1367
1368 if (PM_PTE_LEVEL(*pte) == 0x07) {
1369 unsigned long pte_mask;
1370
1371 /*
1372 * If we have a series of large PTEs, make
1373 * sure to return a pointer to the first one.
1374 */
1375 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1376 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1377 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001378 }
1379
1380 return pte;
1381}
1382
1383/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001384 * Generic mapping functions. It maps a physical address into a DMA
1385 * address space. It allocates the page table pages if necessary.
1386 * In the future it can be extended to a generic mapping function
1387 * supporting all features of AMD IOMMU page tables like level skipping
1388 * and full 64 bit address spaces.
1389 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001390static int iommu_map_page(struct protection_domain *dom,
1391 unsigned long bus_addr,
1392 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001393 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001394 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001395{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001396 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001397 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001398
Joerg Roedeld4b03662015-04-01 14:58:52 +02001399 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1400 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1401
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001402 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001403 return -EINVAL;
1404
Joerg Roedeld4b03662015-04-01 14:58:52 +02001405 count = PAGE_SIZE_PTE_COUNT(page_size);
1406 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001407
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001408 if (!pte)
1409 return -ENOMEM;
1410
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001411 for (i = 0; i < count; ++i)
1412 if (IOMMU_PTE_PRESENT(pte[i]))
1413 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001414
Joerg Roedeld4b03662015-04-01 14:58:52 +02001415 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001416 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1417 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1418 } else
1419 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1420
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001421 if (prot & IOMMU_PROT_IR)
1422 __pte |= IOMMU_PTE_IR;
1423 if (prot & IOMMU_PROT_IW)
1424 __pte |= IOMMU_PTE_IW;
1425
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001426 for (i = 0; i < count; ++i)
1427 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001428
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001429 update_domain(dom);
1430
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001431 return 0;
1432}
1433
Joerg Roedel24cd7722010-01-19 17:27:39 +01001434static unsigned long iommu_unmap_page(struct protection_domain *dom,
1435 unsigned long bus_addr,
1436 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001437{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001438 unsigned long long unmapped;
1439 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001440 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001441
Joerg Roedel24cd7722010-01-19 17:27:39 +01001442 BUG_ON(!is_power_of_2(page_size));
1443
1444 unmapped = 0;
1445
1446 while (unmapped < page_size) {
1447
Joerg Roedel71b390e2015-04-01 14:58:49 +02001448 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001449
Joerg Roedel71b390e2015-04-01 14:58:49 +02001450 if (pte) {
1451 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001452
Joerg Roedel71b390e2015-04-01 14:58:49 +02001453 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001454 for (i = 0; i < count; i++)
1455 pte[i] = 0ULL;
1456 }
1457
1458 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1459 unmapped += unmap_size;
1460 }
1461
Alex Williamson60d0ca32013-06-21 14:33:19 -06001462 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001463
1464 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001465}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001466
Joerg Roedel431b2a22008-07-11 17:14:22 +02001467/*
1468 * This function checks if a specific unity mapping entry is needed for
1469 * this specific IOMMU.
1470 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001471static int iommu_for_unity_map(struct amd_iommu *iommu,
1472 struct unity_map_entry *entry)
1473{
1474 u16 bdf, i;
1475
1476 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1477 bdf = amd_iommu_alias_table[i];
1478 if (amd_iommu_rlookup_table[bdf] == iommu)
1479 return 1;
1480 }
1481
1482 return 0;
1483}
1484
Joerg Roedel431b2a22008-07-11 17:14:22 +02001485/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001486 * This function actually applies the mapping to the page table of the
1487 * dma_ops domain.
1488 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001489static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1490 struct unity_map_entry *e)
1491{
1492 u64 addr;
1493 int ret;
1494
1495 for (addr = e->address_start; addr < e->address_end;
1496 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001497 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001498 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001499 if (ret)
1500 return ret;
1501 /*
1502 * if unity mapping is in aperture range mark the page
1503 * as allocated in the aperture
1504 */
1505 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001506 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001507 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001508 }
1509
1510 return 0;
1511}
1512
Joerg Roedel431b2a22008-07-11 17:14:22 +02001513/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001514 * Init the unity mappings for a specific IOMMU in the system
1515 *
1516 * Basically iterates over all unity mapping entries and applies them to
1517 * the default domain DMA of that IOMMU if necessary.
1518 */
1519static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1520{
1521 struct unity_map_entry *entry;
1522 int ret;
1523
1524 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1525 if (!iommu_for_unity_map(iommu, entry))
1526 continue;
1527 ret = dma_ops_unity_map(iommu->default_dom, entry);
1528 if (ret)
1529 return ret;
1530 }
1531
1532 return 0;
1533}
1534
1535/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001536 * Inits the unity mappings required for a specific device
1537 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001538static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1539 u16 devid)
1540{
1541 struct unity_map_entry *e;
1542 int ret;
1543
1544 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1545 if (!(devid >= e->devid_start && devid <= e->devid_end))
1546 continue;
1547 ret = dma_ops_unity_map(dma_dom, e);
1548 if (ret)
1549 return ret;
1550 }
1551
1552 return 0;
1553}
1554
Joerg Roedel431b2a22008-07-11 17:14:22 +02001555/****************************************************************************
1556 *
1557 * The next functions belong to the address allocator for the dma_ops
1558 * interface functions. They work like the allocators in the other IOMMU
1559 * drivers. Its basically a bitmap which marks the allocated pages in
1560 * the aperture. Maybe it could be enhanced in the future to a more
1561 * efficient allocator.
1562 *
1563 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001564
Joerg Roedel431b2a22008-07-11 17:14:22 +02001565/*
Joerg Roedel384de722009-05-15 12:30:05 +02001566 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001567 *
1568 * called with domain->lock held
1569 */
Joerg Roedel384de722009-05-15 12:30:05 +02001570
Joerg Roedel9cabe892009-05-18 16:38:55 +02001571/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001572 * Used to reserve address ranges in the aperture (e.g. for exclusion
1573 * ranges.
1574 */
1575static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1576 unsigned long start_page,
1577 unsigned int pages)
1578{
1579 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1580
1581 if (start_page + pages > last_page)
1582 pages = last_page - start_page;
1583
1584 for (i = start_page; i < start_page + pages; ++i) {
1585 int index = i / APERTURE_RANGE_PAGES;
1586 int page = i % APERTURE_RANGE_PAGES;
1587 __set_bit(page, dom->aperture[index]->bitmap);
1588 }
1589}
1590
1591/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001592 * This function is used to add a new aperture range to an existing
1593 * aperture in case of dma_ops domain allocation or address allocation
1594 * failure.
1595 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001596static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001597 bool populate, gfp_t gfp)
1598{
1599 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001600 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001601 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001602
Joerg Roedelf5e97052009-05-22 12:31:53 +02001603#ifdef CONFIG_IOMMU_STRESS
1604 populate = false;
1605#endif
1606
Joerg Roedel9cabe892009-05-18 16:38:55 +02001607 if (index >= APERTURE_MAX_RANGES)
1608 return -ENOMEM;
1609
1610 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1611 if (!dma_dom->aperture[index])
1612 return -ENOMEM;
1613
1614 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1615 if (!dma_dom->aperture[index]->bitmap)
1616 goto out_free;
1617
1618 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1619
1620 if (populate) {
1621 unsigned long address = dma_dom->aperture_size;
1622 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1623 u64 *pte, *pte_page;
1624
1625 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001626 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001627 &pte_page, gfp);
1628 if (!pte)
1629 goto out_free;
1630
1631 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1632
1633 address += APERTURE_RANGE_SIZE / 64;
1634 }
1635 }
1636
Joerg Roedel17f5b562011-07-06 17:14:44 +02001637 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001638 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1639
Joerg Roedel17f5b562011-07-06 17:14:44 +02001640 /* Reserve address range used for MSI messages */
1641 if (old_size < MSI_ADDR_BASE_LO &&
1642 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1643 unsigned long spage;
1644 int pages;
1645
1646 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1647 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1648
1649 dma_ops_reserve_addresses(dma_dom, spage, pages);
1650 }
1651
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001652 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001653 for_each_iommu(iommu) {
1654 if (iommu->exclusion_start &&
1655 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1656 && iommu->exclusion_start < dma_dom->aperture_size) {
1657 unsigned long startpage;
1658 int pages = iommu_num_pages(iommu->exclusion_start,
1659 iommu->exclusion_length,
1660 PAGE_SIZE);
1661 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1662 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1663 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001664 }
1665
1666 /*
1667 * Check for areas already mapped as present in the new aperture
1668 * range and mark those pages as reserved in the allocator. Such
1669 * mappings may already exist as a result of requested unity
1670 * mappings for devices.
1671 */
1672 for (i = dma_dom->aperture[index]->offset;
1673 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001674 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001675 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001676 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1677 continue;
1678
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001679 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1680 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001681 }
1682
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001683 update_domain(&dma_dom->domain);
1684
Joerg Roedel9cabe892009-05-18 16:38:55 +02001685 return 0;
1686
1687out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001688 update_domain(&dma_dom->domain);
1689
Joerg Roedel9cabe892009-05-18 16:38:55 +02001690 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1691
1692 kfree(dma_dom->aperture[index]);
1693 dma_dom->aperture[index] = NULL;
1694
1695 return -ENOMEM;
1696}
1697
Joerg Roedel384de722009-05-15 12:30:05 +02001698static unsigned long dma_ops_area_alloc(struct device *dev,
1699 struct dma_ops_domain *dom,
1700 unsigned int pages,
1701 unsigned long align_mask,
1702 u64 dma_mask,
1703 unsigned long start)
1704{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001705 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001706 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1707 int i = start >> APERTURE_RANGE_SHIFT;
1708 unsigned long boundary_size;
1709 unsigned long address = -1;
1710 unsigned long limit;
1711
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001712 next_bit >>= PAGE_SHIFT;
1713
Joerg Roedel384de722009-05-15 12:30:05 +02001714 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1715 PAGE_SIZE) >> PAGE_SHIFT;
1716
1717 for (;i < max_index; ++i) {
1718 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1719
1720 if (dom->aperture[i]->offset >= dma_mask)
1721 break;
1722
1723 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1724 dma_mask >> PAGE_SHIFT);
1725
1726 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1727 limit, next_bit, pages, 0,
1728 boundary_size, align_mask);
1729 if (address != -1) {
1730 address = dom->aperture[i]->offset +
1731 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001732 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001733 break;
1734 }
1735
1736 next_bit = 0;
1737 }
1738
1739 return address;
1740}
1741
Joerg Roedeld3086442008-06-26 21:27:57 +02001742static unsigned long dma_ops_alloc_addresses(struct device *dev,
1743 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001744 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001745 unsigned long align_mask,
1746 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001747{
Joerg Roedeld3086442008-06-26 21:27:57 +02001748 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001749
Joerg Roedelfe16f082009-05-22 12:27:53 +02001750#ifdef CONFIG_IOMMU_STRESS
1751 dom->next_address = 0;
1752 dom->need_flush = true;
1753#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001754
Joerg Roedel384de722009-05-15 12:30:05 +02001755 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001756 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001757
Joerg Roedel1c655772008-09-04 18:40:05 +02001758 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001759 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001760 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1761 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001762 dom->need_flush = true;
1763 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001764
Joerg Roedel384de722009-05-15 12:30:05 +02001765 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001766 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001767
1768 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1769
1770 return address;
1771}
1772
Joerg Roedel431b2a22008-07-11 17:14:22 +02001773/*
1774 * The address free function.
1775 *
1776 * called with domain->lock held
1777 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001778static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1779 unsigned long address,
1780 unsigned int pages)
1781{
Joerg Roedel384de722009-05-15 12:30:05 +02001782 unsigned i = address >> APERTURE_RANGE_SHIFT;
1783 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001784
Joerg Roedel384de722009-05-15 12:30:05 +02001785 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1786
Joerg Roedel47bccd62009-05-22 12:40:54 +02001787#ifdef CONFIG_IOMMU_STRESS
1788 if (i < 4)
1789 return;
1790#endif
1791
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001792 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001793 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001794
1795 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001796
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001797 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001798
Joerg Roedeld3086442008-06-26 21:27:57 +02001799}
1800
Joerg Roedel431b2a22008-07-11 17:14:22 +02001801/****************************************************************************
1802 *
1803 * The next functions belong to the domain allocation. A domain is
1804 * allocated for every IOMMU as the default domain. If device isolation
1805 * is enabled, every device get its own domain. The most important thing
1806 * about domains is the page table mapping the DMA address space they
1807 * contain.
1808 *
1809 ****************************************************************************/
1810
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001811/*
1812 * This function adds a protection domain to the global protection domain list
1813 */
1814static void add_domain_to_list(struct protection_domain *domain)
1815{
1816 unsigned long flags;
1817
1818 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1819 list_add(&domain->list, &amd_iommu_pd_list);
1820 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1821}
1822
1823/*
1824 * This function removes a protection domain to the global
1825 * protection domain list
1826 */
1827static void del_domain_from_list(struct protection_domain *domain)
1828{
1829 unsigned long flags;
1830
1831 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1832 list_del(&domain->list);
1833 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1834}
1835
Joerg Roedelec487d12008-06-26 21:27:58 +02001836static u16 domain_id_alloc(void)
1837{
1838 unsigned long flags;
1839 int id;
1840
1841 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1842 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1843 BUG_ON(id == 0);
1844 if (id > 0 && id < MAX_DOMAIN_ID)
1845 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1846 else
1847 id = 0;
1848 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1849
1850 return id;
1851}
1852
Joerg Roedela2acfb72008-12-02 18:28:53 +01001853static void domain_id_free(int id)
1854{
1855 unsigned long flags;
1856
1857 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1858 if (id > 0 && id < MAX_DOMAIN_ID)
1859 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1860 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1861}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001862
Joerg Roedel5c34c402013-06-20 20:22:58 +02001863#define DEFINE_FREE_PT_FN(LVL, FN) \
1864static void free_pt_##LVL (unsigned long __pt) \
1865{ \
1866 unsigned long p; \
1867 u64 *pt; \
1868 int i; \
1869 \
1870 pt = (u64 *)__pt; \
1871 \
1872 for (i = 0; i < 512; ++i) { \
1873 if (!IOMMU_PTE_PRESENT(pt[i])) \
1874 continue; \
1875 \
1876 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1877 FN(p); \
1878 } \
1879 free_page((unsigned long)pt); \
1880}
1881
1882DEFINE_FREE_PT_FN(l2, free_page)
1883DEFINE_FREE_PT_FN(l3, free_pt_l2)
1884DEFINE_FREE_PT_FN(l4, free_pt_l3)
1885DEFINE_FREE_PT_FN(l5, free_pt_l4)
1886DEFINE_FREE_PT_FN(l6, free_pt_l5)
1887
Joerg Roedel86db2e52008-12-02 18:20:21 +01001888static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001889{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001890 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001891
Joerg Roedel5c34c402013-06-20 20:22:58 +02001892 switch (domain->mode) {
1893 case PAGE_MODE_NONE:
1894 break;
1895 case PAGE_MODE_1_LEVEL:
1896 free_page(root);
1897 break;
1898 case PAGE_MODE_2_LEVEL:
1899 free_pt_l2(root);
1900 break;
1901 case PAGE_MODE_3_LEVEL:
1902 free_pt_l3(root);
1903 break;
1904 case PAGE_MODE_4_LEVEL:
1905 free_pt_l4(root);
1906 break;
1907 case PAGE_MODE_5_LEVEL:
1908 free_pt_l5(root);
1909 break;
1910 case PAGE_MODE_6_LEVEL:
1911 free_pt_l6(root);
1912 break;
1913 default:
1914 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001915 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001916}
1917
Joerg Roedelb16137b2011-11-21 16:50:23 +01001918static void free_gcr3_tbl_level1(u64 *tbl)
1919{
1920 u64 *ptr;
1921 int i;
1922
1923 for (i = 0; i < 512; ++i) {
1924 if (!(tbl[i] & GCR3_VALID))
1925 continue;
1926
1927 ptr = __va(tbl[i] & PAGE_MASK);
1928
1929 free_page((unsigned long)ptr);
1930 }
1931}
1932
1933static void free_gcr3_tbl_level2(u64 *tbl)
1934{
1935 u64 *ptr;
1936 int i;
1937
1938 for (i = 0; i < 512; ++i) {
1939 if (!(tbl[i] & GCR3_VALID))
1940 continue;
1941
1942 ptr = __va(tbl[i] & PAGE_MASK);
1943
1944 free_gcr3_tbl_level1(ptr);
1945 }
1946}
1947
Joerg Roedel52815b72011-11-17 17:24:28 +01001948static void free_gcr3_table(struct protection_domain *domain)
1949{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001950 if (domain->glx == 2)
1951 free_gcr3_tbl_level2(domain->gcr3_tbl);
1952 else if (domain->glx == 1)
1953 free_gcr3_tbl_level1(domain->gcr3_tbl);
1954 else if (domain->glx != 0)
1955 BUG();
1956
Joerg Roedel52815b72011-11-17 17:24:28 +01001957 free_page((unsigned long)domain->gcr3_tbl);
1958}
1959
Joerg Roedel431b2a22008-07-11 17:14:22 +02001960/*
1961 * Free a domain, only used if something went wrong in the
1962 * allocation path and we need to free an already allocated page table
1963 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001964static void dma_ops_domain_free(struct dma_ops_domain *dom)
1965{
Joerg Roedel384de722009-05-15 12:30:05 +02001966 int i;
1967
Joerg Roedelec487d12008-06-26 21:27:58 +02001968 if (!dom)
1969 return;
1970
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001971 del_domain_from_list(&dom->domain);
1972
Joerg Roedel86db2e52008-12-02 18:20:21 +01001973 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001974
Joerg Roedel384de722009-05-15 12:30:05 +02001975 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1976 if (!dom->aperture[i])
1977 continue;
1978 free_page((unsigned long)dom->aperture[i]->bitmap);
1979 kfree(dom->aperture[i]);
1980 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001981
1982 kfree(dom);
1983}
1984
Joerg Roedel431b2a22008-07-11 17:14:22 +02001985/*
1986 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001987 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001988 * structures required for the dma_ops interface
1989 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001990static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001991{
1992 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001993
1994 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1995 if (!dma_dom)
1996 return NULL;
1997
1998 spin_lock_init(&dma_dom->domain.lock);
1999
2000 dma_dom->domain.id = domain_id_alloc();
2001 if (dma_dom->domain.id == 0)
2002 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002003 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02002004 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02002005 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01002006 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02002007 dma_dom->domain.priv = dma_dom;
2008 if (!dma_dom->domain.pt_root)
2009 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002010
Joerg Roedel1c655772008-09-04 18:40:05 +02002011 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02002012 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02002013
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002014 add_domain_to_list(&dma_dom->domain);
2015
Joerg Roedel576175c2009-11-23 19:08:46 +01002016 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02002017 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002018
Joerg Roedel431b2a22008-07-11 17:14:22 +02002019 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02002020 * mark the first page as allocated so we never return 0 as
2021 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02002022 */
Joerg Roedel384de722009-05-15 12:30:05 +02002023 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02002024 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02002025
Joerg Roedelec487d12008-06-26 21:27:58 +02002026
2027 return dma_dom;
2028
2029free_dma_dom:
2030 dma_ops_domain_free(dma_dom);
2031
2032 return NULL;
2033}
2034
Joerg Roedel431b2a22008-07-11 17:14:22 +02002035/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002036 * little helper function to check whether a given protection domain is a
2037 * dma_ops domain
2038 */
2039static bool dma_ops_domain(struct protection_domain *domain)
2040{
2041 return domain->flags & PD_DMA_OPS_MASK;
2042}
2043
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002044static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002045{
Joerg Roedel132bd682011-11-17 14:18:46 +01002046 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002047 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002048
Joerg Roedel132bd682011-11-17 14:18:46 +01002049 if (domain->mode != PAGE_MODE_NONE)
2050 pte_root = virt_to_phys(domain->pt_root);
2051
Joerg Roedel38ddf412008-09-11 10:38:32 +02002052 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2053 << DEV_ENTRY_MODE_SHIFT;
2054 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002055
Joerg Roedelee6c2862011-11-09 12:06:03 +01002056 flags = amd_iommu_dev_table[devid].data[1];
2057
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002058 if (ats)
2059 flags |= DTE_FLAG_IOTLB;
2060
Joerg Roedel52815b72011-11-17 17:24:28 +01002061 if (domain->flags & PD_IOMMUV2_MASK) {
2062 u64 gcr3 = __pa(domain->gcr3_tbl);
2063 u64 glx = domain->glx;
2064 u64 tmp;
2065
2066 pte_root |= DTE_FLAG_GV;
2067 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2068
2069 /* First mask out possible old values for GCR3 table */
2070 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2071 flags &= ~tmp;
2072
2073 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2074 flags &= ~tmp;
2075
2076 /* Encode GCR3 table into DTE */
2077 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2078 pte_root |= tmp;
2079
2080 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2081 flags |= tmp;
2082
2083 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2084 flags |= tmp;
2085 }
2086
Joerg Roedelee6c2862011-11-09 12:06:03 +01002087 flags &= ~(0xffffUL);
2088 flags |= domain->id;
2089
2090 amd_iommu_dev_table[devid].data[1] = flags;
2091 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002092}
2093
Joerg Roedel15898bb2009-11-24 15:39:42 +01002094static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002095{
Joerg Roedel355bf552008-12-08 12:02:41 +01002096 /* remove entry from the device table seen by the hardware */
2097 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2098 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002099
Joerg Roedelc5cca142009-10-09 18:31:20 +02002100 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002101}
2102
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002103static void do_attach(struct iommu_dev_data *dev_data,
2104 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002105{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002106 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002107 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002108
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002109 iommu = amd_iommu_rlookup_table[dev_data->devid];
2110 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002111
2112 /* Update data structures */
2113 dev_data->domain = domain;
2114 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002115 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002116
2117 /* Do reference counting */
2118 domain->dev_iommu[iommu->index] += 1;
2119 domain->dev_cnt += 1;
2120
2121 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002122 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002123}
2124
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002125static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002126{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002127 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002128
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002129 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002130
Joerg Roedelc4596112009-11-20 14:57:32 +01002131 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002132 dev_data->domain->dev_iommu[iommu->index] -= 1;
2133 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002134
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002135 /* Update data structures */
2136 dev_data->domain = NULL;
2137 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002138 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002139
2140 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002141 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002142}
2143
2144/*
2145 * If a device is not yet associated with a domain, this function does
2146 * assigns it visible for the hardware
2147 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002148static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002149 struct protection_domain *domain)
2150{
Joerg Roedel397111a2014-08-05 17:31:51 +02002151 struct iommu_dev_data *head, *entry;
Julia Lawall84fe6c12010-05-27 12:31:51 +02002152 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002153
Joerg Roedel15898bb2009-11-24 15:39:42 +01002154 /* lock domain */
2155 spin_lock(&domain->lock);
2156
Joerg Roedel397111a2014-08-05 17:31:51 +02002157 head = dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002158
Joerg Roedel397111a2014-08-05 17:31:51 +02002159 if (head->alias_data != NULL)
2160 head = head->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002161
Joerg Roedel397111a2014-08-05 17:31:51 +02002162 /* Now we have the root of the alias group, if any */
Joerg Roedel2b02b092011-06-09 17:48:39 +02002163
Joerg Roedel397111a2014-08-05 17:31:51 +02002164 ret = -EBUSY;
2165 if (head->domain != NULL)
2166 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002167
Joerg Roedel397111a2014-08-05 17:31:51 +02002168 /* Attach alias group root */
2169 do_attach(head, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002170
Joerg Roedel397111a2014-08-05 17:31:51 +02002171 /* Attach other devices in the alias group */
2172 list_for_each_entry(entry, &head->alias_list, alias_list)
2173 do_attach(entry, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002174
Julia Lawall84fe6c12010-05-27 12:31:51 +02002175 ret = 0;
2176
2177out_unlock:
2178
Joerg Roedel355bf552008-12-08 12:02:41 +01002179 /* ready */
2180 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002181
Julia Lawall84fe6c12010-05-27 12:31:51 +02002182 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002183}
2184
Joerg Roedel52815b72011-11-17 17:24:28 +01002185
2186static void pdev_iommuv2_disable(struct pci_dev *pdev)
2187{
2188 pci_disable_ats(pdev);
2189 pci_disable_pri(pdev);
2190 pci_disable_pasid(pdev);
2191}
2192
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002193/* FIXME: Change generic reset-function to do the same */
2194static int pri_reset_while_enabled(struct pci_dev *pdev)
2195{
2196 u16 control;
2197 int pos;
2198
Joerg Roedel46277b72011-12-07 14:34:02 +01002199 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002200 if (!pos)
2201 return -EINVAL;
2202
Joerg Roedel46277b72011-12-07 14:34:02 +01002203 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2204 control |= PCI_PRI_CTRL_RESET;
2205 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002206
2207 return 0;
2208}
2209
Joerg Roedel52815b72011-11-17 17:24:28 +01002210static int pdev_iommuv2_enable(struct pci_dev *pdev)
2211{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002212 bool reset_enable;
2213 int reqs, ret;
2214
2215 /* FIXME: Hardcode number of outstanding requests for now */
2216 reqs = 32;
2217 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2218 reqs = 1;
2219 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002220
2221 /* Only allow access to user-accessible pages */
2222 ret = pci_enable_pasid(pdev, 0);
2223 if (ret)
2224 goto out_err;
2225
2226 /* First reset the PRI state of the device */
2227 ret = pci_reset_pri(pdev);
2228 if (ret)
2229 goto out_err;
2230
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002231 /* Enable PRI */
2232 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002233 if (ret)
2234 goto out_err;
2235
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002236 if (reset_enable) {
2237 ret = pri_reset_while_enabled(pdev);
2238 if (ret)
2239 goto out_err;
2240 }
2241
Joerg Roedel52815b72011-11-17 17:24:28 +01002242 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2243 if (ret)
2244 goto out_err;
2245
2246 return 0;
2247
2248out_err:
2249 pci_disable_pri(pdev);
2250 pci_disable_pasid(pdev);
2251
2252 return ret;
2253}
2254
Joerg Roedelc99afa22011-11-21 18:19:25 +01002255/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002256#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002257
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002258static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002259{
Joerg Roedela3b93122012-04-12 12:49:26 +02002260 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002261 int pos;
2262
Joerg Roedel46277b72011-12-07 14:34:02 +01002263 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002264 if (!pos)
2265 return false;
2266
Joerg Roedela3b93122012-04-12 12:49:26 +02002267 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002268
Joerg Roedela3b93122012-04-12 12:49:26 +02002269 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002270}
2271
Joerg Roedel15898bb2009-11-24 15:39:42 +01002272/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002273 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002274 * assigns it visible for the hardware
2275 */
2276static int attach_device(struct device *dev,
2277 struct protection_domain *domain)
2278{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002279 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002280 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002281 unsigned long flags;
2282 int ret;
2283
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002284 dev_data = get_dev_data(dev);
2285
Joerg Roedel52815b72011-11-17 17:24:28 +01002286 if (domain->flags & PD_IOMMUV2_MASK) {
2287 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2288 return -EINVAL;
2289
2290 if (pdev_iommuv2_enable(pdev) != 0)
2291 return -EINVAL;
2292
2293 dev_data->ats.enabled = true;
2294 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002295 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002296 } else if (amd_iommu_iotlb_sup &&
2297 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002298 dev_data->ats.enabled = true;
2299 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2300 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002301
Joerg Roedel15898bb2009-11-24 15:39:42 +01002302 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002303 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002304 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2305
2306 /*
2307 * We might boot into a crash-kernel here. The crashed kernel
2308 * left the caches in the IOMMU dirty. So we have to flush
2309 * here to evict all dirty stuff.
2310 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002311 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002312
2313 return ret;
2314}
2315
2316/*
2317 * Removes a device from a protection domain (unlocked)
2318 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002319static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002320{
Joerg Roedel397111a2014-08-05 17:31:51 +02002321 struct iommu_dev_data *head, *entry;
Joerg Roedel2ca76272010-01-22 16:45:31 +01002322 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002323 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002324
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002325 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002326
Joerg Roedel2ca76272010-01-22 16:45:31 +01002327 domain = dev_data->domain;
2328
2329 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002330
Joerg Roedel397111a2014-08-05 17:31:51 +02002331 head = dev_data;
2332 if (head->alias_data != NULL)
2333 head = head->alias_data;
Joerg Roedel71f77582011-06-09 19:03:15 +02002334
Joerg Roedel397111a2014-08-05 17:31:51 +02002335 list_for_each_entry(entry, &head->alias_list, alias_list)
2336 do_detach(entry);
Joerg Roedel24100052009-11-25 15:59:57 +01002337
Joerg Roedel397111a2014-08-05 17:31:51 +02002338 do_detach(head);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002339
Joerg Roedel2ca76272010-01-22 16:45:31 +01002340 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002341
Joerg Roedel21129f72009-09-01 11:59:42 +02002342 /*
2343 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002344 * passthrough domain if it is detached from any other domain.
2345 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002346 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002347 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002348 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002349 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002350}
2351
2352/*
2353 * Removes a device from a protection domain (with devtable_lock held)
2354 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002355static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002356{
Joerg Roedel52815b72011-11-17 17:24:28 +01002357 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002358 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002359 unsigned long flags;
2360
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002361 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002362 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002363
Joerg Roedel355bf552008-12-08 12:02:41 +01002364 /* lock device table */
2365 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002366 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002367 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002368
Joerg Roedel52815b72011-11-17 17:24:28 +01002369 if (domain->flags & PD_IOMMUV2_MASK)
2370 pdev_iommuv2_disable(to_pci_dev(dev));
2371 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002372 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002373
2374 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002375}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002376
Joerg Roedel15898bb2009-11-24 15:39:42 +01002377/*
2378 * Find out the protection domain structure for a given PCI device. This
2379 * will give us the pointer to the page table root for example.
2380 */
2381static struct protection_domain *domain_for_device(struct device *dev)
2382{
Joerg Roedel71f77582011-06-09 19:03:15 +02002383 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002384 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002385 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002386
Joerg Roedel657cbb62009-11-23 15:26:46 +01002387 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002388
Joerg Roedel2b02b092011-06-09 17:48:39 +02002389 if (dev_data->domain)
2390 return dev_data->domain;
2391
Joerg Roedel71f77582011-06-09 19:03:15 +02002392 if (dev_data->alias_data != NULL) {
2393 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002394
2395 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2396 if (alias_data->domain != NULL) {
2397 __attach_device(dev_data, alias_data->domain);
2398 dom = alias_data->domain;
2399 }
2400 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002401 }
2402
Joerg Roedel15898bb2009-11-24 15:39:42 +01002403 return dom;
2404}
2405
Joerg Roedele275a2a2008-12-10 18:27:25 +01002406static int device_change_notifier(struct notifier_block *nb,
2407 unsigned long action, void *data)
2408{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002409 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002410 struct protection_domain *domain;
2411 struct iommu_dev_data *dev_data;
2412 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002413 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002414 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002415 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002416
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002417 if (!check_device(dev))
2418 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002419
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002420 devid = get_device_id(dev);
2421 iommu = amd_iommu_rlookup_table[devid];
2422 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002423
2424 switch (action) {
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002425 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002426
2427 iommu_init_device(dev);
Alex Williamson25b11ce2014-09-19 10:03:13 -06002428 init_iommu_group(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002429
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002430 /*
2431 * dev_data is still NULL and
2432 * got initialized in iommu_init_device
2433 */
2434 dev_data = get_dev_data(dev);
2435
2436 if (iommu_pass_through || dev_data->iommu_v2) {
2437 dev_data->passthrough = true;
2438 attach_device(dev, pt_domain);
2439 break;
2440 }
2441
Joerg Roedel657cbb62009-11-23 15:26:46 +01002442 domain = domain_for_device(dev);
2443
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002444 /* allocate a protection domain if a device is added */
2445 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002446 if (!dma_domain) {
2447 dma_domain = dma_ops_domain_alloc();
2448 if (!dma_domain)
2449 goto out;
2450 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002451
Joerg Roedelc2a28762013-03-26 22:48:23 +01002452 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2453 list_add_tail(&dma_domain->list, &iommu_pd_list);
2454 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2455 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002456
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002457 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002458
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002459 break;
Joerg Roedel6c5cc802015-04-01 14:58:44 +02002460 case BUS_NOTIFY_REMOVED_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002461
2462 iommu_uninit_device(dev);
2463
Joerg Roedele275a2a2008-12-10 18:27:25 +01002464 default:
2465 goto out;
2466 }
2467
Joerg Roedele275a2a2008-12-10 18:27:25 +01002468 iommu_completion_wait(iommu);
2469
2470out:
2471 return 0;
2472}
2473
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302474static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002475 .notifier_call = device_change_notifier,
2476};
Joerg Roedel355bf552008-12-08 12:02:41 +01002477
Joerg Roedel8638c492009-12-10 11:12:25 +01002478void amd_iommu_init_notifier(void)
2479{
2480 bus_register_notifier(&pci_bus_type, &device_nb);
2481}
2482
Joerg Roedel431b2a22008-07-11 17:14:22 +02002483/*****************************************************************************
2484 *
2485 * The next functions belong to the dma_ops mapping/unmapping code.
2486 *
2487 *****************************************************************************/
2488
2489/*
2490 * In the dma_ops path we only have the struct device. This function
2491 * finds the corresponding IOMMU, the protection domain and the
2492 * requestor id for a given device.
2493 * If the device is not yet associated with a domain this is also done
2494 * in this function.
2495 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002496static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002497{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002499 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002500 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002501
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002502 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002503 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002504
Joerg Roedel94f6d192009-11-24 16:40:02 +01002505 domain = domain_for_device(dev);
2506 if (domain != NULL && !dma_ops_domain(domain))
2507 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002508
Joerg Roedel94f6d192009-11-24 16:40:02 +01002509 if (domain != NULL)
2510 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002511
Frank Arnolddf805ab2012-08-27 19:21:04 +02002512 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002513 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002514 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002515 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2516 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002517 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002518 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002519
Joerg Roedel94f6d192009-11-24 16:40:02 +01002520 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002521}
2522
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002523static void update_device_table(struct protection_domain *domain)
2524{
Joerg Roedel492667d2009-11-27 13:25:47 +01002525 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002526
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002527 list_for_each_entry(dev_data, &domain->dev_list, list)
2528 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002529}
2530
2531static void update_domain(struct protection_domain *domain)
2532{
2533 if (!domain->updated)
2534 return;
2535
2536 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002537
2538 domain_flush_devices(domain);
2539 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002540
2541 domain->updated = false;
2542}
2543
Joerg Roedel431b2a22008-07-11 17:14:22 +02002544/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002545 * This function fetches the PTE for a given address in the aperture
2546 */
2547static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2548 unsigned long address)
2549{
Joerg Roedel384de722009-05-15 12:30:05 +02002550 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002551 u64 *pte, *pte_page;
2552
Joerg Roedel384de722009-05-15 12:30:05 +02002553 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2554 if (!aperture)
2555 return NULL;
2556
2557 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002558 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002559 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002560 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002561 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2562 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002563 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002564
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002565 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002566
2567 return pte;
2568}
2569
2570/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002571 * This is the generic map function. It maps one 4kb page at paddr to
2572 * the given address in the DMA address space for the domain.
2573 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002574static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002575 unsigned long address,
2576 phys_addr_t paddr,
2577 int direction)
2578{
2579 u64 *pte, __pte;
2580
2581 WARN_ON(address > dom->aperture_size);
2582
2583 paddr &= PAGE_MASK;
2584
Joerg Roedel8bda3092009-05-12 12:02:46 +02002585 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002586 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002587 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002588
2589 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2590
2591 if (direction == DMA_TO_DEVICE)
2592 __pte |= IOMMU_PTE_IR;
2593 else if (direction == DMA_FROM_DEVICE)
2594 __pte |= IOMMU_PTE_IW;
2595 else if (direction == DMA_BIDIRECTIONAL)
2596 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2597
2598 WARN_ON(*pte);
2599
2600 *pte = __pte;
2601
2602 return (dma_addr_t)address;
2603}
2604
Joerg Roedel431b2a22008-07-11 17:14:22 +02002605/*
2606 * The generic unmapping function for on page in the DMA address space.
2607 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002608static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002609 unsigned long address)
2610{
Joerg Roedel384de722009-05-15 12:30:05 +02002611 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002612 u64 *pte;
2613
2614 if (address >= dom->aperture_size)
2615 return;
2616
Joerg Roedel384de722009-05-15 12:30:05 +02002617 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2618 if (!aperture)
2619 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002620
Joerg Roedel384de722009-05-15 12:30:05 +02002621 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2622 if (!pte)
2623 return;
2624
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002625 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002626
2627 WARN_ON(!*pte);
2628
2629 *pte = 0ULL;
2630}
2631
Joerg Roedel431b2a22008-07-11 17:14:22 +02002632/*
2633 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002634 * contiguous memory region into DMA address space. It is used by all
2635 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002636 * Must be called with the domain lock held.
2637 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002638static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002639 struct dma_ops_domain *dma_dom,
2640 phys_addr_t paddr,
2641 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002642 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002643 bool align,
2644 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002645{
2646 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002647 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002648 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002649 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002650 int i;
2651
Joerg Roedele3c449f2008-10-15 22:02:11 -07002652 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002653 paddr &= PAGE_MASK;
2654
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002655 INC_STATS_COUNTER(total_map_requests);
2656
Joerg Roedelc1858972008-12-12 15:42:39 +01002657 if (pages > 1)
2658 INC_STATS_COUNTER(cross_page);
2659
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002660 if (align)
2661 align_mask = (1UL << get_order(size)) - 1;
2662
Joerg Roedel11b83882009-05-19 10:23:15 +02002663retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002664 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2665 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002666 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002667 /*
2668 * setting next_address here will let the address
2669 * allocator only scan the new allocated range in the
2670 * first run. This is a small optimization.
2671 */
2672 dma_dom->next_address = dma_dom->aperture_size;
2673
Joerg Roedel576175c2009-11-23 19:08:46 +01002674 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002675 goto out;
2676
2677 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002678 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002679 * allocation again
2680 */
2681 goto retry;
2682 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002683
2684 start = address;
2685 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002686 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002687 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002688 goto out_unmap;
2689
Joerg Roedelcb76c322008-06-26 21:28:00 +02002690 paddr += PAGE_SIZE;
2691 start += PAGE_SIZE;
2692 }
2693 address += offset;
2694
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002695 ADD_STATS_COUNTER(alloced_io_mem, size);
2696
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002697 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002698 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002699 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002700 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002701 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002702
Joerg Roedelcb76c322008-06-26 21:28:00 +02002703out:
2704 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002705
2706out_unmap:
2707
2708 for (--i; i >= 0; --i) {
2709 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002710 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002711 }
2712
2713 dma_ops_free_addresses(dma_dom, address, pages);
2714
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002715 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002716}
2717
Joerg Roedel431b2a22008-07-11 17:14:22 +02002718/*
2719 * Does the reverse of the __map_single function. Must be called with
2720 * the domain lock held too
2721 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002722static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002723 dma_addr_t dma_addr,
2724 size_t size,
2725 int dir)
2726{
Joerg Roedel04e04632010-09-23 16:12:48 +02002727 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002728 dma_addr_t i, start;
2729 unsigned int pages;
2730
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002731 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002732 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002733 return;
2734
Joerg Roedel04e04632010-09-23 16:12:48 +02002735 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002736 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002737 dma_addr &= PAGE_MASK;
2738 start = dma_addr;
2739
2740 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002741 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002742 start += PAGE_SIZE;
2743 }
2744
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002745 SUB_STATS_COUNTER(alloced_io_mem, size);
2746
Joerg Roedelcb76c322008-06-26 21:28:00 +02002747 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002748
Joerg Roedel80be3082008-11-06 14:59:05 +01002749 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002750 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002751 dma_dom->need_flush = false;
2752 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002753}
2754
Joerg Roedel431b2a22008-07-11 17:14:22 +02002755/*
2756 * The exported map_single function for dma_ops.
2757 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002758static dma_addr_t map_page(struct device *dev, struct page *page,
2759 unsigned long offset, size_t size,
2760 enum dma_data_direction dir,
2761 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002762{
2763 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002764 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002765 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002766 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002767 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002768
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002769 INC_STATS_COUNTER(cnt_map_single);
2770
Joerg Roedel94f6d192009-11-24 16:40:02 +01002771 domain = get_domain(dev);
2772 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002773 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002774 else if (IS_ERR(domain))
2775 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002776
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002777 dma_mask = *dev->dma_mask;
2778
Joerg Roedel4da70b92008-06-26 21:28:01 +02002779 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002780
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002781 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002782 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002783 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002784 goto out;
2785
Joerg Roedel17b124b2011-04-06 18:01:35 +02002786 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002787
2788out:
2789 spin_unlock_irqrestore(&domain->lock, flags);
2790
2791 return addr;
2792}
2793
Joerg Roedel431b2a22008-07-11 17:14:22 +02002794/*
2795 * The exported unmap_single function for dma_ops.
2796 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002797static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2798 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002799{
2800 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002801 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002802
Joerg Roedel146a6912008-12-12 15:07:12 +01002803 INC_STATS_COUNTER(cnt_unmap_single);
2804
Joerg Roedel94f6d192009-11-24 16:40:02 +01002805 domain = get_domain(dev);
2806 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002807 return;
2808
Joerg Roedel4da70b92008-06-26 21:28:01 +02002809 spin_lock_irqsave(&domain->lock, flags);
2810
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002811 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002812
Joerg Roedel17b124b2011-04-06 18:01:35 +02002813 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002814
2815 spin_unlock_irqrestore(&domain->lock, flags);
2816}
2817
Joerg Roedel431b2a22008-07-11 17:14:22 +02002818/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002819 * The exported map_sg function for dma_ops (handles scatter-gather
2820 * lists).
2821 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002822static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002823 int nelems, enum dma_data_direction dir,
2824 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002825{
2826 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002827 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002828 int i;
2829 struct scatterlist *s;
2830 phys_addr_t paddr;
2831 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002832 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002833
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002834 INC_STATS_COUNTER(cnt_map_sg);
2835
Joerg Roedel94f6d192009-11-24 16:40:02 +01002836 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002837 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002838 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002839
Joerg Roedel832a90c2008-09-18 15:54:23 +02002840 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002841
Joerg Roedel65b050a2008-06-26 21:28:02 +02002842 spin_lock_irqsave(&domain->lock, flags);
2843
2844 for_each_sg(sglist, s, nelems, i) {
2845 paddr = sg_phys(s);
2846
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002847 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002848 paddr, s->length, dir, false,
2849 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002850
2851 if (s->dma_address) {
2852 s->dma_length = s->length;
2853 mapped_elems++;
2854 } else
2855 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002856 }
2857
Joerg Roedel17b124b2011-04-06 18:01:35 +02002858 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002859
2860out:
2861 spin_unlock_irqrestore(&domain->lock, flags);
2862
2863 return mapped_elems;
2864unmap:
2865 for_each_sg(sglist, s, mapped_elems, i) {
2866 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002867 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002868 s->dma_length, dir);
2869 s->dma_address = s->dma_length = 0;
2870 }
2871
2872 mapped_elems = 0;
2873
2874 goto out;
2875}
2876
Joerg Roedel431b2a22008-07-11 17:14:22 +02002877/*
2878 * The exported map_sg function for dma_ops (handles scatter-gather
2879 * lists).
2880 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002881static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002882 int nelems, enum dma_data_direction dir,
2883 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002884{
2885 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002886 struct protection_domain *domain;
2887 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002888 int i;
2889
Joerg Roedel55877a62008-12-12 15:12:14 +01002890 INC_STATS_COUNTER(cnt_unmap_sg);
2891
Joerg Roedel94f6d192009-11-24 16:40:02 +01002892 domain = get_domain(dev);
2893 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002894 return;
2895
Joerg Roedel65b050a2008-06-26 21:28:02 +02002896 spin_lock_irqsave(&domain->lock, flags);
2897
2898 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002899 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002900 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002901 s->dma_address = s->dma_length = 0;
2902 }
2903
Joerg Roedel17b124b2011-04-06 18:01:35 +02002904 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002905
2906 spin_unlock_irqrestore(&domain->lock, flags);
2907}
2908
Joerg Roedel431b2a22008-07-11 17:14:22 +02002909/*
2910 * The exported alloc_coherent function for dma_ops.
2911 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002912static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002913 dma_addr_t *dma_addr, gfp_t flag,
2914 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002915{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002916 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002917 struct protection_domain *domain;
2918 unsigned long flags;
2919 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002920
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002921 INC_STATS_COUNTER(cnt_alloc_coherent);
2922
Joerg Roedel94f6d192009-11-24 16:40:02 +01002923 domain = get_domain(dev);
2924 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002925 page = alloc_pages(flag, get_order(size));
2926 *dma_addr = page_to_phys(page);
2927 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002928 } else if (IS_ERR(domain))
2929 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002930
Joerg Roedel3b839a52015-04-01 14:58:47 +02002931 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002932 dma_mask = dev->coherent_dma_mask;
2933 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002934
Joerg Roedel3b839a52015-04-01 14:58:47 +02002935 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2936 if (!page) {
2937 if (!(flag & __GFP_WAIT))
2938 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002939
Joerg Roedel3b839a52015-04-01 14:58:47 +02002940 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2941 get_order(size));
2942 if (!page)
2943 return NULL;
2944 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002945
Joerg Roedel832a90c2008-09-18 15:54:23 +02002946 if (!dma_mask)
2947 dma_mask = *dev->dma_mask;
2948
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002949 spin_lock_irqsave(&domain->lock, flags);
2950
Joerg Roedel3b839a52015-04-01 14:58:47 +02002951 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002952 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002953
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002954 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002955 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002956 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002957 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002958
Joerg Roedel17b124b2011-04-06 18:01:35 +02002959 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002960
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002961 spin_unlock_irqrestore(&domain->lock, flags);
2962
Joerg Roedel3b839a52015-04-01 14:58:47 +02002963 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002964
2965out_free:
2966
Joerg Roedel3b839a52015-04-01 14:58:47 +02002967 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2968 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002969
2970 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002971}
2972
Joerg Roedel431b2a22008-07-11 17:14:22 +02002973/*
2974 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002975 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002976static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002977 void *virt_addr, dma_addr_t dma_addr,
2978 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002979{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002980 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002981 unsigned long flags;
2982 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002983
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002984 INC_STATS_COUNTER(cnt_free_coherent);
2985
Joerg Roedel3b839a52015-04-01 14:58:47 +02002986 page = virt_to_page(virt_addr);
2987 size = PAGE_ALIGN(size);
2988
Joerg Roedel94f6d192009-11-24 16:40:02 +01002989 domain = get_domain(dev);
2990 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002991 goto free_mem;
2992
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002993 spin_lock_irqsave(&domain->lock, flags);
2994
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002995 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002996
Joerg Roedel17b124b2011-04-06 18:01:35 +02002997 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002998
2999 spin_unlock_irqrestore(&domain->lock, flags);
3000
3001free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02003002 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
3003 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02003004}
3005
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003006/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003007 * This function is called by the DMA layer to find out if we can handle a
3008 * particular device. It is part of the dma_ops.
3009 */
3010static int amd_iommu_dma_supported(struct device *dev, u64 mask)
3011{
Joerg Roedel420aef82009-11-23 16:14:57 +01003012 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003013}
3014
3015/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02003016 * The function for pre-allocating protection domains.
3017 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003018 * If the driver core informs the DMA layer if a driver grabs a device
3019 * we don't need to preallocate the protection domains anymore.
3020 * For now we have to.
3021 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01003022static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003023{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003024 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003025 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003026 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003027 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003028
Chris Wrightd18c69d2010-04-02 18:27:55 -07003029 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003030
3031 /* Do we handle this device? */
3032 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003033 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003034
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003035 dev_data = get_dev_data(&dev->dev);
3036 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3037 /* Make sure passthrough domain is allocated */
3038 alloc_passthrough_domain();
3039 dev_data->passthrough = true;
3040 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003041 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003042 dev_name(&dev->dev));
3043 }
3044
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003045 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003046 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003047 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003048
3049 devid = get_device_id(&dev->dev);
3050
Joerg Roedel87a64d52009-11-24 17:26:43 +01003051 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003052 if (!dma_dom)
3053 continue;
3054 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003055 dma_dom->target_dev = devid;
3056
Joerg Roedel15898bb2009-11-24 15:39:42 +01003057 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003058
Joerg Roedelbd60b732008-09-11 10:24:48 +02003059 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003060 }
3061}
3062
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003063static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003064 .alloc = alloc_coherent,
3065 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003066 .map_page = map_page,
3067 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003068 .map_sg = map_sg,
3069 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003070 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003071};
3072
Joerg Roedel27c21272011-05-30 15:56:24 +02003073static unsigned device_dma_ops_init(void)
3074{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003075 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003076 struct pci_dev *pdev = NULL;
3077 unsigned unhandled = 0;
3078
3079 for_each_pci_dev(pdev) {
3080 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003081
3082 iommu_ignore_device(&pdev->dev);
3083
Joerg Roedel27c21272011-05-30 15:56:24 +02003084 unhandled += 1;
3085 continue;
3086 }
3087
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003088 dev_data = get_dev_data(&pdev->dev);
3089
3090 if (!dev_data->passthrough)
3091 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3092 else
3093 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003094 }
3095
3096 return unhandled;
3097}
3098
Joerg Roedel431b2a22008-07-11 17:14:22 +02003099/*
3100 * The function which clues the AMD IOMMU driver into dma_ops.
3101 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003102
3103void __init amd_iommu_init_api(void)
3104{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003105 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003106}
3107
Joerg Roedel6631ee92008-06-26 21:28:05 +02003108int __init amd_iommu_init_dma_ops(void)
3109{
3110 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003111 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003112
Joerg Roedel431b2a22008-07-11 17:14:22 +02003113 /*
3114 * first allocate a default protection domain for every IOMMU we
3115 * found in the system. Devices not assigned to any other
3116 * protection domain will be assigned to the default one.
3117 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003118 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003119 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003120 if (iommu->default_dom == NULL)
3121 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003122 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003123 ret = iommu_init_unity_mappings(iommu);
3124 if (ret)
3125 goto free_domains;
3126 }
3127
Joerg Roedel431b2a22008-07-11 17:14:22 +02003128 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003129 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003130 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003131 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003132
3133 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003134 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003135
Joerg Roedel431b2a22008-07-11 17:14:22 +02003136 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003137 unhandled = device_dma_ops_init();
3138 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3139 /* There are unhandled devices - initialize swiotlb for them */
3140 swiotlb = 1;
3141 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003142
Joerg Roedel7f265082008-12-12 13:50:21 +01003143 amd_iommu_stats_init();
3144
Joerg Roedel62410ee2012-06-12 16:42:43 +02003145 if (amd_iommu_unmap_flush)
3146 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3147 else
3148 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3149
Joerg Roedel6631ee92008-06-26 21:28:05 +02003150 return 0;
3151
3152free_domains:
3153
Joerg Roedel3bd22172009-05-04 15:06:20 +02003154 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003155 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003156 }
3157
3158 return ret;
3159}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003160
3161/*****************************************************************************
3162 *
3163 * The following functions belong to the exported interface of AMD IOMMU
3164 *
3165 * This interface allows access to lower level functions of the IOMMU
3166 * like protection domain handling and assignement of devices to domains
3167 * which is not possible with the dma_ops interface.
3168 *
3169 *****************************************************************************/
3170
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003171static void cleanup_domain(struct protection_domain *domain)
3172{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003173 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003174 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003175
3176 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3177
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003178 while (!list_empty(&domain->dev_list)) {
3179 entry = list_first_entry(&domain->dev_list,
3180 struct iommu_dev_data, list);
3181 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01003182 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003183
3184 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3185}
3186
Joerg Roedel26508152009-08-26 16:52:40 +02003187static void protection_domain_free(struct protection_domain *domain)
3188{
3189 if (!domain)
3190 return;
3191
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003192 del_domain_from_list(domain);
3193
Joerg Roedel26508152009-08-26 16:52:40 +02003194 if (domain->id)
3195 domain_id_free(domain->id);
3196
3197 kfree(domain);
3198}
3199
3200static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003201{
3202 struct protection_domain *domain;
3203
3204 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3205 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003206 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003207
3208 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003209 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003210 domain->id = domain_id_alloc();
3211 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003212 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003213 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003214
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003215 add_domain_to_list(domain);
3216
Joerg Roedel26508152009-08-26 16:52:40 +02003217 return domain;
3218
3219out_err:
3220 kfree(domain);
3221
3222 return NULL;
3223}
3224
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003225static int __init alloc_passthrough_domain(void)
3226{
3227 if (pt_domain != NULL)
3228 return 0;
3229
3230 /* allocate passthrough domain */
3231 pt_domain = protection_domain_alloc();
3232 if (!pt_domain)
3233 return -ENOMEM;
3234
3235 pt_domain->mode = PAGE_MODE_NONE;
3236
3237 return 0;
3238}
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003239
3240static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
3241{
3242 struct protection_domain *pdomain;
3243
3244 /* We only support unmanaged domains for now */
3245 if (type != IOMMU_DOMAIN_UNMANAGED)
3246 return NULL;
3247
3248 pdomain = protection_domain_alloc();
3249 if (!pdomain)
3250 goto out_free;
3251
3252 pdomain->mode = PAGE_MODE_3_LEVEL;
3253 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3254 if (!pdomain->pt_root)
3255 goto out_free;
3256
3257 pdomain->domain.geometry.aperture_start = 0;
3258 pdomain->domain.geometry.aperture_end = ~0ULL;
3259 pdomain->domain.geometry.force_aperture = true;
3260
3261 return &pdomain->domain;
3262
3263out_free:
3264 protection_domain_free(pdomain);
3265
3266 return NULL;
3267}
3268
3269static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003270{
3271 struct protection_domain *domain;
3272
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003273 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01003274 return;
3275
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003276 domain = to_pdomain(dom);
3277
Joerg Roedel98383fc2008-12-02 18:34:12 +01003278 if (domain->dev_cnt > 0)
3279 cleanup_domain(domain);
3280
3281 BUG_ON(domain->dev_cnt != 0);
3282
Joerg Roedel132bd682011-11-17 14:18:46 +01003283 if (domain->mode != PAGE_MODE_NONE)
3284 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003285
Joerg Roedel52815b72011-11-17 17:24:28 +01003286 if (domain->flags & PD_IOMMUV2_MASK)
3287 free_gcr3_table(domain);
3288
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003289 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003290}
3291
Joerg Roedel684f2882008-12-08 12:07:44 +01003292static void amd_iommu_detach_device(struct iommu_domain *dom,
3293 struct device *dev)
3294{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003295 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003296 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003297 u16 devid;
3298
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003299 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003300 return;
3301
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003302 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003303
Joerg Roedel657cbb62009-11-23 15:26:46 +01003304 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003305 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003306
3307 iommu = amd_iommu_rlookup_table[devid];
3308 if (!iommu)
3309 return;
3310
Joerg Roedel684f2882008-12-08 12:07:44 +01003311 iommu_completion_wait(iommu);
3312}
3313
Joerg Roedel01106062008-12-02 19:34:11 +01003314static int amd_iommu_attach_device(struct iommu_domain *dom,
3315 struct device *dev)
3316{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003317 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003318 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003319 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003320 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003321
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003322 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003323 return -EINVAL;
3324
Joerg Roedel657cbb62009-11-23 15:26:46 +01003325 dev_data = dev->archdata.iommu;
3326
Joerg Roedelf62dda62011-06-09 12:55:35 +02003327 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003328 if (!iommu)
3329 return -EINVAL;
3330
Joerg Roedel657cbb62009-11-23 15:26:46 +01003331 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003332 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003333
Joerg Roedel15898bb2009-11-24 15:39:42 +01003334 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003335
3336 iommu_completion_wait(iommu);
3337
Joerg Roedel15898bb2009-11-24 15:39:42 +01003338 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003339}
3340
Joerg Roedel468e2362010-01-21 16:37:36 +01003341static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003342 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003343{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003344 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003345 int prot = 0;
3346 int ret;
3347
Joerg Roedel132bd682011-11-17 14:18:46 +01003348 if (domain->mode == PAGE_MODE_NONE)
3349 return -EINVAL;
3350
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003351 if (iommu_prot & IOMMU_READ)
3352 prot |= IOMMU_PROT_IR;
3353 if (iommu_prot & IOMMU_WRITE)
3354 prot |= IOMMU_PROT_IW;
3355
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003356 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003357 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003358 mutex_unlock(&domain->api_lock);
3359
Joerg Roedel795e74f72010-05-11 17:40:57 +02003360 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003361}
3362
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003363static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3364 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003365{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003366 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003367 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003368
Joerg Roedel132bd682011-11-17 14:18:46 +01003369 if (domain->mode == PAGE_MODE_NONE)
3370 return -EINVAL;
3371
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003372 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003373 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003374 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003375
Joerg Roedel17b124b2011-04-06 18:01:35 +02003376 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003377
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003378 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003379}
3380
Joerg Roedel645c4c82008-12-02 20:05:50 +01003381static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303382 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003383{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003384 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003385 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003386 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003387
Joerg Roedel132bd682011-11-17 14:18:46 +01003388 if (domain->mode == PAGE_MODE_NONE)
3389 return iova;
3390
Joerg Roedel3039ca12015-04-01 14:58:48 +02003391 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003392
Joerg Roedela6d41a42009-09-02 17:08:55 +02003393 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003394 return 0;
3395
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003396 offset_mask = pte_pgsize - 1;
3397 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003398
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003399 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003400}
3401
Joerg Roedelab636482014-09-05 10:48:21 +02003402static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003403{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003404 switch (cap) {
3405 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003406 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003407 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003408 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003409 case IOMMU_CAP_NOEXEC:
3410 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003411 }
3412
Joerg Roedelab636482014-09-05 10:48:21 +02003413 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003414}
3415
Thierry Redingb22f6432014-06-27 09:03:12 +02003416static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003417 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003418 .domain_alloc = amd_iommu_domain_alloc,
3419 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003420 .attach_dev = amd_iommu_attach_device,
3421 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003422 .map = amd_iommu_map,
3423 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003424 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003425 .iova_to_phys = amd_iommu_iova_to_phys,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003426 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003427};
3428
Joerg Roedel0feae532009-08-26 15:26:30 +02003429/*****************************************************************************
3430 *
3431 * The next functions do a basic initialization of IOMMU for pass through
3432 * mode
3433 *
3434 * In passthrough mode the IOMMU is initialized and enabled but not used for
3435 * DMA-API translation.
3436 *
3437 *****************************************************************************/
3438
3439int __init amd_iommu_init_passthrough(void)
3440{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003441 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003442 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003443 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003444
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003445 ret = alloc_passthrough_domain();
3446 if (ret)
3447 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003448
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003449 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003450 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003451 continue;
3452
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003453 dev_data = get_dev_data(&dev->dev);
3454 dev_data->passthrough = true;
3455
Joerg Roedel15898bb2009-11-24 15:39:42 +01003456 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003457 }
3458
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003459 amd_iommu_stats_init();
3460
Joerg Roedel0feae532009-08-26 15:26:30 +02003461 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3462
3463 return 0;
3464}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003465
3466/* IOMMUv2 specific functions */
3467int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3468{
3469 return atomic_notifier_chain_register(&ppr_notifier, nb);
3470}
3471EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3472
3473int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3474{
3475 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3476}
3477EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003478
3479void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3480{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003481 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003482 unsigned long flags;
3483
3484 spin_lock_irqsave(&domain->lock, flags);
3485
3486 /* Update data structure */
3487 domain->mode = PAGE_MODE_NONE;
3488 domain->updated = true;
3489
3490 /* Make changes visible to IOMMUs */
3491 update_domain(domain);
3492
3493 /* Page-table is not visible to IOMMU anymore, so free it */
3494 free_pagetable(domain);
3495
3496 spin_unlock_irqrestore(&domain->lock, flags);
3497}
3498EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003499
3500int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3501{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003502 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003503 unsigned long flags;
3504 int levels, ret;
3505
3506 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3507 return -EINVAL;
3508
3509 /* Number of GCR3 table levels required */
3510 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3511 levels += 1;
3512
3513 if (levels > amd_iommu_max_glx_val)
3514 return -EINVAL;
3515
3516 spin_lock_irqsave(&domain->lock, flags);
3517
3518 /*
3519 * Save us all sanity checks whether devices already in the
3520 * domain support IOMMUv2. Just force that the domain has no
3521 * devices attached when it is switched into IOMMUv2 mode.
3522 */
3523 ret = -EBUSY;
3524 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3525 goto out;
3526
3527 ret = -ENOMEM;
3528 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3529 if (domain->gcr3_tbl == NULL)
3530 goto out;
3531
3532 domain->glx = levels;
3533 domain->flags |= PD_IOMMUV2_MASK;
3534 domain->updated = true;
3535
3536 update_domain(domain);
3537
3538 ret = 0;
3539
3540out:
3541 spin_unlock_irqrestore(&domain->lock, flags);
3542
3543 return ret;
3544}
3545EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003546
3547static int __flush_pasid(struct protection_domain *domain, int pasid,
3548 u64 address, bool size)
3549{
3550 struct iommu_dev_data *dev_data;
3551 struct iommu_cmd cmd;
3552 int i, ret;
3553
3554 if (!(domain->flags & PD_IOMMUV2_MASK))
3555 return -EINVAL;
3556
3557 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3558
3559 /*
3560 * IOMMU TLB needs to be flushed before Device TLB to
3561 * prevent device TLB refill from IOMMU TLB
3562 */
3563 for (i = 0; i < amd_iommus_present; ++i) {
3564 if (domain->dev_iommu[i] == 0)
3565 continue;
3566
3567 ret = iommu_queue_command(amd_iommus[i], &cmd);
3568 if (ret != 0)
3569 goto out;
3570 }
3571
3572 /* Wait until IOMMU TLB flushes are complete */
3573 domain_flush_complete(domain);
3574
3575 /* Now flush device TLBs */
3576 list_for_each_entry(dev_data, &domain->dev_list, list) {
3577 struct amd_iommu *iommu;
3578 int qdep;
3579
3580 BUG_ON(!dev_data->ats.enabled);
3581
3582 qdep = dev_data->ats.qdep;
3583 iommu = amd_iommu_rlookup_table[dev_data->devid];
3584
3585 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3586 qdep, address, size);
3587
3588 ret = iommu_queue_command(iommu, &cmd);
3589 if (ret != 0)
3590 goto out;
3591 }
3592
3593 /* Wait until all device TLBs are flushed */
3594 domain_flush_complete(domain);
3595
3596 ret = 0;
3597
3598out:
3599
3600 return ret;
3601}
3602
3603static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3604 u64 address)
3605{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003606 INC_STATS_COUNTER(invalidate_iotlb);
3607
Joerg Roedel22e266c2011-11-21 15:59:08 +01003608 return __flush_pasid(domain, pasid, address, false);
3609}
3610
3611int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3612 u64 address)
3613{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003614 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003615 unsigned long flags;
3616 int ret;
3617
3618 spin_lock_irqsave(&domain->lock, flags);
3619 ret = __amd_iommu_flush_page(domain, pasid, address);
3620 spin_unlock_irqrestore(&domain->lock, flags);
3621
3622 return ret;
3623}
3624EXPORT_SYMBOL(amd_iommu_flush_page);
3625
3626static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3627{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003628 INC_STATS_COUNTER(invalidate_iotlb_all);
3629
Joerg Roedel22e266c2011-11-21 15:59:08 +01003630 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3631 true);
3632}
3633
3634int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3635{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003636 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003637 unsigned long flags;
3638 int ret;
3639
3640 spin_lock_irqsave(&domain->lock, flags);
3641 ret = __amd_iommu_flush_tlb(domain, pasid);
3642 spin_unlock_irqrestore(&domain->lock, flags);
3643
3644 return ret;
3645}
3646EXPORT_SYMBOL(amd_iommu_flush_tlb);
3647
Joerg Roedelb16137b2011-11-21 16:50:23 +01003648static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3649{
3650 int index;
3651 u64 *pte;
3652
3653 while (true) {
3654
3655 index = (pasid >> (9 * level)) & 0x1ff;
3656 pte = &root[index];
3657
3658 if (level == 0)
3659 break;
3660
3661 if (!(*pte & GCR3_VALID)) {
3662 if (!alloc)
3663 return NULL;
3664
3665 root = (void *)get_zeroed_page(GFP_ATOMIC);
3666 if (root == NULL)
3667 return NULL;
3668
3669 *pte = __pa(root) | GCR3_VALID;
3670 }
3671
3672 root = __va(*pte & PAGE_MASK);
3673
3674 level -= 1;
3675 }
3676
3677 return pte;
3678}
3679
3680static int __set_gcr3(struct protection_domain *domain, int pasid,
3681 unsigned long cr3)
3682{
3683 u64 *pte;
3684
3685 if (domain->mode != PAGE_MODE_NONE)
3686 return -EINVAL;
3687
3688 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3689 if (pte == NULL)
3690 return -ENOMEM;
3691
3692 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3693
3694 return __amd_iommu_flush_tlb(domain, pasid);
3695}
3696
3697static int __clear_gcr3(struct protection_domain *domain, int pasid)
3698{
3699 u64 *pte;
3700
3701 if (domain->mode != PAGE_MODE_NONE)
3702 return -EINVAL;
3703
3704 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3705 if (pte == NULL)
3706 return 0;
3707
3708 *pte = 0;
3709
3710 return __amd_iommu_flush_tlb(domain, pasid);
3711}
3712
3713int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3714 unsigned long cr3)
3715{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003716 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003717 unsigned long flags;
3718 int ret;
3719
3720 spin_lock_irqsave(&domain->lock, flags);
3721 ret = __set_gcr3(domain, pasid, cr3);
3722 spin_unlock_irqrestore(&domain->lock, flags);
3723
3724 return ret;
3725}
3726EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3727
3728int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3729{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003730 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003731 unsigned long flags;
3732 int ret;
3733
3734 spin_lock_irqsave(&domain->lock, flags);
3735 ret = __clear_gcr3(domain, pasid);
3736 spin_unlock_irqrestore(&domain->lock, flags);
3737
3738 return ret;
3739}
3740EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003741
3742int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3743 int status, int tag)
3744{
3745 struct iommu_dev_data *dev_data;
3746 struct amd_iommu *iommu;
3747 struct iommu_cmd cmd;
3748
Joerg Roedel399be2f2011-12-01 16:53:47 +01003749 INC_STATS_COUNTER(complete_ppr);
3750
Joerg Roedelc99afa22011-11-21 18:19:25 +01003751 dev_data = get_dev_data(&pdev->dev);
3752 iommu = amd_iommu_rlookup_table[dev_data->devid];
3753
3754 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3755 tag, dev_data->pri_tlp);
3756
3757 return iommu_queue_command(iommu, &cmd);
3758}
3759EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003760
3761struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3762{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003763 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003764
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003765 pdomain = get_domain(&pdev->dev);
3766 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003767 return NULL;
3768
3769 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003770 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003771 return NULL;
3772
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003773 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003774}
3775EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003776
3777void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3778{
3779 struct iommu_dev_data *dev_data;
3780
3781 if (!amd_iommu_v2_supported())
3782 return;
3783
3784 dev_data = get_dev_data(&pdev->dev);
3785 dev_data->errata |= (1 << erratum);
3786}
3787EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003788
3789int amd_iommu_device_info(struct pci_dev *pdev,
3790 struct amd_iommu_device_info *info)
3791{
3792 int max_pasids;
3793 int pos;
3794
3795 if (pdev == NULL || info == NULL)
3796 return -EINVAL;
3797
3798 if (!amd_iommu_v2_supported())
3799 return -EINVAL;
3800
3801 memset(info, 0, sizeof(*info));
3802
3803 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3804 if (pos)
3805 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3806
3807 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3808 if (pos)
3809 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3810
3811 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3812 if (pos) {
3813 int features;
3814
3815 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3816 max_pasids = min(max_pasids, (1 << 20));
3817
3818 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3819 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3820
3821 features = pci_pasid_features(pdev);
3822 if (features & PCI_PASID_CAP_EXEC)
3823 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3824 if (features & PCI_PASID_CAP_PRIV)
3825 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3826 }
3827
3828 return 0;
3829}
3830EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003831
3832#ifdef CONFIG_IRQ_REMAP
3833
3834/*****************************************************************************
3835 *
3836 * Interrupt Remapping Implementation
3837 *
3838 *****************************************************************************/
3839
3840union irte {
3841 u32 val;
3842 struct {
3843 u32 valid : 1,
3844 no_fault : 1,
3845 int_type : 3,
3846 rq_eoi : 1,
3847 dm : 1,
3848 rsvd_1 : 1,
3849 destination : 8,
3850 vector : 8,
3851 rsvd_2 : 8;
3852 } fields;
3853};
3854
Jiang Liu7c71d302015-04-13 14:11:33 +08003855struct amd_ir_data {
3856 struct irq_2_irte irq_2_irte;
3857 union irte irte_entry;
3858 union {
3859 struct msi_msg msi_entry;
3860 };
3861};
3862
3863static struct irq_chip amd_ir_chip;
3864
Joerg Roedel2b324502012-06-21 16:29:10 +02003865#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3866#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3867#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3868#define DTE_IRQ_REMAP_ENABLE 1ULL
3869
3870static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3871{
3872 u64 dte;
3873
3874 dte = amd_iommu_dev_table[devid].data[2];
3875 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3876 dte |= virt_to_phys(table->table);
3877 dte |= DTE_IRQ_REMAP_INTCTL;
3878 dte |= DTE_IRQ_TABLE_LEN;
3879 dte |= DTE_IRQ_REMAP_ENABLE;
3880
3881 amd_iommu_dev_table[devid].data[2] = dte;
3882}
3883
3884#define IRTE_ALLOCATED (~1U)
3885
3886static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3887{
3888 struct irq_remap_table *table = NULL;
3889 struct amd_iommu *iommu;
3890 unsigned long flags;
3891 u16 alias;
3892
3893 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3894
3895 iommu = amd_iommu_rlookup_table[devid];
3896 if (!iommu)
3897 goto out_unlock;
3898
3899 table = irq_lookup_table[devid];
3900 if (table)
3901 goto out;
3902
3903 alias = amd_iommu_alias_table[devid];
3904 table = irq_lookup_table[alias];
3905 if (table) {
3906 irq_lookup_table[devid] = table;
3907 set_dte_irq_entry(devid, table);
3908 iommu_flush_dte(iommu, devid);
3909 goto out;
3910 }
3911
3912 /* Nothing there yet, allocate new irq remapping table */
3913 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3914 if (!table)
3915 goto out;
3916
Joerg Roedel197887f2013-04-09 21:14:08 +02003917 /* Initialize table spin-lock */
3918 spin_lock_init(&table->lock);
3919
Joerg Roedel2b324502012-06-21 16:29:10 +02003920 if (ioapic)
3921 /* Keep the first 32 indexes free for IOAPIC interrupts */
3922 table->min_index = 32;
3923
3924 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3925 if (!table->table) {
3926 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003927 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003928 goto out;
3929 }
3930
3931 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3932
3933 if (ioapic) {
3934 int i;
3935
3936 for (i = 0; i < 32; ++i)
3937 table->table[i] = IRTE_ALLOCATED;
3938 }
3939
3940 irq_lookup_table[devid] = table;
3941 set_dte_irq_entry(devid, table);
3942 iommu_flush_dte(iommu, devid);
3943 if (devid != alias) {
3944 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003945 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003946 iommu_flush_dte(iommu, alias);
3947 }
3948
3949out:
3950 iommu_completion_wait(iommu);
3951
3952out_unlock:
3953 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3954
3955 return table;
3956}
3957
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003958static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003959{
3960 struct irq_remap_table *table;
3961 unsigned long flags;
3962 int index, c;
3963
3964 table = get_irq_table(devid, false);
3965 if (!table)
3966 return -ENODEV;
3967
3968 spin_lock_irqsave(&table->lock, flags);
3969
3970 /* Scan table for free entries */
3971 for (c = 0, index = table->min_index;
3972 index < MAX_IRQS_PER_TABLE;
3973 ++index) {
3974 if (table->table[index] == 0)
3975 c += 1;
3976 else
3977 c = 0;
3978
3979 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003980 for (; c != 0; --c)
3981 table->table[index - c + 1] = IRTE_ALLOCATED;
3982
3983 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003984 goto out;
3985 }
3986 }
3987
3988 index = -ENOSPC;
3989
3990out:
3991 spin_unlock_irqrestore(&table->lock, flags);
3992
3993 return index;
3994}
3995
3996static int get_irte(u16 devid, int index, union irte *irte)
3997{
3998 struct irq_remap_table *table;
3999 unsigned long flags;
4000
4001 table = get_irq_table(devid, false);
4002 if (!table)
4003 return -ENOMEM;
4004
4005 spin_lock_irqsave(&table->lock, flags);
4006 irte->val = table->table[index];
4007 spin_unlock_irqrestore(&table->lock, flags);
4008
4009 return 0;
4010}
4011
4012static int modify_irte(u16 devid, int index, union irte irte)
4013{
4014 struct irq_remap_table *table;
4015 struct amd_iommu *iommu;
4016 unsigned long flags;
4017
4018 iommu = amd_iommu_rlookup_table[devid];
4019 if (iommu == NULL)
4020 return -EINVAL;
4021
4022 table = get_irq_table(devid, false);
4023 if (!table)
4024 return -ENOMEM;
4025
4026 spin_lock_irqsave(&table->lock, flags);
4027 table->table[index] = irte.val;
4028 spin_unlock_irqrestore(&table->lock, flags);
4029
4030 iommu_flush_irt(iommu, devid);
4031 iommu_completion_wait(iommu);
4032
4033 return 0;
4034}
4035
4036static void free_irte(u16 devid, int index)
4037{
4038 struct irq_remap_table *table;
4039 struct amd_iommu *iommu;
4040 unsigned long flags;
4041
4042 iommu = amd_iommu_rlookup_table[devid];
4043 if (iommu == NULL)
4044 return;
4045
4046 table = get_irq_table(devid, false);
4047 if (!table)
4048 return;
4049
4050 spin_lock_irqsave(&table->lock, flags);
4051 table->table[index] = 0;
4052 spin_unlock_irqrestore(&table->lock, flags);
4053
4054 iommu_flush_irt(iommu, devid);
4055 iommu_completion_wait(iommu);
4056}
4057
Joerg Roedel5527de72012-06-26 11:17:32 +02004058static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4059 unsigned int destination, int vector,
4060 struct io_apic_irq_attr *attr)
4061{
4062 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004063 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004064 struct irq_cfg *cfg;
4065 union irte irte;
4066 int ioapic_id;
4067 int index;
4068 int devid;
4069 int ret;
4070
Jiang Liu719b5302014-10-27 16:12:10 +08004071 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02004072 if (!cfg)
4073 return -EINVAL;
4074
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004075 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004076 ioapic_id = mpc_ioapic_id(attr->ioapic);
4077 devid = get_ioapic_devid(ioapic_id);
4078
4079 if (devid < 0)
4080 return devid;
4081
4082 table = get_irq_table(devid, true);
4083 if (table == NULL)
4084 return -ENOMEM;
4085
4086 index = attr->ioapic_pin;
4087
4088 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004089 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004090 irte_info->devid = devid;
4091 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02004092
4093 /* Setup IRTE for IOMMU */
4094 irte.val = 0;
4095 irte.fields.vector = vector;
4096 irte.fields.int_type = apic->irq_delivery_mode;
4097 irte.fields.destination = destination;
4098 irte.fields.dm = apic->irq_dest_mode;
4099 irte.fields.valid = 1;
4100
4101 ret = modify_irte(devid, index, irte);
4102 if (ret)
4103 return ret;
4104
4105 /* Setup IOAPIC entry */
4106 memset(entry, 0, sizeof(*entry));
4107
4108 entry->vector = index;
4109 entry->mask = 0;
4110 entry->trigger = attr->trigger;
4111 entry->polarity = attr->polarity;
4112
4113 /*
4114 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004115 */
4116 if (attr->trigger)
4117 entry->mask = 1;
4118
4119 return 0;
4120}
4121
4122static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4123 bool force)
4124{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004125 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004126 unsigned int dest, irq;
4127 struct irq_cfg *cfg;
4128 union irte irte;
4129 int err;
4130
4131 if (!config_enabled(CONFIG_SMP))
4132 return -1;
4133
Jiang Liu719b5302014-10-27 16:12:10 +08004134 cfg = irqd_cfg(data);
Joerg Roedel5527de72012-06-26 11:17:32 +02004135 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004136 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004137
4138 if (!cpumask_intersects(mask, cpu_online_mask))
4139 return -EINVAL;
4140
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004141 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02004142 return -EBUSY;
4143
4144 if (assign_irq_vector(irq, cfg, mask))
4145 return -EBUSY;
4146
4147 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4148 if (err) {
4149 if (assign_irq_vector(irq, cfg, data->affinity))
4150 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4151 return err;
4152 }
4153
4154 irte.fields.vector = cfg->vector;
4155 irte.fields.destination = dest;
4156
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004157 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02004158
4159 if (cfg->move_in_progress)
4160 send_cleanup_vector(cfg);
4161
4162 cpumask_copy(data->affinity, mask);
4163
4164 return 0;
4165}
4166
4167static int free_irq(int irq)
4168{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004169 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004170 struct irq_cfg *cfg;
4171
Jiang Liu719b5302014-10-27 16:12:10 +08004172 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02004173 if (!cfg)
4174 return -EINVAL;
4175
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004176 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004177
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004178 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02004179
4180 return 0;
4181}
4182
Jiang Liu7c71d302015-04-13 14:11:33 +08004183static int get_devid(struct irq_alloc_info *info)
4184{
4185 int devid = -1;
4186
4187 switch (info->type) {
4188 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4189 devid = get_ioapic_devid(info->ioapic_id);
4190 break;
4191 case X86_IRQ_ALLOC_TYPE_HPET:
4192 devid = get_hpet_devid(info->hpet_id);
4193 break;
4194 case X86_IRQ_ALLOC_TYPE_MSI:
4195 case X86_IRQ_ALLOC_TYPE_MSIX:
4196 devid = get_device_id(&info->msi_dev->dev);
4197 break;
4198 default:
4199 BUG_ON(1);
4200 break;
4201 }
4202
4203 return devid;
4204}
4205
4206static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
4207{
4208 struct amd_iommu *iommu;
4209 int devid;
4210
4211 if (!info)
4212 return NULL;
4213
4214 devid = get_devid(info);
4215 if (devid >= 0) {
4216 iommu = amd_iommu_rlookup_table[devid];
4217 if (iommu)
4218 return iommu->ir_domain;
4219 }
4220
4221 return NULL;
4222}
4223
4224static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
4225{
4226 struct amd_iommu *iommu;
4227 int devid;
4228
4229 if (!info)
4230 return NULL;
4231
4232 switch (info->type) {
4233 case X86_IRQ_ALLOC_TYPE_MSI:
4234 case X86_IRQ_ALLOC_TYPE_MSIX:
4235 devid = get_device_id(&info->msi_dev->dev);
4236 if (devid >= 0) {
4237 iommu = amd_iommu_rlookup_table[devid];
4238 if (iommu)
4239 return iommu->msi_domain;
4240 }
4241 break;
4242 default:
4243 break;
4244 }
4245
4246 return NULL;
4247}
4248
Joerg Roedel6b474b82012-06-26 16:46:04 +02004249struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02004250 .prepare = amd_iommu_prepare,
4251 .enable = amd_iommu_enable,
4252 .disable = amd_iommu_disable,
4253 .reenable = amd_iommu_reenable,
4254 .enable_faulting = amd_iommu_enable_faulting,
4255 .setup_ioapic_entry = setup_ioapic_entry,
4256 .set_affinity = set_affinity,
4257 .free_irq = free_irq,
Jiang Liu7c71d302015-04-13 14:11:33 +08004258 .get_ir_irq_domain = get_ir_irq_domain,
4259 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02004260};
Jiang Liu7c71d302015-04-13 14:11:33 +08004261
4262static void irq_remapping_prepare_irte(struct amd_ir_data *data,
4263 struct irq_cfg *irq_cfg,
4264 struct irq_alloc_info *info,
4265 int devid, int index, int sub_handle)
4266{
4267 struct irq_2_irte *irte_info = &data->irq_2_irte;
4268 struct msi_msg *msg = &data->msi_entry;
4269 union irte *irte = &data->irte_entry;
4270 struct IO_APIC_route_entry *entry;
4271
4272 irq_cfg->remapped = 1;
4273 data->irq_2_irte.devid = devid;
4274 data->irq_2_irte.index = index + sub_handle;
4275
4276 /* Setup IRTE for IOMMU */
4277 irte->val = 0;
4278 irte->fields.vector = irq_cfg->vector;
4279 irte->fields.int_type = apic->irq_delivery_mode;
4280 irte->fields.destination = irq_cfg->dest_apicid;
4281 irte->fields.dm = apic->irq_dest_mode;
4282 irte->fields.valid = 1;
4283
4284 switch (info->type) {
4285 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4286 /* Setup IOAPIC entry */
4287 entry = info->ioapic_entry;
4288 info->ioapic_entry = NULL;
4289 memset(entry, 0, sizeof(*entry));
4290 entry->vector = index;
4291 entry->mask = 0;
4292 entry->trigger = info->ioapic_trigger;
4293 entry->polarity = info->ioapic_polarity;
4294 /* Mask level triggered irqs. */
4295 if (info->ioapic_trigger)
4296 entry->mask = 1;
4297 break;
4298
4299 case X86_IRQ_ALLOC_TYPE_HPET:
4300 case X86_IRQ_ALLOC_TYPE_MSI:
4301 case X86_IRQ_ALLOC_TYPE_MSIX:
4302 msg->address_hi = MSI_ADDR_BASE_HI;
4303 msg->address_lo = MSI_ADDR_BASE_LO;
4304 msg->data = irte_info->index;
4305 break;
4306
4307 default:
4308 BUG_ON(1);
4309 break;
4310 }
4311}
4312
4313static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
4314 unsigned int nr_irqs, void *arg)
4315{
4316 struct irq_alloc_info *info = arg;
4317 struct irq_data *irq_data;
4318 struct amd_ir_data *data;
4319 struct irq_cfg *cfg;
4320 int i, ret, devid;
4321 int index = -1;
4322
4323 if (!info)
4324 return -EINVAL;
4325 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
4326 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
4327 return -EINVAL;
4328
4329 /*
4330 * With IRQ remapping enabled, don't need contiguous CPU vectors
4331 * to support multiple MSI interrupts.
4332 */
4333 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
4334 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
4335
4336 devid = get_devid(info);
4337 if (devid < 0)
4338 return -EINVAL;
4339
4340 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
4341 if (ret < 0)
4342 return ret;
4343
4344 ret = -ENOMEM;
4345 data = kzalloc(sizeof(*data), GFP_KERNEL);
4346 if (!data)
4347 goto out_free_parent;
4348
4349 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
4350 if (get_irq_table(devid, true))
4351 index = info->ioapic_pin;
4352 else
4353 ret = -ENOMEM;
4354 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08004355 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08004356 }
4357 if (index < 0) {
4358 pr_warn("Failed to allocate IRTE\n");
4359 kfree(data);
4360 goto out_free_parent;
4361 }
4362
4363 for (i = 0; i < nr_irqs; i++) {
4364 irq_data = irq_domain_get_irq_data(domain, virq + i);
4365 cfg = irqd_cfg(irq_data);
4366 if (!irq_data || !cfg) {
4367 ret = -EINVAL;
4368 goto out_free_data;
4369 }
4370
4371 if (i > 0) {
4372 data = kzalloc(sizeof(*data), GFP_KERNEL);
4373 if (!data)
4374 goto out_free_data;
4375 }
4376 irq_data->hwirq = (devid << 16) + i;
4377 irq_data->chip_data = data;
4378 irq_data->chip = &amd_ir_chip;
4379 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4380 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4381 }
4382 return 0;
4383
4384out_free_data:
4385 for (i--; i >= 0; i--) {
4386 irq_data = irq_domain_get_irq_data(domain, virq + i);
4387 if (irq_data)
4388 kfree(irq_data->chip_data);
4389 }
4390 for (i = 0; i < nr_irqs; i++)
4391 free_irte(devid, index + i);
4392out_free_parent:
4393 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4394 return ret;
4395}
4396
4397static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4398 unsigned int nr_irqs)
4399{
4400 struct irq_2_irte *irte_info;
4401 struct irq_data *irq_data;
4402 struct amd_ir_data *data;
4403 int i;
4404
4405 for (i = 0; i < nr_irqs; i++) {
4406 irq_data = irq_domain_get_irq_data(domain, virq + i);
4407 if (irq_data && irq_data->chip_data) {
4408 data = irq_data->chip_data;
4409 irte_info = &data->irq_2_irte;
4410 free_irte(irte_info->devid, irte_info->index);
4411 kfree(data);
4412 }
4413 }
4414 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4415}
4416
4417static void irq_remapping_activate(struct irq_domain *domain,
4418 struct irq_data *irq_data)
4419{
4420 struct amd_ir_data *data = irq_data->chip_data;
4421 struct irq_2_irte *irte_info = &data->irq_2_irte;
4422
4423 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4424}
4425
4426static void irq_remapping_deactivate(struct irq_domain *domain,
4427 struct irq_data *irq_data)
4428{
4429 struct amd_ir_data *data = irq_data->chip_data;
4430 struct irq_2_irte *irte_info = &data->irq_2_irte;
4431 union irte entry;
4432
4433 entry.val = 0;
4434 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4435}
4436
4437static struct irq_domain_ops amd_ir_domain_ops = {
4438 .alloc = irq_remapping_alloc,
4439 .free = irq_remapping_free,
4440 .activate = irq_remapping_activate,
4441 .deactivate = irq_remapping_deactivate,
4442};
4443
4444static int amd_ir_set_affinity(struct irq_data *data,
4445 const struct cpumask *mask, bool force)
4446{
4447 struct amd_ir_data *ir_data = data->chip_data;
4448 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4449 struct irq_cfg *cfg = irqd_cfg(data);
4450 struct irq_data *parent = data->parent_data;
4451 int ret;
4452
4453 ret = parent->chip->irq_set_affinity(parent, mask, force);
4454 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4455 return ret;
4456
4457 /*
4458 * Atomically updates the IRTE with the new destination, vector
4459 * and flushes the interrupt entry cache.
4460 */
4461 ir_data->irte_entry.fields.vector = cfg->vector;
4462 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4463 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4464
4465 /*
4466 * After this point, all the interrupts will start arriving
4467 * at the new destination. So, time to cleanup the previous
4468 * vector allocation.
4469 */
4470 if (cfg->move_in_progress)
4471 send_cleanup_vector(cfg);
4472
4473 return IRQ_SET_MASK_OK_DONE;
4474}
4475
4476static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4477{
4478 struct amd_ir_data *ir_data = irq_data->chip_data;
4479
4480 *msg = ir_data->msi_entry;
4481}
4482
4483static struct irq_chip amd_ir_chip = {
4484 .irq_ack = ir_ack_apic_edge,
4485 .irq_set_affinity = amd_ir_set_affinity,
4486 .irq_compose_msi_msg = ir_compose_msi_msg,
4487};
4488
4489int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4490{
4491 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4492 if (!iommu->ir_domain)
4493 return -ENOMEM;
4494
4495 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4496 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4497
4498 return 0;
4499}
Joerg Roedel2b324502012-06-21 16:29:10 +02004500#endif