blob: 7a00e5d40eb629fde64076927926f4bfd32e50ec [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>
Joerg Roedel2b324502012-06-21 16:29:10 +020037#include <asm/irq_remapping.h>
38#include <asm/io_apic.h>
39#include <asm/apic.h>
40#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020041#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020042#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090043#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010044#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020045#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020046
47#include "amd_iommu_proto.h"
48#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020049#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020050
51#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
52
Joerg Roedel815b33f2011-04-06 17:26:49 +020053#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020054
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020055/*
56 * This bitmap is used to advertise the page sizes our hardware support
57 * to the IOMMU core, which will then use this information to split
58 * physically contiguous memory regions it is mapping into page sizes
59 * that we support.
60 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010061 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020062 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010063#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020064
Joerg Roedelb6c02712008-06-26 21:27:53 +020065static DEFINE_RWLOCK(amd_iommu_devtable_lock);
66
Joerg Roedelbd60b732008-09-11 10:24:48 +020067/* A list of preallocated protection domains */
68static LIST_HEAD(iommu_pd_list);
69static DEFINE_SPINLOCK(iommu_pd_list_lock);
70
Joerg Roedel8fa5f802011-06-09 12:24:45 +020071/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
Joerg Roedel6efed632012-06-14 15:52:58 +020075LIST_HEAD(ioapic_map);
76LIST_HEAD(hpet_map);
77
Joerg Roedel0feae532009-08-26 15:26:30 +020078/*
79 * Domain for untranslated devices - only allocated
80 * if iommu=pt passed on kernel cmd line.
81 */
82static struct protection_domain *pt_domain;
83
Thierry Redingb22f6432014-06-27 09:03:12 +020084static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010085
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010086static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010087int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010088
Joerg Roedelac1534a2012-06-21 14:52:40 +020089static struct dma_map_ops amd_iommu_dma_ops;
90
Joerg Roedel431b2a22008-07-11 17:14:22 +020091/*
Joerg Roedel50917e22014-08-05 16:38:38 +020092 * This struct contains device specific data for the IOMMU
93 */
94struct iommu_dev_data {
95 struct list_head list; /* For domain->dev_list */
96 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020097 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020098 struct iommu_dev_data *alias_data;/* The alias dev_data */
99 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +0200100 u16 devid; /* PCI Device ID */
101 bool iommu_v2; /* Device can make use of IOMMUv2 */
102 bool passthrough; /* Default for device is pt_domain */
103 struct {
104 bool enabled;
105 int qdep;
106 } ats; /* ATS state */
107 bool pri_tlp; /* PASID TLB required for
108 PPR completions */
109 u32 errata; /* Bitmap for errata to apply */
110};
111
112/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200113 * general struct to manage commands send to an IOMMU
114 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200115struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200116 u32 data[4];
117};
118
Joerg Roedel05152a02012-06-15 16:53:51 +0200119struct kmem_cache *amd_iommu_irq_cache;
120
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200121static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100122static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700123
Joerg Roedel15898bb2009-11-24 15:39:42 +0100124/****************************************************************************
125 *
126 * Helper functions
127 *
128 ****************************************************************************/
129
Joerg Roedelf62dda62011-06-09 12:55:35 +0200130static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200131{
132 struct iommu_dev_data *dev_data;
133 unsigned long flags;
134
135 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
136 if (!dev_data)
137 return NULL;
138
Joerg Roedelf251e182014-08-05 16:48:10 +0200139 INIT_LIST_HEAD(&dev_data->alias_list);
140
Joerg Roedelf62dda62011-06-09 12:55:35 +0200141 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200142
143 spin_lock_irqsave(&dev_data_list_lock, flags);
144 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
145 spin_unlock_irqrestore(&dev_data_list_lock, flags);
146
147 return dev_data;
148}
149
150static void free_dev_data(struct iommu_dev_data *dev_data)
151{
152 unsigned long flags;
153
154 spin_lock_irqsave(&dev_data_list_lock, flags);
155 list_del(&dev_data->dev_data_list);
156 spin_unlock_irqrestore(&dev_data_list_lock, flags);
157
158 kfree(dev_data);
159}
160
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200161static struct iommu_dev_data *search_dev_data(u16 devid)
162{
163 struct iommu_dev_data *dev_data;
164 unsigned long flags;
165
166 spin_lock_irqsave(&dev_data_list_lock, flags);
167 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
168 if (dev_data->devid == devid)
169 goto out_unlock;
170 }
171
172 dev_data = NULL;
173
174out_unlock:
175 spin_unlock_irqrestore(&dev_data_list_lock, flags);
176
177 return dev_data;
178}
179
180static struct iommu_dev_data *find_dev_data(u16 devid)
181{
182 struct iommu_dev_data *dev_data;
183
184 dev_data = search_dev_data(devid);
185
186 if (dev_data == NULL)
187 dev_data = alloc_dev_data(devid);
188
189 return dev_data;
190}
191
Joerg Roedel15898bb2009-11-24 15:39:42 +0100192static inline u16 get_device_id(struct device *dev)
193{
194 struct pci_dev *pdev = to_pci_dev(dev);
195
Shuah Khan6f2729b2013-02-27 17:07:30 -0700196 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100197}
198
Joerg Roedel657cbb62009-11-23 15:26:46 +0100199static struct iommu_dev_data *get_dev_data(struct device *dev)
200{
201 return dev->archdata.iommu;
202}
203
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100204static bool pci_iommuv2_capable(struct pci_dev *pdev)
205{
206 static const int caps[] = {
207 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100208 PCI_EXT_CAP_ID_PRI,
209 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100210 };
211 int i, pos;
212
213 for (i = 0; i < 3; ++i) {
214 pos = pci_find_ext_capability(pdev, caps[i]);
215 if (pos == 0)
216 return false;
217 }
218
219 return true;
220}
221
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100222static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
223{
224 struct iommu_dev_data *dev_data;
225
226 dev_data = get_dev_data(&pdev->dev);
227
228 return dev_data->errata & (1 << erratum) ? true : false;
229}
230
Joerg Roedel71c70982009-11-24 16:43:06 +0100231/*
232 * In this function the list of preallocated protection domains is traversed to
233 * find the domain for a specific device
234 */
235static struct dma_ops_domain *find_protection_domain(u16 devid)
236{
237 struct dma_ops_domain *entry, *ret = NULL;
238 unsigned long flags;
239 u16 alias = amd_iommu_alias_table[devid];
240
241 if (list_empty(&iommu_pd_list))
242 return NULL;
243
244 spin_lock_irqsave(&iommu_pd_list_lock, flags);
245
246 list_for_each_entry(entry, &iommu_pd_list, list) {
247 if (entry->target_dev == devid ||
248 entry->target_dev == alias) {
249 ret = entry;
250 break;
251 }
252 }
253
254 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
255
256 return ret;
257}
258
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100259/*
260 * This function checks if the driver got a valid device from the caller to
261 * avoid dereferencing invalid pointers.
262 */
263static bool check_device(struct device *dev)
264{
265 u16 devid;
266
267 if (!dev || !dev->dma_mask)
268 return false;
269
Yijing Wangb82a2272013-12-05 19:42:41 +0800270 /* No PCI device */
271 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100272 return false;
273
274 devid = get_device_id(dev);
275
276 /* Out of our scope? */
277 if (devid > amd_iommu_last_bdf)
278 return false;
279
280 if (amd_iommu_rlookup_table[devid] == NULL)
281 return false;
282
283 return true;
284}
285
Alex Williamson25b11ce2014-09-19 10:03:13 -0600286static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600287{
Alex Williamson2851db22012-10-08 22:49:41 -0600288 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600289
Alex Williamson65d53522014-07-03 09:51:30 -0600290 group = iommu_group_get_for_dev(dev);
Alex Williamson25b11ce2014-09-19 10:03:13 -0600291 if (!IS_ERR(group))
292 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600293}
294
Alex Williamsonc1931092014-07-03 09:51:24 -0600295static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
296{
297 *(u16 *)data = alias;
298 return 0;
299}
300
301static u16 get_alias(struct device *dev)
302{
303 struct pci_dev *pdev = to_pci_dev(dev);
304 u16 devid, ivrs_alias, pci_alias;
305
306 devid = get_device_id(dev);
307 ivrs_alias = amd_iommu_alias_table[devid];
308 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
309
310 if (ivrs_alias == pci_alias)
311 return ivrs_alias;
312
313 /*
314 * DMA alias showdown
315 *
316 * The IVRS is fairly reliable in telling us about aliases, but it
317 * can't know about every screwy device. If we don't have an IVRS
318 * reported alias, use the PCI reported alias. In that case we may
319 * still need to initialize the rlookup and dev_table entries if the
320 * alias is to a non-existent device.
321 */
322 if (ivrs_alias == devid) {
323 if (!amd_iommu_rlookup_table[pci_alias]) {
324 amd_iommu_rlookup_table[pci_alias] =
325 amd_iommu_rlookup_table[devid];
326 memcpy(amd_iommu_dev_table[pci_alias].data,
327 amd_iommu_dev_table[devid].data,
328 sizeof(amd_iommu_dev_table[pci_alias].data));
329 }
330
331 return pci_alias;
332 }
333
334 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
335 "for device %s[%04x:%04x], kernel reported alias "
336 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
337 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
338 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
339 PCI_FUNC(pci_alias));
340
341 /*
342 * If we don't have a PCI DMA alias and the IVRS alias is on the same
343 * bus, then the IVRS table may know about a quirk that we don't.
344 */
345 if (pci_alias == devid &&
346 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
347 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
348 pdev->dma_alias_devfn = ivrs_alias & 0xff;
349 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
350 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
351 dev_name(dev));
352 }
353
354 return ivrs_alias;
355}
356
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600357static int iommu_init_device(struct device *dev)
358{
359 struct pci_dev *pdev = to_pci_dev(dev);
360 struct iommu_dev_data *dev_data;
361 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600362
363 if (dev->archdata.iommu)
364 return 0;
365
366 dev_data = find_dev_data(get_device_id(dev));
367 if (!dev_data)
368 return -ENOMEM;
369
Alex Williamsonc1931092014-07-03 09:51:24 -0600370 alias = get_alias(dev);
371
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600372 if (alias != dev_data->devid) {
373 struct iommu_dev_data *alias_data;
374
375 alias_data = find_dev_data(alias);
376 if (alias_data == NULL) {
377 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
378 dev_name(dev));
379 free_dev_data(dev_data);
380 return -ENOTSUPP;
381 }
382 dev_data->alias_data = alias_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600383
Joerg Roedelf251e182014-08-05 16:48:10 +0200384 /* Add device to the alias_list */
385 list_add(&dev_data->alias_list, &alias_data->alias_list);
Radmila Kompováe644a012013-05-02 17:24:25 +0200386 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600387
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100388 if (pci_iommuv2_capable(pdev)) {
389 struct amd_iommu *iommu;
390
391 iommu = amd_iommu_rlookup_table[dev_data->devid];
392 dev_data->iommu_v2 = iommu->is_iommu_v2;
393 }
394
Joerg Roedel657cbb62009-11-23 15:26:46 +0100395 dev->archdata.iommu = dev_data;
396
Alex Williamson066f2e92014-06-12 16:12:37 -0600397 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
398 dev);
399
Joerg Roedel657cbb62009-11-23 15:26:46 +0100400 return 0;
401}
402
Joerg Roedel26018872011-06-06 16:50:14 +0200403static void iommu_ignore_device(struct device *dev)
404{
405 u16 devid, alias;
406
407 devid = get_device_id(dev);
408 alias = amd_iommu_alias_table[devid];
409
410 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
411 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
412
413 amd_iommu_rlookup_table[devid] = NULL;
414 amd_iommu_rlookup_table[alias] = NULL;
415}
416
Joerg Roedel657cbb62009-11-23 15:26:46 +0100417static void iommu_uninit_device(struct device *dev)
418{
Alex Williamsonc1931092014-07-03 09:51:24 -0600419 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
420
421 if (!dev_data)
422 return;
423
Alex Williamson066f2e92014-06-12 16:12:37 -0600424 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
425 dev);
426
Alex Williamson9dcd6132012-05-30 14:19:07 -0600427 iommu_group_remove_device(dev);
428
Alex Williamsonc1931092014-07-03 09:51:24 -0600429 /* Unlink from alias, it may change if another device is re-plugged */
430 dev_data->alias_data = NULL;
431
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200432 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600433 * We keep dev_data around for unplugged devices and reuse it when the
434 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200435 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100436}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100437
438void __init amd_iommu_uninit_devices(void)
439{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200440 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100441 struct pci_dev *pdev = NULL;
442
443 for_each_pci_dev(pdev) {
444
445 if (!check_device(&pdev->dev))
446 continue;
447
448 iommu_uninit_device(&pdev->dev);
449 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200450
451 /* Free all of our dev_data structures */
452 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
453 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100454}
455
456int __init amd_iommu_init_devices(void)
457{
458 struct pci_dev *pdev = NULL;
459 int ret = 0;
460
461 for_each_pci_dev(pdev) {
462
463 if (!check_device(&pdev->dev))
464 continue;
465
466 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200467 if (ret == -ENOTSUPP)
468 iommu_ignore_device(&pdev->dev);
469 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100470 goto out_free;
471 }
472
Alex Williamson25b11ce2014-09-19 10:03:13 -0600473 /*
474 * Initialize IOMMU groups only after iommu_init_device() has
475 * had a chance to populate any IVRS defined aliases.
476 */
477 for_each_pci_dev(pdev) {
478 if (check_device(&pdev->dev))
479 init_iommu_group(&pdev->dev);
480 }
481
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100482 return 0;
483
484out_free:
485
486 amd_iommu_uninit_devices();
487
488 return ret;
489}
Joerg Roedel7f265082008-12-12 13:50:21 +0100490#ifdef CONFIG_AMD_IOMMU_STATS
491
492/*
493 * Initialization code for statistics collection
494 */
495
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100496DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100497DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100498DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100499DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100500DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100501DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100502DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100503DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100504DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100505DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100506DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100507DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100508DECLARE_STATS_COUNTER(complete_ppr);
509DECLARE_STATS_COUNTER(invalidate_iotlb);
510DECLARE_STATS_COUNTER(invalidate_iotlb_all);
511DECLARE_STATS_COUNTER(pri_requests);
512
Joerg Roedel7f265082008-12-12 13:50:21 +0100513static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100514static struct dentry *de_fflush;
515
516static void amd_iommu_stats_add(struct __iommu_counter *cnt)
517{
518 if (stats_dir == NULL)
519 return;
520
521 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
522 &cnt->value);
523}
524
525static void amd_iommu_stats_init(void)
526{
527 stats_dir = debugfs_create_dir("amd-iommu", NULL);
528 if (stats_dir == NULL)
529 return;
530
Joerg Roedel7f265082008-12-12 13:50:21 +0100531 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300532 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100533
534 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100535 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100536 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100537 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100538 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100539 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100540 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100541 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100542 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100543 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100544 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100545 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100546 amd_iommu_stats_add(&complete_ppr);
547 amd_iommu_stats_add(&invalidate_iotlb);
548 amd_iommu_stats_add(&invalidate_iotlb_all);
549 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100550}
551
552#endif
553
Joerg Roedel431b2a22008-07-11 17:14:22 +0200554/****************************************************************************
555 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200556 * Interrupt handling functions
557 *
558 ****************************************************************************/
559
Joerg Roedele3e59872009-09-03 14:02:10 +0200560static void dump_dte_entry(u16 devid)
561{
562 int i;
563
Joerg Roedelee6c2862011-11-09 12:06:03 +0100564 for (i = 0; i < 4; ++i)
565 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200566 amd_iommu_dev_table[devid].data[i]);
567}
568
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200569static void dump_command(unsigned long phys_addr)
570{
571 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
572 int i;
573
574 for (i = 0; i < 4; ++i)
575 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
576}
577
Joerg Roedela345b232009-09-03 15:01:43 +0200578static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200580 int type, devid, domid, flags;
581 volatile u32 *event = __evt;
582 int count = 0;
583 u64 address;
584
585retry:
586 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
587 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
588 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
589 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
590 address = (u64)(((u64)event[3]) << 32) | event[2];
591
592 if (type == 0) {
593 /* Did we hit the erratum? */
594 if (++count == LOOP_TIMEOUT) {
595 pr_err("AMD-Vi: No event written to event log\n");
596 return;
597 }
598 udelay(1);
599 goto retry;
600 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200601
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200602 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200603
604 switch (type) {
605 case EVENT_TYPE_ILL_DEV:
606 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
607 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700608 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200609 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200610 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200611 break;
612 case EVENT_TYPE_IO_FAULT:
613 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
614 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700615 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200616 domid, address, flags);
617 break;
618 case EVENT_TYPE_DEV_TAB_ERR:
619 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
620 "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 address, flags);
623 break;
624 case EVENT_TYPE_PAGE_TAB_ERR:
625 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
626 "domain=0x%04x 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 domid, address, flags);
629 break;
630 case EVENT_TYPE_ILL_CMD:
631 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200632 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200633 break;
634 case EVENT_TYPE_CMD_HARD_ERR:
635 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
636 "flags=0x%04x]\n", address, flags);
637 break;
638 case EVENT_TYPE_IOTLB_INV_TO:
639 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
640 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700641 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200642 address);
643 break;
644 case EVENT_TYPE_INV_DEV_REQ:
645 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
646 "address=0x%016llx flags=0x%04x]\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, flags);
649 break;
650 default:
651 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
652 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200653
654 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200655}
656
657static void iommu_poll_events(struct amd_iommu *iommu)
658{
659 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200660
661 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
662 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
663
664 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200665 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200666 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
667 }
668
669 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200670}
671
Joerg Roedeleee53532012-06-01 15:20:23 +0200672static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100673{
674 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100675
Joerg Roedel399be2f2011-12-01 16:53:47 +0100676 INC_STATS_COUNTER(pri_requests);
677
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
679 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
680 return;
681 }
682
683 fault.address = raw[1];
684 fault.pasid = PPR_PASID(raw[0]);
685 fault.device_id = PPR_DEVID(raw[0]);
686 fault.tag = PPR_TAG(raw[0]);
687 fault.flags = PPR_FLAGS(raw[0]);
688
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100689 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
690}
691
692static void iommu_poll_ppr_log(struct amd_iommu *iommu)
693{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100694 u32 head, tail;
695
696 if (iommu->ppr_log == NULL)
697 return;
698
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100699 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
700 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
701
702 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200703 volatile u64 *raw;
704 u64 entry[2];
705 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100708
Joerg Roedeleee53532012-06-01 15:20:23 +0200709 /*
710 * Hardware bug: Interrupt may arrive before the entry is
711 * written to memory. If this happens we need to wait for the
712 * entry to arrive.
713 */
714 for (i = 0; i < LOOP_TIMEOUT; ++i) {
715 if (PPR_REQ_TYPE(raw[0]) != 0)
716 break;
717 udelay(1);
718 }
719
720 /* Avoid memcpy function-call overhead */
721 entry[0] = raw[0];
722 entry[1] = raw[1];
723
724 /*
725 * To detect the hardware bug we need to clear the entry
726 * back to zero.
727 */
728 raw[0] = raw[1] = 0UL;
729
730 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100731 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
732 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200733
Joerg Roedeleee53532012-06-01 15:20:23 +0200734 /* Handle PPR entry */
735 iommu_handle_ppr_entry(iommu, entry);
736
Joerg Roedeleee53532012-06-01 15:20:23 +0200737 /* Refresh ring-buffer information */
738 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100739 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
740 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100741}
742
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200743irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200744{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500745 struct amd_iommu *iommu = (struct amd_iommu *) data;
746 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200747
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500748 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
749 /* Enable EVT and PPR interrupts again */
750 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
751 iommu->mmio_base + MMIO_STATUS_OFFSET);
752
753 if (status & MMIO_STATUS_EVT_INT_MASK) {
754 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
755 iommu_poll_events(iommu);
756 }
757
758 if (status & MMIO_STATUS_PPR_INT_MASK) {
759 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
760 iommu_poll_ppr_log(iommu);
761 }
762
763 /*
764 * Hardware bug: ERBT1312
765 * When re-enabling interrupt (by writing 1
766 * to clear the bit), the hardware might also try to set
767 * the interrupt bit in the event status register.
768 * In this scenario, the bit will be set, and disable
769 * subsequent interrupts.
770 *
771 * Workaround: The IOMMU driver should read back the
772 * status register and check if the interrupt bits are cleared.
773 * If not, driver will need to go through the interrupt handler
774 * again and re-clear the bits
775 */
776 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100777 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200778 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200779}
780
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200781irqreturn_t amd_iommu_int_handler(int irq, void *data)
782{
783 return IRQ_WAKE_THREAD;
784}
785
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200786/****************************************************************************
787 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200788 * IOMMU command queuing functions
789 *
790 ****************************************************************************/
791
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200792static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200793{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200794 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200795
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200796 while (*sem == 0 && i < LOOP_TIMEOUT) {
797 udelay(1);
798 i += 1;
799 }
800
801 if (i == LOOP_TIMEOUT) {
802 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
803 return -EIO;
804 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200805
806 return 0;
807}
808
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200809static void copy_cmd_to_buffer(struct amd_iommu *iommu,
810 struct iommu_cmd *cmd,
811 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200812{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200813 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200814
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200815 target = iommu->cmd_buf + tail;
816 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200817
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200818 /* Copy command to buffer */
819 memcpy(target, cmd, sizeof(*cmd));
820
821 /* Tell the IOMMU about it */
822 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
823}
824
Joerg Roedel815b33f2011-04-06 17:26:49 +0200825static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200826{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200827 WARN_ON(address & 0x7ULL);
828
Joerg Roedelded46732011-04-06 10:53:48 +0200829 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200830 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
831 cmd->data[1] = upper_32_bits(__pa(address));
832 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200833 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
834}
835
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200836static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
837{
838 memset(cmd, 0, sizeof(*cmd));
839 cmd->data[0] = devid;
840 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
841}
842
Joerg Roedel11b64022011-04-06 11:49:28 +0200843static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
844 size_t size, u16 domid, int pde)
845{
846 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100847 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200848
849 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100850 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200851
852 if (pages > 1) {
853 /*
854 * If we have to flush more than one page, flush all
855 * TLB entries for this domain
856 */
857 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100858 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200859 }
860
861 address &= PAGE_MASK;
862
863 memset(cmd, 0, sizeof(*cmd));
864 cmd->data[1] |= domid;
865 cmd->data[2] = lower_32_bits(address);
866 cmd->data[3] = upper_32_bits(address);
867 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
868 if (s) /* size bit - we flush more than one 4kb page */
869 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200870 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200871 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
872}
873
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200874static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
875 u64 address, size_t size)
876{
877 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100878 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200879
880 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100881 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200882
883 if (pages > 1) {
884 /*
885 * If we have to flush more than one page, flush all
886 * TLB entries for this domain
887 */
888 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100889 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200890 }
891
892 address &= PAGE_MASK;
893
894 memset(cmd, 0, sizeof(*cmd));
895 cmd->data[0] = devid;
896 cmd->data[0] |= (qdep & 0xff) << 24;
897 cmd->data[1] = devid;
898 cmd->data[2] = lower_32_bits(address);
899 cmd->data[3] = upper_32_bits(address);
900 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
901 if (s)
902 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
903}
904
Joerg Roedel22e266c2011-11-21 15:59:08 +0100905static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
906 u64 address, bool size)
907{
908 memset(cmd, 0, sizeof(*cmd));
909
910 address &= ~(0xfffULL);
911
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600912 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100913 cmd->data[1] = domid;
914 cmd->data[2] = lower_32_bits(address);
915 cmd->data[3] = upper_32_bits(address);
916 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
917 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
918 if (size)
919 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
920 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
921}
922
923static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
924 int qdep, u64 address, bool size)
925{
926 memset(cmd, 0, sizeof(*cmd));
927
928 address &= ~(0xfffULL);
929
930 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600931 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100932 cmd->data[0] |= (qdep & 0xff) << 24;
933 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600934 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100935 cmd->data[2] = lower_32_bits(address);
936 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
937 cmd->data[3] = upper_32_bits(address);
938 if (size)
939 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
940 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
941}
942
Joerg Roedelc99afa22011-11-21 18:19:25 +0100943static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
944 int status, int tag, bool gn)
945{
946 memset(cmd, 0, sizeof(*cmd));
947
948 cmd->data[0] = devid;
949 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600950 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100951 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
952 }
953 cmd->data[3] = tag & 0x1ff;
954 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
955
956 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
957}
958
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200959static void build_inv_all(struct iommu_cmd *cmd)
960{
961 memset(cmd, 0, sizeof(*cmd));
962 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200963}
964
Joerg Roedel7ef27982012-06-21 16:46:04 +0200965static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
966{
967 memset(cmd, 0, sizeof(*cmd));
968 cmd->data[0] = devid;
969 CMD_SET_TYPE(cmd, CMD_INV_IRT);
970}
971
Joerg Roedel431b2a22008-07-11 17:14:22 +0200972/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200973 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200974 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200975 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200976static int iommu_queue_command_sync(struct amd_iommu *iommu,
977 struct iommu_cmd *cmd,
978 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200979{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200980 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200981 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200982
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200983 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100984
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200985again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200986 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200987
988 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
989 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
990 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
991 left = (head - next_tail) % iommu->cmd_buf_size;
992
993 if (left <= 2) {
994 struct iommu_cmd sync_cmd;
995 volatile u64 sem = 0;
996 int ret;
997
998 build_completion_wait(&sync_cmd, (u64)&sem);
999 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
1000
1001 spin_unlock_irqrestore(&iommu->lock, flags);
1002
1003 if ((ret = wait_on_sem(&sem)) != 0)
1004 return ret;
1005
1006 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001007 }
1008
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001009 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001010
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001011 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001012 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001013
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001014 spin_unlock_irqrestore(&iommu->lock, flags);
1015
Joerg Roedel815b33f2011-04-06 17:26:49 +02001016 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001017}
1018
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001019static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1020{
1021 return iommu_queue_command_sync(iommu, cmd, true);
1022}
1023
Joerg Roedel8d201962008-12-02 20:34:41 +01001024/*
1025 * This function queues a completion wait command into the command
1026 * buffer of an IOMMU
1027 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001028static int iommu_completion_wait(struct amd_iommu *iommu)
1029{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001030 struct iommu_cmd cmd;
1031 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001032 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001033
1034 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001035 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001036
Joerg Roedel815b33f2011-04-06 17:26:49 +02001037 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001038
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001039 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001040 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001041 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001042
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001043 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001044}
1045
Joerg Roedeld8c13082011-04-06 18:51:26 +02001046static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001047{
1048 struct iommu_cmd cmd;
1049
Joerg Roedeld8c13082011-04-06 18:51:26 +02001050 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001051
Joerg Roedeld8c13082011-04-06 18:51:26 +02001052 return iommu_queue_command(iommu, &cmd);
1053}
1054
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001055static void iommu_flush_dte_all(struct amd_iommu *iommu)
1056{
1057 u32 devid;
1058
1059 for (devid = 0; devid <= 0xffff; ++devid)
1060 iommu_flush_dte(iommu, devid);
1061
1062 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001063}
1064
1065/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001066 * This function uses heavy locking and may disable irqs for some time. But
1067 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001068 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001069static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001070{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001071 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001072
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001073 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1074 struct iommu_cmd cmd;
1075 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1076 dom_id, 1);
1077 iommu_queue_command(iommu, &cmd);
1078 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001079
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001080 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001081}
1082
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001083static void iommu_flush_all(struct amd_iommu *iommu)
1084{
1085 struct iommu_cmd cmd;
1086
1087 build_inv_all(&cmd);
1088
1089 iommu_queue_command(iommu, &cmd);
1090 iommu_completion_wait(iommu);
1091}
1092
Joerg Roedel7ef27982012-06-21 16:46:04 +02001093static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1094{
1095 struct iommu_cmd cmd;
1096
1097 build_inv_irt(&cmd, devid);
1098
1099 iommu_queue_command(iommu, &cmd);
1100}
1101
1102static void iommu_flush_irt_all(struct amd_iommu *iommu)
1103{
1104 u32 devid;
1105
1106 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1107 iommu_flush_irt(iommu, devid);
1108
1109 iommu_completion_wait(iommu);
1110}
1111
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001112void iommu_flush_all_caches(struct amd_iommu *iommu)
1113{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001114 if (iommu_feature(iommu, FEATURE_IA)) {
1115 iommu_flush_all(iommu);
1116 } else {
1117 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001118 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001119 iommu_flush_tlb_all(iommu);
1120 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001121}
1122
Joerg Roedel431b2a22008-07-11 17:14:22 +02001123/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001124 * Command send function for flushing on-device TLB
1125 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001126static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1127 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001128{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001129 struct amd_iommu *iommu;
1130 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001131 int qdep;
1132
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001133 qdep = dev_data->ats.qdep;
1134 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001135
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001136 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001137
1138 return iommu_queue_command(iommu, &cmd);
1139}
1140
1141/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001142 * Command send function for invalidating a device table entry
1143 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001144static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001145{
1146 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001147 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001148
Joerg Roedel6c542042011-06-09 17:07:31 +02001149 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001150
Joerg Roedelf62dda62011-06-09 12:55:35 +02001151 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001152 if (ret)
1153 return ret;
1154
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001155 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001156 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001157
1158 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001159}
1160
Joerg Roedel431b2a22008-07-11 17:14:22 +02001161/*
1162 * TLB invalidation function which is called from the mapping functions.
1163 * It invalidates a single PTE if the range to flush is within a single
1164 * page. Otherwise it flushes the whole TLB of the IOMMU.
1165 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001166static void __domain_flush_pages(struct protection_domain *domain,
1167 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001168{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001169 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001170 struct iommu_cmd cmd;
1171 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001172
Joerg Roedel11b64022011-04-06 11:49:28 +02001173 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001174
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001175 for (i = 0; i < amd_iommus_present; ++i) {
1176 if (!domain->dev_iommu[i])
1177 continue;
1178
1179 /*
1180 * Devices of this domain are behind this IOMMU
1181 * We need a TLB flush
1182 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001183 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001184 }
1185
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001186 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001187
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001188 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001189 continue;
1190
Joerg Roedel6c542042011-06-09 17:07:31 +02001191 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001192 }
1193
Joerg Roedel11b64022011-04-06 11:49:28 +02001194 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001195}
1196
Joerg Roedel17b124b2011-04-06 18:01:35 +02001197static void domain_flush_pages(struct protection_domain *domain,
1198 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001199{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001200 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001201}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001202
Joerg Roedel1c655772008-09-04 18:40:05 +02001203/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001204static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001205{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001206 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001207}
1208
Chris Wright42a49f92009-06-15 15:42:00 +02001209/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001210static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001211{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001212 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1213}
1214
1215static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001216{
1217 int i;
1218
1219 for (i = 0; i < amd_iommus_present; ++i) {
1220 if (!domain->dev_iommu[i])
1221 continue;
1222
1223 /*
1224 * Devices of this domain are behind this IOMMU
1225 * We need to wait for completion of all commands.
1226 */
1227 iommu_completion_wait(amd_iommus[i]);
1228 }
1229}
1230
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001231
Joerg Roedel43f49602008-12-02 21:01:12 +01001232/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001233 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001234 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001235static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001236{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001237 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001238
1239 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001240 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001241}
1242
Joerg Roedel431b2a22008-07-11 17:14:22 +02001243/****************************************************************************
1244 *
1245 * The functions below are used the create the page table mappings for
1246 * unity mapped regions.
1247 *
1248 ****************************************************************************/
1249
1250/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001251 * This function is used to add another level to an IO page table. Adding
1252 * another level increases the size of the address space by 9 bits to a size up
1253 * to 64 bits.
1254 */
1255static bool increase_address_space(struct protection_domain *domain,
1256 gfp_t gfp)
1257{
1258 u64 *pte;
1259
1260 if (domain->mode == PAGE_MODE_6_LEVEL)
1261 /* address space already 64 bit large */
1262 return false;
1263
1264 pte = (void *)get_zeroed_page(gfp);
1265 if (!pte)
1266 return false;
1267
1268 *pte = PM_LEVEL_PDE(domain->mode,
1269 virt_to_phys(domain->pt_root));
1270 domain->pt_root = pte;
1271 domain->mode += 1;
1272 domain->updated = true;
1273
1274 return true;
1275}
1276
1277static u64 *alloc_pte(struct protection_domain *domain,
1278 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001279 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001280 u64 **pte_page,
1281 gfp_t gfp)
1282{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001283 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001284 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001285
1286 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001287
1288 while (address > PM_LEVEL_SIZE(domain->mode))
1289 increase_address_space(domain, gfp);
1290
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001291 level = domain->mode - 1;
1292 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1293 address = PAGE_SIZE_ALIGN(address, page_size);
1294 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001295
1296 while (level > end_lvl) {
1297 if (!IOMMU_PTE_PRESENT(*pte)) {
1298 page = (u64 *)get_zeroed_page(gfp);
1299 if (!page)
1300 return NULL;
1301 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1302 }
1303
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001304 /* No level skipping support yet */
1305 if (PM_PTE_LEVEL(*pte) != level)
1306 return NULL;
1307
Joerg Roedel308973d2009-11-24 17:43:32 +01001308 level -= 1;
1309
1310 pte = IOMMU_PTE_PAGE(*pte);
1311
1312 if (pte_page && level == end_lvl)
1313 *pte_page = pte;
1314
1315 pte = &pte[PM_LEVEL_INDEX(level, address)];
1316 }
1317
1318 return pte;
1319}
1320
1321/*
1322 * This function checks if there is a PTE for a given dma address. If
1323 * there is one, it returns the pointer to it.
1324 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001325static u64 *fetch_pte(struct protection_domain *domain,
1326 unsigned long address,
1327 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001328{
1329 int level;
1330 u64 *pte;
1331
Joerg Roedel24cd7722010-01-19 17:27:39 +01001332 if (address > PM_LEVEL_SIZE(domain->mode))
1333 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001334
Joerg Roedel3039ca12015-04-01 14:58:48 +02001335 level = domain->mode - 1;
1336 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1337 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001338
1339 while (level > 0) {
1340
1341 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001342 if (!IOMMU_PTE_PRESENT(*pte))
1343 return NULL;
1344
Joerg Roedel24cd7722010-01-19 17:27:39 +01001345 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001346 if (PM_PTE_LEVEL(*pte) == 7 ||
1347 PM_PTE_LEVEL(*pte) == 0)
1348 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001349
1350 /* No level skipping support yet */
1351 if (PM_PTE_LEVEL(*pte) != level)
1352 return NULL;
1353
Joerg Roedel308973d2009-11-24 17:43:32 +01001354 level -= 1;
1355
Joerg Roedel24cd7722010-01-19 17:27:39 +01001356 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001357 pte = IOMMU_PTE_PAGE(*pte);
1358 pte = &pte[PM_LEVEL_INDEX(level, address)];
1359 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1360 }
1361
1362 if (PM_PTE_LEVEL(*pte) == 0x07) {
1363 unsigned long pte_mask;
1364
1365 /*
1366 * If we have a series of large PTEs, make
1367 * sure to return a pointer to the first one.
1368 */
1369 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1370 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1371 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001372 }
1373
1374 return pte;
1375}
1376
1377/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001378 * Generic mapping functions. It maps a physical address into a DMA
1379 * address space. It allocates the page table pages if necessary.
1380 * In the future it can be extended to a generic mapping function
1381 * supporting all features of AMD IOMMU page tables like level skipping
1382 * and full 64 bit address spaces.
1383 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001384static int iommu_map_page(struct protection_domain *dom,
1385 unsigned long bus_addr,
1386 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001387 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001388 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001389{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001390 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001391 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001392
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001393 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001394 return -EINVAL;
1395
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001396 bus_addr = PAGE_ALIGN(bus_addr);
1397 phys_addr = PAGE_ALIGN(phys_addr);
1398 count = PAGE_SIZE_PTE_COUNT(page_size);
1399 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001400
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001401 if (!pte)
1402 return -ENOMEM;
1403
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001404 for (i = 0; i < count; ++i)
1405 if (IOMMU_PTE_PRESENT(pte[i]))
1406 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001407
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001408 if (page_size > PAGE_SIZE) {
1409 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1410 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1411 } else
1412 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1413
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001414 if (prot & IOMMU_PROT_IR)
1415 __pte |= IOMMU_PTE_IR;
1416 if (prot & IOMMU_PROT_IW)
1417 __pte |= IOMMU_PTE_IW;
1418
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001419 for (i = 0; i < count; ++i)
1420 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001421
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001422 update_domain(dom);
1423
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001424 return 0;
1425}
1426
Joerg Roedel24cd7722010-01-19 17:27:39 +01001427static unsigned long iommu_unmap_page(struct protection_domain *dom,
1428 unsigned long bus_addr,
1429 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001430{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001431 unsigned long long unmapped;
1432 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001433 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001434
Joerg Roedel24cd7722010-01-19 17:27:39 +01001435 BUG_ON(!is_power_of_2(page_size));
1436
1437 unmapped = 0;
1438
1439 while (unmapped < page_size) {
1440
Joerg Roedel71b390e2015-04-01 14:58:49 +02001441 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001442
Joerg Roedel71b390e2015-04-01 14:58:49 +02001443 if (pte) {
1444 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001445
Joerg Roedel71b390e2015-04-01 14:58:49 +02001446 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001447 for (i = 0; i < count; i++)
1448 pte[i] = 0ULL;
1449 }
1450
1451 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1452 unmapped += unmap_size;
1453 }
1454
Alex Williamson60d0ca32013-06-21 14:33:19 -06001455 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001456
1457 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001458}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001459
Joerg Roedel431b2a22008-07-11 17:14:22 +02001460/*
1461 * This function checks if a specific unity mapping entry is needed for
1462 * this specific IOMMU.
1463 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001464static int iommu_for_unity_map(struct amd_iommu *iommu,
1465 struct unity_map_entry *entry)
1466{
1467 u16 bdf, i;
1468
1469 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1470 bdf = amd_iommu_alias_table[i];
1471 if (amd_iommu_rlookup_table[bdf] == iommu)
1472 return 1;
1473 }
1474
1475 return 0;
1476}
1477
Joerg Roedel431b2a22008-07-11 17:14:22 +02001478/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001479 * This function actually applies the mapping to the page table of the
1480 * dma_ops domain.
1481 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001482static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1483 struct unity_map_entry *e)
1484{
1485 u64 addr;
1486 int ret;
1487
1488 for (addr = e->address_start; addr < e->address_end;
1489 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001490 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001491 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001492 if (ret)
1493 return ret;
1494 /*
1495 * if unity mapping is in aperture range mark the page
1496 * as allocated in the aperture
1497 */
1498 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001499 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001500 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001501 }
1502
1503 return 0;
1504}
1505
Joerg Roedel431b2a22008-07-11 17:14:22 +02001506/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001507 * Init the unity mappings for a specific IOMMU in the system
1508 *
1509 * Basically iterates over all unity mapping entries and applies them to
1510 * the default domain DMA of that IOMMU if necessary.
1511 */
1512static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1513{
1514 struct unity_map_entry *entry;
1515 int ret;
1516
1517 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1518 if (!iommu_for_unity_map(iommu, entry))
1519 continue;
1520 ret = dma_ops_unity_map(iommu->default_dom, entry);
1521 if (ret)
1522 return ret;
1523 }
1524
1525 return 0;
1526}
1527
1528/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001529 * Inits the unity mappings required for a specific device
1530 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001531static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1532 u16 devid)
1533{
1534 struct unity_map_entry *e;
1535 int ret;
1536
1537 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1538 if (!(devid >= e->devid_start && devid <= e->devid_end))
1539 continue;
1540 ret = dma_ops_unity_map(dma_dom, e);
1541 if (ret)
1542 return ret;
1543 }
1544
1545 return 0;
1546}
1547
Joerg Roedel431b2a22008-07-11 17:14:22 +02001548/****************************************************************************
1549 *
1550 * The next functions belong to the address allocator for the dma_ops
1551 * interface functions. They work like the allocators in the other IOMMU
1552 * drivers. Its basically a bitmap which marks the allocated pages in
1553 * the aperture. Maybe it could be enhanced in the future to a more
1554 * efficient allocator.
1555 *
1556 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001557
Joerg Roedel431b2a22008-07-11 17:14:22 +02001558/*
Joerg Roedel384de722009-05-15 12:30:05 +02001559 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001560 *
1561 * called with domain->lock held
1562 */
Joerg Roedel384de722009-05-15 12:30:05 +02001563
Joerg Roedel9cabe892009-05-18 16:38:55 +02001564/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001565 * Used to reserve address ranges in the aperture (e.g. for exclusion
1566 * ranges.
1567 */
1568static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1569 unsigned long start_page,
1570 unsigned int pages)
1571{
1572 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1573
1574 if (start_page + pages > last_page)
1575 pages = last_page - start_page;
1576
1577 for (i = start_page; i < start_page + pages; ++i) {
1578 int index = i / APERTURE_RANGE_PAGES;
1579 int page = i % APERTURE_RANGE_PAGES;
1580 __set_bit(page, dom->aperture[index]->bitmap);
1581 }
1582}
1583
1584/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001585 * This function is used to add a new aperture range to an existing
1586 * aperture in case of dma_ops domain allocation or address allocation
1587 * failure.
1588 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001589static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001590 bool populate, gfp_t gfp)
1591{
1592 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001593 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001594 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001595
Joerg Roedelf5e97052009-05-22 12:31:53 +02001596#ifdef CONFIG_IOMMU_STRESS
1597 populate = false;
1598#endif
1599
Joerg Roedel9cabe892009-05-18 16:38:55 +02001600 if (index >= APERTURE_MAX_RANGES)
1601 return -ENOMEM;
1602
1603 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1604 if (!dma_dom->aperture[index])
1605 return -ENOMEM;
1606
1607 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1608 if (!dma_dom->aperture[index]->bitmap)
1609 goto out_free;
1610
1611 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1612
1613 if (populate) {
1614 unsigned long address = dma_dom->aperture_size;
1615 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1616 u64 *pte, *pte_page;
1617
1618 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001619 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001620 &pte_page, gfp);
1621 if (!pte)
1622 goto out_free;
1623
1624 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1625
1626 address += APERTURE_RANGE_SIZE / 64;
1627 }
1628 }
1629
Joerg Roedel17f5b562011-07-06 17:14:44 +02001630 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001631 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1632
Joerg Roedel17f5b562011-07-06 17:14:44 +02001633 /* Reserve address range used for MSI messages */
1634 if (old_size < MSI_ADDR_BASE_LO &&
1635 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1636 unsigned long spage;
1637 int pages;
1638
1639 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1640 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1641
1642 dma_ops_reserve_addresses(dma_dom, spage, pages);
1643 }
1644
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001645 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001646 for_each_iommu(iommu) {
1647 if (iommu->exclusion_start &&
1648 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1649 && iommu->exclusion_start < dma_dom->aperture_size) {
1650 unsigned long startpage;
1651 int pages = iommu_num_pages(iommu->exclusion_start,
1652 iommu->exclusion_length,
1653 PAGE_SIZE);
1654 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1655 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1656 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001657 }
1658
1659 /*
1660 * Check for areas already mapped as present in the new aperture
1661 * range and mark those pages as reserved in the allocator. Such
1662 * mappings may already exist as a result of requested unity
1663 * mappings for devices.
1664 */
1665 for (i = dma_dom->aperture[index]->offset;
1666 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001667 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001668 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001669 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1670 continue;
1671
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001672 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1673 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001674 }
1675
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001676 update_domain(&dma_dom->domain);
1677
Joerg Roedel9cabe892009-05-18 16:38:55 +02001678 return 0;
1679
1680out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001681 update_domain(&dma_dom->domain);
1682
Joerg Roedel9cabe892009-05-18 16:38:55 +02001683 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1684
1685 kfree(dma_dom->aperture[index]);
1686 dma_dom->aperture[index] = NULL;
1687
1688 return -ENOMEM;
1689}
1690
Joerg Roedel384de722009-05-15 12:30:05 +02001691static unsigned long dma_ops_area_alloc(struct device *dev,
1692 struct dma_ops_domain *dom,
1693 unsigned int pages,
1694 unsigned long align_mask,
1695 u64 dma_mask,
1696 unsigned long start)
1697{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001698 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001699 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1700 int i = start >> APERTURE_RANGE_SHIFT;
1701 unsigned long boundary_size;
1702 unsigned long address = -1;
1703 unsigned long limit;
1704
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001705 next_bit >>= PAGE_SHIFT;
1706
Joerg Roedel384de722009-05-15 12:30:05 +02001707 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1708 PAGE_SIZE) >> PAGE_SHIFT;
1709
1710 for (;i < max_index; ++i) {
1711 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1712
1713 if (dom->aperture[i]->offset >= dma_mask)
1714 break;
1715
1716 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1717 dma_mask >> PAGE_SHIFT);
1718
1719 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1720 limit, next_bit, pages, 0,
1721 boundary_size, align_mask);
1722 if (address != -1) {
1723 address = dom->aperture[i]->offset +
1724 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001725 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001726 break;
1727 }
1728
1729 next_bit = 0;
1730 }
1731
1732 return address;
1733}
1734
Joerg Roedeld3086442008-06-26 21:27:57 +02001735static unsigned long dma_ops_alloc_addresses(struct device *dev,
1736 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001737 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001738 unsigned long align_mask,
1739 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001740{
Joerg Roedeld3086442008-06-26 21:27:57 +02001741 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001742
Joerg Roedelfe16f082009-05-22 12:27:53 +02001743#ifdef CONFIG_IOMMU_STRESS
1744 dom->next_address = 0;
1745 dom->need_flush = true;
1746#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001747
Joerg Roedel384de722009-05-15 12:30:05 +02001748 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001749 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001750
Joerg Roedel1c655772008-09-04 18:40:05 +02001751 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001752 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001753 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1754 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001755 dom->need_flush = true;
1756 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001757
Joerg Roedel384de722009-05-15 12:30:05 +02001758 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001759 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001760
1761 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1762
1763 return address;
1764}
1765
Joerg Roedel431b2a22008-07-11 17:14:22 +02001766/*
1767 * The address free function.
1768 *
1769 * called with domain->lock held
1770 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001771static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1772 unsigned long address,
1773 unsigned int pages)
1774{
Joerg Roedel384de722009-05-15 12:30:05 +02001775 unsigned i = address >> APERTURE_RANGE_SHIFT;
1776 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001777
Joerg Roedel384de722009-05-15 12:30:05 +02001778 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1779
Joerg Roedel47bccd62009-05-22 12:40:54 +02001780#ifdef CONFIG_IOMMU_STRESS
1781 if (i < 4)
1782 return;
1783#endif
1784
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001785 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001786 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001787
1788 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001789
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001790 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001791
Joerg Roedeld3086442008-06-26 21:27:57 +02001792}
1793
Joerg Roedel431b2a22008-07-11 17:14:22 +02001794/****************************************************************************
1795 *
1796 * The next functions belong to the domain allocation. A domain is
1797 * allocated for every IOMMU as the default domain. If device isolation
1798 * is enabled, every device get its own domain. The most important thing
1799 * about domains is the page table mapping the DMA address space they
1800 * contain.
1801 *
1802 ****************************************************************************/
1803
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001804/*
1805 * This function adds a protection domain to the global protection domain list
1806 */
1807static void add_domain_to_list(struct protection_domain *domain)
1808{
1809 unsigned long flags;
1810
1811 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1812 list_add(&domain->list, &amd_iommu_pd_list);
1813 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1814}
1815
1816/*
1817 * This function removes a protection domain to the global
1818 * protection domain list
1819 */
1820static void del_domain_from_list(struct protection_domain *domain)
1821{
1822 unsigned long flags;
1823
1824 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1825 list_del(&domain->list);
1826 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1827}
1828
Joerg Roedelec487d12008-06-26 21:27:58 +02001829static u16 domain_id_alloc(void)
1830{
1831 unsigned long flags;
1832 int id;
1833
1834 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1835 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1836 BUG_ON(id == 0);
1837 if (id > 0 && id < MAX_DOMAIN_ID)
1838 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1839 else
1840 id = 0;
1841 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1842
1843 return id;
1844}
1845
Joerg Roedela2acfb72008-12-02 18:28:53 +01001846static void domain_id_free(int id)
1847{
1848 unsigned long flags;
1849
1850 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1851 if (id > 0 && id < MAX_DOMAIN_ID)
1852 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1853 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1854}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001855
Joerg Roedel5c34c402013-06-20 20:22:58 +02001856#define DEFINE_FREE_PT_FN(LVL, FN) \
1857static void free_pt_##LVL (unsigned long __pt) \
1858{ \
1859 unsigned long p; \
1860 u64 *pt; \
1861 int i; \
1862 \
1863 pt = (u64 *)__pt; \
1864 \
1865 for (i = 0; i < 512; ++i) { \
1866 if (!IOMMU_PTE_PRESENT(pt[i])) \
1867 continue; \
1868 \
1869 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1870 FN(p); \
1871 } \
1872 free_page((unsigned long)pt); \
1873}
1874
1875DEFINE_FREE_PT_FN(l2, free_page)
1876DEFINE_FREE_PT_FN(l3, free_pt_l2)
1877DEFINE_FREE_PT_FN(l4, free_pt_l3)
1878DEFINE_FREE_PT_FN(l5, free_pt_l4)
1879DEFINE_FREE_PT_FN(l6, free_pt_l5)
1880
Joerg Roedel86db2e52008-12-02 18:20:21 +01001881static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001882{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001883 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001884
Joerg Roedel5c34c402013-06-20 20:22:58 +02001885 switch (domain->mode) {
1886 case PAGE_MODE_NONE:
1887 break;
1888 case PAGE_MODE_1_LEVEL:
1889 free_page(root);
1890 break;
1891 case PAGE_MODE_2_LEVEL:
1892 free_pt_l2(root);
1893 break;
1894 case PAGE_MODE_3_LEVEL:
1895 free_pt_l3(root);
1896 break;
1897 case PAGE_MODE_4_LEVEL:
1898 free_pt_l4(root);
1899 break;
1900 case PAGE_MODE_5_LEVEL:
1901 free_pt_l5(root);
1902 break;
1903 case PAGE_MODE_6_LEVEL:
1904 free_pt_l6(root);
1905 break;
1906 default:
1907 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001908 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001909}
1910
Joerg Roedelb16137b2011-11-21 16:50:23 +01001911static void free_gcr3_tbl_level1(u64 *tbl)
1912{
1913 u64 *ptr;
1914 int i;
1915
1916 for (i = 0; i < 512; ++i) {
1917 if (!(tbl[i] & GCR3_VALID))
1918 continue;
1919
1920 ptr = __va(tbl[i] & PAGE_MASK);
1921
1922 free_page((unsigned long)ptr);
1923 }
1924}
1925
1926static void free_gcr3_tbl_level2(u64 *tbl)
1927{
1928 u64 *ptr;
1929 int i;
1930
1931 for (i = 0; i < 512; ++i) {
1932 if (!(tbl[i] & GCR3_VALID))
1933 continue;
1934
1935 ptr = __va(tbl[i] & PAGE_MASK);
1936
1937 free_gcr3_tbl_level1(ptr);
1938 }
1939}
1940
Joerg Roedel52815b72011-11-17 17:24:28 +01001941static void free_gcr3_table(struct protection_domain *domain)
1942{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001943 if (domain->glx == 2)
1944 free_gcr3_tbl_level2(domain->gcr3_tbl);
1945 else if (domain->glx == 1)
1946 free_gcr3_tbl_level1(domain->gcr3_tbl);
1947 else if (domain->glx != 0)
1948 BUG();
1949
Joerg Roedel52815b72011-11-17 17:24:28 +01001950 free_page((unsigned long)domain->gcr3_tbl);
1951}
1952
Joerg Roedel431b2a22008-07-11 17:14:22 +02001953/*
1954 * Free a domain, only used if something went wrong in the
1955 * allocation path and we need to free an already allocated page table
1956 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001957static void dma_ops_domain_free(struct dma_ops_domain *dom)
1958{
Joerg Roedel384de722009-05-15 12:30:05 +02001959 int i;
1960
Joerg Roedelec487d12008-06-26 21:27:58 +02001961 if (!dom)
1962 return;
1963
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001964 del_domain_from_list(&dom->domain);
1965
Joerg Roedel86db2e52008-12-02 18:20:21 +01001966 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001967
Joerg Roedel384de722009-05-15 12:30:05 +02001968 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1969 if (!dom->aperture[i])
1970 continue;
1971 free_page((unsigned long)dom->aperture[i]->bitmap);
1972 kfree(dom->aperture[i]);
1973 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001974
1975 kfree(dom);
1976}
1977
Joerg Roedel431b2a22008-07-11 17:14:22 +02001978/*
1979 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001980 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001981 * structures required for the dma_ops interface
1982 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001983static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001984{
1985 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001986
1987 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1988 if (!dma_dom)
1989 return NULL;
1990
1991 spin_lock_init(&dma_dom->domain.lock);
1992
1993 dma_dom->domain.id = domain_id_alloc();
1994 if (dma_dom->domain.id == 0)
1995 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001996 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001997 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001998 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001999 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02002000 dma_dom->domain.priv = dma_dom;
2001 if (!dma_dom->domain.pt_root)
2002 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002003
Joerg Roedel1c655772008-09-04 18:40:05 +02002004 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02002005 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02002006
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002007 add_domain_to_list(&dma_dom->domain);
2008
Joerg Roedel576175c2009-11-23 19:08:46 +01002009 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02002010 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002011
Joerg Roedel431b2a22008-07-11 17:14:22 +02002012 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02002013 * mark the first page as allocated so we never return 0 as
2014 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02002015 */
Joerg Roedel384de722009-05-15 12:30:05 +02002016 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02002017 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02002018
Joerg Roedelec487d12008-06-26 21:27:58 +02002019
2020 return dma_dom;
2021
2022free_dma_dom:
2023 dma_ops_domain_free(dma_dom);
2024
2025 return NULL;
2026}
2027
Joerg Roedel431b2a22008-07-11 17:14:22 +02002028/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002029 * little helper function to check whether a given protection domain is a
2030 * dma_ops domain
2031 */
2032static bool dma_ops_domain(struct protection_domain *domain)
2033{
2034 return domain->flags & PD_DMA_OPS_MASK;
2035}
2036
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002037static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002038{
Joerg Roedel132bd682011-11-17 14:18:46 +01002039 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002040 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002041
Joerg Roedel132bd682011-11-17 14:18:46 +01002042 if (domain->mode != PAGE_MODE_NONE)
2043 pte_root = virt_to_phys(domain->pt_root);
2044
Joerg Roedel38ddf412008-09-11 10:38:32 +02002045 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2046 << DEV_ENTRY_MODE_SHIFT;
2047 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002048
Joerg Roedelee6c2862011-11-09 12:06:03 +01002049 flags = amd_iommu_dev_table[devid].data[1];
2050
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002051 if (ats)
2052 flags |= DTE_FLAG_IOTLB;
2053
Joerg Roedel52815b72011-11-17 17:24:28 +01002054 if (domain->flags & PD_IOMMUV2_MASK) {
2055 u64 gcr3 = __pa(domain->gcr3_tbl);
2056 u64 glx = domain->glx;
2057 u64 tmp;
2058
2059 pte_root |= DTE_FLAG_GV;
2060 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2061
2062 /* First mask out possible old values for GCR3 table */
2063 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2064 flags &= ~tmp;
2065
2066 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2067 flags &= ~tmp;
2068
2069 /* Encode GCR3 table into DTE */
2070 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2071 pte_root |= tmp;
2072
2073 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2074 flags |= tmp;
2075
2076 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2077 flags |= tmp;
2078 }
2079
Joerg Roedelee6c2862011-11-09 12:06:03 +01002080 flags &= ~(0xffffUL);
2081 flags |= domain->id;
2082
2083 amd_iommu_dev_table[devid].data[1] = flags;
2084 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002085}
2086
Joerg Roedel15898bb2009-11-24 15:39:42 +01002087static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002088{
Joerg Roedel355bf552008-12-08 12:02:41 +01002089 /* remove entry from the device table seen by the hardware */
2090 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2091 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002092
Joerg Roedelc5cca142009-10-09 18:31:20 +02002093 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002094}
2095
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002096static void do_attach(struct iommu_dev_data *dev_data,
2097 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002098{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002099 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002100 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002101
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002102 iommu = amd_iommu_rlookup_table[dev_data->devid];
2103 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002104
2105 /* Update data structures */
2106 dev_data->domain = domain;
2107 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002108 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002109
2110 /* Do reference counting */
2111 domain->dev_iommu[iommu->index] += 1;
2112 domain->dev_cnt += 1;
2113
2114 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002115 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002116}
2117
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002118static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002119{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002120 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002121
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002122 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002123
Joerg Roedelc4596112009-11-20 14:57:32 +01002124 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002125 dev_data->domain->dev_iommu[iommu->index] -= 1;
2126 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002127
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002128 /* Update data structures */
2129 dev_data->domain = NULL;
2130 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002131 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002132
2133 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002134 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002135}
2136
2137/*
2138 * If a device is not yet associated with a domain, this function does
2139 * assigns it visible for the hardware
2140 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002141static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002142 struct protection_domain *domain)
2143{
Joerg Roedel397111a2014-08-05 17:31:51 +02002144 struct iommu_dev_data *head, *entry;
Julia Lawall84fe6c12010-05-27 12:31:51 +02002145 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002146
Joerg Roedel15898bb2009-11-24 15:39:42 +01002147 /* lock domain */
2148 spin_lock(&domain->lock);
2149
Joerg Roedel397111a2014-08-05 17:31:51 +02002150 head = dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002151
Joerg Roedel397111a2014-08-05 17:31:51 +02002152 if (head->alias_data != NULL)
2153 head = head->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002154
Joerg Roedel397111a2014-08-05 17:31:51 +02002155 /* Now we have the root of the alias group, if any */
Joerg Roedel2b02b092011-06-09 17:48:39 +02002156
Joerg Roedel397111a2014-08-05 17:31:51 +02002157 ret = -EBUSY;
2158 if (head->domain != NULL)
2159 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002160
Joerg Roedel397111a2014-08-05 17:31:51 +02002161 /* Attach alias group root */
2162 do_attach(head, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002163
Joerg Roedel397111a2014-08-05 17:31:51 +02002164 /* Attach other devices in the alias group */
2165 list_for_each_entry(entry, &head->alias_list, alias_list)
2166 do_attach(entry, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002167
Julia Lawall84fe6c12010-05-27 12:31:51 +02002168 ret = 0;
2169
2170out_unlock:
2171
Joerg Roedel355bf552008-12-08 12:02:41 +01002172 /* ready */
2173 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002174
Julia Lawall84fe6c12010-05-27 12:31:51 +02002175 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002176}
2177
Joerg Roedel52815b72011-11-17 17:24:28 +01002178
2179static void pdev_iommuv2_disable(struct pci_dev *pdev)
2180{
2181 pci_disable_ats(pdev);
2182 pci_disable_pri(pdev);
2183 pci_disable_pasid(pdev);
2184}
2185
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002186/* FIXME: Change generic reset-function to do the same */
2187static int pri_reset_while_enabled(struct pci_dev *pdev)
2188{
2189 u16 control;
2190 int pos;
2191
Joerg Roedel46277b72011-12-07 14:34:02 +01002192 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002193 if (!pos)
2194 return -EINVAL;
2195
Joerg Roedel46277b72011-12-07 14:34:02 +01002196 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2197 control |= PCI_PRI_CTRL_RESET;
2198 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002199
2200 return 0;
2201}
2202
Joerg Roedel52815b72011-11-17 17:24:28 +01002203static int pdev_iommuv2_enable(struct pci_dev *pdev)
2204{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002205 bool reset_enable;
2206 int reqs, ret;
2207
2208 /* FIXME: Hardcode number of outstanding requests for now */
2209 reqs = 32;
2210 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2211 reqs = 1;
2212 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002213
2214 /* Only allow access to user-accessible pages */
2215 ret = pci_enable_pasid(pdev, 0);
2216 if (ret)
2217 goto out_err;
2218
2219 /* First reset the PRI state of the device */
2220 ret = pci_reset_pri(pdev);
2221 if (ret)
2222 goto out_err;
2223
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002224 /* Enable PRI */
2225 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002226 if (ret)
2227 goto out_err;
2228
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002229 if (reset_enable) {
2230 ret = pri_reset_while_enabled(pdev);
2231 if (ret)
2232 goto out_err;
2233 }
2234
Joerg Roedel52815b72011-11-17 17:24:28 +01002235 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2236 if (ret)
2237 goto out_err;
2238
2239 return 0;
2240
2241out_err:
2242 pci_disable_pri(pdev);
2243 pci_disable_pasid(pdev);
2244
2245 return ret;
2246}
2247
Joerg Roedelc99afa22011-11-21 18:19:25 +01002248/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002249#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002250
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002251static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002252{
Joerg Roedela3b93122012-04-12 12:49:26 +02002253 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002254 int pos;
2255
Joerg Roedel46277b72011-12-07 14:34:02 +01002256 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002257 if (!pos)
2258 return false;
2259
Joerg Roedela3b93122012-04-12 12:49:26 +02002260 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002261
Joerg Roedela3b93122012-04-12 12:49:26 +02002262 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002263}
2264
Joerg Roedel15898bb2009-11-24 15:39:42 +01002265/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002266 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002267 * assigns it visible for the hardware
2268 */
2269static int attach_device(struct device *dev,
2270 struct protection_domain *domain)
2271{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002272 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002273 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002274 unsigned long flags;
2275 int ret;
2276
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002277 dev_data = get_dev_data(dev);
2278
Joerg Roedel52815b72011-11-17 17:24:28 +01002279 if (domain->flags & PD_IOMMUV2_MASK) {
2280 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2281 return -EINVAL;
2282
2283 if (pdev_iommuv2_enable(pdev) != 0)
2284 return -EINVAL;
2285
2286 dev_data->ats.enabled = true;
2287 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002288 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002289 } else if (amd_iommu_iotlb_sup &&
2290 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002291 dev_data->ats.enabled = true;
2292 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2293 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002294
Joerg Roedel15898bb2009-11-24 15:39:42 +01002295 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002296 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002297 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2298
2299 /*
2300 * We might boot into a crash-kernel here. The crashed kernel
2301 * left the caches in the IOMMU dirty. So we have to flush
2302 * here to evict all dirty stuff.
2303 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002304 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002305
2306 return ret;
2307}
2308
2309/*
2310 * Removes a device from a protection domain (unlocked)
2311 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002312static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002313{
Joerg Roedel397111a2014-08-05 17:31:51 +02002314 struct iommu_dev_data *head, *entry;
Joerg Roedel2ca76272010-01-22 16:45:31 +01002315 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002316 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002317
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002318 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002319
Joerg Roedel2ca76272010-01-22 16:45:31 +01002320 domain = dev_data->domain;
2321
2322 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002323
Joerg Roedel397111a2014-08-05 17:31:51 +02002324 head = dev_data;
2325 if (head->alias_data != NULL)
2326 head = head->alias_data;
Joerg Roedel71f77582011-06-09 19:03:15 +02002327
Joerg Roedel397111a2014-08-05 17:31:51 +02002328 list_for_each_entry(entry, &head->alias_list, alias_list)
2329 do_detach(entry);
Joerg Roedel24100052009-11-25 15:59:57 +01002330
Joerg Roedel397111a2014-08-05 17:31:51 +02002331 do_detach(head);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002332
Joerg Roedel2ca76272010-01-22 16:45:31 +01002333 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002334
Joerg Roedel21129f72009-09-01 11:59:42 +02002335 /*
2336 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002337 * passthrough domain if it is detached from any other domain.
2338 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002339 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002340 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002341 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002342 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002343}
2344
2345/*
2346 * Removes a device from a protection domain (with devtable_lock held)
2347 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002348static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002349{
Joerg Roedel52815b72011-11-17 17:24:28 +01002350 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002351 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002352 unsigned long flags;
2353
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002354 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002355 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002356
Joerg Roedel355bf552008-12-08 12:02:41 +01002357 /* lock device table */
2358 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002359 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002360 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002361
Joerg Roedel52815b72011-11-17 17:24:28 +01002362 if (domain->flags & PD_IOMMUV2_MASK)
2363 pdev_iommuv2_disable(to_pci_dev(dev));
2364 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002365 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002366
2367 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002368}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002369
Joerg Roedel15898bb2009-11-24 15:39:42 +01002370/*
2371 * Find out the protection domain structure for a given PCI device. This
2372 * will give us the pointer to the page table root for example.
2373 */
2374static struct protection_domain *domain_for_device(struct device *dev)
2375{
Joerg Roedel71f77582011-06-09 19:03:15 +02002376 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002377 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002378 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002379
Joerg Roedel657cbb62009-11-23 15:26:46 +01002380 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002381
Joerg Roedel2b02b092011-06-09 17:48:39 +02002382 if (dev_data->domain)
2383 return dev_data->domain;
2384
Joerg Roedel71f77582011-06-09 19:03:15 +02002385 if (dev_data->alias_data != NULL) {
2386 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002387
2388 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2389 if (alias_data->domain != NULL) {
2390 __attach_device(dev_data, alias_data->domain);
2391 dom = alias_data->domain;
2392 }
2393 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002394 }
2395
Joerg Roedel15898bb2009-11-24 15:39:42 +01002396 return dom;
2397}
2398
Joerg Roedele275a2a2008-12-10 18:27:25 +01002399static int device_change_notifier(struct notifier_block *nb,
2400 unsigned long action, void *data)
2401{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002402 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002403 struct protection_domain *domain;
2404 struct iommu_dev_data *dev_data;
2405 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002406 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002407 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002408 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002409
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002410 if (!check_device(dev))
2411 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002412
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002413 devid = get_device_id(dev);
2414 iommu = amd_iommu_rlookup_table[devid];
2415 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002416
2417 switch (action) {
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002418 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002419
2420 iommu_init_device(dev);
Alex Williamson25b11ce2014-09-19 10:03:13 -06002421 init_iommu_group(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002422
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002423 /*
2424 * dev_data is still NULL and
2425 * got initialized in iommu_init_device
2426 */
2427 dev_data = get_dev_data(dev);
2428
2429 if (iommu_pass_through || dev_data->iommu_v2) {
2430 dev_data->passthrough = true;
2431 attach_device(dev, pt_domain);
2432 break;
2433 }
2434
Joerg Roedel657cbb62009-11-23 15:26:46 +01002435 domain = domain_for_device(dev);
2436
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002437 /* allocate a protection domain if a device is added */
2438 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002439 if (!dma_domain) {
2440 dma_domain = dma_ops_domain_alloc();
2441 if (!dma_domain)
2442 goto out;
2443 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002444
Joerg Roedelc2a28762013-03-26 22:48:23 +01002445 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2446 list_add_tail(&dma_domain->list, &iommu_pd_list);
2447 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2448 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002449
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002450 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002451
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002452 break;
Joerg Roedel6c5cc802015-04-01 14:58:44 +02002453 case BUS_NOTIFY_REMOVED_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002454
2455 iommu_uninit_device(dev);
2456
Joerg Roedele275a2a2008-12-10 18:27:25 +01002457 default:
2458 goto out;
2459 }
2460
Joerg Roedele275a2a2008-12-10 18:27:25 +01002461 iommu_completion_wait(iommu);
2462
2463out:
2464 return 0;
2465}
2466
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302467static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002468 .notifier_call = device_change_notifier,
2469};
Joerg Roedel355bf552008-12-08 12:02:41 +01002470
Joerg Roedel8638c492009-12-10 11:12:25 +01002471void amd_iommu_init_notifier(void)
2472{
2473 bus_register_notifier(&pci_bus_type, &device_nb);
2474}
2475
Joerg Roedel431b2a22008-07-11 17:14:22 +02002476/*****************************************************************************
2477 *
2478 * The next functions belong to the dma_ops mapping/unmapping code.
2479 *
2480 *****************************************************************************/
2481
2482/*
2483 * In the dma_ops path we only have the struct device. This function
2484 * finds the corresponding IOMMU, the protection domain and the
2485 * requestor id for a given device.
2486 * If the device is not yet associated with a domain this is also done
2487 * in this function.
2488 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002489static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002490{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002491 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002492 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002493 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002494
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002495 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002496 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002497
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 domain = domain_for_device(dev);
2499 if (domain != NULL && !dma_ops_domain(domain))
2500 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002501
Joerg Roedel94f6d192009-11-24 16:40:02 +01002502 if (domain != NULL)
2503 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002504
Frank Arnolddf805ab2012-08-27 19:21:04 +02002505 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002506 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002507 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002508 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2509 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002510 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002511 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002512
Joerg Roedel94f6d192009-11-24 16:40:02 +01002513 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002514}
2515
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002516static void update_device_table(struct protection_domain *domain)
2517{
Joerg Roedel492667d2009-11-27 13:25:47 +01002518 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002519
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002520 list_for_each_entry(dev_data, &domain->dev_list, list)
2521 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002522}
2523
2524static void update_domain(struct protection_domain *domain)
2525{
2526 if (!domain->updated)
2527 return;
2528
2529 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002530
2531 domain_flush_devices(domain);
2532 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002533
2534 domain->updated = false;
2535}
2536
Joerg Roedel431b2a22008-07-11 17:14:22 +02002537/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002538 * This function fetches the PTE for a given address in the aperture
2539 */
2540static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2541 unsigned long address)
2542{
Joerg Roedel384de722009-05-15 12:30:05 +02002543 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002544 u64 *pte, *pte_page;
2545
Joerg Roedel384de722009-05-15 12:30:05 +02002546 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2547 if (!aperture)
2548 return NULL;
2549
2550 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002551 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002552 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002553 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002554 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2555 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002556 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002557
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002558 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002559
2560 return pte;
2561}
2562
2563/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002564 * This is the generic map function. It maps one 4kb page at paddr to
2565 * the given address in the DMA address space for the domain.
2566 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002567static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002568 unsigned long address,
2569 phys_addr_t paddr,
2570 int direction)
2571{
2572 u64 *pte, __pte;
2573
2574 WARN_ON(address > dom->aperture_size);
2575
2576 paddr &= PAGE_MASK;
2577
Joerg Roedel8bda3092009-05-12 12:02:46 +02002578 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002579 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002580 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002581
2582 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2583
2584 if (direction == DMA_TO_DEVICE)
2585 __pte |= IOMMU_PTE_IR;
2586 else if (direction == DMA_FROM_DEVICE)
2587 __pte |= IOMMU_PTE_IW;
2588 else if (direction == DMA_BIDIRECTIONAL)
2589 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2590
2591 WARN_ON(*pte);
2592
2593 *pte = __pte;
2594
2595 return (dma_addr_t)address;
2596}
2597
Joerg Roedel431b2a22008-07-11 17:14:22 +02002598/*
2599 * The generic unmapping function for on page in the DMA address space.
2600 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002601static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002602 unsigned long address)
2603{
Joerg Roedel384de722009-05-15 12:30:05 +02002604 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002605 u64 *pte;
2606
2607 if (address >= dom->aperture_size)
2608 return;
2609
Joerg Roedel384de722009-05-15 12:30:05 +02002610 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2611 if (!aperture)
2612 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002613
Joerg Roedel384de722009-05-15 12:30:05 +02002614 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2615 if (!pte)
2616 return;
2617
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002618 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002619
2620 WARN_ON(!*pte);
2621
2622 *pte = 0ULL;
2623}
2624
Joerg Roedel431b2a22008-07-11 17:14:22 +02002625/*
2626 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002627 * contiguous memory region into DMA address space. It is used by all
2628 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002629 * Must be called with the domain lock held.
2630 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002631static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002632 struct dma_ops_domain *dma_dom,
2633 phys_addr_t paddr,
2634 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002635 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002636 bool align,
2637 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002638{
2639 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002640 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002641 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002642 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002643 int i;
2644
Joerg Roedele3c449f2008-10-15 22:02:11 -07002645 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002646 paddr &= PAGE_MASK;
2647
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002648 INC_STATS_COUNTER(total_map_requests);
2649
Joerg Roedelc1858972008-12-12 15:42:39 +01002650 if (pages > 1)
2651 INC_STATS_COUNTER(cross_page);
2652
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002653 if (align)
2654 align_mask = (1UL << get_order(size)) - 1;
2655
Joerg Roedel11b83882009-05-19 10:23:15 +02002656retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002657 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2658 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002659 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002660 /*
2661 * setting next_address here will let the address
2662 * allocator only scan the new allocated range in the
2663 * first run. This is a small optimization.
2664 */
2665 dma_dom->next_address = dma_dom->aperture_size;
2666
Joerg Roedel576175c2009-11-23 19:08:46 +01002667 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002668 goto out;
2669
2670 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002671 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002672 * allocation again
2673 */
2674 goto retry;
2675 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002676
2677 start = address;
2678 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002679 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002680 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002681 goto out_unmap;
2682
Joerg Roedelcb76c322008-06-26 21:28:00 +02002683 paddr += PAGE_SIZE;
2684 start += PAGE_SIZE;
2685 }
2686 address += offset;
2687
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002688 ADD_STATS_COUNTER(alloced_io_mem, size);
2689
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002690 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002691 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002692 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002693 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002694 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002695
Joerg Roedelcb76c322008-06-26 21:28:00 +02002696out:
2697 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002698
2699out_unmap:
2700
2701 for (--i; i >= 0; --i) {
2702 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002703 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002704 }
2705
2706 dma_ops_free_addresses(dma_dom, address, pages);
2707
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002708 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002709}
2710
Joerg Roedel431b2a22008-07-11 17:14:22 +02002711/*
2712 * Does the reverse of the __map_single function. Must be called with
2713 * the domain lock held too
2714 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002715static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002716 dma_addr_t dma_addr,
2717 size_t size,
2718 int dir)
2719{
Joerg Roedel04e04632010-09-23 16:12:48 +02002720 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002721 dma_addr_t i, start;
2722 unsigned int pages;
2723
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002724 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002725 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002726 return;
2727
Joerg Roedel04e04632010-09-23 16:12:48 +02002728 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002729 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002730 dma_addr &= PAGE_MASK;
2731 start = dma_addr;
2732
2733 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002734 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002735 start += PAGE_SIZE;
2736 }
2737
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002738 SUB_STATS_COUNTER(alloced_io_mem, size);
2739
Joerg Roedelcb76c322008-06-26 21:28:00 +02002740 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002741
Joerg Roedel80be3082008-11-06 14:59:05 +01002742 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002743 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002744 dma_dom->need_flush = false;
2745 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002746}
2747
Joerg Roedel431b2a22008-07-11 17:14:22 +02002748/*
2749 * The exported map_single function for dma_ops.
2750 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002751static dma_addr_t map_page(struct device *dev, struct page *page,
2752 unsigned long offset, size_t size,
2753 enum dma_data_direction dir,
2754 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002755{
2756 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002757 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002758 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002759 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002760 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002761
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002762 INC_STATS_COUNTER(cnt_map_single);
2763
Joerg Roedel94f6d192009-11-24 16:40:02 +01002764 domain = get_domain(dev);
2765 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002766 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002767 else if (IS_ERR(domain))
2768 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002769
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002770 dma_mask = *dev->dma_mask;
2771
Joerg Roedel4da70b92008-06-26 21:28:01 +02002772 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002773
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002774 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002775 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002776 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002777 goto out;
2778
Joerg Roedel17b124b2011-04-06 18:01:35 +02002779 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002780
2781out:
2782 spin_unlock_irqrestore(&domain->lock, flags);
2783
2784 return addr;
2785}
2786
Joerg Roedel431b2a22008-07-11 17:14:22 +02002787/*
2788 * The exported unmap_single function for dma_ops.
2789 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002790static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2791 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002792{
2793 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002794 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002795
Joerg Roedel146a6912008-12-12 15:07:12 +01002796 INC_STATS_COUNTER(cnt_unmap_single);
2797
Joerg Roedel94f6d192009-11-24 16:40:02 +01002798 domain = get_domain(dev);
2799 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002800 return;
2801
Joerg Roedel4da70b92008-06-26 21:28:01 +02002802 spin_lock_irqsave(&domain->lock, flags);
2803
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002804 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002805
Joerg Roedel17b124b2011-04-06 18:01:35 +02002806 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002807
2808 spin_unlock_irqrestore(&domain->lock, flags);
2809}
2810
Joerg Roedel431b2a22008-07-11 17:14:22 +02002811/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002812 * The exported map_sg function for dma_ops (handles scatter-gather
2813 * lists).
2814 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002815static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002816 int nelems, enum dma_data_direction dir,
2817 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002818{
2819 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002820 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002821 int i;
2822 struct scatterlist *s;
2823 phys_addr_t paddr;
2824 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002825 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002826
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002827 INC_STATS_COUNTER(cnt_map_sg);
2828
Joerg Roedel94f6d192009-11-24 16:40:02 +01002829 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002830 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002831 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002832
Joerg Roedel832a90c2008-09-18 15:54:23 +02002833 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002834
Joerg Roedel65b050a2008-06-26 21:28:02 +02002835 spin_lock_irqsave(&domain->lock, flags);
2836
2837 for_each_sg(sglist, s, nelems, i) {
2838 paddr = sg_phys(s);
2839
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002840 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002841 paddr, s->length, dir, false,
2842 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002843
2844 if (s->dma_address) {
2845 s->dma_length = s->length;
2846 mapped_elems++;
2847 } else
2848 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002849 }
2850
Joerg Roedel17b124b2011-04-06 18:01:35 +02002851 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002852
2853out:
2854 spin_unlock_irqrestore(&domain->lock, flags);
2855
2856 return mapped_elems;
2857unmap:
2858 for_each_sg(sglist, s, mapped_elems, i) {
2859 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002860 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002861 s->dma_length, dir);
2862 s->dma_address = s->dma_length = 0;
2863 }
2864
2865 mapped_elems = 0;
2866
2867 goto out;
2868}
2869
Joerg Roedel431b2a22008-07-11 17:14:22 +02002870/*
2871 * The exported map_sg function for dma_ops (handles scatter-gather
2872 * lists).
2873 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002874static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002875 int nelems, enum dma_data_direction dir,
2876 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002877{
2878 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002879 struct protection_domain *domain;
2880 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002881 int i;
2882
Joerg Roedel55877a62008-12-12 15:12:14 +01002883 INC_STATS_COUNTER(cnt_unmap_sg);
2884
Joerg Roedel94f6d192009-11-24 16:40:02 +01002885 domain = get_domain(dev);
2886 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002887 return;
2888
Joerg Roedel65b050a2008-06-26 21:28:02 +02002889 spin_lock_irqsave(&domain->lock, flags);
2890
2891 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002892 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002893 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002894 s->dma_address = s->dma_length = 0;
2895 }
2896
Joerg Roedel17b124b2011-04-06 18:01:35 +02002897 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002898
2899 spin_unlock_irqrestore(&domain->lock, flags);
2900}
2901
Joerg Roedel431b2a22008-07-11 17:14:22 +02002902/*
2903 * The exported alloc_coherent function for dma_ops.
2904 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002905static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002906 dma_addr_t *dma_addr, gfp_t flag,
2907 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002908{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002909 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002910 struct protection_domain *domain;
2911 unsigned long flags;
2912 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002913
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002914 INC_STATS_COUNTER(cnt_alloc_coherent);
2915
Joerg Roedel94f6d192009-11-24 16:40:02 +01002916 domain = get_domain(dev);
2917 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002918 page = alloc_pages(flag, get_order(size));
2919 *dma_addr = page_to_phys(page);
2920 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002921 } else if (IS_ERR(domain))
2922 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002923
Joerg Roedel3b839a52015-04-01 14:58:47 +02002924 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002925 dma_mask = dev->coherent_dma_mask;
2926 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002927
Joerg Roedel3b839a52015-04-01 14:58:47 +02002928 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2929 if (!page) {
2930 if (!(flag & __GFP_WAIT))
2931 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002932
Joerg Roedel3b839a52015-04-01 14:58:47 +02002933 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2934 get_order(size));
2935 if (!page)
2936 return NULL;
2937 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002938
Joerg Roedel832a90c2008-09-18 15:54:23 +02002939 if (!dma_mask)
2940 dma_mask = *dev->dma_mask;
2941
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002942 spin_lock_irqsave(&domain->lock, flags);
2943
Joerg Roedel3b839a52015-04-01 14:58:47 +02002944 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002945 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002946
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002947 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002948 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002949 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002950 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002951
Joerg Roedel17b124b2011-04-06 18:01:35 +02002952 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002953
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002954 spin_unlock_irqrestore(&domain->lock, flags);
2955
Joerg Roedel3b839a52015-04-01 14:58:47 +02002956 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002957
2958out_free:
2959
Joerg Roedel3b839a52015-04-01 14:58:47 +02002960 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2961 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002962
2963 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002964}
2965
Joerg Roedel431b2a22008-07-11 17:14:22 +02002966/*
2967 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002968 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002969static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002970 void *virt_addr, dma_addr_t dma_addr,
2971 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002972{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002973 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002974 unsigned long flags;
2975 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002976
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002977 INC_STATS_COUNTER(cnt_free_coherent);
2978
Joerg Roedel3b839a52015-04-01 14:58:47 +02002979 page = virt_to_page(virt_addr);
2980 size = PAGE_ALIGN(size);
2981
Joerg Roedel94f6d192009-11-24 16:40:02 +01002982 domain = get_domain(dev);
2983 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002984 goto free_mem;
2985
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002986 spin_lock_irqsave(&domain->lock, flags);
2987
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002988 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002989
Joerg Roedel17b124b2011-04-06 18:01:35 +02002990 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002991
2992 spin_unlock_irqrestore(&domain->lock, flags);
2993
2994free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002995 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2996 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002997}
2998
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002999/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003000 * This function is called by the DMA layer to find out if we can handle a
3001 * particular device. It is part of the dma_ops.
3002 */
3003static int amd_iommu_dma_supported(struct device *dev, u64 mask)
3004{
Joerg Roedel420aef82009-11-23 16:14:57 +01003005 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003006}
3007
3008/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02003009 * The function for pre-allocating protection domains.
3010 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003011 * If the driver core informs the DMA layer if a driver grabs a device
3012 * we don't need to preallocate the protection domains anymore.
3013 * For now we have to.
3014 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01003015static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003016{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003017 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003018 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003019 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003020 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003021
Chris Wrightd18c69d2010-04-02 18:27:55 -07003022 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003023
3024 /* Do we handle this device? */
3025 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003026 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003027
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003028 dev_data = get_dev_data(&dev->dev);
3029 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3030 /* Make sure passthrough domain is allocated */
3031 alloc_passthrough_domain();
3032 dev_data->passthrough = true;
3033 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003034 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003035 dev_name(&dev->dev));
3036 }
3037
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003038 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003039 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003040 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003041
3042 devid = get_device_id(&dev->dev);
3043
Joerg Roedel87a64d52009-11-24 17:26:43 +01003044 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003045 if (!dma_dom)
3046 continue;
3047 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003048 dma_dom->target_dev = devid;
3049
Joerg Roedel15898bb2009-11-24 15:39:42 +01003050 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003051
Joerg Roedelbd60b732008-09-11 10:24:48 +02003052 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003053 }
3054}
3055
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003056static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003057 .alloc = alloc_coherent,
3058 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003059 .map_page = map_page,
3060 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003061 .map_sg = map_sg,
3062 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003063 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003064};
3065
Joerg Roedel27c21272011-05-30 15:56:24 +02003066static unsigned device_dma_ops_init(void)
3067{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003068 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003069 struct pci_dev *pdev = NULL;
3070 unsigned unhandled = 0;
3071
3072 for_each_pci_dev(pdev) {
3073 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003074
3075 iommu_ignore_device(&pdev->dev);
3076
Joerg Roedel27c21272011-05-30 15:56:24 +02003077 unhandled += 1;
3078 continue;
3079 }
3080
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003081 dev_data = get_dev_data(&pdev->dev);
3082
3083 if (!dev_data->passthrough)
3084 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3085 else
3086 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003087 }
3088
3089 return unhandled;
3090}
3091
Joerg Roedel431b2a22008-07-11 17:14:22 +02003092/*
3093 * The function which clues the AMD IOMMU driver into dma_ops.
3094 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003095
3096void __init amd_iommu_init_api(void)
3097{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003098 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003099}
3100
Joerg Roedel6631ee92008-06-26 21:28:05 +02003101int __init amd_iommu_init_dma_ops(void)
3102{
3103 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003104 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003105
Joerg Roedel431b2a22008-07-11 17:14:22 +02003106 /*
3107 * first allocate a default protection domain for every IOMMU we
3108 * found in the system. Devices not assigned to any other
3109 * protection domain will be assigned to the default one.
3110 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003111 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003112 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003113 if (iommu->default_dom == NULL)
3114 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003115 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003116 ret = iommu_init_unity_mappings(iommu);
3117 if (ret)
3118 goto free_domains;
3119 }
3120
Joerg Roedel431b2a22008-07-11 17:14:22 +02003121 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003122 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003123 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003124 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003125
3126 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003127 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003128
Joerg Roedel431b2a22008-07-11 17:14:22 +02003129 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003130 unhandled = device_dma_ops_init();
3131 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3132 /* There are unhandled devices - initialize swiotlb for them */
3133 swiotlb = 1;
3134 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003135
Joerg Roedel7f265082008-12-12 13:50:21 +01003136 amd_iommu_stats_init();
3137
Joerg Roedel62410ee2012-06-12 16:42:43 +02003138 if (amd_iommu_unmap_flush)
3139 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3140 else
3141 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3142
Joerg Roedel6631ee92008-06-26 21:28:05 +02003143 return 0;
3144
3145free_domains:
3146
Joerg Roedel3bd22172009-05-04 15:06:20 +02003147 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003148 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003149 }
3150
3151 return ret;
3152}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003153
3154/*****************************************************************************
3155 *
3156 * The following functions belong to the exported interface of AMD IOMMU
3157 *
3158 * This interface allows access to lower level functions of the IOMMU
3159 * like protection domain handling and assignement of devices to domains
3160 * which is not possible with the dma_ops interface.
3161 *
3162 *****************************************************************************/
3163
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003164static void cleanup_domain(struct protection_domain *domain)
3165{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003166 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003167 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003168
3169 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3170
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003171 while (!list_empty(&domain->dev_list)) {
3172 entry = list_first_entry(&domain->dev_list,
3173 struct iommu_dev_data, list);
3174 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01003175 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003176
3177 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3178}
3179
Joerg Roedel26508152009-08-26 16:52:40 +02003180static void protection_domain_free(struct protection_domain *domain)
3181{
3182 if (!domain)
3183 return;
3184
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003185 del_domain_from_list(domain);
3186
Joerg Roedel26508152009-08-26 16:52:40 +02003187 if (domain->id)
3188 domain_id_free(domain->id);
3189
3190 kfree(domain);
3191}
3192
3193static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003194{
3195 struct protection_domain *domain;
3196
3197 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3198 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003199 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003200
3201 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003202 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003203 domain->id = domain_id_alloc();
3204 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003205 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003206 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003207
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003208 add_domain_to_list(domain);
3209
Joerg Roedel26508152009-08-26 16:52:40 +02003210 return domain;
3211
3212out_err:
3213 kfree(domain);
3214
3215 return NULL;
3216}
3217
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003218static int __init alloc_passthrough_domain(void)
3219{
3220 if (pt_domain != NULL)
3221 return 0;
3222
3223 /* allocate passthrough domain */
3224 pt_domain = protection_domain_alloc();
3225 if (!pt_domain)
3226 return -ENOMEM;
3227
3228 pt_domain->mode = PAGE_MODE_NONE;
3229
3230 return 0;
3231}
Joerg Roedel26508152009-08-26 16:52:40 +02003232static int amd_iommu_domain_init(struct iommu_domain *dom)
3233{
3234 struct protection_domain *domain;
3235
3236 domain = protection_domain_alloc();
3237 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003238 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003239
3240 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003241 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3242 if (!domain->pt_root)
3243 goto out_free;
3244
Joerg Roedelf3572db2011-11-23 12:36:25 +01003245 domain->iommu_domain = dom;
3246
Joerg Roedelc156e342008-12-02 18:13:27 +01003247 dom->priv = domain;
3248
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003249 dom->geometry.aperture_start = 0;
3250 dom->geometry.aperture_end = ~0ULL;
3251 dom->geometry.force_aperture = true;
3252
Joerg Roedelc156e342008-12-02 18:13:27 +01003253 return 0;
3254
3255out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003256 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003257
3258 return -ENOMEM;
3259}
3260
Joerg Roedel98383fc2008-12-02 18:34:12 +01003261static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3262{
3263 struct protection_domain *domain = dom->priv;
3264
3265 if (!domain)
3266 return;
3267
3268 if (domain->dev_cnt > 0)
3269 cleanup_domain(domain);
3270
3271 BUG_ON(domain->dev_cnt != 0);
3272
Joerg Roedel132bd682011-11-17 14:18:46 +01003273 if (domain->mode != PAGE_MODE_NONE)
3274 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003275
Joerg Roedel52815b72011-11-17 17:24:28 +01003276 if (domain->flags & PD_IOMMUV2_MASK)
3277 free_gcr3_table(domain);
3278
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003279 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003280
3281 dom->priv = NULL;
3282}
3283
Joerg Roedel684f2882008-12-08 12:07:44 +01003284static void amd_iommu_detach_device(struct iommu_domain *dom,
3285 struct device *dev)
3286{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003287 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003288 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003289 u16 devid;
3290
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003291 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003292 return;
3293
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003294 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003295
Joerg Roedel657cbb62009-11-23 15:26:46 +01003296 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003297 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003298
3299 iommu = amd_iommu_rlookup_table[devid];
3300 if (!iommu)
3301 return;
3302
Joerg Roedel684f2882008-12-08 12:07:44 +01003303 iommu_completion_wait(iommu);
3304}
3305
Joerg Roedel01106062008-12-02 19:34:11 +01003306static int amd_iommu_attach_device(struct iommu_domain *dom,
3307 struct device *dev)
3308{
3309 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003310 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003311 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003312 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003313
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003314 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003315 return -EINVAL;
3316
Joerg Roedel657cbb62009-11-23 15:26:46 +01003317 dev_data = dev->archdata.iommu;
3318
Joerg Roedelf62dda62011-06-09 12:55:35 +02003319 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003320 if (!iommu)
3321 return -EINVAL;
3322
Joerg Roedel657cbb62009-11-23 15:26:46 +01003323 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003324 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003325
Joerg Roedel15898bb2009-11-24 15:39:42 +01003326 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003327
3328 iommu_completion_wait(iommu);
3329
Joerg Roedel15898bb2009-11-24 15:39:42 +01003330 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003331}
3332
Joerg Roedel468e2362010-01-21 16:37:36 +01003333static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003334 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003335{
3336 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003337 int prot = 0;
3338 int ret;
3339
Joerg Roedel132bd682011-11-17 14:18:46 +01003340 if (domain->mode == PAGE_MODE_NONE)
3341 return -EINVAL;
3342
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003343 if (iommu_prot & IOMMU_READ)
3344 prot |= IOMMU_PROT_IR;
3345 if (iommu_prot & IOMMU_WRITE)
3346 prot |= IOMMU_PROT_IW;
3347
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003348 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003349 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003350 mutex_unlock(&domain->api_lock);
3351
Joerg Roedel795e74f2010-05-11 17:40:57 +02003352 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003353}
3354
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003355static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3356 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003357{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003358 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003359 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003360
Joerg Roedel132bd682011-11-17 14:18:46 +01003361 if (domain->mode == PAGE_MODE_NONE)
3362 return -EINVAL;
3363
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003364 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003365 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003366 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003367
Joerg Roedel17b124b2011-04-06 18:01:35 +02003368 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003369
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003370 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003371}
3372
Joerg Roedel645c4c82008-12-02 20:05:50 +01003373static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303374 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003375{
3376 struct protection_domain *domain = dom->priv;
Joerg Roedel3039ca12015-04-01 14:58:48 +02003377 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003378 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003379
Joerg Roedel132bd682011-11-17 14:18:46 +01003380 if (domain->mode == PAGE_MODE_NONE)
3381 return iova;
3382
Joerg Roedel3039ca12015-04-01 14:58:48 +02003383 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003384
Joerg Roedela6d41a42009-09-02 17:08:55 +02003385 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003386 return 0;
3387
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003388 offset_mask = pte_pgsize - 1;
3389 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003390
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003391 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003392}
3393
Joerg Roedelab636482014-09-05 10:48:21 +02003394static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003395{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003396 switch (cap) {
3397 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003398 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003399 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003400 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003401 case IOMMU_CAP_NOEXEC:
3402 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003403 }
3404
Joerg Roedelab636482014-09-05 10:48:21 +02003405 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003406}
3407
Thierry Redingb22f6432014-06-27 09:03:12 +02003408static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003409 .capable = amd_iommu_capable,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003410 .domain_init = amd_iommu_domain_init,
3411 .domain_destroy = amd_iommu_domain_destroy,
3412 .attach_dev = amd_iommu_attach_device,
3413 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003414 .map = amd_iommu_map,
3415 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003416 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003417 .iova_to_phys = amd_iommu_iova_to_phys,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003418 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003419};
3420
Joerg Roedel0feae532009-08-26 15:26:30 +02003421/*****************************************************************************
3422 *
3423 * The next functions do a basic initialization of IOMMU for pass through
3424 * mode
3425 *
3426 * In passthrough mode the IOMMU is initialized and enabled but not used for
3427 * DMA-API translation.
3428 *
3429 *****************************************************************************/
3430
3431int __init amd_iommu_init_passthrough(void)
3432{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003433 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003434 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003435 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003436
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003437 ret = alloc_passthrough_domain();
3438 if (ret)
3439 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003440
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003441 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003442 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003443 continue;
3444
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003445 dev_data = get_dev_data(&dev->dev);
3446 dev_data->passthrough = true;
3447
Joerg Roedel15898bb2009-11-24 15:39:42 +01003448 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003449 }
3450
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003451 amd_iommu_stats_init();
3452
Joerg Roedel0feae532009-08-26 15:26:30 +02003453 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3454
3455 return 0;
3456}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003457
3458/* IOMMUv2 specific functions */
3459int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3460{
3461 return atomic_notifier_chain_register(&ppr_notifier, nb);
3462}
3463EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3464
3465int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3466{
3467 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3468}
3469EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003470
3471void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3472{
3473 struct protection_domain *domain = dom->priv;
3474 unsigned long flags;
3475
3476 spin_lock_irqsave(&domain->lock, flags);
3477
3478 /* Update data structure */
3479 domain->mode = PAGE_MODE_NONE;
3480 domain->updated = true;
3481
3482 /* Make changes visible to IOMMUs */
3483 update_domain(domain);
3484
3485 /* Page-table is not visible to IOMMU anymore, so free it */
3486 free_pagetable(domain);
3487
3488 spin_unlock_irqrestore(&domain->lock, flags);
3489}
3490EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003491
3492int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3493{
3494 struct protection_domain *domain = dom->priv;
3495 unsigned long flags;
3496 int levels, ret;
3497
3498 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3499 return -EINVAL;
3500
3501 /* Number of GCR3 table levels required */
3502 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3503 levels += 1;
3504
3505 if (levels > amd_iommu_max_glx_val)
3506 return -EINVAL;
3507
3508 spin_lock_irqsave(&domain->lock, flags);
3509
3510 /*
3511 * Save us all sanity checks whether devices already in the
3512 * domain support IOMMUv2. Just force that the domain has no
3513 * devices attached when it is switched into IOMMUv2 mode.
3514 */
3515 ret = -EBUSY;
3516 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3517 goto out;
3518
3519 ret = -ENOMEM;
3520 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3521 if (domain->gcr3_tbl == NULL)
3522 goto out;
3523
3524 domain->glx = levels;
3525 domain->flags |= PD_IOMMUV2_MASK;
3526 domain->updated = true;
3527
3528 update_domain(domain);
3529
3530 ret = 0;
3531
3532out:
3533 spin_unlock_irqrestore(&domain->lock, flags);
3534
3535 return ret;
3536}
3537EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003538
3539static int __flush_pasid(struct protection_domain *domain, int pasid,
3540 u64 address, bool size)
3541{
3542 struct iommu_dev_data *dev_data;
3543 struct iommu_cmd cmd;
3544 int i, ret;
3545
3546 if (!(domain->flags & PD_IOMMUV2_MASK))
3547 return -EINVAL;
3548
3549 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3550
3551 /*
3552 * IOMMU TLB needs to be flushed before Device TLB to
3553 * prevent device TLB refill from IOMMU TLB
3554 */
3555 for (i = 0; i < amd_iommus_present; ++i) {
3556 if (domain->dev_iommu[i] == 0)
3557 continue;
3558
3559 ret = iommu_queue_command(amd_iommus[i], &cmd);
3560 if (ret != 0)
3561 goto out;
3562 }
3563
3564 /* Wait until IOMMU TLB flushes are complete */
3565 domain_flush_complete(domain);
3566
3567 /* Now flush device TLBs */
3568 list_for_each_entry(dev_data, &domain->dev_list, list) {
3569 struct amd_iommu *iommu;
3570 int qdep;
3571
3572 BUG_ON(!dev_data->ats.enabled);
3573
3574 qdep = dev_data->ats.qdep;
3575 iommu = amd_iommu_rlookup_table[dev_data->devid];
3576
3577 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3578 qdep, address, size);
3579
3580 ret = iommu_queue_command(iommu, &cmd);
3581 if (ret != 0)
3582 goto out;
3583 }
3584
3585 /* Wait until all device TLBs are flushed */
3586 domain_flush_complete(domain);
3587
3588 ret = 0;
3589
3590out:
3591
3592 return ret;
3593}
3594
3595static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3596 u64 address)
3597{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003598 INC_STATS_COUNTER(invalidate_iotlb);
3599
Joerg Roedel22e266c2011-11-21 15:59:08 +01003600 return __flush_pasid(domain, pasid, address, false);
3601}
3602
3603int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3604 u64 address)
3605{
3606 struct protection_domain *domain = dom->priv;
3607 unsigned long flags;
3608 int ret;
3609
3610 spin_lock_irqsave(&domain->lock, flags);
3611 ret = __amd_iommu_flush_page(domain, pasid, address);
3612 spin_unlock_irqrestore(&domain->lock, flags);
3613
3614 return ret;
3615}
3616EXPORT_SYMBOL(amd_iommu_flush_page);
3617
3618static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3619{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003620 INC_STATS_COUNTER(invalidate_iotlb_all);
3621
Joerg Roedel22e266c2011-11-21 15:59:08 +01003622 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3623 true);
3624}
3625
3626int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3627{
3628 struct protection_domain *domain = dom->priv;
3629 unsigned long flags;
3630 int ret;
3631
3632 spin_lock_irqsave(&domain->lock, flags);
3633 ret = __amd_iommu_flush_tlb(domain, pasid);
3634 spin_unlock_irqrestore(&domain->lock, flags);
3635
3636 return ret;
3637}
3638EXPORT_SYMBOL(amd_iommu_flush_tlb);
3639
Joerg Roedelb16137b2011-11-21 16:50:23 +01003640static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3641{
3642 int index;
3643 u64 *pte;
3644
3645 while (true) {
3646
3647 index = (pasid >> (9 * level)) & 0x1ff;
3648 pte = &root[index];
3649
3650 if (level == 0)
3651 break;
3652
3653 if (!(*pte & GCR3_VALID)) {
3654 if (!alloc)
3655 return NULL;
3656
3657 root = (void *)get_zeroed_page(GFP_ATOMIC);
3658 if (root == NULL)
3659 return NULL;
3660
3661 *pte = __pa(root) | GCR3_VALID;
3662 }
3663
3664 root = __va(*pte & PAGE_MASK);
3665
3666 level -= 1;
3667 }
3668
3669 return pte;
3670}
3671
3672static int __set_gcr3(struct protection_domain *domain, int pasid,
3673 unsigned long cr3)
3674{
3675 u64 *pte;
3676
3677 if (domain->mode != PAGE_MODE_NONE)
3678 return -EINVAL;
3679
3680 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3681 if (pte == NULL)
3682 return -ENOMEM;
3683
3684 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3685
3686 return __amd_iommu_flush_tlb(domain, pasid);
3687}
3688
3689static int __clear_gcr3(struct protection_domain *domain, int pasid)
3690{
3691 u64 *pte;
3692
3693 if (domain->mode != PAGE_MODE_NONE)
3694 return -EINVAL;
3695
3696 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3697 if (pte == NULL)
3698 return 0;
3699
3700 *pte = 0;
3701
3702 return __amd_iommu_flush_tlb(domain, pasid);
3703}
3704
3705int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3706 unsigned long cr3)
3707{
3708 struct protection_domain *domain = dom->priv;
3709 unsigned long flags;
3710 int ret;
3711
3712 spin_lock_irqsave(&domain->lock, flags);
3713 ret = __set_gcr3(domain, pasid, cr3);
3714 spin_unlock_irqrestore(&domain->lock, flags);
3715
3716 return ret;
3717}
3718EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3719
3720int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3721{
3722 struct protection_domain *domain = dom->priv;
3723 unsigned long flags;
3724 int ret;
3725
3726 spin_lock_irqsave(&domain->lock, flags);
3727 ret = __clear_gcr3(domain, pasid);
3728 spin_unlock_irqrestore(&domain->lock, flags);
3729
3730 return ret;
3731}
3732EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003733
3734int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3735 int status, int tag)
3736{
3737 struct iommu_dev_data *dev_data;
3738 struct amd_iommu *iommu;
3739 struct iommu_cmd cmd;
3740
Joerg Roedel399be2f2011-12-01 16:53:47 +01003741 INC_STATS_COUNTER(complete_ppr);
3742
Joerg Roedelc99afa22011-11-21 18:19:25 +01003743 dev_data = get_dev_data(&pdev->dev);
3744 iommu = amd_iommu_rlookup_table[dev_data->devid];
3745
3746 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3747 tag, dev_data->pri_tlp);
3748
3749 return iommu_queue_command(iommu, &cmd);
3750}
3751EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003752
3753struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3754{
3755 struct protection_domain *domain;
3756
3757 domain = get_domain(&pdev->dev);
3758 if (IS_ERR(domain))
3759 return NULL;
3760
3761 /* Only return IOMMUv2 domains */
3762 if (!(domain->flags & PD_IOMMUV2_MASK))
3763 return NULL;
3764
3765 return domain->iommu_domain;
3766}
3767EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003768
3769void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3770{
3771 struct iommu_dev_data *dev_data;
3772
3773 if (!amd_iommu_v2_supported())
3774 return;
3775
3776 dev_data = get_dev_data(&pdev->dev);
3777 dev_data->errata |= (1 << erratum);
3778}
3779EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003780
3781int amd_iommu_device_info(struct pci_dev *pdev,
3782 struct amd_iommu_device_info *info)
3783{
3784 int max_pasids;
3785 int pos;
3786
3787 if (pdev == NULL || info == NULL)
3788 return -EINVAL;
3789
3790 if (!amd_iommu_v2_supported())
3791 return -EINVAL;
3792
3793 memset(info, 0, sizeof(*info));
3794
3795 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3796 if (pos)
3797 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3798
3799 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3800 if (pos)
3801 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3802
3803 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3804 if (pos) {
3805 int features;
3806
3807 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3808 max_pasids = min(max_pasids, (1 << 20));
3809
3810 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3811 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3812
3813 features = pci_pasid_features(pdev);
3814 if (features & PCI_PASID_CAP_EXEC)
3815 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3816 if (features & PCI_PASID_CAP_PRIV)
3817 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3818 }
3819
3820 return 0;
3821}
3822EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003823
3824#ifdef CONFIG_IRQ_REMAP
3825
3826/*****************************************************************************
3827 *
3828 * Interrupt Remapping Implementation
3829 *
3830 *****************************************************************************/
3831
3832union irte {
3833 u32 val;
3834 struct {
3835 u32 valid : 1,
3836 no_fault : 1,
3837 int_type : 3,
3838 rq_eoi : 1,
3839 dm : 1,
3840 rsvd_1 : 1,
3841 destination : 8,
3842 vector : 8,
3843 rsvd_2 : 8;
3844 } fields;
3845};
3846
3847#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3848#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3849#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3850#define DTE_IRQ_REMAP_ENABLE 1ULL
3851
3852static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3853{
3854 u64 dte;
3855
3856 dte = amd_iommu_dev_table[devid].data[2];
3857 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3858 dte |= virt_to_phys(table->table);
3859 dte |= DTE_IRQ_REMAP_INTCTL;
3860 dte |= DTE_IRQ_TABLE_LEN;
3861 dte |= DTE_IRQ_REMAP_ENABLE;
3862
3863 amd_iommu_dev_table[devid].data[2] = dte;
3864}
3865
3866#define IRTE_ALLOCATED (~1U)
3867
3868static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3869{
3870 struct irq_remap_table *table = NULL;
3871 struct amd_iommu *iommu;
3872 unsigned long flags;
3873 u16 alias;
3874
3875 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3876
3877 iommu = amd_iommu_rlookup_table[devid];
3878 if (!iommu)
3879 goto out_unlock;
3880
3881 table = irq_lookup_table[devid];
3882 if (table)
3883 goto out;
3884
3885 alias = amd_iommu_alias_table[devid];
3886 table = irq_lookup_table[alias];
3887 if (table) {
3888 irq_lookup_table[devid] = table;
3889 set_dte_irq_entry(devid, table);
3890 iommu_flush_dte(iommu, devid);
3891 goto out;
3892 }
3893
3894 /* Nothing there yet, allocate new irq remapping table */
3895 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3896 if (!table)
3897 goto out;
3898
Joerg Roedel197887f2013-04-09 21:14:08 +02003899 /* Initialize table spin-lock */
3900 spin_lock_init(&table->lock);
3901
Joerg Roedel2b324502012-06-21 16:29:10 +02003902 if (ioapic)
3903 /* Keep the first 32 indexes free for IOAPIC interrupts */
3904 table->min_index = 32;
3905
3906 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3907 if (!table->table) {
3908 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003909 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003910 goto out;
3911 }
3912
3913 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3914
3915 if (ioapic) {
3916 int i;
3917
3918 for (i = 0; i < 32; ++i)
3919 table->table[i] = IRTE_ALLOCATED;
3920 }
3921
3922 irq_lookup_table[devid] = table;
3923 set_dte_irq_entry(devid, table);
3924 iommu_flush_dte(iommu, devid);
3925 if (devid != alias) {
3926 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003927 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003928 iommu_flush_dte(iommu, alias);
3929 }
3930
3931out:
3932 iommu_completion_wait(iommu);
3933
3934out_unlock:
3935 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3936
3937 return table;
3938}
3939
3940static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3941{
3942 struct irq_remap_table *table;
3943 unsigned long flags;
3944 int index, c;
3945
3946 table = get_irq_table(devid, false);
3947 if (!table)
3948 return -ENODEV;
3949
3950 spin_lock_irqsave(&table->lock, flags);
3951
3952 /* Scan table for free entries */
3953 for (c = 0, index = table->min_index;
3954 index < MAX_IRQS_PER_TABLE;
3955 ++index) {
3956 if (table->table[index] == 0)
3957 c += 1;
3958 else
3959 c = 0;
3960
3961 if (c == count) {
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003962 struct irq_2_irte *irte_info;
Joerg Roedel2b324502012-06-21 16:29:10 +02003963
3964 for (; c != 0; --c)
3965 table->table[index - c + 1] = IRTE_ALLOCATED;
3966
3967 index -= count - 1;
3968
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003969 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003970 irte_info = &cfg->irq_2_irte;
3971 irte_info->devid = devid;
3972 irte_info->index = index;
Joerg Roedel2b324502012-06-21 16:29:10 +02003973
3974 goto out;
3975 }
3976 }
3977
3978 index = -ENOSPC;
3979
3980out:
3981 spin_unlock_irqrestore(&table->lock, flags);
3982
3983 return index;
3984}
3985
3986static int get_irte(u16 devid, int index, union irte *irte)
3987{
3988 struct irq_remap_table *table;
3989 unsigned long flags;
3990
3991 table = get_irq_table(devid, false);
3992 if (!table)
3993 return -ENOMEM;
3994
3995 spin_lock_irqsave(&table->lock, flags);
3996 irte->val = table->table[index];
3997 spin_unlock_irqrestore(&table->lock, flags);
3998
3999 return 0;
4000}
4001
4002static int modify_irte(u16 devid, int index, union irte irte)
4003{
4004 struct irq_remap_table *table;
4005 struct amd_iommu *iommu;
4006 unsigned long flags;
4007
4008 iommu = amd_iommu_rlookup_table[devid];
4009 if (iommu == NULL)
4010 return -EINVAL;
4011
4012 table = get_irq_table(devid, false);
4013 if (!table)
4014 return -ENOMEM;
4015
4016 spin_lock_irqsave(&table->lock, flags);
4017 table->table[index] = irte.val;
4018 spin_unlock_irqrestore(&table->lock, flags);
4019
4020 iommu_flush_irt(iommu, devid);
4021 iommu_completion_wait(iommu);
4022
4023 return 0;
4024}
4025
4026static void free_irte(u16 devid, int index)
4027{
4028 struct irq_remap_table *table;
4029 struct amd_iommu *iommu;
4030 unsigned long flags;
4031
4032 iommu = amd_iommu_rlookup_table[devid];
4033 if (iommu == NULL)
4034 return;
4035
4036 table = get_irq_table(devid, false);
4037 if (!table)
4038 return;
4039
4040 spin_lock_irqsave(&table->lock, flags);
4041 table->table[index] = 0;
4042 spin_unlock_irqrestore(&table->lock, flags);
4043
4044 iommu_flush_irt(iommu, devid);
4045 iommu_completion_wait(iommu);
4046}
4047
Joerg Roedel5527de72012-06-26 11:17:32 +02004048static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4049 unsigned int destination, int vector,
4050 struct io_apic_irq_attr *attr)
4051{
4052 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004053 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004054 struct irq_cfg *cfg;
4055 union irte irte;
4056 int ioapic_id;
4057 int index;
4058 int devid;
4059 int ret;
4060
Jiang Liu719b5302014-10-27 16:12:10 +08004061 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02004062 if (!cfg)
4063 return -EINVAL;
4064
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004065 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004066 ioapic_id = mpc_ioapic_id(attr->ioapic);
4067 devid = get_ioapic_devid(ioapic_id);
4068
4069 if (devid < 0)
4070 return devid;
4071
4072 table = get_irq_table(devid, true);
4073 if (table == NULL)
4074 return -ENOMEM;
4075
4076 index = attr->ioapic_pin;
4077
4078 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004079 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004080 irte_info->devid = devid;
4081 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02004082
4083 /* Setup IRTE for IOMMU */
4084 irte.val = 0;
4085 irte.fields.vector = vector;
4086 irte.fields.int_type = apic->irq_delivery_mode;
4087 irte.fields.destination = destination;
4088 irte.fields.dm = apic->irq_dest_mode;
4089 irte.fields.valid = 1;
4090
4091 ret = modify_irte(devid, index, irte);
4092 if (ret)
4093 return ret;
4094
4095 /* Setup IOAPIC entry */
4096 memset(entry, 0, sizeof(*entry));
4097
4098 entry->vector = index;
4099 entry->mask = 0;
4100 entry->trigger = attr->trigger;
4101 entry->polarity = attr->polarity;
4102
4103 /*
4104 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004105 */
4106 if (attr->trigger)
4107 entry->mask = 1;
4108
4109 return 0;
4110}
4111
4112static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4113 bool force)
4114{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004115 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004116 unsigned int dest, irq;
4117 struct irq_cfg *cfg;
4118 union irte irte;
4119 int err;
4120
4121 if (!config_enabled(CONFIG_SMP))
4122 return -1;
4123
Jiang Liu719b5302014-10-27 16:12:10 +08004124 cfg = irqd_cfg(data);
Joerg Roedel5527de72012-06-26 11:17:32 +02004125 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004126 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004127
4128 if (!cpumask_intersects(mask, cpu_online_mask))
4129 return -EINVAL;
4130
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004131 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02004132 return -EBUSY;
4133
4134 if (assign_irq_vector(irq, cfg, mask))
4135 return -EBUSY;
4136
4137 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4138 if (err) {
4139 if (assign_irq_vector(irq, cfg, data->affinity))
4140 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4141 return err;
4142 }
4143
4144 irte.fields.vector = cfg->vector;
4145 irte.fields.destination = dest;
4146
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004147 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02004148
4149 if (cfg->move_in_progress)
4150 send_cleanup_vector(cfg);
4151
4152 cpumask_copy(data->affinity, mask);
4153
4154 return 0;
4155}
4156
4157static int free_irq(int irq)
4158{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004159 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004160 struct irq_cfg *cfg;
4161
Jiang Liu719b5302014-10-27 16:12:10 +08004162 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02004163 if (!cfg)
4164 return -EINVAL;
4165
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004166 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004167
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004168 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02004169
4170 return 0;
4171}
4172
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004173static void compose_msi_msg(struct pci_dev *pdev,
4174 unsigned int irq, unsigned int dest,
4175 struct msi_msg *msg, u8 hpet_id)
4176{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004177 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004178 struct irq_cfg *cfg;
4179 union irte irte;
4180
Jiang Liu719b5302014-10-27 16:12:10 +08004181 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004182 if (!cfg)
4183 return;
4184
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004185 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004186
4187 irte.val = 0;
4188 irte.fields.vector = cfg->vector;
4189 irte.fields.int_type = apic->irq_delivery_mode;
4190 irte.fields.destination = dest;
4191 irte.fields.dm = apic->irq_dest_mode;
4192 irte.fields.valid = 1;
4193
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004194 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004195
4196 msg->address_hi = MSI_ADDR_BASE_HI;
4197 msg->address_lo = MSI_ADDR_BASE_LO;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004198 msg->data = irte_info->index;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004199}
4200
4201static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
4202{
4203 struct irq_cfg *cfg;
4204 int index;
4205 u16 devid;
4206
4207 if (!pdev)
4208 return -EINVAL;
4209
Jiang Liu719b5302014-10-27 16:12:10 +08004210 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004211 if (!cfg)
4212 return -EINVAL;
4213
4214 devid = get_device_id(&pdev->dev);
4215 index = alloc_irq_index(cfg, devid, nvec);
4216
4217 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4218}
4219
4220static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4221 int index, int offset)
4222{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004223 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004224 struct irq_cfg *cfg;
4225 u16 devid;
4226
4227 if (!pdev)
4228 return -EINVAL;
4229
Jiang Liu719b5302014-10-27 16:12:10 +08004230 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004231 if (!cfg)
4232 return -EINVAL;
4233
4234 if (index >= MAX_IRQS_PER_TABLE)
4235 return 0;
4236
4237 devid = get_device_id(&pdev->dev);
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004238 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004239
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004240 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004241 irte_info->devid = devid;
4242 irte_info->index = index + offset;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004243
4244 return 0;
4245}
4246
Yijing Wang5fc24d82014-09-17 17:32:19 +08004247static int alloc_hpet_msi(unsigned int irq, unsigned int id)
Joerg Roedeld9761952012-06-26 16:00:08 +02004248{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004249 struct irq_2_irte *irte_info;
Joerg Roedeld9761952012-06-26 16:00:08 +02004250 struct irq_cfg *cfg;
4251 int index, devid;
4252
Jiang Liu719b5302014-10-27 16:12:10 +08004253 cfg = irq_cfg(irq);
Joerg Roedeld9761952012-06-26 16:00:08 +02004254 if (!cfg)
4255 return -EINVAL;
4256
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004257 irte_info = &cfg->irq_2_irte;
Joerg Roedeld9761952012-06-26 16:00:08 +02004258 devid = get_hpet_devid(id);
4259 if (devid < 0)
4260 return devid;
4261
4262 index = alloc_irq_index(cfg, devid, 1);
4263 if (index < 0)
4264 return index;
4265
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004266 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004267 irte_info->devid = devid;
4268 irte_info->index = index;
Joerg Roedeld9761952012-06-26 16:00:08 +02004269
4270 return 0;
4271}
4272
Joerg Roedel6b474b82012-06-26 16:46:04 +02004273struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02004274 .prepare = amd_iommu_prepare,
4275 .enable = amd_iommu_enable,
4276 .disable = amd_iommu_disable,
4277 .reenable = amd_iommu_reenable,
4278 .enable_faulting = amd_iommu_enable_faulting,
4279 .setup_ioapic_entry = setup_ioapic_entry,
4280 .set_affinity = set_affinity,
4281 .free_irq = free_irq,
4282 .compose_msi_msg = compose_msi_msg,
4283 .msi_alloc_irq = msi_alloc_irq,
4284 .msi_setup_irq = msi_setup_irq,
Yijing Wang5fc24d82014-09-17 17:32:19 +08004285 .alloc_hpet_msi = alloc_hpet_msi,
Joerg Roedel6b474b82012-06-26 16:46:04 +02004286};
Joerg Roedel2b324502012-06-21 16:29:10 +02004287#endif