blob: 23c5be6a3a1ebe73cbacd569ea480f3a7c874b0a [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 Roedelb6c02712008-06-26 21:27:53 +02003 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
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>
36#include <asm/irq_remapping.h>
37#include <asm/io_apic.h>
38#include <asm/apic.h>
39#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020040#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020041#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090042#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010043#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020044#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020045
46#include "amd_iommu_proto.h"
47#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020048#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020049
50#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
51
Joerg Roedel815b33f2011-04-06 17:26:49 +020052#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020053
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020054/*
55 * This bitmap is used to advertise the page sizes our hardware support
56 * to the IOMMU core, which will then use this information to split
57 * physically contiguous memory regions it is mapping into page sizes
58 * that we support.
59 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010060 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020061 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063
Joerg Roedelb6c02712008-06-26 21:27:53 +020064static DEFINE_RWLOCK(amd_iommu_devtable_lock);
65
Joerg Roedelbd60b732008-09-11 10:24:48 +020066/* A list of preallocated protection domains */
67static LIST_HEAD(iommu_pd_list);
68static DEFINE_SPINLOCK(iommu_pd_list_lock);
69
Joerg Roedel8fa5f802011-06-09 12:24:45 +020070/* List of all available dev_data structures */
71static LIST_HEAD(dev_data_list);
72static DEFINE_SPINLOCK(dev_data_list_lock);
73
Joerg Roedel6efed632012-06-14 15:52:58 +020074LIST_HEAD(ioapic_map);
75LIST_HEAD(hpet_map);
76
Joerg Roedel0feae532009-08-26 15:26:30 +020077/*
78 * Domain for untranslated devices - only allocated
79 * if iommu=pt passed on kernel cmd line.
80 */
81static struct protection_domain *pt_domain;
82
Thierry Redingb22f6432014-06-27 09:03:12 +020083static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010084
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010086int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010087
Joerg Roedelac1534a2012-06-21 14:52:40 +020088static struct dma_map_ops amd_iommu_dma_ops;
89
Joerg Roedel431b2a22008-07-11 17:14:22 +020090/*
Joerg Roedel50917e22014-08-05 16:38:38 +020091 * This struct contains device specific data for the IOMMU
92 */
93struct iommu_dev_data {
94 struct list_head list; /* For domain->dev_list */
95 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020096 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020097 struct iommu_dev_data *alias_data;/* The alias dev_data */
98 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020099 u16 devid; /* PCI Device ID */
100 bool iommu_v2; /* Device can make use of IOMMUv2 */
101 bool passthrough; /* Default for device is pt_domain */
102 struct {
103 bool enabled;
104 int qdep;
105 } ats; /* ATS state */
106 bool pri_tlp; /* PASID TLB required for
107 PPR completions */
108 u32 errata; /* Bitmap for errata to apply */
109};
110
111/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200112 * general struct to manage commands send to an IOMMU
113 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200114struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200115 u32 data[4];
116};
117
Joerg Roedel05152a02012-06-15 16:53:51 +0200118struct kmem_cache *amd_iommu_irq_cache;
119
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200120static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100121static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700122
Joerg Roedel15898bb2009-11-24 15:39:42 +0100123/****************************************************************************
124 *
125 * Helper functions
126 *
127 ****************************************************************************/
128
Joerg Roedelf62dda62011-06-09 12:55:35 +0200129static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200130{
131 struct iommu_dev_data *dev_data;
132 unsigned long flags;
133
134 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
135 if (!dev_data)
136 return NULL;
137
Joerg Roedelf251e182014-08-05 16:48:10 +0200138 INIT_LIST_HEAD(&dev_data->alias_list);
139
Joerg Roedelf62dda62011-06-09 12:55:35 +0200140 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200141
142 spin_lock_irqsave(&dev_data_list_lock, flags);
143 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
144 spin_unlock_irqrestore(&dev_data_list_lock, flags);
145
146 return dev_data;
147}
148
149static void free_dev_data(struct iommu_dev_data *dev_data)
150{
151 unsigned long flags;
152
153 spin_lock_irqsave(&dev_data_list_lock, flags);
154 list_del(&dev_data->dev_data_list);
155 spin_unlock_irqrestore(&dev_data_list_lock, flags);
156
157 kfree(dev_data);
158}
159
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200160static struct iommu_dev_data *search_dev_data(u16 devid)
161{
162 struct iommu_dev_data *dev_data;
163 unsigned long flags;
164
165 spin_lock_irqsave(&dev_data_list_lock, flags);
166 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
167 if (dev_data->devid == devid)
168 goto out_unlock;
169 }
170
171 dev_data = NULL;
172
173out_unlock:
174 spin_unlock_irqrestore(&dev_data_list_lock, flags);
175
176 return dev_data;
177}
178
179static struct iommu_dev_data *find_dev_data(u16 devid)
180{
181 struct iommu_dev_data *dev_data;
182
183 dev_data = search_dev_data(devid);
184
185 if (dev_data == NULL)
186 dev_data = alloc_dev_data(devid);
187
188 return dev_data;
189}
190
Joerg Roedel15898bb2009-11-24 15:39:42 +0100191static inline u16 get_device_id(struct device *dev)
192{
193 struct pci_dev *pdev = to_pci_dev(dev);
194
Shuah Khan6f2729b2013-02-27 17:07:30 -0700195 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100196}
197
Joerg Roedel657cbb62009-11-23 15:26:46 +0100198static struct iommu_dev_data *get_dev_data(struct device *dev)
199{
200 return dev->archdata.iommu;
201}
202
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100203static bool pci_iommuv2_capable(struct pci_dev *pdev)
204{
205 static const int caps[] = {
206 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100207 PCI_EXT_CAP_ID_PRI,
208 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100209 };
210 int i, pos;
211
212 for (i = 0; i < 3; ++i) {
213 pos = pci_find_ext_capability(pdev, caps[i]);
214 if (pos == 0)
215 return false;
216 }
217
218 return true;
219}
220
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100221static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
222{
223 struct iommu_dev_data *dev_data;
224
225 dev_data = get_dev_data(&pdev->dev);
226
227 return dev_data->errata & (1 << erratum) ? true : false;
228}
229
Joerg Roedel71c70982009-11-24 16:43:06 +0100230/*
231 * In this function the list of preallocated protection domains is traversed to
232 * find the domain for a specific device
233 */
234static struct dma_ops_domain *find_protection_domain(u16 devid)
235{
236 struct dma_ops_domain *entry, *ret = NULL;
237 unsigned long flags;
238 u16 alias = amd_iommu_alias_table[devid];
239
240 if (list_empty(&iommu_pd_list))
241 return NULL;
242
243 spin_lock_irqsave(&iommu_pd_list_lock, flags);
244
245 list_for_each_entry(entry, &iommu_pd_list, list) {
246 if (entry->target_dev == devid ||
247 entry->target_dev == alias) {
248 ret = entry;
249 break;
250 }
251 }
252
253 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
254
255 return ret;
256}
257
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100258/*
259 * This function checks if the driver got a valid device from the caller to
260 * avoid dereferencing invalid pointers.
261 */
262static bool check_device(struct device *dev)
263{
264 u16 devid;
265
266 if (!dev || !dev->dma_mask)
267 return false;
268
Yijing Wangb82a2272013-12-05 19:42:41 +0800269 /* No PCI device */
270 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100271 return false;
272
273 devid = get_device_id(dev);
274
275 /* Out of our scope? */
276 if (devid > amd_iommu_last_bdf)
277 return false;
278
279 if (amd_iommu_rlookup_table[devid] == NULL)
280 return false;
281
282 return true;
283}
284
Alex Williamson2851db22012-10-08 22:49:41 -0600285static int init_iommu_group(struct device *dev)
286{
Alex Williamson2851db22012-10-08 22:49:41 -0600287 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600288
Alex Williamson65d53522014-07-03 09:51:30 -0600289 group = iommu_group_get_for_dev(dev);
Alex Williamson2851db22012-10-08 22:49:41 -0600290
Alex Williamson65d53522014-07-03 09:51:30 -0600291 if (IS_ERR(group))
292 return PTR_ERR(group);
Alex Williamson2851db22012-10-08 22:49:41 -0600293
Alex Williamson65d53522014-07-03 09:51:30 -0600294 iommu_group_put(group);
295 return 0;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600296}
297
Alex Williamsonc1931092014-07-03 09:51:24 -0600298static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
299{
300 *(u16 *)data = alias;
301 return 0;
302}
303
304static u16 get_alias(struct device *dev)
305{
306 struct pci_dev *pdev = to_pci_dev(dev);
307 u16 devid, ivrs_alias, pci_alias;
308
309 devid = get_device_id(dev);
310 ivrs_alias = amd_iommu_alias_table[devid];
311 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
312
313 if (ivrs_alias == pci_alias)
314 return ivrs_alias;
315
316 /*
317 * DMA alias showdown
318 *
319 * The IVRS is fairly reliable in telling us about aliases, but it
320 * can't know about every screwy device. If we don't have an IVRS
321 * reported alias, use the PCI reported alias. In that case we may
322 * still need to initialize the rlookup and dev_table entries if the
323 * alias is to a non-existent device.
324 */
325 if (ivrs_alias == devid) {
326 if (!amd_iommu_rlookup_table[pci_alias]) {
327 amd_iommu_rlookup_table[pci_alias] =
328 amd_iommu_rlookup_table[devid];
329 memcpy(amd_iommu_dev_table[pci_alias].data,
330 amd_iommu_dev_table[devid].data,
331 sizeof(amd_iommu_dev_table[pci_alias].data));
332 }
333
334 return pci_alias;
335 }
336
337 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
338 "for device %s[%04x:%04x], kernel reported alias "
339 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
340 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
341 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
342 PCI_FUNC(pci_alias));
343
344 /*
345 * If we don't have a PCI DMA alias and the IVRS alias is on the same
346 * bus, then the IVRS table may know about a quirk that we don't.
347 */
348 if (pci_alias == devid &&
349 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
350 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
351 pdev->dma_alias_devfn = ivrs_alias & 0xff;
352 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
353 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
354 dev_name(dev));
355 }
356
357 return ivrs_alias;
358}
359
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600360static int iommu_init_device(struct device *dev)
361{
362 struct pci_dev *pdev = to_pci_dev(dev);
363 struct iommu_dev_data *dev_data;
364 u16 alias;
365 int ret;
366
367 if (dev->archdata.iommu)
368 return 0;
369
370 dev_data = find_dev_data(get_device_id(dev));
371 if (!dev_data)
372 return -ENOMEM;
373
Alex Williamsonc1931092014-07-03 09:51:24 -0600374 alias = get_alias(dev);
375
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600376 if (alias != dev_data->devid) {
377 struct iommu_dev_data *alias_data;
378
379 alias_data = find_dev_data(alias);
380 if (alias_data == NULL) {
381 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
382 dev_name(dev));
383 free_dev_data(dev_data);
384 return -ENOTSUPP;
385 }
386 dev_data->alias_data = alias_data;
Joerg Roedelf251e182014-08-05 16:48:10 +0200387
388 /* Add device to the alias_list */
389 list_add(&dev_data->alias_list, &alias_data->alias_list);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600390 }
391
392 ret = init_iommu_group(dev);
Radmila Kompováe644a012013-05-02 17:24:25 +0200393 if (ret) {
394 free_dev_data(dev_data);
Alex Williamson9dcd6132012-05-30 14:19:07 -0600395 return ret;
Radmila Kompováe644a012013-05-02 17:24:25 +0200396 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600397
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100398 if (pci_iommuv2_capable(pdev)) {
399 struct amd_iommu *iommu;
400
401 iommu = amd_iommu_rlookup_table[dev_data->devid];
402 dev_data->iommu_v2 = iommu->is_iommu_v2;
403 }
404
Joerg Roedel657cbb62009-11-23 15:26:46 +0100405 dev->archdata.iommu = dev_data;
406
Alex Williamson066f2e92014-06-12 16:12:37 -0600407 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
408 dev);
409
Joerg Roedel657cbb62009-11-23 15:26:46 +0100410 return 0;
411}
412
Joerg Roedel26018872011-06-06 16:50:14 +0200413static void iommu_ignore_device(struct device *dev)
414{
415 u16 devid, alias;
416
417 devid = get_device_id(dev);
418 alias = amd_iommu_alias_table[devid];
419
420 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
421 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
422
423 amd_iommu_rlookup_table[devid] = NULL;
424 amd_iommu_rlookup_table[alias] = NULL;
425}
426
Joerg Roedel657cbb62009-11-23 15:26:46 +0100427static void iommu_uninit_device(struct device *dev)
428{
Alex Williamsonc1931092014-07-03 09:51:24 -0600429 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
430
431 if (!dev_data)
432 return;
433
Alex Williamson066f2e92014-06-12 16:12:37 -0600434 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
435 dev);
436
Alex Williamson9dcd6132012-05-30 14:19:07 -0600437 iommu_group_remove_device(dev);
438
Alex Williamsonc1931092014-07-03 09:51:24 -0600439 /* Unlink from alias, it may change if another device is re-plugged */
440 dev_data->alias_data = NULL;
441
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200442 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600443 * We keep dev_data around for unplugged devices and reuse it when the
444 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200445 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100446}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100447
448void __init amd_iommu_uninit_devices(void)
449{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200450 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100451 struct pci_dev *pdev = NULL;
452
453 for_each_pci_dev(pdev) {
454
455 if (!check_device(&pdev->dev))
456 continue;
457
458 iommu_uninit_device(&pdev->dev);
459 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200460
461 /* Free all of our dev_data structures */
462 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
463 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100464}
465
466int __init amd_iommu_init_devices(void)
467{
468 struct pci_dev *pdev = NULL;
469 int ret = 0;
470
471 for_each_pci_dev(pdev) {
472
473 if (!check_device(&pdev->dev))
474 continue;
475
476 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200477 if (ret == -ENOTSUPP)
478 iommu_ignore_device(&pdev->dev);
479 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100480 goto out_free;
481 }
482
483 return 0;
484
485out_free:
486
487 amd_iommu_uninit_devices();
488
489 return ret;
490}
Joerg Roedel7f265082008-12-12 13:50:21 +0100491#ifdef CONFIG_AMD_IOMMU_STATS
492
493/*
494 * Initialization code for statistics collection
495 */
496
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100497DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100498DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100499DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100500DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100501DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100502DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100503DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100504DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100505DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100506DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100507DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100508DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100509DECLARE_STATS_COUNTER(complete_ppr);
510DECLARE_STATS_COUNTER(invalidate_iotlb);
511DECLARE_STATS_COUNTER(invalidate_iotlb_all);
512DECLARE_STATS_COUNTER(pri_requests);
513
Joerg Roedel7f265082008-12-12 13:50:21 +0100514static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100515static struct dentry *de_fflush;
516
517static void amd_iommu_stats_add(struct __iommu_counter *cnt)
518{
519 if (stats_dir == NULL)
520 return;
521
522 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
523 &cnt->value);
524}
525
526static void amd_iommu_stats_init(void)
527{
528 stats_dir = debugfs_create_dir("amd-iommu", NULL);
529 if (stats_dir == NULL)
530 return;
531
Joerg Roedel7f265082008-12-12 13:50:21 +0100532 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300533 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100534
535 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100536 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100537 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100538 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100539 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100540 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100541 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100542 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100543 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100544 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100545 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100546 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100547 amd_iommu_stats_add(&complete_ppr);
548 amd_iommu_stats_add(&invalidate_iotlb);
549 amd_iommu_stats_add(&invalidate_iotlb_all);
550 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100551}
552
553#endif
554
Joerg Roedel431b2a22008-07-11 17:14:22 +0200555/****************************************************************************
556 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200557 * Interrupt handling functions
558 *
559 ****************************************************************************/
560
Joerg Roedele3e59872009-09-03 14:02:10 +0200561static void dump_dte_entry(u16 devid)
562{
563 int i;
564
Joerg Roedelee6c2862011-11-09 12:06:03 +0100565 for (i = 0; i < 4; ++i)
566 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200567 amd_iommu_dev_table[devid].data[i]);
568}
569
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200570static void dump_command(unsigned long phys_addr)
571{
572 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
573 int i;
574
575 for (i = 0; i < 4; ++i)
576 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
577}
578
Joerg Roedela345b232009-09-03 15:01:43 +0200579static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200580{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200581 int type, devid, domid, flags;
582 volatile u32 *event = __evt;
583 int count = 0;
584 u64 address;
585
586retry:
587 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
588 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
589 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
590 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
591 address = (u64)(((u64)event[3]) << 32) | event[2];
592
593 if (type == 0) {
594 /* Did we hit the erratum? */
595 if (++count == LOOP_TIMEOUT) {
596 pr_err("AMD-Vi: No event written to event log\n");
597 return;
598 }
599 udelay(1);
600 goto retry;
601 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200602
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200603 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200604
605 switch (type) {
606 case EVENT_TYPE_ILL_DEV:
607 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
608 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700609 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200610 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200611 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200612 break;
613 case EVENT_TYPE_IO_FAULT:
614 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
615 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700616 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200617 domid, address, flags);
618 break;
619 case EVENT_TYPE_DEV_TAB_ERR:
620 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
621 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700622 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200623 address, flags);
624 break;
625 case EVENT_TYPE_PAGE_TAB_ERR:
626 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
627 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700628 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200629 domid, address, flags);
630 break;
631 case EVENT_TYPE_ILL_CMD:
632 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200633 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200634 break;
635 case EVENT_TYPE_CMD_HARD_ERR:
636 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
637 "flags=0x%04x]\n", address, flags);
638 break;
639 case EVENT_TYPE_IOTLB_INV_TO:
640 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
641 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700642 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200643 address);
644 break;
645 case EVENT_TYPE_INV_DEV_REQ:
646 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
647 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700648 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200649 address, flags);
650 break;
651 default:
652 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
653 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200654
655 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200656}
657
658static void iommu_poll_events(struct amd_iommu *iommu)
659{
660 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200661
662 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
663 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
664
665 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200666 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200667 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
668 }
669
670 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200671}
672
Joerg Roedeleee53532012-06-01 15:20:23 +0200673static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100674{
675 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100676
Joerg Roedel399be2f2011-12-01 16:53:47 +0100677 INC_STATS_COUNTER(pri_requests);
678
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
680 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
681 return;
682 }
683
684 fault.address = raw[1];
685 fault.pasid = PPR_PASID(raw[0]);
686 fault.device_id = PPR_DEVID(raw[0]);
687 fault.tag = PPR_TAG(raw[0]);
688 fault.flags = PPR_FLAGS(raw[0]);
689
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100690 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
691}
692
693static void iommu_poll_ppr_log(struct amd_iommu *iommu)
694{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100695 u32 head, tail;
696
697 if (iommu->ppr_log == NULL)
698 return;
699
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100700 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
701 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
702
703 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200704 volatile u64 *raw;
705 u64 entry[2];
706 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100707
Joerg Roedeleee53532012-06-01 15:20:23 +0200708 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100709
Joerg Roedeleee53532012-06-01 15:20:23 +0200710 /*
711 * Hardware bug: Interrupt may arrive before the entry is
712 * written to memory. If this happens we need to wait for the
713 * entry to arrive.
714 */
715 for (i = 0; i < LOOP_TIMEOUT; ++i) {
716 if (PPR_REQ_TYPE(raw[0]) != 0)
717 break;
718 udelay(1);
719 }
720
721 /* Avoid memcpy function-call overhead */
722 entry[0] = raw[0];
723 entry[1] = raw[1];
724
725 /*
726 * To detect the hardware bug we need to clear the entry
727 * back to zero.
728 */
729 raw[0] = raw[1] = 0UL;
730
731 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100732 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
733 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200734
Joerg Roedeleee53532012-06-01 15:20:23 +0200735 /* Handle PPR entry */
736 iommu_handle_ppr_entry(iommu, entry);
737
Joerg Roedeleee53532012-06-01 15:20:23 +0200738 /* Refresh ring-buffer information */
739 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100740 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
741 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100742}
743
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200744irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200745{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500746 struct amd_iommu *iommu = (struct amd_iommu *) data;
747 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200748
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500749 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
750 /* Enable EVT and PPR interrupts again */
751 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
752 iommu->mmio_base + MMIO_STATUS_OFFSET);
753
754 if (status & MMIO_STATUS_EVT_INT_MASK) {
755 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
756 iommu_poll_events(iommu);
757 }
758
759 if (status & MMIO_STATUS_PPR_INT_MASK) {
760 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
761 iommu_poll_ppr_log(iommu);
762 }
763
764 /*
765 * Hardware bug: ERBT1312
766 * When re-enabling interrupt (by writing 1
767 * to clear the bit), the hardware might also try to set
768 * the interrupt bit in the event status register.
769 * In this scenario, the bit will be set, and disable
770 * subsequent interrupts.
771 *
772 * Workaround: The IOMMU driver should read back the
773 * status register and check if the interrupt bits are cleared.
774 * If not, driver will need to go through the interrupt handler
775 * again and re-clear the bits
776 */
777 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100778 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200779 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200780}
781
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200782irqreturn_t amd_iommu_int_handler(int irq, void *data)
783{
784 return IRQ_WAKE_THREAD;
785}
786
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200787/****************************************************************************
788 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200789 * IOMMU command queuing functions
790 *
791 ****************************************************************************/
792
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200793static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200794{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200795 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200796
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200797 while (*sem == 0 && i < LOOP_TIMEOUT) {
798 udelay(1);
799 i += 1;
800 }
801
802 if (i == LOOP_TIMEOUT) {
803 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
804 return -EIO;
805 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200806
807 return 0;
808}
809
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200810static void copy_cmd_to_buffer(struct amd_iommu *iommu,
811 struct iommu_cmd *cmd,
812 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200813{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200814 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200815
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200816 target = iommu->cmd_buf + tail;
817 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200818
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200819 /* Copy command to buffer */
820 memcpy(target, cmd, sizeof(*cmd));
821
822 /* Tell the IOMMU about it */
823 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
824}
825
Joerg Roedel815b33f2011-04-06 17:26:49 +0200826static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200827{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200828 WARN_ON(address & 0x7ULL);
829
Joerg Roedelded46732011-04-06 10:53:48 +0200830 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200831 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
832 cmd->data[1] = upper_32_bits(__pa(address));
833 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200834 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
835}
836
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200837static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
838{
839 memset(cmd, 0, sizeof(*cmd));
840 cmd->data[0] = devid;
841 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
842}
843
Joerg Roedel11b64022011-04-06 11:49:28 +0200844static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
845 size_t size, u16 domid, int pde)
846{
847 u64 pages;
848 int s;
849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
851 s = 0;
852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
859 s = 1;
860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[1] |= domid;
866 cmd->data[2] = lower_32_bits(address);
867 cmd->data[3] = upper_32_bits(address);
868 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
869 if (s) /* size bit - we flush more than one 4kb page */
870 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200871 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
873}
874
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200875static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
876 u64 address, size_t size)
877{
878 u64 pages;
879 int s;
880
881 pages = iommu_num_pages(address, size, PAGE_SIZE);
882 s = 0;
883
884 if (pages > 1) {
885 /*
886 * If we have to flush more than one page, flush all
887 * TLB entries for this domain
888 */
889 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
890 s = 1;
891 }
892
893 address &= PAGE_MASK;
894
895 memset(cmd, 0, sizeof(*cmd));
896 cmd->data[0] = devid;
897 cmd->data[0] |= (qdep & 0xff) << 24;
898 cmd->data[1] = devid;
899 cmd->data[2] = lower_32_bits(address);
900 cmd->data[3] = upper_32_bits(address);
901 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
902 if (s)
903 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
904}
905
Joerg Roedel22e266c2011-11-21 15:59:08 +0100906static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
907 u64 address, bool size)
908{
909 memset(cmd, 0, sizeof(*cmd));
910
911 address &= ~(0xfffULL);
912
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600913 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100914 cmd->data[1] = domid;
915 cmd->data[2] = lower_32_bits(address);
916 cmd->data[3] = upper_32_bits(address);
917 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
918 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
919 if (size)
920 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
921 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
922}
923
924static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
925 int qdep, u64 address, bool size)
926{
927 memset(cmd, 0, sizeof(*cmd));
928
929 address &= ~(0xfffULL);
930
931 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600932 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100933 cmd->data[0] |= (qdep & 0xff) << 24;
934 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600935 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100936 cmd->data[2] = lower_32_bits(address);
937 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
938 cmd->data[3] = upper_32_bits(address);
939 if (size)
940 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
941 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
942}
943
Joerg Roedelc99afa22011-11-21 18:19:25 +0100944static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
945 int status, int tag, bool gn)
946{
947 memset(cmd, 0, sizeof(*cmd));
948
949 cmd->data[0] = devid;
950 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600951 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100952 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
953 }
954 cmd->data[3] = tag & 0x1ff;
955 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
956
957 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
958}
959
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200960static void build_inv_all(struct iommu_cmd *cmd)
961{
962 memset(cmd, 0, sizeof(*cmd));
963 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200964}
965
Joerg Roedel7ef27982012-06-21 16:46:04 +0200966static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
967{
968 memset(cmd, 0, sizeof(*cmd));
969 cmd->data[0] = devid;
970 CMD_SET_TYPE(cmd, CMD_INV_IRT);
971}
972
Joerg Roedel431b2a22008-07-11 17:14:22 +0200973/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200974 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200975 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200976 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200977static int iommu_queue_command_sync(struct amd_iommu *iommu,
978 struct iommu_cmd *cmd,
979 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200980{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200981 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200982 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200983
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200984 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100985
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200986again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200987 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200988
989 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
990 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
991 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
992 left = (head - next_tail) % iommu->cmd_buf_size;
993
994 if (left <= 2) {
995 struct iommu_cmd sync_cmd;
996 volatile u64 sem = 0;
997 int ret;
998
999 build_completion_wait(&sync_cmd, (u64)&sem);
1000 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
1001
1002 spin_unlock_irqrestore(&iommu->lock, flags);
1003
1004 if ((ret = wait_on_sem(&sem)) != 0)
1005 return ret;
1006
1007 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001008 }
1009
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001010 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001011
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001012 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001013 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001014
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001015 spin_unlock_irqrestore(&iommu->lock, flags);
1016
Joerg Roedel815b33f2011-04-06 17:26:49 +02001017 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001018}
1019
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001020static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1021{
1022 return iommu_queue_command_sync(iommu, cmd, true);
1023}
1024
Joerg Roedel8d201962008-12-02 20:34:41 +01001025/*
1026 * This function queues a completion wait command into the command
1027 * buffer of an IOMMU
1028 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001029static int iommu_completion_wait(struct amd_iommu *iommu)
1030{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001031 struct iommu_cmd cmd;
1032 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001033 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001034
1035 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001036 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001037
Joerg Roedel815b33f2011-04-06 17:26:49 +02001038 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001039
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001040 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001041 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001042 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001043
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001044 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001045}
1046
Joerg Roedeld8c13082011-04-06 18:51:26 +02001047static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001048{
1049 struct iommu_cmd cmd;
1050
Joerg Roedeld8c13082011-04-06 18:51:26 +02001051 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001052
Joerg Roedeld8c13082011-04-06 18:51:26 +02001053 return iommu_queue_command(iommu, &cmd);
1054}
1055
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001056static void iommu_flush_dte_all(struct amd_iommu *iommu)
1057{
1058 u32 devid;
1059
1060 for (devid = 0; devid <= 0xffff; ++devid)
1061 iommu_flush_dte(iommu, devid);
1062
1063 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001064}
1065
1066/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001067 * This function uses heavy locking and may disable irqs for some time. But
1068 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001069 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001070static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001071{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001072 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001073
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001074 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1075 struct iommu_cmd cmd;
1076 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1077 dom_id, 1);
1078 iommu_queue_command(iommu, &cmd);
1079 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001080
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001081 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001082}
1083
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001084static void iommu_flush_all(struct amd_iommu *iommu)
1085{
1086 struct iommu_cmd cmd;
1087
1088 build_inv_all(&cmd);
1089
1090 iommu_queue_command(iommu, &cmd);
1091 iommu_completion_wait(iommu);
1092}
1093
Joerg Roedel7ef27982012-06-21 16:46:04 +02001094static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1095{
1096 struct iommu_cmd cmd;
1097
1098 build_inv_irt(&cmd, devid);
1099
1100 iommu_queue_command(iommu, &cmd);
1101}
1102
1103static void iommu_flush_irt_all(struct amd_iommu *iommu)
1104{
1105 u32 devid;
1106
1107 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1108 iommu_flush_irt(iommu, devid);
1109
1110 iommu_completion_wait(iommu);
1111}
1112
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001113void iommu_flush_all_caches(struct amd_iommu *iommu)
1114{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001115 if (iommu_feature(iommu, FEATURE_IA)) {
1116 iommu_flush_all(iommu);
1117 } else {
1118 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001119 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001120 iommu_flush_tlb_all(iommu);
1121 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001122}
1123
Joerg Roedel431b2a22008-07-11 17:14:22 +02001124/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001125 * Command send function for flushing on-device TLB
1126 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001127static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1128 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001129{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001130 struct amd_iommu *iommu;
1131 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001132 int qdep;
1133
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001134 qdep = dev_data->ats.qdep;
1135 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001136
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001137 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001138
1139 return iommu_queue_command(iommu, &cmd);
1140}
1141
1142/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001143 * Command send function for invalidating a device table entry
1144 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001145static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001146{
1147 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001148 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001149
Joerg Roedel6c542042011-06-09 17:07:31 +02001150 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001151
Joerg Roedelf62dda62011-06-09 12:55:35 +02001152 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001153 if (ret)
1154 return ret;
1155
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001156 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001157 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001158
1159 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001160}
1161
Joerg Roedel431b2a22008-07-11 17:14:22 +02001162/*
1163 * TLB invalidation function which is called from the mapping functions.
1164 * It invalidates a single PTE if the range to flush is within a single
1165 * page. Otherwise it flushes the whole TLB of the IOMMU.
1166 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001167static void __domain_flush_pages(struct protection_domain *domain,
1168 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001169{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001170 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001171 struct iommu_cmd cmd;
1172 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001173
Joerg Roedel11b64022011-04-06 11:49:28 +02001174 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001175
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001176 for (i = 0; i < amd_iommus_present; ++i) {
1177 if (!domain->dev_iommu[i])
1178 continue;
1179
1180 /*
1181 * Devices of this domain are behind this IOMMU
1182 * We need a TLB flush
1183 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001184 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001185 }
1186
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001187 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001188
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001189 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001190 continue;
1191
Joerg Roedel6c542042011-06-09 17:07:31 +02001192 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001193 }
1194
Joerg Roedel11b64022011-04-06 11:49:28 +02001195 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001196}
1197
Joerg Roedel17b124b2011-04-06 18:01:35 +02001198static void domain_flush_pages(struct protection_domain *domain,
1199 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001200{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001201 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001202}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001203
Joerg Roedel1c655772008-09-04 18:40:05 +02001204/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001205static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001206{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001207 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001208}
1209
Chris Wright42a49f92009-06-15 15:42:00 +02001210/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001211static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001212{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001213 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1214}
1215
1216static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001217{
1218 int i;
1219
1220 for (i = 0; i < amd_iommus_present; ++i) {
1221 if (!domain->dev_iommu[i])
1222 continue;
1223
1224 /*
1225 * Devices of this domain are behind this IOMMU
1226 * We need to wait for completion of all commands.
1227 */
1228 iommu_completion_wait(amd_iommus[i]);
1229 }
1230}
1231
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001232
Joerg Roedel43f49602008-12-02 21:01:12 +01001233/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001234 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001235 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001236static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001237{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001238 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001239
1240 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001241 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001242}
1243
Joerg Roedel431b2a22008-07-11 17:14:22 +02001244/****************************************************************************
1245 *
1246 * The functions below are used the create the page table mappings for
1247 * unity mapped regions.
1248 *
1249 ****************************************************************************/
1250
1251/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001252 * This function is used to add another level to an IO page table. Adding
1253 * another level increases the size of the address space by 9 bits to a size up
1254 * to 64 bits.
1255 */
1256static bool increase_address_space(struct protection_domain *domain,
1257 gfp_t gfp)
1258{
1259 u64 *pte;
1260
1261 if (domain->mode == PAGE_MODE_6_LEVEL)
1262 /* address space already 64 bit large */
1263 return false;
1264
1265 pte = (void *)get_zeroed_page(gfp);
1266 if (!pte)
1267 return false;
1268
1269 *pte = PM_LEVEL_PDE(domain->mode,
1270 virt_to_phys(domain->pt_root));
1271 domain->pt_root = pte;
1272 domain->mode += 1;
1273 domain->updated = true;
1274
1275 return true;
1276}
1277
1278static u64 *alloc_pte(struct protection_domain *domain,
1279 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001280 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001281 u64 **pte_page,
1282 gfp_t gfp)
1283{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001284 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001285 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001286
1287 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001288
1289 while (address > PM_LEVEL_SIZE(domain->mode))
1290 increase_address_space(domain, gfp);
1291
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001292 level = domain->mode - 1;
1293 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1294 address = PAGE_SIZE_ALIGN(address, page_size);
1295 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001296
1297 while (level > end_lvl) {
1298 if (!IOMMU_PTE_PRESENT(*pte)) {
1299 page = (u64 *)get_zeroed_page(gfp);
1300 if (!page)
1301 return NULL;
1302 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1303 }
1304
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001305 /* No level skipping support yet */
1306 if (PM_PTE_LEVEL(*pte) != level)
1307 return NULL;
1308
Joerg Roedel308973d2009-11-24 17:43:32 +01001309 level -= 1;
1310
1311 pte = IOMMU_PTE_PAGE(*pte);
1312
1313 if (pte_page && level == end_lvl)
1314 *pte_page = pte;
1315
1316 pte = &pte[PM_LEVEL_INDEX(level, address)];
1317 }
1318
1319 return pte;
1320}
1321
1322/*
1323 * This function checks if there is a PTE for a given dma address. If
1324 * there is one, it returns the pointer to it.
1325 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001326static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001327{
1328 int level;
1329 u64 *pte;
1330
Joerg Roedel24cd7722010-01-19 17:27:39 +01001331 if (address > PM_LEVEL_SIZE(domain->mode))
1332 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001333
Joerg Roedel24cd7722010-01-19 17:27:39 +01001334 level = domain->mode - 1;
1335 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1336
1337 while (level > 0) {
1338
1339 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001340 if (!IOMMU_PTE_PRESENT(*pte))
1341 return NULL;
1342
Joerg Roedel24cd7722010-01-19 17:27:39 +01001343 /* Large PTE */
1344 if (PM_PTE_LEVEL(*pte) == 0x07) {
1345 unsigned long pte_mask, __pte;
1346
1347 /*
1348 * If we have a series of large PTEs, make
1349 * sure to return a pointer to the first one.
1350 */
1351 pte_mask = PTE_PAGE_SIZE(*pte);
1352 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1353 __pte = ((unsigned long)pte) & pte_mask;
1354
1355 return (u64 *)__pte;
1356 }
1357
1358 /* No level skipping support yet */
1359 if (PM_PTE_LEVEL(*pte) != level)
1360 return NULL;
1361
Joerg Roedel308973d2009-11-24 17:43:32 +01001362 level -= 1;
1363
Joerg Roedel24cd7722010-01-19 17:27:39 +01001364 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001365 pte = IOMMU_PTE_PAGE(*pte);
1366 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001367 }
1368
1369 return pte;
1370}
1371
1372/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001373 * Generic mapping functions. It maps a physical address into a DMA
1374 * address space. It allocates the page table pages if necessary.
1375 * In the future it can be extended to a generic mapping function
1376 * supporting all features of AMD IOMMU page tables like level skipping
1377 * and full 64 bit address spaces.
1378 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001379static int iommu_map_page(struct protection_domain *dom,
1380 unsigned long bus_addr,
1381 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001382 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001383 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001384{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001385 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001386 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001387
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001388 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001389 return -EINVAL;
1390
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001391 bus_addr = PAGE_ALIGN(bus_addr);
1392 phys_addr = PAGE_ALIGN(phys_addr);
1393 count = PAGE_SIZE_PTE_COUNT(page_size);
1394 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001395
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001396 if (!pte)
1397 return -ENOMEM;
1398
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001399 for (i = 0; i < count; ++i)
1400 if (IOMMU_PTE_PRESENT(pte[i]))
1401 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001402
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001403 if (page_size > PAGE_SIZE) {
1404 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1405 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1406 } else
1407 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1408
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001409 if (prot & IOMMU_PROT_IR)
1410 __pte |= IOMMU_PTE_IR;
1411 if (prot & IOMMU_PROT_IW)
1412 __pte |= IOMMU_PTE_IW;
1413
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001414 for (i = 0; i < count; ++i)
1415 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001416
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001417 update_domain(dom);
1418
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001419 return 0;
1420}
1421
Joerg Roedel24cd7722010-01-19 17:27:39 +01001422static unsigned long iommu_unmap_page(struct protection_domain *dom,
1423 unsigned long bus_addr,
1424 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001425{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001426 unsigned long long unmap_size, unmapped;
1427 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001428
Joerg Roedel24cd7722010-01-19 17:27:39 +01001429 BUG_ON(!is_power_of_2(page_size));
1430
1431 unmapped = 0;
1432
1433 while (unmapped < page_size) {
1434
1435 pte = fetch_pte(dom, bus_addr);
1436
1437 if (!pte) {
1438 /*
1439 * No PTE for this address
1440 * move forward in 4kb steps
1441 */
1442 unmap_size = PAGE_SIZE;
1443 } else if (PM_PTE_LEVEL(*pte) == 0) {
1444 /* 4kb PTE found for this address */
1445 unmap_size = PAGE_SIZE;
1446 *pte = 0ULL;
1447 } else {
1448 int count, i;
1449
1450 /* Large PTE found which maps this address */
1451 unmap_size = PTE_PAGE_SIZE(*pte);
Alex Williamson60d0ca32013-06-21 14:33:19 -06001452
1453 /* Only unmap from the first pte in the page */
1454 if ((unmap_size - 1) & bus_addr)
1455 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001456 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1457 for (i = 0; i < count; i++)
1458 pte[i] = 0ULL;
1459 }
1460
1461 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1462 unmapped += unmap_size;
1463 }
1464
Alex Williamson60d0ca32013-06-21 14:33:19 -06001465 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001466
1467 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001468}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001469
Joerg Roedel431b2a22008-07-11 17:14:22 +02001470/*
1471 * This function checks if a specific unity mapping entry is needed for
1472 * this specific IOMMU.
1473 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001474static int iommu_for_unity_map(struct amd_iommu *iommu,
1475 struct unity_map_entry *entry)
1476{
1477 u16 bdf, i;
1478
1479 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1480 bdf = amd_iommu_alias_table[i];
1481 if (amd_iommu_rlookup_table[bdf] == iommu)
1482 return 1;
1483 }
1484
1485 return 0;
1486}
1487
Joerg Roedel431b2a22008-07-11 17:14:22 +02001488/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001489 * This function actually applies the mapping to the page table of the
1490 * dma_ops domain.
1491 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001492static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1493 struct unity_map_entry *e)
1494{
1495 u64 addr;
1496 int ret;
1497
1498 for (addr = e->address_start; addr < e->address_end;
1499 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001500 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001501 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001502 if (ret)
1503 return ret;
1504 /*
1505 * if unity mapping is in aperture range mark the page
1506 * as allocated in the aperture
1507 */
1508 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001509 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001510 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001511 }
1512
1513 return 0;
1514}
1515
Joerg Roedel431b2a22008-07-11 17:14:22 +02001516/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001517 * Init the unity mappings for a specific IOMMU in the system
1518 *
1519 * Basically iterates over all unity mapping entries and applies them to
1520 * the default domain DMA of that IOMMU if necessary.
1521 */
1522static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1523{
1524 struct unity_map_entry *entry;
1525 int ret;
1526
1527 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1528 if (!iommu_for_unity_map(iommu, entry))
1529 continue;
1530 ret = dma_ops_unity_map(iommu->default_dom, entry);
1531 if (ret)
1532 return ret;
1533 }
1534
1535 return 0;
1536}
1537
1538/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001539 * Inits the unity mappings required for a specific device
1540 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001541static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1542 u16 devid)
1543{
1544 struct unity_map_entry *e;
1545 int ret;
1546
1547 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1548 if (!(devid >= e->devid_start && devid <= e->devid_end))
1549 continue;
1550 ret = dma_ops_unity_map(dma_dom, e);
1551 if (ret)
1552 return ret;
1553 }
1554
1555 return 0;
1556}
1557
Joerg Roedel431b2a22008-07-11 17:14:22 +02001558/****************************************************************************
1559 *
1560 * The next functions belong to the address allocator for the dma_ops
1561 * interface functions. They work like the allocators in the other IOMMU
1562 * drivers. Its basically a bitmap which marks the allocated pages in
1563 * the aperture. Maybe it could be enhanced in the future to a more
1564 * efficient allocator.
1565 *
1566 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001567
Joerg Roedel431b2a22008-07-11 17:14:22 +02001568/*
Joerg Roedel384de722009-05-15 12:30:05 +02001569 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001570 *
1571 * called with domain->lock held
1572 */
Joerg Roedel384de722009-05-15 12:30:05 +02001573
Joerg Roedel9cabe892009-05-18 16:38:55 +02001574/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001575 * Used to reserve address ranges in the aperture (e.g. for exclusion
1576 * ranges.
1577 */
1578static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1579 unsigned long start_page,
1580 unsigned int pages)
1581{
1582 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1583
1584 if (start_page + pages > last_page)
1585 pages = last_page - start_page;
1586
1587 for (i = start_page; i < start_page + pages; ++i) {
1588 int index = i / APERTURE_RANGE_PAGES;
1589 int page = i % APERTURE_RANGE_PAGES;
1590 __set_bit(page, dom->aperture[index]->bitmap);
1591 }
1592}
1593
1594/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001595 * This function is used to add a new aperture range to an existing
1596 * aperture in case of dma_ops domain allocation or address allocation
1597 * failure.
1598 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001599static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001600 bool populate, gfp_t gfp)
1601{
1602 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001603 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001604 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001605
Joerg Roedelf5e97052009-05-22 12:31:53 +02001606#ifdef CONFIG_IOMMU_STRESS
1607 populate = false;
1608#endif
1609
Joerg Roedel9cabe892009-05-18 16:38:55 +02001610 if (index >= APERTURE_MAX_RANGES)
1611 return -ENOMEM;
1612
1613 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1614 if (!dma_dom->aperture[index])
1615 return -ENOMEM;
1616
1617 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1618 if (!dma_dom->aperture[index]->bitmap)
1619 goto out_free;
1620
1621 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1622
1623 if (populate) {
1624 unsigned long address = dma_dom->aperture_size;
1625 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1626 u64 *pte, *pte_page;
1627
1628 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001629 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001630 &pte_page, gfp);
1631 if (!pte)
1632 goto out_free;
1633
1634 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1635
1636 address += APERTURE_RANGE_SIZE / 64;
1637 }
1638 }
1639
Joerg Roedel17f5b562011-07-06 17:14:44 +02001640 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001641 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1642
Joerg Roedel17f5b562011-07-06 17:14:44 +02001643 /* Reserve address range used for MSI messages */
1644 if (old_size < MSI_ADDR_BASE_LO &&
1645 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1646 unsigned long spage;
1647 int pages;
1648
1649 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1650 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1651
1652 dma_ops_reserve_addresses(dma_dom, spage, pages);
1653 }
1654
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001655 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001656 for_each_iommu(iommu) {
1657 if (iommu->exclusion_start &&
1658 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1659 && iommu->exclusion_start < dma_dom->aperture_size) {
1660 unsigned long startpage;
1661 int pages = iommu_num_pages(iommu->exclusion_start,
1662 iommu->exclusion_length,
1663 PAGE_SIZE);
1664 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1665 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1666 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001667 }
1668
1669 /*
1670 * Check for areas already mapped as present in the new aperture
1671 * range and mark those pages as reserved in the allocator. Such
1672 * mappings may already exist as a result of requested unity
1673 * mappings for devices.
1674 */
1675 for (i = dma_dom->aperture[index]->offset;
1676 i < dma_dom->aperture_size;
1677 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001678 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001679 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1680 continue;
1681
Joerg Roedelfcd08612011-10-11 17:41:32 +02001682 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001683 }
1684
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001685 update_domain(&dma_dom->domain);
1686
Joerg Roedel9cabe892009-05-18 16:38:55 +02001687 return 0;
1688
1689out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001690 update_domain(&dma_dom->domain);
1691
Joerg Roedel9cabe892009-05-18 16:38:55 +02001692 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1693
1694 kfree(dma_dom->aperture[index]);
1695 dma_dom->aperture[index] = NULL;
1696
1697 return -ENOMEM;
1698}
1699
Joerg Roedel384de722009-05-15 12:30:05 +02001700static unsigned long dma_ops_area_alloc(struct device *dev,
1701 struct dma_ops_domain *dom,
1702 unsigned int pages,
1703 unsigned long align_mask,
1704 u64 dma_mask,
1705 unsigned long start)
1706{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001707 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001708 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1709 int i = start >> APERTURE_RANGE_SHIFT;
1710 unsigned long boundary_size;
1711 unsigned long address = -1;
1712 unsigned long limit;
1713
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001714 next_bit >>= PAGE_SHIFT;
1715
Joerg Roedel384de722009-05-15 12:30:05 +02001716 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1717 PAGE_SIZE) >> PAGE_SHIFT;
1718
1719 for (;i < max_index; ++i) {
1720 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1721
1722 if (dom->aperture[i]->offset >= dma_mask)
1723 break;
1724
1725 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1726 dma_mask >> PAGE_SHIFT);
1727
1728 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1729 limit, next_bit, pages, 0,
1730 boundary_size, align_mask);
1731 if (address != -1) {
1732 address = dom->aperture[i]->offset +
1733 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001734 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001735 break;
1736 }
1737
1738 next_bit = 0;
1739 }
1740
1741 return address;
1742}
1743
Joerg Roedeld3086442008-06-26 21:27:57 +02001744static unsigned long dma_ops_alloc_addresses(struct device *dev,
1745 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001746 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001747 unsigned long align_mask,
1748 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001749{
Joerg Roedeld3086442008-06-26 21:27:57 +02001750 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001751
Joerg Roedelfe16f082009-05-22 12:27:53 +02001752#ifdef CONFIG_IOMMU_STRESS
1753 dom->next_address = 0;
1754 dom->need_flush = true;
1755#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001756
Joerg Roedel384de722009-05-15 12:30:05 +02001757 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001758 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001759
Joerg Roedel1c655772008-09-04 18:40:05 +02001760 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001761 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001762 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1763 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001764 dom->need_flush = true;
1765 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001766
Joerg Roedel384de722009-05-15 12:30:05 +02001767 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001768 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001769
1770 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1771
1772 return address;
1773}
1774
Joerg Roedel431b2a22008-07-11 17:14:22 +02001775/*
1776 * The address free function.
1777 *
1778 * called with domain->lock held
1779 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001780static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1781 unsigned long address,
1782 unsigned int pages)
1783{
Joerg Roedel384de722009-05-15 12:30:05 +02001784 unsigned i = address >> APERTURE_RANGE_SHIFT;
1785 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001786
Joerg Roedel384de722009-05-15 12:30:05 +02001787 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1788
Joerg Roedel47bccd62009-05-22 12:40:54 +02001789#ifdef CONFIG_IOMMU_STRESS
1790 if (i < 4)
1791 return;
1792#endif
1793
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001794 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001795 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001796
1797 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001798
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001799 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001800
Joerg Roedeld3086442008-06-26 21:27:57 +02001801}
1802
Joerg Roedel431b2a22008-07-11 17:14:22 +02001803/****************************************************************************
1804 *
1805 * The next functions belong to the domain allocation. A domain is
1806 * allocated for every IOMMU as the default domain. If device isolation
1807 * is enabled, every device get its own domain. The most important thing
1808 * about domains is the page table mapping the DMA address space they
1809 * contain.
1810 *
1811 ****************************************************************************/
1812
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001813/*
1814 * This function adds a protection domain to the global protection domain list
1815 */
1816static void add_domain_to_list(struct protection_domain *domain)
1817{
1818 unsigned long flags;
1819
1820 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1821 list_add(&domain->list, &amd_iommu_pd_list);
1822 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1823}
1824
1825/*
1826 * This function removes a protection domain to the global
1827 * protection domain list
1828 */
1829static void del_domain_from_list(struct protection_domain *domain)
1830{
1831 unsigned long flags;
1832
1833 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1834 list_del(&domain->list);
1835 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1836}
1837
Joerg Roedelec487d12008-06-26 21:27:58 +02001838static u16 domain_id_alloc(void)
1839{
1840 unsigned long flags;
1841 int id;
1842
1843 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1844 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1845 BUG_ON(id == 0);
1846 if (id > 0 && id < MAX_DOMAIN_ID)
1847 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1848 else
1849 id = 0;
1850 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1851
1852 return id;
1853}
1854
Joerg Roedela2acfb72008-12-02 18:28:53 +01001855static void domain_id_free(int id)
1856{
1857 unsigned long flags;
1858
1859 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1860 if (id > 0 && id < MAX_DOMAIN_ID)
1861 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1862 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1863}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001864
Joerg Roedel5c34c402013-06-20 20:22:58 +02001865#define DEFINE_FREE_PT_FN(LVL, FN) \
1866static void free_pt_##LVL (unsigned long __pt) \
1867{ \
1868 unsigned long p; \
1869 u64 *pt; \
1870 int i; \
1871 \
1872 pt = (u64 *)__pt; \
1873 \
1874 for (i = 0; i < 512; ++i) { \
1875 if (!IOMMU_PTE_PRESENT(pt[i])) \
1876 continue; \
1877 \
1878 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1879 FN(p); \
1880 } \
1881 free_page((unsigned long)pt); \
1882}
1883
1884DEFINE_FREE_PT_FN(l2, free_page)
1885DEFINE_FREE_PT_FN(l3, free_pt_l2)
1886DEFINE_FREE_PT_FN(l4, free_pt_l3)
1887DEFINE_FREE_PT_FN(l5, free_pt_l4)
1888DEFINE_FREE_PT_FN(l6, free_pt_l5)
1889
Joerg Roedel86db2e52008-12-02 18:20:21 +01001890static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001891{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001892 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001893
Joerg Roedel5c34c402013-06-20 20:22:58 +02001894 switch (domain->mode) {
1895 case PAGE_MODE_NONE:
1896 break;
1897 case PAGE_MODE_1_LEVEL:
1898 free_page(root);
1899 break;
1900 case PAGE_MODE_2_LEVEL:
1901 free_pt_l2(root);
1902 break;
1903 case PAGE_MODE_3_LEVEL:
1904 free_pt_l3(root);
1905 break;
1906 case PAGE_MODE_4_LEVEL:
1907 free_pt_l4(root);
1908 break;
1909 case PAGE_MODE_5_LEVEL:
1910 free_pt_l5(root);
1911 break;
1912 case PAGE_MODE_6_LEVEL:
1913 free_pt_l6(root);
1914 break;
1915 default:
1916 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001917 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001918}
1919
Joerg Roedelb16137b2011-11-21 16:50:23 +01001920static void free_gcr3_tbl_level1(u64 *tbl)
1921{
1922 u64 *ptr;
1923 int i;
1924
1925 for (i = 0; i < 512; ++i) {
1926 if (!(tbl[i] & GCR3_VALID))
1927 continue;
1928
1929 ptr = __va(tbl[i] & PAGE_MASK);
1930
1931 free_page((unsigned long)ptr);
1932 }
1933}
1934
1935static void free_gcr3_tbl_level2(u64 *tbl)
1936{
1937 u64 *ptr;
1938 int i;
1939
1940 for (i = 0; i < 512; ++i) {
1941 if (!(tbl[i] & GCR3_VALID))
1942 continue;
1943
1944 ptr = __va(tbl[i] & PAGE_MASK);
1945
1946 free_gcr3_tbl_level1(ptr);
1947 }
1948}
1949
Joerg Roedel52815b72011-11-17 17:24:28 +01001950static void free_gcr3_table(struct protection_domain *domain)
1951{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001952 if (domain->glx == 2)
1953 free_gcr3_tbl_level2(domain->gcr3_tbl);
1954 else if (domain->glx == 1)
1955 free_gcr3_tbl_level1(domain->gcr3_tbl);
1956 else if (domain->glx != 0)
1957 BUG();
1958
Joerg Roedel52815b72011-11-17 17:24:28 +01001959 free_page((unsigned long)domain->gcr3_tbl);
1960}
1961
Joerg Roedel431b2a22008-07-11 17:14:22 +02001962/*
1963 * Free a domain, only used if something went wrong in the
1964 * allocation path and we need to free an already allocated page table
1965 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001966static void dma_ops_domain_free(struct dma_ops_domain *dom)
1967{
Joerg Roedel384de722009-05-15 12:30:05 +02001968 int i;
1969
Joerg Roedelec487d12008-06-26 21:27:58 +02001970 if (!dom)
1971 return;
1972
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001973 del_domain_from_list(&dom->domain);
1974
Joerg Roedel86db2e52008-12-02 18:20:21 +01001975 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001976
Joerg Roedel384de722009-05-15 12:30:05 +02001977 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1978 if (!dom->aperture[i])
1979 continue;
1980 free_page((unsigned long)dom->aperture[i]->bitmap);
1981 kfree(dom->aperture[i]);
1982 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001983
1984 kfree(dom);
1985}
1986
Joerg Roedel431b2a22008-07-11 17:14:22 +02001987/*
1988 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001989 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001990 * structures required for the dma_ops interface
1991 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001992static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001993{
1994 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001995
1996 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1997 if (!dma_dom)
1998 return NULL;
1999
2000 spin_lock_init(&dma_dom->domain.lock);
2001
2002 dma_dom->domain.id = domain_id_alloc();
2003 if (dma_dom->domain.id == 0)
2004 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002005 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02002006 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02002007 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01002008 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02002009 dma_dom->domain.priv = dma_dom;
2010 if (!dma_dom->domain.pt_root)
2011 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002012
Joerg Roedel1c655772008-09-04 18:40:05 +02002013 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02002014 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02002015
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002016 add_domain_to_list(&dma_dom->domain);
2017
Joerg Roedel576175c2009-11-23 19:08:46 +01002018 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02002019 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002020
Joerg Roedel431b2a22008-07-11 17:14:22 +02002021 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02002022 * mark the first page as allocated so we never return 0 as
2023 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02002024 */
Joerg Roedel384de722009-05-15 12:30:05 +02002025 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02002026 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02002027
Joerg Roedelec487d12008-06-26 21:27:58 +02002028
2029 return dma_dom;
2030
2031free_dma_dom:
2032 dma_ops_domain_free(dma_dom);
2033
2034 return NULL;
2035}
2036
Joerg Roedel431b2a22008-07-11 17:14:22 +02002037/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002038 * little helper function to check whether a given protection domain is a
2039 * dma_ops domain
2040 */
2041static bool dma_ops_domain(struct protection_domain *domain)
2042{
2043 return domain->flags & PD_DMA_OPS_MASK;
2044}
2045
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002046static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002047{
Joerg Roedel132bd682011-11-17 14:18:46 +01002048 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002049 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002050
Joerg Roedel132bd682011-11-17 14:18:46 +01002051 if (domain->mode != PAGE_MODE_NONE)
2052 pte_root = virt_to_phys(domain->pt_root);
2053
Joerg Roedel38ddf412008-09-11 10:38:32 +02002054 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2055 << DEV_ENTRY_MODE_SHIFT;
2056 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002057
Joerg Roedelee6c2862011-11-09 12:06:03 +01002058 flags = amd_iommu_dev_table[devid].data[1];
2059
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002060 if (ats)
2061 flags |= DTE_FLAG_IOTLB;
2062
Joerg Roedel52815b72011-11-17 17:24:28 +01002063 if (domain->flags & PD_IOMMUV2_MASK) {
2064 u64 gcr3 = __pa(domain->gcr3_tbl);
2065 u64 glx = domain->glx;
2066 u64 tmp;
2067
2068 pte_root |= DTE_FLAG_GV;
2069 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2070
2071 /* First mask out possible old values for GCR3 table */
2072 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2073 flags &= ~tmp;
2074
2075 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2076 flags &= ~tmp;
2077
2078 /* Encode GCR3 table into DTE */
2079 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2080 pte_root |= tmp;
2081
2082 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2083 flags |= tmp;
2084
2085 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2086 flags |= tmp;
2087 }
2088
Joerg Roedelee6c2862011-11-09 12:06:03 +01002089 flags &= ~(0xffffUL);
2090 flags |= domain->id;
2091
2092 amd_iommu_dev_table[devid].data[1] = flags;
2093 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002094}
2095
Joerg Roedel15898bb2009-11-24 15:39:42 +01002096static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002097{
Joerg Roedel355bf552008-12-08 12:02:41 +01002098 /* remove entry from the device table seen by the hardware */
2099 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2100 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002101
Joerg Roedelc5cca142009-10-09 18:31:20 +02002102 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002103}
2104
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002105static void do_attach(struct iommu_dev_data *dev_data,
2106 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002107{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002108 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002109 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002110
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002111 iommu = amd_iommu_rlookup_table[dev_data->devid];
2112 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002113
2114 /* Update data structures */
2115 dev_data->domain = domain;
2116 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002117 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002118
2119 /* Do reference counting */
2120 domain->dev_iommu[iommu->index] += 1;
2121 domain->dev_cnt += 1;
2122
2123 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002124 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002125}
2126
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002127static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002128{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002129 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002130
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002131 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002132
Joerg Roedelc4596112009-11-20 14:57:32 +01002133 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002134 dev_data->domain->dev_iommu[iommu->index] -= 1;
2135 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002136
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002137 /* Update data structures */
2138 dev_data->domain = NULL;
2139 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002140 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002141
2142 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002143 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002144}
2145
2146/*
2147 * If a device is not yet associated with a domain, this function does
2148 * assigns it visible for the hardware
2149 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002150static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002151 struct protection_domain *domain)
2152{
Joerg Roedel397111a2014-08-05 17:31:51 +02002153 struct iommu_dev_data *head, *entry;
Julia Lawall84fe6c12010-05-27 12:31:51 +02002154 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002155
Joerg Roedel15898bb2009-11-24 15:39:42 +01002156 /* lock domain */
2157 spin_lock(&domain->lock);
2158
Joerg Roedel397111a2014-08-05 17:31:51 +02002159 head = dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002160
Joerg Roedel397111a2014-08-05 17:31:51 +02002161 if (head->alias_data != NULL)
2162 head = head->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002163
Joerg Roedel397111a2014-08-05 17:31:51 +02002164 /* Now we have the root of the alias group, if any */
Joerg Roedel2b02b092011-06-09 17:48:39 +02002165
Joerg Roedel397111a2014-08-05 17:31:51 +02002166 ret = -EBUSY;
2167 if (head->domain != NULL)
2168 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002169
Joerg Roedel397111a2014-08-05 17:31:51 +02002170 /* Attach alias group root */
2171 do_attach(head, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002172
Joerg Roedel397111a2014-08-05 17:31:51 +02002173 /* Attach other devices in the alias group */
2174 list_for_each_entry(entry, &head->alias_list, alias_list)
2175 do_attach(entry, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002176
Julia Lawall84fe6c12010-05-27 12:31:51 +02002177 ret = 0;
2178
2179out_unlock:
2180
Joerg Roedel355bf552008-12-08 12:02:41 +01002181 /* ready */
2182 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002183
Julia Lawall84fe6c12010-05-27 12:31:51 +02002184 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002185}
2186
Joerg Roedel52815b72011-11-17 17:24:28 +01002187
2188static void pdev_iommuv2_disable(struct pci_dev *pdev)
2189{
2190 pci_disable_ats(pdev);
2191 pci_disable_pri(pdev);
2192 pci_disable_pasid(pdev);
2193}
2194
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002195/* FIXME: Change generic reset-function to do the same */
2196static int pri_reset_while_enabled(struct pci_dev *pdev)
2197{
2198 u16 control;
2199 int pos;
2200
Joerg Roedel46277b72011-12-07 14:34:02 +01002201 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002202 if (!pos)
2203 return -EINVAL;
2204
Joerg Roedel46277b72011-12-07 14:34:02 +01002205 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2206 control |= PCI_PRI_CTRL_RESET;
2207 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002208
2209 return 0;
2210}
2211
Joerg Roedel52815b72011-11-17 17:24:28 +01002212static int pdev_iommuv2_enable(struct pci_dev *pdev)
2213{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002214 bool reset_enable;
2215 int reqs, ret;
2216
2217 /* FIXME: Hardcode number of outstanding requests for now */
2218 reqs = 32;
2219 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2220 reqs = 1;
2221 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002222
2223 /* Only allow access to user-accessible pages */
2224 ret = pci_enable_pasid(pdev, 0);
2225 if (ret)
2226 goto out_err;
2227
2228 /* First reset the PRI state of the device */
2229 ret = pci_reset_pri(pdev);
2230 if (ret)
2231 goto out_err;
2232
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002233 /* Enable PRI */
2234 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002235 if (ret)
2236 goto out_err;
2237
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002238 if (reset_enable) {
2239 ret = pri_reset_while_enabled(pdev);
2240 if (ret)
2241 goto out_err;
2242 }
2243
Joerg Roedel52815b72011-11-17 17:24:28 +01002244 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2245 if (ret)
2246 goto out_err;
2247
2248 return 0;
2249
2250out_err:
2251 pci_disable_pri(pdev);
2252 pci_disable_pasid(pdev);
2253
2254 return ret;
2255}
2256
Joerg Roedelc99afa22011-11-21 18:19:25 +01002257/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002258#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002259
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002260static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002261{
Joerg Roedela3b93122012-04-12 12:49:26 +02002262 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002263 int pos;
2264
Joerg Roedel46277b72011-12-07 14:34:02 +01002265 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002266 if (!pos)
2267 return false;
2268
Joerg Roedela3b93122012-04-12 12:49:26 +02002269 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002270
Joerg Roedela3b93122012-04-12 12:49:26 +02002271 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002272}
2273
Joerg Roedel15898bb2009-11-24 15:39:42 +01002274/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002275 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002276 * assigns it visible for the hardware
2277 */
2278static int attach_device(struct device *dev,
2279 struct protection_domain *domain)
2280{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002281 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002282 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002283 unsigned long flags;
2284 int ret;
2285
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002286 dev_data = get_dev_data(dev);
2287
Joerg Roedel52815b72011-11-17 17:24:28 +01002288 if (domain->flags & PD_IOMMUV2_MASK) {
2289 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2290 return -EINVAL;
2291
2292 if (pdev_iommuv2_enable(pdev) != 0)
2293 return -EINVAL;
2294
2295 dev_data->ats.enabled = true;
2296 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002297 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002298 } else if (amd_iommu_iotlb_sup &&
2299 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002300 dev_data->ats.enabled = true;
2301 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2302 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002303
Joerg Roedel15898bb2009-11-24 15:39:42 +01002304 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002305 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002306 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2307
2308 /*
2309 * We might boot into a crash-kernel here. The crashed kernel
2310 * left the caches in the IOMMU dirty. So we have to flush
2311 * here to evict all dirty stuff.
2312 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002313 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002314
2315 return ret;
2316}
2317
2318/*
2319 * Removes a device from a protection domain (unlocked)
2320 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002321static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002322{
Joerg Roedel397111a2014-08-05 17:31:51 +02002323 struct iommu_dev_data *head, *entry;
Joerg Roedel2ca76272010-01-22 16:45:31 +01002324 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002325 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002326
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002327 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002328
Joerg Roedel2ca76272010-01-22 16:45:31 +01002329 domain = dev_data->domain;
2330
2331 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002332
Joerg Roedel397111a2014-08-05 17:31:51 +02002333 head = dev_data;
2334 if (head->alias_data != NULL)
2335 head = head->alias_data;
Joerg Roedel71f77582011-06-09 19:03:15 +02002336
Joerg Roedel397111a2014-08-05 17:31:51 +02002337 list_for_each_entry(entry, &head->alias_list, alias_list)
2338 do_detach(entry);
Joerg Roedel24100052009-11-25 15:59:57 +01002339
Joerg Roedel397111a2014-08-05 17:31:51 +02002340 do_detach(head);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002341
Joerg Roedel2ca76272010-01-22 16:45:31 +01002342 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002343
Joerg Roedel21129f72009-09-01 11:59:42 +02002344 /*
2345 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002346 * passthrough domain if it is detached from any other domain.
2347 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002348 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002349 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002350 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002351 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002352}
2353
2354/*
2355 * Removes a device from a protection domain (with devtable_lock held)
2356 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002357static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002358{
Joerg Roedel52815b72011-11-17 17:24:28 +01002359 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002360 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002361 unsigned long flags;
2362
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002363 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002364 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002365
Joerg Roedel355bf552008-12-08 12:02:41 +01002366 /* lock device table */
2367 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002368 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002369 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002370
Joerg Roedel52815b72011-11-17 17:24:28 +01002371 if (domain->flags & PD_IOMMUV2_MASK)
2372 pdev_iommuv2_disable(to_pci_dev(dev));
2373 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002374 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002375
2376 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002377}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002378
Joerg Roedel15898bb2009-11-24 15:39:42 +01002379/*
2380 * Find out the protection domain structure for a given PCI device. This
2381 * will give us the pointer to the page table root for example.
2382 */
2383static struct protection_domain *domain_for_device(struct device *dev)
2384{
Joerg Roedel71f77582011-06-09 19:03:15 +02002385 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002386 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002387 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002388
Joerg Roedel657cbb62009-11-23 15:26:46 +01002389 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002390
Joerg Roedel2b02b092011-06-09 17:48:39 +02002391 if (dev_data->domain)
2392 return dev_data->domain;
2393
Joerg Roedel71f77582011-06-09 19:03:15 +02002394 if (dev_data->alias_data != NULL) {
2395 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002396
2397 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2398 if (alias_data->domain != NULL) {
2399 __attach_device(dev_data, alias_data->domain);
2400 dom = alias_data->domain;
2401 }
2402 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002403 }
2404
Joerg Roedel15898bb2009-11-24 15:39:42 +01002405 return dom;
2406}
2407
Joerg Roedele275a2a2008-12-10 18:27:25 +01002408static int device_change_notifier(struct notifier_block *nb,
2409 unsigned long action, void *data)
2410{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002411 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002412 struct protection_domain *domain;
2413 struct iommu_dev_data *dev_data;
2414 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002415 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002416 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002417 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002418
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002419 if (!check_device(dev))
2420 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002421
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002422 devid = get_device_id(dev);
2423 iommu = amd_iommu_rlookup_table[devid];
2424 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002425
2426 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002427 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002428
2429 domain = domain_for_device(dev);
2430
Joerg Roedele275a2a2008-12-10 18:27:25 +01002431 if (!domain)
2432 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002433 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002434 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002435 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002436 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002437 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002438
2439 iommu_init_device(dev);
2440
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002441 /*
2442 * dev_data is still NULL and
2443 * got initialized in iommu_init_device
2444 */
2445 dev_data = get_dev_data(dev);
2446
2447 if (iommu_pass_through || dev_data->iommu_v2) {
2448 dev_data->passthrough = true;
2449 attach_device(dev, pt_domain);
2450 break;
2451 }
2452
Joerg Roedel657cbb62009-11-23 15:26:46 +01002453 domain = domain_for_device(dev);
2454
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002455 /* allocate a protection domain if a device is added */
2456 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002457 if (!dma_domain) {
2458 dma_domain = dma_ops_domain_alloc();
2459 if (!dma_domain)
2460 goto out;
2461 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002462
Joerg Roedelc2a28762013-03-26 22:48:23 +01002463 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2464 list_add_tail(&dma_domain->list, &iommu_pd_list);
2465 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2466 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002467
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002468 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002469
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002470 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002471 case BUS_NOTIFY_DEL_DEVICE:
2472
2473 iommu_uninit_device(dev);
2474
Joerg Roedele275a2a2008-12-10 18:27:25 +01002475 default:
2476 goto out;
2477 }
2478
Joerg Roedele275a2a2008-12-10 18:27:25 +01002479 iommu_completion_wait(iommu);
2480
2481out:
2482 return 0;
2483}
2484
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302485static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002486 .notifier_call = device_change_notifier,
2487};
Joerg Roedel355bf552008-12-08 12:02:41 +01002488
Joerg Roedel8638c492009-12-10 11:12:25 +01002489void amd_iommu_init_notifier(void)
2490{
2491 bus_register_notifier(&pci_bus_type, &device_nb);
2492}
2493
Joerg Roedel431b2a22008-07-11 17:14:22 +02002494/*****************************************************************************
2495 *
2496 * The next functions belong to the dma_ops mapping/unmapping code.
2497 *
2498 *****************************************************************************/
2499
2500/*
2501 * In the dma_ops path we only have the struct device. This function
2502 * finds the corresponding IOMMU, the protection domain and the
2503 * requestor id for a given device.
2504 * If the device is not yet associated with a domain this is also done
2505 * in this function.
2506 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002507static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002508{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002509 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002510 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002511 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002512
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002513 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002514 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002515
Joerg Roedel94f6d192009-11-24 16:40:02 +01002516 domain = domain_for_device(dev);
2517 if (domain != NULL && !dma_ops_domain(domain))
2518 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002519
Joerg Roedel94f6d192009-11-24 16:40:02 +01002520 if (domain != NULL)
2521 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002522
Frank Arnolddf805ab2012-08-27 19:21:04 +02002523 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002524 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002525 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002526 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2527 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002528 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002529 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002530
Joerg Roedel94f6d192009-11-24 16:40:02 +01002531 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002532}
2533
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002534static void update_device_table(struct protection_domain *domain)
2535{
Joerg Roedel492667d2009-11-27 13:25:47 +01002536 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002537
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002538 list_for_each_entry(dev_data, &domain->dev_list, list)
2539 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002540}
2541
2542static void update_domain(struct protection_domain *domain)
2543{
2544 if (!domain->updated)
2545 return;
2546
2547 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002548
2549 domain_flush_devices(domain);
2550 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002551
2552 domain->updated = false;
2553}
2554
Joerg Roedel431b2a22008-07-11 17:14:22 +02002555/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002556 * This function fetches the PTE for a given address in the aperture
2557 */
2558static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2559 unsigned long address)
2560{
Joerg Roedel384de722009-05-15 12:30:05 +02002561 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002562 u64 *pte, *pte_page;
2563
Joerg Roedel384de722009-05-15 12:30:05 +02002564 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2565 if (!aperture)
2566 return NULL;
2567
2568 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002569 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002570 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002571 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002572 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2573 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002574 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002575
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002576 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002577
2578 return pte;
2579}
2580
2581/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002582 * This is the generic map function. It maps one 4kb page at paddr to
2583 * the given address in the DMA address space for the domain.
2584 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002585static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002586 unsigned long address,
2587 phys_addr_t paddr,
2588 int direction)
2589{
2590 u64 *pte, __pte;
2591
2592 WARN_ON(address > dom->aperture_size);
2593
2594 paddr &= PAGE_MASK;
2595
Joerg Roedel8bda3092009-05-12 12:02:46 +02002596 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002597 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002598 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002599
2600 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2601
2602 if (direction == DMA_TO_DEVICE)
2603 __pte |= IOMMU_PTE_IR;
2604 else if (direction == DMA_FROM_DEVICE)
2605 __pte |= IOMMU_PTE_IW;
2606 else if (direction == DMA_BIDIRECTIONAL)
2607 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2608
2609 WARN_ON(*pte);
2610
2611 *pte = __pte;
2612
2613 return (dma_addr_t)address;
2614}
2615
Joerg Roedel431b2a22008-07-11 17:14:22 +02002616/*
2617 * The generic unmapping function for on page in the DMA address space.
2618 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002619static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002620 unsigned long address)
2621{
Joerg Roedel384de722009-05-15 12:30:05 +02002622 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002623 u64 *pte;
2624
2625 if (address >= dom->aperture_size)
2626 return;
2627
Joerg Roedel384de722009-05-15 12:30:05 +02002628 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2629 if (!aperture)
2630 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002631
Joerg Roedel384de722009-05-15 12:30:05 +02002632 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2633 if (!pte)
2634 return;
2635
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002636 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002637
2638 WARN_ON(!*pte);
2639
2640 *pte = 0ULL;
2641}
2642
Joerg Roedel431b2a22008-07-11 17:14:22 +02002643/*
2644 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002645 * contiguous memory region into DMA address space. It is used by all
2646 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002647 * Must be called with the domain lock held.
2648 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002649static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002650 struct dma_ops_domain *dma_dom,
2651 phys_addr_t paddr,
2652 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002653 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002654 bool align,
2655 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002656{
2657 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002658 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002659 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002660 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002661 int i;
2662
Joerg Roedele3c449f2008-10-15 22:02:11 -07002663 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002664 paddr &= PAGE_MASK;
2665
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002666 INC_STATS_COUNTER(total_map_requests);
2667
Joerg Roedelc1858972008-12-12 15:42:39 +01002668 if (pages > 1)
2669 INC_STATS_COUNTER(cross_page);
2670
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002671 if (align)
2672 align_mask = (1UL << get_order(size)) - 1;
2673
Joerg Roedel11b83882009-05-19 10:23:15 +02002674retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002675 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2676 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002677 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002678 /*
2679 * setting next_address here will let the address
2680 * allocator only scan the new allocated range in the
2681 * first run. This is a small optimization.
2682 */
2683 dma_dom->next_address = dma_dom->aperture_size;
2684
Joerg Roedel576175c2009-11-23 19:08:46 +01002685 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002686 goto out;
2687
2688 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002689 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002690 * allocation again
2691 */
2692 goto retry;
2693 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002694
2695 start = address;
2696 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002697 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002698 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002699 goto out_unmap;
2700
Joerg Roedelcb76c322008-06-26 21:28:00 +02002701 paddr += PAGE_SIZE;
2702 start += PAGE_SIZE;
2703 }
2704 address += offset;
2705
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002706 ADD_STATS_COUNTER(alloced_io_mem, size);
2707
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002708 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002709 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002710 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002711 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002712 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002713
Joerg Roedelcb76c322008-06-26 21:28:00 +02002714out:
2715 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002716
2717out_unmap:
2718
2719 for (--i; i >= 0; --i) {
2720 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002721 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002722 }
2723
2724 dma_ops_free_addresses(dma_dom, address, pages);
2725
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002726 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002727}
2728
Joerg Roedel431b2a22008-07-11 17:14:22 +02002729/*
2730 * Does the reverse of the __map_single function. Must be called with
2731 * the domain lock held too
2732 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002733static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002734 dma_addr_t dma_addr,
2735 size_t size,
2736 int dir)
2737{
Joerg Roedel04e04632010-09-23 16:12:48 +02002738 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002739 dma_addr_t i, start;
2740 unsigned int pages;
2741
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002742 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002743 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002744 return;
2745
Joerg Roedel04e04632010-09-23 16:12:48 +02002746 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002747 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002748 dma_addr &= PAGE_MASK;
2749 start = dma_addr;
2750
2751 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002752 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002753 start += PAGE_SIZE;
2754 }
2755
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002756 SUB_STATS_COUNTER(alloced_io_mem, size);
2757
Joerg Roedelcb76c322008-06-26 21:28:00 +02002758 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002759
Joerg Roedel80be3082008-11-06 14:59:05 +01002760 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002761 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002762 dma_dom->need_flush = false;
2763 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002764}
2765
Joerg Roedel431b2a22008-07-11 17:14:22 +02002766/*
2767 * The exported map_single function for dma_ops.
2768 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002769static dma_addr_t map_page(struct device *dev, struct page *page,
2770 unsigned long offset, size_t size,
2771 enum dma_data_direction dir,
2772 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002773{
2774 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002775 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002776 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002777 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002778 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002779
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002780 INC_STATS_COUNTER(cnt_map_single);
2781
Joerg Roedel94f6d192009-11-24 16:40:02 +01002782 domain = get_domain(dev);
2783 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002784 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002785 else if (IS_ERR(domain))
2786 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002787
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002788 dma_mask = *dev->dma_mask;
2789
Joerg Roedel4da70b92008-06-26 21:28:01 +02002790 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002791
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002792 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002793 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002794 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002795 goto out;
2796
Joerg Roedel17b124b2011-04-06 18:01:35 +02002797 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002798
2799out:
2800 spin_unlock_irqrestore(&domain->lock, flags);
2801
2802 return addr;
2803}
2804
Joerg Roedel431b2a22008-07-11 17:14:22 +02002805/*
2806 * The exported unmap_single function for dma_ops.
2807 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002808static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2809 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002810{
2811 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002812 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002813
Joerg Roedel146a6912008-12-12 15:07:12 +01002814 INC_STATS_COUNTER(cnt_unmap_single);
2815
Joerg Roedel94f6d192009-11-24 16:40:02 +01002816 domain = get_domain(dev);
2817 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002818 return;
2819
Joerg Roedel4da70b92008-06-26 21:28:01 +02002820 spin_lock_irqsave(&domain->lock, flags);
2821
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002822 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002823
Joerg Roedel17b124b2011-04-06 18:01:35 +02002824 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002825
2826 spin_unlock_irqrestore(&domain->lock, flags);
2827}
2828
Joerg Roedel431b2a22008-07-11 17:14:22 +02002829/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002830 * The exported map_sg function for dma_ops (handles scatter-gather
2831 * lists).
2832 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002833static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002834 int nelems, enum dma_data_direction dir,
2835 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002836{
2837 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002838 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002839 int i;
2840 struct scatterlist *s;
2841 phys_addr_t paddr;
2842 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002843 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002844
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002845 INC_STATS_COUNTER(cnt_map_sg);
2846
Joerg Roedel94f6d192009-11-24 16:40:02 +01002847 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002848 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002849 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002850
Joerg Roedel832a90c2008-09-18 15:54:23 +02002851 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002852
Joerg Roedel65b050a2008-06-26 21:28:02 +02002853 spin_lock_irqsave(&domain->lock, flags);
2854
2855 for_each_sg(sglist, s, nelems, i) {
2856 paddr = sg_phys(s);
2857
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002858 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002859 paddr, s->length, dir, false,
2860 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002861
2862 if (s->dma_address) {
2863 s->dma_length = s->length;
2864 mapped_elems++;
2865 } else
2866 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002867 }
2868
Joerg Roedel17b124b2011-04-06 18:01:35 +02002869 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002870
2871out:
2872 spin_unlock_irqrestore(&domain->lock, flags);
2873
2874 return mapped_elems;
2875unmap:
2876 for_each_sg(sglist, s, mapped_elems, i) {
2877 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002878 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002879 s->dma_length, dir);
2880 s->dma_address = s->dma_length = 0;
2881 }
2882
2883 mapped_elems = 0;
2884
2885 goto out;
2886}
2887
Joerg Roedel431b2a22008-07-11 17:14:22 +02002888/*
2889 * The exported map_sg function for dma_ops (handles scatter-gather
2890 * lists).
2891 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002892static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002893 int nelems, enum dma_data_direction dir,
2894 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002895{
2896 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002897 struct protection_domain *domain;
2898 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002899 int i;
2900
Joerg Roedel55877a62008-12-12 15:12:14 +01002901 INC_STATS_COUNTER(cnt_unmap_sg);
2902
Joerg Roedel94f6d192009-11-24 16:40:02 +01002903 domain = get_domain(dev);
2904 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002905 return;
2906
Joerg Roedel65b050a2008-06-26 21:28:02 +02002907 spin_lock_irqsave(&domain->lock, flags);
2908
2909 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002910 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002911 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002912 s->dma_address = s->dma_length = 0;
2913 }
2914
Joerg Roedel17b124b2011-04-06 18:01:35 +02002915 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002916
2917 spin_unlock_irqrestore(&domain->lock, flags);
2918}
2919
Joerg Roedel431b2a22008-07-11 17:14:22 +02002920/*
2921 * The exported alloc_coherent function for dma_ops.
2922 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002923static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002924 dma_addr_t *dma_addr, gfp_t flag,
2925 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002926{
2927 unsigned long flags;
2928 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002929 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002930 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002931 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002932
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002933 INC_STATS_COUNTER(cnt_alloc_coherent);
2934
Joerg Roedel94f6d192009-11-24 16:40:02 +01002935 domain = get_domain(dev);
2936 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002937 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2938 *dma_addr = __pa(virt_addr);
2939 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002940 } else if (IS_ERR(domain))
2941 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002942
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002943 dma_mask = dev->coherent_dma_mask;
2944 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2945 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002946
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002947 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2948 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302949 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002950
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002951 paddr = virt_to_phys(virt_addr);
2952
Joerg Roedel832a90c2008-09-18 15:54:23 +02002953 if (!dma_mask)
2954 dma_mask = *dev->dma_mask;
2955
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002956 spin_lock_irqsave(&domain->lock, flags);
2957
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002958 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002959 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002960
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002961 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002962 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002963 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002964 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002965
Joerg Roedel17b124b2011-04-06 18:01:35 +02002966 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002967
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002968 spin_unlock_irqrestore(&domain->lock, flags);
2969
2970 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002971
2972out_free:
2973
2974 free_pages((unsigned long)virt_addr, get_order(size));
2975
2976 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002977}
2978
Joerg Roedel431b2a22008-07-11 17:14:22 +02002979/*
2980 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002981 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002982static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002983 void *virt_addr, dma_addr_t dma_addr,
2984 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002985{
2986 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002987 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002988
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002989 INC_STATS_COUNTER(cnt_free_coherent);
2990
Joerg Roedel94f6d192009-11-24 16:40:02 +01002991 domain = get_domain(dev);
2992 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002993 goto free_mem;
2994
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002995 spin_lock_irqsave(&domain->lock, flags);
2996
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002997 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002998
Joerg Roedel17b124b2011-04-06 18:01:35 +02002999 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02003000
3001 spin_unlock_irqrestore(&domain->lock, flags);
3002
3003free_mem:
3004 free_pages((unsigned long)virt_addr, get_order(size));
3005}
3006
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003007/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003008 * This function is called by the DMA layer to find out if we can handle a
3009 * particular device. It is part of the dma_ops.
3010 */
3011static int amd_iommu_dma_supported(struct device *dev, u64 mask)
3012{
Joerg Roedel420aef82009-11-23 16:14:57 +01003013 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003014}
3015
3016/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02003017 * The function for pre-allocating protection domains.
3018 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003019 * If the driver core informs the DMA layer if a driver grabs a device
3020 * we don't need to preallocate the protection domains anymore.
3021 * For now we have to.
3022 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01003023static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003024{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003025 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003026 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003027 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003028 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003029
Chris Wrightd18c69d2010-04-02 18:27:55 -07003030 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003031
3032 /* Do we handle this device? */
3033 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003034 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003035
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003036 dev_data = get_dev_data(&dev->dev);
3037 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3038 /* Make sure passthrough domain is allocated */
3039 alloc_passthrough_domain();
3040 dev_data->passthrough = true;
3041 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003042 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003043 dev_name(&dev->dev));
3044 }
3045
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003046 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003047 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003048 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003049
3050 devid = get_device_id(&dev->dev);
3051
Joerg Roedel87a64d52009-11-24 17:26:43 +01003052 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003053 if (!dma_dom)
3054 continue;
3055 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003056 dma_dom->target_dev = devid;
3057
Joerg Roedel15898bb2009-11-24 15:39:42 +01003058 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003059
Joerg Roedelbd60b732008-09-11 10:24:48 +02003060 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003061 }
3062}
3063
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003064static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003065 .alloc = alloc_coherent,
3066 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003067 .map_page = map_page,
3068 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003069 .map_sg = map_sg,
3070 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003071 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003072};
3073
Joerg Roedel27c21272011-05-30 15:56:24 +02003074static unsigned device_dma_ops_init(void)
3075{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003076 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003077 struct pci_dev *pdev = NULL;
3078 unsigned unhandled = 0;
3079
3080 for_each_pci_dev(pdev) {
3081 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003082
3083 iommu_ignore_device(&pdev->dev);
3084
Joerg Roedel27c21272011-05-30 15:56:24 +02003085 unhandled += 1;
3086 continue;
3087 }
3088
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003089 dev_data = get_dev_data(&pdev->dev);
3090
3091 if (!dev_data->passthrough)
3092 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3093 else
3094 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003095 }
3096
3097 return unhandled;
3098}
3099
Joerg Roedel431b2a22008-07-11 17:14:22 +02003100/*
3101 * The function which clues the AMD IOMMU driver into dma_ops.
3102 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003103
3104void __init amd_iommu_init_api(void)
3105{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003106 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003107}
3108
Joerg Roedel6631ee92008-06-26 21:28:05 +02003109int __init amd_iommu_init_dma_ops(void)
3110{
3111 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003112 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003113
Joerg Roedel431b2a22008-07-11 17:14:22 +02003114 /*
3115 * first allocate a default protection domain for every IOMMU we
3116 * found in the system. Devices not assigned to any other
3117 * protection domain will be assigned to the default one.
3118 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003119 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003120 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003121 if (iommu->default_dom == NULL)
3122 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003123 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003124 ret = iommu_init_unity_mappings(iommu);
3125 if (ret)
3126 goto free_domains;
3127 }
3128
Joerg Roedel431b2a22008-07-11 17:14:22 +02003129 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003130 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003131 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003132 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003133
3134 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003135 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003136
Joerg Roedel431b2a22008-07-11 17:14:22 +02003137 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003138 unhandled = device_dma_ops_init();
3139 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3140 /* There are unhandled devices - initialize swiotlb for them */
3141 swiotlb = 1;
3142 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003143
Joerg Roedel7f265082008-12-12 13:50:21 +01003144 amd_iommu_stats_init();
3145
Joerg Roedel62410ee2012-06-12 16:42:43 +02003146 if (amd_iommu_unmap_flush)
3147 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3148 else
3149 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3150
Joerg Roedel6631ee92008-06-26 21:28:05 +02003151 return 0;
3152
3153free_domains:
3154
Joerg Roedel3bd22172009-05-04 15:06:20 +02003155 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003156 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003157 }
3158
3159 return ret;
3160}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003161
3162/*****************************************************************************
3163 *
3164 * The following functions belong to the exported interface of AMD IOMMU
3165 *
3166 * This interface allows access to lower level functions of the IOMMU
3167 * like protection domain handling and assignement of devices to domains
3168 * which is not possible with the dma_ops interface.
3169 *
3170 *****************************************************************************/
3171
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003172static void cleanup_domain(struct protection_domain *domain)
3173{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003174 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003175 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003176
3177 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3178
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003179 while (!list_empty(&domain->dev_list)) {
3180 entry = list_first_entry(&domain->dev_list,
3181 struct iommu_dev_data, list);
3182 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01003183 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003184
3185 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3186}
3187
Joerg Roedel26508152009-08-26 16:52:40 +02003188static void protection_domain_free(struct protection_domain *domain)
3189{
3190 if (!domain)
3191 return;
3192
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003193 del_domain_from_list(domain);
3194
Joerg Roedel26508152009-08-26 16:52:40 +02003195 if (domain->id)
3196 domain_id_free(domain->id);
3197
3198 kfree(domain);
3199}
3200
3201static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003202{
3203 struct protection_domain *domain;
3204
3205 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3206 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003207 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003208
3209 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003210 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003211 domain->id = domain_id_alloc();
3212 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003213 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003214 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003215
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003216 add_domain_to_list(domain);
3217
Joerg Roedel26508152009-08-26 16:52:40 +02003218 return domain;
3219
3220out_err:
3221 kfree(domain);
3222
3223 return NULL;
3224}
3225
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003226static int __init alloc_passthrough_domain(void)
3227{
3228 if (pt_domain != NULL)
3229 return 0;
3230
3231 /* allocate passthrough domain */
3232 pt_domain = protection_domain_alloc();
3233 if (!pt_domain)
3234 return -ENOMEM;
3235
3236 pt_domain->mode = PAGE_MODE_NONE;
3237
3238 return 0;
3239}
Joerg Roedel26508152009-08-26 16:52:40 +02003240static int amd_iommu_domain_init(struct iommu_domain *dom)
3241{
3242 struct protection_domain *domain;
3243
3244 domain = protection_domain_alloc();
3245 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003246 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003247
3248 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003249 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3250 if (!domain->pt_root)
3251 goto out_free;
3252
Joerg Roedelf3572db2011-11-23 12:36:25 +01003253 domain->iommu_domain = dom;
3254
Joerg Roedelc156e342008-12-02 18:13:27 +01003255 dom->priv = domain;
3256
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003257 dom->geometry.aperture_start = 0;
3258 dom->geometry.aperture_end = ~0ULL;
3259 dom->geometry.force_aperture = true;
3260
Joerg Roedelc156e342008-12-02 18:13:27 +01003261 return 0;
3262
3263out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003264 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003265
3266 return -ENOMEM;
3267}
3268
Joerg Roedel98383fc2008-12-02 18:34:12 +01003269static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3270{
3271 struct protection_domain *domain = dom->priv;
3272
3273 if (!domain)
3274 return;
3275
3276 if (domain->dev_cnt > 0)
3277 cleanup_domain(domain);
3278
3279 BUG_ON(domain->dev_cnt != 0);
3280
Joerg Roedel132bd682011-11-17 14:18:46 +01003281 if (domain->mode != PAGE_MODE_NONE)
3282 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003283
Joerg Roedel52815b72011-11-17 17:24:28 +01003284 if (domain->flags & PD_IOMMUV2_MASK)
3285 free_gcr3_table(domain);
3286
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003287 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003288
3289 dom->priv = NULL;
3290}
3291
Joerg Roedel684f2882008-12-08 12:07:44 +01003292static void amd_iommu_detach_device(struct iommu_domain *dom,
3293 struct device *dev)
3294{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003295 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003296 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003297 u16 devid;
3298
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003299 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003300 return;
3301
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003302 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003303
Joerg Roedel657cbb62009-11-23 15:26:46 +01003304 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003305 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003306
3307 iommu = amd_iommu_rlookup_table[devid];
3308 if (!iommu)
3309 return;
3310
Joerg Roedel684f2882008-12-08 12:07:44 +01003311 iommu_completion_wait(iommu);
3312}
3313
Joerg Roedel01106062008-12-02 19:34:11 +01003314static int amd_iommu_attach_device(struct iommu_domain *dom,
3315 struct device *dev)
3316{
3317 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003318 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003319 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003320 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003321
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003322 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003323 return -EINVAL;
3324
Joerg Roedel657cbb62009-11-23 15:26:46 +01003325 dev_data = dev->archdata.iommu;
3326
Joerg Roedelf62dda62011-06-09 12:55:35 +02003327 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003328 if (!iommu)
3329 return -EINVAL;
3330
Joerg Roedel657cbb62009-11-23 15:26:46 +01003331 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003332 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003333
Joerg Roedel15898bb2009-11-24 15:39:42 +01003334 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003335
3336 iommu_completion_wait(iommu);
3337
Joerg Roedel15898bb2009-11-24 15:39:42 +01003338 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003339}
3340
Joerg Roedel468e2362010-01-21 16:37:36 +01003341static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003342 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003343{
3344 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003345 int prot = 0;
3346 int ret;
3347
Joerg Roedel132bd682011-11-17 14:18:46 +01003348 if (domain->mode == PAGE_MODE_NONE)
3349 return -EINVAL;
3350
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003351 if (iommu_prot & IOMMU_READ)
3352 prot |= IOMMU_PROT_IR;
3353 if (iommu_prot & IOMMU_WRITE)
3354 prot |= IOMMU_PROT_IW;
3355
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003356 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003357 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003358 mutex_unlock(&domain->api_lock);
3359
Joerg Roedel795e74f72010-05-11 17:40:57 +02003360 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003361}
3362
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003363static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3364 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003365{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003366 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003367 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003368
Joerg Roedel132bd682011-11-17 14:18:46 +01003369 if (domain->mode == PAGE_MODE_NONE)
3370 return -EINVAL;
3371
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003372 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003373 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003374 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003375
Joerg Roedel17b124b2011-04-06 18:01:35 +02003376 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003377
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003378 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003379}
3380
Joerg Roedel645c4c82008-12-02 20:05:50 +01003381static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303382 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003383{
3384 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003385 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003386 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003387 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003388
Joerg Roedel132bd682011-11-17 14:18:46 +01003389 if (domain->mode == PAGE_MODE_NONE)
3390 return iova;
3391
Joerg Roedel24cd7722010-01-19 17:27:39 +01003392 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003393
Joerg Roedela6d41a42009-09-02 17:08:55 +02003394 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003395 return 0;
3396
Joerg Roedelf03152b2010-01-21 16:15:24 +01003397 if (PM_PTE_LEVEL(*pte) == 0)
3398 offset_mask = PAGE_SIZE - 1;
3399 else
3400 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3401
3402 __pte = *pte & PM_ADDR_MASK;
3403 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003404
3405 return paddr;
3406}
3407
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003408static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3409 unsigned long cap)
3410{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003411 switch (cap) {
3412 case IOMMU_CAP_CACHE_COHERENCY:
3413 return 1;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003414 case IOMMU_CAP_INTR_REMAP:
3415 return irq_remapping_enabled;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003416 }
3417
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003418 return 0;
3419}
3420
Thierry Redingb22f6432014-06-27 09:03:12 +02003421static const struct iommu_ops amd_iommu_ops = {
Joerg Roedel26961ef2008-12-03 17:00:17 +01003422 .domain_init = amd_iommu_domain_init,
3423 .domain_destroy = amd_iommu_domain_destroy,
3424 .attach_dev = amd_iommu_attach_device,
3425 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003426 .map = amd_iommu_map,
3427 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003428 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003429 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003430 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003431};
3432
Joerg Roedel0feae532009-08-26 15:26:30 +02003433/*****************************************************************************
3434 *
3435 * The next functions do a basic initialization of IOMMU for pass through
3436 * mode
3437 *
3438 * In passthrough mode the IOMMU is initialized and enabled but not used for
3439 * DMA-API translation.
3440 *
3441 *****************************************************************************/
3442
3443int __init amd_iommu_init_passthrough(void)
3444{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003445 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003446 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003447 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003448
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003449 ret = alloc_passthrough_domain();
3450 if (ret)
3451 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003452
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003453 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003454 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003455 continue;
3456
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003457 dev_data = get_dev_data(&dev->dev);
3458 dev_data->passthrough = true;
3459
Joerg Roedel15898bb2009-11-24 15:39:42 +01003460 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003461 }
3462
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003463 amd_iommu_stats_init();
3464
Joerg Roedel0feae532009-08-26 15:26:30 +02003465 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3466
3467 return 0;
3468}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003469
3470/* IOMMUv2 specific functions */
3471int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3472{
3473 return atomic_notifier_chain_register(&ppr_notifier, nb);
3474}
3475EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3476
3477int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3478{
3479 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3480}
3481EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003482
3483void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3484{
3485 struct protection_domain *domain = dom->priv;
3486 unsigned long flags;
3487
3488 spin_lock_irqsave(&domain->lock, flags);
3489
3490 /* Update data structure */
3491 domain->mode = PAGE_MODE_NONE;
3492 domain->updated = true;
3493
3494 /* Make changes visible to IOMMUs */
3495 update_domain(domain);
3496
3497 /* Page-table is not visible to IOMMU anymore, so free it */
3498 free_pagetable(domain);
3499
3500 spin_unlock_irqrestore(&domain->lock, flags);
3501}
3502EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003503
3504int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3505{
3506 struct protection_domain *domain = dom->priv;
3507 unsigned long flags;
3508 int levels, ret;
3509
3510 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3511 return -EINVAL;
3512
3513 /* Number of GCR3 table levels required */
3514 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3515 levels += 1;
3516
3517 if (levels > amd_iommu_max_glx_val)
3518 return -EINVAL;
3519
3520 spin_lock_irqsave(&domain->lock, flags);
3521
3522 /*
3523 * Save us all sanity checks whether devices already in the
3524 * domain support IOMMUv2. Just force that the domain has no
3525 * devices attached when it is switched into IOMMUv2 mode.
3526 */
3527 ret = -EBUSY;
3528 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3529 goto out;
3530
3531 ret = -ENOMEM;
3532 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3533 if (domain->gcr3_tbl == NULL)
3534 goto out;
3535
3536 domain->glx = levels;
3537 domain->flags |= PD_IOMMUV2_MASK;
3538 domain->updated = true;
3539
3540 update_domain(domain);
3541
3542 ret = 0;
3543
3544out:
3545 spin_unlock_irqrestore(&domain->lock, flags);
3546
3547 return ret;
3548}
3549EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003550
3551static int __flush_pasid(struct protection_domain *domain, int pasid,
3552 u64 address, bool size)
3553{
3554 struct iommu_dev_data *dev_data;
3555 struct iommu_cmd cmd;
3556 int i, ret;
3557
3558 if (!(domain->flags & PD_IOMMUV2_MASK))
3559 return -EINVAL;
3560
3561 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3562
3563 /*
3564 * IOMMU TLB needs to be flushed before Device TLB to
3565 * prevent device TLB refill from IOMMU TLB
3566 */
3567 for (i = 0; i < amd_iommus_present; ++i) {
3568 if (domain->dev_iommu[i] == 0)
3569 continue;
3570
3571 ret = iommu_queue_command(amd_iommus[i], &cmd);
3572 if (ret != 0)
3573 goto out;
3574 }
3575
3576 /* Wait until IOMMU TLB flushes are complete */
3577 domain_flush_complete(domain);
3578
3579 /* Now flush device TLBs */
3580 list_for_each_entry(dev_data, &domain->dev_list, list) {
3581 struct amd_iommu *iommu;
3582 int qdep;
3583
3584 BUG_ON(!dev_data->ats.enabled);
3585
3586 qdep = dev_data->ats.qdep;
3587 iommu = amd_iommu_rlookup_table[dev_data->devid];
3588
3589 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3590 qdep, address, size);
3591
3592 ret = iommu_queue_command(iommu, &cmd);
3593 if (ret != 0)
3594 goto out;
3595 }
3596
3597 /* Wait until all device TLBs are flushed */
3598 domain_flush_complete(domain);
3599
3600 ret = 0;
3601
3602out:
3603
3604 return ret;
3605}
3606
3607static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3608 u64 address)
3609{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003610 INC_STATS_COUNTER(invalidate_iotlb);
3611
Joerg Roedel22e266c2011-11-21 15:59:08 +01003612 return __flush_pasid(domain, pasid, address, false);
3613}
3614
3615int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3616 u64 address)
3617{
3618 struct protection_domain *domain = dom->priv;
3619 unsigned long flags;
3620 int ret;
3621
3622 spin_lock_irqsave(&domain->lock, flags);
3623 ret = __amd_iommu_flush_page(domain, pasid, address);
3624 spin_unlock_irqrestore(&domain->lock, flags);
3625
3626 return ret;
3627}
3628EXPORT_SYMBOL(amd_iommu_flush_page);
3629
3630static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3631{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003632 INC_STATS_COUNTER(invalidate_iotlb_all);
3633
Joerg Roedel22e266c2011-11-21 15:59:08 +01003634 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3635 true);
3636}
3637
3638int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3639{
3640 struct protection_domain *domain = dom->priv;
3641 unsigned long flags;
3642 int ret;
3643
3644 spin_lock_irqsave(&domain->lock, flags);
3645 ret = __amd_iommu_flush_tlb(domain, pasid);
3646 spin_unlock_irqrestore(&domain->lock, flags);
3647
3648 return ret;
3649}
3650EXPORT_SYMBOL(amd_iommu_flush_tlb);
3651
Joerg Roedelb16137b2011-11-21 16:50:23 +01003652static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3653{
3654 int index;
3655 u64 *pte;
3656
3657 while (true) {
3658
3659 index = (pasid >> (9 * level)) & 0x1ff;
3660 pte = &root[index];
3661
3662 if (level == 0)
3663 break;
3664
3665 if (!(*pte & GCR3_VALID)) {
3666 if (!alloc)
3667 return NULL;
3668
3669 root = (void *)get_zeroed_page(GFP_ATOMIC);
3670 if (root == NULL)
3671 return NULL;
3672
3673 *pte = __pa(root) | GCR3_VALID;
3674 }
3675
3676 root = __va(*pte & PAGE_MASK);
3677
3678 level -= 1;
3679 }
3680
3681 return pte;
3682}
3683
3684static int __set_gcr3(struct protection_domain *domain, int pasid,
3685 unsigned long cr3)
3686{
3687 u64 *pte;
3688
3689 if (domain->mode != PAGE_MODE_NONE)
3690 return -EINVAL;
3691
3692 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3693 if (pte == NULL)
3694 return -ENOMEM;
3695
3696 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3697
3698 return __amd_iommu_flush_tlb(domain, pasid);
3699}
3700
3701static int __clear_gcr3(struct protection_domain *domain, int pasid)
3702{
3703 u64 *pte;
3704
3705 if (domain->mode != PAGE_MODE_NONE)
3706 return -EINVAL;
3707
3708 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3709 if (pte == NULL)
3710 return 0;
3711
3712 *pte = 0;
3713
3714 return __amd_iommu_flush_tlb(domain, pasid);
3715}
3716
3717int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3718 unsigned long cr3)
3719{
3720 struct protection_domain *domain = dom->priv;
3721 unsigned long flags;
3722 int ret;
3723
3724 spin_lock_irqsave(&domain->lock, flags);
3725 ret = __set_gcr3(domain, pasid, cr3);
3726 spin_unlock_irqrestore(&domain->lock, flags);
3727
3728 return ret;
3729}
3730EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3731
3732int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3733{
3734 struct protection_domain *domain = dom->priv;
3735 unsigned long flags;
3736 int ret;
3737
3738 spin_lock_irqsave(&domain->lock, flags);
3739 ret = __clear_gcr3(domain, pasid);
3740 spin_unlock_irqrestore(&domain->lock, flags);
3741
3742 return ret;
3743}
3744EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003745
3746int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3747 int status, int tag)
3748{
3749 struct iommu_dev_data *dev_data;
3750 struct amd_iommu *iommu;
3751 struct iommu_cmd cmd;
3752
Joerg Roedel399be2f2011-12-01 16:53:47 +01003753 INC_STATS_COUNTER(complete_ppr);
3754
Joerg Roedelc99afa22011-11-21 18:19:25 +01003755 dev_data = get_dev_data(&pdev->dev);
3756 iommu = amd_iommu_rlookup_table[dev_data->devid];
3757
3758 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3759 tag, dev_data->pri_tlp);
3760
3761 return iommu_queue_command(iommu, &cmd);
3762}
3763EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003764
3765struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3766{
3767 struct protection_domain *domain;
3768
3769 domain = get_domain(&pdev->dev);
3770 if (IS_ERR(domain))
3771 return NULL;
3772
3773 /* Only return IOMMUv2 domains */
3774 if (!(domain->flags & PD_IOMMUV2_MASK))
3775 return NULL;
3776
3777 return domain->iommu_domain;
3778}
3779EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003780
3781void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3782{
3783 struct iommu_dev_data *dev_data;
3784
3785 if (!amd_iommu_v2_supported())
3786 return;
3787
3788 dev_data = get_dev_data(&pdev->dev);
3789 dev_data->errata |= (1 << erratum);
3790}
3791EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003792
3793int amd_iommu_device_info(struct pci_dev *pdev,
3794 struct amd_iommu_device_info *info)
3795{
3796 int max_pasids;
3797 int pos;
3798
3799 if (pdev == NULL || info == NULL)
3800 return -EINVAL;
3801
3802 if (!amd_iommu_v2_supported())
3803 return -EINVAL;
3804
3805 memset(info, 0, sizeof(*info));
3806
3807 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3808 if (pos)
3809 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3810
3811 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3812 if (pos)
3813 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3814
3815 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3816 if (pos) {
3817 int features;
3818
3819 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3820 max_pasids = min(max_pasids, (1 << 20));
3821
3822 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3823 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3824
3825 features = pci_pasid_features(pdev);
3826 if (features & PCI_PASID_CAP_EXEC)
3827 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3828 if (features & PCI_PASID_CAP_PRIV)
3829 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3830 }
3831
3832 return 0;
3833}
3834EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003835
3836#ifdef CONFIG_IRQ_REMAP
3837
3838/*****************************************************************************
3839 *
3840 * Interrupt Remapping Implementation
3841 *
3842 *****************************************************************************/
3843
3844union irte {
3845 u32 val;
3846 struct {
3847 u32 valid : 1,
3848 no_fault : 1,
3849 int_type : 3,
3850 rq_eoi : 1,
3851 dm : 1,
3852 rsvd_1 : 1,
3853 destination : 8,
3854 vector : 8,
3855 rsvd_2 : 8;
3856 } fields;
3857};
3858
3859#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3860#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3861#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3862#define DTE_IRQ_REMAP_ENABLE 1ULL
3863
3864static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3865{
3866 u64 dte;
3867
3868 dte = amd_iommu_dev_table[devid].data[2];
3869 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3870 dte |= virt_to_phys(table->table);
3871 dte |= DTE_IRQ_REMAP_INTCTL;
3872 dte |= DTE_IRQ_TABLE_LEN;
3873 dte |= DTE_IRQ_REMAP_ENABLE;
3874
3875 amd_iommu_dev_table[devid].data[2] = dte;
3876}
3877
3878#define IRTE_ALLOCATED (~1U)
3879
3880static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3881{
3882 struct irq_remap_table *table = NULL;
3883 struct amd_iommu *iommu;
3884 unsigned long flags;
3885 u16 alias;
3886
3887 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3888
3889 iommu = amd_iommu_rlookup_table[devid];
3890 if (!iommu)
3891 goto out_unlock;
3892
3893 table = irq_lookup_table[devid];
3894 if (table)
3895 goto out;
3896
3897 alias = amd_iommu_alias_table[devid];
3898 table = irq_lookup_table[alias];
3899 if (table) {
3900 irq_lookup_table[devid] = table;
3901 set_dte_irq_entry(devid, table);
3902 iommu_flush_dte(iommu, devid);
3903 goto out;
3904 }
3905
3906 /* Nothing there yet, allocate new irq remapping table */
3907 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3908 if (!table)
3909 goto out;
3910
Joerg Roedel197887f2013-04-09 21:14:08 +02003911 /* Initialize table spin-lock */
3912 spin_lock_init(&table->lock);
3913
Joerg Roedel2b324502012-06-21 16:29:10 +02003914 if (ioapic)
3915 /* Keep the first 32 indexes free for IOAPIC interrupts */
3916 table->min_index = 32;
3917
3918 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3919 if (!table->table) {
3920 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003921 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003922 goto out;
3923 }
3924
3925 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3926
3927 if (ioapic) {
3928 int i;
3929
3930 for (i = 0; i < 32; ++i)
3931 table->table[i] = IRTE_ALLOCATED;
3932 }
3933
3934 irq_lookup_table[devid] = table;
3935 set_dte_irq_entry(devid, table);
3936 iommu_flush_dte(iommu, devid);
3937 if (devid != alias) {
3938 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003939 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003940 iommu_flush_dte(iommu, alias);
3941 }
3942
3943out:
3944 iommu_completion_wait(iommu);
3945
3946out_unlock:
3947 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3948
3949 return table;
3950}
3951
3952static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3953{
3954 struct irq_remap_table *table;
3955 unsigned long flags;
3956 int index, c;
3957
3958 table = get_irq_table(devid, false);
3959 if (!table)
3960 return -ENODEV;
3961
3962 spin_lock_irqsave(&table->lock, flags);
3963
3964 /* Scan table for free entries */
3965 for (c = 0, index = table->min_index;
3966 index < MAX_IRQS_PER_TABLE;
3967 ++index) {
3968 if (table->table[index] == 0)
3969 c += 1;
3970 else
3971 c = 0;
3972
3973 if (c == count) {
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003974 struct irq_2_irte *irte_info;
Joerg Roedel2b324502012-06-21 16:29:10 +02003975
3976 for (; c != 0; --c)
3977 table->table[index - c + 1] = IRTE_ALLOCATED;
3978
3979 index -= count - 1;
3980
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003981 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003982 irte_info = &cfg->irq_2_irte;
3983 irte_info->devid = devid;
3984 irte_info->index = index;
Joerg Roedel2b324502012-06-21 16:29:10 +02003985
3986 goto out;
3987 }
3988 }
3989
3990 index = -ENOSPC;
3991
3992out:
3993 spin_unlock_irqrestore(&table->lock, flags);
3994
3995 return index;
3996}
3997
3998static int get_irte(u16 devid, int index, union irte *irte)
3999{
4000 struct irq_remap_table *table;
4001 unsigned long flags;
4002
4003 table = get_irq_table(devid, false);
4004 if (!table)
4005 return -ENOMEM;
4006
4007 spin_lock_irqsave(&table->lock, flags);
4008 irte->val = table->table[index];
4009 spin_unlock_irqrestore(&table->lock, flags);
4010
4011 return 0;
4012}
4013
4014static int modify_irte(u16 devid, int index, union irte irte)
4015{
4016 struct irq_remap_table *table;
4017 struct amd_iommu *iommu;
4018 unsigned long flags;
4019
4020 iommu = amd_iommu_rlookup_table[devid];
4021 if (iommu == NULL)
4022 return -EINVAL;
4023
4024 table = get_irq_table(devid, false);
4025 if (!table)
4026 return -ENOMEM;
4027
4028 spin_lock_irqsave(&table->lock, flags);
4029 table->table[index] = irte.val;
4030 spin_unlock_irqrestore(&table->lock, flags);
4031
4032 iommu_flush_irt(iommu, devid);
4033 iommu_completion_wait(iommu);
4034
4035 return 0;
4036}
4037
4038static void free_irte(u16 devid, int index)
4039{
4040 struct irq_remap_table *table;
4041 struct amd_iommu *iommu;
4042 unsigned long flags;
4043
4044 iommu = amd_iommu_rlookup_table[devid];
4045 if (iommu == NULL)
4046 return;
4047
4048 table = get_irq_table(devid, false);
4049 if (!table)
4050 return;
4051
4052 spin_lock_irqsave(&table->lock, flags);
4053 table->table[index] = 0;
4054 spin_unlock_irqrestore(&table->lock, flags);
4055
4056 iommu_flush_irt(iommu, devid);
4057 iommu_completion_wait(iommu);
4058}
4059
Joerg Roedel5527de72012-06-26 11:17:32 +02004060static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4061 unsigned int destination, int vector,
4062 struct io_apic_irq_attr *attr)
4063{
4064 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004065 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004066 struct irq_cfg *cfg;
4067 union irte irte;
4068 int ioapic_id;
4069 int index;
4070 int devid;
4071 int ret;
4072
4073 cfg = irq_get_chip_data(irq);
4074 if (!cfg)
4075 return -EINVAL;
4076
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004077 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004078 ioapic_id = mpc_ioapic_id(attr->ioapic);
4079 devid = get_ioapic_devid(ioapic_id);
4080
4081 if (devid < 0)
4082 return devid;
4083
4084 table = get_irq_table(devid, true);
4085 if (table == NULL)
4086 return -ENOMEM;
4087
4088 index = attr->ioapic_pin;
4089
4090 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004091 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004092 irte_info->devid = devid;
4093 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02004094
4095 /* Setup IRTE for IOMMU */
4096 irte.val = 0;
4097 irte.fields.vector = vector;
4098 irte.fields.int_type = apic->irq_delivery_mode;
4099 irte.fields.destination = destination;
4100 irte.fields.dm = apic->irq_dest_mode;
4101 irte.fields.valid = 1;
4102
4103 ret = modify_irte(devid, index, irte);
4104 if (ret)
4105 return ret;
4106
4107 /* Setup IOAPIC entry */
4108 memset(entry, 0, sizeof(*entry));
4109
4110 entry->vector = index;
4111 entry->mask = 0;
4112 entry->trigger = attr->trigger;
4113 entry->polarity = attr->polarity;
4114
4115 /*
4116 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004117 */
4118 if (attr->trigger)
4119 entry->mask = 1;
4120
4121 return 0;
4122}
4123
4124static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4125 bool force)
4126{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004127 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004128 unsigned int dest, irq;
4129 struct irq_cfg *cfg;
4130 union irte irte;
4131 int err;
4132
4133 if (!config_enabled(CONFIG_SMP))
4134 return -1;
4135
4136 cfg = data->chip_data;
4137 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004138 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004139
4140 if (!cpumask_intersects(mask, cpu_online_mask))
4141 return -EINVAL;
4142
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004143 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02004144 return -EBUSY;
4145
4146 if (assign_irq_vector(irq, cfg, mask))
4147 return -EBUSY;
4148
4149 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4150 if (err) {
4151 if (assign_irq_vector(irq, cfg, data->affinity))
4152 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4153 return err;
4154 }
4155
4156 irte.fields.vector = cfg->vector;
4157 irte.fields.destination = dest;
4158
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004159 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02004160
4161 if (cfg->move_in_progress)
4162 send_cleanup_vector(cfg);
4163
4164 cpumask_copy(data->affinity, mask);
4165
4166 return 0;
4167}
4168
4169static int free_irq(int irq)
4170{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004171 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004172 struct irq_cfg *cfg;
4173
4174 cfg = irq_get_chip_data(irq);
4175 if (!cfg)
4176 return -EINVAL;
4177
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004178 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004179
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004180 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02004181
4182 return 0;
4183}
4184
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004185static void compose_msi_msg(struct pci_dev *pdev,
4186 unsigned int irq, unsigned int dest,
4187 struct msi_msg *msg, u8 hpet_id)
4188{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004189 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004190 struct irq_cfg *cfg;
4191 union irte irte;
4192
4193 cfg = irq_get_chip_data(irq);
4194 if (!cfg)
4195 return;
4196
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004197 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004198
4199 irte.val = 0;
4200 irte.fields.vector = cfg->vector;
4201 irte.fields.int_type = apic->irq_delivery_mode;
4202 irte.fields.destination = dest;
4203 irte.fields.dm = apic->irq_dest_mode;
4204 irte.fields.valid = 1;
4205
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004206 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004207
4208 msg->address_hi = MSI_ADDR_BASE_HI;
4209 msg->address_lo = MSI_ADDR_BASE_LO;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004210 msg->data = irte_info->index;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004211}
4212
4213static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
4214{
4215 struct irq_cfg *cfg;
4216 int index;
4217 u16 devid;
4218
4219 if (!pdev)
4220 return -EINVAL;
4221
4222 cfg = irq_get_chip_data(irq);
4223 if (!cfg)
4224 return -EINVAL;
4225
4226 devid = get_device_id(&pdev->dev);
4227 index = alloc_irq_index(cfg, devid, nvec);
4228
4229 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4230}
4231
4232static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4233 int index, int offset)
4234{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004235 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004236 struct irq_cfg *cfg;
4237 u16 devid;
4238
4239 if (!pdev)
4240 return -EINVAL;
4241
4242 cfg = irq_get_chip_data(irq);
4243 if (!cfg)
4244 return -EINVAL;
4245
4246 if (index >= MAX_IRQS_PER_TABLE)
4247 return 0;
4248
4249 devid = get_device_id(&pdev->dev);
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004250 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004251
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004252 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004253 irte_info->devid = devid;
4254 irte_info->index = index + offset;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004255
4256 return 0;
4257}
4258
Joerg Roedeld9761952012-06-26 16:00:08 +02004259static int setup_hpet_msi(unsigned int irq, unsigned int id)
4260{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004261 struct irq_2_irte *irte_info;
Joerg Roedeld9761952012-06-26 16:00:08 +02004262 struct irq_cfg *cfg;
4263 int index, devid;
4264
4265 cfg = irq_get_chip_data(irq);
4266 if (!cfg)
4267 return -EINVAL;
4268
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004269 irte_info = &cfg->irq_2_irte;
Joerg Roedeld9761952012-06-26 16:00:08 +02004270 devid = get_hpet_devid(id);
4271 if (devid < 0)
4272 return devid;
4273
4274 index = alloc_irq_index(cfg, devid, 1);
4275 if (index < 0)
4276 return index;
4277
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004278 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004279 irte_info->devid = devid;
4280 irte_info->index = index;
Joerg Roedeld9761952012-06-26 16:00:08 +02004281
4282 return 0;
4283}
4284
Joerg Roedel6b474b82012-06-26 16:46:04 +02004285struct irq_remap_ops amd_iommu_irq_ops = {
4286 .supported = amd_iommu_supported,
4287 .prepare = amd_iommu_prepare,
4288 .enable = amd_iommu_enable,
4289 .disable = amd_iommu_disable,
4290 .reenable = amd_iommu_reenable,
4291 .enable_faulting = amd_iommu_enable_faulting,
4292 .setup_ioapic_entry = setup_ioapic_entry,
4293 .set_affinity = set_affinity,
4294 .free_irq = free_irq,
4295 .compose_msi_msg = compose_msi_msg,
4296 .msi_alloc_irq = msi_alloc_irq,
4297 .msi_setup_irq = msi_setup_irq,
4298 .setup_hpet_msi = setup_hpet_msi,
4299};
Joerg Roedel2b324502012-06-21 16:29:10 +02004300#endif