blob: 27300aece203e4adb5846c1d2451cee7966f6231 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020034#include <linux/irq.h>
35#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020036#include <linux/dma-contiguous.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020037#include <asm/irq_remapping.h>
38#include <asm/io_apic.h>
39#include <asm/apic.h>
40#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020041#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020042#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090043#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010044#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020045#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020046
47#include "amd_iommu_proto.h"
48#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020049#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020050
51#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
52
Joerg Roedel815b33f2011-04-06 17:26:49 +020053#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020054
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020055/*
56 * This bitmap is used to advertise the page sizes our hardware support
57 * to the IOMMU core, which will then use this information to split
58 * physically contiguous memory regions it is mapping into page sizes
59 * that we support.
60 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010061 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020062 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010063#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020064
Joerg Roedelb6c02712008-06-26 21:27:53 +020065static DEFINE_RWLOCK(amd_iommu_devtable_lock);
66
Joerg Roedel8fa5f802011-06-09 12:24:45 +020067/* List of all available dev_data structures */
68static LIST_HEAD(dev_data_list);
69static DEFINE_SPINLOCK(dev_data_list_lock);
70
Joerg Roedel6efed632012-06-14 15:52:58 +020071LIST_HEAD(ioapic_map);
72LIST_HEAD(hpet_map);
73
Joerg Roedel0feae532009-08-26 15:26:30 +020074/*
75 * Domain for untranslated devices - only allocated
76 * if iommu=pt passed on kernel cmd line.
77 */
78static struct protection_domain *pt_domain;
79
Thierry Redingb22f6432014-06-27 09:03:12 +020080static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010081
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010082static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010083int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010084
Joerg Roedelac1534a2012-06-21 14:52:40 +020085static struct dma_map_ops amd_iommu_dma_ops;
86
Joerg Roedel431b2a22008-07-11 17:14:22 +020087/*
Joerg Roedel50917e22014-08-05 16:38:38 +020088 * This struct contains device specific data for the IOMMU
89 */
90struct iommu_dev_data {
91 struct list_head list; /* For domain->dev_list */
92 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020093 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020094 struct iommu_dev_data *alias_data;/* The alias dev_data */
95 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020096 u16 devid; /* PCI Device ID */
97 bool iommu_v2; /* Device can make use of IOMMUv2 */
98 bool passthrough; /* Default for device is pt_domain */
99 struct {
100 bool enabled;
101 int qdep;
102 } ats; /* ATS state */
103 bool pri_tlp; /* PASID TLB required for
104 PPR completions */
105 u32 errata; /* Bitmap for errata to apply */
106};
107
108/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200109 * general struct to manage commands send to an IOMMU
110 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200111struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200112 u32 data[4];
113};
114
Joerg Roedel05152a02012-06-15 16:53:51 +0200115struct kmem_cache *amd_iommu_irq_cache;
116
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200117static void update_domain(struct protection_domain *domain);
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200118static int alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700119
Joerg Roedel15898bb2009-11-24 15:39:42 +0100120/****************************************************************************
121 *
122 * Helper functions
123 *
124 ****************************************************************************/
125
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100126static struct protection_domain *to_pdomain(struct iommu_domain *dom)
127{
128 return container_of(dom, struct protection_domain, domain);
129}
130
Joerg Roedelf62dda62011-06-09 12:55:35 +0200131static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200132{
133 struct iommu_dev_data *dev_data;
134 unsigned long flags;
135
136 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
137 if (!dev_data)
138 return NULL;
139
Joerg Roedelf251e182014-08-05 16:48:10 +0200140 INIT_LIST_HEAD(&dev_data->alias_list);
141
Joerg Roedelf62dda62011-06-09 12:55:35 +0200142 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200143
144 spin_lock_irqsave(&dev_data_list_lock, flags);
145 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
146 spin_unlock_irqrestore(&dev_data_list_lock, flags);
147
148 return dev_data;
149}
150
151static void free_dev_data(struct iommu_dev_data *dev_data)
152{
153 unsigned long flags;
154
155 spin_lock_irqsave(&dev_data_list_lock, flags);
156 list_del(&dev_data->dev_data_list);
157 spin_unlock_irqrestore(&dev_data_list_lock, flags);
158
159 kfree(dev_data);
160}
161
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200162static struct iommu_dev_data *search_dev_data(u16 devid)
163{
164 struct iommu_dev_data *dev_data;
165 unsigned long flags;
166
167 spin_lock_irqsave(&dev_data_list_lock, flags);
168 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
169 if (dev_data->devid == devid)
170 goto out_unlock;
171 }
172
173 dev_data = NULL;
174
175out_unlock:
176 spin_unlock_irqrestore(&dev_data_list_lock, flags);
177
178 return dev_data;
179}
180
181static struct iommu_dev_data *find_dev_data(u16 devid)
182{
183 struct iommu_dev_data *dev_data;
184
185 dev_data = search_dev_data(devid);
186
187 if (dev_data == NULL)
188 dev_data = alloc_dev_data(devid);
189
190 return dev_data;
191}
192
Joerg Roedel15898bb2009-11-24 15:39:42 +0100193static inline u16 get_device_id(struct device *dev)
194{
195 struct pci_dev *pdev = to_pci_dev(dev);
196
Shuah Khan6f2729b2013-02-27 17:07:30 -0700197 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100198}
199
Joerg Roedel657cbb62009-11-23 15:26:46 +0100200static struct iommu_dev_data *get_dev_data(struct device *dev)
201{
202 return dev->archdata.iommu;
203}
204
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100205static bool pci_iommuv2_capable(struct pci_dev *pdev)
206{
207 static const int caps[] = {
208 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100209 PCI_EXT_CAP_ID_PRI,
210 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100211 };
212 int i, pos;
213
214 for (i = 0; i < 3; ++i) {
215 pos = pci_find_ext_capability(pdev, caps[i]);
216 if (pos == 0)
217 return false;
218 }
219
220 return true;
221}
222
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100223static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
224{
225 struct iommu_dev_data *dev_data;
226
227 dev_data = get_dev_data(&pdev->dev);
228
229 return dev_data->errata & (1 << erratum) ? true : false;
230}
231
Joerg Roedel71c70982009-11-24 16:43:06 +0100232/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200233 * This function actually applies the mapping to the page table of the
234 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100235 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200236static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
237 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100238{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200239 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100240
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200241 for (addr = e->address_start; addr < e->address_end;
242 addr += PAGE_SIZE) {
243 if (addr < dma_dom->aperture_size)
244 __set_bit(addr >> PAGE_SHIFT,
245 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100246 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200247}
Joerg Roedel71c70982009-11-24 16:43:06 +0100248
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200249/*
250 * Inits the unity mappings required for a specific device
251 */
252static void init_unity_mappings_for_device(struct device *dev,
253 struct dma_ops_domain *dma_dom)
254{
255 struct unity_map_entry *e;
256 u16 devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100257
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200258 devid = get_device_id(dev);
259
260 list_for_each_entry(e, &amd_iommu_unity_map, list) {
261 if (!(devid >= e->devid_start && devid <= e->devid_end))
262 continue;
263 alloc_unity_mapping(dma_dom, e);
264 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100265}
266
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100267/*
268 * This function checks if the driver got a valid device from the caller to
269 * avoid dereferencing invalid pointers.
270 */
271static bool check_device(struct device *dev)
272{
273 u16 devid;
274
275 if (!dev || !dev->dma_mask)
276 return false;
277
Yijing Wangb82a2272013-12-05 19:42:41 +0800278 /* No PCI device */
279 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100280 return false;
281
282 devid = get_device_id(dev);
283
284 /* Out of our scope? */
285 if (devid > amd_iommu_last_bdf)
286 return false;
287
288 if (amd_iommu_rlookup_table[devid] == NULL)
289 return false;
290
291 return true;
292}
293
Alex Williamson25b11ce2014-09-19 10:03:13 -0600294static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600295{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200296 struct dma_ops_domain *dma_domain;
297 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600298 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600299
Alex Williamson65d53522014-07-03 09:51:30 -0600300 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200301 if (IS_ERR(group))
302 return;
303
304 domain = iommu_group_default_domain(group);
305 if (!domain)
306 goto out;
307
308 dma_domain = to_pdomain(domain)->priv;
309
310 init_unity_mappings_for_device(dev, dma_domain);
311out:
312 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600313}
314
Alex Williamsonc1931092014-07-03 09:51:24 -0600315static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
316{
317 *(u16 *)data = alias;
318 return 0;
319}
320
321static u16 get_alias(struct device *dev)
322{
323 struct pci_dev *pdev = to_pci_dev(dev);
324 u16 devid, ivrs_alias, pci_alias;
325
326 devid = get_device_id(dev);
327 ivrs_alias = amd_iommu_alias_table[devid];
328 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
329
330 if (ivrs_alias == pci_alias)
331 return ivrs_alias;
332
333 /*
334 * DMA alias showdown
335 *
336 * The IVRS is fairly reliable in telling us about aliases, but it
337 * can't know about every screwy device. If we don't have an IVRS
338 * reported alias, use the PCI reported alias. In that case we may
339 * still need to initialize the rlookup and dev_table entries if the
340 * alias is to a non-existent device.
341 */
342 if (ivrs_alias == devid) {
343 if (!amd_iommu_rlookup_table[pci_alias]) {
344 amd_iommu_rlookup_table[pci_alias] =
345 amd_iommu_rlookup_table[devid];
346 memcpy(amd_iommu_dev_table[pci_alias].data,
347 amd_iommu_dev_table[devid].data,
348 sizeof(amd_iommu_dev_table[pci_alias].data));
349 }
350
351 return pci_alias;
352 }
353
354 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
355 "for device %s[%04x:%04x], kernel reported alias "
356 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
357 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
358 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
359 PCI_FUNC(pci_alias));
360
361 /*
362 * If we don't have a PCI DMA alias and the IVRS alias is on the same
363 * bus, then the IVRS table may know about a quirk that we don't.
364 */
365 if (pci_alias == devid &&
366 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
367 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
368 pdev->dma_alias_devfn = ivrs_alias & 0xff;
369 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
370 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
371 dev_name(dev));
372 }
373
374 return ivrs_alias;
375}
376
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600377static int iommu_init_device(struct device *dev)
378{
379 struct pci_dev *pdev = to_pci_dev(dev);
380 struct iommu_dev_data *dev_data;
381 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600382
383 if (dev->archdata.iommu)
384 return 0;
385
386 dev_data = find_dev_data(get_device_id(dev));
387 if (!dev_data)
388 return -ENOMEM;
389
Alex Williamsonc1931092014-07-03 09:51:24 -0600390 alias = get_alias(dev);
391
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600392 if (alias != dev_data->devid) {
393 struct iommu_dev_data *alias_data;
394
395 alias_data = find_dev_data(alias);
396 if (alias_data == NULL) {
397 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
398 dev_name(dev));
399 free_dev_data(dev_data);
400 return -ENOTSUPP;
401 }
402 dev_data->alias_data = alias_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600403
Joerg Roedelf251e182014-08-05 16:48:10 +0200404 /* Add device to the alias_list */
405 list_add(&dev_data->alias_list, &alias_data->alias_list);
Radmila Kompováe644a012013-05-02 17:24:25 +0200406 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600407
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100408 if (pci_iommuv2_capable(pdev)) {
409 struct amd_iommu *iommu;
410
411 iommu = amd_iommu_rlookup_table[dev_data->devid];
412 dev_data->iommu_v2 = iommu->is_iommu_v2;
413 }
414
Joerg Roedel657cbb62009-11-23 15:26:46 +0100415 dev->archdata.iommu = dev_data;
416
Alex Williamson066f2e92014-06-12 16:12:37 -0600417 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
418 dev);
419
Joerg Roedel657cbb62009-11-23 15:26:46 +0100420 return 0;
421}
422
Joerg Roedel26018872011-06-06 16:50:14 +0200423static void iommu_ignore_device(struct device *dev)
424{
425 u16 devid, alias;
426
427 devid = get_device_id(dev);
428 alias = amd_iommu_alias_table[devid];
429
430 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
431 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
432
433 amd_iommu_rlookup_table[devid] = NULL;
434 amd_iommu_rlookup_table[alias] = NULL;
435}
436
Joerg Roedel657cbb62009-11-23 15:26:46 +0100437static void iommu_uninit_device(struct device *dev)
438{
Alex Williamsonc1931092014-07-03 09:51:24 -0600439 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
440
441 if (!dev_data)
442 return;
443
Alex Williamson066f2e92014-06-12 16:12:37 -0600444 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
445 dev);
446
Alex Williamson9dcd6132012-05-30 14:19:07 -0600447 iommu_group_remove_device(dev);
448
Alex Williamsonc1931092014-07-03 09:51:24 -0600449 /* Unlink from alias, it may change if another device is re-plugged */
450 dev_data->alias_data = NULL;
451
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200452 /* Remove dma-ops */
453 dev->archdata.dma_ops = NULL;
454
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200455 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600456 * We keep dev_data around for unplugged devices and reuse it when the
457 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200458 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100459}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100460
Joerg Roedel7f265082008-12-12 13:50:21 +0100461#ifdef CONFIG_AMD_IOMMU_STATS
462
463/*
464 * Initialization code for statistics collection
465 */
466
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100467DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100468DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100469DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100470DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100471DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100472DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100473DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100474DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100475DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100476DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100477DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100478DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100479DECLARE_STATS_COUNTER(complete_ppr);
480DECLARE_STATS_COUNTER(invalidate_iotlb);
481DECLARE_STATS_COUNTER(invalidate_iotlb_all);
482DECLARE_STATS_COUNTER(pri_requests);
483
Joerg Roedel7f265082008-12-12 13:50:21 +0100484static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100485static struct dentry *de_fflush;
486
487static void amd_iommu_stats_add(struct __iommu_counter *cnt)
488{
489 if (stats_dir == NULL)
490 return;
491
492 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
493 &cnt->value);
494}
495
496static void amd_iommu_stats_init(void)
497{
498 stats_dir = debugfs_create_dir("amd-iommu", NULL);
499 if (stats_dir == NULL)
500 return;
501
Joerg Roedel7f265082008-12-12 13:50:21 +0100502 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300503 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100504
505 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100506 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100507 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100508 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100509 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100510 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100511 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100512 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100513 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100514 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100515 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100516 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100517 amd_iommu_stats_add(&complete_ppr);
518 amd_iommu_stats_add(&invalidate_iotlb);
519 amd_iommu_stats_add(&invalidate_iotlb_all);
520 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100521}
522
523#endif
524
Joerg Roedel431b2a22008-07-11 17:14:22 +0200525/****************************************************************************
526 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200527 * Interrupt handling functions
528 *
529 ****************************************************************************/
530
Joerg Roedele3e59872009-09-03 14:02:10 +0200531static void dump_dte_entry(u16 devid)
532{
533 int i;
534
Joerg Roedelee6c2862011-11-09 12:06:03 +0100535 for (i = 0; i < 4; ++i)
536 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200537 amd_iommu_dev_table[devid].data[i]);
538}
539
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200540static void dump_command(unsigned long phys_addr)
541{
542 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
543 int i;
544
545 for (i = 0; i < 4; ++i)
546 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
547}
548
Joerg Roedela345b232009-09-03 15:01:43 +0200549static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200550{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200551 int type, devid, domid, flags;
552 volatile u32 *event = __evt;
553 int count = 0;
554 u64 address;
555
556retry:
557 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
558 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
559 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
560 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
561 address = (u64)(((u64)event[3]) << 32) | event[2];
562
563 if (type == 0) {
564 /* Did we hit the erratum? */
565 if (++count == LOOP_TIMEOUT) {
566 pr_err("AMD-Vi: No event written to event log\n");
567 return;
568 }
569 udelay(1);
570 goto retry;
571 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200572
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200573 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200574
575 switch (type) {
576 case EVENT_TYPE_ILL_DEV:
577 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
578 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700579 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200580 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200581 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200582 break;
583 case EVENT_TYPE_IO_FAULT:
584 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
585 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700586 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200587 domid, address, flags);
588 break;
589 case EVENT_TYPE_DEV_TAB_ERR:
590 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
591 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700592 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200593 address, flags);
594 break;
595 case EVENT_TYPE_PAGE_TAB_ERR:
596 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
597 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700598 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200599 domid, address, flags);
600 break;
601 case EVENT_TYPE_ILL_CMD:
602 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200603 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200604 break;
605 case EVENT_TYPE_CMD_HARD_ERR:
606 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
607 "flags=0x%04x]\n", address, flags);
608 break;
609 case EVENT_TYPE_IOTLB_INV_TO:
610 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
611 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700612 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200613 address);
614 break;
615 case EVENT_TYPE_INV_DEV_REQ:
616 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
617 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700618 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200619 address, flags);
620 break;
621 default:
622 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
623 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200624
625 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200626}
627
628static void iommu_poll_events(struct amd_iommu *iommu)
629{
630 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200631
632 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
633 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
634
635 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200636 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200637 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
638 }
639
640 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200641}
642
Joerg Roedeleee53532012-06-01 15:20:23 +0200643static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100644{
645 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100646
Joerg Roedel399be2f2011-12-01 16:53:47 +0100647 INC_STATS_COUNTER(pri_requests);
648
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100649 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
650 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
651 return;
652 }
653
654 fault.address = raw[1];
655 fault.pasid = PPR_PASID(raw[0]);
656 fault.device_id = PPR_DEVID(raw[0]);
657 fault.tag = PPR_TAG(raw[0]);
658 fault.flags = PPR_FLAGS(raw[0]);
659
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100660 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
661}
662
663static void iommu_poll_ppr_log(struct amd_iommu *iommu)
664{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100665 u32 head, tail;
666
667 if (iommu->ppr_log == NULL)
668 return;
669
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100670 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
671 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
672
673 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200674 volatile u64 *raw;
675 u64 entry[2];
676 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100677
Joerg Roedeleee53532012-06-01 15:20:23 +0200678 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679
Joerg Roedeleee53532012-06-01 15:20:23 +0200680 /*
681 * Hardware bug: Interrupt may arrive before the entry is
682 * written to memory. If this happens we need to wait for the
683 * entry to arrive.
684 */
685 for (i = 0; i < LOOP_TIMEOUT; ++i) {
686 if (PPR_REQ_TYPE(raw[0]) != 0)
687 break;
688 udelay(1);
689 }
690
691 /* Avoid memcpy function-call overhead */
692 entry[0] = raw[0];
693 entry[1] = raw[1];
694
695 /*
696 * To detect the hardware bug we need to clear the entry
697 * back to zero.
698 */
699 raw[0] = raw[1] = 0UL;
700
701 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100702 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
703 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200704
Joerg Roedeleee53532012-06-01 15:20:23 +0200705 /* Handle PPR entry */
706 iommu_handle_ppr_entry(iommu, entry);
707
Joerg Roedeleee53532012-06-01 15:20:23 +0200708 /* Refresh ring-buffer information */
709 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100710 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
711 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100712}
713
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200714irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200715{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500716 struct amd_iommu *iommu = (struct amd_iommu *) data;
717 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200718
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500719 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
720 /* Enable EVT and PPR interrupts again */
721 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
722 iommu->mmio_base + MMIO_STATUS_OFFSET);
723
724 if (status & MMIO_STATUS_EVT_INT_MASK) {
725 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
726 iommu_poll_events(iommu);
727 }
728
729 if (status & MMIO_STATUS_PPR_INT_MASK) {
730 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
731 iommu_poll_ppr_log(iommu);
732 }
733
734 /*
735 * Hardware bug: ERBT1312
736 * When re-enabling interrupt (by writing 1
737 * to clear the bit), the hardware might also try to set
738 * the interrupt bit in the event status register.
739 * In this scenario, the bit will be set, and disable
740 * subsequent interrupts.
741 *
742 * Workaround: The IOMMU driver should read back the
743 * status register and check if the interrupt bits are cleared.
744 * If not, driver will need to go through the interrupt handler
745 * again and re-clear the bits
746 */
747 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100748 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200749 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200750}
751
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200752irqreturn_t amd_iommu_int_handler(int irq, void *data)
753{
754 return IRQ_WAKE_THREAD;
755}
756
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200757/****************************************************************************
758 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200759 * IOMMU command queuing functions
760 *
761 ****************************************************************************/
762
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200763static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200764{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200765 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200766
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200767 while (*sem == 0 && i < LOOP_TIMEOUT) {
768 udelay(1);
769 i += 1;
770 }
771
772 if (i == LOOP_TIMEOUT) {
773 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
774 return -EIO;
775 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200776
777 return 0;
778}
779
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200780static void copy_cmd_to_buffer(struct amd_iommu *iommu,
781 struct iommu_cmd *cmd,
782 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200783{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200784 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200785
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200786 target = iommu->cmd_buf + tail;
787 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200788
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200789 /* Copy command to buffer */
790 memcpy(target, cmd, sizeof(*cmd));
791
792 /* Tell the IOMMU about it */
793 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
794}
795
Joerg Roedel815b33f2011-04-06 17:26:49 +0200796static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200797{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200798 WARN_ON(address & 0x7ULL);
799
Joerg Roedelded46732011-04-06 10:53:48 +0200800 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200801 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
802 cmd->data[1] = upper_32_bits(__pa(address));
803 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200804 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
805}
806
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200807static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
808{
809 memset(cmd, 0, sizeof(*cmd));
810 cmd->data[0] = devid;
811 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
812}
813
Joerg Roedel11b64022011-04-06 11:49:28 +0200814static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
815 size_t size, u16 domid, int pde)
816{
817 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100818 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200819
820 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100821 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200822
823 if (pages > 1) {
824 /*
825 * If we have to flush more than one page, flush all
826 * TLB entries for this domain
827 */
828 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100829 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200830 }
831
832 address &= PAGE_MASK;
833
834 memset(cmd, 0, sizeof(*cmd));
835 cmd->data[1] |= domid;
836 cmd->data[2] = lower_32_bits(address);
837 cmd->data[3] = upper_32_bits(address);
838 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
839 if (s) /* size bit - we flush more than one 4kb page */
840 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200841 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200842 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
843}
844
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200845static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
846 u64 address, size_t size)
847{
848 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100849 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200850
851 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100852 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200853
854 if (pages > 1) {
855 /*
856 * If we have to flush more than one page, flush all
857 * TLB entries for this domain
858 */
859 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100860 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200861 }
862
863 address &= PAGE_MASK;
864
865 memset(cmd, 0, sizeof(*cmd));
866 cmd->data[0] = devid;
867 cmd->data[0] |= (qdep & 0xff) << 24;
868 cmd->data[1] = devid;
869 cmd->data[2] = lower_32_bits(address);
870 cmd->data[3] = upper_32_bits(address);
871 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
872 if (s)
873 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
874}
875
Joerg Roedel22e266c2011-11-21 15:59:08 +0100876static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
877 u64 address, bool size)
878{
879 memset(cmd, 0, sizeof(*cmd));
880
881 address &= ~(0xfffULL);
882
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600883 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100884 cmd->data[1] = domid;
885 cmd->data[2] = lower_32_bits(address);
886 cmd->data[3] = upper_32_bits(address);
887 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
888 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
889 if (size)
890 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
891 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
892}
893
894static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
895 int qdep, u64 address, bool size)
896{
897 memset(cmd, 0, sizeof(*cmd));
898
899 address &= ~(0xfffULL);
900
901 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600902 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100903 cmd->data[0] |= (qdep & 0xff) << 24;
904 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600905 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100906 cmd->data[2] = lower_32_bits(address);
907 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
908 cmd->data[3] = upper_32_bits(address);
909 if (size)
910 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
911 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
912}
913
Joerg Roedelc99afa22011-11-21 18:19:25 +0100914static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
915 int status, int tag, bool gn)
916{
917 memset(cmd, 0, sizeof(*cmd));
918
919 cmd->data[0] = devid;
920 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600921 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100922 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
923 }
924 cmd->data[3] = tag & 0x1ff;
925 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
926
927 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
928}
929
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200930static void build_inv_all(struct iommu_cmd *cmd)
931{
932 memset(cmd, 0, sizeof(*cmd));
933 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200934}
935
Joerg Roedel7ef27982012-06-21 16:46:04 +0200936static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
937{
938 memset(cmd, 0, sizeof(*cmd));
939 cmd->data[0] = devid;
940 CMD_SET_TYPE(cmd, CMD_INV_IRT);
941}
942
Joerg Roedel431b2a22008-07-11 17:14:22 +0200943/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200944 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200945 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200946 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200947static int iommu_queue_command_sync(struct amd_iommu *iommu,
948 struct iommu_cmd *cmd,
949 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200950{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200951 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200952 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200953
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200954 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100955
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200956again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200957 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200958
959 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
960 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
961 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
962 left = (head - next_tail) % iommu->cmd_buf_size;
963
964 if (left <= 2) {
965 struct iommu_cmd sync_cmd;
966 volatile u64 sem = 0;
967 int ret;
968
969 build_completion_wait(&sync_cmd, (u64)&sem);
970 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
971
972 spin_unlock_irqrestore(&iommu->lock, flags);
973
974 if ((ret = wait_on_sem(&sem)) != 0)
975 return ret;
976
977 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200978 }
979
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200980 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200981
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200982 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200983 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200984
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200985 spin_unlock_irqrestore(&iommu->lock, flags);
986
Joerg Roedel815b33f2011-04-06 17:26:49 +0200987 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100988}
989
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200990static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
991{
992 return iommu_queue_command_sync(iommu, cmd, true);
993}
994
Joerg Roedel8d201962008-12-02 20:34:41 +0100995/*
996 * This function queues a completion wait command into the command
997 * buffer of an IOMMU
998 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100999static int iommu_completion_wait(struct amd_iommu *iommu)
1000{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001001 struct iommu_cmd cmd;
1002 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001003 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001004
1005 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001006 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001007
Joerg Roedel815b33f2011-04-06 17:26:49 +02001008 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001009
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001010 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001011 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001012 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001013
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001014 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001015}
1016
Joerg Roedeld8c13082011-04-06 18:51:26 +02001017static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001018{
1019 struct iommu_cmd cmd;
1020
Joerg Roedeld8c13082011-04-06 18:51:26 +02001021 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001022
Joerg Roedeld8c13082011-04-06 18:51:26 +02001023 return iommu_queue_command(iommu, &cmd);
1024}
1025
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001026static void iommu_flush_dte_all(struct amd_iommu *iommu)
1027{
1028 u32 devid;
1029
1030 for (devid = 0; devid <= 0xffff; ++devid)
1031 iommu_flush_dte(iommu, devid);
1032
1033 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001034}
1035
1036/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001037 * This function uses heavy locking and may disable irqs for some time. But
1038 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001039 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001040static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001041{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001042 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001043
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001044 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1045 struct iommu_cmd cmd;
1046 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1047 dom_id, 1);
1048 iommu_queue_command(iommu, &cmd);
1049 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001050
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001051 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001052}
1053
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001054static void iommu_flush_all(struct amd_iommu *iommu)
1055{
1056 struct iommu_cmd cmd;
1057
1058 build_inv_all(&cmd);
1059
1060 iommu_queue_command(iommu, &cmd);
1061 iommu_completion_wait(iommu);
1062}
1063
Joerg Roedel7ef27982012-06-21 16:46:04 +02001064static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1065{
1066 struct iommu_cmd cmd;
1067
1068 build_inv_irt(&cmd, devid);
1069
1070 iommu_queue_command(iommu, &cmd);
1071}
1072
1073static void iommu_flush_irt_all(struct amd_iommu *iommu)
1074{
1075 u32 devid;
1076
1077 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1078 iommu_flush_irt(iommu, devid);
1079
1080 iommu_completion_wait(iommu);
1081}
1082
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001083void iommu_flush_all_caches(struct amd_iommu *iommu)
1084{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001085 if (iommu_feature(iommu, FEATURE_IA)) {
1086 iommu_flush_all(iommu);
1087 } else {
1088 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001089 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001090 iommu_flush_tlb_all(iommu);
1091 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001092}
1093
Joerg Roedel431b2a22008-07-11 17:14:22 +02001094/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001095 * Command send function for flushing on-device TLB
1096 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001097static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1098 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001099{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001100 struct amd_iommu *iommu;
1101 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001102 int qdep;
1103
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001104 qdep = dev_data->ats.qdep;
1105 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001106
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001107 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001108
1109 return iommu_queue_command(iommu, &cmd);
1110}
1111
1112/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001113 * Command send function for invalidating a device table entry
1114 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001115static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001116{
1117 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001118 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001119
Joerg Roedel6c542042011-06-09 17:07:31 +02001120 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001121
Joerg Roedelf62dda62011-06-09 12:55:35 +02001122 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001123 if (ret)
1124 return ret;
1125
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001126 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001127 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001128
1129 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001130}
1131
Joerg Roedel431b2a22008-07-11 17:14:22 +02001132/*
1133 * TLB invalidation function which is called from the mapping functions.
1134 * It invalidates a single PTE if the range to flush is within a single
1135 * page. Otherwise it flushes the whole TLB of the IOMMU.
1136 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001137static void __domain_flush_pages(struct protection_domain *domain,
1138 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001139{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001140 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001141 struct iommu_cmd cmd;
1142 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001143
Joerg Roedel11b64022011-04-06 11:49:28 +02001144 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001145
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001146 for (i = 0; i < amd_iommus_present; ++i) {
1147 if (!domain->dev_iommu[i])
1148 continue;
1149
1150 /*
1151 * Devices of this domain are behind this IOMMU
1152 * We need a TLB flush
1153 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001154 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001155 }
1156
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001157 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001158
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001159 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001160 continue;
1161
Joerg Roedel6c542042011-06-09 17:07:31 +02001162 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001163 }
1164
Joerg Roedel11b64022011-04-06 11:49:28 +02001165 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001166}
1167
Joerg Roedel17b124b2011-04-06 18:01:35 +02001168static void domain_flush_pages(struct protection_domain *domain,
1169 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001170{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001171 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001172}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001173
Joerg Roedel1c655772008-09-04 18:40:05 +02001174/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001175static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001176{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001177 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001178}
1179
Chris Wright42a49f92009-06-15 15:42:00 +02001180/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001181static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001182{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001183 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1184}
1185
1186static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001187{
1188 int i;
1189
1190 for (i = 0; i < amd_iommus_present; ++i) {
1191 if (!domain->dev_iommu[i])
1192 continue;
1193
1194 /*
1195 * Devices of this domain are behind this IOMMU
1196 * We need to wait for completion of all commands.
1197 */
1198 iommu_completion_wait(amd_iommus[i]);
1199 }
1200}
1201
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001202
Joerg Roedel43f49602008-12-02 21:01:12 +01001203/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001204 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001205 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001206static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001207{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001208 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001209
1210 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001211 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001212}
1213
Joerg Roedel431b2a22008-07-11 17:14:22 +02001214/****************************************************************************
1215 *
1216 * The functions below are used the create the page table mappings for
1217 * unity mapped regions.
1218 *
1219 ****************************************************************************/
1220
1221/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001222 * This function is used to add another level to an IO page table. Adding
1223 * another level increases the size of the address space by 9 bits to a size up
1224 * to 64 bits.
1225 */
1226static bool increase_address_space(struct protection_domain *domain,
1227 gfp_t gfp)
1228{
1229 u64 *pte;
1230
1231 if (domain->mode == PAGE_MODE_6_LEVEL)
1232 /* address space already 64 bit large */
1233 return false;
1234
1235 pte = (void *)get_zeroed_page(gfp);
1236 if (!pte)
1237 return false;
1238
1239 *pte = PM_LEVEL_PDE(domain->mode,
1240 virt_to_phys(domain->pt_root));
1241 domain->pt_root = pte;
1242 domain->mode += 1;
1243 domain->updated = true;
1244
1245 return true;
1246}
1247
1248static u64 *alloc_pte(struct protection_domain *domain,
1249 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001250 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001251 u64 **pte_page,
1252 gfp_t gfp)
1253{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001254 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001255 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001256
1257 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001258
1259 while (address > PM_LEVEL_SIZE(domain->mode))
1260 increase_address_space(domain, gfp);
1261
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001262 level = domain->mode - 1;
1263 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1264 address = PAGE_SIZE_ALIGN(address, page_size);
1265 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001266
1267 while (level > end_lvl) {
1268 if (!IOMMU_PTE_PRESENT(*pte)) {
1269 page = (u64 *)get_zeroed_page(gfp);
1270 if (!page)
1271 return NULL;
1272 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1273 }
1274
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001275 /* No level skipping support yet */
1276 if (PM_PTE_LEVEL(*pte) != level)
1277 return NULL;
1278
Joerg Roedel308973d2009-11-24 17:43:32 +01001279 level -= 1;
1280
1281 pte = IOMMU_PTE_PAGE(*pte);
1282
1283 if (pte_page && level == end_lvl)
1284 *pte_page = pte;
1285
1286 pte = &pte[PM_LEVEL_INDEX(level, address)];
1287 }
1288
1289 return pte;
1290}
1291
1292/*
1293 * This function checks if there is a PTE for a given dma address. If
1294 * there is one, it returns the pointer to it.
1295 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001296static u64 *fetch_pte(struct protection_domain *domain,
1297 unsigned long address,
1298 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001299{
1300 int level;
1301 u64 *pte;
1302
Joerg Roedel24cd7722010-01-19 17:27:39 +01001303 if (address > PM_LEVEL_SIZE(domain->mode))
1304 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001305
Joerg Roedel3039ca12015-04-01 14:58:48 +02001306 level = domain->mode - 1;
1307 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1308 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001309
1310 while (level > 0) {
1311
1312 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001313 if (!IOMMU_PTE_PRESENT(*pte))
1314 return NULL;
1315
Joerg Roedel24cd7722010-01-19 17:27:39 +01001316 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001317 if (PM_PTE_LEVEL(*pte) == 7 ||
1318 PM_PTE_LEVEL(*pte) == 0)
1319 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001320
1321 /* No level skipping support yet */
1322 if (PM_PTE_LEVEL(*pte) != level)
1323 return NULL;
1324
Joerg Roedel308973d2009-11-24 17:43:32 +01001325 level -= 1;
1326
Joerg Roedel24cd7722010-01-19 17:27:39 +01001327 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001328 pte = IOMMU_PTE_PAGE(*pte);
1329 pte = &pte[PM_LEVEL_INDEX(level, address)];
1330 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1331 }
1332
1333 if (PM_PTE_LEVEL(*pte) == 0x07) {
1334 unsigned long pte_mask;
1335
1336 /*
1337 * If we have a series of large PTEs, make
1338 * sure to return a pointer to the first one.
1339 */
1340 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1341 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1342 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001343 }
1344
1345 return pte;
1346}
1347
1348/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001349 * Generic mapping functions. It maps a physical address into a DMA
1350 * address space. It allocates the page table pages if necessary.
1351 * In the future it can be extended to a generic mapping function
1352 * supporting all features of AMD IOMMU page tables like level skipping
1353 * and full 64 bit address spaces.
1354 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001355static int iommu_map_page(struct protection_domain *dom,
1356 unsigned long bus_addr,
1357 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001358 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001359 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001360{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001361 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001362 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001363
Joerg Roedeld4b03662015-04-01 14:58:52 +02001364 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1365 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1366
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001367 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001368 return -EINVAL;
1369
Joerg Roedeld4b03662015-04-01 14:58:52 +02001370 count = PAGE_SIZE_PTE_COUNT(page_size);
1371 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001372
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001373 if (!pte)
1374 return -ENOMEM;
1375
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001376 for (i = 0; i < count; ++i)
1377 if (IOMMU_PTE_PRESENT(pte[i]))
1378 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001379
Joerg Roedeld4b03662015-04-01 14:58:52 +02001380 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001381 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1382 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1383 } else
1384 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1385
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001386 if (prot & IOMMU_PROT_IR)
1387 __pte |= IOMMU_PTE_IR;
1388 if (prot & IOMMU_PROT_IW)
1389 __pte |= IOMMU_PTE_IW;
1390
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001391 for (i = 0; i < count; ++i)
1392 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001393
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001394 update_domain(dom);
1395
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001396 return 0;
1397}
1398
Joerg Roedel24cd7722010-01-19 17:27:39 +01001399static unsigned long iommu_unmap_page(struct protection_domain *dom,
1400 unsigned long bus_addr,
1401 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001402{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001403 unsigned long long unmapped;
1404 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001405 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001406
Joerg Roedel24cd7722010-01-19 17:27:39 +01001407 BUG_ON(!is_power_of_2(page_size));
1408
1409 unmapped = 0;
1410
1411 while (unmapped < page_size) {
1412
Joerg Roedel71b390e2015-04-01 14:58:49 +02001413 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001414
Joerg Roedel71b390e2015-04-01 14:58:49 +02001415 if (pte) {
1416 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001417
Joerg Roedel71b390e2015-04-01 14:58:49 +02001418 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001419 for (i = 0; i < count; i++)
1420 pte[i] = 0ULL;
1421 }
1422
1423 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1424 unmapped += unmap_size;
1425 }
1426
Alex Williamson60d0ca32013-06-21 14:33:19 -06001427 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001428
1429 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001430}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001431
Joerg Roedel431b2a22008-07-11 17:14:22 +02001432/****************************************************************************
1433 *
1434 * The next functions belong to the address allocator for the dma_ops
1435 * interface functions. They work like the allocators in the other IOMMU
1436 * drivers. Its basically a bitmap which marks the allocated pages in
1437 * the aperture. Maybe it could be enhanced in the future to a more
1438 * efficient allocator.
1439 *
1440 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001441
Joerg Roedel431b2a22008-07-11 17:14:22 +02001442/*
Joerg Roedel384de722009-05-15 12:30:05 +02001443 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001444 *
1445 * called with domain->lock held
1446 */
Joerg Roedel384de722009-05-15 12:30:05 +02001447
Joerg Roedel9cabe892009-05-18 16:38:55 +02001448/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001449 * Used to reserve address ranges in the aperture (e.g. for exclusion
1450 * ranges.
1451 */
1452static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1453 unsigned long start_page,
1454 unsigned int pages)
1455{
1456 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1457
1458 if (start_page + pages > last_page)
1459 pages = last_page - start_page;
1460
1461 for (i = start_page; i < start_page + pages; ++i) {
1462 int index = i / APERTURE_RANGE_PAGES;
1463 int page = i % APERTURE_RANGE_PAGES;
1464 __set_bit(page, dom->aperture[index]->bitmap);
1465 }
1466}
1467
1468/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001469 * This function is used to add a new aperture range to an existing
1470 * aperture in case of dma_ops domain allocation or address allocation
1471 * failure.
1472 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001473static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001474 bool populate, gfp_t gfp)
1475{
1476 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001477 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001478 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001479
Joerg Roedelf5e97052009-05-22 12:31:53 +02001480#ifdef CONFIG_IOMMU_STRESS
1481 populate = false;
1482#endif
1483
Joerg Roedel9cabe892009-05-18 16:38:55 +02001484 if (index >= APERTURE_MAX_RANGES)
1485 return -ENOMEM;
1486
1487 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1488 if (!dma_dom->aperture[index])
1489 return -ENOMEM;
1490
1491 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1492 if (!dma_dom->aperture[index]->bitmap)
1493 goto out_free;
1494
1495 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1496
1497 if (populate) {
1498 unsigned long address = dma_dom->aperture_size;
1499 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1500 u64 *pte, *pte_page;
1501
1502 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001503 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001504 &pte_page, gfp);
1505 if (!pte)
1506 goto out_free;
1507
1508 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1509
1510 address += APERTURE_RANGE_SIZE / 64;
1511 }
1512 }
1513
Joerg Roedel17f5b562011-07-06 17:14:44 +02001514 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001515 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1516
Joerg Roedel17f5b562011-07-06 17:14:44 +02001517 /* Reserve address range used for MSI messages */
1518 if (old_size < MSI_ADDR_BASE_LO &&
1519 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1520 unsigned long spage;
1521 int pages;
1522
1523 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1524 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1525
1526 dma_ops_reserve_addresses(dma_dom, spage, pages);
1527 }
1528
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001529 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001530 for_each_iommu(iommu) {
1531 if (iommu->exclusion_start &&
1532 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1533 && iommu->exclusion_start < dma_dom->aperture_size) {
1534 unsigned long startpage;
1535 int pages = iommu_num_pages(iommu->exclusion_start,
1536 iommu->exclusion_length,
1537 PAGE_SIZE);
1538 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1539 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1540 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001541 }
1542
1543 /*
1544 * Check for areas already mapped as present in the new aperture
1545 * range and mark those pages as reserved in the allocator. Such
1546 * mappings may already exist as a result of requested unity
1547 * mappings for devices.
1548 */
1549 for (i = dma_dom->aperture[index]->offset;
1550 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001551 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001552 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001553 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1554 continue;
1555
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001556 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1557 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001558 }
1559
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001560 update_domain(&dma_dom->domain);
1561
Joerg Roedel9cabe892009-05-18 16:38:55 +02001562 return 0;
1563
1564out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001565 update_domain(&dma_dom->domain);
1566
Joerg Roedel9cabe892009-05-18 16:38:55 +02001567 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1568
1569 kfree(dma_dom->aperture[index]);
1570 dma_dom->aperture[index] = NULL;
1571
1572 return -ENOMEM;
1573}
1574
Joerg Roedel384de722009-05-15 12:30:05 +02001575static unsigned long dma_ops_area_alloc(struct device *dev,
1576 struct dma_ops_domain *dom,
1577 unsigned int pages,
1578 unsigned long align_mask,
1579 u64 dma_mask,
1580 unsigned long start)
1581{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001582 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001583 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1584 int i = start >> APERTURE_RANGE_SHIFT;
1585 unsigned long boundary_size;
1586 unsigned long address = -1;
1587 unsigned long limit;
1588
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001589 next_bit >>= PAGE_SHIFT;
1590
Joerg Roedel384de722009-05-15 12:30:05 +02001591 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1592 PAGE_SIZE) >> PAGE_SHIFT;
1593
1594 for (;i < max_index; ++i) {
1595 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1596
1597 if (dom->aperture[i]->offset >= dma_mask)
1598 break;
1599
1600 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1601 dma_mask >> PAGE_SHIFT);
1602
1603 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1604 limit, next_bit, pages, 0,
1605 boundary_size, align_mask);
1606 if (address != -1) {
1607 address = dom->aperture[i]->offset +
1608 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001609 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001610 break;
1611 }
1612
1613 next_bit = 0;
1614 }
1615
1616 return address;
1617}
1618
Joerg Roedeld3086442008-06-26 21:27:57 +02001619static unsigned long dma_ops_alloc_addresses(struct device *dev,
1620 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001621 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001622 unsigned long align_mask,
1623 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001624{
Joerg Roedeld3086442008-06-26 21:27:57 +02001625 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001626
Joerg Roedelfe16f082009-05-22 12:27:53 +02001627#ifdef CONFIG_IOMMU_STRESS
1628 dom->next_address = 0;
1629 dom->need_flush = true;
1630#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001631
Joerg Roedel384de722009-05-15 12:30:05 +02001632 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001633 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001634
Joerg Roedel1c655772008-09-04 18:40:05 +02001635 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001636 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001637 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1638 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001639 dom->need_flush = true;
1640 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001641
Joerg Roedel384de722009-05-15 12:30:05 +02001642 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001643 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001644
1645 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1646
1647 return address;
1648}
1649
Joerg Roedel431b2a22008-07-11 17:14:22 +02001650/*
1651 * The address free function.
1652 *
1653 * called with domain->lock held
1654 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001655static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1656 unsigned long address,
1657 unsigned int pages)
1658{
Joerg Roedel384de722009-05-15 12:30:05 +02001659 unsigned i = address >> APERTURE_RANGE_SHIFT;
1660 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001661
Joerg Roedel384de722009-05-15 12:30:05 +02001662 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1663
Joerg Roedel47bccd62009-05-22 12:40:54 +02001664#ifdef CONFIG_IOMMU_STRESS
1665 if (i < 4)
1666 return;
1667#endif
1668
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001669 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001670 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001671
1672 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001673
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001674 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001675
Joerg Roedeld3086442008-06-26 21:27:57 +02001676}
1677
Joerg Roedel431b2a22008-07-11 17:14:22 +02001678/****************************************************************************
1679 *
1680 * The next functions belong to the domain allocation. A domain is
1681 * allocated for every IOMMU as the default domain. If device isolation
1682 * is enabled, every device get its own domain. The most important thing
1683 * about domains is the page table mapping the DMA address space they
1684 * contain.
1685 *
1686 ****************************************************************************/
1687
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001688/*
1689 * This function adds a protection domain to the global protection domain list
1690 */
1691static void add_domain_to_list(struct protection_domain *domain)
1692{
1693 unsigned long flags;
1694
1695 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1696 list_add(&domain->list, &amd_iommu_pd_list);
1697 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1698}
1699
1700/*
1701 * This function removes a protection domain to the global
1702 * protection domain list
1703 */
1704static void del_domain_from_list(struct protection_domain *domain)
1705{
1706 unsigned long flags;
1707
1708 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1709 list_del(&domain->list);
1710 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1711}
1712
Joerg Roedelec487d12008-06-26 21:27:58 +02001713static u16 domain_id_alloc(void)
1714{
1715 unsigned long flags;
1716 int id;
1717
1718 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1719 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1720 BUG_ON(id == 0);
1721 if (id > 0 && id < MAX_DOMAIN_ID)
1722 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1723 else
1724 id = 0;
1725 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1726
1727 return id;
1728}
1729
Joerg Roedela2acfb72008-12-02 18:28:53 +01001730static void domain_id_free(int id)
1731{
1732 unsigned long flags;
1733
1734 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1735 if (id > 0 && id < MAX_DOMAIN_ID)
1736 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1737 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1738}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001739
Joerg Roedel5c34c402013-06-20 20:22:58 +02001740#define DEFINE_FREE_PT_FN(LVL, FN) \
1741static void free_pt_##LVL (unsigned long __pt) \
1742{ \
1743 unsigned long p; \
1744 u64 *pt; \
1745 int i; \
1746 \
1747 pt = (u64 *)__pt; \
1748 \
1749 for (i = 0; i < 512; ++i) { \
1750 if (!IOMMU_PTE_PRESENT(pt[i])) \
1751 continue; \
1752 \
1753 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1754 FN(p); \
1755 } \
1756 free_page((unsigned long)pt); \
1757}
1758
1759DEFINE_FREE_PT_FN(l2, free_page)
1760DEFINE_FREE_PT_FN(l3, free_pt_l2)
1761DEFINE_FREE_PT_FN(l4, free_pt_l3)
1762DEFINE_FREE_PT_FN(l5, free_pt_l4)
1763DEFINE_FREE_PT_FN(l6, free_pt_l5)
1764
Joerg Roedel86db2e52008-12-02 18:20:21 +01001765static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001766{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001767 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001768
Joerg Roedel5c34c402013-06-20 20:22:58 +02001769 switch (domain->mode) {
1770 case PAGE_MODE_NONE:
1771 break;
1772 case PAGE_MODE_1_LEVEL:
1773 free_page(root);
1774 break;
1775 case PAGE_MODE_2_LEVEL:
1776 free_pt_l2(root);
1777 break;
1778 case PAGE_MODE_3_LEVEL:
1779 free_pt_l3(root);
1780 break;
1781 case PAGE_MODE_4_LEVEL:
1782 free_pt_l4(root);
1783 break;
1784 case PAGE_MODE_5_LEVEL:
1785 free_pt_l5(root);
1786 break;
1787 case PAGE_MODE_6_LEVEL:
1788 free_pt_l6(root);
1789 break;
1790 default:
1791 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001792 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001793}
1794
Joerg Roedelb16137b2011-11-21 16:50:23 +01001795static void free_gcr3_tbl_level1(u64 *tbl)
1796{
1797 u64 *ptr;
1798 int i;
1799
1800 for (i = 0; i < 512; ++i) {
1801 if (!(tbl[i] & GCR3_VALID))
1802 continue;
1803
1804 ptr = __va(tbl[i] & PAGE_MASK);
1805
1806 free_page((unsigned long)ptr);
1807 }
1808}
1809
1810static void free_gcr3_tbl_level2(u64 *tbl)
1811{
1812 u64 *ptr;
1813 int i;
1814
1815 for (i = 0; i < 512; ++i) {
1816 if (!(tbl[i] & GCR3_VALID))
1817 continue;
1818
1819 ptr = __va(tbl[i] & PAGE_MASK);
1820
1821 free_gcr3_tbl_level1(ptr);
1822 }
1823}
1824
Joerg Roedel52815b72011-11-17 17:24:28 +01001825static void free_gcr3_table(struct protection_domain *domain)
1826{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001827 if (domain->glx == 2)
1828 free_gcr3_tbl_level2(domain->gcr3_tbl);
1829 else if (domain->glx == 1)
1830 free_gcr3_tbl_level1(domain->gcr3_tbl);
1831 else if (domain->glx != 0)
1832 BUG();
1833
Joerg Roedel52815b72011-11-17 17:24:28 +01001834 free_page((unsigned long)domain->gcr3_tbl);
1835}
1836
Joerg Roedel431b2a22008-07-11 17:14:22 +02001837/*
1838 * Free a domain, only used if something went wrong in the
1839 * allocation path and we need to free an already allocated page table
1840 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001841static void dma_ops_domain_free(struct dma_ops_domain *dom)
1842{
Joerg Roedel384de722009-05-15 12:30:05 +02001843 int i;
1844
Joerg Roedelec487d12008-06-26 21:27:58 +02001845 if (!dom)
1846 return;
1847
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001848 del_domain_from_list(&dom->domain);
1849
Joerg Roedel86db2e52008-12-02 18:20:21 +01001850 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001851
Joerg Roedel384de722009-05-15 12:30:05 +02001852 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1853 if (!dom->aperture[i])
1854 continue;
1855 free_page((unsigned long)dom->aperture[i]->bitmap);
1856 kfree(dom->aperture[i]);
1857 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001858
1859 kfree(dom);
1860}
1861
Joerg Roedel431b2a22008-07-11 17:14:22 +02001862/*
1863 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001864 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001865 * structures required for the dma_ops interface
1866 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001867static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001868{
1869 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001870
1871 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1872 if (!dma_dom)
1873 return NULL;
1874
1875 spin_lock_init(&dma_dom->domain.lock);
1876
1877 dma_dom->domain.id = domain_id_alloc();
1878 if (dma_dom->domain.id == 0)
1879 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001880 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001881 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001882 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001883 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001884 dma_dom->domain.priv = dma_dom;
1885 if (!dma_dom->domain.pt_root)
1886 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001887
Joerg Roedel1c655772008-09-04 18:40:05 +02001888 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001889 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001890
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001891 add_domain_to_list(&dma_dom->domain);
1892
Joerg Roedel576175c2009-11-23 19:08:46 +01001893 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001894 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001895
Joerg Roedel431b2a22008-07-11 17:14:22 +02001896 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001897 * mark the first page as allocated so we never return 0 as
1898 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001899 */
Joerg Roedel384de722009-05-15 12:30:05 +02001900 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001901 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001902
Joerg Roedelec487d12008-06-26 21:27:58 +02001903
1904 return dma_dom;
1905
1906free_dma_dom:
1907 dma_ops_domain_free(dma_dom);
1908
1909 return NULL;
1910}
1911
Joerg Roedel431b2a22008-07-11 17:14:22 +02001912/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001913 * little helper function to check whether a given protection domain is a
1914 * dma_ops domain
1915 */
1916static bool dma_ops_domain(struct protection_domain *domain)
1917{
1918 return domain->flags & PD_DMA_OPS_MASK;
1919}
1920
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001921static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001922{
Joerg Roedel132bd682011-11-17 14:18:46 +01001923 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001924 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001925
Joerg Roedel132bd682011-11-17 14:18:46 +01001926 if (domain->mode != PAGE_MODE_NONE)
1927 pte_root = virt_to_phys(domain->pt_root);
1928
Joerg Roedel38ddf412008-09-11 10:38:32 +02001929 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1930 << DEV_ENTRY_MODE_SHIFT;
1931 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001932
Joerg Roedelee6c2862011-11-09 12:06:03 +01001933 flags = amd_iommu_dev_table[devid].data[1];
1934
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001935 if (ats)
1936 flags |= DTE_FLAG_IOTLB;
1937
Joerg Roedel52815b72011-11-17 17:24:28 +01001938 if (domain->flags & PD_IOMMUV2_MASK) {
1939 u64 gcr3 = __pa(domain->gcr3_tbl);
1940 u64 glx = domain->glx;
1941 u64 tmp;
1942
1943 pte_root |= DTE_FLAG_GV;
1944 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1945
1946 /* First mask out possible old values for GCR3 table */
1947 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1948 flags &= ~tmp;
1949
1950 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1951 flags &= ~tmp;
1952
1953 /* Encode GCR3 table into DTE */
1954 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1955 pte_root |= tmp;
1956
1957 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1958 flags |= tmp;
1959
1960 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1961 flags |= tmp;
1962 }
1963
Joerg Roedelee6c2862011-11-09 12:06:03 +01001964 flags &= ~(0xffffUL);
1965 flags |= domain->id;
1966
1967 amd_iommu_dev_table[devid].data[1] = flags;
1968 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001969}
1970
Joerg Roedel15898bb2009-11-24 15:39:42 +01001971static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001972{
Joerg Roedel355bf552008-12-08 12:02:41 +01001973 /* remove entry from the device table seen by the hardware */
1974 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1975 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001976
Joerg Roedelc5cca142009-10-09 18:31:20 +02001977 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001978}
1979
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001980static void do_attach(struct iommu_dev_data *dev_data,
1981 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001982{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001983 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001984 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001985
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001986 iommu = amd_iommu_rlookup_table[dev_data->devid];
1987 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001988
1989 /* Update data structures */
1990 dev_data->domain = domain;
1991 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001992 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001993
1994 /* Do reference counting */
1995 domain->dev_iommu[iommu->index] += 1;
1996 domain->dev_cnt += 1;
1997
1998 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001999 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002000}
2001
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002002static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002003{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002004 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002005
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002006 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002007
Joerg Roedelc4596112009-11-20 14:57:32 +01002008 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002009 dev_data->domain->dev_iommu[iommu->index] -= 1;
2010 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002011
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002012 /* Update data structures */
2013 dev_data->domain = NULL;
2014 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002015 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002016
2017 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002018 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002019}
2020
2021/*
2022 * If a device is not yet associated with a domain, this function does
2023 * assigns it visible for the hardware
2024 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002025static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002026 struct protection_domain *domain)
2027{
Joerg Roedel397111a2014-08-05 17:31:51 +02002028 struct iommu_dev_data *head, *entry;
Julia Lawall84fe6c12010-05-27 12:31:51 +02002029 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002030
Joerg Roedel15898bb2009-11-24 15:39:42 +01002031 /* lock domain */
2032 spin_lock(&domain->lock);
2033
Joerg Roedel397111a2014-08-05 17:31:51 +02002034 head = dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002035
Joerg Roedel397111a2014-08-05 17:31:51 +02002036 if (head->alias_data != NULL)
2037 head = head->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002038
Joerg Roedel397111a2014-08-05 17:31:51 +02002039 /* Now we have the root of the alias group, if any */
Joerg Roedel2b02b092011-06-09 17:48:39 +02002040
Joerg Roedel397111a2014-08-05 17:31:51 +02002041 ret = -EBUSY;
2042 if (head->domain != NULL)
2043 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002044
Joerg Roedel397111a2014-08-05 17:31:51 +02002045 /* Attach alias group root */
2046 do_attach(head, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002047
Joerg Roedel397111a2014-08-05 17:31:51 +02002048 /* Attach other devices in the alias group */
2049 list_for_each_entry(entry, &head->alias_list, alias_list)
2050 do_attach(entry, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002051
Julia Lawall84fe6c12010-05-27 12:31:51 +02002052 ret = 0;
2053
2054out_unlock:
2055
Joerg Roedel355bf552008-12-08 12:02:41 +01002056 /* ready */
2057 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002058
Julia Lawall84fe6c12010-05-27 12:31:51 +02002059 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002060}
2061
Joerg Roedel52815b72011-11-17 17:24:28 +01002062
2063static void pdev_iommuv2_disable(struct pci_dev *pdev)
2064{
2065 pci_disable_ats(pdev);
2066 pci_disable_pri(pdev);
2067 pci_disable_pasid(pdev);
2068}
2069
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002070/* FIXME: Change generic reset-function to do the same */
2071static int pri_reset_while_enabled(struct pci_dev *pdev)
2072{
2073 u16 control;
2074 int pos;
2075
Joerg Roedel46277b72011-12-07 14:34:02 +01002076 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002077 if (!pos)
2078 return -EINVAL;
2079
Joerg Roedel46277b72011-12-07 14:34:02 +01002080 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2081 control |= PCI_PRI_CTRL_RESET;
2082 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002083
2084 return 0;
2085}
2086
Joerg Roedel52815b72011-11-17 17:24:28 +01002087static int pdev_iommuv2_enable(struct pci_dev *pdev)
2088{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002089 bool reset_enable;
2090 int reqs, ret;
2091
2092 /* FIXME: Hardcode number of outstanding requests for now */
2093 reqs = 32;
2094 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2095 reqs = 1;
2096 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002097
2098 /* Only allow access to user-accessible pages */
2099 ret = pci_enable_pasid(pdev, 0);
2100 if (ret)
2101 goto out_err;
2102
2103 /* First reset the PRI state of the device */
2104 ret = pci_reset_pri(pdev);
2105 if (ret)
2106 goto out_err;
2107
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002108 /* Enable PRI */
2109 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002110 if (ret)
2111 goto out_err;
2112
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002113 if (reset_enable) {
2114 ret = pri_reset_while_enabled(pdev);
2115 if (ret)
2116 goto out_err;
2117 }
2118
Joerg Roedel52815b72011-11-17 17:24:28 +01002119 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2120 if (ret)
2121 goto out_err;
2122
2123 return 0;
2124
2125out_err:
2126 pci_disable_pri(pdev);
2127 pci_disable_pasid(pdev);
2128
2129 return ret;
2130}
2131
Joerg Roedelc99afa22011-11-21 18:19:25 +01002132/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002133#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002134
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002135static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002136{
Joerg Roedela3b93122012-04-12 12:49:26 +02002137 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002138 int pos;
2139
Joerg Roedel46277b72011-12-07 14:34:02 +01002140 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002141 if (!pos)
2142 return false;
2143
Joerg Roedela3b93122012-04-12 12:49:26 +02002144 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002145
Joerg Roedela3b93122012-04-12 12:49:26 +02002146 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002147}
2148
Joerg Roedel15898bb2009-11-24 15:39:42 +01002149/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002150 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002151 * assigns it visible for the hardware
2152 */
2153static int attach_device(struct device *dev,
2154 struct protection_domain *domain)
2155{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002156 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002157 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002158 unsigned long flags;
2159 int ret;
2160
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002161 dev_data = get_dev_data(dev);
2162
Joerg Roedel52815b72011-11-17 17:24:28 +01002163 if (domain->flags & PD_IOMMUV2_MASK) {
2164 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2165 return -EINVAL;
2166
2167 if (pdev_iommuv2_enable(pdev) != 0)
2168 return -EINVAL;
2169
2170 dev_data->ats.enabled = true;
2171 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002172 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002173 } else if (amd_iommu_iotlb_sup &&
2174 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002175 dev_data->ats.enabled = true;
2176 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2177 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002178
Joerg Roedel15898bb2009-11-24 15:39:42 +01002179 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002180 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002181 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2182
2183 /*
2184 * We might boot into a crash-kernel here. The crashed kernel
2185 * left the caches in the IOMMU dirty. So we have to flush
2186 * here to evict all dirty stuff.
2187 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002188 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002189
2190 return ret;
2191}
2192
2193/*
2194 * Removes a device from a protection domain (unlocked)
2195 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002196static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002197{
Joerg Roedel397111a2014-08-05 17:31:51 +02002198 struct iommu_dev_data *head, *entry;
Joerg Roedel2ca76272010-01-22 16:45:31 +01002199 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002200 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002201
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002202 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002203
Joerg Roedel2ca76272010-01-22 16:45:31 +01002204 domain = dev_data->domain;
2205
2206 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002207
Joerg Roedel397111a2014-08-05 17:31:51 +02002208 head = dev_data;
2209 if (head->alias_data != NULL)
2210 head = head->alias_data;
Joerg Roedel71f77582011-06-09 19:03:15 +02002211
Joerg Roedel397111a2014-08-05 17:31:51 +02002212 list_for_each_entry(entry, &head->alias_list, alias_list)
2213 do_detach(entry);
Joerg Roedel24100052009-11-25 15:59:57 +01002214
Joerg Roedel397111a2014-08-05 17:31:51 +02002215 do_detach(head);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002216
Joerg Roedel2ca76272010-01-22 16:45:31 +01002217 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002218
Joerg Roedel21129f72009-09-01 11:59:42 +02002219 /*
2220 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002221 * passthrough domain if it is detached from any other domain.
2222 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002223 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002224 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002225 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002226 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002227}
2228
2229/*
2230 * Removes a device from a protection domain (with devtable_lock held)
2231 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002232static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002233{
Joerg Roedel52815b72011-11-17 17:24:28 +01002234 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002235 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002236 unsigned long flags;
2237
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002238 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002239 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002240
Joerg Roedel355bf552008-12-08 12:02:41 +01002241 /* lock device table */
2242 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002243 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002244 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002245
Joerg Roedel52815b72011-11-17 17:24:28 +01002246 if (domain->flags & PD_IOMMUV2_MASK)
2247 pdev_iommuv2_disable(to_pci_dev(dev));
2248 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002249 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002250
2251 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002252}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002253
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002254static int amd_iommu_add_device(struct device *dev)
Joerg Roedele275a2a2008-12-10 18:27:25 +01002255{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002256 struct amd_iommu *iommu;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002257 u16 devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002258 int ret;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002259
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002260 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002261 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002262
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002263 devid = get_device_id(dev);
2264 iommu = amd_iommu_rlookup_table[devid];
2265
2266 ret = iommu_init_device(dev);
2267 if (ret == -ENOTSUPP) {
2268 iommu_ignore_device(dev);
2269 goto out;
2270 }
2271 init_iommu_group(dev);
2272
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002273 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002274
2275out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002276 iommu_completion_wait(iommu);
2277
Joerg Roedele275a2a2008-12-10 18:27:25 +01002278 return 0;
2279}
2280
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002281static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002282{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002283 struct amd_iommu *iommu;
2284 u16 devid;
2285
2286 if (!check_device(dev))
2287 return;
2288
2289 devid = get_device_id(dev);
2290 iommu = amd_iommu_rlookup_table[devid];
2291
2292 iommu_uninit_device(dev);
2293 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002294}
2295
Joerg Roedel431b2a22008-07-11 17:14:22 +02002296/*****************************************************************************
2297 *
2298 * The next functions belong to the dma_ops mapping/unmapping code.
2299 *
2300 *****************************************************************************/
2301
2302/*
2303 * In the dma_ops path we only have the struct device. This function
2304 * finds the corresponding IOMMU, the protection domain and the
2305 * requestor id for a given device.
2306 * If the device is not yet associated with a domain this is also done
2307 * in this function.
2308 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002309static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002310{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002311 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002312 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002313
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002314 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002315 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002316
Joerg Roedel063071d2015-05-28 18:41:38 +02002317 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002318 if (!io_domain)
2319 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002320
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002321 domain = to_pdomain(io_domain);
2322 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002323 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002324
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002325 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002326}
2327
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002328static void update_device_table(struct protection_domain *domain)
2329{
Joerg Roedel492667d2009-11-27 13:25:47 +01002330 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002331
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002332 list_for_each_entry(dev_data, &domain->dev_list, list)
2333 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002334}
2335
2336static void update_domain(struct protection_domain *domain)
2337{
2338 if (!domain->updated)
2339 return;
2340
2341 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002342
2343 domain_flush_devices(domain);
2344 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002345
2346 domain->updated = false;
2347}
2348
Joerg Roedel431b2a22008-07-11 17:14:22 +02002349/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002350 * This function fetches the PTE for a given address in the aperture
2351 */
2352static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2353 unsigned long address)
2354{
Joerg Roedel384de722009-05-15 12:30:05 +02002355 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002356 u64 *pte, *pte_page;
2357
Joerg Roedel384de722009-05-15 12:30:05 +02002358 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2359 if (!aperture)
2360 return NULL;
2361
2362 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002363 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002364 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002365 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002366 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2367 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002368 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002369
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002370 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002371
2372 return pte;
2373}
2374
2375/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002376 * This is the generic map function. It maps one 4kb page at paddr to
2377 * the given address in the DMA address space for the domain.
2378 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002379static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002380 unsigned long address,
2381 phys_addr_t paddr,
2382 int direction)
2383{
2384 u64 *pte, __pte;
2385
2386 WARN_ON(address > dom->aperture_size);
2387
2388 paddr &= PAGE_MASK;
2389
Joerg Roedel8bda3092009-05-12 12:02:46 +02002390 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002391 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002392 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002393
2394 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2395
2396 if (direction == DMA_TO_DEVICE)
2397 __pte |= IOMMU_PTE_IR;
2398 else if (direction == DMA_FROM_DEVICE)
2399 __pte |= IOMMU_PTE_IW;
2400 else if (direction == DMA_BIDIRECTIONAL)
2401 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2402
2403 WARN_ON(*pte);
2404
2405 *pte = __pte;
2406
2407 return (dma_addr_t)address;
2408}
2409
Joerg Roedel431b2a22008-07-11 17:14:22 +02002410/*
2411 * The generic unmapping function for on page in the DMA address space.
2412 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002413static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002414 unsigned long address)
2415{
Joerg Roedel384de722009-05-15 12:30:05 +02002416 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002417 u64 *pte;
2418
2419 if (address >= dom->aperture_size)
2420 return;
2421
Joerg Roedel384de722009-05-15 12:30:05 +02002422 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2423 if (!aperture)
2424 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002425
Joerg Roedel384de722009-05-15 12:30:05 +02002426 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2427 if (!pte)
2428 return;
2429
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002430 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002431
2432 WARN_ON(!*pte);
2433
2434 *pte = 0ULL;
2435}
2436
Joerg Roedel431b2a22008-07-11 17:14:22 +02002437/*
2438 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002439 * contiguous memory region into DMA address space. It is used by all
2440 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002441 * Must be called with the domain lock held.
2442 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002443static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002444 struct dma_ops_domain *dma_dom,
2445 phys_addr_t paddr,
2446 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002447 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002448 bool align,
2449 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002450{
2451 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002452 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002453 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002454 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002455 int i;
2456
Joerg Roedele3c449f2008-10-15 22:02:11 -07002457 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002458 paddr &= PAGE_MASK;
2459
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002460 INC_STATS_COUNTER(total_map_requests);
2461
Joerg Roedelc1858972008-12-12 15:42:39 +01002462 if (pages > 1)
2463 INC_STATS_COUNTER(cross_page);
2464
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002465 if (align)
2466 align_mask = (1UL << get_order(size)) - 1;
2467
Joerg Roedel11b83882009-05-19 10:23:15 +02002468retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002469 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2470 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002471 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002472 /*
2473 * setting next_address here will let the address
2474 * allocator only scan the new allocated range in the
2475 * first run. This is a small optimization.
2476 */
2477 dma_dom->next_address = dma_dom->aperture_size;
2478
Joerg Roedel576175c2009-11-23 19:08:46 +01002479 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002480 goto out;
2481
2482 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002483 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002484 * allocation again
2485 */
2486 goto retry;
2487 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002488
2489 start = address;
2490 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002491 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002492 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002493 goto out_unmap;
2494
Joerg Roedelcb76c322008-06-26 21:28:00 +02002495 paddr += PAGE_SIZE;
2496 start += PAGE_SIZE;
2497 }
2498 address += offset;
2499
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002500 ADD_STATS_COUNTER(alloced_io_mem, size);
2501
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002502 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002503 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002504 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002505 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002506 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002507
Joerg Roedelcb76c322008-06-26 21:28:00 +02002508out:
2509 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002510
2511out_unmap:
2512
2513 for (--i; i >= 0; --i) {
2514 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002515 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002516 }
2517
2518 dma_ops_free_addresses(dma_dom, address, pages);
2519
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002520 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002521}
2522
Joerg Roedel431b2a22008-07-11 17:14:22 +02002523/*
2524 * Does the reverse of the __map_single function. Must be called with
2525 * the domain lock held too
2526 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002527static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002528 dma_addr_t dma_addr,
2529 size_t size,
2530 int dir)
2531{
Joerg Roedel04e04632010-09-23 16:12:48 +02002532 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002533 dma_addr_t i, start;
2534 unsigned int pages;
2535
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002536 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002537 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002538 return;
2539
Joerg Roedel04e04632010-09-23 16:12:48 +02002540 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002541 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002542 dma_addr &= PAGE_MASK;
2543 start = dma_addr;
2544
2545 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002546 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002547 start += PAGE_SIZE;
2548 }
2549
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002550 SUB_STATS_COUNTER(alloced_io_mem, size);
2551
Joerg Roedelcb76c322008-06-26 21:28:00 +02002552 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002553
Joerg Roedel80be3082008-11-06 14:59:05 +01002554 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002555 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002556 dma_dom->need_flush = false;
2557 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002558}
2559
Joerg Roedel431b2a22008-07-11 17:14:22 +02002560/*
2561 * The exported map_single function for dma_ops.
2562 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002563static dma_addr_t map_page(struct device *dev, struct page *page,
2564 unsigned long offset, size_t size,
2565 enum dma_data_direction dir,
2566 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002567{
2568 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002569 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002570 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002571 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002572 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002573
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002574 INC_STATS_COUNTER(cnt_map_single);
2575
Joerg Roedel94f6d192009-11-24 16:40:02 +01002576 domain = get_domain(dev);
2577 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002578 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002579 else if (IS_ERR(domain))
2580 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002581
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002582 dma_mask = *dev->dma_mask;
2583
Joerg Roedel4da70b92008-06-26 21:28:01 +02002584 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002585
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002586 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002587 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002588 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002589 goto out;
2590
Joerg Roedel17b124b2011-04-06 18:01:35 +02002591 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002592
2593out:
2594 spin_unlock_irqrestore(&domain->lock, flags);
2595
2596 return addr;
2597}
2598
Joerg Roedel431b2a22008-07-11 17:14:22 +02002599/*
2600 * The exported unmap_single function for dma_ops.
2601 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002602static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2603 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002604{
2605 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002606 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002607
Joerg Roedel146a6912008-12-12 15:07:12 +01002608 INC_STATS_COUNTER(cnt_unmap_single);
2609
Joerg Roedel94f6d192009-11-24 16:40:02 +01002610 domain = get_domain(dev);
2611 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002612 return;
2613
Joerg Roedel4da70b92008-06-26 21:28:01 +02002614 spin_lock_irqsave(&domain->lock, flags);
2615
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002616 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002617
Joerg Roedel17b124b2011-04-06 18:01:35 +02002618 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002619
2620 spin_unlock_irqrestore(&domain->lock, flags);
2621}
2622
Joerg Roedel431b2a22008-07-11 17:14:22 +02002623/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002624 * The exported map_sg function for dma_ops (handles scatter-gather
2625 * lists).
2626 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002627static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002628 int nelems, enum dma_data_direction dir,
2629 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002630{
2631 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002632 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002633 int i;
2634 struct scatterlist *s;
2635 phys_addr_t paddr;
2636 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002637 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002638
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002639 INC_STATS_COUNTER(cnt_map_sg);
2640
Joerg Roedel94f6d192009-11-24 16:40:02 +01002641 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002642 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002643 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002644
Joerg Roedel832a90c2008-09-18 15:54:23 +02002645 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002646
Joerg Roedel65b050a2008-06-26 21:28:02 +02002647 spin_lock_irqsave(&domain->lock, flags);
2648
2649 for_each_sg(sglist, s, nelems, i) {
2650 paddr = sg_phys(s);
2651
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002652 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002653 paddr, s->length, dir, false,
2654 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002655
2656 if (s->dma_address) {
2657 s->dma_length = s->length;
2658 mapped_elems++;
2659 } else
2660 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002661 }
2662
Joerg Roedel17b124b2011-04-06 18:01:35 +02002663 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002664
2665out:
2666 spin_unlock_irqrestore(&domain->lock, flags);
2667
2668 return mapped_elems;
2669unmap:
2670 for_each_sg(sglist, s, mapped_elems, i) {
2671 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002672 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002673 s->dma_length, dir);
2674 s->dma_address = s->dma_length = 0;
2675 }
2676
2677 mapped_elems = 0;
2678
2679 goto out;
2680}
2681
Joerg Roedel431b2a22008-07-11 17:14:22 +02002682/*
2683 * The exported map_sg function for dma_ops (handles scatter-gather
2684 * lists).
2685 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002686static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002687 int nelems, enum dma_data_direction dir,
2688 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002689{
2690 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002691 struct protection_domain *domain;
2692 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002693 int i;
2694
Joerg Roedel55877a62008-12-12 15:12:14 +01002695 INC_STATS_COUNTER(cnt_unmap_sg);
2696
Joerg Roedel94f6d192009-11-24 16:40:02 +01002697 domain = get_domain(dev);
2698 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002699 return;
2700
Joerg Roedel65b050a2008-06-26 21:28:02 +02002701 spin_lock_irqsave(&domain->lock, flags);
2702
2703 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002704 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002705 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002706 s->dma_address = s->dma_length = 0;
2707 }
2708
Joerg Roedel17b124b2011-04-06 18:01:35 +02002709 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002710
2711 spin_unlock_irqrestore(&domain->lock, flags);
2712}
2713
Joerg Roedel431b2a22008-07-11 17:14:22 +02002714/*
2715 * The exported alloc_coherent function for dma_ops.
2716 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002717static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002718 dma_addr_t *dma_addr, gfp_t flag,
2719 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002720{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002721 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002722 struct protection_domain *domain;
2723 unsigned long flags;
2724 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002725
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002726 INC_STATS_COUNTER(cnt_alloc_coherent);
2727
Joerg Roedel94f6d192009-11-24 16:40:02 +01002728 domain = get_domain(dev);
2729 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002730 page = alloc_pages(flag, get_order(size));
2731 *dma_addr = page_to_phys(page);
2732 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002733 } else if (IS_ERR(domain))
2734 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002735
Joerg Roedel3b839a52015-04-01 14:58:47 +02002736 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002737 dma_mask = dev->coherent_dma_mask;
2738 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002739
Joerg Roedel3b839a52015-04-01 14:58:47 +02002740 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2741 if (!page) {
2742 if (!(flag & __GFP_WAIT))
2743 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002744
Joerg Roedel3b839a52015-04-01 14:58:47 +02002745 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2746 get_order(size));
2747 if (!page)
2748 return NULL;
2749 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002750
Joerg Roedel832a90c2008-09-18 15:54:23 +02002751 if (!dma_mask)
2752 dma_mask = *dev->dma_mask;
2753
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002754 spin_lock_irqsave(&domain->lock, flags);
2755
Joerg Roedel3b839a52015-04-01 14:58:47 +02002756 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002757 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002758
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002759 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002760 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002761 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002762 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002763
Joerg Roedel17b124b2011-04-06 18:01:35 +02002764 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002765
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002766 spin_unlock_irqrestore(&domain->lock, flags);
2767
Joerg Roedel3b839a52015-04-01 14:58:47 +02002768 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002769
2770out_free:
2771
Joerg Roedel3b839a52015-04-01 14:58:47 +02002772 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2773 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002774
2775 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002776}
2777
Joerg Roedel431b2a22008-07-11 17:14:22 +02002778/*
2779 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002780 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002781static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002782 void *virt_addr, dma_addr_t dma_addr,
2783 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002784{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002785 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002786 unsigned long flags;
2787 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002788
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002789 INC_STATS_COUNTER(cnt_free_coherent);
2790
Joerg Roedel3b839a52015-04-01 14:58:47 +02002791 page = virt_to_page(virt_addr);
2792 size = PAGE_ALIGN(size);
2793
Joerg Roedel94f6d192009-11-24 16:40:02 +01002794 domain = get_domain(dev);
2795 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002796 goto free_mem;
2797
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002798 spin_lock_irqsave(&domain->lock, flags);
2799
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002800 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002801
Joerg Roedel17b124b2011-04-06 18:01:35 +02002802 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002803
2804 spin_unlock_irqrestore(&domain->lock, flags);
2805
2806free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002807 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2808 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002809}
2810
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002811/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002812 * This function is called by the DMA layer to find out if we can handle a
2813 * particular device. It is part of the dma_ops.
2814 */
2815static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2816{
Joerg Roedel420aef82009-11-23 16:14:57 +01002817 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002818}
2819
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002820static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002821 .alloc = alloc_coherent,
2822 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002823 .map_page = map_page,
2824 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002825 .map_sg = map_sg,
2826 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002827 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002828};
2829
Joerg Roedel27c21272011-05-30 15:56:24 +02002830static unsigned device_dma_ops_init(void)
2831{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002832 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002833 struct pci_dev *pdev = NULL;
2834 unsigned unhandled = 0;
2835
2836 for_each_pci_dev(pdev) {
2837 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002838
2839 iommu_ignore_device(&pdev->dev);
2840
Joerg Roedel27c21272011-05-30 15:56:24 +02002841 unhandled += 1;
2842 continue;
2843 }
2844
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002845 dev_data = get_dev_data(&pdev->dev);
2846
2847 if (!dev_data->passthrough)
2848 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2849 else
2850 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002851 }
2852
2853 return unhandled;
2854}
2855
Joerg Roedel431b2a22008-07-11 17:14:22 +02002856/*
2857 * The function which clues the AMD IOMMU driver into dma_ops.
2858 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002859
2860void __init amd_iommu_init_api(void)
2861{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002862 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002863}
2864
Joerg Roedel6631ee92008-06-26 21:28:05 +02002865int __init amd_iommu_init_dma_ops(void)
2866{
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002867 int unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002868
Joerg Roedel6631ee92008-06-26 21:28:05 +02002869 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002870 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002871
Joerg Roedel431b2a22008-07-11 17:14:22 +02002872 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002873 unhandled = device_dma_ops_init();
2874 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2875 /* There are unhandled devices - initialize swiotlb for them */
2876 swiotlb = 1;
2877 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002878
Joerg Roedel7f265082008-12-12 13:50:21 +01002879 amd_iommu_stats_init();
2880
Joerg Roedel62410ee2012-06-12 16:42:43 +02002881 if (amd_iommu_unmap_flush)
2882 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2883 else
2884 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2885
Joerg Roedel6631ee92008-06-26 21:28:05 +02002886 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002887}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002888
2889/*****************************************************************************
2890 *
2891 * The following functions belong to the exported interface of AMD IOMMU
2892 *
2893 * This interface allows access to lower level functions of the IOMMU
2894 * like protection domain handling and assignement of devices to domains
2895 * which is not possible with the dma_ops interface.
2896 *
2897 *****************************************************************************/
2898
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002899static void cleanup_domain(struct protection_domain *domain)
2900{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002901 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002902 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002903
2904 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2905
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002906 while (!list_empty(&domain->dev_list)) {
2907 entry = list_first_entry(&domain->dev_list,
2908 struct iommu_dev_data, list);
2909 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002910 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002911
2912 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2913}
2914
Joerg Roedel26508152009-08-26 16:52:40 +02002915static void protection_domain_free(struct protection_domain *domain)
2916{
2917 if (!domain)
2918 return;
2919
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002920 del_domain_from_list(domain);
2921
Joerg Roedel26508152009-08-26 16:52:40 +02002922 if (domain->id)
2923 domain_id_free(domain->id);
2924
2925 kfree(domain);
2926}
2927
2928static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002929{
2930 struct protection_domain *domain;
2931
2932 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2933 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002934 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002935
2936 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002937 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002938 domain->id = domain_id_alloc();
2939 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002940 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002941 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02002942
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002943 add_domain_to_list(domain);
2944
Joerg Roedel26508152009-08-26 16:52:40 +02002945 return domain;
2946
2947out_err:
2948 kfree(domain);
2949
2950 return NULL;
2951}
2952
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002953static int alloc_passthrough_domain(void)
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002954{
2955 if (pt_domain != NULL)
2956 return 0;
2957
2958 /* allocate passthrough domain */
2959 pt_domain = protection_domain_alloc();
2960 if (!pt_domain)
2961 return -ENOMEM;
2962
2963 pt_domain->mode = PAGE_MODE_NONE;
2964
2965 return 0;
2966}
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002967
2968static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2969{
2970 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002971 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002972
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002973 switch (type) {
2974 case IOMMU_DOMAIN_UNMANAGED:
2975 pdomain = protection_domain_alloc();
2976 if (!pdomain)
2977 return NULL;
2978
2979 pdomain->mode = PAGE_MODE_3_LEVEL;
2980 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2981 if (!pdomain->pt_root) {
2982 protection_domain_free(pdomain);
2983 return NULL;
2984 }
2985
2986 pdomain->domain.geometry.aperture_start = 0;
2987 pdomain->domain.geometry.aperture_end = ~0ULL;
2988 pdomain->domain.geometry.force_aperture = true;
2989
2990 break;
2991 case IOMMU_DOMAIN_DMA:
2992 dma_domain = dma_ops_domain_alloc();
2993 if (!dma_domain) {
2994 pr_err("AMD-Vi: Failed to allocate\n");
2995 return NULL;
2996 }
2997 pdomain = &dma_domain->domain;
2998 break;
2999 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003000 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003001 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003002
3003 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003004}
3005
3006static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003007{
3008 struct protection_domain *domain;
3009
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003010 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01003011 return;
3012
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003013 domain = to_pdomain(dom);
3014
Joerg Roedel98383fc2008-12-02 18:34:12 +01003015 if (domain->dev_cnt > 0)
3016 cleanup_domain(domain);
3017
3018 BUG_ON(domain->dev_cnt != 0);
3019
Joerg Roedel132bd682011-11-17 14:18:46 +01003020 if (domain->mode != PAGE_MODE_NONE)
3021 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003022
Joerg Roedel52815b72011-11-17 17:24:28 +01003023 if (domain->flags & PD_IOMMUV2_MASK)
3024 free_gcr3_table(domain);
3025
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003026 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003027}
3028
Joerg Roedel684f2882008-12-08 12:07:44 +01003029static void amd_iommu_detach_device(struct iommu_domain *dom,
3030 struct device *dev)
3031{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003032 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003033 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003034 u16 devid;
3035
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003036 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003037 return;
3038
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003039 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003040
Joerg Roedel657cbb62009-11-23 15:26:46 +01003041 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003042 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003043
3044 iommu = amd_iommu_rlookup_table[devid];
3045 if (!iommu)
3046 return;
3047
Joerg Roedel684f2882008-12-08 12:07:44 +01003048 iommu_completion_wait(iommu);
3049}
3050
Joerg Roedel01106062008-12-02 19:34:11 +01003051static int amd_iommu_attach_device(struct iommu_domain *dom,
3052 struct device *dev)
3053{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003054 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003055 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003056 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003057 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003058
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003059 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003060 return -EINVAL;
3061
Joerg Roedel657cbb62009-11-23 15:26:46 +01003062 dev_data = dev->archdata.iommu;
3063
Joerg Roedelf62dda62011-06-09 12:55:35 +02003064 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003065 if (!iommu)
3066 return -EINVAL;
3067
Joerg Roedel657cbb62009-11-23 15:26:46 +01003068 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003069 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003070
Joerg Roedel15898bb2009-11-24 15:39:42 +01003071 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003072
3073 iommu_completion_wait(iommu);
3074
Joerg Roedel15898bb2009-11-24 15:39:42 +01003075 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003076}
3077
Joerg Roedel468e2362010-01-21 16:37:36 +01003078static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003079 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003080{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003081 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003082 int prot = 0;
3083 int ret;
3084
Joerg Roedel132bd682011-11-17 14:18:46 +01003085 if (domain->mode == PAGE_MODE_NONE)
3086 return -EINVAL;
3087
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003088 if (iommu_prot & IOMMU_READ)
3089 prot |= IOMMU_PROT_IR;
3090 if (iommu_prot & IOMMU_WRITE)
3091 prot |= IOMMU_PROT_IW;
3092
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003093 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003094 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003095 mutex_unlock(&domain->api_lock);
3096
Joerg Roedel795e74f72010-05-11 17:40:57 +02003097 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003098}
3099
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003100static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3101 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003102{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003103 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003104 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003105
Joerg Roedel132bd682011-11-17 14:18:46 +01003106 if (domain->mode == PAGE_MODE_NONE)
3107 return -EINVAL;
3108
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003109 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003110 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003111 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003112
Joerg Roedel17b124b2011-04-06 18:01:35 +02003113 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003114
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003115 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003116}
3117
Joerg Roedel645c4c82008-12-02 20:05:50 +01003118static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303119 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003120{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003121 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003122 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003123 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003124
Joerg Roedel132bd682011-11-17 14:18:46 +01003125 if (domain->mode == PAGE_MODE_NONE)
3126 return iova;
3127
Joerg Roedel3039ca12015-04-01 14:58:48 +02003128 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003129
Joerg Roedela6d41a42009-09-02 17:08:55 +02003130 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003131 return 0;
3132
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003133 offset_mask = pte_pgsize - 1;
3134 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003135
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003136 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003137}
3138
Joerg Roedelab636482014-09-05 10:48:21 +02003139static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003140{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003141 switch (cap) {
3142 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003143 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003144 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003145 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003146 case IOMMU_CAP_NOEXEC:
3147 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003148 }
3149
Joerg Roedelab636482014-09-05 10:48:21 +02003150 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003151}
3152
Joerg Roedel35cf2482015-05-28 18:41:37 +02003153static void amd_iommu_get_dm_regions(struct device *dev,
3154 struct list_head *head)
3155{
3156 struct unity_map_entry *entry;
3157 u16 devid;
3158
3159 devid = get_device_id(dev);
3160
3161 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3162 struct iommu_dm_region *region;
3163
3164 if (devid < entry->devid_start || devid > entry->devid_end)
3165 continue;
3166
3167 region = kzalloc(sizeof(*region), GFP_KERNEL);
3168 if (!region) {
3169 pr_err("Out of memory allocating dm-regions for %s\n",
3170 dev_name(dev));
3171 return;
3172 }
3173
3174 region->start = entry->address_start;
3175 region->length = entry->address_end - entry->address_start;
3176 if (entry->prot & IOMMU_PROT_IR)
3177 region->prot |= IOMMU_READ;
3178 if (entry->prot & IOMMU_PROT_IW)
3179 region->prot |= IOMMU_WRITE;
3180
3181 list_add_tail(&region->list, head);
3182 }
3183}
3184
3185static void amd_iommu_put_dm_regions(struct device *dev,
3186 struct list_head *head)
3187{
3188 struct iommu_dm_region *entry, *next;
3189
3190 list_for_each_entry_safe(entry, next, head, list)
3191 kfree(entry);
3192}
3193
Thierry Redingb22f6432014-06-27 09:03:12 +02003194static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003195 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003196 .domain_alloc = amd_iommu_domain_alloc,
3197 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003198 .attach_dev = amd_iommu_attach_device,
3199 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003200 .map = amd_iommu_map,
3201 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003202 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003203 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003204 .add_device = amd_iommu_add_device,
3205 .remove_device = amd_iommu_remove_device,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003206 .get_dm_regions = amd_iommu_get_dm_regions,
3207 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003208 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003209};
3210
Joerg Roedel0feae532009-08-26 15:26:30 +02003211/*****************************************************************************
3212 *
3213 * The next functions do a basic initialization of IOMMU for pass through
3214 * mode
3215 *
3216 * In passthrough mode the IOMMU is initialized and enabled but not used for
3217 * DMA-API translation.
3218 *
3219 *****************************************************************************/
3220
3221int __init amd_iommu_init_passthrough(void)
3222{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003223 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003224 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003225 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003226
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003227 ret = alloc_passthrough_domain();
3228 if (ret)
3229 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003230
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003231 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003232 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003233 continue;
3234
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003235 dev_data = get_dev_data(&dev->dev);
3236 dev_data->passthrough = true;
3237
Joerg Roedel15898bb2009-11-24 15:39:42 +01003238 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003239 }
3240
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003241 amd_iommu_stats_init();
3242
Joerg Roedel0feae532009-08-26 15:26:30 +02003243 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3244
3245 return 0;
3246}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003247
3248/* IOMMUv2 specific functions */
3249int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3250{
3251 return atomic_notifier_chain_register(&ppr_notifier, nb);
3252}
3253EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3254
3255int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3256{
3257 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3258}
3259EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003260
3261void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3262{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003263 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003264 unsigned long flags;
3265
3266 spin_lock_irqsave(&domain->lock, flags);
3267
3268 /* Update data structure */
3269 domain->mode = PAGE_MODE_NONE;
3270 domain->updated = true;
3271
3272 /* Make changes visible to IOMMUs */
3273 update_domain(domain);
3274
3275 /* Page-table is not visible to IOMMU anymore, so free it */
3276 free_pagetable(domain);
3277
3278 spin_unlock_irqrestore(&domain->lock, flags);
3279}
3280EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003281
3282int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3283{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003284 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003285 unsigned long flags;
3286 int levels, ret;
3287
3288 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3289 return -EINVAL;
3290
3291 /* Number of GCR3 table levels required */
3292 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3293 levels += 1;
3294
3295 if (levels > amd_iommu_max_glx_val)
3296 return -EINVAL;
3297
3298 spin_lock_irqsave(&domain->lock, flags);
3299
3300 /*
3301 * Save us all sanity checks whether devices already in the
3302 * domain support IOMMUv2. Just force that the domain has no
3303 * devices attached when it is switched into IOMMUv2 mode.
3304 */
3305 ret = -EBUSY;
3306 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3307 goto out;
3308
3309 ret = -ENOMEM;
3310 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3311 if (domain->gcr3_tbl == NULL)
3312 goto out;
3313
3314 domain->glx = levels;
3315 domain->flags |= PD_IOMMUV2_MASK;
3316 domain->updated = true;
3317
3318 update_domain(domain);
3319
3320 ret = 0;
3321
3322out:
3323 spin_unlock_irqrestore(&domain->lock, flags);
3324
3325 return ret;
3326}
3327EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003328
3329static int __flush_pasid(struct protection_domain *domain, int pasid,
3330 u64 address, bool size)
3331{
3332 struct iommu_dev_data *dev_data;
3333 struct iommu_cmd cmd;
3334 int i, ret;
3335
3336 if (!(domain->flags & PD_IOMMUV2_MASK))
3337 return -EINVAL;
3338
3339 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3340
3341 /*
3342 * IOMMU TLB needs to be flushed before Device TLB to
3343 * prevent device TLB refill from IOMMU TLB
3344 */
3345 for (i = 0; i < amd_iommus_present; ++i) {
3346 if (domain->dev_iommu[i] == 0)
3347 continue;
3348
3349 ret = iommu_queue_command(amd_iommus[i], &cmd);
3350 if (ret != 0)
3351 goto out;
3352 }
3353
3354 /* Wait until IOMMU TLB flushes are complete */
3355 domain_flush_complete(domain);
3356
3357 /* Now flush device TLBs */
3358 list_for_each_entry(dev_data, &domain->dev_list, list) {
3359 struct amd_iommu *iommu;
3360 int qdep;
3361
3362 BUG_ON(!dev_data->ats.enabled);
3363
3364 qdep = dev_data->ats.qdep;
3365 iommu = amd_iommu_rlookup_table[dev_data->devid];
3366
3367 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3368 qdep, address, size);
3369
3370 ret = iommu_queue_command(iommu, &cmd);
3371 if (ret != 0)
3372 goto out;
3373 }
3374
3375 /* Wait until all device TLBs are flushed */
3376 domain_flush_complete(domain);
3377
3378 ret = 0;
3379
3380out:
3381
3382 return ret;
3383}
3384
3385static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3386 u64 address)
3387{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003388 INC_STATS_COUNTER(invalidate_iotlb);
3389
Joerg Roedel22e266c2011-11-21 15:59:08 +01003390 return __flush_pasid(domain, pasid, address, false);
3391}
3392
3393int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3394 u64 address)
3395{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003396 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003397 unsigned long flags;
3398 int ret;
3399
3400 spin_lock_irqsave(&domain->lock, flags);
3401 ret = __amd_iommu_flush_page(domain, pasid, address);
3402 spin_unlock_irqrestore(&domain->lock, flags);
3403
3404 return ret;
3405}
3406EXPORT_SYMBOL(amd_iommu_flush_page);
3407
3408static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3409{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003410 INC_STATS_COUNTER(invalidate_iotlb_all);
3411
Joerg Roedel22e266c2011-11-21 15:59:08 +01003412 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3413 true);
3414}
3415
3416int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3417{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003418 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003419 unsigned long flags;
3420 int ret;
3421
3422 spin_lock_irqsave(&domain->lock, flags);
3423 ret = __amd_iommu_flush_tlb(domain, pasid);
3424 spin_unlock_irqrestore(&domain->lock, flags);
3425
3426 return ret;
3427}
3428EXPORT_SYMBOL(amd_iommu_flush_tlb);
3429
Joerg Roedelb16137b2011-11-21 16:50:23 +01003430static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3431{
3432 int index;
3433 u64 *pte;
3434
3435 while (true) {
3436
3437 index = (pasid >> (9 * level)) & 0x1ff;
3438 pte = &root[index];
3439
3440 if (level == 0)
3441 break;
3442
3443 if (!(*pte & GCR3_VALID)) {
3444 if (!alloc)
3445 return NULL;
3446
3447 root = (void *)get_zeroed_page(GFP_ATOMIC);
3448 if (root == NULL)
3449 return NULL;
3450
3451 *pte = __pa(root) | GCR3_VALID;
3452 }
3453
3454 root = __va(*pte & PAGE_MASK);
3455
3456 level -= 1;
3457 }
3458
3459 return pte;
3460}
3461
3462static int __set_gcr3(struct protection_domain *domain, int pasid,
3463 unsigned long cr3)
3464{
3465 u64 *pte;
3466
3467 if (domain->mode != PAGE_MODE_NONE)
3468 return -EINVAL;
3469
3470 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3471 if (pte == NULL)
3472 return -ENOMEM;
3473
3474 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3475
3476 return __amd_iommu_flush_tlb(domain, pasid);
3477}
3478
3479static int __clear_gcr3(struct protection_domain *domain, int pasid)
3480{
3481 u64 *pte;
3482
3483 if (domain->mode != PAGE_MODE_NONE)
3484 return -EINVAL;
3485
3486 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3487 if (pte == NULL)
3488 return 0;
3489
3490 *pte = 0;
3491
3492 return __amd_iommu_flush_tlb(domain, pasid);
3493}
3494
3495int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3496 unsigned long cr3)
3497{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003498 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003499 unsigned long flags;
3500 int ret;
3501
3502 spin_lock_irqsave(&domain->lock, flags);
3503 ret = __set_gcr3(domain, pasid, cr3);
3504 spin_unlock_irqrestore(&domain->lock, flags);
3505
3506 return ret;
3507}
3508EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3509
3510int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3511{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003512 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003513 unsigned long flags;
3514 int ret;
3515
3516 spin_lock_irqsave(&domain->lock, flags);
3517 ret = __clear_gcr3(domain, pasid);
3518 spin_unlock_irqrestore(&domain->lock, flags);
3519
3520 return ret;
3521}
3522EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003523
3524int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3525 int status, int tag)
3526{
3527 struct iommu_dev_data *dev_data;
3528 struct amd_iommu *iommu;
3529 struct iommu_cmd cmd;
3530
Joerg Roedel399be2f2011-12-01 16:53:47 +01003531 INC_STATS_COUNTER(complete_ppr);
3532
Joerg Roedelc99afa22011-11-21 18:19:25 +01003533 dev_data = get_dev_data(&pdev->dev);
3534 iommu = amd_iommu_rlookup_table[dev_data->devid];
3535
3536 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3537 tag, dev_data->pri_tlp);
3538
3539 return iommu_queue_command(iommu, &cmd);
3540}
3541EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003542
3543struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3544{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003545 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003546
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003547 pdomain = get_domain(&pdev->dev);
3548 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003549 return NULL;
3550
3551 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003552 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003553 return NULL;
3554
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003555 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003556}
3557EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003558
3559void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3560{
3561 struct iommu_dev_data *dev_data;
3562
3563 if (!amd_iommu_v2_supported())
3564 return;
3565
3566 dev_data = get_dev_data(&pdev->dev);
3567 dev_data->errata |= (1 << erratum);
3568}
3569EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003570
3571int amd_iommu_device_info(struct pci_dev *pdev,
3572 struct amd_iommu_device_info *info)
3573{
3574 int max_pasids;
3575 int pos;
3576
3577 if (pdev == NULL || info == NULL)
3578 return -EINVAL;
3579
3580 if (!amd_iommu_v2_supported())
3581 return -EINVAL;
3582
3583 memset(info, 0, sizeof(*info));
3584
3585 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3586 if (pos)
3587 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3588
3589 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3590 if (pos)
3591 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3592
3593 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3594 if (pos) {
3595 int features;
3596
3597 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3598 max_pasids = min(max_pasids, (1 << 20));
3599
3600 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3601 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3602
3603 features = pci_pasid_features(pdev);
3604 if (features & PCI_PASID_CAP_EXEC)
3605 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3606 if (features & PCI_PASID_CAP_PRIV)
3607 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3608 }
3609
3610 return 0;
3611}
3612EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003613
3614#ifdef CONFIG_IRQ_REMAP
3615
3616/*****************************************************************************
3617 *
3618 * Interrupt Remapping Implementation
3619 *
3620 *****************************************************************************/
3621
3622union irte {
3623 u32 val;
3624 struct {
3625 u32 valid : 1,
3626 no_fault : 1,
3627 int_type : 3,
3628 rq_eoi : 1,
3629 dm : 1,
3630 rsvd_1 : 1,
3631 destination : 8,
3632 vector : 8,
3633 rsvd_2 : 8;
3634 } fields;
3635};
3636
3637#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3638#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3639#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3640#define DTE_IRQ_REMAP_ENABLE 1ULL
3641
3642static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3643{
3644 u64 dte;
3645
3646 dte = amd_iommu_dev_table[devid].data[2];
3647 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3648 dte |= virt_to_phys(table->table);
3649 dte |= DTE_IRQ_REMAP_INTCTL;
3650 dte |= DTE_IRQ_TABLE_LEN;
3651 dte |= DTE_IRQ_REMAP_ENABLE;
3652
3653 amd_iommu_dev_table[devid].data[2] = dte;
3654}
3655
3656#define IRTE_ALLOCATED (~1U)
3657
3658static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3659{
3660 struct irq_remap_table *table = NULL;
3661 struct amd_iommu *iommu;
3662 unsigned long flags;
3663 u16 alias;
3664
3665 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3666
3667 iommu = amd_iommu_rlookup_table[devid];
3668 if (!iommu)
3669 goto out_unlock;
3670
3671 table = irq_lookup_table[devid];
3672 if (table)
3673 goto out;
3674
3675 alias = amd_iommu_alias_table[devid];
3676 table = irq_lookup_table[alias];
3677 if (table) {
3678 irq_lookup_table[devid] = table;
3679 set_dte_irq_entry(devid, table);
3680 iommu_flush_dte(iommu, devid);
3681 goto out;
3682 }
3683
3684 /* Nothing there yet, allocate new irq remapping table */
3685 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3686 if (!table)
3687 goto out;
3688
Joerg Roedel197887f2013-04-09 21:14:08 +02003689 /* Initialize table spin-lock */
3690 spin_lock_init(&table->lock);
3691
Joerg Roedel2b324502012-06-21 16:29:10 +02003692 if (ioapic)
3693 /* Keep the first 32 indexes free for IOAPIC interrupts */
3694 table->min_index = 32;
3695
3696 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3697 if (!table->table) {
3698 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003699 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003700 goto out;
3701 }
3702
3703 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3704
3705 if (ioapic) {
3706 int i;
3707
3708 for (i = 0; i < 32; ++i)
3709 table->table[i] = IRTE_ALLOCATED;
3710 }
3711
3712 irq_lookup_table[devid] = table;
3713 set_dte_irq_entry(devid, table);
3714 iommu_flush_dte(iommu, devid);
3715 if (devid != alias) {
3716 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003717 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003718 iommu_flush_dte(iommu, alias);
3719 }
3720
3721out:
3722 iommu_completion_wait(iommu);
3723
3724out_unlock:
3725 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3726
3727 return table;
3728}
3729
3730static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3731{
3732 struct irq_remap_table *table;
3733 unsigned long flags;
3734 int index, c;
3735
3736 table = get_irq_table(devid, false);
3737 if (!table)
3738 return -ENODEV;
3739
3740 spin_lock_irqsave(&table->lock, flags);
3741
3742 /* Scan table for free entries */
3743 for (c = 0, index = table->min_index;
3744 index < MAX_IRQS_PER_TABLE;
3745 ++index) {
3746 if (table->table[index] == 0)
3747 c += 1;
3748 else
3749 c = 0;
3750
3751 if (c == count) {
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003752 struct irq_2_irte *irte_info;
Joerg Roedel2b324502012-06-21 16:29:10 +02003753
3754 for (; c != 0; --c)
3755 table->table[index - c + 1] = IRTE_ALLOCATED;
3756
3757 index -= count - 1;
3758
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003759 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003760 irte_info = &cfg->irq_2_irte;
3761 irte_info->devid = devid;
3762 irte_info->index = index;
Joerg Roedel2b324502012-06-21 16:29:10 +02003763
3764 goto out;
3765 }
3766 }
3767
3768 index = -ENOSPC;
3769
3770out:
3771 spin_unlock_irqrestore(&table->lock, flags);
3772
3773 return index;
3774}
3775
3776static int get_irte(u16 devid, int index, union irte *irte)
3777{
3778 struct irq_remap_table *table;
3779 unsigned long flags;
3780
3781 table = get_irq_table(devid, false);
3782 if (!table)
3783 return -ENOMEM;
3784
3785 spin_lock_irqsave(&table->lock, flags);
3786 irte->val = table->table[index];
3787 spin_unlock_irqrestore(&table->lock, flags);
3788
3789 return 0;
3790}
3791
3792static int modify_irte(u16 devid, int index, union irte irte)
3793{
3794 struct irq_remap_table *table;
3795 struct amd_iommu *iommu;
3796 unsigned long flags;
3797
3798 iommu = amd_iommu_rlookup_table[devid];
3799 if (iommu == NULL)
3800 return -EINVAL;
3801
3802 table = get_irq_table(devid, false);
3803 if (!table)
3804 return -ENOMEM;
3805
3806 spin_lock_irqsave(&table->lock, flags);
3807 table->table[index] = irte.val;
3808 spin_unlock_irqrestore(&table->lock, flags);
3809
3810 iommu_flush_irt(iommu, devid);
3811 iommu_completion_wait(iommu);
3812
3813 return 0;
3814}
3815
3816static void free_irte(u16 devid, int index)
3817{
3818 struct irq_remap_table *table;
3819 struct amd_iommu *iommu;
3820 unsigned long flags;
3821
3822 iommu = amd_iommu_rlookup_table[devid];
3823 if (iommu == NULL)
3824 return;
3825
3826 table = get_irq_table(devid, false);
3827 if (!table)
3828 return;
3829
3830 spin_lock_irqsave(&table->lock, flags);
3831 table->table[index] = 0;
3832 spin_unlock_irqrestore(&table->lock, flags);
3833
3834 iommu_flush_irt(iommu, devid);
3835 iommu_completion_wait(iommu);
3836}
3837
Joerg Roedel5527de72012-06-26 11:17:32 +02003838static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
3839 unsigned int destination, int vector,
3840 struct io_apic_irq_attr *attr)
3841{
3842 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003843 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02003844 struct irq_cfg *cfg;
3845 union irte irte;
3846 int ioapic_id;
3847 int index;
3848 int devid;
3849 int ret;
3850
Jiang Liu719b5302014-10-27 16:12:10 +08003851 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02003852 if (!cfg)
3853 return -EINVAL;
3854
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003855 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02003856 ioapic_id = mpc_ioapic_id(attr->ioapic);
3857 devid = get_ioapic_devid(ioapic_id);
3858
3859 if (devid < 0)
3860 return devid;
3861
3862 table = get_irq_table(devid, true);
3863 if (table == NULL)
3864 return -ENOMEM;
3865
3866 index = attr->ioapic_pin;
3867
3868 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003869 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003870 irte_info->devid = devid;
3871 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02003872
3873 /* Setup IRTE for IOMMU */
3874 irte.val = 0;
3875 irte.fields.vector = vector;
3876 irte.fields.int_type = apic->irq_delivery_mode;
3877 irte.fields.destination = destination;
3878 irte.fields.dm = apic->irq_dest_mode;
3879 irte.fields.valid = 1;
3880
3881 ret = modify_irte(devid, index, irte);
3882 if (ret)
3883 return ret;
3884
3885 /* Setup IOAPIC entry */
3886 memset(entry, 0, sizeof(*entry));
3887
3888 entry->vector = index;
3889 entry->mask = 0;
3890 entry->trigger = attr->trigger;
3891 entry->polarity = attr->polarity;
3892
3893 /*
3894 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02003895 */
3896 if (attr->trigger)
3897 entry->mask = 1;
3898
3899 return 0;
3900}
3901
3902static int set_affinity(struct irq_data *data, const struct cpumask *mask,
3903 bool force)
3904{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003905 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02003906 unsigned int dest, irq;
3907 struct irq_cfg *cfg;
3908 union irte irte;
3909 int err;
3910
3911 if (!config_enabled(CONFIG_SMP))
3912 return -1;
3913
Jiang Liu719b5302014-10-27 16:12:10 +08003914 cfg = irqd_cfg(data);
Joerg Roedel5527de72012-06-26 11:17:32 +02003915 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003916 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02003917
3918 if (!cpumask_intersects(mask, cpu_online_mask))
3919 return -EINVAL;
3920
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003921 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02003922 return -EBUSY;
3923
3924 if (assign_irq_vector(irq, cfg, mask))
3925 return -EBUSY;
3926
3927 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
3928 if (err) {
3929 if (assign_irq_vector(irq, cfg, data->affinity))
3930 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
3931 return err;
3932 }
3933
3934 irte.fields.vector = cfg->vector;
3935 irte.fields.destination = dest;
3936
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003937 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02003938
3939 if (cfg->move_in_progress)
3940 send_cleanup_vector(cfg);
3941
3942 cpumask_copy(data->affinity, mask);
3943
3944 return 0;
3945}
3946
3947static int free_irq(int irq)
3948{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003949 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02003950 struct irq_cfg *cfg;
3951
Jiang Liu719b5302014-10-27 16:12:10 +08003952 cfg = irq_cfg(irq);
Joerg Roedel5527de72012-06-26 11:17:32 +02003953 if (!cfg)
3954 return -EINVAL;
3955
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003956 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02003957
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003958 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02003959
3960 return 0;
3961}
3962
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003963static void compose_msi_msg(struct pci_dev *pdev,
3964 unsigned int irq, unsigned int dest,
3965 struct msi_msg *msg, u8 hpet_id)
3966{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003967 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003968 struct irq_cfg *cfg;
3969 union irte irte;
3970
Jiang Liu719b5302014-10-27 16:12:10 +08003971 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003972 if (!cfg)
3973 return;
3974
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003975 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003976
3977 irte.val = 0;
3978 irte.fields.vector = cfg->vector;
3979 irte.fields.int_type = apic->irq_delivery_mode;
3980 irte.fields.destination = dest;
3981 irte.fields.dm = apic->irq_dest_mode;
3982 irte.fields.valid = 1;
3983
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003984 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003985
3986 msg->address_hi = MSI_ADDR_BASE_HI;
3987 msg->address_lo = MSI_ADDR_BASE_LO;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003988 msg->data = irte_info->index;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003989}
3990
3991static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
3992{
3993 struct irq_cfg *cfg;
3994 int index;
3995 u16 devid;
3996
3997 if (!pdev)
3998 return -EINVAL;
3999
Jiang Liu719b5302014-10-27 16:12:10 +08004000 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004001 if (!cfg)
4002 return -EINVAL;
4003
4004 devid = get_device_id(&pdev->dev);
4005 index = alloc_irq_index(cfg, devid, nvec);
4006
4007 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4008}
4009
4010static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4011 int index, int offset)
4012{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004013 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004014 struct irq_cfg *cfg;
4015 u16 devid;
4016
4017 if (!pdev)
4018 return -EINVAL;
4019
Jiang Liu719b5302014-10-27 16:12:10 +08004020 cfg = irq_cfg(irq);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004021 if (!cfg)
4022 return -EINVAL;
4023
4024 if (index >= MAX_IRQS_PER_TABLE)
4025 return 0;
4026
4027 devid = get_device_id(&pdev->dev);
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004028 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004029
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004030 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004031 irte_info->devid = devid;
4032 irte_info->index = index + offset;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004033
4034 return 0;
4035}
4036
Yijing Wang5fc24d82014-09-17 17:32:19 +08004037static int alloc_hpet_msi(unsigned int irq, unsigned int id)
Joerg Roedeld9761952012-06-26 16:00:08 +02004038{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004039 struct irq_2_irte *irte_info;
Joerg Roedeld9761952012-06-26 16:00:08 +02004040 struct irq_cfg *cfg;
4041 int index, devid;
4042
Jiang Liu719b5302014-10-27 16:12:10 +08004043 cfg = irq_cfg(irq);
Joerg Roedeld9761952012-06-26 16:00:08 +02004044 if (!cfg)
4045 return -EINVAL;
4046
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004047 irte_info = &cfg->irq_2_irte;
Joerg Roedeld9761952012-06-26 16:00:08 +02004048 devid = get_hpet_devid(id);
4049 if (devid < 0)
4050 return devid;
4051
4052 index = alloc_irq_index(cfg, devid, 1);
4053 if (index < 0)
4054 return index;
4055
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004056 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004057 irte_info->devid = devid;
4058 irte_info->index = index;
Joerg Roedeld9761952012-06-26 16:00:08 +02004059
4060 return 0;
4061}
4062
Joerg Roedel6b474b82012-06-26 16:46:04 +02004063struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02004064 .prepare = amd_iommu_prepare,
4065 .enable = amd_iommu_enable,
4066 .disable = amd_iommu_disable,
4067 .reenable = amd_iommu_reenable,
4068 .enable_faulting = amd_iommu_enable_faulting,
4069 .setup_ioapic_entry = setup_ioapic_entry,
4070 .set_affinity = set_affinity,
4071 .free_irq = free_irq,
4072 .compose_msi_msg = compose_msi_msg,
4073 .msi_alloc_irq = msi_alloc_irq,
4074 .msi_setup_irq = msi_setup_irq,
Yijing Wang5fc24d82014-09-17 17:32:19 +08004075 .alloc_hpet_msi = alloc_hpet_msi,
Joerg Roedel6b474b82012-06-26 16:46:04 +02004076};
Joerg Roedel2b324502012-06-21 16:29:10 +02004077#endif