blob: e8443e6ff1b14ca8a6bd1e6033d0d473586f166b [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020034#include <linux/irq.h>
35#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020036#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080037#include <linux/irqdomain.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020038#include <asm/irq_remapping.h>
39#include <asm/io_apic.h>
40#include <asm/apic.h>
41#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020042#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020043#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090044#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010045#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020046#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020047
48#include "amd_iommu_proto.h"
49#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020050#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020051
52#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
53
Joerg Roedel815b33f2011-04-06 17:26:49 +020054#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020055
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020056/*
57 * This bitmap is used to advertise the page sizes our hardware support
58 * to the IOMMU core, which will then use this information to split
59 * physically contiguous memory regions it is mapping into page sizes
60 * that we support.
61 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010064#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020065
Joerg Roedelb6c02712008-06-26 21:27:53 +020066static DEFINE_RWLOCK(amd_iommu_devtable_lock);
67
Joerg Roedel8fa5f802011-06-09 12:24:45 +020068/* List of all available dev_data structures */
69static LIST_HEAD(dev_data_list);
70static DEFINE_SPINLOCK(dev_data_list_lock);
71
Joerg Roedel6efed632012-06-14 15:52:58 +020072LIST_HEAD(ioapic_map);
73LIST_HEAD(hpet_map);
74
Joerg Roedel0feae532009-08-26 15:26:30 +020075/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
Thierry Redingb22f6432014-06-27 09:03:12 +020079static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010080
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010081static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010082int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010083
Joerg Roedelac1534a2012-06-21 14:52:40 +020084static struct dma_map_ops amd_iommu_dma_ops;
85
Joerg Roedel431b2a22008-07-11 17:14:22 +020086/*
Joerg Roedel50917e22014-08-05 16:38:38 +020087 * This struct contains device specific data for the IOMMU
88 */
89struct iommu_dev_data {
90 struct list_head list; /* For domain->dev_list */
91 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020092 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020093 struct iommu_dev_data *alias_data;/* The alias dev_data */
94 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020095 u16 devid; /* PCI Device ID */
96 bool iommu_v2; /* Device can make use of IOMMUv2 */
Joerg Roedel1e6a7b02015-07-28 16:58:48 +020097 bool passthrough; /* Device is identity mapped */
Joerg Roedel50917e22014-08-05 16:38:38 +020098 struct {
99 bool enabled;
100 int qdep;
101 } ats; /* ATS state */
102 bool pri_tlp; /* PASID TLB required for
103 PPR completions */
104 u32 errata; /* Bitmap for errata to apply */
105};
106
107/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200108 * general struct to manage commands send to an IOMMU
109 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200110struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200111 u32 data[4];
112};
113
Joerg Roedel05152a02012-06-15 16:53:51 +0200114struct kmem_cache *amd_iommu_irq_cache;
115
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200116static void update_domain(struct protection_domain *domain);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200117static int protection_domain_init(struct protection_domain *domain);
Chris Wrightc1eee672009-05-21 00:56:58 -0700118
Joerg Roedel15898bb2009-11-24 15:39:42 +0100119/****************************************************************************
120 *
121 * Helper functions
122 *
123 ****************************************************************************/
124
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100125static struct protection_domain *to_pdomain(struct iommu_domain *dom)
126{
127 return container_of(dom, struct protection_domain, domain);
128}
129
Joerg Roedelf62dda62011-06-09 12:55:35 +0200130static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200131{
132 struct iommu_dev_data *dev_data;
133 unsigned long flags;
134
135 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
136 if (!dev_data)
137 return NULL;
138
Joerg Roedelf251e182014-08-05 16:48:10 +0200139 INIT_LIST_HEAD(&dev_data->alias_list);
140
Joerg Roedelf62dda62011-06-09 12:55:35 +0200141 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200142
143 spin_lock_irqsave(&dev_data_list_lock, flags);
144 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
145 spin_unlock_irqrestore(&dev_data_list_lock, flags);
146
147 return dev_data;
148}
149
150static void free_dev_data(struct iommu_dev_data *dev_data)
151{
152 unsigned long flags;
153
154 spin_lock_irqsave(&dev_data_list_lock, flags);
155 list_del(&dev_data->dev_data_list);
156 spin_unlock_irqrestore(&dev_data_list_lock, flags);
157
158 kfree(dev_data);
159}
160
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200161static struct iommu_dev_data *search_dev_data(u16 devid)
162{
163 struct iommu_dev_data *dev_data;
164 unsigned long flags;
165
166 spin_lock_irqsave(&dev_data_list_lock, flags);
167 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
168 if (dev_data->devid == devid)
169 goto out_unlock;
170 }
171
172 dev_data = NULL;
173
174out_unlock:
175 spin_unlock_irqrestore(&dev_data_list_lock, flags);
176
177 return dev_data;
178}
179
180static struct iommu_dev_data *find_dev_data(u16 devid)
181{
182 struct iommu_dev_data *dev_data;
183
184 dev_data = search_dev_data(devid);
185
186 if (dev_data == NULL)
187 dev_data = alloc_dev_data(devid);
188
189 return dev_data;
190}
191
Joerg Roedel15898bb2009-11-24 15:39:42 +0100192static inline u16 get_device_id(struct device *dev)
193{
194 struct pci_dev *pdev = to_pci_dev(dev);
195
Shuah Khan6f2729b2013-02-27 17:07:30 -0700196 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100197}
198
Joerg Roedel657cbb62009-11-23 15:26:46 +0100199static struct iommu_dev_data *get_dev_data(struct device *dev)
200{
201 return dev->archdata.iommu;
202}
203
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100204static bool pci_iommuv2_capable(struct pci_dev *pdev)
205{
206 static const int caps[] = {
207 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100208 PCI_EXT_CAP_ID_PRI,
209 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100210 };
211 int i, pos;
212
213 for (i = 0; i < 3; ++i) {
214 pos = pci_find_ext_capability(pdev, caps[i]);
215 if (pos == 0)
216 return false;
217 }
218
219 return true;
220}
221
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100222static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
223{
224 struct iommu_dev_data *dev_data;
225
226 dev_data = get_dev_data(&pdev->dev);
227
228 return dev_data->errata & (1 << erratum) ? true : false;
229}
230
Joerg Roedel71c70982009-11-24 16:43:06 +0100231/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200232 * This function actually applies the mapping to the page table of the
233 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100234 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200235static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
236 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100237{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200238 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100239
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200240 for (addr = e->address_start; addr < e->address_end;
241 addr += PAGE_SIZE) {
242 if (addr < dma_dom->aperture_size)
243 __set_bit(addr >> PAGE_SHIFT,
244 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100245 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200246}
Joerg Roedel71c70982009-11-24 16:43:06 +0100247
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200248/*
249 * Inits the unity mappings required for a specific device
250 */
251static void init_unity_mappings_for_device(struct device *dev,
252 struct dma_ops_domain *dma_dom)
253{
254 struct unity_map_entry *e;
255 u16 devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100256
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200257 devid = get_device_id(dev);
258
259 list_for_each_entry(e, &amd_iommu_unity_map, list) {
260 if (!(devid >= e->devid_start && devid <= e->devid_end))
261 continue;
262 alloc_unity_mapping(dma_dom, e);
263 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100264}
265
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100266/*
267 * This function checks if the driver got a valid device from the caller to
268 * avoid dereferencing invalid pointers.
269 */
270static bool check_device(struct device *dev)
271{
272 u16 devid;
273
274 if (!dev || !dev->dma_mask)
275 return false;
276
Yijing Wangb82a2272013-12-05 19:42:41 +0800277 /* No PCI device */
278 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100279 return false;
280
281 devid = get_device_id(dev);
282
283 /* Out of our scope? */
284 if (devid > amd_iommu_last_bdf)
285 return false;
286
287 if (amd_iommu_rlookup_table[devid] == NULL)
288 return false;
289
290 return true;
291}
292
Alex Williamson25b11ce2014-09-19 10:03:13 -0600293static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600294{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200295 struct dma_ops_domain *dma_domain;
296 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600297 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600298
Alex Williamson65d53522014-07-03 09:51:30 -0600299 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200300 if (IS_ERR(group))
301 return;
302
303 domain = iommu_group_default_domain(group);
304 if (!domain)
305 goto out;
306
307 dma_domain = to_pdomain(domain)->priv;
308
309 init_unity_mappings_for_device(dev, dma_domain);
310out:
311 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600312}
313
Alex Williamsonc1931092014-07-03 09:51:24 -0600314static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
315{
316 *(u16 *)data = alias;
317 return 0;
318}
319
320static u16 get_alias(struct device *dev)
321{
322 struct pci_dev *pdev = to_pci_dev(dev);
323 u16 devid, ivrs_alias, pci_alias;
324
325 devid = get_device_id(dev);
326 ivrs_alias = amd_iommu_alias_table[devid];
327 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
328
329 if (ivrs_alias == pci_alias)
330 return ivrs_alias;
331
332 /*
333 * DMA alias showdown
334 *
335 * The IVRS is fairly reliable in telling us about aliases, but it
336 * can't know about every screwy device. If we don't have an IVRS
337 * reported alias, use the PCI reported alias. In that case we may
338 * still need to initialize the rlookup and dev_table entries if the
339 * alias is to a non-existent device.
340 */
341 if (ivrs_alias == devid) {
342 if (!amd_iommu_rlookup_table[pci_alias]) {
343 amd_iommu_rlookup_table[pci_alias] =
344 amd_iommu_rlookup_table[devid];
345 memcpy(amd_iommu_dev_table[pci_alias].data,
346 amd_iommu_dev_table[devid].data,
347 sizeof(amd_iommu_dev_table[pci_alias].data));
348 }
349
350 return pci_alias;
351 }
352
353 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
354 "for device %s[%04x:%04x], kernel reported alias "
355 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
356 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
357 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
358 PCI_FUNC(pci_alias));
359
360 /*
361 * If we don't have a PCI DMA alias and the IVRS alias is on the same
362 * bus, then the IVRS table may know about a quirk that we don't.
363 */
364 if (pci_alias == devid &&
365 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
366 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
367 pdev->dma_alias_devfn = ivrs_alias & 0xff;
368 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
369 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
370 dev_name(dev));
371 }
372
373 return ivrs_alias;
374}
375
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600376static int iommu_init_device(struct device *dev)
377{
378 struct pci_dev *pdev = to_pci_dev(dev);
379 struct iommu_dev_data *dev_data;
380 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600381
382 if (dev->archdata.iommu)
383 return 0;
384
385 dev_data = find_dev_data(get_device_id(dev));
386 if (!dev_data)
387 return -ENOMEM;
388
Alex Williamsonc1931092014-07-03 09:51:24 -0600389 alias = get_alias(dev);
390
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600391 if (alias != dev_data->devid) {
392 struct iommu_dev_data *alias_data;
393
394 alias_data = find_dev_data(alias);
395 if (alias_data == NULL) {
396 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
397 dev_name(dev));
398 free_dev_data(dev_data);
399 return -ENOTSUPP;
400 }
401 dev_data->alias_data = alias_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600402
Joerg Roedelf251e182014-08-05 16:48:10 +0200403 /* Add device to the alias_list */
404 list_add(&dev_data->alias_list, &alias_data->alias_list);
Radmila Kompováe644a012013-05-02 17:24:25 +0200405 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600406
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100407 if (pci_iommuv2_capable(pdev)) {
408 struct amd_iommu *iommu;
409
410 iommu = amd_iommu_rlookup_table[dev_data->devid];
411 dev_data->iommu_v2 = iommu->is_iommu_v2;
412 }
413
Joerg Roedel657cbb62009-11-23 15:26:46 +0100414 dev->archdata.iommu = dev_data;
415
Alex Williamson066f2e92014-06-12 16:12:37 -0600416 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
417 dev);
418
Joerg Roedel657cbb62009-11-23 15:26:46 +0100419 return 0;
420}
421
Joerg Roedel26018872011-06-06 16:50:14 +0200422static void iommu_ignore_device(struct device *dev)
423{
424 u16 devid, alias;
425
426 devid = get_device_id(dev);
427 alias = amd_iommu_alias_table[devid];
428
429 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
430 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
431
432 amd_iommu_rlookup_table[devid] = NULL;
433 amd_iommu_rlookup_table[alias] = NULL;
434}
435
Joerg Roedel657cbb62009-11-23 15:26:46 +0100436static void iommu_uninit_device(struct device *dev)
437{
Alex Williamsonc1931092014-07-03 09:51:24 -0600438 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
439
440 if (!dev_data)
441 return;
442
Alex Williamson066f2e92014-06-12 16:12:37 -0600443 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
444 dev);
445
Alex Williamson9dcd6132012-05-30 14:19:07 -0600446 iommu_group_remove_device(dev);
447
Alex Williamsonc1931092014-07-03 09:51:24 -0600448 /* Unlink from alias, it may change if another device is re-plugged */
449 dev_data->alias_data = NULL;
450
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200451 /* Remove dma-ops */
452 dev->archdata.dma_ops = NULL;
453
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200454 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600455 * We keep dev_data around for unplugged devices and reuse it when the
456 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200457 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100458}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100459
Joerg Roedel7f265082008-12-12 13:50:21 +0100460#ifdef CONFIG_AMD_IOMMU_STATS
461
462/*
463 * Initialization code for statistics collection
464 */
465
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100466DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100467DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100468DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100469DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100470DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100471DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100472DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100473DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100474DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100475DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100476DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100477DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100478DECLARE_STATS_COUNTER(complete_ppr);
479DECLARE_STATS_COUNTER(invalidate_iotlb);
480DECLARE_STATS_COUNTER(invalidate_iotlb_all);
481DECLARE_STATS_COUNTER(pri_requests);
482
Joerg Roedel7f265082008-12-12 13:50:21 +0100483static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100484static struct dentry *de_fflush;
485
486static void amd_iommu_stats_add(struct __iommu_counter *cnt)
487{
488 if (stats_dir == NULL)
489 return;
490
491 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
492 &cnt->value);
493}
494
495static void amd_iommu_stats_init(void)
496{
497 stats_dir = debugfs_create_dir("amd-iommu", NULL);
498 if (stats_dir == NULL)
499 return;
500
Joerg Roedel7f265082008-12-12 13:50:21 +0100501 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300502 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100503
504 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100505 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100506 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100507 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100508 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100509 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100510 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100511 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100512 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100513 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100514 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100515 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100516 amd_iommu_stats_add(&complete_ppr);
517 amd_iommu_stats_add(&invalidate_iotlb);
518 amd_iommu_stats_add(&invalidate_iotlb_all);
519 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100520}
521
522#endif
523
Joerg Roedel431b2a22008-07-11 17:14:22 +0200524/****************************************************************************
525 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200526 * Interrupt handling functions
527 *
528 ****************************************************************************/
529
Joerg Roedele3e59872009-09-03 14:02:10 +0200530static void dump_dte_entry(u16 devid)
531{
532 int i;
533
Joerg Roedelee6c2862011-11-09 12:06:03 +0100534 for (i = 0; i < 4; ++i)
535 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200536 amd_iommu_dev_table[devid].data[i]);
537}
538
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200539static void dump_command(unsigned long phys_addr)
540{
541 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
542 int i;
543
544 for (i = 0; i < 4; ++i)
545 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
546}
547
Joerg Roedela345b232009-09-03 15:01:43 +0200548static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200549{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200550 int type, devid, domid, flags;
551 volatile u32 *event = __evt;
552 int count = 0;
553 u64 address;
554
555retry:
556 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
557 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
558 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
559 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
560 address = (u64)(((u64)event[3]) << 32) | event[2];
561
562 if (type == 0) {
563 /* Did we hit the erratum? */
564 if (++count == LOOP_TIMEOUT) {
565 pr_err("AMD-Vi: No event written to event log\n");
566 return;
567 }
568 udelay(1);
569 goto retry;
570 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200571
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200572 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200573
574 switch (type) {
575 case EVENT_TYPE_ILL_DEV:
576 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
577 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700578 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200580 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200581 break;
582 case EVENT_TYPE_IO_FAULT:
583 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
584 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700585 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200586 domid, address, flags);
587 break;
588 case EVENT_TYPE_DEV_TAB_ERR:
589 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
590 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700591 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200592 address, flags);
593 break;
594 case EVENT_TYPE_PAGE_TAB_ERR:
595 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
596 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700597 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200598 domid, address, flags);
599 break;
600 case EVENT_TYPE_ILL_CMD:
601 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200602 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200603 break;
604 case EVENT_TYPE_CMD_HARD_ERR:
605 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
606 "flags=0x%04x]\n", address, flags);
607 break;
608 case EVENT_TYPE_IOTLB_INV_TO:
609 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
610 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700611 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200612 address);
613 break;
614 case EVENT_TYPE_INV_DEV_REQ:
615 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
616 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700617 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200618 address, flags);
619 break;
620 default:
621 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
622 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200623
624 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200625}
626
627static void iommu_poll_events(struct amd_iommu *iommu)
628{
629 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200630
631 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
632 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
633
634 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200635 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200636 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
637 }
638
639 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200640}
641
Joerg Roedeleee53532012-06-01 15:20:23 +0200642static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100643{
644 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100645
Joerg Roedel399be2f2011-12-01 16:53:47 +0100646 INC_STATS_COUNTER(pri_requests);
647
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100648 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
649 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
650 return;
651 }
652
653 fault.address = raw[1];
654 fault.pasid = PPR_PASID(raw[0]);
655 fault.device_id = PPR_DEVID(raw[0]);
656 fault.tag = PPR_TAG(raw[0]);
657 fault.flags = PPR_FLAGS(raw[0]);
658
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100659 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
660}
661
662static void iommu_poll_ppr_log(struct amd_iommu *iommu)
663{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100664 u32 head, tail;
665
666 if (iommu->ppr_log == NULL)
667 return;
668
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100669 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
670 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
671
672 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200673 volatile u64 *raw;
674 u64 entry[2];
675 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100676
Joerg Roedeleee53532012-06-01 15:20:23 +0200677 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678
Joerg Roedeleee53532012-06-01 15:20:23 +0200679 /*
680 * Hardware bug: Interrupt may arrive before the entry is
681 * written to memory. If this happens we need to wait for the
682 * entry to arrive.
683 */
684 for (i = 0; i < LOOP_TIMEOUT; ++i) {
685 if (PPR_REQ_TYPE(raw[0]) != 0)
686 break;
687 udelay(1);
688 }
689
690 /* Avoid memcpy function-call overhead */
691 entry[0] = raw[0];
692 entry[1] = raw[1];
693
694 /*
695 * To detect the hardware bug we need to clear the entry
696 * back to zero.
697 */
698 raw[0] = raw[1] = 0UL;
699
700 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100701 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
702 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200703
Joerg Roedeleee53532012-06-01 15:20:23 +0200704 /* Handle PPR entry */
705 iommu_handle_ppr_entry(iommu, entry);
706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 /* Refresh ring-buffer information */
708 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100709 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
710 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100711}
712
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200713irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200714{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500715 struct amd_iommu *iommu = (struct amd_iommu *) data;
716 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200717
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500718 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
719 /* Enable EVT and PPR interrupts again */
720 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
721 iommu->mmio_base + MMIO_STATUS_OFFSET);
722
723 if (status & MMIO_STATUS_EVT_INT_MASK) {
724 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
725 iommu_poll_events(iommu);
726 }
727
728 if (status & MMIO_STATUS_PPR_INT_MASK) {
729 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
730 iommu_poll_ppr_log(iommu);
731 }
732
733 /*
734 * Hardware bug: ERBT1312
735 * When re-enabling interrupt (by writing 1
736 * to clear the bit), the hardware might also try to set
737 * the interrupt bit in the event status register.
738 * In this scenario, the bit will be set, and disable
739 * subsequent interrupts.
740 *
741 * Workaround: The IOMMU driver should read back the
742 * status register and check if the interrupt bits are cleared.
743 * If not, driver will need to go through the interrupt handler
744 * again and re-clear the bits
745 */
746 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100747 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200748 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200749}
750
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200751irqreturn_t amd_iommu_int_handler(int irq, void *data)
752{
753 return IRQ_WAKE_THREAD;
754}
755
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200756/****************************************************************************
757 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200758 * IOMMU command queuing functions
759 *
760 ****************************************************************************/
761
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200762static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200763{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200764 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200765
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200766 while (*sem == 0 && i < LOOP_TIMEOUT) {
767 udelay(1);
768 i += 1;
769 }
770
771 if (i == LOOP_TIMEOUT) {
772 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
773 return -EIO;
774 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200775
776 return 0;
777}
778
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200779static void copy_cmd_to_buffer(struct amd_iommu *iommu,
780 struct iommu_cmd *cmd,
781 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200782{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200783 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200784
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200785 target = iommu->cmd_buf + tail;
786 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200787
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200788 /* Copy command to buffer */
789 memcpy(target, cmd, sizeof(*cmd));
790
791 /* Tell the IOMMU about it */
792 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
793}
794
Joerg Roedel815b33f2011-04-06 17:26:49 +0200795static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200796{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200797 WARN_ON(address & 0x7ULL);
798
Joerg Roedelded46732011-04-06 10:53:48 +0200799 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200800 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
801 cmd->data[1] = upper_32_bits(__pa(address));
802 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200803 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
804}
805
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200806static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
807{
808 memset(cmd, 0, sizeof(*cmd));
809 cmd->data[0] = devid;
810 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
811}
812
Joerg Roedel11b64022011-04-06 11:49:28 +0200813static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
814 size_t size, u16 domid, int pde)
815{
816 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100817 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200818
819 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100820 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200821
822 if (pages > 1) {
823 /*
824 * If we have to flush more than one page, flush all
825 * TLB entries for this domain
826 */
827 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100828 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200829 }
830
831 address &= PAGE_MASK;
832
833 memset(cmd, 0, sizeof(*cmd));
834 cmd->data[1] |= domid;
835 cmd->data[2] = lower_32_bits(address);
836 cmd->data[3] = upper_32_bits(address);
837 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
838 if (s) /* size bit - we flush more than one 4kb page */
839 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200840 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200841 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
842}
843
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200844static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
845 u64 address, size_t size)
846{
847 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100848 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100851 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100859 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[0] = devid;
866 cmd->data[0] |= (qdep & 0xff) << 24;
867 cmd->data[1] = devid;
868 cmd->data[2] = lower_32_bits(address);
869 cmd->data[3] = upper_32_bits(address);
870 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
871 if (s)
872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
873}
874
Joerg Roedel22e266c2011-11-21 15:59:08 +0100875static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
876 u64 address, bool size)
877{
878 memset(cmd, 0, sizeof(*cmd));
879
880 address &= ~(0xfffULL);
881
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600882 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100883 cmd->data[1] = domid;
884 cmd->data[2] = lower_32_bits(address);
885 cmd->data[3] = upper_32_bits(address);
886 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
887 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
888 if (size)
889 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
890 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
891}
892
893static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
894 int qdep, u64 address, bool size)
895{
896 memset(cmd, 0, sizeof(*cmd));
897
898 address &= ~(0xfffULL);
899
900 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600901 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100902 cmd->data[0] |= (qdep & 0xff) << 24;
903 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600904 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100905 cmd->data[2] = lower_32_bits(address);
906 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
907 cmd->data[3] = upper_32_bits(address);
908 if (size)
909 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
910 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
911}
912
Joerg Roedelc99afa22011-11-21 18:19:25 +0100913static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
914 int status, int tag, bool gn)
915{
916 memset(cmd, 0, sizeof(*cmd));
917
918 cmd->data[0] = devid;
919 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600920 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100921 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
922 }
923 cmd->data[3] = tag & 0x1ff;
924 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
925
926 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
927}
928
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200929static void build_inv_all(struct iommu_cmd *cmd)
930{
931 memset(cmd, 0, sizeof(*cmd));
932 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200933}
934
Joerg Roedel7ef27982012-06-21 16:46:04 +0200935static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
936{
937 memset(cmd, 0, sizeof(*cmd));
938 cmd->data[0] = devid;
939 CMD_SET_TYPE(cmd, CMD_INV_IRT);
940}
941
Joerg Roedel431b2a22008-07-11 17:14:22 +0200942/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200943 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200944 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200945 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200946static int iommu_queue_command_sync(struct amd_iommu *iommu,
947 struct iommu_cmd *cmd,
948 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200949{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200950 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200951 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200952
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200953 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100954
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200955again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200956 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200957
958 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
959 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
960 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
961 left = (head - next_tail) % iommu->cmd_buf_size;
962
963 if (left <= 2) {
964 struct iommu_cmd sync_cmd;
965 volatile u64 sem = 0;
966 int ret;
967
968 build_completion_wait(&sync_cmd, (u64)&sem);
969 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
970
971 spin_unlock_irqrestore(&iommu->lock, flags);
972
973 if ((ret = wait_on_sem(&sem)) != 0)
974 return ret;
975
976 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200977 }
978
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200979 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200980
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200981 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200982 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200983
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200984 spin_unlock_irqrestore(&iommu->lock, flags);
985
Joerg Roedel815b33f2011-04-06 17:26:49 +0200986 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100987}
988
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200989static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
990{
991 return iommu_queue_command_sync(iommu, cmd, true);
992}
993
Joerg Roedel8d201962008-12-02 20:34:41 +0100994/*
995 * This function queues a completion wait command into the command
996 * buffer of an IOMMU
997 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100998static int iommu_completion_wait(struct amd_iommu *iommu)
999{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001000 struct iommu_cmd cmd;
1001 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001002 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001003
1004 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001005 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001006
Joerg Roedel815b33f2011-04-06 17:26:49 +02001007 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001008
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001009 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001010 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001011 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001012
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001013 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001014}
1015
Joerg Roedeld8c13082011-04-06 18:51:26 +02001016static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001017{
1018 struct iommu_cmd cmd;
1019
Joerg Roedeld8c13082011-04-06 18:51:26 +02001020 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001021
Joerg Roedeld8c13082011-04-06 18:51:26 +02001022 return iommu_queue_command(iommu, &cmd);
1023}
1024
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001025static void iommu_flush_dte_all(struct amd_iommu *iommu)
1026{
1027 u32 devid;
1028
1029 for (devid = 0; devid <= 0xffff; ++devid)
1030 iommu_flush_dte(iommu, devid);
1031
1032 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001033}
1034
1035/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001036 * This function uses heavy locking and may disable irqs for some time. But
1037 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001038 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001039static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001040{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001041 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001042
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001043 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1044 struct iommu_cmd cmd;
1045 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1046 dom_id, 1);
1047 iommu_queue_command(iommu, &cmd);
1048 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001049
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001050 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001051}
1052
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001053static void iommu_flush_all(struct amd_iommu *iommu)
1054{
1055 struct iommu_cmd cmd;
1056
1057 build_inv_all(&cmd);
1058
1059 iommu_queue_command(iommu, &cmd);
1060 iommu_completion_wait(iommu);
1061}
1062
Joerg Roedel7ef27982012-06-21 16:46:04 +02001063static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1064{
1065 struct iommu_cmd cmd;
1066
1067 build_inv_irt(&cmd, devid);
1068
1069 iommu_queue_command(iommu, &cmd);
1070}
1071
1072static void iommu_flush_irt_all(struct amd_iommu *iommu)
1073{
1074 u32 devid;
1075
1076 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1077 iommu_flush_irt(iommu, devid);
1078
1079 iommu_completion_wait(iommu);
1080}
1081
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001082void iommu_flush_all_caches(struct amd_iommu *iommu)
1083{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001084 if (iommu_feature(iommu, FEATURE_IA)) {
1085 iommu_flush_all(iommu);
1086 } else {
1087 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001088 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001089 iommu_flush_tlb_all(iommu);
1090 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001091}
1092
Joerg Roedel431b2a22008-07-11 17:14:22 +02001093/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001094 * Command send function for flushing on-device TLB
1095 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001096static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1097 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001098{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001099 struct amd_iommu *iommu;
1100 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001101 int qdep;
1102
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001103 qdep = dev_data->ats.qdep;
1104 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001105
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001106 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001107
1108 return iommu_queue_command(iommu, &cmd);
1109}
1110
1111/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001112 * Command send function for invalidating a device table entry
1113 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001114static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001115{
1116 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001117 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001118
Joerg Roedel6c542042011-06-09 17:07:31 +02001119 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001120
Joerg Roedelf62dda62011-06-09 12:55:35 +02001121 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001122 if (ret)
1123 return ret;
1124
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001125 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001126 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001127
1128 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001129}
1130
Joerg Roedel431b2a22008-07-11 17:14:22 +02001131/*
1132 * TLB invalidation function which is called from the mapping functions.
1133 * It invalidates a single PTE if the range to flush is within a single
1134 * page. Otherwise it flushes the whole TLB of the IOMMU.
1135 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001136static void __domain_flush_pages(struct protection_domain *domain,
1137 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001138{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001139 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001140 struct iommu_cmd cmd;
1141 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001142
Joerg Roedel11b64022011-04-06 11:49:28 +02001143 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001144
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001145 for (i = 0; i < amd_iommus_present; ++i) {
1146 if (!domain->dev_iommu[i])
1147 continue;
1148
1149 /*
1150 * Devices of this domain are behind this IOMMU
1151 * We need a TLB flush
1152 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001153 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001154 }
1155
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001156 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001157
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001158 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001159 continue;
1160
Joerg Roedel6c542042011-06-09 17:07:31 +02001161 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001162 }
1163
Joerg Roedel11b64022011-04-06 11:49:28 +02001164 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001165}
1166
Joerg Roedel17b124b2011-04-06 18:01:35 +02001167static void domain_flush_pages(struct protection_domain *domain,
1168 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001169{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001170 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001171}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001172
Joerg Roedel1c655772008-09-04 18:40:05 +02001173/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001174static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001175{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001176 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001177}
1178
Chris Wright42a49f92009-06-15 15:42:00 +02001179/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001180static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001181{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001182 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1183}
1184
1185static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001186{
1187 int i;
1188
1189 for (i = 0; i < amd_iommus_present; ++i) {
1190 if (!domain->dev_iommu[i])
1191 continue;
1192
1193 /*
1194 * Devices of this domain are behind this IOMMU
1195 * We need to wait for completion of all commands.
1196 */
1197 iommu_completion_wait(amd_iommus[i]);
1198 }
1199}
1200
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001201
Joerg Roedel43f49602008-12-02 21:01:12 +01001202/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001203 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001204 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001205static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001206{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001207 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001208
1209 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001210 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001211}
1212
Joerg Roedel431b2a22008-07-11 17:14:22 +02001213/****************************************************************************
1214 *
1215 * The functions below are used the create the page table mappings for
1216 * unity mapped regions.
1217 *
1218 ****************************************************************************/
1219
1220/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001221 * This function is used to add another level to an IO page table. Adding
1222 * another level increases the size of the address space by 9 bits to a size up
1223 * to 64 bits.
1224 */
1225static bool increase_address_space(struct protection_domain *domain,
1226 gfp_t gfp)
1227{
1228 u64 *pte;
1229
1230 if (domain->mode == PAGE_MODE_6_LEVEL)
1231 /* address space already 64 bit large */
1232 return false;
1233
1234 pte = (void *)get_zeroed_page(gfp);
1235 if (!pte)
1236 return false;
1237
1238 *pte = PM_LEVEL_PDE(domain->mode,
1239 virt_to_phys(domain->pt_root));
1240 domain->pt_root = pte;
1241 domain->mode += 1;
1242 domain->updated = true;
1243
1244 return true;
1245}
1246
1247static u64 *alloc_pte(struct protection_domain *domain,
1248 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001249 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001250 u64 **pte_page,
1251 gfp_t gfp)
1252{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001253 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001255
1256 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001257
1258 while (address > PM_LEVEL_SIZE(domain->mode))
1259 increase_address_space(domain, gfp);
1260
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001261 level = domain->mode - 1;
1262 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1263 address = PAGE_SIZE_ALIGN(address, page_size);
1264 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001265
1266 while (level > end_lvl) {
1267 if (!IOMMU_PTE_PRESENT(*pte)) {
1268 page = (u64 *)get_zeroed_page(gfp);
1269 if (!page)
1270 return NULL;
1271 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1272 }
1273
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001274 /* No level skipping support yet */
1275 if (PM_PTE_LEVEL(*pte) != level)
1276 return NULL;
1277
Joerg Roedel308973d2009-11-24 17:43:32 +01001278 level -= 1;
1279
1280 pte = IOMMU_PTE_PAGE(*pte);
1281
1282 if (pte_page && level == end_lvl)
1283 *pte_page = pte;
1284
1285 pte = &pte[PM_LEVEL_INDEX(level, address)];
1286 }
1287
1288 return pte;
1289}
1290
1291/*
1292 * This function checks if there is a PTE for a given dma address. If
1293 * there is one, it returns the pointer to it.
1294 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001295static u64 *fetch_pte(struct protection_domain *domain,
1296 unsigned long address,
1297 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001298{
1299 int level;
1300 u64 *pte;
1301
Joerg Roedel24cd7722010-01-19 17:27:39 +01001302 if (address > PM_LEVEL_SIZE(domain->mode))
1303 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001304
Joerg Roedel3039ca12015-04-01 14:58:48 +02001305 level = domain->mode - 1;
1306 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1307 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001308
1309 while (level > 0) {
1310
1311 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001312 if (!IOMMU_PTE_PRESENT(*pte))
1313 return NULL;
1314
Joerg Roedel24cd7722010-01-19 17:27:39 +01001315 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001316 if (PM_PTE_LEVEL(*pte) == 7 ||
1317 PM_PTE_LEVEL(*pte) == 0)
1318 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001319
1320 /* No level skipping support yet */
1321 if (PM_PTE_LEVEL(*pte) != level)
1322 return NULL;
1323
Joerg Roedel308973d2009-11-24 17:43:32 +01001324 level -= 1;
1325
Joerg Roedel24cd7722010-01-19 17:27:39 +01001326 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001327 pte = IOMMU_PTE_PAGE(*pte);
1328 pte = &pte[PM_LEVEL_INDEX(level, address)];
1329 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1330 }
1331
1332 if (PM_PTE_LEVEL(*pte) == 0x07) {
1333 unsigned long pte_mask;
1334
1335 /*
1336 * If we have a series of large PTEs, make
1337 * sure to return a pointer to the first one.
1338 */
1339 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1340 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1341 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001342 }
1343
1344 return pte;
1345}
1346
1347/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001348 * Generic mapping functions. It maps a physical address into a DMA
1349 * address space. It allocates the page table pages if necessary.
1350 * In the future it can be extended to a generic mapping function
1351 * supporting all features of AMD IOMMU page tables like level skipping
1352 * and full 64 bit address spaces.
1353 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001354static int iommu_map_page(struct protection_domain *dom,
1355 unsigned long bus_addr,
1356 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001357 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001358 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001359{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001360 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001361 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001362
Joerg Roedeld4b03662015-04-01 14:58:52 +02001363 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1364 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1365
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001366 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001367 return -EINVAL;
1368
Joerg Roedeld4b03662015-04-01 14:58:52 +02001369 count = PAGE_SIZE_PTE_COUNT(page_size);
1370 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001371
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001372 if (!pte)
1373 return -ENOMEM;
1374
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001375 for (i = 0; i < count; ++i)
1376 if (IOMMU_PTE_PRESENT(pte[i]))
1377 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001378
Joerg Roedeld4b03662015-04-01 14:58:52 +02001379 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001380 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1381 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1382 } else
1383 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1384
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001385 if (prot & IOMMU_PROT_IR)
1386 __pte |= IOMMU_PTE_IR;
1387 if (prot & IOMMU_PROT_IW)
1388 __pte |= IOMMU_PTE_IW;
1389
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001390 for (i = 0; i < count; ++i)
1391 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001392
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001393 update_domain(dom);
1394
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001395 return 0;
1396}
1397
Joerg Roedel24cd7722010-01-19 17:27:39 +01001398static unsigned long iommu_unmap_page(struct protection_domain *dom,
1399 unsigned long bus_addr,
1400 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001401{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001402 unsigned long long unmapped;
1403 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001404 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001405
Joerg Roedel24cd7722010-01-19 17:27:39 +01001406 BUG_ON(!is_power_of_2(page_size));
1407
1408 unmapped = 0;
1409
1410 while (unmapped < page_size) {
1411
Joerg Roedel71b390e2015-04-01 14:58:49 +02001412 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001413
Joerg Roedel71b390e2015-04-01 14:58:49 +02001414 if (pte) {
1415 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001416
Joerg Roedel71b390e2015-04-01 14:58:49 +02001417 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001418 for (i = 0; i < count; i++)
1419 pte[i] = 0ULL;
1420 }
1421
1422 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1423 unmapped += unmap_size;
1424 }
1425
Alex Williamson60d0ca32013-06-21 14:33:19 -06001426 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001427
1428 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001429}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001430
Joerg Roedel431b2a22008-07-11 17:14:22 +02001431/****************************************************************************
1432 *
1433 * The next functions belong to the address allocator for the dma_ops
1434 * interface functions. They work like the allocators in the other IOMMU
1435 * drivers. Its basically a bitmap which marks the allocated pages in
1436 * the aperture. Maybe it could be enhanced in the future to a more
1437 * efficient allocator.
1438 *
1439 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001440
Joerg Roedel431b2a22008-07-11 17:14:22 +02001441/*
Joerg Roedel384de722009-05-15 12:30:05 +02001442 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001443 *
1444 * called with domain->lock held
1445 */
Joerg Roedel384de722009-05-15 12:30:05 +02001446
Joerg Roedel9cabe892009-05-18 16:38:55 +02001447/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001448 * Used to reserve address ranges in the aperture (e.g. for exclusion
1449 * ranges.
1450 */
1451static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1452 unsigned long start_page,
1453 unsigned int pages)
1454{
1455 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1456
1457 if (start_page + pages > last_page)
1458 pages = last_page - start_page;
1459
1460 for (i = start_page; i < start_page + pages; ++i) {
1461 int index = i / APERTURE_RANGE_PAGES;
1462 int page = i % APERTURE_RANGE_PAGES;
1463 __set_bit(page, dom->aperture[index]->bitmap);
1464 }
1465}
1466
1467/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001468 * This function is used to add a new aperture range to an existing
1469 * aperture in case of dma_ops domain allocation or address allocation
1470 * failure.
1471 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001472static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001473 bool populate, gfp_t gfp)
1474{
1475 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001476 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001477 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001478
Joerg Roedelf5e97052009-05-22 12:31:53 +02001479#ifdef CONFIG_IOMMU_STRESS
1480 populate = false;
1481#endif
1482
Joerg Roedel9cabe892009-05-18 16:38:55 +02001483 if (index >= APERTURE_MAX_RANGES)
1484 return -ENOMEM;
1485
1486 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1487 if (!dma_dom->aperture[index])
1488 return -ENOMEM;
1489
1490 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1491 if (!dma_dom->aperture[index]->bitmap)
1492 goto out_free;
1493
1494 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1495
1496 if (populate) {
1497 unsigned long address = dma_dom->aperture_size;
1498 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1499 u64 *pte, *pte_page;
1500
1501 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001502 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001503 &pte_page, gfp);
1504 if (!pte)
1505 goto out_free;
1506
1507 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1508
1509 address += APERTURE_RANGE_SIZE / 64;
1510 }
1511 }
1512
Joerg Roedel17f5b562011-07-06 17:14:44 +02001513 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001514 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1515
Joerg Roedel17f5b562011-07-06 17:14:44 +02001516 /* Reserve address range used for MSI messages */
1517 if (old_size < MSI_ADDR_BASE_LO &&
1518 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1519 unsigned long spage;
1520 int pages;
1521
1522 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1523 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1524
1525 dma_ops_reserve_addresses(dma_dom, spage, pages);
1526 }
1527
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001528 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001529 for_each_iommu(iommu) {
1530 if (iommu->exclusion_start &&
1531 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1532 && iommu->exclusion_start < dma_dom->aperture_size) {
1533 unsigned long startpage;
1534 int pages = iommu_num_pages(iommu->exclusion_start,
1535 iommu->exclusion_length,
1536 PAGE_SIZE);
1537 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1538 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1539 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001540 }
1541
1542 /*
1543 * Check for areas already mapped as present in the new aperture
1544 * range and mark those pages as reserved in the allocator. Such
1545 * mappings may already exist as a result of requested unity
1546 * mappings for devices.
1547 */
1548 for (i = dma_dom->aperture[index]->offset;
1549 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001550 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001551 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001552 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1553 continue;
1554
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001555 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1556 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001557 }
1558
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001559 update_domain(&dma_dom->domain);
1560
Joerg Roedel9cabe892009-05-18 16:38:55 +02001561 return 0;
1562
1563out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001564 update_domain(&dma_dom->domain);
1565
Joerg Roedel9cabe892009-05-18 16:38:55 +02001566 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1567
1568 kfree(dma_dom->aperture[index]);
1569 dma_dom->aperture[index] = NULL;
1570
1571 return -ENOMEM;
1572}
1573
Joerg Roedel384de722009-05-15 12:30:05 +02001574static unsigned long dma_ops_area_alloc(struct device *dev,
1575 struct dma_ops_domain *dom,
1576 unsigned int pages,
1577 unsigned long align_mask,
1578 u64 dma_mask,
1579 unsigned long start)
1580{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001581 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001582 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1583 int i = start >> APERTURE_RANGE_SHIFT;
Joerg Roedele6aabee2015-05-27 09:26:09 +02001584 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001585 unsigned long address = -1;
1586 unsigned long limit;
1587
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001588 next_bit >>= PAGE_SHIFT;
1589
Joerg Roedele6aabee2015-05-27 09:26:09 +02001590 mask = dma_get_seg_boundary(dev);
1591
1592 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1593 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001594
1595 for (;i < max_index; ++i) {
1596 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1597
1598 if (dom->aperture[i]->offset >= dma_mask)
1599 break;
1600
1601 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1602 dma_mask >> PAGE_SHIFT);
1603
1604 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1605 limit, next_bit, pages, 0,
1606 boundary_size, align_mask);
1607 if (address != -1) {
1608 address = dom->aperture[i]->offset +
1609 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001610 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001611 break;
1612 }
1613
1614 next_bit = 0;
1615 }
1616
1617 return address;
1618}
1619
Joerg Roedeld3086442008-06-26 21:27:57 +02001620static unsigned long dma_ops_alloc_addresses(struct device *dev,
1621 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001622 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001623 unsigned long align_mask,
1624 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001625{
Joerg Roedeld3086442008-06-26 21:27:57 +02001626 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001627
Joerg Roedelfe16f082009-05-22 12:27:53 +02001628#ifdef CONFIG_IOMMU_STRESS
1629 dom->next_address = 0;
1630 dom->need_flush = true;
1631#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001632
Joerg Roedel384de722009-05-15 12:30:05 +02001633 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001634 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001635
Joerg Roedel1c655772008-09-04 18:40:05 +02001636 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001637 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001638 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1639 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001640 dom->need_flush = true;
1641 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001642
Joerg Roedel384de722009-05-15 12:30:05 +02001643 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001644 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001645
1646 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1647
1648 return address;
1649}
1650
Joerg Roedel431b2a22008-07-11 17:14:22 +02001651/*
1652 * The address free function.
1653 *
1654 * called with domain->lock held
1655 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001656static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1657 unsigned long address,
1658 unsigned int pages)
1659{
Joerg Roedel384de722009-05-15 12:30:05 +02001660 unsigned i = address >> APERTURE_RANGE_SHIFT;
1661 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001662
Joerg Roedel384de722009-05-15 12:30:05 +02001663 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1664
Joerg Roedel47bccd62009-05-22 12:40:54 +02001665#ifdef CONFIG_IOMMU_STRESS
1666 if (i < 4)
1667 return;
1668#endif
1669
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001670 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001671 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001672
1673 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001674
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001675 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001676
Joerg Roedeld3086442008-06-26 21:27:57 +02001677}
1678
Joerg Roedel431b2a22008-07-11 17:14:22 +02001679/****************************************************************************
1680 *
1681 * The next functions belong to the domain allocation. A domain is
1682 * allocated for every IOMMU as the default domain. If device isolation
1683 * is enabled, every device get its own domain. The most important thing
1684 * about domains is the page table mapping the DMA address space they
1685 * contain.
1686 *
1687 ****************************************************************************/
1688
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001689/*
1690 * This function adds a protection domain to the global protection domain list
1691 */
1692static void add_domain_to_list(struct protection_domain *domain)
1693{
1694 unsigned long flags;
1695
1696 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1697 list_add(&domain->list, &amd_iommu_pd_list);
1698 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1699}
1700
1701/*
1702 * This function removes a protection domain to the global
1703 * protection domain list
1704 */
1705static void del_domain_from_list(struct protection_domain *domain)
1706{
1707 unsigned long flags;
1708
1709 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1710 list_del(&domain->list);
1711 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1712}
1713
Joerg Roedelec487d12008-06-26 21:27:58 +02001714static u16 domain_id_alloc(void)
1715{
1716 unsigned long flags;
1717 int id;
1718
1719 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1720 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1721 BUG_ON(id == 0);
1722 if (id > 0 && id < MAX_DOMAIN_ID)
1723 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1724 else
1725 id = 0;
1726 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1727
1728 return id;
1729}
1730
Joerg Roedela2acfb72008-12-02 18:28:53 +01001731static void domain_id_free(int id)
1732{
1733 unsigned long flags;
1734
1735 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1736 if (id > 0 && id < MAX_DOMAIN_ID)
1737 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1738 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1739}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001740
Joerg Roedel5c34c402013-06-20 20:22:58 +02001741#define DEFINE_FREE_PT_FN(LVL, FN) \
1742static void free_pt_##LVL (unsigned long __pt) \
1743{ \
1744 unsigned long p; \
1745 u64 *pt; \
1746 int i; \
1747 \
1748 pt = (u64 *)__pt; \
1749 \
1750 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff542015-06-18 10:48:34 +02001751 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001752 if (!IOMMU_PTE_PRESENT(pt[i])) \
1753 continue; \
1754 \
Joerg Roedel0b3fff542015-06-18 10:48:34 +02001755 /* Large PTE? */ \
1756 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1757 PM_PTE_LEVEL(pt[i]) == 7) \
1758 continue; \
1759 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001760 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1761 FN(p); \
1762 } \
1763 free_page((unsigned long)pt); \
1764}
1765
1766DEFINE_FREE_PT_FN(l2, free_page)
1767DEFINE_FREE_PT_FN(l3, free_pt_l2)
1768DEFINE_FREE_PT_FN(l4, free_pt_l3)
1769DEFINE_FREE_PT_FN(l5, free_pt_l4)
1770DEFINE_FREE_PT_FN(l6, free_pt_l5)
1771
Joerg Roedel86db2e52008-12-02 18:20:21 +01001772static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001773{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001774 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001775
Joerg Roedel5c34c402013-06-20 20:22:58 +02001776 switch (domain->mode) {
1777 case PAGE_MODE_NONE:
1778 break;
1779 case PAGE_MODE_1_LEVEL:
1780 free_page(root);
1781 break;
1782 case PAGE_MODE_2_LEVEL:
1783 free_pt_l2(root);
1784 break;
1785 case PAGE_MODE_3_LEVEL:
1786 free_pt_l3(root);
1787 break;
1788 case PAGE_MODE_4_LEVEL:
1789 free_pt_l4(root);
1790 break;
1791 case PAGE_MODE_5_LEVEL:
1792 free_pt_l5(root);
1793 break;
1794 case PAGE_MODE_6_LEVEL:
1795 free_pt_l6(root);
1796 break;
1797 default:
1798 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001799 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001800}
1801
Joerg Roedelb16137b2011-11-21 16:50:23 +01001802static void free_gcr3_tbl_level1(u64 *tbl)
1803{
1804 u64 *ptr;
1805 int i;
1806
1807 for (i = 0; i < 512; ++i) {
1808 if (!(tbl[i] & GCR3_VALID))
1809 continue;
1810
1811 ptr = __va(tbl[i] & PAGE_MASK);
1812
1813 free_page((unsigned long)ptr);
1814 }
1815}
1816
1817static void free_gcr3_tbl_level2(u64 *tbl)
1818{
1819 u64 *ptr;
1820 int i;
1821
1822 for (i = 0; i < 512; ++i) {
1823 if (!(tbl[i] & GCR3_VALID))
1824 continue;
1825
1826 ptr = __va(tbl[i] & PAGE_MASK);
1827
1828 free_gcr3_tbl_level1(ptr);
1829 }
1830}
1831
Joerg Roedel52815b72011-11-17 17:24:28 +01001832static void free_gcr3_table(struct protection_domain *domain)
1833{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001834 if (domain->glx == 2)
1835 free_gcr3_tbl_level2(domain->gcr3_tbl);
1836 else if (domain->glx == 1)
1837 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001838 else
1839 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001840
Joerg Roedel52815b72011-11-17 17:24:28 +01001841 free_page((unsigned long)domain->gcr3_tbl);
1842}
1843
Joerg Roedel431b2a22008-07-11 17:14:22 +02001844/*
1845 * Free a domain, only used if something went wrong in the
1846 * allocation path and we need to free an already allocated page table
1847 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001848static void dma_ops_domain_free(struct dma_ops_domain *dom)
1849{
Joerg Roedel384de722009-05-15 12:30:05 +02001850 int i;
1851
Joerg Roedelec487d12008-06-26 21:27:58 +02001852 if (!dom)
1853 return;
1854
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001855 del_domain_from_list(&dom->domain);
1856
Joerg Roedel86db2e52008-12-02 18:20:21 +01001857 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001858
Joerg Roedel384de722009-05-15 12:30:05 +02001859 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1860 if (!dom->aperture[i])
1861 continue;
1862 free_page((unsigned long)dom->aperture[i]->bitmap);
1863 kfree(dom->aperture[i]);
1864 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001865
1866 kfree(dom);
1867}
1868
Joerg Roedel431b2a22008-07-11 17:14:22 +02001869/*
1870 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001871 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001872 * structures required for the dma_ops interface
1873 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001874static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001875{
1876 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001877
1878 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1879 if (!dma_dom)
1880 return NULL;
1881
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001882 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02001883 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001884
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001885 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001886 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001887 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001888 dma_dom->domain.priv = dma_dom;
1889 if (!dma_dom->domain.pt_root)
1890 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001891
Joerg Roedel1c655772008-09-04 18:40:05 +02001892 dma_dom->need_flush = false;
1893
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001894 add_domain_to_list(&dma_dom->domain);
1895
Joerg Roedel576175c2009-11-23 19:08:46 +01001896 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001897 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001898
Joerg Roedel431b2a22008-07-11 17:14:22 +02001899 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001900 * mark the first page as allocated so we never return 0 as
1901 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001902 */
Joerg Roedel384de722009-05-15 12:30:05 +02001903 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001904 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001905
Joerg Roedelec487d12008-06-26 21:27:58 +02001906
1907 return dma_dom;
1908
1909free_dma_dom:
1910 dma_ops_domain_free(dma_dom);
1911
1912 return NULL;
1913}
1914
Joerg Roedel431b2a22008-07-11 17:14:22 +02001915/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001916 * little helper function to check whether a given protection domain is a
1917 * dma_ops domain
1918 */
1919static bool dma_ops_domain(struct protection_domain *domain)
1920{
1921 return domain->flags & PD_DMA_OPS_MASK;
1922}
1923
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001924static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001925{
Joerg Roedel132bd682011-11-17 14:18:46 +01001926 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001927 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001928
Joerg Roedel132bd682011-11-17 14:18:46 +01001929 if (domain->mode != PAGE_MODE_NONE)
1930 pte_root = virt_to_phys(domain->pt_root);
1931
Joerg Roedel38ddf412008-09-11 10:38:32 +02001932 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1933 << DEV_ENTRY_MODE_SHIFT;
1934 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001935
Joerg Roedelee6c2862011-11-09 12:06:03 +01001936 flags = amd_iommu_dev_table[devid].data[1];
1937
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001938 if (ats)
1939 flags |= DTE_FLAG_IOTLB;
1940
Joerg Roedel52815b72011-11-17 17:24:28 +01001941 if (domain->flags & PD_IOMMUV2_MASK) {
1942 u64 gcr3 = __pa(domain->gcr3_tbl);
1943 u64 glx = domain->glx;
1944 u64 tmp;
1945
1946 pte_root |= DTE_FLAG_GV;
1947 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1948
1949 /* First mask out possible old values for GCR3 table */
1950 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1951 flags &= ~tmp;
1952
1953 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1954 flags &= ~tmp;
1955
1956 /* Encode GCR3 table into DTE */
1957 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1958 pte_root |= tmp;
1959
1960 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1961 flags |= tmp;
1962
1963 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1964 flags |= tmp;
1965 }
1966
Joerg Roedelee6c2862011-11-09 12:06:03 +01001967 flags &= ~(0xffffUL);
1968 flags |= domain->id;
1969
1970 amd_iommu_dev_table[devid].data[1] = flags;
1971 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001972}
1973
Joerg Roedel15898bb2009-11-24 15:39:42 +01001974static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001975{
Joerg Roedel355bf552008-12-08 12:02:41 +01001976 /* remove entry from the device table seen by the hardware */
1977 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1978 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001979
Joerg Roedelc5cca142009-10-09 18:31:20 +02001980 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001981}
1982
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001983static void do_attach(struct iommu_dev_data *dev_data,
1984 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001985{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001986 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001987 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001988
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001989 iommu = amd_iommu_rlookup_table[dev_data->devid];
1990 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001991
1992 /* Update data structures */
1993 dev_data->domain = domain;
1994 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001995 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001996
1997 /* Do reference counting */
1998 domain->dev_iommu[iommu->index] += 1;
1999 domain->dev_cnt += 1;
2000
2001 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002002 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002003}
2004
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002005static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002006{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002007 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002008
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002009 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002010
Joerg Roedelc4596112009-11-20 14:57:32 +01002011 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002012 dev_data->domain->dev_iommu[iommu->index] -= 1;
2013 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002014
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002015 /* Update data structures */
2016 dev_data->domain = NULL;
2017 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002018 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002019
2020 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002021 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002022}
2023
2024/*
2025 * If a device is not yet associated with a domain, this function does
2026 * assigns it visible for the hardware
2027 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002028static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002029 struct protection_domain *domain)
2030{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002031 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002032
Joerg Roedel15898bb2009-11-24 15:39:42 +01002033 /* lock domain */
2034 spin_lock(&domain->lock);
2035
Joerg Roedel397111a2014-08-05 17:31:51 +02002036 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02002037 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02002038 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002039
Joerg Roedel397111a2014-08-05 17:31:51 +02002040 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02002041 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002042
Julia Lawall84fe6c12010-05-27 12:31:51 +02002043 ret = 0;
2044
2045out_unlock:
2046
Joerg Roedel355bf552008-12-08 12:02:41 +01002047 /* ready */
2048 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002049
Julia Lawall84fe6c12010-05-27 12:31:51 +02002050 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002051}
2052
Joerg Roedel52815b72011-11-17 17:24:28 +01002053
2054static void pdev_iommuv2_disable(struct pci_dev *pdev)
2055{
2056 pci_disable_ats(pdev);
2057 pci_disable_pri(pdev);
2058 pci_disable_pasid(pdev);
2059}
2060
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002061/* FIXME: Change generic reset-function to do the same */
2062static int pri_reset_while_enabled(struct pci_dev *pdev)
2063{
2064 u16 control;
2065 int pos;
2066
Joerg Roedel46277b72011-12-07 14:34:02 +01002067 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002068 if (!pos)
2069 return -EINVAL;
2070
Joerg Roedel46277b72011-12-07 14:34:02 +01002071 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2072 control |= PCI_PRI_CTRL_RESET;
2073 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002074
2075 return 0;
2076}
2077
Joerg Roedel52815b72011-11-17 17:24:28 +01002078static int pdev_iommuv2_enable(struct pci_dev *pdev)
2079{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002080 bool reset_enable;
2081 int reqs, ret;
2082
2083 /* FIXME: Hardcode number of outstanding requests for now */
2084 reqs = 32;
2085 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2086 reqs = 1;
2087 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002088
2089 /* Only allow access to user-accessible pages */
2090 ret = pci_enable_pasid(pdev, 0);
2091 if (ret)
2092 goto out_err;
2093
2094 /* First reset the PRI state of the device */
2095 ret = pci_reset_pri(pdev);
2096 if (ret)
2097 goto out_err;
2098
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002099 /* Enable PRI */
2100 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002101 if (ret)
2102 goto out_err;
2103
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002104 if (reset_enable) {
2105 ret = pri_reset_while_enabled(pdev);
2106 if (ret)
2107 goto out_err;
2108 }
2109
Joerg Roedel52815b72011-11-17 17:24:28 +01002110 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2111 if (ret)
2112 goto out_err;
2113
2114 return 0;
2115
2116out_err:
2117 pci_disable_pri(pdev);
2118 pci_disable_pasid(pdev);
2119
2120 return ret;
2121}
2122
Joerg Roedelc99afa22011-11-21 18:19:25 +01002123/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002124#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002125
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002126static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002127{
Joerg Roedela3b93122012-04-12 12:49:26 +02002128 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002129 int pos;
2130
Joerg Roedel46277b72011-12-07 14:34:02 +01002131 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002132 if (!pos)
2133 return false;
2134
Joerg Roedela3b93122012-04-12 12:49:26 +02002135 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002136
Joerg Roedela3b93122012-04-12 12:49:26 +02002137 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002138}
2139
Joerg Roedel15898bb2009-11-24 15:39:42 +01002140/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002141 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002142 * assigns it visible for the hardware
2143 */
2144static int attach_device(struct device *dev,
2145 struct protection_domain *domain)
2146{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002147 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002148 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002149 unsigned long flags;
2150 int ret;
2151
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002152 dev_data = get_dev_data(dev);
2153
Joerg Roedel52815b72011-11-17 17:24:28 +01002154 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002155 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002156 return -EINVAL;
2157
Joerg Roedel02ca2022015-07-28 16:58:49 +02002158 if (dev_data->iommu_v2) {
2159 if (pdev_iommuv2_enable(pdev) != 0)
2160 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002161
Joerg Roedel02ca2022015-07-28 16:58:49 +02002162 dev_data->ats.enabled = true;
2163 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2164 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2165 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002166 } else if (amd_iommu_iotlb_sup &&
2167 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002168 dev_data->ats.enabled = true;
2169 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2170 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002171
Joerg Roedel15898bb2009-11-24 15:39:42 +01002172 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002173 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002174 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2175
2176 /*
2177 * We might boot into a crash-kernel here. The crashed kernel
2178 * left the caches in the IOMMU dirty. So we have to flush
2179 * here to evict all dirty stuff.
2180 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002181 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002182
2183 return ret;
2184}
2185
2186/*
2187 * Removes a device from a protection domain (unlocked)
2188 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002189static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002190{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002191 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002192 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002193
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002194 if (WARN_ON(!dev_data->domain))
2195 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002196
Joerg Roedel2ca76272010-01-22 16:45:31 +01002197 domain = dev_data->domain;
2198
2199 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002200
Joerg Roedel150952f2015-10-20 17:33:35 +02002201 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002202
Joerg Roedel2ca76272010-01-22 16:45:31 +01002203 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel355bf552008-12-08 12:02:41 +01002204}
2205
2206/*
2207 * Removes a device from a protection domain (with devtable_lock held)
2208 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002209static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002210{
Joerg Roedel52815b72011-11-17 17:24:28 +01002211 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002212 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002213 unsigned long flags;
2214
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002215 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002216 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002217
Joerg Roedel355bf552008-12-08 12:02:41 +01002218 /* lock device table */
2219 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002220 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002221 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002222
Joerg Roedel02ca2022015-07-28 16:58:49 +02002223 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002224 pdev_iommuv2_disable(to_pci_dev(dev));
2225 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002226 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002227
2228 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002229}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002230
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002231static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002232{
Joerg Roedel71f77582011-06-09 19:03:15 +02002233 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002234 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002235 struct amd_iommu *iommu;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002236 u16 devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002237 int ret;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002238
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002239 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002240 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002241
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002242 devid = get_device_id(dev);
2243 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002244
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002245 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002246 if (ret) {
2247 if (ret != -ENOTSUPP)
2248 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2249 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002250
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002251 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002252 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002253 goto out;
2254 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002255 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002256
Joerg Roedel07ee8692015-05-28 18:41:42 +02002257 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002258
2259 BUG_ON(!dev_data);
2260
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002261 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002262 iommu_request_dm_for_dev(dev);
2263
2264 /* Domains are initialized for this device - have a look what we ended up with */
2265 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002266 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002267 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002268 else
Joerg Roedel07ee8692015-05-28 18:41:42 +02002269 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002270
2271out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002272 iommu_completion_wait(iommu);
2273
Joerg Roedele275a2a2008-12-10 18:27:25 +01002274 return 0;
2275}
2276
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002277static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002278{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002279 struct amd_iommu *iommu;
2280 u16 devid;
2281
2282 if (!check_device(dev))
2283 return;
2284
2285 devid = get_device_id(dev);
2286 iommu = amd_iommu_rlookup_table[devid];
2287
2288 iommu_uninit_device(dev);
2289 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002290}
2291
Joerg Roedel431b2a22008-07-11 17:14:22 +02002292/*****************************************************************************
2293 *
2294 * The next functions belong to the dma_ops mapping/unmapping code.
2295 *
2296 *****************************************************************************/
2297
2298/*
2299 * In the dma_ops path we only have the struct device. This function
2300 * finds the corresponding IOMMU, the protection domain and the
2301 * requestor id for a given device.
2302 * If the device is not yet associated with a domain this is also done
2303 * in this function.
2304 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002305static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002306{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002307 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002308 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002309
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002310 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002311 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002312
Joerg Roedel063071d2015-05-28 18:41:38 +02002313 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002314 if (!io_domain)
2315 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002316
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002317 domain = to_pdomain(io_domain);
2318 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002319 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002320
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002321 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002322}
2323
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002324static void update_device_table(struct protection_domain *domain)
2325{
Joerg Roedel492667d2009-11-27 13:25:47 +01002326 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002327
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002328 list_for_each_entry(dev_data, &domain->dev_list, list)
2329 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002330}
2331
2332static void update_domain(struct protection_domain *domain)
2333{
2334 if (!domain->updated)
2335 return;
2336
2337 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002338
2339 domain_flush_devices(domain);
2340 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002341
2342 domain->updated = false;
2343}
2344
Joerg Roedel431b2a22008-07-11 17:14:22 +02002345/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002346 * This function fetches the PTE for a given address in the aperture
2347 */
2348static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2349 unsigned long address)
2350{
Joerg Roedel384de722009-05-15 12:30:05 +02002351 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002352 u64 *pte, *pte_page;
2353
Joerg Roedel384de722009-05-15 12:30:05 +02002354 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2355 if (!aperture)
2356 return NULL;
2357
2358 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002359 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002360 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002361 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002362 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2363 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002364 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002365
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002366 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002367
2368 return pte;
2369}
2370
2371/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002372 * This is the generic map function. It maps one 4kb page at paddr to
2373 * the given address in the DMA address space for the domain.
2374 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002375static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002376 unsigned long address,
2377 phys_addr_t paddr,
2378 int direction)
2379{
2380 u64 *pte, __pte;
2381
2382 WARN_ON(address > dom->aperture_size);
2383
2384 paddr &= PAGE_MASK;
2385
Joerg Roedel8bda3092009-05-12 12:02:46 +02002386 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002387 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002388 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002389
2390 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2391
2392 if (direction == DMA_TO_DEVICE)
2393 __pte |= IOMMU_PTE_IR;
2394 else if (direction == DMA_FROM_DEVICE)
2395 __pte |= IOMMU_PTE_IW;
2396 else if (direction == DMA_BIDIRECTIONAL)
2397 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2398
2399 WARN_ON(*pte);
2400
2401 *pte = __pte;
2402
2403 return (dma_addr_t)address;
2404}
2405
Joerg Roedel431b2a22008-07-11 17:14:22 +02002406/*
2407 * The generic unmapping function for on page in the DMA address space.
2408 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002409static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002410 unsigned long address)
2411{
Joerg Roedel384de722009-05-15 12:30:05 +02002412 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002413 u64 *pte;
2414
2415 if (address >= dom->aperture_size)
2416 return;
2417
Joerg Roedel384de722009-05-15 12:30:05 +02002418 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2419 if (!aperture)
2420 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002421
Joerg Roedel384de722009-05-15 12:30:05 +02002422 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2423 if (!pte)
2424 return;
2425
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002426 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002427
2428 WARN_ON(!*pte);
2429
2430 *pte = 0ULL;
2431}
2432
Joerg Roedel431b2a22008-07-11 17:14:22 +02002433/*
2434 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002435 * contiguous memory region into DMA address space. It is used by all
2436 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002437 * Must be called with the domain lock held.
2438 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002439static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002440 struct dma_ops_domain *dma_dom,
2441 phys_addr_t paddr,
2442 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002443 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002444 bool align,
2445 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002446{
2447 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002448 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002449 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002450 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002451 int i;
2452
Joerg Roedele3c449f2008-10-15 22:02:11 -07002453 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002454 paddr &= PAGE_MASK;
2455
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002456 INC_STATS_COUNTER(total_map_requests);
2457
Joerg Roedelc1858972008-12-12 15:42:39 +01002458 if (pages > 1)
2459 INC_STATS_COUNTER(cross_page);
2460
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002461 if (align)
2462 align_mask = (1UL << get_order(size)) - 1;
2463
Joerg Roedel11b83882009-05-19 10:23:15 +02002464retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002465 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2466 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002467 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002468 /*
2469 * setting next_address here will let the address
2470 * allocator only scan the new allocated range in the
2471 * first run. This is a small optimization.
2472 */
2473 dma_dom->next_address = dma_dom->aperture_size;
2474
Joerg Roedel576175c2009-11-23 19:08:46 +01002475 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002476 goto out;
2477
2478 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002479 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002480 * allocation again
2481 */
2482 goto retry;
2483 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002484
2485 start = address;
2486 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002487 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002488 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002489 goto out_unmap;
2490
Joerg Roedelcb76c322008-06-26 21:28:00 +02002491 paddr += PAGE_SIZE;
2492 start += PAGE_SIZE;
2493 }
2494 address += offset;
2495
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002496 ADD_STATS_COUNTER(alloced_io_mem, size);
2497
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002498 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002499 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002500 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002501 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002502 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002503
Joerg Roedelcb76c322008-06-26 21:28:00 +02002504out:
2505 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002506
2507out_unmap:
2508
2509 for (--i; i >= 0; --i) {
2510 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002511 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002512 }
2513
2514 dma_ops_free_addresses(dma_dom, address, pages);
2515
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002516 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002517}
2518
Joerg Roedel431b2a22008-07-11 17:14:22 +02002519/*
2520 * Does the reverse of the __map_single function. Must be called with
2521 * the domain lock held too
2522 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002523static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002524 dma_addr_t dma_addr,
2525 size_t size,
2526 int dir)
2527{
Joerg Roedel04e04632010-09-23 16:12:48 +02002528 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002529 dma_addr_t i, start;
2530 unsigned int pages;
2531
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002532 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002533 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002534 return;
2535
Joerg Roedel04e04632010-09-23 16:12:48 +02002536 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002537 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002538 dma_addr &= PAGE_MASK;
2539 start = dma_addr;
2540
2541 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002542 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002543 start += PAGE_SIZE;
2544 }
2545
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002546 SUB_STATS_COUNTER(alloced_io_mem, size);
2547
Joerg Roedelcb76c322008-06-26 21:28:00 +02002548 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002549
Joerg Roedel80be3082008-11-06 14:59:05 +01002550 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002551 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002552 dma_dom->need_flush = false;
2553 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002554}
2555
Joerg Roedel431b2a22008-07-11 17:14:22 +02002556/*
2557 * The exported map_single function for dma_ops.
2558 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002559static dma_addr_t map_page(struct device *dev, struct page *page,
2560 unsigned long offset, size_t size,
2561 enum dma_data_direction dir,
2562 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002563{
2564 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002565 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002566 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002567 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002568 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002569
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002570 INC_STATS_COUNTER(cnt_map_single);
2571
Joerg Roedel94f6d192009-11-24 16:40:02 +01002572 domain = get_domain(dev);
2573 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002574 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002575 else if (IS_ERR(domain))
2576 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002577
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002578 dma_mask = *dev->dma_mask;
2579
Joerg Roedel4da70b92008-06-26 21:28:01 +02002580 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002581
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002582 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002583 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002584 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002585 goto out;
2586
Joerg Roedel17b124b2011-04-06 18:01:35 +02002587 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002588
2589out:
2590 spin_unlock_irqrestore(&domain->lock, flags);
2591
2592 return addr;
2593}
2594
Joerg Roedel431b2a22008-07-11 17:14:22 +02002595/*
2596 * The exported unmap_single function for dma_ops.
2597 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002598static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2599 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002600{
2601 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002602 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002603
Joerg Roedel146a6912008-12-12 15:07:12 +01002604 INC_STATS_COUNTER(cnt_unmap_single);
2605
Joerg Roedel94f6d192009-11-24 16:40:02 +01002606 domain = get_domain(dev);
2607 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002608 return;
2609
Joerg Roedel4da70b92008-06-26 21:28:01 +02002610 spin_lock_irqsave(&domain->lock, flags);
2611
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002612 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002613
Joerg Roedel17b124b2011-04-06 18:01:35 +02002614 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002615
2616 spin_unlock_irqrestore(&domain->lock, flags);
2617}
2618
Joerg Roedel431b2a22008-07-11 17:14:22 +02002619/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002620 * The exported map_sg function for dma_ops (handles scatter-gather
2621 * lists).
2622 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002623static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002624 int nelems, enum dma_data_direction dir,
2625 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002626{
2627 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002628 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002629 int i;
2630 struct scatterlist *s;
2631 phys_addr_t paddr;
2632 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002633 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002634
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002635 INC_STATS_COUNTER(cnt_map_sg);
2636
Joerg Roedel94f6d192009-11-24 16:40:02 +01002637 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002638 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002639 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002640
Joerg Roedel832a90c2008-09-18 15:54:23 +02002641 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002642
Joerg Roedel65b050a2008-06-26 21:28:02 +02002643 spin_lock_irqsave(&domain->lock, flags);
2644
2645 for_each_sg(sglist, s, nelems, i) {
2646 paddr = sg_phys(s);
2647
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002648 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002649 paddr, s->length, dir, false,
2650 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002651
2652 if (s->dma_address) {
2653 s->dma_length = s->length;
2654 mapped_elems++;
2655 } else
2656 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002657 }
2658
Joerg Roedel17b124b2011-04-06 18:01:35 +02002659 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002660
2661out:
2662 spin_unlock_irqrestore(&domain->lock, flags);
2663
2664 return mapped_elems;
2665unmap:
2666 for_each_sg(sglist, s, mapped_elems, i) {
2667 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002668 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002669 s->dma_length, dir);
2670 s->dma_address = s->dma_length = 0;
2671 }
2672
2673 mapped_elems = 0;
2674
2675 goto out;
2676}
2677
Joerg Roedel431b2a22008-07-11 17:14:22 +02002678/*
2679 * The exported map_sg function for dma_ops (handles scatter-gather
2680 * lists).
2681 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002682static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002683 int nelems, enum dma_data_direction dir,
2684 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002685{
2686 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002687 struct protection_domain *domain;
2688 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002689 int i;
2690
Joerg Roedel55877a62008-12-12 15:12:14 +01002691 INC_STATS_COUNTER(cnt_unmap_sg);
2692
Joerg Roedel94f6d192009-11-24 16:40:02 +01002693 domain = get_domain(dev);
2694 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002695 return;
2696
Joerg Roedel65b050a2008-06-26 21:28:02 +02002697 spin_lock_irqsave(&domain->lock, flags);
2698
2699 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002700 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002701 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002702 s->dma_address = s->dma_length = 0;
2703 }
2704
Joerg Roedel17b124b2011-04-06 18:01:35 +02002705 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002706
2707 spin_unlock_irqrestore(&domain->lock, flags);
2708}
2709
Joerg Roedel431b2a22008-07-11 17:14:22 +02002710/*
2711 * The exported alloc_coherent function for dma_ops.
2712 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002713static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002714 dma_addr_t *dma_addr, gfp_t flag,
2715 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002716{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002717 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002718 struct protection_domain *domain;
2719 unsigned long flags;
2720 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002721
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002722 INC_STATS_COUNTER(cnt_alloc_coherent);
2723
Joerg Roedel94f6d192009-11-24 16:40:02 +01002724 domain = get_domain(dev);
2725 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002726 page = alloc_pages(flag, get_order(size));
2727 *dma_addr = page_to_phys(page);
2728 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002729 } else if (IS_ERR(domain))
2730 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002731
Joerg Roedel3b839a52015-04-01 14:58:47 +02002732 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002733 dma_mask = dev->coherent_dma_mask;
2734 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002735 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002736
Joerg Roedel3b839a52015-04-01 14:58:47 +02002737 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2738 if (!page) {
2739 if (!(flag & __GFP_WAIT))
2740 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002741
Joerg Roedel3b839a52015-04-01 14:58:47 +02002742 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2743 get_order(size));
2744 if (!page)
2745 return NULL;
2746 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002747
Joerg Roedel832a90c2008-09-18 15:54:23 +02002748 if (!dma_mask)
2749 dma_mask = *dev->dma_mask;
2750
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002751 spin_lock_irqsave(&domain->lock, flags);
2752
Joerg Roedel3b839a52015-04-01 14:58:47 +02002753 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002754 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002755
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002756 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002757 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002758 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002759 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002760
Joerg Roedel17b124b2011-04-06 18:01:35 +02002761 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002762
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002763 spin_unlock_irqrestore(&domain->lock, flags);
2764
Joerg Roedel3b839a52015-04-01 14:58:47 +02002765 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002766
2767out_free:
2768
Joerg Roedel3b839a52015-04-01 14:58:47 +02002769 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2770 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002771
2772 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002773}
2774
Joerg Roedel431b2a22008-07-11 17:14:22 +02002775/*
2776 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002777 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002778static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002779 void *virt_addr, dma_addr_t dma_addr,
2780 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002781{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002782 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002783 unsigned long flags;
2784 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002785
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002786 INC_STATS_COUNTER(cnt_free_coherent);
2787
Joerg Roedel3b839a52015-04-01 14:58:47 +02002788 page = virt_to_page(virt_addr);
2789 size = PAGE_ALIGN(size);
2790
Joerg Roedel94f6d192009-11-24 16:40:02 +01002791 domain = get_domain(dev);
2792 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002793 goto free_mem;
2794
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002795 spin_lock_irqsave(&domain->lock, flags);
2796
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002797 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002798
Joerg Roedel17b124b2011-04-06 18:01:35 +02002799 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002800
2801 spin_unlock_irqrestore(&domain->lock, flags);
2802
2803free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002804 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2805 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002806}
2807
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002808/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002809 * This function is called by the DMA layer to find out if we can handle a
2810 * particular device. It is part of the dma_ops.
2811 */
2812static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2813{
Joerg Roedel420aef82009-11-23 16:14:57 +01002814 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002815}
2816
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002817static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002818 .alloc = alloc_coherent,
2819 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002820 .map_page = map_page,
2821 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002822 .map_sg = map_sg,
2823 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002824 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002825};
2826
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002827int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002828{
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002829 return bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002830}
2831
Joerg Roedel6631ee92008-06-26 21:28:05 +02002832int __init amd_iommu_init_dma_ops(void)
2833{
Joerg Roedel32302322015-07-28 16:58:50 +02002834 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002835 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002836
Joerg Roedel52717822015-07-28 16:58:51 +02002837 /*
2838 * In case we don't initialize SWIOTLB (actually the common case
2839 * when AMD IOMMU is enabled), make sure there are global
2840 * dma_ops set as a fall-back for devices not handled by this
2841 * driver (for example non-PCI devices).
2842 */
2843 if (!swiotlb)
2844 dma_ops = &nommu_dma_ops;
2845
Joerg Roedel7f265082008-12-12 13:50:21 +01002846 amd_iommu_stats_init();
2847
Joerg Roedel62410ee2012-06-12 16:42:43 +02002848 if (amd_iommu_unmap_flush)
2849 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2850 else
2851 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2852
Joerg Roedel6631ee92008-06-26 21:28:05 +02002853 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002854}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002855
2856/*****************************************************************************
2857 *
2858 * The following functions belong to the exported interface of AMD IOMMU
2859 *
2860 * This interface allows access to lower level functions of the IOMMU
2861 * like protection domain handling and assignement of devices to domains
2862 * which is not possible with the dma_ops interface.
2863 *
2864 *****************************************************************************/
2865
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002866static void cleanup_domain(struct protection_domain *domain)
2867{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002868 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002869 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002870
2871 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2872
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002873 while (!list_empty(&domain->dev_list)) {
2874 entry = list_first_entry(&domain->dev_list,
2875 struct iommu_dev_data, list);
2876 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002877 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002878
2879 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2880}
2881
Joerg Roedel26508152009-08-26 16:52:40 +02002882static void protection_domain_free(struct protection_domain *domain)
2883{
2884 if (!domain)
2885 return;
2886
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002887 del_domain_from_list(domain);
2888
Joerg Roedel26508152009-08-26 16:52:40 +02002889 if (domain->id)
2890 domain_id_free(domain->id);
2891
2892 kfree(domain);
2893}
2894
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002895static int protection_domain_init(struct protection_domain *domain)
2896{
2897 spin_lock_init(&domain->lock);
2898 mutex_init(&domain->api_lock);
2899 domain->id = domain_id_alloc();
2900 if (!domain->id)
2901 return -ENOMEM;
2902 INIT_LIST_HEAD(&domain->dev_list);
2903
2904 return 0;
2905}
2906
Joerg Roedel26508152009-08-26 16:52:40 +02002907static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002908{
2909 struct protection_domain *domain;
2910
2911 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2912 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002913 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002914
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002915 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02002916 goto out_err;
2917
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002918 add_domain_to_list(domain);
2919
Joerg Roedel26508152009-08-26 16:52:40 +02002920 return domain;
2921
2922out_err:
2923 kfree(domain);
2924
2925 return NULL;
2926}
2927
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002928static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2929{
2930 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002931 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002932
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002933 switch (type) {
2934 case IOMMU_DOMAIN_UNMANAGED:
2935 pdomain = protection_domain_alloc();
2936 if (!pdomain)
2937 return NULL;
2938
2939 pdomain->mode = PAGE_MODE_3_LEVEL;
2940 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2941 if (!pdomain->pt_root) {
2942 protection_domain_free(pdomain);
2943 return NULL;
2944 }
2945
2946 pdomain->domain.geometry.aperture_start = 0;
2947 pdomain->domain.geometry.aperture_end = ~0ULL;
2948 pdomain->domain.geometry.force_aperture = true;
2949
2950 break;
2951 case IOMMU_DOMAIN_DMA:
2952 dma_domain = dma_ops_domain_alloc();
2953 if (!dma_domain) {
2954 pr_err("AMD-Vi: Failed to allocate\n");
2955 return NULL;
2956 }
2957 pdomain = &dma_domain->domain;
2958 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02002959 case IOMMU_DOMAIN_IDENTITY:
2960 pdomain = protection_domain_alloc();
2961 if (!pdomain)
2962 return NULL;
2963
2964 pdomain->mode = PAGE_MODE_NONE;
2965 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002966 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002967 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002968 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002969
2970 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002971}
2972
2973static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02002974{
2975 struct protection_domain *domain;
2976
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002977 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01002978 return;
2979
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002980 domain = to_pdomain(dom);
2981
Joerg Roedel98383fc2008-12-02 18:34:12 +01002982 if (domain->dev_cnt > 0)
2983 cleanup_domain(domain);
2984
2985 BUG_ON(domain->dev_cnt != 0);
2986
Joerg Roedel132bd682011-11-17 14:18:46 +01002987 if (domain->mode != PAGE_MODE_NONE)
2988 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002989
Joerg Roedel52815b72011-11-17 17:24:28 +01002990 if (domain->flags & PD_IOMMUV2_MASK)
2991 free_gcr3_table(domain);
2992
Joerg Roedel8b408fe2010-03-08 14:20:07 +01002993 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002994}
2995
Joerg Roedel684f2882008-12-08 12:07:44 +01002996static void amd_iommu_detach_device(struct iommu_domain *dom,
2997 struct device *dev)
2998{
Joerg Roedel657cbb62009-11-23 15:26:46 +01002999 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003000 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003001 u16 devid;
3002
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003003 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003004 return;
3005
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003006 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003007
Joerg Roedel657cbb62009-11-23 15:26:46 +01003008 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003009 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003010
3011 iommu = amd_iommu_rlookup_table[devid];
3012 if (!iommu)
3013 return;
3014
Joerg Roedel684f2882008-12-08 12:07:44 +01003015 iommu_completion_wait(iommu);
3016}
3017
Joerg Roedel01106062008-12-02 19:34:11 +01003018static int amd_iommu_attach_device(struct iommu_domain *dom,
3019 struct device *dev)
3020{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003021 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003022 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003023 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003024 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003025
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003026 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003027 return -EINVAL;
3028
Joerg Roedel657cbb62009-11-23 15:26:46 +01003029 dev_data = dev->archdata.iommu;
3030
Joerg Roedelf62dda62011-06-09 12:55:35 +02003031 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003032 if (!iommu)
3033 return -EINVAL;
3034
Joerg Roedel657cbb62009-11-23 15:26:46 +01003035 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003036 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003037
Joerg Roedel15898bb2009-11-24 15:39:42 +01003038 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003039
3040 iommu_completion_wait(iommu);
3041
Joerg Roedel15898bb2009-11-24 15:39:42 +01003042 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003043}
3044
Joerg Roedel468e2362010-01-21 16:37:36 +01003045static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003046 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003047{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003048 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003049 int prot = 0;
3050 int ret;
3051
Joerg Roedel132bd682011-11-17 14:18:46 +01003052 if (domain->mode == PAGE_MODE_NONE)
3053 return -EINVAL;
3054
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003055 if (iommu_prot & IOMMU_READ)
3056 prot |= IOMMU_PROT_IR;
3057 if (iommu_prot & IOMMU_WRITE)
3058 prot |= IOMMU_PROT_IW;
3059
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003060 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003061 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003062 mutex_unlock(&domain->api_lock);
3063
Joerg Roedel795e74f72010-05-11 17:40:57 +02003064 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003065}
3066
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003067static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3068 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003069{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003070 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003071 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003072
Joerg Roedel132bd682011-11-17 14:18:46 +01003073 if (domain->mode == PAGE_MODE_NONE)
3074 return -EINVAL;
3075
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003076 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003077 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003078 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003079
Joerg Roedel17b124b2011-04-06 18:01:35 +02003080 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003081
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003082 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003083}
3084
Joerg Roedel645c4c82008-12-02 20:05:50 +01003085static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303086 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003087{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003088 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003089 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003090 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003091
Joerg Roedel132bd682011-11-17 14:18:46 +01003092 if (domain->mode == PAGE_MODE_NONE)
3093 return iova;
3094
Joerg Roedel3039ca12015-04-01 14:58:48 +02003095 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003096
Joerg Roedela6d41a42009-09-02 17:08:55 +02003097 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003098 return 0;
3099
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003100 offset_mask = pte_pgsize - 1;
3101 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003102
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003103 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003104}
3105
Joerg Roedelab636482014-09-05 10:48:21 +02003106static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003107{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003108 switch (cap) {
3109 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003110 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003111 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003112 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003113 case IOMMU_CAP_NOEXEC:
3114 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003115 }
3116
Joerg Roedelab636482014-09-05 10:48:21 +02003117 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003118}
3119
Joerg Roedel35cf2482015-05-28 18:41:37 +02003120static void amd_iommu_get_dm_regions(struct device *dev,
3121 struct list_head *head)
3122{
3123 struct unity_map_entry *entry;
3124 u16 devid;
3125
3126 devid = get_device_id(dev);
3127
3128 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3129 struct iommu_dm_region *region;
3130
3131 if (devid < entry->devid_start || devid > entry->devid_end)
3132 continue;
3133
3134 region = kzalloc(sizeof(*region), GFP_KERNEL);
3135 if (!region) {
3136 pr_err("Out of memory allocating dm-regions for %s\n",
3137 dev_name(dev));
3138 return;
3139 }
3140
3141 region->start = entry->address_start;
3142 region->length = entry->address_end - entry->address_start;
3143 if (entry->prot & IOMMU_PROT_IR)
3144 region->prot |= IOMMU_READ;
3145 if (entry->prot & IOMMU_PROT_IW)
3146 region->prot |= IOMMU_WRITE;
3147
3148 list_add_tail(&region->list, head);
3149 }
3150}
3151
3152static void amd_iommu_put_dm_regions(struct device *dev,
3153 struct list_head *head)
3154{
3155 struct iommu_dm_region *entry, *next;
3156
3157 list_for_each_entry_safe(entry, next, head, list)
3158 kfree(entry);
3159}
3160
Thierry Redingb22f6432014-06-27 09:03:12 +02003161static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003162 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003163 .domain_alloc = amd_iommu_domain_alloc,
3164 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003165 .attach_dev = amd_iommu_attach_device,
3166 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003167 .map = amd_iommu_map,
3168 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003169 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003170 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003171 .add_device = amd_iommu_add_device,
3172 .remove_device = amd_iommu_remove_device,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003173 .get_dm_regions = amd_iommu_get_dm_regions,
3174 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003175 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003176};
3177
Joerg Roedel0feae532009-08-26 15:26:30 +02003178/*****************************************************************************
3179 *
3180 * The next functions do a basic initialization of IOMMU for pass through
3181 * mode
3182 *
3183 * In passthrough mode the IOMMU is initialized and enabled but not used for
3184 * DMA-API translation.
3185 *
3186 *****************************************************************************/
3187
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003188/* IOMMUv2 specific functions */
3189int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3190{
3191 return atomic_notifier_chain_register(&ppr_notifier, nb);
3192}
3193EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3194
3195int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3196{
3197 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3198}
3199EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003200
3201void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3202{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003203 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003204 unsigned long flags;
3205
3206 spin_lock_irqsave(&domain->lock, flags);
3207
3208 /* Update data structure */
3209 domain->mode = PAGE_MODE_NONE;
3210 domain->updated = true;
3211
3212 /* Make changes visible to IOMMUs */
3213 update_domain(domain);
3214
3215 /* Page-table is not visible to IOMMU anymore, so free it */
3216 free_pagetable(domain);
3217
3218 spin_unlock_irqrestore(&domain->lock, flags);
3219}
3220EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003221
3222int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3223{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003224 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003225 unsigned long flags;
3226 int levels, ret;
3227
3228 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3229 return -EINVAL;
3230
3231 /* Number of GCR3 table levels required */
3232 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3233 levels += 1;
3234
3235 if (levels > amd_iommu_max_glx_val)
3236 return -EINVAL;
3237
3238 spin_lock_irqsave(&domain->lock, flags);
3239
3240 /*
3241 * Save us all sanity checks whether devices already in the
3242 * domain support IOMMUv2. Just force that the domain has no
3243 * devices attached when it is switched into IOMMUv2 mode.
3244 */
3245 ret = -EBUSY;
3246 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3247 goto out;
3248
3249 ret = -ENOMEM;
3250 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3251 if (domain->gcr3_tbl == NULL)
3252 goto out;
3253
3254 domain->glx = levels;
3255 domain->flags |= PD_IOMMUV2_MASK;
3256 domain->updated = true;
3257
3258 update_domain(domain);
3259
3260 ret = 0;
3261
3262out:
3263 spin_unlock_irqrestore(&domain->lock, flags);
3264
3265 return ret;
3266}
3267EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003268
3269static int __flush_pasid(struct protection_domain *domain, int pasid,
3270 u64 address, bool size)
3271{
3272 struct iommu_dev_data *dev_data;
3273 struct iommu_cmd cmd;
3274 int i, ret;
3275
3276 if (!(domain->flags & PD_IOMMUV2_MASK))
3277 return -EINVAL;
3278
3279 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3280
3281 /*
3282 * IOMMU TLB needs to be flushed before Device TLB to
3283 * prevent device TLB refill from IOMMU TLB
3284 */
3285 for (i = 0; i < amd_iommus_present; ++i) {
3286 if (domain->dev_iommu[i] == 0)
3287 continue;
3288
3289 ret = iommu_queue_command(amd_iommus[i], &cmd);
3290 if (ret != 0)
3291 goto out;
3292 }
3293
3294 /* Wait until IOMMU TLB flushes are complete */
3295 domain_flush_complete(domain);
3296
3297 /* Now flush device TLBs */
3298 list_for_each_entry(dev_data, &domain->dev_list, list) {
3299 struct amd_iommu *iommu;
3300 int qdep;
3301
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003302 /*
3303 There might be non-IOMMUv2 capable devices in an IOMMUv2
3304 * domain.
3305 */
3306 if (!dev_data->ats.enabled)
3307 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003308
3309 qdep = dev_data->ats.qdep;
3310 iommu = amd_iommu_rlookup_table[dev_data->devid];
3311
3312 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3313 qdep, address, size);
3314
3315 ret = iommu_queue_command(iommu, &cmd);
3316 if (ret != 0)
3317 goto out;
3318 }
3319
3320 /* Wait until all device TLBs are flushed */
3321 domain_flush_complete(domain);
3322
3323 ret = 0;
3324
3325out:
3326
3327 return ret;
3328}
3329
3330static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3331 u64 address)
3332{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003333 INC_STATS_COUNTER(invalidate_iotlb);
3334
Joerg Roedel22e266c2011-11-21 15:59:08 +01003335 return __flush_pasid(domain, pasid, address, false);
3336}
3337
3338int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3339 u64 address)
3340{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003341 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003342 unsigned long flags;
3343 int ret;
3344
3345 spin_lock_irqsave(&domain->lock, flags);
3346 ret = __amd_iommu_flush_page(domain, pasid, address);
3347 spin_unlock_irqrestore(&domain->lock, flags);
3348
3349 return ret;
3350}
3351EXPORT_SYMBOL(amd_iommu_flush_page);
3352
3353static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3354{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003355 INC_STATS_COUNTER(invalidate_iotlb_all);
3356
Joerg Roedel22e266c2011-11-21 15:59:08 +01003357 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3358 true);
3359}
3360
3361int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3362{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003363 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003364 unsigned long flags;
3365 int ret;
3366
3367 spin_lock_irqsave(&domain->lock, flags);
3368 ret = __amd_iommu_flush_tlb(domain, pasid);
3369 spin_unlock_irqrestore(&domain->lock, flags);
3370
3371 return ret;
3372}
3373EXPORT_SYMBOL(amd_iommu_flush_tlb);
3374
Joerg Roedelb16137b2011-11-21 16:50:23 +01003375static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3376{
3377 int index;
3378 u64 *pte;
3379
3380 while (true) {
3381
3382 index = (pasid >> (9 * level)) & 0x1ff;
3383 pte = &root[index];
3384
3385 if (level == 0)
3386 break;
3387
3388 if (!(*pte & GCR3_VALID)) {
3389 if (!alloc)
3390 return NULL;
3391
3392 root = (void *)get_zeroed_page(GFP_ATOMIC);
3393 if (root == NULL)
3394 return NULL;
3395
3396 *pte = __pa(root) | GCR3_VALID;
3397 }
3398
3399 root = __va(*pte & PAGE_MASK);
3400
3401 level -= 1;
3402 }
3403
3404 return pte;
3405}
3406
3407static int __set_gcr3(struct protection_domain *domain, int pasid,
3408 unsigned long cr3)
3409{
3410 u64 *pte;
3411
3412 if (domain->mode != PAGE_MODE_NONE)
3413 return -EINVAL;
3414
3415 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3416 if (pte == NULL)
3417 return -ENOMEM;
3418
3419 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3420
3421 return __amd_iommu_flush_tlb(domain, pasid);
3422}
3423
3424static int __clear_gcr3(struct protection_domain *domain, int pasid)
3425{
3426 u64 *pte;
3427
3428 if (domain->mode != PAGE_MODE_NONE)
3429 return -EINVAL;
3430
3431 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3432 if (pte == NULL)
3433 return 0;
3434
3435 *pte = 0;
3436
3437 return __amd_iommu_flush_tlb(domain, pasid);
3438}
3439
3440int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3441 unsigned long cr3)
3442{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003443 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003444 unsigned long flags;
3445 int ret;
3446
3447 spin_lock_irqsave(&domain->lock, flags);
3448 ret = __set_gcr3(domain, pasid, cr3);
3449 spin_unlock_irqrestore(&domain->lock, flags);
3450
3451 return ret;
3452}
3453EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3454
3455int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3456{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003457 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003458 unsigned long flags;
3459 int ret;
3460
3461 spin_lock_irqsave(&domain->lock, flags);
3462 ret = __clear_gcr3(domain, pasid);
3463 spin_unlock_irqrestore(&domain->lock, flags);
3464
3465 return ret;
3466}
3467EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003468
3469int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3470 int status, int tag)
3471{
3472 struct iommu_dev_data *dev_data;
3473 struct amd_iommu *iommu;
3474 struct iommu_cmd cmd;
3475
Joerg Roedel399be2f2011-12-01 16:53:47 +01003476 INC_STATS_COUNTER(complete_ppr);
3477
Joerg Roedelc99afa22011-11-21 18:19:25 +01003478 dev_data = get_dev_data(&pdev->dev);
3479 iommu = amd_iommu_rlookup_table[dev_data->devid];
3480
3481 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3482 tag, dev_data->pri_tlp);
3483
3484 return iommu_queue_command(iommu, &cmd);
3485}
3486EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003487
3488struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3489{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003490 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003491
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003492 pdomain = get_domain(&pdev->dev);
3493 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003494 return NULL;
3495
3496 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003497 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003498 return NULL;
3499
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003500 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003501}
3502EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003503
3504void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3505{
3506 struct iommu_dev_data *dev_data;
3507
3508 if (!amd_iommu_v2_supported())
3509 return;
3510
3511 dev_data = get_dev_data(&pdev->dev);
3512 dev_data->errata |= (1 << erratum);
3513}
3514EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003515
3516int amd_iommu_device_info(struct pci_dev *pdev,
3517 struct amd_iommu_device_info *info)
3518{
3519 int max_pasids;
3520 int pos;
3521
3522 if (pdev == NULL || info == NULL)
3523 return -EINVAL;
3524
3525 if (!amd_iommu_v2_supported())
3526 return -EINVAL;
3527
3528 memset(info, 0, sizeof(*info));
3529
3530 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3531 if (pos)
3532 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3533
3534 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3535 if (pos)
3536 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3537
3538 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3539 if (pos) {
3540 int features;
3541
3542 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3543 max_pasids = min(max_pasids, (1 << 20));
3544
3545 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3546 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3547
3548 features = pci_pasid_features(pdev);
3549 if (features & PCI_PASID_CAP_EXEC)
3550 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3551 if (features & PCI_PASID_CAP_PRIV)
3552 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3553 }
3554
3555 return 0;
3556}
3557EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003558
3559#ifdef CONFIG_IRQ_REMAP
3560
3561/*****************************************************************************
3562 *
3563 * Interrupt Remapping Implementation
3564 *
3565 *****************************************************************************/
3566
3567union irte {
3568 u32 val;
3569 struct {
3570 u32 valid : 1,
3571 no_fault : 1,
3572 int_type : 3,
3573 rq_eoi : 1,
3574 dm : 1,
3575 rsvd_1 : 1,
3576 destination : 8,
3577 vector : 8,
3578 rsvd_2 : 8;
3579 } fields;
3580};
3581
Jiang Liu9c724962015-04-14 10:29:52 +08003582struct irq_2_irte {
3583 u16 devid; /* Device ID for IRTE table */
3584 u16 index; /* Index into IRTE table*/
3585};
3586
Jiang Liu7c71d302015-04-13 14:11:33 +08003587struct amd_ir_data {
3588 struct irq_2_irte irq_2_irte;
3589 union irte irte_entry;
3590 union {
3591 struct msi_msg msi_entry;
3592 };
3593};
3594
3595static struct irq_chip amd_ir_chip;
3596
Joerg Roedel2b324502012-06-21 16:29:10 +02003597#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3598#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3599#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3600#define DTE_IRQ_REMAP_ENABLE 1ULL
3601
3602static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3603{
3604 u64 dte;
3605
3606 dte = amd_iommu_dev_table[devid].data[2];
3607 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3608 dte |= virt_to_phys(table->table);
3609 dte |= DTE_IRQ_REMAP_INTCTL;
3610 dte |= DTE_IRQ_TABLE_LEN;
3611 dte |= DTE_IRQ_REMAP_ENABLE;
3612
3613 amd_iommu_dev_table[devid].data[2] = dte;
3614}
3615
3616#define IRTE_ALLOCATED (~1U)
3617
3618static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3619{
3620 struct irq_remap_table *table = NULL;
3621 struct amd_iommu *iommu;
3622 unsigned long flags;
3623 u16 alias;
3624
3625 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3626
3627 iommu = amd_iommu_rlookup_table[devid];
3628 if (!iommu)
3629 goto out_unlock;
3630
3631 table = irq_lookup_table[devid];
3632 if (table)
3633 goto out;
3634
3635 alias = amd_iommu_alias_table[devid];
3636 table = irq_lookup_table[alias];
3637 if (table) {
3638 irq_lookup_table[devid] = table;
3639 set_dte_irq_entry(devid, table);
3640 iommu_flush_dte(iommu, devid);
3641 goto out;
3642 }
3643
3644 /* Nothing there yet, allocate new irq remapping table */
3645 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3646 if (!table)
3647 goto out;
3648
Joerg Roedel197887f2013-04-09 21:14:08 +02003649 /* Initialize table spin-lock */
3650 spin_lock_init(&table->lock);
3651
Joerg Roedel2b324502012-06-21 16:29:10 +02003652 if (ioapic)
3653 /* Keep the first 32 indexes free for IOAPIC interrupts */
3654 table->min_index = 32;
3655
3656 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3657 if (!table->table) {
3658 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003659 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003660 goto out;
3661 }
3662
3663 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3664
3665 if (ioapic) {
3666 int i;
3667
3668 for (i = 0; i < 32; ++i)
3669 table->table[i] = IRTE_ALLOCATED;
3670 }
3671
3672 irq_lookup_table[devid] = table;
3673 set_dte_irq_entry(devid, table);
3674 iommu_flush_dte(iommu, devid);
3675 if (devid != alias) {
3676 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003677 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003678 iommu_flush_dte(iommu, alias);
3679 }
3680
3681out:
3682 iommu_completion_wait(iommu);
3683
3684out_unlock:
3685 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3686
3687 return table;
3688}
3689
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003690static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003691{
3692 struct irq_remap_table *table;
3693 unsigned long flags;
3694 int index, c;
3695
3696 table = get_irq_table(devid, false);
3697 if (!table)
3698 return -ENODEV;
3699
3700 spin_lock_irqsave(&table->lock, flags);
3701
3702 /* Scan table for free entries */
3703 for (c = 0, index = table->min_index;
3704 index < MAX_IRQS_PER_TABLE;
3705 ++index) {
3706 if (table->table[index] == 0)
3707 c += 1;
3708 else
3709 c = 0;
3710
3711 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003712 for (; c != 0; --c)
3713 table->table[index - c + 1] = IRTE_ALLOCATED;
3714
3715 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003716 goto out;
3717 }
3718 }
3719
3720 index = -ENOSPC;
3721
3722out:
3723 spin_unlock_irqrestore(&table->lock, flags);
3724
3725 return index;
3726}
3727
Joerg Roedel2b324502012-06-21 16:29:10 +02003728static int modify_irte(u16 devid, int index, union irte irte)
3729{
3730 struct irq_remap_table *table;
3731 struct amd_iommu *iommu;
3732 unsigned long flags;
3733
3734 iommu = amd_iommu_rlookup_table[devid];
3735 if (iommu == NULL)
3736 return -EINVAL;
3737
3738 table = get_irq_table(devid, false);
3739 if (!table)
3740 return -ENOMEM;
3741
3742 spin_lock_irqsave(&table->lock, flags);
3743 table->table[index] = irte.val;
3744 spin_unlock_irqrestore(&table->lock, flags);
3745
3746 iommu_flush_irt(iommu, devid);
3747 iommu_completion_wait(iommu);
3748
3749 return 0;
3750}
3751
3752static void free_irte(u16 devid, int index)
3753{
3754 struct irq_remap_table *table;
3755 struct amd_iommu *iommu;
3756 unsigned long flags;
3757
3758 iommu = amd_iommu_rlookup_table[devid];
3759 if (iommu == NULL)
3760 return;
3761
3762 table = get_irq_table(devid, false);
3763 if (!table)
3764 return;
3765
3766 spin_lock_irqsave(&table->lock, flags);
3767 table->table[index] = 0;
3768 spin_unlock_irqrestore(&table->lock, flags);
3769
3770 iommu_flush_irt(iommu, devid);
3771 iommu_completion_wait(iommu);
3772}
3773
Jiang Liu7c71d302015-04-13 14:11:33 +08003774static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003775{
Jiang Liu7c71d302015-04-13 14:11:33 +08003776 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003777
Jiang Liu7c71d302015-04-13 14:11:33 +08003778 switch (info->type) {
3779 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3780 devid = get_ioapic_devid(info->ioapic_id);
3781 break;
3782 case X86_IRQ_ALLOC_TYPE_HPET:
3783 devid = get_hpet_devid(info->hpet_id);
3784 break;
3785 case X86_IRQ_ALLOC_TYPE_MSI:
3786 case X86_IRQ_ALLOC_TYPE_MSIX:
3787 devid = get_device_id(&info->msi_dev->dev);
3788 break;
3789 default:
3790 BUG_ON(1);
3791 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003792 }
3793
Jiang Liu7c71d302015-04-13 14:11:33 +08003794 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003795}
3796
Jiang Liu7c71d302015-04-13 14:11:33 +08003797static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003798{
Jiang Liu7c71d302015-04-13 14:11:33 +08003799 struct amd_iommu *iommu;
3800 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003801
Jiang Liu7c71d302015-04-13 14:11:33 +08003802 if (!info)
3803 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003804
Jiang Liu7c71d302015-04-13 14:11:33 +08003805 devid = get_devid(info);
3806 if (devid >= 0) {
3807 iommu = amd_iommu_rlookup_table[devid];
3808 if (iommu)
3809 return iommu->ir_domain;
3810 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003811
Jiang Liu7c71d302015-04-13 14:11:33 +08003812 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003813}
3814
Jiang Liu7c71d302015-04-13 14:11:33 +08003815static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003816{
Jiang Liu7c71d302015-04-13 14:11:33 +08003817 struct amd_iommu *iommu;
3818 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003819
Jiang Liu7c71d302015-04-13 14:11:33 +08003820 if (!info)
3821 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003822
Jiang Liu7c71d302015-04-13 14:11:33 +08003823 switch (info->type) {
3824 case X86_IRQ_ALLOC_TYPE_MSI:
3825 case X86_IRQ_ALLOC_TYPE_MSIX:
3826 devid = get_device_id(&info->msi_dev->dev);
3827 if (devid >= 0) {
3828 iommu = amd_iommu_rlookup_table[devid];
3829 if (iommu)
3830 return iommu->msi_domain;
3831 }
3832 break;
3833 default:
3834 break;
3835 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003836
Jiang Liu7c71d302015-04-13 14:11:33 +08003837 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003838}
3839
Joerg Roedel6b474b82012-06-26 16:46:04 +02003840struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003841 .prepare = amd_iommu_prepare,
3842 .enable = amd_iommu_enable,
3843 .disable = amd_iommu_disable,
3844 .reenable = amd_iommu_reenable,
3845 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003846 .get_ir_irq_domain = get_ir_irq_domain,
3847 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003848};
Jiang Liu7c71d302015-04-13 14:11:33 +08003849
3850static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3851 struct irq_cfg *irq_cfg,
3852 struct irq_alloc_info *info,
3853 int devid, int index, int sub_handle)
3854{
3855 struct irq_2_irte *irte_info = &data->irq_2_irte;
3856 struct msi_msg *msg = &data->msi_entry;
3857 union irte *irte = &data->irte_entry;
3858 struct IO_APIC_route_entry *entry;
3859
Jiang Liu7c71d302015-04-13 14:11:33 +08003860 data->irq_2_irte.devid = devid;
3861 data->irq_2_irte.index = index + sub_handle;
3862
3863 /* Setup IRTE for IOMMU */
3864 irte->val = 0;
3865 irte->fields.vector = irq_cfg->vector;
3866 irte->fields.int_type = apic->irq_delivery_mode;
3867 irte->fields.destination = irq_cfg->dest_apicid;
3868 irte->fields.dm = apic->irq_dest_mode;
3869 irte->fields.valid = 1;
3870
3871 switch (info->type) {
3872 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3873 /* Setup IOAPIC entry */
3874 entry = info->ioapic_entry;
3875 info->ioapic_entry = NULL;
3876 memset(entry, 0, sizeof(*entry));
3877 entry->vector = index;
3878 entry->mask = 0;
3879 entry->trigger = info->ioapic_trigger;
3880 entry->polarity = info->ioapic_polarity;
3881 /* Mask level triggered irqs. */
3882 if (info->ioapic_trigger)
3883 entry->mask = 1;
3884 break;
3885
3886 case X86_IRQ_ALLOC_TYPE_HPET:
3887 case X86_IRQ_ALLOC_TYPE_MSI:
3888 case X86_IRQ_ALLOC_TYPE_MSIX:
3889 msg->address_hi = MSI_ADDR_BASE_HI;
3890 msg->address_lo = MSI_ADDR_BASE_LO;
3891 msg->data = irte_info->index;
3892 break;
3893
3894 default:
3895 BUG_ON(1);
3896 break;
3897 }
3898}
3899
3900static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
3901 unsigned int nr_irqs, void *arg)
3902{
3903 struct irq_alloc_info *info = arg;
3904 struct irq_data *irq_data;
3905 struct amd_ir_data *data;
3906 struct irq_cfg *cfg;
3907 int i, ret, devid;
3908 int index = -1;
3909
3910 if (!info)
3911 return -EINVAL;
3912 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
3913 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
3914 return -EINVAL;
3915
3916 /*
3917 * With IRQ remapping enabled, don't need contiguous CPU vectors
3918 * to support multiple MSI interrupts.
3919 */
3920 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
3921 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
3922
3923 devid = get_devid(info);
3924 if (devid < 0)
3925 return -EINVAL;
3926
3927 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
3928 if (ret < 0)
3929 return ret;
3930
Jiang Liu7c71d302015-04-13 14:11:33 +08003931 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
3932 if (get_irq_table(devid, true))
3933 index = info->ioapic_pin;
3934 else
3935 ret = -ENOMEM;
3936 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003937 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08003938 }
3939 if (index < 0) {
3940 pr_warn("Failed to allocate IRTE\n");
Jiang Liu7c71d302015-04-13 14:11:33 +08003941 goto out_free_parent;
3942 }
3943
3944 for (i = 0; i < nr_irqs; i++) {
3945 irq_data = irq_domain_get_irq_data(domain, virq + i);
3946 cfg = irqd_cfg(irq_data);
3947 if (!irq_data || !cfg) {
3948 ret = -EINVAL;
3949 goto out_free_data;
3950 }
3951
Joerg Roedela130e692015-08-13 11:07:25 +02003952 ret = -ENOMEM;
3953 data = kzalloc(sizeof(*data), GFP_KERNEL);
3954 if (!data)
3955 goto out_free_data;
3956
Jiang Liu7c71d302015-04-13 14:11:33 +08003957 irq_data->hwirq = (devid << 16) + i;
3958 irq_data->chip_data = data;
3959 irq_data->chip = &amd_ir_chip;
3960 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
3961 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
3962 }
Joerg Roedela130e692015-08-13 11:07:25 +02003963
Jiang Liu7c71d302015-04-13 14:11:33 +08003964 return 0;
3965
3966out_free_data:
3967 for (i--; i >= 0; i--) {
3968 irq_data = irq_domain_get_irq_data(domain, virq + i);
3969 if (irq_data)
3970 kfree(irq_data->chip_data);
3971 }
3972 for (i = 0; i < nr_irqs; i++)
3973 free_irte(devid, index + i);
3974out_free_parent:
3975 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3976 return ret;
3977}
3978
3979static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
3980 unsigned int nr_irqs)
3981{
3982 struct irq_2_irte *irte_info;
3983 struct irq_data *irq_data;
3984 struct amd_ir_data *data;
3985 int i;
3986
3987 for (i = 0; i < nr_irqs; i++) {
3988 irq_data = irq_domain_get_irq_data(domain, virq + i);
3989 if (irq_data && irq_data->chip_data) {
3990 data = irq_data->chip_data;
3991 irte_info = &data->irq_2_irte;
3992 free_irte(irte_info->devid, irte_info->index);
3993 kfree(data);
3994 }
3995 }
3996 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3997}
3998
3999static void irq_remapping_activate(struct irq_domain *domain,
4000 struct irq_data *irq_data)
4001{
4002 struct amd_ir_data *data = irq_data->chip_data;
4003 struct irq_2_irte *irte_info = &data->irq_2_irte;
4004
4005 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4006}
4007
4008static void irq_remapping_deactivate(struct irq_domain *domain,
4009 struct irq_data *irq_data)
4010{
4011 struct amd_ir_data *data = irq_data->chip_data;
4012 struct irq_2_irte *irte_info = &data->irq_2_irte;
4013 union irte entry;
4014
4015 entry.val = 0;
4016 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4017}
4018
4019static struct irq_domain_ops amd_ir_domain_ops = {
4020 .alloc = irq_remapping_alloc,
4021 .free = irq_remapping_free,
4022 .activate = irq_remapping_activate,
4023 .deactivate = irq_remapping_deactivate,
4024};
4025
4026static int amd_ir_set_affinity(struct irq_data *data,
4027 const struct cpumask *mask, bool force)
4028{
4029 struct amd_ir_data *ir_data = data->chip_data;
4030 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4031 struct irq_cfg *cfg = irqd_cfg(data);
4032 struct irq_data *parent = data->parent_data;
4033 int ret;
4034
4035 ret = parent->chip->irq_set_affinity(parent, mask, force);
4036 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4037 return ret;
4038
4039 /*
4040 * Atomically updates the IRTE with the new destination, vector
4041 * and flushes the interrupt entry cache.
4042 */
4043 ir_data->irte_entry.fields.vector = cfg->vector;
4044 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4045 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4046
4047 /*
4048 * After this point, all the interrupts will start arriving
4049 * at the new destination. So, time to cleanup the previous
4050 * vector allocation.
4051 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004052 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004053
4054 return IRQ_SET_MASK_OK_DONE;
4055}
4056
4057static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4058{
4059 struct amd_ir_data *ir_data = irq_data->chip_data;
4060
4061 *msg = ir_data->msi_entry;
4062}
4063
4064static struct irq_chip amd_ir_chip = {
4065 .irq_ack = ir_ack_apic_edge,
4066 .irq_set_affinity = amd_ir_set_affinity,
4067 .irq_compose_msi_msg = ir_compose_msi_msg,
4068};
4069
4070int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4071{
4072 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4073 if (!iommu->ir_domain)
4074 return -ENOMEM;
4075
4076 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4077 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4078
4079 return 0;
4080}
Joerg Roedel2b324502012-06-21 16:29:10 +02004081#endif