blob: d90a421e9caccbbfc38a3d2eb4dd20ef2a50c77b [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 Roedel431b2a22008-07-11 17:14:22 +020086/*
87 * general struct to manage commands send to an IOMMU
88 */
Joerg Roedeld6449532008-07-11 17:14:28 +020089struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020090 u32 data[4];
91};
92
Joerg Roedel04bfdd82009-09-02 16:00:23 +020093static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +010094static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -070095
Joerg Roedel15898bb2009-11-24 15:39:42 +010096/****************************************************************************
97 *
98 * Helper functions
99 *
100 ****************************************************************************/
101
Joerg Roedelf62dda62011-06-09 12:55:35 +0200102static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200103{
104 struct iommu_dev_data *dev_data;
105 unsigned long flags;
106
107 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
108 if (!dev_data)
109 return NULL;
110
Joerg Roedelf62dda62011-06-09 12:55:35 +0200111 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200112 atomic_set(&dev_data->bind, 0);
113
114 spin_lock_irqsave(&dev_data_list_lock, flags);
115 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
116 spin_unlock_irqrestore(&dev_data_list_lock, flags);
117
118 return dev_data;
119}
120
121static void free_dev_data(struct iommu_dev_data *dev_data)
122{
123 unsigned long flags;
124
125 spin_lock_irqsave(&dev_data_list_lock, flags);
126 list_del(&dev_data->dev_data_list);
127 spin_unlock_irqrestore(&dev_data_list_lock, flags);
128
129 kfree(dev_data);
130}
131
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200132static struct iommu_dev_data *search_dev_data(u16 devid)
133{
134 struct iommu_dev_data *dev_data;
135 unsigned long flags;
136
137 spin_lock_irqsave(&dev_data_list_lock, flags);
138 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
139 if (dev_data->devid == devid)
140 goto out_unlock;
141 }
142
143 dev_data = NULL;
144
145out_unlock:
146 spin_unlock_irqrestore(&dev_data_list_lock, flags);
147
148 return dev_data;
149}
150
151static struct iommu_dev_data *find_dev_data(u16 devid)
152{
153 struct iommu_dev_data *dev_data;
154
155 dev_data = search_dev_data(devid);
156
157 if (dev_data == NULL)
158 dev_data = alloc_dev_data(devid);
159
160 return dev_data;
161}
162
Joerg Roedel15898bb2009-11-24 15:39:42 +0100163static inline u16 get_device_id(struct device *dev)
164{
165 struct pci_dev *pdev = to_pci_dev(dev);
166
167 return calc_devid(pdev->bus->number, pdev->devfn);
168}
169
Joerg Roedel657cbb62009-11-23 15:26:46 +0100170static struct iommu_dev_data *get_dev_data(struct device *dev)
171{
172 return dev->archdata.iommu;
173}
174
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100175static bool pci_iommuv2_capable(struct pci_dev *pdev)
176{
177 static const int caps[] = {
178 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100179 PCI_EXT_CAP_ID_PRI,
180 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100181 };
182 int i, pos;
183
184 for (i = 0; i < 3; ++i) {
185 pos = pci_find_ext_capability(pdev, caps[i]);
186 if (pos == 0)
187 return false;
188 }
189
190 return true;
191}
192
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100193static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
194{
195 struct iommu_dev_data *dev_data;
196
197 dev_data = get_dev_data(&pdev->dev);
198
199 return dev_data->errata & (1 << erratum) ? true : false;
200}
201
Joerg Roedel71c70982009-11-24 16:43:06 +0100202/*
203 * In this function the list of preallocated protection domains is traversed to
204 * find the domain for a specific device
205 */
206static struct dma_ops_domain *find_protection_domain(u16 devid)
207{
208 struct dma_ops_domain *entry, *ret = NULL;
209 unsigned long flags;
210 u16 alias = amd_iommu_alias_table[devid];
211
212 if (list_empty(&iommu_pd_list))
213 return NULL;
214
215 spin_lock_irqsave(&iommu_pd_list_lock, flags);
216
217 list_for_each_entry(entry, &iommu_pd_list, list) {
218 if (entry->target_dev == devid ||
219 entry->target_dev == alias) {
220 ret = entry;
221 break;
222 }
223 }
224
225 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
226
227 return ret;
228}
229
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100230/*
231 * This function checks if the driver got a valid device from the caller to
232 * avoid dereferencing invalid pointers.
233 */
234static bool check_device(struct device *dev)
235{
236 u16 devid;
237
238 if (!dev || !dev->dma_mask)
239 return false;
240
241 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100242 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100243 return false;
244
245 devid = get_device_id(dev);
246
247 /* Out of our scope? */
248 if (devid > amd_iommu_last_bdf)
249 return false;
250
251 if (amd_iommu_rlookup_table[devid] == NULL)
252 return false;
253
254 return true;
255}
256
Joerg Roedel657cbb62009-11-23 15:26:46 +0100257static int iommu_init_device(struct device *dev)
258{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100259 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100260 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200261 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100262
263 if (dev->archdata.iommu)
264 return 0;
265
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200266 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100267 if (!dev_data)
268 return -ENOMEM;
269
Joerg Roedelf62dda62011-06-09 12:55:35 +0200270 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200271 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200272 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100273
Joerg Roedel71f77582011-06-09 19:03:15 +0200274 alias_data = find_dev_data(alias);
275 if (alias_data == NULL) {
276 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
277 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200278 free_dev_data(dev_data);
279 return -ENOTSUPP;
280 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200281 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200282 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100283
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100284 if (pci_iommuv2_capable(pdev)) {
285 struct amd_iommu *iommu;
286
287 iommu = amd_iommu_rlookup_table[dev_data->devid];
288 dev_data->iommu_v2 = iommu->is_iommu_v2;
289 }
290
Joerg Roedel657cbb62009-11-23 15:26:46 +0100291 dev->archdata.iommu = dev_data;
292
Joerg Roedel657cbb62009-11-23 15:26:46 +0100293 return 0;
294}
295
Joerg Roedel26018872011-06-06 16:50:14 +0200296static void iommu_ignore_device(struct device *dev)
297{
298 u16 devid, alias;
299
300 devid = get_device_id(dev);
301 alias = amd_iommu_alias_table[devid];
302
303 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
304 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
305
306 amd_iommu_rlookup_table[devid] = NULL;
307 amd_iommu_rlookup_table[alias] = NULL;
308}
309
Joerg Roedel657cbb62009-11-23 15:26:46 +0100310static void iommu_uninit_device(struct device *dev)
311{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200312 /*
313 * Nothing to do here - we keep dev_data around for unplugged devices
314 * and reuse it when the device is re-plugged - not doing so would
315 * introduce a ton of races.
316 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100317}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100318
319void __init amd_iommu_uninit_devices(void)
320{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200321 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100322 struct pci_dev *pdev = NULL;
323
324 for_each_pci_dev(pdev) {
325
326 if (!check_device(&pdev->dev))
327 continue;
328
329 iommu_uninit_device(&pdev->dev);
330 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200331
332 /* Free all of our dev_data structures */
333 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
334 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100335}
336
337int __init amd_iommu_init_devices(void)
338{
339 struct pci_dev *pdev = NULL;
340 int ret = 0;
341
342 for_each_pci_dev(pdev) {
343
344 if (!check_device(&pdev->dev))
345 continue;
346
347 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200348 if (ret == -ENOTSUPP)
349 iommu_ignore_device(&pdev->dev);
350 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100351 goto out_free;
352 }
353
354 return 0;
355
356out_free:
357
358 amd_iommu_uninit_devices();
359
360 return ret;
361}
Joerg Roedel7f265082008-12-12 13:50:21 +0100362#ifdef CONFIG_AMD_IOMMU_STATS
363
364/*
365 * Initialization code for statistics collection
366 */
367
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100368DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100369DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100370DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100371DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100372DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100373DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100374DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100375DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100376DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100377DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100378DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100379DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100380DECLARE_STATS_COUNTER(complete_ppr);
381DECLARE_STATS_COUNTER(invalidate_iotlb);
382DECLARE_STATS_COUNTER(invalidate_iotlb_all);
383DECLARE_STATS_COUNTER(pri_requests);
384
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100385
Joerg Roedel7f265082008-12-12 13:50:21 +0100386static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100387static struct dentry *de_fflush;
388
389static void amd_iommu_stats_add(struct __iommu_counter *cnt)
390{
391 if (stats_dir == NULL)
392 return;
393
394 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
395 &cnt->value);
396}
397
398static void amd_iommu_stats_init(void)
399{
400 stats_dir = debugfs_create_dir("amd-iommu", NULL);
401 if (stats_dir == NULL)
402 return;
403
Joerg Roedel7f265082008-12-12 13:50:21 +0100404 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
405 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100406
407 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100408 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100409 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100410 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100411 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100412 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100413 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100414 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100415 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100416 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100417 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100418 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100419 amd_iommu_stats_add(&complete_ppr);
420 amd_iommu_stats_add(&invalidate_iotlb);
421 amd_iommu_stats_add(&invalidate_iotlb_all);
422 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100423}
424
425#endif
426
Joerg Roedel431b2a22008-07-11 17:14:22 +0200427/****************************************************************************
428 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200429 * Interrupt handling functions
430 *
431 ****************************************************************************/
432
Joerg Roedele3e59872009-09-03 14:02:10 +0200433static void dump_dte_entry(u16 devid)
434{
435 int i;
436
Joerg Roedelee6c2862011-11-09 12:06:03 +0100437 for (i = 0; i < 4; ++i)
438 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200439 amd_iommu_dev_table[devid].data[i]);
440}
441
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200442static void dump_command(unsigned long phys_addr)
443{
444 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
445 int i;
446
447 for (i = 0; i < 4; ++i)
448 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
449}
450
Joerg Roedela345b232009-09-03 15:01:43 +0200451static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200452{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200453 int type, devid, domid, flags;
454 volatile u32 *event = __evt;
455 int count = 0;
456 u64 address;
457
458retry:
459 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
460 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
461 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
462 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
463 address = (u64)(((u64)event[3]) << 32) | event[2];
464
465 if (type == 0) {
466 /* Did we hit the erratum? */
467 if (++count == LOOP_TIMEOUT) {
468 pr_err("AMD-Vi: No event written to event log\n");
469 return;
470 }
471 udelay(1);
472 goto retry;
473 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200474
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200475 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200476
477 switch (type) {
478 case EVENT_TYPE_ILL_DEV:
479 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
480 "address=0x%016llx flags=0x%04x]\n",
481 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
482 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200483 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200484 break;
485 case EVENT_TYPE_IO_FAULT:
486 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
487 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
488 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
489 domid, address, flags);
490 break;
491 case EVENT_TYPE_DEV_TAB_ERR:
492 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
493 "address=0x%016llx flags=0x%04x]\n",
494 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
495 address, flags);
496 break;
497 case EVENT_TYPE_PAGE_TAB_ERR:
498 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
499 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
500 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
501 domid, address, flags);
502 break;
503 case EVENT_TYPE_ILL_CMD:
504 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200505 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200506 break;
507 case EVENT_TYPE_CMD_HARD_ERR:
508 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
509 "flags=0x%04x]\n", address, flags);
510 break;
511 case EVENT_TYPE_IOTLB_INV_TO:
512 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
513 "address=0x%016llx]\n",
514 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
515 address);
516 break;
517 case EVENT_TYPE_INV_DEV_REQ:
518 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
519 "address=0x%016llx flags=0x%04x]\n",
520 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
521 address, flags);
522 break;
523 default:
524 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
525 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200526
527 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200528}
529
530static void iommu_poll_events(struct amd_iommu *iommu)
531{
532 u32 head, tail;
533 unsigned long flags;
534
535 spin_lock_irqsave(&iommu->lock, flags);
536
537 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
538 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
539
540 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200541 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200542 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
543 }
544
545 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
546
547 spin_unlock_irqrestore(&iommu->lock, flags);
548}
549
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100550static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u32 head)
551{
552 struct amd_iommu_fault fault;
553 volatile u64 *raw;
554 int i;
555
Joerg Roedel399be2f2011-12-01 16:53:47 +0100556 INC_STATS_COUNTER(pri_requests);
557
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100558 raw = (u64 *)(iommu->ppr_log + head);
559
560 /*
561 * Hardware bug: Interrupt may arrive before the entry is written to
562 * memory. If this happens we need to wait for the entry to arrive.
563 */
564 for (i = 0; i < LOOP_TIMEOUT; ++i) {
565 if (PPR_REQ_TYPE(raw[0]) != 0)
566 break;
567 udelay(1);
568 }
569
570 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
571 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
572 return;
573 }
574
575 fault.address = raw[1];
576 fault.pasid = PPR_PASID(raw[0]);
577 fault.device_id = PPR_DEVID(raw[0]);
578 fault.tag = PPR_TAG(raw[0]);
579 fault.flags = PPR_FLAGS(raw[0]);
580
581 /*
582 * To detect the hardware bug we need to clear the entry
583 * to back to zero.
584 */
585 raw[0] = raw[1] = 0;
586
587 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
588}
589
590static void iommu_poll_ppr_log(struct amd_iommu *iommu)
591{
592 unsigned long flags;
593 u32 head, tail;
594
595 if (iommu->ppr_log == NULL)
596 return;
597
598 spin_lock_irqsave(&iommu->lock, flags);
599
600 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
601 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
602
603 while (head != tail) {
604
605 /* Handle PPR entry */
606 iommu_handle_ppr_entry(iommu, head);
607
608 /* Update and refresh ring-buffer state*/
609 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
610 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
611 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
612 }
613
614 /* enable ppr interrupts again */
615 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
616
617 spin_unlock_irqrestore(&iommu->lock, flags);
618}
619
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200620irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200621{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200622 struct amd_iommu *iommu;
623
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100624 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200625 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100626 iommu_poll_ppr_log(iommu);
627 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200628
629 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200630}
631
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200632irqreturn_t amd_iommu_int_handler(int irq, void *data)
633{
634 return IRQ_WAKE_THREAD;
635}
636
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200637/****************************************************************************
638 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200639 * IOMMU command queuing functions
640 *
641 ****************************************************************************/
642
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200643static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200644{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200645 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200646
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200647 while (*sem == 0 && i < LOOP_TIMEOUT) {
648 udelay(1);
649 i += 1;
650 }
651
652 if (i == LOOP_TIMEOUT) {
653 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
654 return -EIO;
655 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200656
657 return 0;
658}
659
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200660static void copy_cmd_to_buffer(struct amd_iommu *iommu,
661 struct iommu_cmd *cmd,
662 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200663{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200664 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200665
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200666 target = iommu->cmd_buf + tail;
667 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200668
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200669 /* Copy command to buffer */
670 memcpy(target, cmd, sizeof(*cmd));
671
672 /* Tell the IOMMU about it */
673 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
674}
675
Joerg Roedel815b33f2011-04-06 17:26:49 +0200676static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200677{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200678 WARN_ON(address & 0x7ULL);
679
Joerg Roedelded46732011-04-06 10:53:48 +0200680 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200681 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
682 cmd->data[1] = upper_32_bits(__pa(address));
683 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200684 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
685}
686
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200687static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
688{
689 memset(cmd, 0, sizeof(*cmd));
690 cmd->data[0] = devid;
691 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
692}
693
Joerg Roedel11b64022011-04-06 11:49:28 +0200694static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
695 size_t size, u16 domid, int pde)
696{
697 u64 pages;
698 int s;
699
700 pages = iommu_num_pages(address, size, PAGE_SIZE);
701 s = 0;
702
703 if (pages > 1) {
704 /*
705 * If we have to flush more than one page, flush all
706 * TLB entries for this domain
707 */
708 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
709 s = 1;
710 }
711
712 address &= PAGE_MASK;
713
714 memset(cmd, 0, sizeof(*cmd));
715 cmd->data[1] |= domid;
716 cmd->data[2] = lower_32_bits(address);
717 cmd->data[3] = upper_32_bits(address);
718 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
719 if (s) /* size bit - we flush more than one 4kb page */
720 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
721 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
722 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
723}
724
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200725static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
726 u64 address, size_t size)
727{
728 u64 pages;
729 int s;
730
731 pages = iommu_num_pages(address, size, PAGE_SIZE);
732 s = 0;
733
734 if (pages > 1) {
735 /*
736 * If we have to flush more than one page, flush all
737 * TLB entries for this domain
738 */
739 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
740 s = 1;
741 }
742
743 address &= PAGE_MASK;
744
745 memset(cmd, 0, sizeof(*cmd));
746 cmd->data[0] = devid;
747 cmd->data[0] |= (qdep & 0xff) << 24;
748 cmd->data[1] = devid;
749 cmd->data[2] = lower_32_bits(address);
750 cmd->data[3] = upper_32_bits(address);
751 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
752 if (s)
753 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
754}
755
Joerg Roedel22e266c2011-11-21 15:59:08 +0100756static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
757 u64 address, bool size)
758{
759 memset(cmd, 0, sizeof(*cmd));
760
761 address &= ~(0xfffULL);
762
763 cmd->data[0] = pasid & PASID_MASK;
764 cmd->data[1] = domid;
765 cmd->data[2] = lower_32_bits(address);
766 cmd->data[3] = upper_32_bits(address);
767 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
768 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
769 if (size)
770 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
771 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
772}
773
774static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
775 int qdep, u64 address, bool size)
776{
777 memset(cmd, 0, sizeof(*cmd));
778
779 address &= ~(0xfffULL);
780
781 cmd->data[0] = devid;
782 cmd->data[0] |= (pasid & 0xff) << 16;
783 cmd->data[0] |= (qdep & 0xff) << 24;
784 cmd->data[1] = devid;
785 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
786 cmd->data[2] = lower_32_bits(address);
787 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
788 cmd->data[3] = upper_32_bits(address);
789 if (size)
790 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
791 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
792}
793
Joerg Roedelc99afa22011-11-21 18:19:25 +0100794static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
795 int status, int tag, bool gn)
796{
797 memset(cmd, 0, sizeof(*cmd));
798
799 cmd->data[0] = devid;
800 if (gn) {
801 cmd->data[1] = pasid & PASID_MASK;
802 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
803 }
804 cmd->data[3] = tag & 0x1ff;
805 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
806
807 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
808}
809
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200810static void build_inv_all(struct iommu_cmd *cmd)
811{
812 memset(cmd, 0, sizeof(*cmd));
813 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200814}
815
Joerg Roedel431b2a22008-07-11 17:14:22 +0200816/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200817 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200818 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200819 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200820static int iommu_queue_command_sync(struct amd_iommu *iommu,
821 struct iommu_cmd *cmd,
822 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200823{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200824 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200825 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200826
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200827 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100828
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200829again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200830 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200831
832 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
833 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
834 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
835 left = (head - next_tail) % iommu->cmd_buf_size;
836
837 if (left <= 2) {
838 struct iommu_cmd sync_cmd;
839 volatile u64 sem = 0;
840 int ret;
841
842 build_completion_wait(&sync_cmd, (u64)&sem);
843 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
844
845 spin_unlock_irqrestore(&iommu->lock, flags);
846
847 if ((ret = wait_on_sem(&sem)) != 0)
848 return ret;
849
850 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200851 }
852
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200853 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200854
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200855 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200856 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200857
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200858 spin_unlock_irqrestore(&iommu->lock, flags);
859
Joerg Roedel815b33f2011-04-06 17:26:49 +0200860 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100861}
862
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200863static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
864{
865 return iommu_queue_command_sync(iommu, cmd, true);
866}
867
Joerg Roedel8d201962008-12-02 20:34:41 +0100868/*
869 * This function queues a completion wait command into the command
870 * buffer of an IOMMU
871 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100872static int iommu_completion_wait(struct amd_iommu *iommu)
873{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200874 struct iommu_cmd cmd;
875 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200876 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100877
878 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200879 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100880
Joerg Roedel815b33f2011-04-06 17:26:49 +0200881 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100882
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200883 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100884 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200885 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100886
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200887 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200888}
889
Joerg Roedeld8c13082011-04-06 18:51:26 +0200890static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200891{
892 struct iommu_cmd cmd;
893
Joerg Roedeld8c13082011-04-06 18:51:26 +0200894 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200895
Joerg Roedeld8c13082011-04-06 18:51:26 +0200896 return iommu_queue_command(iommu, &cmd);
897}
898
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200899static void iommu_flush_dte_all(struct amd_iommu *iommu)
900{
901 u32 devid;
902
903 for (devid = 0; devid <= 0xffff; ++devid)
904 iommu_flush_dte(iommu, devid);
905
906 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200907}
908
909/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200910 * This function uses heavy locking and may disable irqs for some time. But
911 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200912 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200913static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200914{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200915 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200916
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200917 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
918 struct iommu_cmd cmd;
919 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
920 dom_id, 1);
921 iommu_queue_command(iommu, &cmd);
922 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200923
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200924 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200925}
926
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200927static void iommu_flush_all(struct amd_iommu *iommu)
928{
929 struct iommu_cmd cmd;
930
931 build_inv_all(&cmd);
932
933 iommu_queue_command(iommu, &cmd);
934 iommu_completion_wait(iommu);
935}
936
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200937void iommu_flush_all_caches(struct amd_iommu *iommu)
938{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200939 if (iommu_feature(iommu, FEATURE_IA)) {
940 iommu_flush_all(iommu);
941 } else {
942 iommu_flush_dte_all(iommu);
943 iommu_flush_tlb_all(iommu);
944 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200945}
946
Joerg Roedel431b2a22008-07-11 17:14:22 +0200947/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200948 * Command send function for flushing on-device TLB
949 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200950static int device_flush_iotlb(struct iommu_dev_data *dev_data,
951 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200952{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200953 struct amd_iommu *iommu;
954 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200955 int qdep;
956
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200957 qdep = dev_data->ats.qdep;
958 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200959
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200960 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200961
962 return iommu_queue_command(iommu, &cmd);
963}
964
965/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200966 * Command send function for invalidating a device table entry
967 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200968static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100969{
970 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200971 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100972
Joerg Roedel6c542042011-06-09 17:07:31 +0200973 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100974
Joerg Roedelf62dda62011-06-09 12:55:35 +0200975 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200976 if (ret)
977 return ret;
978
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200979 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200980 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200981
982 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100983}
984
Joerg Roedel431b2a22008-07-11 17:14:22 +0200985/*
986 * TLB invalidation function which is called from the mapping functions.
987 * It invalidates a single PTE if the range to flush is within a single
988 * page. Otherwise it flushes the whole TLB of the IOMMU.
989 */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200990static void __domain_flush_pages(struct protection_domain *domain,
991 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200992{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200993 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +0200994 struct iommu_cmd cmd;
995 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200996
Joerg Roedel11b64022011-04-06 11:49:28 +0200997 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +0200998
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100999 for (i = 0; i < amd_iommus_present; ++i) {
1000 if (!domain->dev_iommu[i])
1001 continue;
1002
1003 /*
1004 * Devices of this domain are behind this IOMMU
1005 * We need a TLB flush
1006 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001007 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001008 }
1009
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001010 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001011
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001012 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001013 continue;
1014
Joerg Roedel6c542042011-06-09 17:07:31 +02001015 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001016 }
1017
Joerg Roedel11b64022011-04-06 11:49:28 +02001018 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001019}
1020
Joerg Roedel17b124b2011-04-06 18:01:35 +02001021static void domain_flush_pages(struct protection_domain *domain,
1022 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001023{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001024 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001025}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001026
Joerg Roedel1c655772008-09-04 18:40:05 +02001027/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001028static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001029{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001030 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001031}
1032
Chris Wright42a49f92009-06-15 15:42:00 +02001033/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001034static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001035{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001036 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1037}
1038
1039static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001040{
1041 int i;
1042
1043 for (i = 0; i < amd_iommus_present; ++i) {
1044 if (!domain->dev_iommu[i])
1045 continue;
1046
1047 /*
1048 * Devices of this domain are behind this IOMMU
1049 * We need to wait for completion of all commands.
1050 */
1051 iommu_completion_wait(amd_iommus[i]);
1052 }
1053}
1054
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001055
Joerg Roedel43f49602008-12-02 21:01:12 +01001056/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001057 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001058 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001059static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001060{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001061 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001062
1063 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001064 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001065}
1066
Joerg Roedel431b2a22008-07-11 17:14:22 +02001067/****************************************************************************
1068 *
1069 * The functions below are used the create the page table mappings for
1070 * unity mapped regions.
1071 *
1072 ****************************************************************************/
1073
1074/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001075 * This function is used to add another level to an IO page table. Adding
1076 * another level increases the size of the address space by 9 bits to a size up
1077 * to 64 bits.
1078 */
1079static bool increase_address_space(struct protection_domain *domain,
1080 gfp_t gfp)
1081{
1082 u64 *pte;
1083
1084 if (domain->mode == PAGE_MODE_6_LEVEL)
1085 /* address space already 64 bit large */
1086 return false;
1087
1088 pte = (void *)get_zeroed_page(gfp);
1089 if (!pte)
1090 return false;
1091
1092 *pte = PM_LEVEL_PDE(domain->mode,
1093 virt_to_phys(domain->pt_root));
1094 domain->pt_root = pte;
1095 domain->mode += 1;
1096 domain->updated = true;
1097
1098 return true;
1099}
1100
1101static u64 *alloc_pte(struct protection_domain *domain,
1102 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001103 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001104 u64 **pte_page,
1105 gfp_t gfp)
1106{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001107 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001108 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001109
1110 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001111
1112 while (address > PM_LEVEL_SIZE(domain->mode))
1113 increase_address_space(domain, gfp);
1114
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001115 level = domain->mode - 1;
1116 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1117 address = PAGE_SIZE_ALIGN(address, page_size);
1118 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001119
1120 while (level > end_lvl) {
1121 if (!IOMMU_PTE_PRESENT(*pte)) {
1122 page = (u64 *)get_zeroed_page(gfp);
1123 if (!page)
1124 return NULL;
1125 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1126 }
1127
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001128 /* No level skipping support yet */
1129 if (PM_PTE_LEVEL(*pte) != level)
1130 return NULL;
1131
Joerg Roedel308973d2009-11-24 17:43:32 +01001132 level -= 1;
1133
1134 pte = IOMMU_PTE_PAGE(*pte);
1135
1136 if (pte_page && level == end_lvl)
1137 *pte_page = pte;
1138
1139 pte = &pte[PM_LEVEL_INDEX(level, address)];
1140 }
1141
1142 return pte;
1143}
1144
1145/*
1146 * This function checks if there is a PTE for a given dma address. If
1147 * there is one, it returns the pointer to it.
1148 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001149static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001150{
1151 int level;
1152 u64 *pte;
1153
Joerg Roedel24cd7722010-01-19 17:27:39 +01001154 if (address > PM_LEVEL_SIZE(domain->mode))
1155 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001156
Joerg Roedel24cd7722010-01-19 17:27:39 +01001157 level = domain->mode - 1;
1158 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1159
1160 while (level > 0) {
1161
1162 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001163 if (!IOMMU_PTE_PRESENT(*pte))
1164 return NULL;
1165
Joerg Roedel24cd7722010-01-19 17:27:39 +01001166 /* Large PTE */
1167 if (PM_PTE_LEVEL(*pte) == 0x07) {
1168 unsigned long pte_mask, __pte;
1169
1170 /*
1171 * If we have a series of large PTEs, make
1172 * sure to return a pointer to the first one.
1173 */
1174 pte_mask = PTE_PAGE_SIZE(*pte);
1175 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1176 __pte = ((unsigned long)pte) & pte_mask;
1177
1178 return (u64 *)__pte;
1179 }
1180
1181 /* No level skipping support yet */
1182 if (PM_PTE_LEVEL(*pte) != level)
1183 return NULL;
1184
Joerg Roedel308973d2009-11-24 17:43:32 +01001185 level -= 1;
1186
Joerg Roedel24cd7722010-01-19 17:27:39 +01001187 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001188 pte = IOMMU_PTE_PAGE(*pte);
1189 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001190 }
1191
1192 return pte;
1193}
1194
1195/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001196 * Generic mapping functions. It maps a physical address into a DMA
1197 * address space. It allocates the page table pages if necessary.
1198 * In the future it can be extended to a generic mapping function
1199 * supporting all features of AMD IOMMU page tables like level skipping
1200 * and full 64 bit address spaces.
1201 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001202static int iommu_map_page(struct protection_domain *dom,
1203 unsigned long bus_addr,
1204 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001205 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001206 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001207{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001208 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001209 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001210
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001211 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001212 return -EINVAL;
1213
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001214 bus_addr = PAGE_ALIGN(bus_addr);
1215 phys_addr = PAGE_ALIGN(phys_addr);
1216 count = PAGE_SIZE_PTE_COUNT(page_size);
1217 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001218
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001219 for (i = 0; i < count; ++i)
1220 if (IOMMU_PTE_PRESENT(pte[i]))
1221 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001222
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001223 if (page_size > PAGE_SIZE) {
1224 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1225 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1226 } else
1227 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1228
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001229 if (prot & IOMMU_PROT_IR)
1230 __pte |= IOMMU_PTE_IR;
1231 if (prot & IOMMU_PROT_IW)
1232 __pte |= IOMMU_PTE_IW;
1233
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001234 for (i = 0; i < count; ++i)
1235 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001236
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001237 update_domain(dom);
1238
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001239 return 0;
1240}
1241
Joerg Roedel24cd7722010-01-19 17:27:39 +01001242static unsigned long iommu_unmap_page(struct protection_domain *dom,
1243 unsigned long bus_addr,
1244 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001245{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001246 unsigned long long unmap_size, unmapped;
1247 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001248
Joerg Roedel24cd7722010-01-19 17:27:39 +01001249 BUG_ON(!is_power_of_2(page_size));
1250
1251 unmapped = 0;
1252
1253 while (unmapped < page_size) {
1254
1255 pte = fetch_pte(dom, bus_addr);
1256
1257 if (!pte) {
1258 /*
1259 * No PTE for this address
1260 * move forward in 4kb steps
1261 */
1262 unmap_size = PAGE_SIZE;
1263 } else if (PM_PTE_LEVEL(*pte) == 0) {
1264 /* 4kb PTE found for this address */
1265 unmap_size = PAGE_SIZE;
1266 *pte = 0ULL;
1267 } else {
1268 int count, i;
1269
1270 /* Large PTE found which maps this address */
1271 unmap_size = PTE_PAGE_SIZE(*pte);
1272 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1273 for (i = 0; i < count; i++)
1274 pte[i] = 0ULL;
1275 }
1276
1277 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1278 unmapped += unmap_size;
1279 }
1280
1281 BUG_ON(!is_power_of_2(unmapped));
1282
1283 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001284}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001285
Joerg Roedel431b2a22008-07-11 17:14:22 +02001286/*
1287 * This function checks if a specific unity mapping entry is needed for
1288 * this specific IOMMU.
1289 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001290static int iommu_for_unity_map(struct amd_iommu *iommu,
1291 struct unity_map_entry *entry)
1292{
1293 u16 bdf, i;
1294
1295 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1296 bdf = amd_iommu_alias_table[i];
1297 if (amd_iommu_rlookup_table[bdf] == iommu)
1298 return 1;
1299 }
1300
1301 return 0;
1302}
1303
Joerg Roedel431b2a22008-07-11 17:14:22 +02001304/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001305 * This function actually applies the mapping to the page table of the
1306 * dma_ops domain.
1307 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001308static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1309 struct unity_map_entry *e)
1310{
1311 u64 addr;
1312 int ret;
1313
1314 for (addr = e->address_start; addr < e->address_end;
1315 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001316 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001317 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001318 if (ret)
1319 return ret;
1320 /*
1321 * if unity mapping is in aperture range mark the page
1322 * as allocated in the aperture
1323 */
1324 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001325 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001326 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001327 }
1328
1329 return 0;
1330}
1331
Joerg Roedel431b2a22008-07-11 17:14:22 +02001332/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001333 * Init the unity mappings for a specific IOMMU in the system
1334 *
1335 * Basically iterates over all unity mapping entries and applies them to
1336 * the default domain DMA of that IOMMU if necessary.
1337 */
1338static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1339{
1340 struct unity_map_entry *entry;
1341 int ret;
1342
1343 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1344 if (!iommu_for_unity_map(iommu, entry))
1345 continue;
1346 ret = dma_ops_unity_map(iommu->default_dom, entry);
1347 if (ret)
1348 return ret;
1349 }
1350
1351 return 0;
1352}
1353
1354/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001355 * Inits the unity mappings required for a specific device
1356 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001357static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1358 u16 devid)
1359{
1360 struct unity_map_entry *e;
1361 int ret;
1362
1363 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1364 if (!(devid >= e->devid_start && devid <= e->devid_end))
1365 continue;
1366 ret = dma_ops_unity_map(dma_dom, e);
1367 if (ret)
1368 return ret;
1369 }
1370
1371 return 0;
1372}
1373
Joerg Roedel431b2a22008-07-11 17:14:22 +02001374/****************************************************************************
1375 *
1376 * The next functions belong to the address allocator for the dma_ops
1377 * interface functions. They work like the allocators in the other IOMMU
1378 * drivers. Its basically a bitmap which marks the allocated pages in
1379 * the aperture. Maybe it could be enhanced in the future to a more
1380 * efficient allocator.
1381 *
1382 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001383
Joerg Roedel431b2a22008-07-11 17:14:22 +02001384/*
Joerg Roedel384de722009-05-15 12:30:05 +02001385 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001386 *
1387 * called with domain->lock held
1388 */
Joerg Roedel384de722009-05-15 12:30:05 +02001389
Joerg Roedel9cabe892009-05-18 16:38:55 +02001390/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001391 * Used to reserve address ranges in the aperture (e.g. for exclusion
1392 * ranges.
1393 */
1394static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1395 unsigned long start_page,
1396 unsigned int pages)
1397{
1398 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1399
1400 if (start_page + pages > last_page)
1401 pages = last_page - start_page;
1402
1403 for (i = start_page; i < start_page + pages; ++i) {
1404 int index = i / APERTURE_RANGE_PAGES;
1405 int page = i % APERTURE_RANGE_PAGES;
1406 __set_bit(page, dom->aperture[index]->bitmap);
1407 }
1408}
1409
1410/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001411 * This function is used to add a new aperture range to an existing
1412 * aperture in case of dma_ops domain allocation or address allocation
1413 * failure.
1414 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001415static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001416 bool populate, gfp_t gfp)
1417{
1418 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001419 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001420 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001421
Joerg Roedelf5e97052009-05-22 12:31:53 +02001422#ifdef CONFIG_IOMMU_STRESS
1423 populate = false;
1424#endif
1425
Joerg Roedel9cabe892009-05-18 16:38:55 +02001426 if (index >= APERTURE_MAX_RANGES)
1427 return -ENOMEM;
1428
1429 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1430 if (!dma_dom->aperture[index])
1431 return -ENOMEM;
1432
1433 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1434 if (!dma_dom->aperture[index]->bitmap)
1435 goto out_free;
1436
1437 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1438
1439 if (populate) {
1440 unsigned long address = dma_dom->aperture_size;
1441 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1442 u64 *pte, *pte_page;
1443
1444 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001445 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001446 &pte_page, gfp);
1447 if (!pte)
1448 goto out_free;
1449
1450 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1451
1452 address += APERTURE_RANGE_SIZE / 64;
1453 }
1454 }
1455
Joerg Roedel17f5b562011-07-06 17:14:44 +02001456 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001457 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1458
Joerg Roedel17f5b562011-07-06 17:14:44 +02001459 /* Reserve address range used for MSI messages */
1460 if (old_size < MSI_ADDR_BASE_LO &&
1461 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1462 unsigned long spage;
1463 int pages;
1464
1465 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1466 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1467
1468 dma_ops_reserve_addresses(dma_dom, spage, pages);
1469 }
1470
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001471 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001472 for_each_iommu(iommu) {
1473 if (iommu->exclusion_start &&
1474 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1475 && iommu->exclusion_start < dma_dom->aperture_size) {
1476 unsigned long startpage;
1477 int pages = iommu_num_pages(iommu->exclusion_start,
1478 iommu->exclusion_length,
1479 PAGE_SIZE);
1480 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1481 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1482 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001483 }
1484
1485 /*
1486 * Check for areas already mapped as present in the new aperture
1487 * range and mark those pages as reserved in the allocator. Such
1488 * mappings may already exist as a result of requested unity
1489 * mappings for devices.
1490 */
1491 for (i = dma_dom->aperture[index]->offset;
1492 i < dma_dom->aperture_size;
1493 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001494 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001495 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1496 continue;
1497
Joerg Roedelfcd08612011-10-11 17:41:32 +02001498 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001499 }
1500
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001501 update_domain(&dma_dom->domain);
1502
Joerg Roedel9cabe892009-05-18 16:38:55 +02001503 return 0;
1504
1505out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001506 update_domain(&dma_dom->domain);
1507
Joerg Roedel9cabe892009-05-18 16:38:55 +02001508 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1509
1510 kfree(dma_dom->aperture[index]);
1511 dma_dom->aperture[index] = NULL;
1512
1513 return -ENOMEM;
1514}
1515
Joerg Roedel384de722009-05-15 12:30:05 +02001516static unsigned long dma_ops_area_alloc(struct device *dev,
1517 struct dma_ops_domain *dom,
1518 unsigned int pages,
1519 unsigned long align_mask,
1520 u64 dma_mask,
1521 unsigned long start)
1522{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001523 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001524 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1525 int i = start >> APERTURE_RANGE_SHIFT;
1526 unsigned long boundary_size;
1527 unsigned long address = -1;
1528 unsigned long limit;
1529
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001530 next_bit >>= PAGE_SHIFT;
1531
Joerg Roedel384de722009-05-15 12:30:05 +02001532 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1533 PAGE_SIZE) >> PAGE_SHIFT;
1534
1535 for (;i < max_index; ++i) {
1536 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1537
1538 if (dom->aperture[i]->offset >= dma_mask)
1539 break;
1540
1541 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1542 dma_mask >> PAGE_SHIFT);
1543
1544 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1545 limit, next_bit, pages, 0,
1546 boundary_size, align_mask);
1547 if (address != -1) {
1548 address = dom->aperture[i]->offset +
1549 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001550 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001551 break;
1552 }
1553
1554 next_bit = 0;
1555 }
1556
1557 return address;
1558}
1559
Joerg Roedeld3086442008-06-26 21:27:57 +02001560static unsigned long dma_ops_alloc_addresses(struct device *dev,
1561 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001562 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001563 unsigned long align_mask,
1564 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001565{
Joerg Roedeld3086442008-06-26 21:27:57 +02001566 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001567
Joerg Roedelfe16f082009-05-22 12:27:53 +02001568#ifdef CONFIG_IOMMU_STRESS
1569 dom->next_address = 0;
1570 dom->need_flush = true;
1571#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001572
Joerg Roedel384de722009-05-15 12:30:05 +02001573 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001574 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001575
Joerg Roedel1c655772008-09-04 18:40:05 +02001576 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001577 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001578 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1579 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001580 dom->need_flush = true;
1581 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001582
Joerg Roedel384de722009-05-15 12:30:05 +02001583 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001584 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001585
1586 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1587
1588 return address;
1589}
1590
Joerg Roedel431b2a22008-07-11 17:14:22 +02001591/*
1592 * The address free function.
1593 *
1594 * called with domain->lock held
1595 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001596static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1597 unsigned long address,
1598 unsigned int pages)
1599{
Joerg Roedel384de722009-05-15 12:30:05 +02001600 unsigned i = address >> APERTURE_RANGE_SHIFT;
1601 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001602
Joerg Roedel384de722009-05-15 12:30:05 +02001603 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1604
Joerg Roedel47bccd62009-05-22 12:40:54 +02001605#ifdef CONFIG_IOMMU_STRESS
1606 if (i < 4)
1607 return;
1608#endif
1609
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001610 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001611 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001612
1613 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001614
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001615 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001616
Joerg Roedeld3086442008-06-26 21:27:57 +02001617}
1618
Joerg Roedel431b2a22008-07-11 17:14:22 +02001619/****************************************************************************
1620 *
1621 * The next functions belong to the domain allocation. A domain is
1622 * allocated for every IOMMU as the default domain. If device isolation
1623 * is enabled, every device get its own domain. The most important thing
1624 * about domains is the page table mapping the DMA address space they
1625 * contain.
1626 *
1627 ****************************************************************************/
1628
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001629/*
1630 * This function adds a protection domain to the global protection domain list
1631 */
1632static void add_domain_to_list(struct protection_domain *domain)
1633{
1634 unsigned long flags;
1635
1636 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1637 list_add(&domain->list, &amd_iommu_pd_list);
1638 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1639}
1640
1641/*
1642 * This function removes a protection domain to the global
1643 * protection domain list
1644 */
1645static void del_domain_from_list(struct protection_domain *domain)
1646{
1647 unsigned long flags;
1648
1649 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1650 list_del(&domain->list);
1651 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1652}
1653
Joerg Roedelec487d12008-06-26 21:27:58 +02001654static u16 domain_id_alloc(void)
1655{
1656 unsigned long flags;
1657 int id;
1658
1659 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1660 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1661 BUG_ON(id == 0);
1662 if (id > 0 && id < MAX_DOMAIN_ID)
1663 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1664 else
1665 id = 0;
1666 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1667
1668 return id;
1669}
1670
Joerg Roedela2acfb72008-12-02 18:28:53 +01001671static void domain_id_free(int id)
1672{
1673 unsigned long flags;
1674
1675 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1676 if (id > 0 && id < MAX_DOMAIN_ID)
1677 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1678 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1679}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001680
Joerg Roedel86db2e52008-12-02 18:20:21 +01001681static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001682{
1683 int i, j;
1684 u64 *p1, *p2, *p3;
1685
Joerg Roedel86db2e52008-12-02 18:20:21 +01001686 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001687
1688 if (!p1)
1689 return;
1690
1691 for (i = 0; i < 512; ++i) {
1692 if (!IOMMU_PTE_PRESENT(p1[i]))
1693 continue;
1694
1695 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001696 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001697 if (!IOMMU_PTE_PRESENT(p2[j]))
1698 continue;
1699 p3 = IOMMU_PTE_PAGE(p2[j]);
1700 free_page((unsigned long)p3);
1701 }
1702
1703 free_page((unsigned long)p2);
1704 }
1705
1706 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001707
1708 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001709}
1710
Joerg Roedelb16137b2011-11-21 16:50:23 +01001711static void free_gcr3_tbl_level1(u64 *tbl)
1712{
1713 u64 *ptr;
1714 int i;
1715
1716 for (i = 0; i < 512; ++i) {
1717 if (!(tbl[i] & GCR3_VALID))
1718 continue;
1719
1720 ptr = __va(tbl[i] & PAGE_MASK);
1721
1722 free_page((unsigned long)ptr);
1723 }
1724}
1725
1726static void free_gcr3_tbl_level2(u64 *tbl)
1727{
1728 u64 *ptr;
1729 int i;
1730
1731 for (i = 0; i < 512; ++i) {
1732 if (!(tbl[i] & GCR3_VALID))
1733 continue;
1734
1735 ptr = __va(tbl[i] & PAGE_MASK);
1736
1737 free_gcr3_tbl_level1(ptr);
1738 }
1739}
1740
Joerg Roedel52815b72011-11-17 17:24:28 +01001741static void free_gcr3_table(struct protection_domain *domain)
1742{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001743 if (domain->glx == 2)
1744 free_gcr3_tbl_level2(domain->gcr3_tbl);
1745 else if (domain->glx == 1)
1746 free_gcr3_tbl_level1(domain->gcr3_tbl);
1747 else if (domain->glx != 0)
1748 BUG();
1749
Joerg Roedel52815b72011-11-17 17:24:28 +01001750 free_page((unsigned long)domain->gcr3_tbl);
1751}
1752
Joerg Roedel431b2a22008-07-11 17:14:22 +02001753/*
1754 * Free a domain, only used if something went wrong in the
1755 * allocation path and we need to free an already allocated page table
1756 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001757static void dma_ops_domain_free(struct dma_ops_domain *dom)
1758{
Joerg Roedel384de722009-05-15 12:30:05 +02001759 int i;
1760
Joerg Roedelec487d12008-06-26 21:27:58 +02001761 if (!dom)
1762 return;
1763
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001764 del_domain_from_list(&dom->domain);
1765
Joerg Roedel86db2e52008-12-02 18:20:21 +01001766 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001767
Joerg Roedel384de722009-05-15 12:30:05 +02001768 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1769 if (!dom->aperture[i])
1770 continue;
1771 free_page((unsigned long)dom->aperture[i]->bitmap);
1772 kfree(dom->aperture[i]);
1773 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001774
1775 kfree(dom);
1776}
1777
Joerg Roedel431b2a22008-07-11 17:14:22 +02001778/*
1779 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001780 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001781 * structures required for the dma_ops interface
1782 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001783static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001784{
1785 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001786
1787 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1788 if (!dma_dom)
1789 return NULL;
1790
1791 spin_lock_init(&dma_dom->domain.lock);
1792
1793 dma_dom->domain.id = domain_id_alloc();
1794 if (dma_dom->domain.id == 0)
1795 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001796 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001797 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001798 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001799 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001800 dma_dom->domain.priv = dma_dom;
1801 if (!dma_dom->domain.pt_root)
1802 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001803
Joerg Roedel1c655772008-09-04 18:40:05 +02001804 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001805 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001806
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001807 add_domain_to_list(&dma_dom->domain);
1808
Joerg Roedel576175c2009-11-23 19:08:46 +01001809 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001810 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001811
Joerg Roedel431b2a22008-07-11 17:14:22 +02001812 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001813 * mark the first page as allocated so we never return 0 as
1814 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001815 */
Joerg Roedel384de722009-05-15 12:30:05 +02001816 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001817 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001818
Joerg Roedelec487d12008-06-26 21:27:58 +02001819
1820 return dma_dom;
1821
1822free_dma_dom:
1823 dma_ops_domain_free(dma_dom);
1824
1825 return NULL;
1826}
1827
Joerg Roedel431b2a22008-07-11 17:14:22 +02001828/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001829 * little helper function to check whether a given protection domain is a
1830 * dma_ops domain
1831 */
1832static bool dma_ops_domain(struct protection_domain *domain)
1833{
1834 return domain->flags & PD_DMA_OPS_MASK;
1835}
1836
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001837static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001838{
Joerg Roedel132bd682011-11-17 14:18:46 +01001839 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001840 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001841
Joerg Roedel132bd682011-11-17 14:18:46 +01001842 if (domain->mode != PAGE_MODE_NONE)
1843 pte_root = virt_to_phys(domain->pt_root);
1844
Joerg Roedel38ddf412008-09-11 10:38:32 +02001845 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1846 << DEV_ENTRY_MODE_SHIFT;
1847 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001848
Joerg Roedelee6c2862011-11-09 12:06:03 +01001849 flags = amd_iommu_dev_table[devid].data[1];
1850
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001851 if (ats)
1852 flags |= DTE_FLAG_IOTLB;
1853
Joerg Roedel52815b72011-11-17 17:24:28 +01001854 if (domain->flags & PD_IOMMUV2_MASK) {
1855 u64 gcr3 = __pa(domain->gcr3_tbl);
1856 u64 glx = domain->glx;
1857 u64 tmp;
1858
1859 pte_root |= DTE_FLAG_GV;
1860 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1861
1862 /* First mask out possible old values for GCR3 table */
1863 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1864 flags &= ~tmp;
1865
1866 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1867 flags &= ~tmp;
1868
1869 /* Encode GCR3 table into DTE */
1870 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1871 pte_root |= tmp;
1872
1873 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1874 flags |= tmp;
1875
1876 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1877 flags |= tmp;
1878 }
1879
Joerg Roedelee6c2862011-11-09 12:06:03 +01001880 flags &= ~(0xffffUL);
1881 flags |= domain->id;
1882
1883 amd_iommu_dev_table[devid].data[1] = flags;
1884 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001885}
1886
Joerg Roedel15898bb2009-11-24 15:39:42 +01001887static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001888{
Joerg Roedel355bf552008-12-08 12:02:41 +01001889 /* remove entry from the device table seen by the hardware */
1890 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1891 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001892
Joerg Roedelc5cca142009-10-09 18:31:20 +02001893 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001894}
1895
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001896static void do_attach(struct iommu_dev_data *dev_data,
1897 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001898{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001899 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001900 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001901
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001902 iommu = amd_iommu_rlookup_table[dev_data->devid];
1903 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001904
1905 /* Update data structures */
1906 dev_data->domain = domain;
1907 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001908 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001909
1910 /* Do reference counting */
1911 domain->dev_iommu[iommu->index] += 1;
1912 domain->dev_cnt += 1;
1913
1914 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001915 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001916}
1917
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001918static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001919{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001920 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001921
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001922 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001923
Joerg Roedelc4596112009-11-20 14:57:32 +01001924 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001925 dev_data->domain->dev_iommu[iommu->index] -= 1;
1926 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001927
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001928 /* Update data structures */
1929 dev_data->domain = NULL;
1930 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001931 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001932
1933 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001934 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001935}
1936
1937/*
1938 * If a device is not yet associated with a domain, this function does
1939 * assigns it visible for the hardware
1940 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001941static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001942 struct protection_domain *domain)
1943{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001944 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001945
Joerg Roedel15898bb2009-11-24 15:39:42 +01001946 /* lock domain */
1947 spin_lock(&domain->lock);
1948
Joerg Roedel71f77582011-06-09 19:03:15 +02001949 if (dev_data->alias_data != NULL) {
1950 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001951
Joerg Roedel2b02b092011-06-09 17:48:39 +02001952 /* Some sanity checks */
1953 ret = -EBUSY;
1954 if (alias_data->domain != NULL &&
1955 alias_data->domain != domain)
1956 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001957
Joerg Roedel2b02b092011-06-09 17:48:39 +02001958 if (dev_data->domain != NULL &&
1959 dev_data->domain != domain)
1960 goto out_unlock;
1961
1962 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001963 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001964 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001965
1966 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001967 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001968
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001969 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001970 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001971
Joerg Roedel24100052009-11-25 15:59:57 +01001972 atomic_inc(&dev_data->bind);
1973
Julia Lawall84fe6c12010-05-27 12:31:51 +02001974 ret = 0;
1975
1976out_unlock:
1977
Joerg Roedel355bf552008-12-08 12:02:41 +01001978 /* ready */
1979 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001980
Julia Lawall84fe6c12010-05-27 12:31:51 +02001981 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001982}
1983
Joerg Roedel52815b72011-11-17 17:24:28 +01001984
1985static void pdev_iommuv2_disable(struct pci_dev *pdev)
1986{
1987 pci_disable_ats(pdev);
1988 pci_disable_pri(pdev);
1989 pci_disable_pasid(pdev);
1990}
1991
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001992/* FIXME: Change generic reset-function to do the same */
1993static int pri_reset_while_enabled(struct pci_dev *pdev)
1994{
1995 u16 control;
1996 int pos;
1997
Joerg Roedel46277b72011-12-07 14:34:02 +01001998 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001999 if (!pos)
2000 return -EINVAL;
2001
Joerg Roedel46277b72011-12-07 14:34:02 +01002002 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2003 control |= PCI_PRI_CTRL_RESET;
2004 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002005
2006 return 0;
2007}
2008
Joerg Roedel52815b72011-11-17 17:24:28 +01002009static int pdev_iommuv2_enable(struct pci_dev *pdev)
2010{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002011 bool reset_enable;
2012 int reqs, ret;
2013
2014 /* FIXME: Hardcode number of outstanding requests for now */
2015 reqs = 32;
2016 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2017 reqs = 1;
2018 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002019
2020 /* Only allow access to user-accessible pages */
2021 ret = pci_enable_pasid(pdev, 0);
2022 if (ret)
2023 goto out_err;
2024
2025 /* First reset the PRI state of the device */
2026 ret = pci_reset_pri(pdev);
2027 if (ret)
2028 goto out_err;
2029
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002030 /* Enable PRI */
2031 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002032 if (ret)
2033 goto out_err;
2034
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002035 if (reset_enable) {
2036 ret = pri_reset_while_enabled(pdev);
2037 if (ret)
2038 goto out_err;
2039 }
2040
Joerg Roedel52815b72011-11-17 17:24:28 +01002041 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2042 if (ret)
2043 goto out_err;
2044
2045 return 0;
2046
2047out_err:
2048 pci_disable_pri(pdev);
2049 pci_disable_pasid(pdev);
2050
2051 return ret;
2052}
2053
Joerg Roedelc99afa22011-11-21 18:19:25 +01002054/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002055#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002056
2057bool pci_pri_tlp_required(struct pci_dev *pdev)
2058{
Joerg Roedela3b93122012-04-12 12:49:26 +02002059 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002060 int pos;
2061
Joerg Roedel46277b72011-12-07 14:34:02 +01002062 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002063 if (!pos)
2064 return false;
2065
Joerg Roedela3b93122012-04-12 12:49:26 +02002066 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002067
Joerg Roedela3b93122012-04-12 12:49:26 +02002068 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002069}
2070
Joerg Roedel15898bb2009-11-24 15:39:42 +01002071/*
2072 * If a device is not yet associated with a domain, this function does
2073 * assigns it visible for the hardware
2074 */
2075static int attach_device(struct device *dev,
2076 struct protection_domain *domain)
2077{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002078 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002079 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002080 unsigned long flags;
2081 int ret;
2082
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002083 dev_data = get_dev_data(dev);
2084
Joerg Roedel52815b72011-11-17 17:24:28 +01002085 if (domain->flags & PD_IOMMUV2_MASK) {
2086 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2087 return -EINVAL;
2088
2089 if (pdev_iommuv2_enable(pdev) != 0)
2090 return -EINVAL;
2091
2092 dev_data->ats.enabled = true;
2093 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002094 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002095 } else if (amd_iommu_iotlb_sup &&
2096 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002097 dev_data->ats.enabled = true;
2098 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2099 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002100
Joerg Roedel15898bb2009-11-24 15:39:42 +01002101 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002102 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002103 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2104
2105 /*
2106 * We might boot into a crash-kernel here. The crashed kernel
2107 * left the caches in the IOMMU dirty. So we have to flush
2108 * here to evict all dirty stuff.
2109 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002110 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002111
2112 return ret;
2113}
2114
2115/*
2116 * Removes a device from a protection domain (unlocked)
2117 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002118static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002119{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002120 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002121 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002122
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002123 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002124
Joerg Roedel2ca76272010-01-22 16:45:31 +01002125 domain = dev_data->domain;
2126
2127 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002128
Joerg Roedel71f77582011-06-09 19:03:15 +02002129 if (dev_data->alias_data != NULL) {
2130 struct iommu_dev_data *alias_data = dev_data->alias_data;
2131
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002132 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002133 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002134 }
2135
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002136 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002137 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002138
Joerg Roedel2ca76272010-01-22 16:45:31 +01002139 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002140
Joerg Roedel21129f72009-09-01 11:59:42 +02002141 /*
2142 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002143 * passthrough domain if it is detached from any other domain.
2144 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002145 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002146 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002147 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002148 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002149}
2150
2151/*
2152 * Removes a device from a protection domain (with devtable_lock held)
2153 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002154static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002155{
Joerg Roedel52815b72011-11-17 17:24:28 +01002156 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002157 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002158 unsigned long flags;
2159
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002160 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002161 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002162
Joerg Roedel355bf552008-12-08 12:02:41 +01002163 /* lock device table */
2164 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002165 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002166 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002167
Joerg Roedel52815b72011-11-17 17:24:28 +01002168 if (domain->flags & PD_IOMMUV2_MASK)
2169 pdev_iommuv2_disable(to_pci_dev(dev));
2170 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002171 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002172
2173 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002174}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002175
Joerg Roedel15898bb2009-11-24 15:39:42 +01002176/*
2177 * Find out the protection domain structure for a given PCI device. This
2178 * will give us the pointer to the page table root for example.
2179 */
2180static struct protection_domain *domain_for_device(struct device *dev)
2181{
Joerg Roedel71f77582011-06-09 19:03:15 +02002182 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002183 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002184 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002185
Joerg Roedel657cbb62009-11-23 15:26:46 +01002186 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002187
Joerg Roedel2b02b092011-06-09 17:48:39 +02002188 if (dev_data->domain)
2189 return dev_data->domain;
2190
Joerg Roedel71f77582011-06-09 19:03:15 +02002191 if (dev_data->alias_data != NULL) {
2192 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002193
2194 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2195 if (alias_data->domain != NULL) {
2196 __attach_device(dev_data, alias_data->domain);
2197 dom = alias_data->domain;
2198 }
2199 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002200 }
2201
Joerg Roedel15898bb2009-11-24 15:39:42 +01002202 return dom;
2203}
2204
Joerg Roedele275a2a2008-12-10 18:27:25 +01002205static int device_change_notifier(struct notifier_block *nb,
2206 unsigned long action, void *data)
2207{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002208 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002209 struct protection_domain *domain;
2210 struct iommu_dev_data *dev_data;
2211 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002212 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002213 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002214 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002215
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002216 if (!check_device(dev))
2217 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002218
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002219 devid = get_device_id(dev);
2220 iommu = amd_iommu_rlookup_table[devid];
2221 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002222
2223 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002224 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002225
2226 domain = domain_for_device(dev);
2227
Joerg Roedele275a2a2008-12-10 18:27:25 +01002228 if (!domain)
2229 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002230 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002231 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002232 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002233 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002234 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002235
2236 iommu_init_device(dev);
2237
2238 domain = domain_for_device(dev);
2239
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002240 /* allocate a protection domain if a device is added */
2241 dma_domain = find_protection_domain(devid);
2242 if (dma_domain)
2243 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002244 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002245 if (!dma_domain)
2246 goto out;
2247 dma_domain->target_dev = devid;
2248
2249 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2250 list_add_tail(&dma_domain->list, &iommu_pd_list);
2251 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2252
2253 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002254 case BUS_NOTIFY_DEL_DEVICE:
2255
2256 iommu_uninit_device(dev);
2257
Joerg Roedele275a2a2008-12-10 18:27:25 +01002258 default:
2259 goto out;
2260 }
2261
Joerg Roedele275a2a2008-12-10 18:27:25 +01002262 iommu_completion_wait(iommu);
2263
2264out:
2265 return 0;
2266}
2267
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302268static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002269 .notifier_call = device_change_notifier,
2270};
Joerg Roedel355bf552008-12-08 12:02:41 +01002271
Joerg Roedel8638c492009-12-10 11:12:25 +01002272void amd_iommu_init_notifier(void)
2273{
2274 bus_register_notifier(&pci_bus_type, &device_nb);
2275}
2276
Joerg Roedel431b2a22008-07-11 17:14:22 +02002277/*****************************************************************************
2278 *
2279 * The next functions belong to the dma_ops mapping/unmapping code.
2280 *
2281 *****************************************************************************/
2282
2283/*
2284 * In the dma_ops path we only have the struct device. This function
2285 * finds the corresponding IOMMU, the protection domain and the
2286 * requestor id for a given device.
2287 * If the device is not yet associated with a domain this is also done
2288 * in this function.
2289 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002290static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002291{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002292 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002293 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002294 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002295
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002296 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002297 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002298
Joerg Roedel94f6d192009-11-24 16:40:02 +01002299 domain = domain_for_device(dev);
2300 if (domain != NULL && !dma_ops_domain(domain))
2301 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002302
Joerg Roedel94f6d192009-11-24 16:40:02 +01002303 if (domain != NULL)
2304 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002305
Joerg Roedel15898bb2009-11-24 15:39:42 +01002306 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002307 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002308 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002309 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2310 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002311 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002312 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002313
Joerg Roedel94f6d192009-11-24 16:40:02 +01002314 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002315}
2316
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002317static void update_device_table(struct protection_domain *domain)
2318{
Joerg Roedel492667d2009-11-27 13:25:47 +01002319 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002320
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002321 list_for_each_entry(dev_data, &domain->dev_list, list)
2322 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002323}
2324
2325static void update_domain(struct protection_domain *domain)
2326{
2327 if (!domain->updated)
2328 return;
2329
2330 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002331
2332 domain_flush_devices(domain);
2333 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002334
2335 domain->updated = false;
2336}
2337
Joerg Roedel431b2a22008-07-11 17:14:22 +02002338/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002339 * This function fetches the PTE for a given address in the aperture
2340 */
2341static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2342 unsigned long address)
2343{
Joerg Roedel384de722009-05-15 12:30:05 +02002344 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002345 u64 *pte, *pte_page;
2346
Joerg Roedel384de722009-05-15 12:30:05 +02002347 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2348 if (!aperture)
2349 return NULL;
2350
2351 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002352 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002353 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002354 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002355 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2356 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002357 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002358
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002359 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002360
2361 return pte;
2362}
2363
2364/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002365 * This is the generic map function. It maps one 4kb page at paddr to
2366 * the given address in the DMA address space for the domain.
2367 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002368static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002369 unsigned long address,
2370 phys_addr_t paddr,
2371 int direction)
2372{
2373 u64 *pte, __pte;
2374
2375 WARN_ON(address > dom->aperture_size);
2376
2377 paddr &= PAGE_MASK;
2378
Joerg Roedel8bda3092009-05-12 12:02:46 +02002379 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002380 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002381 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002382
2383 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2384
2385 if (direction == DMA_TO_DEVICE)
2386 __pte |= IOMMU_PTE_IR;
2387 else if (direction == DMA_FROM_DEVICE)
2388 __pte |= IOMMU_PTE_IW;
2389 else if (direction == DMA_BIDIRECTIONAL)
2390 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2391
2392 WARN_ON(*pte);
2393
2394 *pte = __pte;
2395
2396 return (dma_addr_t)address;
2397}
2398
Joerg Roedel431b2a22008-07-11 17:14:22 +02002399/*
2400 * The generic unmapping function for on page in the DMA address space.
2401 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002402static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002403 unsigned long address)
2404{
Joerg Roedel384de722009-05-15 12:30:05 +02002405 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002406 u64 *pte;
2407
2408 if (address >= dom->aperture_size)
2409 return;
2410
Joerg Roedel384de722009-05-15 12:30:05 +02002411 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2412 if (!aperture)
2413 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002414
Joerg Roedel384de722009-05-15 12:30:05 +02002415 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2416 if (!pte)
2417 return;
2418
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002419 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002420
2421 WARN_ON(!*pte);
2422
2423 *pte = 0ULL;
2424}
2425
Joerg Roedel431b2a22008-07-11 17:14:22 +02002426/*
2427 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002428 * contiguous memory region into DMA address space. It is used by all
2429 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002430 * Must be called with the domain lock held.
2431 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002432static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002433 struct dma_ops_domain *dma_dom,
2434 phys_addr_t paddr,
2435 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002436 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002437 bool align,
2438 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002439{
2440 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002441 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002442 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002443 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002444 int i;
2445
Joerg Roedele3c449f2008-10-15 22:02:11 -07002446 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002447 paddr &= PAGE_MASK;
2448
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002449 INC_STATS_COUNTER(total_map_requests);
2450
Joerg Roedelc1858972008-12-12 15:42:39 +01002451 if (pages > 1)
2452 INC_STATS_COUNTER(cross_page);
2453
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002454 if (align)
2455 align_mask = (1UL << get_order(size)) - 1;
2456
Joerg Roedel11b83882009-05-19 10:23:15 +02002457retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002458 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2459 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002460 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002461 /*
2462 * setting next_address here will let the address
2463 * allocator only scan the new allocated range in the
2464 * first run. This is a small optimization.
2465 */
2466 dma_dom->next_address = dma_dom->aperture_size;
2467
Joerg Roedel576175c2009-11-23 19:08:46 +01002468 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002469 goto out;
2470
2471 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002472 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002473 * allocation again
2474 */
2475 goto retry;
2476 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002477
2478 start = address;
2479 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002480 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002481 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002482 goto out_unmap;
2483
Joerg Roedelcb76c322008-06-26 21:28:00 +02002484 paddr += PAGE_SIZE;
2485 start += PAGE_SIZE;
2486 }
2487 address += offset;
2488
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002489 ADD_STATS_COUNTER(alloced_io_mem, size);
2490
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002491 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002492 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002493 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002494 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002495 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002496
Joerg Roedelcb76c322008-06-26 21:28:00 +02002497out:
2498 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002499
2500out_unmap:
2501
2502 for (--i; i >= 0; --i) {
2503 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002504 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002505 }
2506
2507 dma_ops_free_addresses(dma_dom, address, pages);
2508
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002509 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002510}
2511
Joerg Roedel431b2a22008-07-11 17:14:22 +02002512/*
2513 * Does the reverse of the __map_single function. Must be called with
2514 * the domain lock held too
2515 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002516static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002517 dma_addr_t dma_addr,
2518 size_t size,
2519 int dir)
2520{
Joerg Roedel04e04632010-09-23 16:12:48 +02002521 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002522 dma_addr_t i, start;
2523 unsigned int pages;
2524
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002525 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002526 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002527 return;
2528
Joerg Roedel04e04632010-09-23 16:12:48 +02002529 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002530 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002531 dma_addr &= PAGE_MASK;
2532 start = dma_addr;
2533
2534 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002535 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002536 start += PAGE_SIZE;
2537 }
2538
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002539 SUB_STATS_COUNTER(alloced_io_mem, size);
2540
Joerg Roedelcb76c322008-06-26 21:28:00 +02002541 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002542
Joerg Roedel80be3082008-11-06 14:59:05 +01002543 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002544 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002545 dma_dom->need_flush = false;
2546 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002547}
2548
Joerg Roedel431b2a22008-07-11 17:14:22 +02002549/*
2550 * The exported map_single function for dma_ops.
2551 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002552static dma_addr_t map_page(struct device *dev, struct page *page,
2553 unsigned long offset, size_t size,
2554 enum dma_data_direction dir,
2555 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002556{
2557 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002558 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002559 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002560 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002561 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002562
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002563 INC_STATS_COUNTER(cnt_map_single);
2564
Joerg Roedel94f6d192009-11-24 16:40:02 +01002565 domain = get_domain(dev);
2566 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002567 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002568 else if (IS_ERR(domain))
2569 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002570
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002571 dma_mask = *dev->dma_mask;
2572
Joerg Roedel4da70b92008-06-26 21:28:01 +02002573 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002574
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002575 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002576 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002577 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002578 goto out;
2579
Joerg Roedel17b124b2011-04-06 18:01:35 +02002580 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002581
2582out:
2583 spin_unlock_irqrestore(&domain->lock, flags);
2584
2585 return addr;
2586}
2587
Joerg Roedel431b2a22008-07-11 17:14:22 +02002588/*
2589 * The exported unmap_single function for dma_ops.
2590 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002591static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2592 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002593{
2594 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002595 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002596
Joerg Roedel146a6912008-12-12 15:07:12 +01002597 INC_STATS_COUNTER(cnt_unmap_single);
2598
Joerg Roedel94f6d192009-11-24 16:40:02 +01002599 domain = get_domain(dev);
2600 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002601 return;
2602
Joerg Roedel4da70b92008-06-26 21:28:01 +02002603 spin_lock_irqsave(&domain->lock, flags);
2604
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002605 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002606
Joerg Roedel17b124b2011-04-06 18:01:35 +02002607 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002608
2609 spin_unlock_irqrestore(&domain->lock, flags);
2610}
2611
Joerg Roedel431b2a22008-07-11 17:14:22 +02002612/*
2613 * This is a special map_sg function which is used if we should map a
2614 * device which is not handled by an AMD IOMMU in the system.
2615 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002616static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2617 int nelems, int dir)
2618{
2619 struct scatterlist *s;
2620 int i;
2621
2622 for_each_sg(sglist, s, nelems, i) {
2623 s->dma_address = (dma_addr_t)sg_phys(s);
2624 s->dma_length = s->length;
2625 }
2626
2627 return nelems;
2628}
2629
Joerg Roedel431b2a22008-07-11 17:14:22 +02002630/*
2631 * The exported map_sg function for dma_ops (handles scatter-gather
2632 * lists).
2633 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002634static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002635 int nelems, enum dma_data_direction dir,
2636 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002637{
2638 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002639 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002640 int i;
2641 struct scatterlist *s;
2642 phys_addr_t paddr;
2643 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002644 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002645
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002646 INC_STATS_COUNTER(cnt_map_sg);
2647
Joerg Roedel94f6d192009-11-24 16:40:02 +01002648 domain = get_domain(dev);
2649 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002650 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002651 else if (IS_ERR(domain))
2652 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002653
Joerg Roedel832a90c2008-09-18 15:54:23 +02002654 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002655
Joerg Roedel65b050a2008-06-26 21:28:02 +02002656 spin_lock_irqsave(&domain->lock, flags);
2657
2658 for_each_sg(sglist, s, nelems, i) {
2659 paddr = sg_phys(s);
2660
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002661 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002662 paddr, s->length, dir, false,
2663 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002664
2665 if (s->dma_address) {
2666 s->dma_length = s->length;
2667 mapped_elems++;
2668 } else
2669 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002670 }
2671
Joerg Roedel17b124b2011-04-06 18:01:35 +02002672 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002673
2674out:
2675 spin_unlock_irqrestore(&domain->lock, flags);
2676
2677 return mapped_elems;
2678unmap:
2679 for_each_sg(sglist, s, mapped_elems, i) {
2680 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002681 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002682 s->dma_length, dir);
2683 s->dma_address = s->dma_length = 0;
2684 }
2685
2686 mapped_elems = 0;
2687
2688 goto out;
2689}
2690
Joerg Roedel431b2a22008-07-11 17:14:22 +02002691/*
2692 * The exported map_sg function for dma_ops (handles scatter-gather
2693 * lists).
2694 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002695static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002696 int nelems, enum dma_data_direction dir,
2697 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002698{
2699 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002700 struct protection_domain *domain;
2701 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002702 int i;
2703
Joerg Roedel55877a62008-12-12 15:12:14 +01002704 INC_STATS_COUNTER(cnt_unmap_sg);
2705
Joerg Roedel94f6d192009-11-24 16:40:02 +01002706 domain = get_domain(dev);
2707 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002708 return;
2709
Joerg Roedel65b050a2008-06-26 21:28:02 +02002710 spin_lock_irqsave(&domain->lock, flags);
2711
2712 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002713 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002714 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002715 s->dma_address = s->dma_length = 0;
2716 }
2717
Joerg Roedel17b124b2011-04-06 18:01:35 +02002718 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002719
2720 spin_unlock_irqrestore(&domain->lock, flags);
2721}
2722
Joerg Roedel431b2a22008-07-11 17:14:22 +02002723/*
2724 * The exported alloc_coherent function for dma_ops.
2725 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002726static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002727 dma_addr_t *dma_addr, gfp_t flag,
2728 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002729{
2730 unsigned long flags;
2731 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002732 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002733 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002734 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002735
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002736 INC_STATS_COUNTER(cnt_alloc_coherent);
2737
Joerg Roedel94f6d192009-11-24 16:40:02 +01002738 domain = get_domain(dev);
2739 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002740 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2741 *dma_addr = __pa(virt_addr);
2742 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002743 } else if (IS_ERR(domain))
2744 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002745
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002746 dma_mask = dev->coherent_dma_mask;
2747 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2748 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002749
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002750 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2751 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302752 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002753
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002754 paddr = virt_to_phys(virt_addr);
2755
Joerg Roedel832a90c2008-09-18 15:54:23 +02002756 if (!dma_mask)
2757 dma_mask = *dev->dma_mask;
2758
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002759 spin_lock_irqsave(&domain->lock, flags);
2760
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002761 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002762 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002763
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002764 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002765 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002766 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002767 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002768
Joerg Roedel17b124b2011-04-06 18:01:35 +02002769 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002770
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002771 spin_unlock_irqrestore(&domain->lock, flags);
2772
2773 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002774
2775out_free:
2776
2777 free_pages((unsigned long)virt_addr, get_order(size));
2778
2779 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002780}
2781
Joerg Roedel431b2a22008-07-11 17:14:22 +02002782/*
2783 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002784 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002785static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002786 void *virt_addr, dma_addr_t dma_addr,
2787 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002788{
2789 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002790 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002791
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002792 INC_STATS_COUNTER(cnt_free_coherent);
2793
Joerg Roedel94f6d192009-11-24 16:40:02 +01002794 domain = get_domain(dev);
2795 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002796 goto free_mem;
2797
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002798 spin_lock_irqsave(&domain->lock, flags);
2799
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002800 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002801
Joerg Roedel17b124b2011-04-06 18:01:35 +02002802 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002803
2804 spin_unlock_irqrestore(&domain->lock, flags);
2805
2806free_mem:
2807 free_pages((unsigned long)virt_addr, get_order(size));
2808}
2809
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002810/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002811 * This function is called by the DMA layer to find out if we can handle a
2812 * particular device. It is part of the dma_ops.
2813 */
2814static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2815{
Joerg Roedel420aef82009-11-23 16:14:57 +01002816 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002817}
2818
2819/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002820 * The function for pre-allocating protection domains.
2821 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002822 * If the driver core informs the DMA layer if a driver grabs a device
2823 * we don't need to preallocate the protection domains anymore.
2824 * For now we have to.
2825 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002826static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002827{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002828 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002829 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002830 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002831 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002832
Chris Wrightd18c69d2010-04-02 18:27:55 -07002833 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002834
2835 /* Do we handle this device? */
2836 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002837 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002838
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002839 dev_data = get_dev_data(&dev->dev);
2840 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2841 /* Make sure passthrough domain is allocated */
2842 alloc_passthrough_domain();
2843 dev_data->passthrough = true;
2844 attach_device(&dev->dev, pt_domain);
2845 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2846 dev_name(&dev->dev));
2847 }
2848
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002849 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002850 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002851 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002852
2853 devid = get_device_id(&dev->dev);
2854
Joerg Roedel87a64d52009-11-24 17:26:43 +01002855 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002856 if (!dma_dom)
2857 continue;
2858 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002859 dma_dom->target_dev = devid;
2860
Joerg Roedel15898bb2009-11-24 15:39:42 +01002861 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002862
Joerg Roedelbd60b732008-09-11 10:24:48 +02002863 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002864 }
2865}
2866
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002867static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002868 .alloc = alloc_coherent,
2869 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002870 .map_page = map_page,
2871 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002872 .map_sg = map_sg,
2873 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002874 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002875};
2876
Joerg Roedel27c21272011-05-30 15:56:24 +02002877static unsigned device_dma_ops_init(void)
2878{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002879 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002880 struct pci_dev *pdev = NULL;
2881 unsigned unhandled = 0;
2882
2883 for_each_pci_dev(pdev) {
2884 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002885
2886 iommu_ignore_device(&pdev->dev);
2887
Joerg Roedel27c21272011-05-30 15:56:24 +02002888 unhandled += 1;
2889 continue;
2890 }
2891
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002892 dev_data = get_dev_data(&pdev->dev);
2893
2894 if (!dev_data->passthrough)
2895 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2896 else
2897 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002898 }
2899
2900 return unhandled;
2901}
2902
Joerg Roedel431b2a22008-07-11 17:14:22 +02002903/*
2904 * The function which clues the AMD IOMMU driver into dma_ops.
2905 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002906
2907void __init amd_iommu_init_api(void)
2908{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002909 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002910}
2911
Joerg Roedel6631ee92008-06-26 21:28:05 +02002912int __init amd_iommu_init_dma_ops(void)
2913{
2914 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002915 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002916
Joerg Roedel431b2a22008-07-11 17:14:22 +02002917 /*
2918 * first allocate a default protection domain for every IOMMU we
2919 * found in the system. Devices not assigned to any other
2920 * protection domain will be assigned to the default one.
2921 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002922 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002923 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002924 if (iommu->default_dom == NULL)
2925 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002926 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002927 ret = iommu_init_unity_mappings(iommu);
2928 if (ret)
2929 goto free_domains;
2930 }
2931
Joerg Roedel431b2a22008-07-11 17:14:22 +02002932 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002933 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002934 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002935 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002936
2937 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002938 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002939
Joerg Roedel431b2a22008-07-11 17:14:22 +02002940 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002941 unhandled = device_dma_ops_init();
2942 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2943 /* There are unhandled devices - initialize swiotlb for them */
2944 swiotlb = 1;
2945 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002946
Joerg Roedel7f265082008-12-12 13:50:21 +01002947 amd_iommu_stats_init();
2948
Joerg Roedel6631ee92008-06-26 21:28:05 +02002949 return 0;
2950
2951free_domains:
2952
Joerg Roedel3bd22172009-05-04 15:06:20 +02002953 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002954 if (iommu->default_dom)
2955 dma_ops_domain_free(iommu->default_dom);
2956 }
2957
2958 return ret;
2959}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002960
2961/*****************************************************************************
2962 *
2963 * The following functions belong to the exported interface of AMD IOMMU
2964 *
2965 * This interface allows access to lower level functions of the IOMMU
2966 * like protection domain handling and assignement of devices to domains
2967 * which is not possible with the dma_ops interface.
2968 *
2969 *****************************************************************************/
2970
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002971static void cleanup_domain(struct protection_domain *domain)
2972{
Joerg Roedel492667d2009-11-27 13:25:47 +01002973 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002974 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002975
2976 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2977
Joerg Roedel492667d2009-11-27 13:25:47 +01002978 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002979 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01002980 atomic_set(&dev_data->bind, 0);
2981 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002982
2983 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2984}
2985
Joerg Roedel26508152009-08-26 16:52:40 +02002986static void protection_domain_free(struct protection_domain *domain)
2987{
2988 if (!domain)
2989 return;
2990
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002991 del_domain_from_list(domain);
2992
Joerg Roedel26508152009-08-26 16:52:40 +02002993 if (domain->id)
2994 domain_id_free(domain->id);
2995
2996 kfree(domain);
2997}
2998
2999static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003000{
3001 struct protection_domain *domain;
3002
3003 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3004 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003005 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003006
3007 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003008 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003009 domain->id = domain_id_alloc();
3010 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003011 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003012 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003013
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003014 add_domain_to_list(domain);
3015
Joerg Roedel26508152009-08-26 16:52:40 +02003016 return domain;
3017
3018out_err:
3019 kfree(domain);
3020
3021 return NULL;
3022}
3023
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003024static int __init alloc_passthrough_domain(void)
3025{
3026 if (pt_domain != NULL)
3027 return 0;
3028
3029 /* allocate passthrough domain */
3030 pt_domain = protection_domain_alloc();
3031 if (!pt_domain)
3032 return -ENOMEM;
3033
3034 pt_domain->mode = PAGE_MODE_NONE;
3035
3036 return 0;
3037}
Joerg Roedel26508152009-08-26 16:52:40 +02003038static int amd_iommu_domain_init(struct iommu_domain *dom)
3039{
3040 struct protection_domain *domain;
3041
3042 domain = protection_domain_alloc();
3043 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003044 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003045
3046 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003047 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3048 if (!domain->pt_root)
3049 goto out_free;
3050
Joerg Roedelf3572db2011-11-23 12:36:25 +01003051 domain->iommu_domain = dom;
3052
Joerg Roedelc156e342008-12-02 18:13:27 +01003053 dom->priv = domain;
3054
3055 return 0;
3056
3057out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003058 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003059
3060 return -ENOMEM;
3061}
3062
Joerg Roedel98383fc2008-12-02 18:34:12 +01003063static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3064{
3065 struct protection_domain *domain = dom->priv;
3066
3067 if (!domain)
3068 return;
3069
3070 if (domain->dev_cnt > 0)
3071 cleanup_domain(domain);
3072
3073 BUG_ON(domain->dev_cnt != 0);
3074
Joerg Roedel132bd682011-11-17 14:18:46 +01003075 if (domain->mode != PAGE_MODE_NONE)
3076 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003077
Joerg Roedel52815b72011-11-17 17:24:28 +01003078 if (domain->flags & PD_IOMMUV2_MASK)
3079 free_gcr3_table(domain);
3080
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003081 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003082
3083 dom->priv = NULL;
3084}
3085
Joerg Roedel684f2882008-12-08 12:07:44 +01003086static void amd_iommu_detach_device(struct iommu_domain *dom,
3087 struct device *dev)
3088{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003089 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003090 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003091 u16 devid;
3092
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003093 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003094 return;
3095
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003096 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003097
Joerg Roedel657cbb62009-11-23 15:26:46 +01003098 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003099 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003100
3101 iommu = amd_iommu_rlookup_table[devid];
3102 if (!iommu)
3103 return;
3104
Joerg Roedel684f2882008-12-08 12:07:44 +01003105 iommu_completion_wait(iommu);
3106}
3107
Joerg Roedel01106062008-12-02 19:34:11 +01003108static int amd_iommu_attach_device(struct iommu_domain *dom,
3109 struct device *dev)
3110{
3111 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003112 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003113 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003114 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003115
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003116 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003117 return -EINVAL;
3118
Joerg Roedel657cbb62009-11-23 15:26:46 +01003119 dev_data = dev->archdata.iommu;
3120
Joerg Roedelf62dda62011-06-09 12:55:35 +02003121 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003122 if (!iommu)
3123 return -EINVAL;
3124
Joerg Roedel657cbb62009-11-23 15:26:46 +01003125 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003126 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003127
Joerg Roedel15898bb2009-11-24 15:39:42 +01003128 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003129
3130 iommu_completion_wait(iommu);
3131
Joerg Roedel15898bb2009-11-24 15:39:42 +01003132 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003133}
3134
Joerg Roedel468e2362010-01-21 16:37:36 +01003135static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003136 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003137{
3138 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003139 int prot = 0;
3140 int ret;
3141
Joerg Roedel132bd682011-11-17 14:18:46 +01003142 if (domain->mode == PAGE_MODE_NONE)
3143 return -EINVAL;
3144
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003145 if (iommu_prot & IOMMU_READ)
3146 prot |= IOMMU_PROT_IR;
3147 if (iommu_prot & IOMMU_WRITE)
3148 prot |= IOMMU_PROT_IW;
3149
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003150 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003151 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003152 mutex_unlock(&domain->api_lock);
3153
Joerg Roedel795e74f72010-05-11 17:40:57 +02003154 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003155}
3156
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003157static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3158 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003159{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003160 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003161 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003162
Joerg Roedel132bd682011-11-17 14:18:46 +01003163 if (domain->mode == PAGE_MODE_NONE)
3164 return -EINVAL;
3165
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003166 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003167 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003168 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003169
Joerg Roedel17b124b2011-04-06 18:01:35 +02003170 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003171
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003172 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003173}
3174
Joerg Roedel645c4c82008-12-02 20:05:50 +01003175static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3176 unsigned long iova)
3177{
3178 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003179 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003180 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003181 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003182
Joerg Roedel132bd682011-11-17 14:18:46 +01003183 if (domain->mode == PAGE_MODE_NONE)
3184 return iova;
3185
Joerg Roedel24cd7722010-01-19 17:27:39 +01003186 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003187
Joerg Roedela6d41a42009-09-02 17:08:55 +02003188 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003189 return 0;
3190
Joerg Roedelf03152b2010-01-21 16:15:24 +01003191 if (PM_PTE_LEVEL(*pte) == 0)
3192 offset_mask = PAGE_SIZE - 1;
3193 else
3194 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3195
3196 __pte = *pte & PM_ADDR_MASK;
3197 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003198
3199 return paddr;
3200}
3201
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003202static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3203 unsigned long cap)
3204{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003205 switch (cap) {
3206 case IOMMU_CAP_CACHE_COHERENCY:
3207 return 1;
3208 }
3209
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003210 return 0;
3211}
3212
Alex Williamson8fbdce62011-10-21 15:56:18 -04003213static int amd_iommu_device_group(struct device *dev, unsigned int *groupid)
3214{
3215 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003216 struct pci_dev *pdev = to_pci_dev(dev);
3217 u16 devid;
Alex Williamson8fbdce62011-10-21 15:56:18 -04003218
3219 if (!dev_data)
3220 return -ENODEV;
3221
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003222 if (pdev->is_virtfn || !iommu_group_mf)
3223 devid = dev_data->devid;
3224 else
3225 devid = calc_devid(pdev->bus->number,
3226 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
3227
3228 *groupid = amd_iommu_alias_table[devid];
Alex Williamson8fbdce62011-10-21 15:56:18 -04003229
3230 return 0;
3231}
3232
Joerg Roedel26961ef2008-12-03 17:00:17 +01003233static struct iommu_ops amd_iommu_ops = {
3234 .domain_init = amd_iommu_domain_init,
3235 .domain_destroy = amd_iommu_domain_destroy,
3236 .attach_dev = amd_iommu_attach_device,
3237 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003238 .map = amd_iommu_map,
3239 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003240 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003241 .domain_has_cap = amd_iommu_domain_has_cap,
Alex Williamson8fbdce62011-10-21 15:56:18 -04003242 .device_group = amd_iommu_device_group,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003243 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003244};
3245
Joerg Roedel0feae532009-08-26 15:26:30 +02003246/*****************************************************************************
3247 *
3248 * The next functions do a basic initialization of IOMMU for pass through
3249 * mode
3250 *
3251 * In passthrough mode the IOMMU is initialized and enabled but not used for
3252 * DMA-API translation.
3253 *
3254 *****************************************************************************/
3255
3256int __init amd_iommu_init_passthrough(void)
3257{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003258 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003259 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003260 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003261 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003262 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003263
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003264 ret = alloc_passthrough_domain();
3265 if (ret)
3266 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003267
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003268 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003269 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003270 continue;
3271
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003272 dev_data = get_dev_data(&dev->dev);
3273 dev_data->passthrough = true;
3274
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003275 devid = get_device_id(&dev->dev);
3276
Joerg Roedel15898bb2009-11-24 15:39:42 +01003277 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003278 if (!iommu)
3279 continue;
3280
Joerg Roedel15898bb2009-11-24 15:39:42 +01003281 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003282 }
3283
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003284 amd_iommu_stats_init();
3285
Joerg Roedel0feae532009-08-26 15:26:30 +02003286 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3287
3288 return 0;
3289}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003290
3291/* IOMMUv2 specific functions */
3292int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3293{
3294 return atomic_notifier_chain_register(&ppr_notifier, nb);
3295}
3296EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3297
3298int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3299{
3300 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3301}
3302EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003303
3304void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3305{
3306 struct protection_domain *domain = dom->priv;
3307 unsigned long flags;
3308
3309 spin_lock_irqsave(&domain->lock, flags);
3310
3311 /* Update data structure */
3312 domain->mode = PAGE_MODE_NONE;
3313 domain->updated = true;
3314
3315 /* Make changes visible to IOMMUs */
3316 update_domain(domain);
3317
3318 /* Page-table is not visible to IOMMU anymore, so free it */
3319 free_pagetable(domain);
3320
3321 spin_unlock_irqrestore(&domain->lock, flags);
3322}
3323EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003324
3325int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3326{
3327 struct protection_domain *domain = dom->priv;
3328 unsigned long flags;
3329 int levels, ret;
3330
3331 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3332 return -EINVAL;
3333
3334 /* Number of GCR3 table levels required */
3335 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3336 levels += 1;
3337
3338 if (levels > amd_iommu_max_glx_val)
3339 return -EINVAL;
3340
3341 spin_lock_irqsave(&domain->lock, flags);
3342
3343 /*
3344 * Save us all sanity checks whether devices already in the
3345 * domain support IOMMUv2. Just force that the domain has no
3346 * devices attached when it is switched into IOMMUv2 mode.
3347 */
3348 ret = -EBUSY;
3349 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3350 goto out;
3351
3352 ret = -ENOMEM;
3353 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3354 if (domain->gcr3_tbl == NULL)
3355 goto out;
3356
3357 domain->glx = levels;
3358 domain->flags |= PD_IOMMUV2_MASK;
3359 domain->updated = true;
3360
3361 update_domain(domain);
3362
3363 ret = 0;
3364
3365out:
3366 spin_unlock_irqrestore(&domain->lock, flags);
3367
3368 return ret;
3369}
3370EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003371
3372static int __flush_pasid(struct protection_domain *domain, int pasid,
3373 u64 address, bool size)
3374{
3375 struct iommu_dev_data *dev_data;
3376 struct iommu_cmd cmd;
3377 int i, ret;
3378
3379 if (!(domain->flags & PD_IOMMUV2_MASK))
3380 return -EINVAL;
3381
3382 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3383
3384 /*
3385 * IOMMU TLB needs to be flushed before Device TLB to
3386 * prevent device TLB refill from IOMMU TLB
3387 */
3388 for (i = 0; i < amd_iommus_present; ++i) {
3389 if (domain->dev_iommu[i] == 0)
3390 continue;
3391
3392 ret = iommu_queue_command(amd_iommus[i], &cmd);
3393 if (ret != 0)
3394 goto out;
3395 }
3396
3397 /* Wait until IOMMU TLB flushes are complete */
3398 domain_flush_complete(domain);
3399
3400 /* Now flush device TLBs */
3401 list_for_each_entry(dev_data, &domain->dev_list, list) {
3402 struct amd_iommu *iommu;
3403 int qdep;
3404
3405 BUG_ON(!dev_data->ats.enabled);
3406
3407 qdep = dev_data->ats.qdep;
3408 iommu = amd_iommu_rlookup_table[dev_data->devid];
3409
3410 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3411 qdep, address, size);
3412
3413 ret = iommu_queue_command(iommu, &cmd);
3414 if (ret != 0)
3415 goto out;
3416 }
3417
3418 /* Wait until all device TLBs are flushed */
3419 domain_flush_complete(domain);
3420
3421 ret = 0;
3422
3423out:
3424
3425 return ret;
3426}
3427
3428static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3429 u64 address)
3430{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003431 INC_STATS_COUNTER(invalidate_iotlb);
3432
Joerg Roedel22e266c2011-11-21 15:59:08 +01003433 return __flush_pasid(domain, pasid, address, false);
3434}
3435
3436int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3437 u64 address)
3438{
3439 struct protection_domain *domain = dom->priv;
3440 unsigned long flags;
3441 int ret;
3442
3443 spin_lock_irqsave(&domain->lock, flags);
3444 ret = __amd_iommu_flush_page(domain, pasid, address);
3445 spin_unlock_irqrestore(&domain->lock, flags);
3446
3447 return ret;
3448}
3449EXPORT_SYMBOL(amd_iommu_flush_page);
3450
3451static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3452{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003453 INC_STATS_COUNTER(invalidate_iotlb_all);
3454
Joerg Roedel22e266c2011-11-21 15:59:08 +01003455 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3456 true);
3457}
3458
3459int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3460{
3461 struct protection_domain *domain = dom->priv;
3462 unsigned long flags;
3463 int ret;
3464
3465 spin_lock_irqsave(&domain->lock, flags);
3466 ret = __amd_iommu_flush_tlb(domain, pasid);
3467 spin_unlock_irqrestore(&domain->lock, flags);
3468
3469 return ret;
3470}
3471EXPORT_SYMBOL(amd_iommu_flush_tlb);
3472
Joerg Roedelb16137b2011-11-21 16:50:23 +01003473static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3474{
3475 int index;
3476 u64 *pte;
3477
3478 while (true) {
3479
3480 index = (pasid >> (9 * level)) & 0x1ff;
3481 pte = &root[index];
3482
3483 if (level == 0)
3484 break;
3485
3486 if (!(*pte & GCR3_VALID)) {
3487 if (!alloc)
3488 return NULL;
3489
3490 root = (void *)get_zeroed_page(GFP_ATOMIC);
3491 if (root == NULL)
3492 return NULL;
3493
3494 *pte = __pa(root) | GCR3_VALID;
3495 }
3496
3497 root = __va(*pte & PAGE_MASK);
3498
3499 level -= 1;
3500 }
3501
3502 return pte;
3503}
3504
3505static int __set_gcr3(struct protection_domain *domain, int pasid,
3506 unsigned long cr3)
3507{
3508 u64 *pte;
3509
3510 if (domain->mode != PAGE_MODE_NONE)
3511 return -EINVAL;
3512
3513 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3514 if (pte == NULL)
3515 return -ENOMEM;
3516
3517 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3518
3519 return __amd_iommu_flush_tlb(domain, pasid);
3520}
3521
3522static int __clear_gcr3(struct protection_domain *domain, int pasid)
3523{
3524 u64 *pte;
3525
3526 if (domain->mode != PAGE_MODE_NONE)
3527 return -EINVAL;
3528
3529 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3530 if (pte == NULL)
3531 return 0;
3532
3533 *pte = 0;
3534
3535 return __amd_iommu_flush_tlb(domain, pasid);
3536}
3537
3538int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3539 unsigned long cr3)
3540{
3541 struct protection_domain *domain = dom->priv;
3542 unsigned long flags;
3543 int ret;
3544
3545 spin_lock_irqsave(&domain->lock, flags);
3546 ret = __set_gcr3(domain, pasid, cr3);
3547 spin_unlock_irqrestore(&domain->lock, flags);
3548
3549 return ret;
3550}
3551EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3552
3553int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3554{
3555 struct protection_domain *domain = dom->priv;
3556 unsigned long flags;
3557 int ret;
3558
3559 spin_lock_irqsave(&domain->lock, flags);
3560 ret = __clear_gcr3(domain, pasid);
3561 spin_unlock_irqrestore(&domain->lock, flags);
3562
3563 return ret;
3564}
3565EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003566
3567int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3568 int status, int tag)
3569{
3570 struct iommu_dev_data *dev_data;
3571 struct amd_iommu *iommu;
3572 struct iommu_cmd cmd;
3573
Joerg Roedel399be2f2011-12-01 16:53:47 +01003574 INC_STATS_COUNTER(complete_ppr);
3575
Joerg Roedelc99afa22011-11-21 18:19:25 +01003576 dev_data = get_dev_data(&pdev->dev);
3577 iommu = amd_iommu_rlookup_table[dev_data->devid];
3578
3579 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3580 tag, dev_data->pri_tlp);
3581
3582 return iommu_queue_command(iommu, &cmd);
3583}
3584EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003585
3586struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3587{
3588 struct protection_domain *domain;
3589
3590 domain = get_domain(&pdev->dev);
3591 if (IS_ERR(domain))
3592 return NULL;
3593
3594 /* Only return IOMMUv2 domains */
3595 if (!(domain->flags & PD_IOMMUV2_MASK))
3596 return NULL;
3597
3598 return domain->iommu_domain;
3599}
3600EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003601
3602void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3603{
3604 struct iommu_dev_data *dev_data;
3605
3606 if (!amd_iommu_v2_supported())
3607 return;
3608
3609 dev_data = get_dev_data(&pdev->dev);
3610 dev_data->errata |= (1 << erratum);
3611}
3612EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003613
3614int amd_iommu_device_info(struct pci_dev *pdev,
3615 struct amd_iommu_device_info *info)
3616{
3617 int max_pasids;
3618 int pos;
3619
3620 if (pdev == NULL || info == NULL)
3621 return -EINVAL;
3622
3623 if (!amd_iommu_v2_supported())
3624 return -EINVAL;
3625
3626 memset(info, 0, sizeof(*info));
3627
3628 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3629 if (pos)
3630 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3631
3632 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3633 if (pos)
3634 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3635
3636 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3637 if (pos) {
3638 int features;
3639
3640 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3641 max_pasids = min(max_pasids, (1 << 20));
3642
3643 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3644 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3645
3646 features = pci_pasid_features(pdev);
3647 if (features & PCI_PASID_CAP_EXEC)
3648 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3649 if (features & PCI_PASID_CAP_PRIV)
3650 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3651 }
3652
3653 return 0;
3654}
3655EXPORT_SYMBOL(amd_iommu_device_info);