blob: 584ea85ab2f06aaf421fe840ae3c5a97932f3a58 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedelb6c02712008-06-26 21:27:53 +02003 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020034#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020035#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090036#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010037#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020038#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020039
40#include "amd_iommu_proto.h"
41#include "amd_iommu_types.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020042
43#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
44
Joerg Roedel815b33f2011-04-06 17:26:49 +020045#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020046
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020047/*
48 * This bitmap is used to advertise the page sizes our hardware support
49 * to the IOMMU core, which will then use this information to split
50 * physically contiguous memory regions it is mapping into page sizes
51 * that we support.
52 *
53 * Traditionally the IOMMU core just handed us the mappings directly,
54 * after making sure the size is an order of a 4KiB page and that the
55 * mapping has natural alignment.
56 *
57 * To retain this behavior, we currently advertise that we support
58 * all page sizes that are an order of 4KiB.
59 *
60 * If at some point we'd like to utilize the IOMMU core's new behavior,
61 * we could change this to advertise the real page sizes we support.
62 */
63#define AMD_IOMMU_PGSIZES (~0xFFFUL)
64
Joerg Roedelb6c02712008-06-26 21:27:53 +020065static DEFINE_RWLOCK(amd_iommu_devtable_lock);
66
Joerg Roedelbd60b732008-09-11 10:24:48 +020067/* A list of preallocated protection domains */
68static LIST_HEAD(iommu_pd_list);
69static DEFINE_SPINLOCK(iommu_pd_list_lock);
70
Joerg Roedel8fa5f802011-06-09 12:24:45 +020071/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
Joerg Roedel0feae532009-08-26 15:26:30 +020075/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
79static struct protection_domain *pt_domain;
80
Joerg Roedel26961ef2008-12-03 17:00:17 +010081static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010082
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010083static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010084int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085
Joerg Roedelac1534a2012-06-21 14:52:40 +020086static struct dma_map_ops amd_iommu_dma_ops;
87
Joerg Roedel431b2a22008-07-11 17:14:22 +020088/*
89 * general struct to manage commands send to an IOMMU
90 */
Joerg Roedeld6449532008-07-11 17:14:28 +020091struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020092 u32 data[4];
93};
94
Joerg Roedel04bfdd82009-09-02 16:00:23 +020095static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +010096static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -070097
Joerg Roedel15898bb2009-11-24 15:39:42 +010098/****************************************************************************
99 *
100 * Helper functions
101 *
102 ****************************************************************************/
103
Joerg Roedelf62dda62011-06-09 12:55:35 +0200104static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200105{
106 struct iommu_dev_data *dev_data;
107 unsigned long flags;
108
109 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
110 if (!dev_data)
111 return NULL;
112
Joerg Roedelf62dda62011-06-09 12:55:35 +0200113 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200114 atomic_set(&dev_data->bind, 0);
115
116 spin_lock_irqsave(&dev_data_list_lock, flags);
117 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
118 spin_unlock_irqrestore(&dev_data_list_lock, flags);
119
120 return dev_data;
121}
122
123static void free_dev_data(struct iommu_dev_data *dev_data)
124{
125 unsigned long flags;
126
127 spin_lock_irqsave(&dev_data_list_lock, flags);
128 list_del(&dev_data->dev_data_list);
129 spin_unlock_irqrestore(&dev_data_list_lock, flags);
130
131 kfree(dev_data);
132}
133
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200134static struct iommu_dev_data *search_dev_data(u16 devid)
135{
136 struct iommu_dev_data *dev_data;
137 unsigned long flags;
138
139 spin_lock_irqsave(&dev_data_list_lock, flags);
140 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
141 if (dev_data->devid == devid)
142 goto out_unlock;
143 }
144
145 dev_data = NULL;
146
147out_unlock:
148 spin_unlock_irqrestore(&dev_data_list_lock, flags);
149
150 return dev_data;
151}
152
153static struct iommu_dev_data *find_dev_data(u16 devid)
154{
155 struct iommu_dev_data *dev_data;
156
157 dev_data = search_dev_data(devid);
158
159 if (dev_data == NULL)
160 dev_data = alloc_dev_data(devid);
161
162 return dev_data;
163}
164
Joerg Roedel15898bb2009-11-24 15:39:42 +0100165static inline u16 get_device_id(struct device *dev)
166{
167 struct pci_dev *pdev = to_pci_dev(dev);
168
169 return calc_devid(pdev->bus->number, pdev->devfn);
170}
171
Joerg Roedel657cbb62009-11-23 15:26:46 +0100172static struct iommu_dev_data *get_dev_data(struct device *dev)
173{
174 return dev->archdata.iommu;
175}
176
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100177static bool pci_iommuv2_capable(struct pci_dev *pdev)
178{
179 static const int caps[] = {
180 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100181 PCI_EXT_CAP_ID_PRI,
182 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100183 };
184 int i, pos;
185
186 for (i = 0; i < 3; ++i) {
187 pos = pci_find_ext_capability(pdev, caps[i]);
188 if (pos == 0)
189 return false;
190 }
191
192 return true;
193}
194
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100195static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
196{
197 struct iommu_dev_data *dev_data;
198
199 dev_data = get_dev_data(&pdev->dev);
200
201 return dev_data->errata & (1 << erratum) ? true : false;
202}
203
Joerg Roedel71c70982009-11-24 16:43:06 +0100204/*
205 * In this function the list of preallocated protection domains is traversed to
206 * find the domain for a specific device
207 */
208static struct dma_ops_domain *find_protection_domain(u16 devid)
209{
210 struct dma_ops_domain *entry, *ret = NULL;
211 unsigned long flags;
212 u16 alias = amd_iommu_alias_table[devid];
213
214 if (list_empty(&iommu_pd_list))
215 return NULL;
216
217 spin_lock_irqsave(&iommu_pd_list_lock, flags);
218
219 list_for_each_entry(entry, &iommu_pd_list, list) {
220 if (entry->target_dev == devid ||
221 entry->target_dev == alias) {
222 ret = entry;
223 break;
224 }
225 }
226
227 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
228
229 return ret;
230}
231
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100232/*
233 * This function checks if the driver got a valid device from the caller to
234 * avoid dereferencing invalid pointers.
235 */
236static bool check_device(struct device *dev)
237{
238 u16 devid;
239
240 if (!dev || !dev->dma_mask)
241 return false;
242
243 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100244 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100245 return false;
246
247 devid = get_device_id(dev);
248
249 /* Out of our scope? */
250 if (devid > amd_iommu_last_bdf)
251 return false;
252
253 if (amd_iommu_rlookup_table[devid] == NULL)
254 return false;
255
256 return true;
257}
258
Joerg Roedel657cbb62009-11-23 15:26:46 +0100259static int iommu_init_device(struct device *dev)
260{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100261 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100262 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200263 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100264
265 if (dev->archdata.iommu)
266 return 0;
267
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200268 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100269 if (!dev_data)
270 return -ENOMEM;
271
Joerg Roedelf62dda62011-06-09 12:55:35 +0200272 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200273 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200274 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100275
Joerg Roedel71f77582011-06-09 19:03:15 +0200276 alias_data = find_dev_data(alias);
277 if (alias_data == NULL) {
278 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
279 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200280 free_dev_data(dev_data);
281 return -ENOTSUPP;
282 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200283 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200284 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100285
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100286 if (pci_iommuv2_capable(pdev)) {
287 struct amd_iommu *iommu;
288
289 iommu = amd_iommu_rlookup_table[dev_data->devid];
290 dev_data->iommu_v2 = iommu->is_iommu_v2;
291 }
292
Joerg Roedel657cbb62009-11-23 15:26:46 +0100293 dev->archdata.iommu = dev_data;
294
Joerg Roedel657cbb62009-11-23 15:26:46 +0100295 return 0;
296}
297
Joerg Roedel26018872011-06-06 16:50:14 +0200298static void iommu_ignore_device(struct device *dev)
299{
300 u16 devid, alias;
301
302 devid = get_device_id(dev);
303 alias = amd_iommu_alias_table[devid];
304
305 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
306 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
307
308 amd_iommu_rlookup_table[devid] = NULL;
309 amd_iommu_rlookup_table[alias] = NULL;
310}
311
Joerg Roedel657cbb62009-11-23 15:26:46 +0100312static void iommu_uninit_device(struct device *dev)
313{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200314 /*
315 * Nothing to do here - we keep dev_data around for unplugged devices
316 * and reuse it when the device is re-plugged - not doing so would
317 * introduce a ton of races.
318 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100319}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100320
321void __init amd_iommu_uninit_devices(void)
322{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200323 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100324 struct pci_dev *pdev = NULL;
325
326 for_each_pci_dev(pdev) {
327
328 if (!check_device(&pdev->dev))
329 continue;
330
331 iommu_uninit_device(&pdev->dev);
332 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200333
334 /* Free all of our dev_data structures */
335 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
336 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100337}
338
339int __init amd_iommu_init_devices(void)
340{
341 struct pci_dev *pdev = NULL;
342 int ret = 0;
343
344 for_each_pci_dev(pdev) {
345
346 if (!check_device(&pdev->dev))
347 continue;
348
349 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200350 if (ret == -ENOTSUPP)
351 iommu_ignore_device(&pdev->dev);
352 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100353 goto out_free;
354 }
355
356 return 0;
357
358out_free:
359
360 amd_iommu_uninit_devices();
361
362 return ret;
363}
Joerg Roedel7f265082008-12-12 13:50:21 +0100364#ifdef CONFIG_AMD_IOMMU_STATS
365
366/*
367 * Initialization code for statistics collection
368 */
369
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100370DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100371DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100372DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100373DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100374DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100375DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100376DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100377DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100378DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100379DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100380DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100381DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100382DECLARE_STATS_COUNTER(complete_ppr);
383DECLARE_STATS_COUNTER(invalidate_iotlb);
384DECLARE_STATS_COUNTER(invalidate_iotlb_all);
385DECLARE_STATS_COUNTER(pri_requests);
386
Joerg Roedel7f265082008-12-12 13:50:21 +0100387static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100388static struct dentry *de_fflush;
389
390static void amd_iommu_stats_add(struct __iommu_counter *cnt)
391{
392 if (stats_dir == NULL)
393 return;
394
395 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
396 &cnt->value);
397}
398
399static void amd_iommu_stats_init(void)
400{
401 stats_dir = debugfs_create_dir("amd-iommu", NULL);
402 if (stats_dir == NULL)
403 return;
404
Joerg Roedel7f265082008-12-12 13:50:21 +0100405 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300406 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100407
408 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100409 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100410 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100411 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100412 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100413 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100414 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100415 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100416 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100417 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100418 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100419 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100420 amd_iommu_stats_add(&complete_ppr);
421 amd_iommu_stats_add(&invalidate_iotlb);
422 amd_iommu_stats_add(&invalidate_iotlb_all);
423 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100424}
425
426#endif
427
Joerg Roedel431b2a22008-07-11 17:14:22 +0200428/****************************************************************************
429 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200430 * Interrupt handling functions
431 *
432 ****************************************************************************/
433
Joerg Roedele3e59872009-09-03 14:02:10 +0200434static void dump_dte_entry(u16 devid)
435{
436 int i;
437
Joerg Roedelee6c2862011-11-09 12:06:03 +0100438 for (i = 0; i < 4; ++i)
439 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200440 amd_iommu_dev_table[devid].data[i]);
441}
442
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200443static void dump_command(unsigned long phys_addr)
444{
445 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
446 int i;
447
448 for (i = 0; i < 4; ++i)
449 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
450}
451
Joerg Roedela345b232009-09-03 15:01:43 +0200452static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200453{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200454 int type, devid, domid, flags;
455 volatile u32 *event = __evt;
456 int count = 0;
457 u64 address;
458
459retry:
460 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
461 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
462 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
463 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
464 address = (u64)(((u64)event[3]) << 32) | event[2];
465
466 if (type == 0) {
467 /* Did we hit the erratum? */
468 if (++count == LOOP_TIMEOUT) {
469 pr_err("AMD-Vi: No event written to event log\n");
470 return;
471 }
472 udelay(1);
473 goto retry;
474 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200475
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200476 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200477
478 switch (type) {
479 case EVENT_TYPE_ILL_DEV:
480 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
481 "address=0x%016llx flags=0x%04x]\n",
482 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
483 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200484 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200485 break;
486 case EVENT_TYPE_IO_FAULT:
487 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
488 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
489 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
490 domid, address, flags);
491 break;
492 case EVENT_TYPE_DEV_TAB_ERR:
493 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
494 "address=0x%016llx flags=0x%04x]\n",
495 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
496 address, flags);
497 break;
498 case EVENT_TYPE_PAGE_TAB_ERR:
499 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
500 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
501 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
502 domid, address, flags);
503 break;
504 case EVENT_TYPE_ILL_CMD:
505 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200506 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200507 break;
508 case EVENT_TYPE_CMD_HARD_ERR:
509 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
510 "flags=0x%04x]\n", address, flags);
511 break;
512 case EVENT_TYPE_IOTLB_INV_TO:
513 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
514 "address=0x%016llx]\n",
515 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
516 address);
517 break;
518 case EVENT_TYPE_INV_DEV_REQ:
519 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
520 "address=0x%016llx flags=0x%04x]\n",
521 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
522 address, flags);
523 break;
524 default:
525 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
526 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200527
528 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200529}
530
531static void iommu_poll_events(struct amd_iommu *iommu)
532{
533 u32 head, tail;
534 unsigned long flags;
535
536 spin_lock_irqsave(&iommu->lock, flags);
537
538 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
539 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
540
541 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200542 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200543 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
544 }
545
546 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
547
548 spin_unlock_irqrestore(&iommu->lock, flags);
549}
550
Joerg Roedeleee53532012-06-01 15:20:23 +0200551static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100552{
553 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100554
Joerg Roedel399be2f2011-12-01 16:53:47 +0100555 INC_STATS_COUNTER(pri_requests);
556
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100557 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
558 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
559 return;
560 }
561
562 fault.address = raw[1];
563 fault.pasid = PPR_PASID(raw[0]);
564 fault.device_id = PPR_DEVID(raw[0]);
565 fault.tag = PPR_TAG(raw[0]);
566 fault.flags = PPR_FLAGS(raw[0]);
567
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100568 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
569}
570
571static void iommu_poll_ppr_log(struct amd_iommu *iommu)
572{
573 unsigned long flags;
574 u32 head, tail;
575
576 if (iommu->ppr_log == NULL)
577 return;
578
Joerg Roedeleee53532012-06-01 15:20:23 +0200579 /* enable ppr interrupts again */
580 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
581
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100582 spin_lock_irqsave(&iommu->lock, flags);
583
584 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
585 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
586
587 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200588 volatile u64 *raw;
589 u64 entry[2];
590 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100591
Joerg Roedeleee53532012-06-01 15:20:23 +0200592 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100593
Joerg Roedeleee53532012-06-01 15:20:23 +0200594 /*
595 * Hardware bug: Interrupt may arrive before the entry is
596 * written to memory. If this happens we need to wait for the
597 * entry to arrive.
598 */
599 for (i = 0; i < LOOP_TIMEOUT; ++i) {
600 if (PPR_REQ_TYPE(raw[0]) != 0)
601 break;
602 udelay(1);
603 }
604
605 /* Avoid memcpy function-call overhead */
606 entry[0] = raw[0];
607 entry[1] = raw[1];
608
609 /*
610 * To detect the hardware bug we need to clear the entry
611 * back to zero.
612 */
613 raw[0] = raw[1] = 0UL;
614
615 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100616 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
617 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200618
619 /*
620 * Release iommu->lock because ppr-handling might need to
621 * re-aquire it
622 */
623 spin_unlock_irqrestore(&iommu->lock, flags);
624
625 /* Handle PPR entry */
626 iommu_handle_ppr_entry(iommu, entry);
627
628 spin_lock_irqsave(&iommu->lock, flags);
629
630 /* Refresh ring-buffer information */
631 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100632 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
633 }
634
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100635 spin_unlock_irqrestore(&iommu->lock, flags);
636}
637
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200638irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200639{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200640 struct amd_iommu *iommu;
641
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100642 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200643 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100644 iommu_poll_ppr_log(iommu);
645 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200646
647 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200648}
649
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200650irqreturn_t amd_iommu_int_handler(int irq, void *data)
651{
652 return IRQ_WAKE_THREAD;
653}
654
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200655/****************************************************************************
656 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200657 * IOMMU command queuing functions
658 *
659 ****************************************************************************/
660
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200661static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200662{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200663 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200664
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200665 while (*sem == 0 && i < LOOP_TIMEOUT) {
666 udelay(1);
667 i += 1;
668 }
669
670 if (i == LOOP_TIMEOUT) {
671 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
672 return -EIO;
673 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200674
675 return 0;
676}
677
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200678static void copy_cmd_to_buffer(struct amd_iommu *iommu,
679 struct iommu_cmd *cmd,
680 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200681{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200682 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200683
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200684 target = iommu->cmd_buf + tail;
685 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200686
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200687 /* Copy command to buffer */
688 memcpy(target, cmd, sizeof(*cmd));
689
690 /* Tell the IOMMU about it */
691 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
692}
693
Joerg Roedel815b33f2011-04-06 17:26:49 +0200694static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200695{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200696 WARN_ON(address & 0x7ULL);
697
Joerg Roedelded46732011-04-06 10:53:48 +0200698 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200699 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
700 cmd->data[1] = upper_32_bits(__pa(address));
701 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200702 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
703}
704
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200705static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
706{
707 memset(cmd, 0, sizeof(*cmd));
708 cmd->data[0] = devid;
709 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
710}
711
Joerg Roedel11b64022011-04-06 11:49:28 +0200712static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
713 size_t size, u16 domid, int pde)
714{
715 u64 pages;
716 int s;
717
718 pages = iommu_num_pages(address, size, PAGE_SIZE);
719 s = 0;
720
721 if (pages > 1) {
722 /*
723 * If we have to flush more than one page, flush all
724 * TLB entries for this domain
725 */
726 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
727 s = 1;
728 }
729
730 address &= PAGE_MASK;
731
732 memset(cmd, 0, sizeof(*cmd));
733 cmd->data[1] |= domid;
734 cmd->data[2] = lower_32_bits(address);
735 cmd->data[3] = upper_32_bits(address);
736 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
737 if (s) /* size bit - we flush more than one 4kb page */
738 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
739 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
740 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
741}
742
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200743static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
744 u64 address, size_t size)
745{
746 u64 pages;
747 int s;
748
749 pages = iommu_num_pages(address, size, PAGE_SIZE);
750 s = 0;
751
752 if (pages > 1) {
753 /*
754 * If we have to flush more than one page, flush all
755 * TLB entries for this domain
756 */
757 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
758 s = 1;
759 }
760
761 address &= PAGE_MASK;
762
763 memset(cmd, 0, sizeof(*cmd));
764 cmd->data[0] = devid;
765 cmd->data[0] |= (qdep & 0xff) << 24;
766 cmd->data[1] = devid;
767 cmd->data[2] = lower_32_bits(address);
768 cmd->data[3] = upper_32_bits(address);
769 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
770 if (s)
771 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
772}
773
Joerg Roedel22e266c2011-11-21 15:59:08 +0100774static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
775 u64 address, bool size)
776{
777 memset(cmd, 0, sizeof(*cmd));
778
779 address &= ~(0xfffULL);
780
781 cmd->data[0] = pasid & PASID_MASK;
782 cmd->data[1] = domid;
783 cmd->data[2] = lower_32_bits(address);
784 cmd->data[3] = upper_32_bits(address);
785 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
786 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
787 if (size)
788 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
789 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
790}
791
792static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
793 int qdep, u64 address, bool size)
794{
795 memset(cmd, 0, sizeof(*cmd));
796
797 address &= ~(0xfffULL);
798
799 cmd->data[0] = devid;
800 cmd->data[0] |= (pasid & 0xff) << 16;
801 cmd->data[0] |= (qdep & 0xff) << 24;
802 cmd->data[1] = devid;
803 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
804 cmd->data[2] = lower_32_bits(address);
805 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
806 cmd->data[3] = upper_32_bits(address);
807 if (size)
808 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
809 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
810}
811
Joerg Roedelc99afa22011-11-21 18:19:25 +0100812static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
813 int status, int tag, bool gn)
814{
815 memset(cmd, 0, sizeof(*cmd));
816
817 cmd->data[0] = devid;
818 if (gn) {
819 cmd->data[1] = pasid & PASID_MASK;
820 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
821 }
822 cmd->data[3] = tag & 0x1ff;
823 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
824
825 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
826}
827
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200828static void build_inv_all(struct iommu_cmd *cmd)
829{
830 memset(cmd, 0, sizeof(*cmd));
831 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200832}
833
Joerg Roedel431b2a22008-07-11 17:14:22 +0200834/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200835 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200836 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200837 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200838static int iommu_queue_command_sync(struct amd_iommu *iommu,
839 struct iommu_cmd *cmd,
840 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200841{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200842 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200843 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200844
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200845 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100846
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200847again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200848 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200849
850 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
851 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
852 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
853 left = (head - next_tail) % iommu->cmd_buf_size;
854
855 if (left <= 2) {
856 struct iommu_cmd sync_cmd;
857 volatile u64 sem = 0;
858 int ret;
859
860 build_completion_wait(&sync_cmd, (u64)&sem);
861 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
862
863 spin_unlock_irqrestore(&iommu->lock, flags);
864
865 if ((ret = wait_on_sem(&sem)) != 0)
866 return ret;
867
868 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200869 }
870
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200871 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200872
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200873 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200874 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200875
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200876 spin_unlock_irqrestore(&iommu->lock, flags);
877
Joerg Roedel815b33f2011-04-06 17:26:49 +0200878 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100879}
880
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200881static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
882{
883 return iommu_queue_command_sync(iommu, cmd, true);
884}
885
Joerg Roedel8d201962008-12-02 20:34:41 +0100886/*
887 * This function queues a completion wait command into the command
888 * buffer of an IOMMU
889 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100890static int iommu_completion_wait(struct amd_iommu *iommu)
891{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200892 struct iommu_cmd cmd;
893 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200894 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100895
896 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200897 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100898
Joerg Roedel815b33f2011-04-06 17:26:49 +0200899 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100900
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200901 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100902 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200903 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100904
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200905 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200906}
907
Joerg Roedeld8c13082011-04-06 18:51:26 +0200908static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200909{
910 struct iommu_cmd cmd;
911
Joerg Roedeld8c13082011-04-06 18:51:26 +0200912 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200913
Joerg Roedeld8c13082011-04-06 18:51:26 +0200914 return iommu_queue_command(iommu, &cmd);
915}
916
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200917static void iommu_flush_dte_all(struct amd_iommu *iommu)
918{
919 u32 devid;
920
921 for (devid = 0; devid <= 0xffff; ++devid)
922 iommu_flush_dte(iommu, devid);
923
924 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200925}
926
927/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200928 * This function uses heavy locking and may disable irqs for some time. But
929 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200930 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200931static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200932{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200933 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200934
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200935 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
936 struct iommu_cmd cmd;
937 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
938 dom_id, 1);
939 iommu_queue_command(iommu, &cmd);
940 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200941
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200942 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200943}
944
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200945static void iommu_flush_all(struct amd_iommu *iommu)
946{
947 struct iommu_cmd cmd;
948
949 build_inv_all(&cmd);
950
951 iommu_queue_command(iommu, &cmd);
952 iommu_completion_wait(iommu);
953}
954
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200955void iommu_flush_all_caches(struct amd_iommu *iommu)
956{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200957 if (iommu_feature(iommu, FEATURE_IA)) {
958 iommu_flush_all(iommu);
959 } else {
960 iommu_flush_dte_all(iommu);
961 iommu_flush_tlb_all(iommu);
962 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200963}
964
Joerg Roedel431b2a22008-07-11 17:14:22 +0200965/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200966 * Command send function for flushing on-device TLB
967 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200968static int device_flush_iotlb(struct iommu_dev_data *dev_data,
969 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200970{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200971 struct amd_iommu *iommu;
972 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200973 int qdep;
974
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200975 qdep = dev_data->ats.qdep;
976 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200977
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200978 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200979
980 return iommu_queue_command(iommu, &cmd);
981}
982
983/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200984 * Command send function for invalidating a device table entry
985 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200986static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100987{
988 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200989 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100990
Joerg Roedel6c542042011-06-09 17:07:31 +0200991 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100992
Joerg Roedelf62dda62011-06-09 12:55:35 +0200993 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200994 if (ret)
995 return ret;
996
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200997 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200998 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200999
1000 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001001}
1002
Joerg Roedel431b2a22008-07-11 17:14:22 +02001003/*
1004 * TLB invalidation function which is called from the mapping functions.
1005 * It invalidates a single PTE if the range to flush is within a single
1006 * page. Otherwise it flushes the whole TLB of the IOMMU.
1007 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001008static void __domain_flush_pages(struct protection_domain *domain,
1009 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001010{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001011 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001012 struct iommu_cmd cmd;
1013 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001014
Joerg Roedel11b64022011-04-06 11:49:28 +02001015 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001016
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001017 for (i = 0; i < amd_iommus_present; ++i) {
1018 if (!domain->dev_iommu[i])
1019 continue;
1020
1021 /*
1022 * Devices of this domain are behind this IOMMU
1023 * We need a TLB flush
1024 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001025 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001026 }
1027
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001028 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001029
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001030 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001031 continue;
1032
Joerg Roedel6c542042011-06-09 17:07:31 +02001033 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001034 }
1035
Joerg Roedel11b64022011-04-06 11:49:28 +02001036 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001037}
1038
Joerg Roedel17b124b2011-04-06 18:01:35 +02001039static void domain_flush_pages(struct protection_domain *domain,
1040 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001041{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001042 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001043}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001044
Joerg Roedel1c655772008-09-04 18:40:05 +02001045/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001046static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001047{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001048 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001049}
1050
Chris Wright42a49f92009-06-15 15:42:00 +02001051/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001052static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001053{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001054 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1055}
1056
1057static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001058{
1059 int i;
1060
1061 for (i = 0; i < amd_iommus_present; ++i) {
1062 if (!domain->dev_iommu[i])
1063 continue;
1064
1065 /*
1066 * Devices of this domain are behind this IOMMU
1067 * We need to wait for completion of all commands.
1068 */
1069 iommu_completion_wait(amd_iommus[i]);
1070 }
1071}
1072
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001073
Joerg Roedel43f49602008-12-02 21:01:12 +01001074/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001075 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001076 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001077static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001078{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001079 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001080
1081 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001082 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001083}
1084
Joerg Roedel431b2a22008-07-11 17:14:22 +02001085/****************************************************************************
1086 *
1087 * The functions below are used the create the page table mappings for
1088 * unity mapped regions.
1089 *
1090 ****************************************************************************/
1091
1092/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001093 * This function is used to add another level to an IO page table. Adding
1094 * another level increases the size of the address space by 9 bits to a size up
1095 * to 64 bits.
1096 */
1097static bool increase_address_space(struct protection_domain *domain,
1098 gfp_t gfp)
1099{
1100 u64 *pte;
1101
1102 if (domain->mode == PAGE_MODE_6_LEVEL)
1103 /* address space already 64 bit large */
1104 return false;
1105
1106 pte = (void *)get_zeroed_page(gfp);
1107 if (!pte)
1108 return false;
1109
1110 *pte = PM_LEVEL_PDE(domain->mode,
1111 virt_to_phys(domain->pt_root));
1112 domain->pt_root = pte;
1113 domain->mode += 1;
1114 domain->updated = true;
1115
1116 return true;
1117}
1118
1119static u64 *alloc_pte(struct protection_domain *domain,
1120 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001121 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001122 u64 **pte_page,
1123 gfp_t gfp)
1124{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001125 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001126 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001127
1128 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001129
1130 while (address > PM_LEVEL_SIZE(domain->mode))
1131 increase_address_space(domain, gfp);
1132
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001133 level = domain->mode - 1;
1134 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1135 address = PAGE_SIZE_ALIGN(address, page_size);
1136 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001137
1138 while (level > end_lvl) {
1139 if (!IOMMU_PTE_PRESENT(*pte)) {
1140 page = (u64 *)get_zeroed_page(gfp);
1141 if (!page)
1142 return NULL;
1143 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1144 }
1145
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001146 /* No level skipping support yet */
1147 if (PM_PTE_LEVEL(*pte) != level)
1148 return NULL;
1149
Joerg Roedel308973d2009-11-24 17:43:32 +01001150 level -= 1;
1151
1152 pte = IOMMU_PTE_PAGE(*pte);
1153
1154 if (pte_page && level == end_lvl)
1155 *pte_page = pte;
1156
1157 pte = &pte[PM_LEVEL_INDEX(level, address)];
1158 }
1159
1160 return pte;
1161}
1162
1163/*
1164 * This function checks if there is a PTE for a given dma address. If
1165 * there is one, it returns the pointer to it.
1166 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001167static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001168{
1169 int level;
1170 u64 *pte;
1171
Joerg Roedel24cd7722010-01-19 17:27:39 +01001172 if (address > PM_LEVEL_SIZE(domain->mode))
1173 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001174
Joerg Roedel24cd7722010-01-19 17:27:39 +01001175 level = domain->mode - 1;
1176 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1177
1178 while (level > 0) {
1179
1180 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001181 if (!IOMMU_PTE_PRESENT(*pte))
1182 return NULL;
1183
Joerg Roedel24cd7722010-01-19 17:27:39 +01001184 /* Large PTE */
1185 if (PM_PTE_LEVEL(*pte) == 0x07) {
1186 unsigned long pte_mask, __pte;
1187
1188 /*
1189 * If we have a series of large PTEs, make
1190 * sure to return a pointer to the first one.
1191 */
1192 pte_mask = PTE_PAGE_SIZE(*pte);
1193 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1194 __pte = ((unsigned long)pte) & pte_mask;
1195
1196 return (u64 *)__pte;
1197 }
1198
1199 /* No level skipping support yet */
1200 if (PM_PTE_LEVEL(*pte) != level)
1201 return NULL;
1202
Joerg Roedel308973d2009-11-24 17:43:32 +01001203 level -= 1;
1204
Joerg Roedel24cd7722010-01-19 17:27:39 +01001205 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001206 pte = IOMMU_PTE_PAGE(*pte);
1207 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001208 }
1209
1210 return pte;
1211}
1212
1213/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001214 * Generic mapping functions. It maps a physical address into a DMA
1215 * address space. It allocates the page table pages if necessary.
1216 * In the future it can be extended to a generic mapping function
1217 * supporting all features of AMD IOMMU page tables like level skipping
1218 * and full 64 bit address spaces.
1219 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001220static int iommu_map_page(struct protection_domain *dom,
1221 unsigned long bus_addr,
1222 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001223 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001224 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001225{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001226 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001227 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001228
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001229 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001230 return -EINVAL;
1231
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001232 bus_addr = PAGE_ALIGN(bus_addr);
1233 phys_addr = PAGE_ALIGN(phys_addr);
1234 count = PAGE_SIZE_PTE_COUNT(page_size);
1235 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001236
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001237 for (i = 0; i < count; ++i)
1238 if (IOMMU_PTE_PRESENT(pte[i]))
1239 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001240
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001241 if (page_size > PAGE_SIZE) {
1242 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1243 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1244 } else
1245 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1246
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001247 if (prot & IOMMU_PROT_IR)
1248 __pte |= IOMMU_PTE_IR;
1249 if (prot & IOMMU_PROT_IW)
1250 __pte |= IOMMU_PTE_IW;
1251
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001252 for (i = 0; i < count; ++i)
1253 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001254
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001255 update_domain(dom);
1256
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001257 return 0;
1258}
1259
Joerg Roedel24cd7722010-01-19 17:27:39 +01001260static unsigned long iommu_unmap_page(struct protection_domain *dom,
1261 unsigned long bus_addr,
1262 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001263{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001264 unsigned long long unmap_size, unmapped;
1265 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001266
Joerg Roedel24cd7722010-01-19 17:27:39 +01001267 BUG_ON(!is_power_of_2(page_size));
1268
1269 unmapped = 0;
1270
1271 while (unmapped < page_size) {
1272
1273 pte = fetch_pte(dom, bus_addr);
1274
1275 if (!pte) {
1276 /*
1277 * No PTE for this address
1278 * move forward in 4kb steps
1279 */
1280 unmap_size = PAGE_SIZE;
1281 } else if (PM_PTE_LEVEL(*pte) == 0) {
1282 /* 4kb PTE found for this address */
1283 unmap_size = PAGE_SIZE;
1284 *pte = 0ULL;
1285 } else {
1286 int count, i;
1287
1288 /* Large PTE found which maps this address */
1289 unmap_size = PTE_PAGE_SIZE(*pte);
1290 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1291 for (i = 0; i < count; i++)
1292 pte[i] = 0ULL;
1293 }
1294
1295 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1296 unmapped += unmap_size;
1297 }
1298
1299 BUG_ON(!is_power_of_2(unmapped));
1300
1301 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001302}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001303
Joerg Roedel431b2a22008-07-11 17:14:22 +02001304/*
1305 * This function checks if a specific unity mapping entry is needed for
1306 * this specific IOMMU.
1307 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001308static int iommu_for_unity_map(struct amd_iommu *iommu,
1309 struct unity_map_entry *entry)
1310{
1311 u16 bdf, i;
1312
1313 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1314 bdf = amd_iommu_alias_table[i];
1315 if (amd_iommu_rlookup_table[bdf] == iommu)
1316 return 1;
1317 }
1318
1319 return 0;
1320}
1321
Joerg Roedel431b2a22008-07-11 17:14:22 +02001322/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001323 * This function actually applies the mapping to the page table of the
1324 * dma_ops domain.
1325 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001326static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1327 struct unity_map_entry *e)
1328{
1329 u64 addr;
1330 int ret;
1331
1332 for (addr = e->address_start; addr < e->address_end;
1333 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001334 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001335 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001336 if (ret)
1337 return ret;
1338 /*
1339 * if unity mapping is in aperture range mark the page
1340 * as allocated in the aperture
1341 */
1342 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001343 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001344 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001345 }
1346
1347 return 0;
1348}
1349
Joerg Roedel431b2a22008-07-11 17:14:22 +02001350/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001351 * Init the unity mappings for a specific IOMMU in the system
1352 *
1353 * Basically iterates over all unity mapping entries and applies them to
1354 * the default domain DMA of that IOMMU if necessary.
1355 */
1356static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1357{
1358 struct unity_map_entry *entry;
1359 int ret;
1360
1361 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1362 if (!iommu_for_unity_map(iommu, entry))
1363 continue;
1364 ret = dma_ops_unity_map(iommu->default_dom, entry);
1365 if (ret)
1366 return ret;
1367 }
1368
1369 return 0;
1370}
1371
1372/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001373 * Inits the unity mappings required for a specific device
1374 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001375static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1376 u16 devid)
1377{
1378 struct unity_map_entry *e;
1379 int ret;
1380
1381 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1382 if (!(devid >= e->devid_start && devid <= e->devid_end))
1383 continue;
1384 ret = dma_ops_unity_map(dma_dom, e);
1385 if (ret)
1386 return ret;
1387 }
1388
1389 return 0;
1390}
1391
Joerg Roedel431b2a22008-07-11 17:14:22 +02001392/****************************************************************************
1393 *
1394 * The next functions belong to the address allocator for the dma_ops
1395 * interface functions. They work like the allocators in the other IOMMU
1396 * drivers. Its basically a bitmap which marks the allocated pages in
1397 * the aperture. Maybe it could be enhanced in the future to a more
1398 * efficient allocator.
1399 *
1400 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001401
Joerg Roedel431b2a22008-07-11 17:14:22 +02001402/*
Joerg Roedel384de722009-05-15 12:30:05 +02001403 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001404 *
1405 * called with domain->lock held
1406 */
Joerg Roedel384de722009-05-15 12:30:05 +02001407
Joerg Roedel9cabe892009-05-18 16:38:55 +02001408/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001409 * Used to reserve address ranges in the aperture (e.g. for exclusion
1410 * ranges.
1411 */
1412static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1413 unsigned long start_page,
1414 unsigned int pages)
1415{
1416 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1417
1418 if (start_page + pages > last_page)
1419 pages = last_page - start_page;
1420
1421 for (i = start_page; i < start_page + pages; ++i) {
1422 int index = i / APERTURE_RANGE_PAGES;
1423 int page = i % APERTURE_RANGE_PAGES;
1424 __set_bit(page, dom->aperture[index]->bitmap);
1425 }
1426}
1427
1428/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001429 * This function is used to add a new aperture range to an existing
1430 * aperture in case of dma_ops domain allocation or address allocation
1431 * failure.
1432 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001433static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001434 bool populate, gfp_t gfp)
1435{
1436 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001437 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001438 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001439
Joerg Roedelf5e97052009-05-22 12:31:53 +02001440#ifdef CONFIG_IOMMU_STRESS
1441 populate = false;
1442#endif
1443
Joerg Roedel9cabe892009-05-18 16:38:55 +02001444 if (index >= APERTURE_MAX_RANGES)
1445 return -ENOMEM;
1446
1447 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1448 if (!dma_dom->aperture[index])
1449 return -ENOMEM;
1450
1451 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1452 if (!dma_dom->aperture[index]->bitmap)
1453 goto out_free;
1454
1455 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1456
1457 if (populate) {
1458 unsigned long address = dma_dom->aperture_size;
1459 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1460 u64 *pte, *pte_page;
1461
1462 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001463 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001464 &pte_page, gfp);
1465 if (!pte)
1466 goto out_free;
1467
1468 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1469
1470 address += APERTURE_RANGE_SIZE / 64;
1471 }
1472 }
1473
Joerg Roedel17f5b562011-07-06 17:14:44 +02001474 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001475 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1476
Joerg Roedel17f5b562011-07-06 17:14:44 +02001477 /* Reserve address range used for MSI messages */
1478 if (old_size < MSI_ADDR_BASE_LO &&
1479 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1480 unsigned long spage;
1481 int pages;
1482
1483 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1484 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1485
1486 dma_ops_reserve_addresses(dma_dom, spage, pages);
1487 }
1488
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001489 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001490 for_each_iommu(iommu) {
1491 if (iommu->exclusion_start &&
1492 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1493 && iommu->exclusion_start < dma_dom->aperture_size) {
1494 unsigned long startpage;
1495 int pages = iommu_num_pages(iommu->exclusion_start,
1496 iommu->exclusion_length,
1497 PAGE_SIZE);
1498 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1499 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1500 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001501 }
1502
1503 /*
1504 * Check for areas already mapped as present in the new aperture
1505 * range and mark those pages as reserved in the allocator. Such
1506 * mappings may already exist as a result of requested unity
1507 * mappings for devices.
1508 */
1509 for (i = dma_dom->aperture[index]->offset;
1510 i < dma_dom->aperture_size;
1511 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001512 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001513 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1514 continue;
1515
Joerg Roedelfcd08612011-10-11 17:41:32 +02001516 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001517 }
1518
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001519 update_domain(&dma_dom->domain);
1520
Joerg Roedel9cabe892009-05-18 16:38:55 +02001521 return 0;
1522
1523out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001524 update_domain(&dma_dom->domain);
1525
Joerg Roedel9cabe892009-05-18 16:38:55 +02001526 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1527
1528 kfree(dma_dom->aperture[index]);
1529 dma_dom->aperture[index] = NULL;
1530
1531 return -ENOMEM;
1532}
1533
Joerg Roedel384de722009-05-15 12:30:05 +02001534static unsigned long dma_ops_area_alloc(struct device *dev,
1535 struct dma_ops_domain *dom,
1536 unsigned int pages,
1537 unsigned long align_mask,
1538 u64 dma_mask,
1539 unsigned long start)
1540{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001541 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001542 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1543 int i = start >> APERTURE_RANGE_SHIFT;
1544 unsigned long boundary_size;
1545 unsigned long address = -1;
1546 unsigned long limit;
1547
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001548 next_bit >>= PAGE_SHIFT;
1549
Joerg Roedel384de722009-05-15 12:30:05 +02001550 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1551 PAGE_SIZE) >> PAGE_SHIFT;
1552
1553 for (;i < max_index; ++i) {
1554 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1555
1556 if (dom->aperture[i]->offset >= dma_mask)
1557 break;
1558
1559 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1560 dma_mask >> PAGE_SHIFT);
1561
1562 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1563 limit, next_bit, pages, 0,
1564 boundary_size, align_mask);
1565 if (address != -1) {
1566 address = dom->aperture[i]->offset +
1567 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001568 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001569 break;
1570 }
1571
1572 next_bit = 0;
1573 }
1574
1575 return address;
1576}
1577
Joerg Roedeld3086442008-06-26 21:27:57 +02001578static unsigned long dma_ops_alloc_addresses(struct device *dev,
1579 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001580 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001581 unsigned long align_mask,
1582 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001583{
Joerg Roedeld3086442008-06-26 21:27:57 +02001584 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001585
Joerg Roedelfe16f082009-05-22 12:27:53 +02001586#ifdef CONFIG_IOMMU_STRESS
1587 dom->next_address = 0;
1588 dom->need_flush = true;
1589#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001590
Joerg Roedel384de722009-05-15 12:30:05 +02001591 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001592 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001593
Joerg Roedel1c655772008-09-04 18:40:05 +02001594 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001595 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001596 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1597 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001598 dom->need_flush = true;
1599 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001600
Joerg Roedel384de722009-05-15 12:30:05 +02001601 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001602 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001603
1604 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1605
1606 return address;
1607}
1608
Joerg Roedel431b2a22008-07-11 17:14:22 +02001609/*
1610 * The address free function.
1611 *
1612 * called with domain->lock held
1613 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001614static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1615 unsigned long address,
1616 unsigned int pages)
1617{
Joerg Roedel384de722009-05-15 12:30:05 +02001618 unsigned i = address >> APERTURE_RANGE_SHIFT;
1619 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001620
Joerg Roedel384de722009-05-15 12:30:05 +02001621 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1622
Joerg Roedel47bccd62009-05-22 12:40:54 +02001623#ifdef CONFIG_IOMMU_STRESS
1624 if (i < 4)
1625 return;
1626#endif
1627
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001628 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001629 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001630
1631 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001632
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001633 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001634
Joerg Roedeld3086442008-06-26 21:27:57 +02001635}
1636
Joerg Roedel431b2a22008-07-11 17:14:22 +02001637/****************************************************************************
1638 *
1639 * The next functions belong to the domain allocation. A domain is
1640 * allocated for every IOMMU as the default domain. If device isolation
1641 * is enabled, every device get its own domain. The most important thing
1642 * about domains is the page table mapping the DMA address space they
1643 * contain.
1644 *
1645 ****************************************************************************/
1646
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001647/*
1648 * This function adds a protection domain to the global protection domain list
1649 */
1650static void add_domain_to_list(struct protection_domain *domain)
1651{
1652 unsigned long flags;
1653
1654 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1655 list_add(&domain->list, &amd_iommu_pd_list);
1656 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1657}
1658
1659/*
1660 * This function removes a protection domain to the global
1661 * protection domain list
1662 */
1663static void del_domain_from_list(struct protection_domain *domain)
1664{
1665 unsigned long flags;
1666
1667 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1668 list_del(&domain->list);
1669 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1670}
1671
Joerg Roedelec487d12008-06-26 21:27:58 +02001672static u16 domain_id_alloc(void)
1673{
1674 unsigned long flags;
1675 int id;
1676
1677 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1678 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1679 BUG_ON(id == 0);
1680 if (id > 0 && id < MAX_DOMAIN_ID)
1681 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1682 else
1683 id = 0;
1684 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1685
1686 return id;
1687}
1688
Joerg Roedela2acfb72008-12-02 18:28:53 +01001689static void domain_id_free(int id)
1690{
1691 unsigned long flags;
1692
1693 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1694 if (id > 0 && id < MAX_DOMAIN_ID)
1695 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1696 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1697}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001698
Joerg Roedel86db2e52008-12-02 18:20:21 +01001699static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001700{
1701 int i, j;
1702 u64 *p1, *p2, *p3;
1703
Joerg Roedel86db2e52008-12-02 18:20:21 +01001704 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001705
1706 if (!p1)
1707 return;
1708
1709 for (i = 0; i < 512; ++i) {
1710 if (!IOMMU_PTE_PRESENT(p1[i]))
1711 continue;
1712
1713 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001714 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001715 if (!IOMMU_PTE_PRESENT(p2[j]))
1716 continue;
1717 p3 = IOMMU_PTE_PAGE(p2[j]);
1718 free_page((unsigned long)p3);
1719 }
1720
1721 free_page((unsigned long)p2);
1722 }
1723
1724 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001725
1726 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001727}
1728
Joerg Roedelb16137b2011-11-21 16:50:23 +01001729static void free_gcr3_tbl_level1(u64 *tbl)
1730{
1731 u64 *ptr;
1732 int i;
1733
1734 for (i = 0; i < 512; ++i) {
1735 if (!(tbl[i] & GCR3_VALID))
1736 continue;
1737
1738 ptr = __va(tbl[i] & PAGE_MASK);
1739
1740 free_page((unsigned long)ptr);
1741 }
1742}
1743
1744static void free_gcr3_tbl_level2(u64 *tbl)
1745{
1746 u64 *ptr;
1747 int i;
1748
1749 for (i = 0; i < 512; ++i) {
1750 if (!(tbl[i] & GCR3_VALID))
1751 continue;
1752
1753 ptr = __va(tbl[i] & PAGE_MASK);
1754
1755 free_gcr3_tbl_level1(ptr);
1756 }
1757}
1758
Joerg Roedel52815b72011-11-17 17:24:28 +01001759static void free_gcr3_table(struct protection_domain *domain)
1760{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001761 if (domain->glx == 2)
1762 free_gcr3_tbl_level2(domain->gcr3_tbl);
1763 else if (domain->glx == 1)
1764 free_gcr3_tbl_level1(domain->gcr3_tbl);
1765 else if (domain->glx != 0)
1766 BUG();
1767
Joerg Roedel52815b72011-11-17 17:24:28 +01001768 free_page((unsigned long)domain->gcr3_tbl);
1769}
1770
Joerg Roedel431b2a22008-07-11 17:14:22 +02001771/*
1772 * Free a domain, only used if something went wrong in the
1773 * allocation path and we need to free an already allocated page table
1774 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001775static void dma_ops_domain_free(struct dma_ops_domain *dom)
1776{
Joerg Roedel384de722009-05-15 12:30:05 +02001777 int i;
1778
Joerg Roedelec487d12008-06-26 21:27:58 +02001779 if (!dom)
1780 return;
1781
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001782 del_domain_from_list(&dom->domain);
1783
Joerg Roedel86db2e52008-12-02 18:20:21 +01001784 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001785
Joerg Roedel384de722009-05-15 12:30:05 +02001786 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1787 if (!dom->aperture[i])
1788 continue;
1789 free_page((unsigned long)dom->aperture[i]->bitmap);
1790 kfree(dom->aperture[i]);
1791 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001792
1793 kfree(dom);
1794}
1795
Joerg Roedel431b2a22008-07-11 17:14:22 +02001796/*
1797 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001798 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001799 * structures required for the dma_ops interface
1800 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001801static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001802{
1803 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001804
1805 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1806 if (!dma_dom)
1807 return NULL;
1808
1809 spin_lock_init(&dma_dom->domain.lock);
1810
1811 dma_dom->domain.id = domain_id_alloc();
1812 if (dma_dom->domain.id == 0)
1813 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001814 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001815 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001816 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001817 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001818 dma_dom->domain.priv = dma_dom;
1819 if (!dma_dom->domain.pt_root)
1820 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001821
Joerg Roedel1c655772008-09-04 18:40:05 +02001822 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001823 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001824
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001825 add_domain_to_list(&dma_dom->domain);
1826
Joerg Roedel576175c2009-11-23 19:08:46 +01001827 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001828 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001829
Joerg Roedel431b2a22008-07-11 17:14:22 +02001830 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001831 * mark the first page as allocated so we never return 0 as
1832 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001833 */
Joerg Roedel384de722009-05-15 12:30:05 +02001834 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001835 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001836
Joerg Roedelec487d12008-06-26 21:27:58 +02001837
1838 return dma_dom;
1839
1840free_dma_dom:
1841 dma_ops_domain_free(dma_dom);
1842
1843 return NULL;
1844}
1845
Joerg Roedel431b2a22008-07-11 17:14:22 +02001846/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001847 * little helper function to check whether a given protection domain is a
1848 * dma_ops domain
1849 */
1850static bool dma_ops_domain(struct protection_domain *domain)
1851{
1852 return domain->flags & PD_DMA_OPS_MASK;
1853}
1854
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001855static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001856{
Joerg Roedel132bd682011-11-17 14:18:46 +01001857 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001858 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001859
Joerg Roedel132bd682011-11-17 14:18:46 +01001860 if (domain->mode != PAGE_MODE_NONE)
1861 pte_root = virt_to_phys(domain->pt_root);
1862
Joerg Roedel38ddf412008-09-11 10:38:32 +02001863 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1864 << DEV_ENTRY_MODE_SHIFT;
1865 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001866
Joerg Roedelee6c2862011-11-09 12:06:03 +01001867 flags = amd_iommu_dev_table[devid].data[1];
1868
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001869 if (ats)
1870 flags |= DTE_FLAG_IOTLB;
1871
Joerg Roedel52815b72011-11-17 17:24:28 +01001872 if (domain->flags & PD_IOMMUV2_MASK) {
1873 u64 gcr3 = __pa(domain->gcr3_tbl);
1874 u64 glx = domain->glx;
1875 u64 tmp;
1876
1877 pte_root |= DTE_FLAG_GV;
1878 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1879
1880 /* First mask out possible old values for GCR3 table */
1881 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1882 flags &= ~tmp;
1883
1884 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1885 flags &= ~tmp;
1886
1887 /* Encode GCR3 table into DTE */
1888 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1889 pte_root |= tmp;
1890
1891 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1892 flags |= tmp;
1893
1894 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1895 flags |= tmp;
1896 }
1897
Joerg Roedelee6c2862011-11-09 12:06:03 +01001898 flags &= ~(0xffffUL);
1899 flags |= domain->id;
1900
1901 amd_iommu_dev_table[devid].data[1] = flags;
1902 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001903}
1904
Joerg Roedel15898bb2009-11-24 15:39:42 +01001905static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001906{
Joerg Roedel355bf552008-12-08 12:02:41 +01001907 /* remove entry from the device table seen by the hardware */
1908 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1909 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001910
Joerg Roedelc5cca142009-10-09 18:31:20 +02001911 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001912}
1913
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001914static void do_attach(struct iommu_dev_data *dev_data,
1915 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001916{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001917 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001918 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001919
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001920 iommu = amd_iommu_rlookup_table[dev_data->devid];
1921 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001922
1923 /* Update data structures */
1924 dev_data->domain = domain;
1925 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001926 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001927
1928 /* Do reference counting */
1929 domain->dev_iommu[iommu->index] += 1;
1930 domain->dev_cnt += 1;
1931
1932 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001933 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001934}
1935
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001936static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001937{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001938 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001939
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001940 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001941
Joerg Roedelc4596112009-11-20 14:57:32 +01001942 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001943 dev_data->domain->dev_iommu[iommu->index] -= 1;
1944 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001945
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001946 /* Update data structures */
1947 dev_data->domain = NULL;
1948 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001949 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001950
1951 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001952 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001953}
1954
1955/*
1956 * If a device is not yet associated with a domain, this function does
1957 * assigns it visible for the hardware
1958 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001959static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001960 struct protection_domain *domain)
1961{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001962 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001963
Joerg Roedel15898bb2009-11-24 15:39:42 +01001964 /* lock domain */
1965 spin_lock(&domain->lock);
1966
Joerg Roedel71f77582011-06-09 19:03:15 +02001967 if (dev_data->alias_data != NULL) {
1968 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001969
Joerg Roedel2b02b092011-06-09 17:48:39 +02001970 /* Some sanity checks */
1971 ret = -EBUSY;
1972 if (alias_data->domain != NULL &&
1973 alias_data->domain != domain)
1974 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001975
Joerg Roedel2b02b092011-06-09 17:48:39 +02001976 if (dev_data->domain != NULL &&
1977 dev_data->domain != domain)
1978 goto out_unlock;
1979
1980 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001981 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001982 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001983
1984 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001985 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001986
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001987 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001988 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001989
Joerg Roedel24100052009-11-25 15:59:57 +01001990 atomic_inc(&dev_data->bind);
1991
Julia Lawall84fe6c12010-05-27 12:31:51 +02001992 ret = 0;
1993
1994out_unlock:
1995
Joerg Roedel355bf552008-12-08 12:02:41 +01001996 /* ready */
1997 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001998
Julia Lawall84fe6c12010-05-27 12:31:51 +02001999 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002000}
2001
Joerg Roedel52815b72011-11-17 17:24:28 +01002002
2003static void pdev_iommuv2_disable(struct pci_dev *pdev)
2004{
2005 pci_disable_ats(pdev);
2006 pci_disable_pri(pdev);
2007 pci_disable_pasid(pdev);
2008}
2009
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002010/* FIXME: Change generic reset-function to do the same */
2011static int pri_reset_while_enabled(struct pci_dev *pdev)
2012{
2013 u16 control;
2014 int pos;
2015
Joerg Roedel46277b72011-12-07 14:34:02 +01002016 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002017 if (!pos)
2018 return -EINVAL;
2019
Joerg Roedel46277b72011-12-07 14:34:02 +01002020 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2021 control |= PCI_PRI_CTRL_RESET;
2022 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002023
2024 return 0;
2025}
2026
Joerg Roedel52815b72011-11-17 17:24:28 +01002027static int pdev_iommuv2_enable(struct pci_dev *pdev)
2028{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002029 bool reset_enable;
2030 int reqs, ret;
2031
2032 /* FIXME: Hardcode number of outstanding requests for now */
2033 reqs = 32;
2034 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2035 reqs = 1;
2036 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002037
2038 /* Only allow access to user-accessible pages */
2039 ret = pci_enable_pasid(pdev, 0);
2040 if (ret)
2041 goto out_err;
2042
2043 /* First reset the PRI state of the device */
2044 ret = pci_reset_pri(pdev);
2045 if (ret)
2046 goto out_err;
2047
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002048 /* Enable PRI */
2049 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002050 if (ret)
2051 goto out_err;
2052
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002053 if (reset_enable) {
2054 ret = pri_reset_while_enabled(pdev);
2055 if (ret)
2056 goto out_err;
2057 }
2058
Joerg Roedel52815b72011-11-17 17:24:28 +01002059 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2060 if (ret)
2061 goto out_err;
2062
2063 return 0;
2064
2065out_err:
2066 pci_disable_pri(pdev);
2067 pci_disable_pasid(pdev);
2068
2069 return ret;
2070}
2071
Joerg Roedelc99afa22011-11-21 18:19:25 +01002072/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002073#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002074
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002075static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002076{
Joerg Roedela3b93122012-04-12 12:49:26 +02002077 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002078 int pos;
2079
Joerg Roedel46277b72011-12-07 14:34:02 +01002080 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002081 if (!pos)
2082 return false;
2083
Joerg Roedela3b93122012-04-12 12:49:26 +02002084 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002085
Joerg Roedela3b93122012-04-12 12:49:26 +02002086 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002087}
2088
Joerg Roedel15898bb2009-11-24 15:39:42 +01002089/*
2090 * If a device is not yet associated with a domain, this function does
2091 * assigns it visible for the hardware
2092 */
2093static int attach_device(struct device *dev,
2094 struct protection_domain *domain)
2095{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002096 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002097 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002098 unsigned long flags;
2099 int ret;
2100
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002101 dev_data = get_dev_data(dev);
2102
Joerg Roedel52815b72011-11-17 17:24:28 +01002103 if (domain->flags & PD_IOMMUV2_MASK) {
2104 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2105 return -EINVAL;
2106
2107 if (pdev_iommuv2_enable(pdev) != 0)
2108 return -EINVAL;
2109
2110 dev_data->ats.enabled = true;
2111 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002112 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002113 } else if (amd_iommu_iotlb_sup &&
2114 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002115 dev_data->ats.enabled = true;
2116 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2117 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002118
Joerg Roedel15898bb2009-11-24 15:39:42 +01002119 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002120 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002121 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2122
2123 /*
2124 * We might boot into a crash-kernel here. The crashed kernel
2125 * left the caches in the IOMMU dirty. So we have to flush
2126 * here to evict all dirty stuff.
2127 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002128 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002129
2130 return ret;
2131}
2132
2133/*
2134 * Removes a device from a protection domain (unlocked)
2135 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002136static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002137{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002138 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002139 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002140
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002141 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002142
Joerg Roedel2ca76272010-01-22 16:45:31 +01002143 domain = dev_data->domain;
2144
2145 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002146
Joerg Roedel71f77582011-06-09 19:03:15 +02002147 if (dev_data->alias_data != NULL) {
2148 struct iommu_dev_data *alias_data = dev_data->alias_data;
2149
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002150 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002151 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002152 }
2153
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002154 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002155 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002156
Joerg Roedel2ca76272010-01-22 16:45:31 +01002157 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002158
Joerg Roedel21129f72009-09-01 11:59:42 +02002159 /*
2160 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002161 * passthrough domain if it is detached from any other domain.
2162 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002163 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002164 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002165 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002166 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002167}
2168
2169/*
2170 * Removes a device from a protection domain (with devtable_lock held)
2171 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002172static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002173{
Joerg Roedel52815b72011-11-17 17:24:28 +01002174 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002175 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002176 unsigned long flags;
2177
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002178 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002179 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002180
Joerg Roedel355bf552008-12-08 12:02:41 +01002181 /* lock device table */
2182 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002183 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002184 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002185
Joerg Roedel52815b72011-11-17 17:24:28 +01002186 if (domain->flags & PD_IOMMUV2_MASK)
2187 pdev_iommuv2_disable(to_pci_dev(dev));
2188 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002189 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002190
2191 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002192}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002193
Joerg Roedel15898bb2009-11-24 15:39:42 +01002194/*
2195 * Find out the protection domain structure for a given PCI device. This
2196 * will give us the pointer to the page table root for example.
2197 */
2198static struct protection_domain *domain_for_device(struct device *dev)
2199{
Joerg Roedel71f77582011-06-09 19:03:15 +02002200 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002201 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002202 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002203
Joerg Roedel657cbb62009-11-23 15:26:46 +01002204 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002205
Joerg Roedel2b02b092011-06-09 17:48:39 +02002206 if (dev_data->domain)
2207 return dev_data->domain;
2208
Joerg Roedel71f77582011-06-09 19:03:15 +02002209 if (dev_data->alias_data != NULL) {
2210 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002211
2212 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2213 if (alias_data->domain != NULL) {
2214 __attach_device(dev_data, alias_data->domain);
2215 dom = alias_data->domain;
2216 }
2217 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002218 }
2219
Joerg Roedel15898bb2009-11-24 15:39:42 +01002220 return dom;
2221}
2222
Joerg Roedele275a2a2008-12-10 18:27:25 +01002223static int device_change_notifier(struct notifier_block *nb,
2224 unsigned long action, void *data)
2225{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002226 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002227 struct protection_domain *domain;
2228 struct iommu_dev_data *dev_data;
2229 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002230 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002231 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002232 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002233
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002234 if (!check_device(dev))
2235 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002236
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002237 devid = get_device_id(dev);
2238 iommu = amd_iommu_rlookup_table[devid];
2239 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002240
2241 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002242 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002243
2244 domain = domain_for_device(dev);
2245
Joerg Roedele275a2a2008-12-10 18:27:25 +01002246 if (!domain)
2247 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002248 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002249 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002250 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002251 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002252 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002253
2254 iommu_init_device(dev);
2255
2256 domain = domain_for_device(dev);
2257
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002258 /* allocate a protection domain if a device is added */
2259 dma_domain = find_protection_domain(devid);
2260 if (dma_domain)
2261 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002262 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002263 if (!dma_domain)
2264 goto out;
2265 dma_domain->target_dev = devid;
2266
2267 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2268 list_add_tail(&dma_domain->list, &iommu_pd_list);
2269 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2270
Joerg Roedelac1534a2012-06-21 14:52:40 +02002271 dev_data = get_dev_data(dev);
2272
2273 if (!dev_data->passthrough)
2274 dev->archdata.dma_ops = &amd_iommu_dma_ops;
2275 else
2276 dev->archdata.dma_ops = &nommu_dma_ops;
2277
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002278 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002279 case BUS_NOTIFY_DEL_DEVICE:
2280
2281 iommu_uninit_device(dev);
2282
Joerg Roedele275a2a2008-12-10 18:27:25 +01002283 default:
2284 goto out;
2285 }
2286
Joerg Roedele275a2a2008-12-10 18:27:25 +01002287 iommu_completion_wait(iommu);
2288
2289out:
2290 return 0;
2291}
2292
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302293static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002294 .notifier_call = device_change_notifier,
2295};
Joerg Roedel355bf552008-12-08 12:02:41 +01002296
Joerg Roedel8638c492009-12-10 11:12:25 +01002297void amd_iommu_init_notifier(void)
2298{
2299 bus_register_notifier(&pci_bus_type, &device_nb);
2300}
2301
Joerg Roedel431b2a22008-07-11 17:14:22 +02002302/*****************************************************************************
2303 *
2304 * The next functions belong to the dma_ops mapping/unmapping code.
2305 *
2306 *****************************************************************************/
2307
2308/*
2309 * In the dma_ops path we only have the struct device. This function
2310 * finds the corresponding IOMMU, the protection domain and the
2311 * requestor id for a given device.
2312 * If the device is not yet associated with a domain this is also done
2313 * in this function.
2314 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002315static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002316{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002317 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002318 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002319 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002320
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002321 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002322 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002323
Joerg Roedel94f6d192009-11-24 16:40:02 +01002324 domain = domain_for_device(dev);
2325 if (domain != NULL && !dma_ops_domain(domain))
2326 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002327
Joerg Roedel94f6d192009-11-24 16:40:02 +01002328 if (domain != NULL)
2329 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002330
Joerg Roedel15898bb2009-11-24 15:39:42 +01002331 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002332 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002333 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002334 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2335 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002336 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002337 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002338
Joerg Roedel94f6d192009-11-24 16:40:02 +01002339 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002340}
2341
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002342static void update_device_table(struct protection_domain *domain)
2343{
Joerg Roedel492667d2009-11-27 13:25:47 +01002344 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002345
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002346 list_for_each_entry(dev_data, &domain->dev_list, list)
2347 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002348}
2349
2350static void update_domain(struct protection_domain *domain)
2351{
2352 if (!domain->updated)
2353 return;
2354
2355 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002356
2357 domain_flush_devices(domain);
2358 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002359
2360 domain->updated = false;
2361}
2362
Joerg Roedel431b2a22008-07-11 17:14:22 +02002363/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002364 * This function fetches the PTE for a given address in the aperture
2365 */
2366static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2367 unsigned long address)
2368{
Joerg Roedel384de722009-05-15 12:30:05 +02002369 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002370 u64 *pte, *pte_page;
2371
Joerg Roedel384de722009-05-15 12:30:05 +02002372 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2373 if (!aperture)
2374 return NULL;
2375
2376 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002377 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002378 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002379 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002380 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2381 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002382 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002383
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002384 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002385
2386 return pte;
2387}
2388
2389/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002390 * This is the generic map function. It maps one 4kb page at paddr to
2391 * the given address in the DMA address space for the domain.
2392 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002393static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002394 unsigned long address,
2395 phys_addr_t paddr,
2396 int direction)
2397{
2398 u64 *pte, __pte;
2399
2400 WARN_ON(address > dom->aperture_size);
2401
2402 paddr &= PAGE_MASK;
2403
Joerg Roedel8bda3092009-05-12 12:02:46 +02002404 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002405 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002406 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002407
2408 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2409
2410 if (direction == DMA_TO_DEVICE)
2411 __pte |= IOMMU_PTE_IR;
2412 else if (direction == DMA_FROM_DEVICE)
2413 __pte |= IOMMU_PTE_IW;
2414 else if (direction == DMA_BIDIRECTIONAL)
2415 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2416
2417 WARN_ON(*pte);
2418
2419 *pte = __pte;
2420
2421 return (dma_addr_t)address;
2422}
2423
Joerg Roedel431b2a22008-07-11 17:14:22 +02002424/*
2425 * The generic unmapping function for on page in the DMA address space.
2426 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002427static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002428 unsigned long address)
2429{
Joerg Roedel384de722009-05-15 12:30:05 +02002430 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002431 u64 *pte;
2432
2433 if (address >= dom->aperture_size)
2434 return;
2435
Joerg Roedel384de722009-05-15 12:30:05 +02002436 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2437 if (!aperture)
2438 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002439
Joerg Roedel384de722009-05-15 12:30:05 +02002440 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2441 if (!pte)
2442 return;
2443
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002444 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002445
2446 WARN_ON(!*pte);
2447
2448 *pte = 0ULL;
2449}
2450
Joerg Roedel431b2a22008-07-11 17:14:22 +02002451/*
2452 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002453 * contiguous memory region into DMA address space. It is used by all
2454 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002455 * Must be called with the domain lock held.
2456 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002457static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002458 struct dma_ops_domain *dma_dom,
2459 phys_addr_t paddr,
2460 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002461 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002462 bool align,
2463 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002464{
2465 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002466 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002467 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002468 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002469 int i;
2470
Joerg Roedele3c449f2008-10-15 22:02:11 -07002471 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002472 paddr &= PAGE_MASK;
2473
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002474 INC_STATS_COUNTER(total_map_requests);
2475
Joerg Roedelc1858972008-12-12 15:42:39 +01002476 if (pages > 1)
2477 INC_STATS_COUNTER(cross_page);
2478
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002479 if (align)
2480 align_mask = (1UL << get_order(size)) - 1;
2481
Joerg Roedel11b83882009-05-19 10:23:15 +02002482retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002483 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2484 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002485 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002486 /*
2487 * setting next_address here will let the address
2488 * allocator only scan the new allocated range in the
2489 * first run. This is a small optimization.
2490 */
2491 dma_dom->next_address = dma_dom->aperture_size;
2492
Joerg Roedel576175c2009-11-23 19:08:46 +01002493 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002494 goto out;
2495
2496 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002497 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002498 * allocation again
2499 */
2500 goto retry;
2501 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002502
2503 start = address;
2504 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002505 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002506 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002507 goto out_unmap;
2508
Joerg Roedelcb76c322008-06-26 21:28:00 +02002509 paddr += PAGE_SIZE;
2510 start += PAGE_SIZE;
2511 }
2512 address += offset;
2513
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002514 ADD_STATS_COUNTER(alloced_io_mem, size);
2515
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002516 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002517 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002518 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002519 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002520 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002521
Joerg Roedelcb76c322008-06-26 21:28:00 +02002522out:
2523 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002524
2525out_unmap:
2526
2527 for (--i; i >= 0; --i) {
2528 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002529 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002530 }
2531
2532 dma_ops_free_addresses(dma_dom, address, pages);
2533
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002534 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002535}
2536
Joerg Roedel431b2a22008-07-11 17:14:22 +02002537/*
2538 * Does the reverse of the __map_single function. Must be called with
2539 * the domain lock held too
2540 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002541static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002542 dma_addr_t dma_addr,
2543 size_t size,
2544 int dir)
2545{
Joerg Roedel04e04632010-09-23 16:12:48 +02002546 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002547 dma_addr_t i, start;
2548 unsigned int pages;
2549
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002550 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002551 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002552 return;
2553
Joerg Roedel04e04632010-09-23 16:12:48 +02002554 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002555 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002556 dma_addr &= PAGE_MASK;
2557 start = dma_addr;
2558
2559 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002560 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002561 start += PAGE_SIZE;
2562 }
2563
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002564 SUB_STATS_COUNTER(alloced_io_mem, size);
2565
Joerg Roedelcb76c322008-06-26 21:28:00 +02002566 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002567
Joerg Roedel80be3082008-11-06 14:59:05 +01002568 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002569 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002570 dma_dom->need_flush = false;
2571 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002572}
2573
Joerg Roedel431b2a22008-07-11 17:14:22 +02002574/*
2575 * The exported map_single function for dma_ops.
2576 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002577static dma_addr_t map_page(struct device *dev, struct page *page,
2578 unsigned long offset, size_t size,
2579 enum dma_data_direction dir,
2580 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002581{
2582 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002583 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002584 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002585 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002586 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002587
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002588 INC_STATS_COUNTER(cnt_map_single);
2589
Joerg Roedel94f6d192009-11-24 16:40:02 +01002590 domain = get_domain(dev);
2591 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002592 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002593 else if (IS_ERR(domain))
2594 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002595
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002596 dma_mask = *dev->dma_mask;
2597
Joerg Roedel4da70b92008-06-26 21:28:01 +02002598 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002599
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002600 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002601 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002602 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002603 goto out;
2604
Joerg Roedel17b124b2011-04-06 18:01:35 +02002605 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002606
2607out:
2608 spin_unlock_irqrestore(&domain->lock, flags);
2609
2610 return addr;
2611}
2612
Joerg Roedel431b2a22008-07-11 17:14:22 +02002613/*
2614 * The exported unmap_single function for dma_ops.
2615 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002616static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2617 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002618{
2619 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002620 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002621
Joerg Roedel146a6912008-12-12 15:07:12 +01002622 INC_STATS_COUNTER(cnt_unmap_single);
2623
Joerg Roedel94f6d192009-11-24 16:40:02 +01002624 domain = get_domain(dev);
2625 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002626 return;
2627
Joerg Roedel4da70b92008-06-26 21:28:01 +02002628 spin_lock_irqsave(&domain->lock, flags);
2629
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002630 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002631
Joerg Roedel17b124b2011-04-06 18:01:35 +02002632 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002633
2634 spin_unlock_irqrestore(&domain->lock, flags);
2635}
2636
Joerg Roedel431b2a22008-07-11 17:14:22 +02002637/*
2638 * This is a special map_sg function which is used if we should map a
2639 * device which is not handled by an AMD IOMMU in the system.
2640 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002641static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2642 int nelems, int dir)
2643{
2644 struct scatterlist *s;
2645 int i;
2646
2647 for_each_sg(sglist, s, nelems, i) {
2648 s->dma_address = (dma_addr_t)sg_phys(s);
2649 s->dma_length = s->length;
2650 }
2651
2652 return nelems;
2653}
2654
Joerg Roedel431b2a22008-07-11 17:14:22 +02002655/*
2656 * The exported map_sg function for dma_ops (handles scatter-gather
2657 * lists).
2658 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002659static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002660 int nelems, enum dma_data_direction dir,
2661 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002662{
2663 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002664 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002665 int i;
2666 struct scatterlist *s;
2667 phys_addr_t paddr;
2668 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002669 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002670
Joerg Roedeld03f0672008-12-12 15:09:48 +01002671 INC_STATS_COUNTER(cnt_map_sg);
2672
Joerg Roedel94f6d192009-11-24 16:40:02 +01002673 domain = get_domain(dev);
2674 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002675 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002676 else if (IS_ERR(domain))
2677 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002678
Joerg Roedel832a90c2008-09-18 15:54:23 +02002679 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002680
Joerg Roedel65b050a2008-06-26 21:28:02 +02002681 spin_lock_irqsave(&domain->lock, flags);
2682
2683 for_each_sg(sglist, s, nelems, i) {
2684 paddr = sg_phys(s);
2685
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002686 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002687 paddr, s->length, dir, false,
2688 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002689
2690 if (s->dma_address) {
2691 s->dma_length = s->length;
2692 mapped_elems++;
2693 } else
2694 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002695 }
2696
Joerg Roedel17b124b2011-04-06 18:01:35 +02002697 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002698
2699out:
2700 spin_unlock_irqrestore(&domain->lock, flags);
2701
2702 return mapped_elems;
2703unmap:
2704 for_each_sg(sglist, s, mapped_elems, i) {
2705 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002706 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002707 s->dma_length, dir);
2708 s->dma_address = s->dma_length = 0;
2709 }
2710
2711 mapped_elems = 0;
2712
2713 goto out;
2714}
2715
Joerg Roedel431b2a22008-07-11 17:14:22 +02002716/*
2717 * The exported map_sg function for dma_ops (handles scatter-gather
2718 * lists).
2719 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002720static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002721 int nelems, enum dma_data_direction dir,
2722 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002723{
2724 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002725 struct protection_domain *domain;
2726 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002727 int i;
2728
Joerg Roedel55877a62008-12-12 15:12:14 +01002729 INC_STATS_COUNTER(cnt_unmap_sg);
2730
Joerg Roedel94f6d192009-11-24 16:40:02 +01002731 domain = get_domain(dev);
2732 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002733 return;
2734
Joerg Roedel65b050a2008-06-26 21:28:02 +02002735 spin_lock_irqsave(&domain->lock, flags);
2736
2737 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002738 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002739 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002740 s->dma_address = s->dma_length = 0;
2741 }
2742
Joerg Roedel17b124b2011-04-06 18:01:35 +02002743 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002744
2745 spin_unlock_irqrestore(&domain->lock, flags);
2746}
2747
Joerg Roedel431b2a22008-07-11 17:14:22 +02002748/*
2749 * The exported alloc_coherent function for dma_ops.
2750 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002751static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002752 dma_addr_t *dma_addr, gfp_t flag,
2753 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002754{
2755 unsigned long flags;
2756 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002757 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002758 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002759 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002760
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002761 INC_STATS_COUNTER(cnt_alloc_coherent);
2762
Joerg Roedel94f6d192009-11-24 16:40:02 +01002763 domain = get_domain(dev);
2764 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002765 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2766 *dma_addr = __pa(virt_addr);
2767 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002768 } else if (IS_ERR(domain))
2769 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002770
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002771 dma_mask = dev->coherent_dma_mask;
2772 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2773 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002774
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002775 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2776 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302777 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002778
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002779 paddr = virt_to_phys(virt_addr);
2780
Joerg Roedel832a90c2008-09-18 15:54:23 +02002781 if (!dma_mask)
2782 dma_mask = *dev->dma_mask;
2783
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002784 spin_lock_irqsave(&domain->lock, flags);
2785
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002786 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002787 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002788
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002789 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002790 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002791 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002792 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002793
Joerg Roedel17b124b2011-04-06 18:01:35 +02002794 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002795
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002796 spin_unlock_irqrestore(&domain->lock, flags);
2797
2798 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002799
2800out_free:
2801
2802 free_pages((unsigned long)virt_addr, get_order(size));
2803
2804 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002805}
2806
Joerg Roedel431b2a22008-07-11 17:14:22 +02002807/*
2808 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002809 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002810static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002811 void *virt_addr, dma_addr_t dma_addr,
2812 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002813{
2814 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002815 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002816
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002817 INC_STATS_COUNTER(cnt_free_coherent);
2818
Joerg Roedel94f6d192009-11-24 16:40:02 +01002819 domain = get_domain(dev);
2820 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002821 goto free_mem;
2822
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002823 spin_lock_irqsave(&domain->lock, flags);
2824
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002825 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002826
Joerg Roedel17b124b2011-04-06 18:01:35 +02002827 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002828
2829 spin_unlock_irqrestore(&domain->lock, flags);
2830
2831free_mem:
2832 free_pages((unsigned long)virt_addr, get_order(size));
2833}
2834
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002835/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002836 * This function is called by the DMA layer to find out if we can handle a
2837 * particular device. It is part of the dma_ops.
2838 */
2839static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2840{
Joerg Roedel420aef82009-11-23 16:14:57 +01002841 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002842}
2843
2844/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002845 * The function for pre-allocating protection domains.
2846 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002847 * If the driver core informs the DMA layer if a driver grabs a device
2848 * we don't need to preallocate the protection domains anymore.
2849 * For now we have to.
2850 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002851static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002852{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002853 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002854 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002855 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002856 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002857
Chris Wrightd18c69d2010-04-02 18:27:55 -07002858 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002859
2860 /* Do we handle this device? */
2861 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002862 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002863
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002864 dev_data = get_dev_data(&dev->dev);
2865 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2866 /* Make sure passthrough domain is allocated */
2867 alloc_passthrough_domain();
2868 dev_data->passthrough = true;
2869 attach_device(&dev->dev, pt_domain);
2870 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2871 dev_name(&dev->dev));
2872 }
2873
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002874 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002875 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002876 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002877
2878 devid = get_device_id(&dev->dev);
2879
Joerg Roedel87a64d52009-11-24 17:26:43 +01002880 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002881 if (!dma_dom)
2882 continue;
2883 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002884 dma_dom->target_dev = devid;
2885
Joerg Roedel15898bb2009-11-24 15:39:42 +01002886 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002887
Joerg Roedelbd60b732008-09-11 10:24:48 +02002888 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002889 }
2890}
2891
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002892static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002893 .alloc = alloc_coherent,
2894 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002895 .map_page = map_page,
2896 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002897 .map_sg = map_sg,
2898 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002899 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002900};
2901
Joerg Roedel27c21272011-05-30 15:56:24 +02002902static unsigned device_dma_ops_init(void)
2903{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002904 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002905 struct pci_dev *pdev = NULL;
2906 unsigned unhandled = 0;
2907
2908 for_each_pci_dev(pdev) {
2909 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002910
2911 iommu_ignore_device(&pdev->dev);
2912
Joerg Roedel27c21272011-05-30 15:56:24 +02002913 unhandled += 1;
2914 continue;
2915 }
2916
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002917 dev_data = get_dev_data(&pdev->dev);
2918
2919 if (!dev_data->passthrough)
2920 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2921 else
2922 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002923 }
2924
2925 return unhandled;
2926}
2927
Joerg Roedel431b2a22008-07-11 17:14:22 +02002928/*
2929 * The function which clues the AMD IOMMU driver into dma_ops.
2930 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002931
2932void __init amd_iommu_init_api(void)
2933{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002934 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002935}
2936
Joerg Roedel6631ee92008-06-26 21:28:05 +02002937int __init amd_iommu_init_dma_ops(void)
2938{
2939 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002940 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002941
Joerg Roedel431b2a22008-07-11 17:14:22 +02002942 /*
2943 * first allocate a default protection domain for every IOMMU we
2944 * found in the system. Devices not assigned to any other
2945 * protection domain will be assigned to the default one.
2946 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002947 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002948 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002949 if (iommu->default_dom == NULL)
2950 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002951 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002952 ret = iommu_init_unity_mappings(iommu);
2953 if (ret)
2954 goto free_domains;
2955 }
2956
Joerg Roedel431b2a22008-07-11 17:14:22 +02002957 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002958 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002959 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002960 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002961
2962 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002963 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002964
Joerg Roedel431b2a22008-07-11 17:14:22 +02002965 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002966 unhandled = device_dma_ops_init();
2967 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2968 /* There are unhandled devices - initialize swiotlb for them */
2969 swiotlb = 1;
2970 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002971
Joerg Roedel7f265082008-12-12 13:50:21 +01002972 amd_iommu_stats_init();
2973
Joerg Roedel62410ee2012-06-12 16:42:43 +02002974 if (amd_iommu_unmap_flush)
2975 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2976 else
2977 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2978
Joerg Roedel6631ee92008-06-26 21:28:05 +02002979 return 0;
2980
2981free_domains:
2982
Joerg Roedel3bd22172009-05-04 15:06:20 +02002983 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002984 if (iommu->default_dom)
2985 dma_ops_domain_free(iommu->default_dom);
2986 }
2987
2988 return ret;
2989}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002990
2991/*****************************************************************************
2992 *
2993 * The following functions belong to the exported interface of AMD IOMMU
2994 *
2995 * This interface allows access to lower level functions of the IOMMU
2996 * like protection domain handling and assignement of devices to domains
2997 * which is not possible with the dma_ops interface.
2998 *
2999 *****************************************************************************/
3000
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003001static void cleanup_domain(struct protection_domain *domain)
3002{
Joerg Roedel492667d2009-11-27 13:25:47 +01003003 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003004 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003005
3006 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3007
Joerg Roedel492667d2009-11-27 13:25:47 +01003008 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003009 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003010 atomic_set(&dev_data->bind, 0);
3011 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003012
3013 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3014}
3015
Joerg Roedel26508152009-08-26 16:52:40 +02003016static void protection_domain_free(struct protection_domain *domain)
3017{
3018 if (!domain)
3019 return;
3020
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003021 del_domain_from_list(domain);
3022
Joerg Roedel26508152009-08-26 16:52:40 +02003023 if (domain->id)
3024 domain_id_free(domain->id);
3025
3026 kfree(domain);
3027}
3028
3029static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003030{
3031 struct protection_domain *domain;
3032
3033 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3034 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003035 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003036
3037 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003038 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003039 domain->id = domain_id_alloc();
3040 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003041 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003042 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003043
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003044 add_domain_to_list(domain);
3045
Joerg Roedel26508152009-08-26 16:52:40 +02003046 return domain;
3047
3048out_err:
3049 kfree(domain);
3050
3051 return NULL;
3052}
3053
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003054static int __init alloc_passthrough_domain(void)
3055{
3056 if (pt_domain != NULL)
3057 return 0;
3058
3059 /* allocate passthrough domain */
3060 pt_domain = protection_domain_alloc();
3061 if (!pt_domain)
3062 return -ENOMEM;
3063
3064 pt_domain->mode = PAGE_MODE_NONE;
3065
3066 return 0;
3067}
Joerg Roedel26508152009-08-26 16:52:40 +02003068static int amd_iommu_domain_init(struct iommu_domain *dom)
3069{
3070 struct protection_domain *domain;
3071
3072 domain = protection_domain_alloc();
3073 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003074 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003075
3076 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003077 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3078 if (!domain->pt_root)
3079 goto out_free;
3080
Joerg Roedelf3572db2011-11-23 12:36:25 +01003081 domain->iommu_domain = dom;
3082
Joerg Roedelc156e342008-12-02 18:13:27 +01003083 dom->priv = domain;
3084
3085 return 0;
3086
3087out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003088 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003089
3090 return -ENOMEM;
3091}
3092
Joerg Roedel98383fc2008-12-02 18:34:12 +01003093static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3094{
3095 struct protection_domain *domain = dom->priv;
3096
3097 if (!domain)
3098 return;
3099
3100 if (domain->dev_cnt > 0)
3101 cleanup_domain(domain);
3102
3103 BUG_ON(domain->dev_cnt != 0);
3104
Joerg Roedel132bd682011-11-17 14:18:46 +01003105 if (domain->mode != PAGE_MODE_NONE)
3106 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003107
Joerg Roedel52815b72011-11-17 17:24:28 +01003108 if (domain->flags & PD_IOMMUV2_MASK)
3109 free_gcr3_table(domain);
3110
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003111 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003112
3113 dom->priv = NULL;
3114}
3115
Joerg Roedel684f2882008-12-08 12:07:44 +01003116static void amd_iommu_detach_device(struct iommu_domain *dom,
3117 struct device *dev)
3118{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003119 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003120 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003121 u16 devid;
3122
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003123 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003124 return;
3125
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003126 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003127
Joerg Roedel657cbb62009-11-23 15:26:46 +01003128 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003129 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003130
3131 iommu = amd_iommu_rlookup_table[devid];
3132 if (!iommu)
3133 return;
3134
Joerg Roedel684f2882008-12-08 12:07:44 +01003135 iommu_completion_wait(iommu);
3136}
3137
Joerg Roedel01106062008-12-02 19:34:11 +01003138static int amd_iommu_attach_device(struct iommu_domain *dom,
3139 struct device *dev)
3140{
3141 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003142 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003143 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003144 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003145
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003146 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003147 return -EINVAL;
3148
Joerg Roedel657cbb62009-11-23 15:26:46 +01003149 dev_data = dev->archdata.iommu;
3150
Joerg Roedelf62dda62011-06-09 12:55:35 +02003151 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003152 if (!iommu)
3153 return -EINVAL;
3154
Joerg Roedel657cbb62009-11-23 15:26:46 +01003155 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003156 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003157
Joerg Roedel15898bb2009-11-24 15:39:42 +01003158 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003159
3160 iommu_completion_wait(iommu);
3161
Joerg Roedel15898bb2009-11-24 15:39:42 +01003162 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003163}
3164
Joerg Roedel468e2362010-01-21 16:37:36 +01003165static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003166 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003167{
3168 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003169 int prot = 0;
3170 int ret;
3171
Joerg Roedel132bd682011-11-17 14:18:46 +01003172 if (domain->mode == PAGE_MODE_NONE)
3173 return -EINVAL;
3174
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003175 if (iommu_prot & IOMMU_READ)
3176 prot |= IOMMU_PROT_IR;
3177 if (iommu_prot & IOMMU_WRITE)
3178 prot |= IOMMU_PROT_IW;
3179
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003180 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003181 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003182 mutex_unlock(&domain->api_lock);
3183
Joerg Roedel795e74f72010-05-11 17:40:57 +02003184 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003185}
3186
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003187static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3188 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003189{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003190 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003191 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003192
Joerg Roedel132bd682011-11-17 14:18:46 +01003193 if (domain->mode == PAGE_MODE_NONE)
3194 return -EINVAL;
3195
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003196 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003197 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003198 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003199
Joerg Roedel17b124b2011-04-06 18:01:35 +02003200 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003201
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003202 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003203}
3204
Joerg Roedel645c4c82008-12-02 20:05:50 +01003205static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3206 unsigned long iova)
3207{
3208 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003209 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003210 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003211 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003212
Joerg Roedel132bd682011-11-17 14:18:46 +01003213 if (domain->mode == PAGE_MODE_NONE)
3214 return iova;
3215
Joerg Roedel24cd7722010-01-19 17:27:39 +01003216 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003217
Joerg Roedela6d41a42009-09-02 17:08:55 +02003218 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003219 return 0;
3220
Joerg Roedelf03152b2010-01-21 16:15:24 +01003221 if (PM_PTE_LEVEL(*pte) == 0)
3222 offset_mask = PAGE_SIZE - 1;
3223 else
3224 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3225
3226 __pte = *pte & PM_ADDR_MASK;
3227 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003228
3229 return paddr;
3230}
3231
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003232static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3233 unsigned long cap)
3234{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003235 switch (cap) {
3236 case IOMMU_CAP_CACHE_COHERENCY:
3237 return 1;
3238 }
3239
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003240 return 0;
3241}
3242
Alex Williamson8fbdce62011-10-21 15:56:18 -04003243static int amd_iommu_device_group(struct device *dev, unsigned int *groupid)
3244{
3245 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003246 struct pci_dev *pdev = to_pci_dev(dev);
3247 u16 devid;
Alex Williamson8fbdce62011-10-21 15:56:18 -04003248
3249 if (!dev_data)
3250 return -ENODEV;
3251
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003252 if (pdev->is_virtfn || !iommu_group_mf)
3253 devid = dev_data->devid;
3254 else
3255 devid = calc_devid(pdev->bus->number,
3256 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
3257
3258 *groupid = amd_iommu_alias_table[devid];
Alex Williamson8fbdce62011-10-21 15:56:18 -04003259
3260 return 0;
3261}
3262
Joerg Roedel26961ef2008-12-03 17:00:17 +01003263static struct iommu_ops amd_iommu_ops = {
3264 .domain_init = amd_iommu_domain_init,
3265 .domain_destroy = amd_iommu_domain_destroy,
3266 .attach_dev = amd_iommu_attach_device,
3267 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003268 .map = amd_iommu_map,
3269 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003270 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003271 .domain_has_cap = amd_iommu_domain_has_cap,
Alex Williamson8fbdce62011-10-21 15:56:18 -04003272 .device_group = amd_iommu_device_group,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003273 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003274};
3275
Joerg Roedel0feae532009-08-26 15:26:30 +02003276/*****************************************************************************
3277 *
3278 * The next functions do a basic initialization of IOMMU for pass through
3279 * mode
3280 *
3281 * In passthrough mode the IOMMU is initialized and enabled but not used for
3282 * DMA-API translation.
3283 *
3284 *****************************************************************************/
3285
3286int __init amd_iommu_init_passthrough(void)
3287{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003288 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003289 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003290 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003291 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003292 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003293
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003294 ret = alloc_passthrough_domain();
3295 if (ret)
3296 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003297
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003298 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003299 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003300 continue;
3301
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003302 dev_data = get_dev_data(&dev->dev);
3303 dev_data->passthrough = true;
3304
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003305 devid = get_device_id(&dev->dev);
3306
Joerg Roedel15898bb2009-11-24 15:39:42 +01003307 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003308 if (!iommu)
3309 continue;
3310
Joerg Roedel15898bb2009-11-24 15:39:42 +01003311 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003312 }
3313
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003314 amd_iommu_stats_init();
3315
Joerg Roedel0feae532009-08-26 15:26:30 +02003316 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3317
3318 return 0;
3319}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003320
3321/* IOMMUv2 specific functions */
3322int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3323{
3324 return atomic_notifier_chain_register(&ppr_notifier, nb);
3325}
3326EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3327
3328int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3329{
3330 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3331}
3332EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003333
3334void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3335{
3336 struct protection_domain *domain = dom->priv;
3337 unsigned long flags;
3338
3339 spin_lock_irqsave(&domain->lock, flags);
3340
3341 /* Update data structure */
3342 domain->mode = PAGE_MODE_NONE;
3343 domain->updated = true;
3344
3345 /* Make changes visible to IOMMUs */
3346 update_domain(domain);
3347
3348 /* Page-table is not visible to IOMMU anymore, so free it */
3349 free_pagetable(domain);
3350
3351 spin_unlock_irqrestore(&domain->lock, flags);
3352}
3353EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003354
3355int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3356{
3357 struct protection_domain *domain = dom->priv;
3358 unsigned long flags;
3359 int levels, ret;
3360
3361 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3362 return -EINVAL;
3363
3364 /* Number of GCR3 table levels required */
3365 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3366 levels += 1;
3367
3368 if (levels > amd_iommu_max_glx_val)
3369 return -EINVAL;
3370
3371 spin_lock_irqsave(&domain->lock, flags);
3372
3373 /*
3374 * Save us all sanity checks whether devices already in the
3375 * domain support IOMMUv2. Just force that the domain has no
3376 * devices attached when it is switched into IOMMUv2 mode.
3377 */
3378 ret = -EBUSY;
3379 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3380 goto out;
3381
3382 ret = -ENOMEM;
3383 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3384 if (domain->gcr3_tbl == NULL)
3385 goto out;
3386
3387 domain->glx = levels;
3388 domain->flags |= PD_IOMMUV2_MASK;
3389 domain->updated = true;
3390
3391 update_domain(domain);
3392
3393 ret = 0;
3394
3395out:
3396 spin_unlock_irqrestore(&domain->lock, flags);
3397
3398 return ret;
3399}
3400EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003401
3402static int __flush_pasid(struct protection_domain *domain, int pasid,
3403 u64 address, bool size)
3404{
3405 struct iommu_dev_data *dev_data;
3406 struct iommu_cmd cmd;
3407 int i, ret;
3408
3409 if (!(domain->flags & PD_IOMMUV2_MASK))
3410 return -EINVAL;
3411
3412 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3413
3414 /*
3415 * IOMMU TLB needs to be flushed before Device TLB to
3416 * prevent device TLB refill from IOMMU TLB
3417 */
3418 for (i = 0; i < amd_iommus_present; ++i) {
3419 if (domain->dev_iommu[i] == 0)
3420 continue;
3421
3422 ret = iommu_queue_command(amd_iommus[i], &cmd);
3423 if (ret != 0)
3424 goto out;
3425 }
3426
3427 /* Wait until IOMMU TLB flushes are complete */
3428 domain_flush_complete(domain);
3429
3430 /* Now flush device TLBs */
3431 list_for_each_entry(dev_data, &domain->dev_list, list) {
3432 struct amd_iommu *iommu;
3433 int qdep;
3434
3435 BUG_ON(!dev_data->ats.enabled);
3436
3437 qdep = dev_data->ats.qdep;
3438 iommu = amd_iommu_rlookup_table[dev_data->devid];
3439
3440 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3441 qdep, address, size);
3442
3443 ret = iommu_queue_command(iommu, &cmd);
3444 if (ret != 0)
3445 goto out;
3446 }
3447
3448 /* Wait until all device TLBs are flushed */
3449 domain_flush_complete(domain);
3450
3451 ret = 0;
3452
3453out:
3454
3455 return ret;
3456}
3457
3458static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3459 u64 address)
3460{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003461 INC_STATS_COUNTER(invalidate_iotlb);
3462
Joerg Roedel22e266c2011-11-21 15:59:08 +01003463 return __flush_pasid(domain, pasid, address, false);
3464}
3465
3466int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3467 u64 address)
3468{
3469 struct protection_domain *domain = dom->priv;
3470 unsigned long flags;
3471 int ret;
3472
3473 spin_lock_irqsave(&domain->lock, flags);
3474 ret = __amd_iommu_flush_page(domain, pasid, address);
3475 spin_unlock_irqrestore(&domain->lock, flags);
3476
3477 return ret;
3478}
3479EXPORT_SYMBOL(amd_iommu_flush_page);
3480
3481static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3482{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003483 INC_STATS_COUNTER(invalidate_iotlb_all);
3484
Joerg Roedel22e266c2011-11-21 15:59:08 +01003485 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3486 true);
3487}
3488
3489int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3490{
3491 struct protection_domain *domain = dom->priv;
3492 unsigned long flags;
3493 int ret;
3494
3495 spin_lock_irqsave(&domain->lock, flags);
3496 ret = __amd_iommu_flush_tlb(domain, pasid);
3497 spin_unlock_irqrestore(&domain->lock, flags);
3498
3499 return ret;
3500}
3501EXPORT_SYMBOL(amd_iommu_flush_tlb);
3502
Joerg Roedelb16137b2011-11-21 16:50:23 +01003503static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3504{
3505 int index;
3506 u64 *pte;
3507
3508 while (true) {
3509
3510 index = (pasid >> (9 * level)) & 0x1ff;
3511 pte = &root[index];
3512
3513 if (level == 0)
3514 break;
3515
3516 if (!(*pte & GCR3_VALID)) {
3517 if (!alloc)
3518 return NULL;
3519
3520 root = (void *)get_zeroed_page(GFP_ATOMIC);
3521 if (root == NULL)
3522 return NULL;
3523
3524 *pte = __pa(root) | GCR3_VALID;
3525 }
3526
3527 root = __va(*pte & PAGE_MASK);
3528
3529 level -= 1;
3530 }
3531
3532 return pte;
3533}
3534
3535static int __set_gcr3(struct protection_domain *domain, int pasid,
3536 unsigned long cr3)
3537{
3538 u64 *pte;
3539
3540 if (domain->mode != PAGE_MODE_NONE)
3541 return -EINVAL;
3542
3543 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3544 if (pte == NULL)
3545 return -ENOMEM;
3546
3547 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3548
3549 return __amd_iommu_flush_tlb(domain, pasid);
3550}
3551
3552static int __clear_gcr3(struct protection_domain *domain, int pasid)
3553{
3554 u64 *pte;
3555
3556 if (domain->mode != PAGE_MODE_NONE)
3557 return -EINVAL;
3558
3559 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3560 if (pte == NULL)
3561 return 0;
3562
3563 *pte = 0;
3564
3565 return __amd_iommu_flush_tlb(domain, pasid);
3566}
3567
3568int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3569 unsigned long cr3)
3570{
3571 struct protection_domain *domain = dom->priv;
3572 unsigned long flags;
3573 int ret;
3574
3575 spin_lock_irqsave(&domain->lock, flags);
3576 ret = __set_gcr3(domain, pasid, cr3);
3577 spin_unlock_irqrestore(&domain->lock, flags);
3578
3579 return ret;
3580}
3581EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3582
3583int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3584{
3585 struct protection_domain *domain = dom->priv;
3586 unsigned long flags;
3587 int ret;
3588
3589 spin_lock_irqsave(&domain->lock, flags);
3590 ret = __clear_gcr3(domain, pasid);
3591 spin_unlock_irqrestore(&domain->lock, flags);
3592
3593 return ret;
3594}
3595EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003596
3597int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3598 int status, int tag)
3599{
3600 struct iommu_dev_data *dev_data;
3601 struct amd_iommu *iommu;
3602 struct iommu_cmd cmd;
3603
Joerg Roedel399be2f2011-12-01 16:53:47 +01003604 INC_STATS_COUNTER(complete_ppr);
3605
Joerg Roedelc99afa22011-11-21 18:19:25 +01003606 dev_data = get_dev_data(&pdev->dev);
3607 iommu = amd_iommu_rlookup_table[dev_data->devid];
3608
3609 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3610 tag, dev_data->pri_tlp);
3611
3612 return iommu_queue_command(iommu, &cmd);
3613}
3614EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003615
3616struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3617{
3618 struct protection_domain *domain;
3619
3620 domain = get_domain(&pdev->dev);
3621 if (IS_ERR(domain))
3622 return NULL;
3623
3624 /* Only return IOMMUv2 domains */
3625 if (!(domain->flags & PD_IOMMUV2_MASK))
3626 return NULL;
3627
3628 return domain->iommu_domain;
3629}
3630EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003631
3632void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3633{
3634 struct iommu_dev_data *dev_data;
3635
3636 if (!amd_iommu_v2_supported())
3637 return;
3638
3639 dev_data = get_dev_data(&pdev->dev);
3640 dev_data->errata |= (1 << erratum);
3641}
3642EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003643
3644int amd_iommu_device_info(struct pci_dev *pdev,
3645 struct amd_iommu_device_info *info)
3646{
3647 int max_pasids;
3648 int pos;
3649
3650 if (pdev == NULL || info == NULL)
3651 return -EINVAL;
3652
3653 if (!amd_iommu_v2_supported())
3654 return -EINVAL;
3655
3656 memset(info, 0, sizeof(*info));
3657
3658 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3659 if (pos)
3660 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3661
3662 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3663 if (pos)
3664 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3665
3666 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3667 if (pos) {
3668 int features;
3669
3670 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3671 max_pasids = min(max_pasids, (1 << 20));
3672
3673 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3674 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3675
3676 features = pci_pasid_features(pdev);
3677 if (features & PCI_PASID_CAP_EXEC)
3678 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3679 if (features & PCI_PASID_CAP_PRIV)
3680 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3681 }
3682
3683 return 0;
3684}
3685EXPORT_SYMBOL(amd_iommu_device_info);