blob: 99a8444fc6850b58924a7f98e61217750567a670 [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 Roedelb9e619e2012-06-21 14:52:40 +020086static struct dma_map_ops amd_iommu_dma_ops;
87
Joerg Roedel431b2a22008-07-11 17:14:22 +020088/*
89 * general struct to manage commands send to an IOMMU
90 */
Joerg Roedeld6449532008-07-11 17:14:28 +020091struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020092 u32 data[4];
93};
94
Joerg Roedel04bfdd82009-09-02 16:00:23 +020095static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +010096static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -070097
Joerg Roedel15898bb2009-11-24 15:39:42 +010098/****************************************************************************
99 *
100 * Helper functions
101 *
102 ****************************************************************************/
103
Joerg Roedelf62dda62011-06-09 12:55:35 +0200104static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200105{
106 struct iommu_dev_data *dev_data;
107 unsigned long flags;
108
109 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
110 if (!dev_data)
111 return NULL;
112
Joerg Roedelf62dda62011-06-09 12:55:35 +0200113 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200114 atomic_set(&dev_data->bind, 0);
115
116 spin_lock_irqsave(&dev_data_list_lock, flags);
117 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
118 spin_unlock_irqrestore(&dev_data_list_lock, flags);
119
120 return dev_data;
121}
122
123static void free_dev_data(struct iommu_dev_data *dev_data)
124{
125 unsigned long flags;
126
127 spin_lock_irqsave(&dev_data_list_lock, flags);
128 list_del(&dev_data->dev_data_list);
129 spin_unlock_irqrestore(&dev_data_list_lock, flags);
130
131 kfree(dev_data);
132}
133
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200134static struct iommu_dev_data *search_dev_data(u16 devid)
135{
136 struct iommu_dev_data *dev_data;
137 unsigned long flags;
138
139 spin_lock_irqsave(&dev_data_list_lock, flags);
140 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
141 if (dev_data->devid == devid)
142 goto out_unlock;
143 }
144
145 dev_data = NULL;
146
147out_unlock:
148 spin_unlock_irqrestore(&dev_data_list_lock, flags);
149
150 return dev_data;
151}
152
153static struct iommu_dev_data *find_dev_data(u16 devid)
154{
155 struct iommu_dev_data *dev_data;
156
157 dev_data = search_dev_data(devid);
158
159 if (dev_data == NULL)
160 dev_data = alloc_dev_data(devid);
161
162 return dev_data;
163}
164
Joerg Roedel15898bb2009-11-24 15:39:42 +0100165static inline u16 get_device_id(struct device *dev)
166{
167 struct pci_dev *pdev = to_pci_dev(dev);
168
169 return calc_devid(pdev->bus->number, pdev->devfn);
170}
171
Joerg Roedel657cbb62009-11-23 15:26:46 +0100172static struct iommu_dev_data *get_dev_data(struct device *dev)
173{
174 return dev->archdata.iommu;
175}
176
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100177static bool pci_iommuv2_capable(struct pci_dev *pdev)
178{
179 static const int caps[] = {
180 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100181 PCI_EXT_CAP_ID_PRI,
182 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100183 };
184 int i, pos;
185
186 for (i = 0; i < 3; ++i) {
187 pos = pci_find_ext_capability(pdev, caps[i]);
188 if (pos == 0)
189 return false;
190 }
191
192 return true;
193}
194
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100195static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
196{
197 struct iommu_dev_data *dev_data;
198
199 dev_data = get_dev_data(&pdev->dev);
200
201 return dev_data->errata & (1 << erratum) ? true : false;
202}
203
Joerg Roedel71c70982009-11-24 16:43:06 +0100204/*
205 * In this function the list of preallocated protection domains is traversed to
206 * find the domain for a specific device
207 */
208static struct dma_ops_domain *find_protection_domain(u16 devid)
209{
210 struct dma_ops_domain *entry, *ret = NULL;
211 unsigned long flags;
212 u16 alias = amd_iommu_alias_table[devid];
213
214 if (list_empty(&iommu_pd_list))
215 return NULL;
216
217 spin_lock_irqsave(&iommu_pd_list_lock, flags);
218
219 list_for_each_entry(entry, &iommu_pd_list, list) {
220 if (entry->target_dev == devid ||
221 entry->target_dev == alias) {
222 ret = entry;
223 break;
224 }
225 }
226
227 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
228
229 return ret;
230}
231
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100232/*
233 * This function checks if the driver got a valid device from the caller to
234 * avoid dereferencing invalid pointers.
235 */
236static bool check_device(struct device *dev)
237{
238 u16 devid;
239
240 if (!dev || !dev->dma_mask)
241 return false;
242
243 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100244 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100245 return false;
246
247 devid = get_device_id(dev);
248
249 /* Out of our scope? */
250 if (devid > amd_iommu_last_bdf)
251 return false;
252
253 if (amd_iommu_rlookup_table[devid] == NULL)
254 return false;
255
256 return true;
257}
258
Joerg Roedel657cbb62009-11-23 15:26:46 +0100259static int iommu_init_device(struct device *dev)
260{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100261 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100262 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200263 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100264
265 if (dev->archdata.iommu)
266 return 0;
267
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200268 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100269 if (!dev_data)
270 return -ENOMEM;
271
Joerg Roedelf62dda62011-06-09 12:55:35 +0200272 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200273 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200274 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100275
Joerg Roedel71f77582011-06-09 19:03:15 +0200276 alias_data = find_dev_data(alias);
277 if (alias_data == NULL) {
278 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
279 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200280 free_dev_data(dev_data);
281 return -ENOTSUPP;
282 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200283 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200284 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100285
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100286 if (pci_iommuv2_capable(pdev)) {
287 struct amd_iommu *iommu;
288
289 iommu = amd_iommu_rlookup_table[dev_data->devid];
290 dev_data->iommu_v2 = iommu->is_iommu_v2;
291 }
292
Joerg Roedel657cbb62009-11-23 15:26:46 +0100293 dev->archdata.iommu = dev_data;
294
Joerg Roedel657cbb62009-11-23 15:26:46 +0100295 return 0;
296}
297
Joerg Roedel26018872011-06-06 16:50:14 +0200298static void iommu_ignore_device(struct device *dev)
299{
300 u16 devid, alias;
301
302 devid = get_device_id(dev);
303 alias = amd_iommu_alias_table[devid];
304
305 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
306 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
307
308 amd_iommu_rlookup_table[devid] = NULL;
309 amd_iommu_rlookup_table[alias] = NULL;
310}
311
Joerg Roedel657cbb62009-11-23 15:26:46 +0100312static void iommu_uninit_device(struct device *dev)
313{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200314 /*
315 * Nothing to do here - we keep dev_data around for unplugged devices
316 * and reuse it when the device is re-plugged - not doing so would
317 * introduce a ton of races.
318 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100319}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100320
321void __init amd_iommu_uninit_devices(void)
322{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200323 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100324 struct pci_dev *pdev = NULL;
325
326 for_each_pci_dev(pdev) {
327
328 if (!check_device(&pdev->dev))
329 continue;
330
331 iommu_uninit_device(&pdev->dev);
332 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200333
334 /* Free all of our dev_data structures */
335 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
336 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100337}
338
339int __init amd_iommu_init_devices(void)
340{
341 struct pci_dev *pdev = NULL;
342 int ret = 0;
343
344 for_each_pci_dev(pdev) {
345
346 if (!check_device(&pdev->dev))
347 continue;
348
349 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200350 if (ret == -ENOTSUPP)
351 iommu_ignore_device(&pdev->dev);
352 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100353 goto out_free;
354 }
355
356 return 0;
357
358out_free:
359
360 amd_iommu_uninit_devices();
361
362 return ret;
363}
Joerg Roedel7f265082008-12-12 13:50:21 +0100364#ifdef CONFIG_AMD_IOMMU_STATS
365
366/*
367 * Initialization code for statistics collection
368 */
369
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100370DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100371DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100372DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100373DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100374DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100375DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100376DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100377DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100378DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100379DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100380DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100381DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100382DECLARE_STATS_COUNTER(complete_ppr);
383DECLARE_STATS_COUNTER(invalidate_iotlb);
384DECLARE_STATS_COUNTER(invalidate_iotlb_all);
385DECLARE_STATS_COUNTER(pri_requests);
386
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100387
Joerg Roedel7f265082008-12-12 13:50:21 +0100388static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100389static struct dentry *de_fflush;
390
391static void amd_iommu_stats_add(struct __iommu_counter *cnt)
392{
393 if (stats_dir == NULL)
394 return;
395
396 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
397 &cnt->value);
398}
399
400static void amd_iommu_stats_init(void)
401{
402 stats_dir = debugfs_create_dir("amd-iommu", NULL);
403 if (stats_dir == NULL)
404 return;
405
Joerg Roedel7f265082008-12-12 13:50:21 +0100406 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
407 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100408
409 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100410 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100411 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100412 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100413 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100414 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100415 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100416 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100417 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100418 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100419 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100420 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100421 amd_iommu_stats_add(&complete_ppr);
422 amd_iommu_stats_add(&invalidate_iotlb);
423 amd_iommu_stats_add(&invalidate_iotlb_all);
424 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100425}
426
427#endif
428
Joerg Roedel431b2a22008-07-11 17:14:22 +0200429/****************************************************************************
430 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200431 * Interrupt handling functions
432 *
433 ****************************************************************************/
434
Joerg Roedele3e59872009-09-03 14:02:10 +0200435static void dump_dte_entry(u16 devid)
436{
437 int i;
438
Joerg Roedelee6c2862011-11-09 12:06:03 +0100439 for (i = 0; i < 4; ++i)
440 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200441 amd_iommu_dev_table[devid].data[i]);
442}
443
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200444static void dump_command(unsigned long phys_addr)
445{
446 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
447 int i;
448
449 for (i = 0; i < 4; ++i)
450 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
451}
452
Joerg Roedela345b232009-09-03 15:01:43 +0200453static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200454{
Joerg Roedelc2fcf3a2012-04-12 14:12:00 +0200455 int type, devid, domid, flags;
456 volatile u32 *event = __evt;
457 int count = 0;
458 u64 address;
459
460retry:
461 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
462 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
463 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
464 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
465 address = (u64)(((u64)event[3]) << 32) | event[2];
466
467 if (type == 0) {
468 /* Did we hit the erratum? */
469 if (++count == LOOP_TIMEOUT) {
470 pr_err("AMD-Vi: No event written to event log\n");
471 return;
472 }
473 udelay(1);
474 goto retry;
475 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200476
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200477 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200478
479 switch (type) {
480 case EVENT_TYPE_ILL_DEV:
481 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
482 "address=0x%016llx flags=0x%04x]\n",
483 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
484 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200485 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200486 break;
487 case EVENT_TYPE_IO_FAULT:
488 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
489 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
490 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
491 domid, address, flags);
492 break;
493 case EVENT_TYPE_DEV_TAB_ERR:
494 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
495 "address=0x%016llx flags=0x%04x]\n",
496 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
497 address, flags);
498 break;
499 case EVENT_TYPE_PAGE_TAB_ERR:
500 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
501 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
502 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
503 domid, address, flags);
504 break;
505 case EVENT_TYPE_ILL_CMD:
506 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200507 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200508 break;
509 case EVENT_TYPE_CMD_HARD_ERR:
510 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
511 "flags=0x%04x]\n", address, flags);
512 break;
513 case EVENT_TYPE_IOTLB_INV_TO:
514 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
515 "address=0x%016llx]\n",
516 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
517 address);
518 break;
519 case EVENT_TYPE_INV_DEV_REQ:
520 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
521 "address=0x%016llx flags=0x%04x]\n",
522 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
523 address, flags);
524 break;
525 default:
526 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
527 }
Joerg Roedelc2fcf3a2012-04-12 14:12:00 +0200528
529 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200530}
531
532static void iommu_poll_events(struct amd_iommu *iommu)
533{
Joerg Roedel52462d22013-04-18 17:55:04 +0200534 u32 head, tail, status;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200535 unsigned long flags;
536
537 spin_lock_irqsave(&iommu->lock, flags);
538
Joerg Roedel52462d22013-04-18 17:55:04 +0200539 /* enable event interrupts again */
540 do {
541 /*
542 * Workaround for Erratum ERBT1312
543 * Clearing the EVT_INT bit may race in the hardware, so read
544 * it again and make sure it was really cleared
545 */
546 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
547 writel(MMIO_STATUS_EVT_INT_MASK,
548 iommu->mmio_base + MMIO_STATUS_OFFSET);
549 } while (status & MMIO_STATUS_EVT_INT_MASK);
550
Joerg Roedel90008ee2008-09-09 16:41:05 +0200551 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
552 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
553
554 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200555 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200556 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
557 }
558
559 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
560
561 spin_unlock_irqrestore(&iommu->lock, flags);
562}
563
Joerg Roedel3e743872012-06-01 15:20:23 +0200564static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100565{
566 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100567
Joerg Roedel399be2f2011-12-01 16:53:47 +0100568 INC_STATS_COUNTER(pri_requests);
569
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100570 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
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100581 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
582}
583
584static void iommu_poll_ppr_log(struct amd_iommu *iommu)
585{
586 unsigned long flags;
Joerg Roedel52462d22013-04-18 17:55:04 +0200587 u32 head, tail, status;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100588
589 if (iommu->ppr_log == NULL)
590 return;
591
592 spin_lock_irqsave(&iommu->lock, flags);
593
Joerg Roedel52462d22013-04-18 17:55:04 +0200594 /* enable ppr interrupts again */
595 do {
596 /*
597 * Workaround for Erratum ERBT1312
598 * Clearing the PPR_INT bit may race in the hardware, so read
599 * it again and make sure it was really cleared
600 */
601 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
602 writel(MMIO_STATUS_PPR_INT_MASK,
603 iommu->mmio_base + MMIO_STATUS_OFFSET);
604 } while (status & MMIO_STATUS_PPR_INT_MASK);
605
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100606 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
607 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
608
609 while (head != tail) {
Joerg Roedel3e743872012-06-01 15:20:23 +0200610 volatile u64 *raw;
611 u64 entry[2];
612 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100613
Joerg Roedel3e743872012-06-01 15:20:23 +0200614 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100615
Joerg Roedel3e743872012-06-01 15:20:23 +0200616 /*
617 * Hardware bug: Interrupt may arrive before the entry is
618 * written to memory. If this happens we need to wait for the
619 * entry to arrive.
620 */
621 for (i = 0; i < LOOP_TIMEOUT; ++i) {
622 if (PPR_REQ_TYPE(raw[0]) != 0)
623 break;
624 udelay(1);
625 }
626
627 /* Avoid memcpy function-call overhead */
628 entry[0] = raw[0];
629 entry[1] = raw[1];
630
631 /*
632 * To detect the hardware bug we need to clear the entry
633 * back to zero.
634 */
635 raw[0] = raw[1] = 0UL;
636
637 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100638 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
639 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel3e743872012-06-01 15:20:23 +0200640
641 /*
642 * Release iommu->lock because ppr-handling might need to
643 * re-aquire it
644 */
645 spin_unlock_irqrestore(&iommu->lock, flags);
646
647 /* Handle PPR entry */
648 iommu_handle_ppr_entry(iommu, entry);
649
650 spin_lock_irqsave(&iommu->lock, flags);
651
652 /* Refresh ring-buffer information */
653 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100654 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
655 }
656
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100657 spin_unlock_irqrestore(&iommu->lock, flags);
658}
659
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200660irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200661{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200662 struct amd_iommu *iommu;
663
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100664 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200665 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100666 iommu_poll_ppr_log(iommu);
667 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200668
669 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200670}
671
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200672irqreturn_t amd_iommu_int_handler(int irq, void *data)
673{
674 return IRQ_WAKE_THREAD;
675}
676
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200677/****************************************************************************
678 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200679 * IOMMU command queuing functions
680 *
681 ****************************************************************************/
682
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200683static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200684{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200685 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200686
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200687 while (*sem == 0 && i < LOOP_TIMEOUT) {
688 udelay(1);
689 i += 1;
690 }
691
692 if (i == LOOP_TIMEOUT) {
693 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
694 return -EIO;
695 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200696
697 return 0;
698}
699
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200700static void copy_cmd_to_buffer(struct amd_iommu *iommu,
701 struct iommu_cmd *cmd,
702 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200703{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200704 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200705
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200706 target = iommu->cmd_buf + tail;
707 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200708
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200709 /* Copy command to buffer */
710 memcpy(target, cmd, sizeof(*cmd));
711
712 /* Tell the IOMMU about it */
713 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
714}
715
Joerg Roedel815b33f2011-04-06 17:26:49 +0200716static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200717{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200718 WARN_ON(address & 0x7ULL);
719
Joerg Roedelded46732011-04-06 10:53:48 +0200720 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200721 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
722 cmd->data[1] = upper_32_bits(__pa(address));
723 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200724 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
725}
726
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200727static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
728{
729 memset(cmd, 0, sizeof(*cmd));
730 cmd->data[0] = devid;
731 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
732}
733
Joerg Roedel11b64022011-04-06 11:49:28 +0200734static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
735 size_t size, u16 domid, int pde)
736{
737 u64 pages;
738 int s;
739
740 pages = iommu_num_pages(address, size, PAGE_SIZE);
741 s = 0;
742
743 if (pages > 1) {
744 /*
745 * If we have to flush more than one page, flush all
746 * TLB entries for this domain
747 */
748 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
749 s = 1;
750 }
751
752 address &= PAGE_MASK;
753
754 memset(cmd, 0, sizeof(*cmd));
755 cmd->data[1] |= domid;
756 cmd->data[2] = lower_32_bits(address);
757 cmd->data[3] = upper_32_bits(address);
758 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
759 if (s) /* size bit - we flush more than one 4kb page */
760 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
761 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
762 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
763}
764
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200765static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
766 u64 address, size_t size)
767{
768 u64 pages;
769 int s;
770
771 pages = iommu_num_pages(address, size, PAGE_SIZE);
772 s = 0;
773
774 if (pages > 1) {
775 /*
776 * If we have to flush more than one page, flush all
777 * TLB entries for this domain
778 */
779 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
780 s = 1;
781 }
782
783 address &= PAGE_MASK;
784
785 memset(cmd, 0, sizeof(*cmd));
786 cmd->data[0] = devid;
787 cmd->data[0] |= (qdep & 0xff) << 24;
788 cmd->data[1] = devid;
789 cmd->data[2] = lower_32_bits(address);
790 cmd->data[3] = upper_32_bits(address);
791 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
792 if (s)
793 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
794}
795
Joerg Roedel22e266c2011-11-21 15:59:08 +0100796static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
797 u64 address, bool size)
798{
799 memset(cmd, 0, sizeof(*cmd));
800
801 address &= ~(0xfffULL);
802
803 cmd->data[0] = pasid & PASID_MASK;
804 cmd->data[1] = domid;
805 cmd->data[2] = lower_32_bits(address);
806 cmd->data[3] = upper_32_bits(address);
807 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
808 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
809 if (size)
810 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
811 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
812}
813
814static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
815 int qdep, u64 address, bool size)
816{
817 memset(cmd, 0, sizeof(*cmd));
818
819 address &= ~(0xfffULL);
820
821 cmd->data[0] = devid;
822 cmd->data[0] |= (pasid & 0xff) << 16;
823 cmd->data[0] |= (qdep & 0xff) << 24;
824 cmd->data[1] = devid;
825 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
826 cmd->data[2] = lower_32_bits(address);
827 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
828 cmd->data[3] = upper_32_bits(address);
829 if (size)
830 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
831 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
832}
833
Joerg Roedelc99afa22011-11-21 18:19:25 +0100834static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
835 int status, int tag, bool gn)
836{
837 memset(cmd, 0, sizeof(*cmd));
838
839 cmd->data[0] = devid;
840 if (gn) {
841 cmd->data[1] = pasid & PASID_MASK;
842 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
843 }
844 cmd->data[3] = tag & 0x1ff;
845 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
846
847 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
848}
849
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200850static void build_inv_all(struct iommu_cmd *cmd)
851{
852 memset(cmd, 0, sizeof(*cmd));
853 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200854}
855
Joerg Roedel431b2a22008-07-11 17:14:22 +0200856/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200857 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200858 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200859 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200860static int iommu_queue_command_sync(struct amd_iommu *iommu,
861 struct iommu_cmd *cmd,
862 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200863{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200864 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200865 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200866
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200867 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100868
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200869again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200870 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200871
872 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
873 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
874 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
875 left = (head - next_tail) % iommu->cmd_buf_size;
876
877 if (left <= 2) {
878 struct iommu_cmd sync_cmd;
879 volatile u64 sem = 0;
880 int ret;
881
882 build_completion_wait(&sync_cmd, (u64)&sem);
883 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
884
885 spin_unlock_irqrestore(&iommu->lock, flags);
886
887 if ((ret = wait_on_sem(&sem)) != 0)
888 return ret;
889
890 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200891 }
892
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200893 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200894
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200895 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200896 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200897
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200898 spin_unlock_irqrestore(&iommu->lock, flags);
899
Joerg Roedel815b33f2011-04-06 17:26:49 +0200900 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100901}
902
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200903static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
904{
905 return iommu_queue_command_sync(iommu, cmd, true);
906}
907
Joerg Roedel8d201962008-12-02 20:34:41 +0100908/*
909 * This function queues a completion wait command into the command
910 * buffer of an IOMMU
911 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100912static int iommu_completion_wait(struct amd_iommu *iommu)
913{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200914 struct iommu_cmd cmd;
915 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200916 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100917
918 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200919 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100920
Joerg Roedel815b33f2011-04-06 17:26:49 +0200921 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100922
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200923 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100924 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200925 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100926
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200927 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200928}
929
Joerg Roedeld8c13082011-04-06 18:51:26 +0200930static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200931{
932 struct iommu_cmd cmd;
933
Joerg Roedeld8c13082011-04-06 18:51:26 +0200934 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200935
Joerg Roedeld8c13082011-04-06 18:51:26 +0200936 return iommu_queue_command(iommu, &cmd);
937}
938
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200939static void iommu_flush_dte_all(struct amd_iommu *iommu)
940{
941 u32 devid;
942
943 for (devid = 0; devid <= 0xffff; ++devid)
944 iommu_flush_dte(iommu, devid);
945
946 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200947}
948
949/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200950 * This function uses heavy locking and may disable irqs for some time. But
951 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200952 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200953static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200954{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200955 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200956
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200957 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
958 struct iommu_cmd cmd;
959 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
960 dom_id, 1);
961 iommu_queue_command(iommu, &cmd);
962 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200963
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200964 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200965}
966
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200967static void iommu_flush_all(struct amd_iommu *iommu)
968{
969 struct iommu_cmd cmd;
970
971 build_inv_all(&cmd);
972
973 iommu_queue_command(iommu, &cmd);
974 iommu_completion_wait(iommu);
975}
976
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200977void iommu_flush_all_caches(struct amd_iommu *iommu)
978{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200979 if (iommu_feature(iommu, FEATURE_IA)) {
980 iommu_flush_all(iommu);
981 } else {
982 iommu_flush_dte_all(iommu);
983 iommu_flush_tlb_all(iommu);
984 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200985}
986
Joerg Roedel431b2a22008-07-11 17:14:22 +0200987/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200988 * Command send function for flushing on-device TLB
989 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200990static int device_flush_iotlb(struct iommu_dev_data *dev_data,
991 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200992{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200993 struct amd_iommu *iommu;
994 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200995 int qdep;
996
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200997 qdep = dev_data->ats.qdep;
998 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200999
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001000 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001001
1002 return iommu_queue_command(iommu, &cmd);
1003}
1004
1005/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001006 * Command send function for invalidating a device table entry
1007 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001008static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001009{
1010 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001011 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001012
Joerg Roedel6c542042011-06-09 17:07:31 +02001013 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001014
Joerg Roedelf62dda62011-06-09 12:55:35 +02001015 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001016 if (ret)
1017 return ret;
1018
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001019 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001020 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001021
1022 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001023}
1024
Joerg Roedel431b2a22008-07-11 17:14:22 +02001025/*
1026 * TLB invalidation function which is called from the mapping functions.
1027 * It invalidates a single PTE if the range to flush is within a single
1028 * page. Otherwise it flushes the whole TLB of the IOMMU.
1029 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001030static void __domain_flush_pages(struct protection_domain *domain,
1031 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001032{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001033 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001034 struct iommu_cmd cmd;
1035 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001036
Joerg Roedel11b64022011-04-06 11:49:28 +02001037 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001038
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001039 for (i = 0; i < amd_iommus_present; ++i) {
1040 if (!domain->dev_iommu[i])
1041 continue;
1042
1043 /*
1044 * Devices of this domain are behind this IOMMU
1045 * We need a TLB flush
1046 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001047 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001048 }
1049
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001050 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001051
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001052 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001053 continue;
1054
Joerg Roedel6c542042011-06-09 17:07:31 +02001055 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001056 }
1057
Joerg Roedel11b64022011-04-06 11:49:28 +02001058 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001059}
1060
Joerg Roedel17b124b2011-04-06 18:01:35 +02001061static void domain_flush_pages(struct protection_domain *domain,
1062 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001063{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001064 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001065}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001066
Joerg Roedel1c655772008-09-04 18:40:05 +02001067/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001068static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001069{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001070 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001071}
1072
Chris Wright42a49f92009-06-15 15:42:00 +02001073/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001074static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001075{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001076 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1077}
1078
1079static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001080{
1081 int i;
1082
1083 for (i = 0; i < amd_iommus_present; ++i) {
1084 if (!domain->dev_iommu[i])
1085 continue;
1086
1087 /*
1088 * Devices of this domain are behind this IOMMU
1089 * We need to wait for completion of all commands.
1090 */
1091 iommu_completion_wait(amd_iommus[i]);
1092 }
1093}
1094
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001095
Joerg Roedel43f49602008-12-02 21:01:12 +01001096/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001097 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001098 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001099static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001100{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001101 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001102
1103 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001104 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001105}
1106
Joerg Roedel431b2a22008-07-11 17:14:22 +02001107/****************************************************************************
1108 *
1109 * The functions below are used the create the page table mappings for
1110 * unity mapped regions.
1111 *
1112 ****************************************************************************/
1113
1114/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001115 * This function is used to add another level to an IO page table. Adding
1116 * another level increases the size of the address space by 9 bits to a size up
1117 * to 64 bits.
1118 */
1119static bool increase_address_space(struct protection_domain *domain,
1120 gfp_t gfp)
1121{
1122 u64 *pte;
1123
1124 if (domain->mode == PAGE_MODE_6_LEVEL)
1125 /* address space already 64 bit large */
1126 return false;
1127
1128 pte = (void *)get_zeroed_page(gfp);
1129 if (!pte)
1130 return false;
1131
1132 *pte = PM_LEVEL_PDE(domain->mode,
1133 virt_to_phys(domain->pt_root));
1134 domain->pt_root = pte;
1135 domain->mode += 1;
1136 domain->updated = true;
1137
1138 return true;
1139}
1140
1141static u64 *alloc_pte(struct protection_domain *domain,
1142 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001143 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001144 u64 **pte_page,
1145 gfp_t gfp)
1146{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001147 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001148 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001149
1150 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001151
1152 while (address > PM_LEVEL_SIZE(domain->mode))
1153 increase_address_space(domain, gfp);
1154
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001155 level = domain->mode - 1;
1156 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1157 address = PAGE_SIZE_ALIGN(address, page_size);
1158 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001159
1160 while (level > end_lvl) {
1161 if (!IOMMU_PTE_PRESENT(*pte)) {
1162 page = (u64 *)get_zeroed_page(gfp);
1163 if (!page)
1164 return NULL;
1165 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1166 }
1167
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001168 /* No level skipping support yet */
1169 if (PM_PTE_LEVEL(*pte) != level)
1170 return NULL;
1171
Joerg Roedel308973d2009-11-24 17:43:32 +01001172 level -= 1;
1173
1174 pte = IOMMU_PTE_PAGE(*pte);
1175
1176 if (pte_page && level == end_lvl)
1177 *pte_page = pte;
1178
1179 pte = &pte[PM_LEVEL_INDEX(level, address)];
1180 }
1181
1182 return pte;
1183}
1184
1185/*
1186 * This function checks if there is a PTE for a given dma address. If
1187 * there is one, it returns the pointer to it.
1188 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001189static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001190{
1191 int level;
1192 u64 *pte;
1193
Joerg Roedel24cd7722010-01-19 17:27:39 +01001194 if (address > PM_LEVEL_SIZE(domain->mode))
1195 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001196
Joerg Roedel24cd7722010-01-19 17:27:39 +01001197 level = domain->mode - 1;
1198 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1199
1200 while (level > 0) {
1201
1202 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001203 if (!IOMMU_PTE_PRESENT(*pte))
1204 return NULL;
1205
Joerg Roedel24cd7722010-01-19 17:27:39 +01001206 /* Large PTE */
1207 if (PM_PTE_LEVEL(*pte) == 0x07) {
1208 unsigned long pte_mask, __pte;
1209
1210 /*
1211 * If we have a series of large PTEs, make
1212 * sure to return a pointer to the first one.
1213 */
1214 pte_mask = PTE_PAGE_SIZE(*pte);
1215 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1216 __pte = ((unsigned long)pte) & pte_mask;
1217
1218 return (u64 *)__pte;
1219 }
1220
1221 /* No level skipping support yet */
1222 if (PM_PTE_LEVEL(*pte) != level)
1223 return NULL;
1224
Joerg Roedel308973d2009-11-24 17:43:32 +01001225 level -= 1;
1226
Joerg Roedel24cd7722010-01-19 17:27:39 +01001227 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001228 pte = IOMMU_PTE_PAGE(*pte);
1229 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001230 }
1231
1232 return pte;
1233}
1234
1235/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001236 * Generic mapping functions. It maps a physical address into a DMA
1237 * address space. It allocates the page table pages if necessary.
1238 * In the future it can be extended to a generic mapping function
1239 * supporting all features of AMD IOMMU page tables like level skipping
1240 * and full 64 bit address spaces.
1241 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001242static int iommu_map_page(struct protection_domain *dom,
1243 unsigned long bus_addr,
1244 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001245 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001246 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001247{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001248 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001249 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001250
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001251 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001252 return -EINVAL;
1253
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001254 bus_addr = PAGE_ALIGN(bus_addr);
1255 phys_addr = PAGE_ALIGN(phys_addr);
1256 count = PAGE_SIZE_PTE_COUNT(page_size);
1257 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001258
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001259 for (i = 0; i < count; ++i)
1260 if (IOMMU_PTE_PRESENT(pte[i]))
1261 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001262
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001263 if (page_size > PAGE_SIZE) {
1264 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1265 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1266 } else
1267 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1268
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001269 if (prot & IOMMU_PROT_IR)
1270 __pte |= IOMMU_PTE_IR;
1271 if (prot & IOMMU_PROT_IW)
1272 __pte |= IOMMU_PTE_IW;
1273
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001274 for (i = 0; i < count; ++i)
1275 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001276
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001277 update_domain(dom);
1278
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001279 return 0;
1280}
1281
Joerg Roedel24cd7722010-01-19 17:27:39 +01001282static unsigned long iommu_unmap_page(struct protection_domain *dom,
1283 unsigned long bus_addr,
1284 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001285{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001286 unsigned long long unmap_size, unmapped;
1287 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001288
Joerg Roedel24cd7722010-01-19 17:27:39 +01001289 BUG_ON(!is_power_of_2(page_size));
1290
1291 unmapped = 0;
1292
1293 while (unmapped < page_size) {
1294
1295 pte = fetch_pte(dom, bus_addr);
1296
1297 if (!pte) {
1298 /*
1299 * No PTE for this address
1300 * move forward in 4kb steps
1301 */
1302 unmap_size = PAGE_SIZE;
1303 } else if (PM_PTE_LEVEL(*pte) == 0) {
1304 /* 4kb PTE found for this address */
1305 unmap_size = PAGE_SIZE;
1306 *pte = 0ULL;
1307 } else {
1308 int count, i;
1309
1310 /* Large PTE found which maps this address */
1311 unmap_size = PTE_PAGE_SIZE(*pte);
1312 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1313 for (i = 0; i < count; i++)
1314 pte[i] = 0ULL;
1315 }
1316
1317 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1318 unmapped += unmap_size;
1319 }
1320
1321 BUG_ON(!is_power_of_2(unmapped));
1322
1323 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001324}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001325
Joerg Roedel431b2a22008-07-11 17:14:22 +02001326/*
1327 * This function checks if a specific unity mapping entry is needed for
1328 * this specific IOMMU.
1329 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001330static int iommu_for_unity_map(struct amd_iommu *iommu,
1331 struct unity_map_entry *entry)
1332{
1333 u16 bdf, i;
1334
1335 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1336 bdf = amd_iommu_alias_table[i];
1337 if (amd_iommu_rlookup_table[bdf] == iommu)
1338 return 1;
1339 }
1340
1341 return 0;
1342}
1343
Joerg Roedel431b2a22008-07-11 17:14:22 +02001344/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001345 * This function actually applies the mapping to the page table of the
1346 * dma_ops domain.
1347 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001348static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1349 struct unity_map_entry *e)
1350{
1351 u64 addr;
1352 int ret;
1353
1354 for (addr = e->address_start; addr < e->address_end;
1355 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001356 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001357 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001358 if (ret)
1359 return ret;
1360 /*
1361 * if unity mapping is in aperture range mark the page
1362 * as allocated in the aperture
1363 */
1364 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001365 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001366 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001367 }
1368
1369 return 0;
1370}
1371
Joerg Roedel431b2a22008-07-11 17:14:22 +02001372/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001373 * Init the unity mappings for a specific IOMMU in the system
1374 *
1375 * Basically iterates over all unity mapping entries and applies them to
1376 * the default domain DMA of that IOMMU if necessary.
1377 */
1378static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1379{
1380 struct unity_map_entry *entry;
1381 int ret;
1382
1383 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1384 if (!iommu_for_unity_map(iommu, entry))
1385 continue;
1386 ret = dma_ops_unity_map(iommu->default_dom, entry);
1387 if (ret)
1388 return ret;
1389 }
1390
1391 return 0;
1392}
1393
1394/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001395 * Inits the unity mappings required for a specific device
1396 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001397static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1398 u16 devid)
1399{
1400 struct unity_map_entry *e;
1401 int ret;
1402
1403 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1404 if (!(devid >= e->devid_start && devid <= e->devid_end))
1405 continue;
1406 ret = dma_ops_unity_map(dma_dom, e);
1407 if (ret)
1408 return ret;
1409 }
1410
1411 return 0;
1412}
1413
Joerg Roedel431b2a22008-07-11 17:14:22 +02001414/****************************************************************************
1415 *
1416 * The next functions belong to the address allocator for the dma_ops
1417 * interface functions. They work like the allocators in the other IOMMU
1418 * drivers. Its basically a bitmap which marks the allocated pages in
1419 * the aperture. Maybe it could be enhanced in the future to a more
1420 * efficient allocator.
1421 *
1422 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001423
Joerg Roedel431b2a22008-07-11 17:14:22 +02001424/*
Joerg Roedel384de722009-05-15 12:30:05 +02001425 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001426 *
1427 * called with domain->lock held
1428 */
Joerg Roedel384de722009-05-15 12:30:05 +02001429
Joerg Roedel9cabe892009-05-18 16:38:55 +02001430/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001431 * Used to reserve address ranges in the aperture (e.g. for exclusion
1432 * ranges.
1433 */
1434static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1435 unsigned long start_page,
1436 unsigned int pages)
1437{
1438 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1439
1440 if (start_page + pages > last_page)
1441 pages = last_page - start_page;
1442
1443 for (i = start_page; i < start_page + pages; ++i) {
1444 int index = i / APERTURE_RANGE_PAGES;
1445 int page = i % APERTURE_RANGE_PAGES;
1446 __set_bit(page, dom->aperture[index]->bitmap);
1447 }
1448}
1449
1450/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001451 * This function is used to add a new aperture range to an existing
1452 * aperture in case of dma_ops domain allocation or address allocation
1453 * failure.
1454 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001455static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001456 bool populate, gfp_t gfp)
1457{
1458 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001459 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001460 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001461
Joerg Roedelf5e97052009-05-22 12:31:53 +02001462#ifdef CONFIG_IOMMU_STRESS
1463 populate = false;
1464#endif
1465
Joerg Roedel9cabe892009-05-18 16:38:55 +02001466 if (index >= APERTURE_MAX_RANGES)
1467 return -ENOMEM;
1468
1469 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1470 if (!dma_dom->aperture[index])
1471 return -ENOMEM;
1472
1473 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1474 if (!dma_dom->aperture[index]->bitmap)
1475 goto out_free;
1476
1477 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1478
1479 if (populate) {
1480 unsigned long address = dma_dom->aperture_size;
1481 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1482 u64 *pte, *pte_page;
1483
1484 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001485 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001486 &pte_page, gfp);
1487 if (!pte)
1488 goto out_free;
1489
1490 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1491
1492 address += APERTURE_RANGE_SIZE / 64;
1493 }
1494 }
1495
Joerg Roedel17f5b562011-07-06 17:14:44 +02001496 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001497 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1498
Joerg Roedel17f5b562011-07-06 17:14:44 +02001499 /* Reserve address range used for MSI messages */
1500 if (old_size < MSI_ADDR_BASE_LO &&
1501 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1502 unsigned long spage;
1503 int pages;
1504
1505 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1506 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1507
1508 dma_ops_reserve_addresses(dma_dom, spage, pages);
1509 }
1510
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001511 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001512 for_each_iommu(iommu) {
1513 if (iommu->exclusion_start &&
1514 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1515 && iommu->exclusion_start < dma_dom->aperture_size) {
1516 unsigned long startpage;
1517 int pages = iommu_num_pages(iommu->exclusion_start,
1518 iommu->exclusion_length,
1519 PAGE_SIZE);
1520 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1521 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1522 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001523 }
1524
1525 /*
1526 * Check for areas already mapped as present in the new aperture
1527 * range and mark those pages as reserved in the allocator. Such
1528 * mappings may already exist as a result of requested unity
1529 * mappings for devices.
1530 */
1531 for (i = dma_dom->aperture[index]->offset;
1532 i < dma_dom->aperture_size;
1533 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001534 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001535 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1536 continue;
1537
Joerg Roedelfcd08612011-10-11 17:41:32 +02001538 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001539 }
1540
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001541 update_domain(&dma_dom->domain);
1542
Joerg Roedel9cabe892009-05-18 16:38:55 +02001543 return 0;
1544
1545out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001546 update_domain(&dma_dom->domain);
1547
Joerg Roedel9cabe892009-05-18 16:38:55 +02001548 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1549
1550 kfree(dma_dom->aperture[index]);
1551 dma_dom->aperture[index] = NULL;
1552
1553 return -ENOMEM;
1554}
1555
Joerg Roedel384de722009-05-15 12:30:05 +02001556static unsigned long dma_ops_area_alloc(struct device *dev,
1557 struct dma_ops_domain *dom,
1558 unsigned int pages,
1559 unsigned long align_mask,
1560 u64 dma_mask,
1561 unsigned long start)
1562{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001563 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001564 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1565 int i = start >> APERTURE_RANGE_SHIFT;
1566 unsigned long boundary_size;
1567 unsigned long address = -1;
1568 unsigned long limit;
1569
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001570 next_bit >>= PAGE_SHIFT;
1571
Joerg Roedel384de722009-05-15 12:30:05 +02001572 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1573 PAGE_SIZE) >> PAGE_SHIFT;
1574
1575 for (;i < max_index; ++i) {
1576 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1577
1578 if (dom->aperture[i]->offset >= dma_mask)
1579 break;
1580
1581 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1582 dma_mask >> PAGE_SHIFT);
1583
1584 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1585 limit, next_bit, pages, 0,
1586 boundary_size, align_mask);
1587 if (address != -1) {
1588 address = dom->aperture[i]->offset +
1589 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001590 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001591 break;
1592 }
1593
1594 next_bit = 0;
1595 }
1596
1597 return address;
1598}
1599
Joerg Roedeld3086442008-06-26 21:27:57 +02001600static unsigned long dma_ops_alloc_addresses(struct device *dev,
1601 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001602 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001603 unsigned long align_mask,
1604 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001605{
Joerg Roedeld3086442008-06-26 21:27:57 +02001606 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001607
Joerg Roedelfe16f082009-05-22 12:27:53 +02001608#ifdef CONFIG_IOMMU_STRESS
1609 dom->next_address = 0;
1610 dom->need_flush = true;
1611#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001612
Joerg Roedel384de722009-05-15 12:30:05 +02001613 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001614 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001615
Joerg Roedel1c655772008-09-04 18:40:05 +02001616 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001617 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001618 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1619 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001620 dom->need_flush = true;
1621 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001622
Joerg Roedel384de722009-05-15 12:30:05 +02001623 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001624 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001625
1626 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1627
1628 return address;
1629}
1630
Joerg Roedel431b2a22008-07-11 17:14:22 +02001631/*
1632 * The address free function.
1633 *
1634 * called with domain->lock held
1635 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001636static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1637 unsigned long address,
1638 unsigned int pages)
1639{
Joerg Roedel384de722009-05-15 12:30:05 +02001640 unsigned i = address >> APERTURE_RANGE_SHIFT;
1641 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001642
Joerg Roedel384de722009-05-15 12:30:05 +02001643 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1644
Joerg Roedel47bccd62009-05-22 12:40:54 +02001645#ifdef CONFIG_IOMMU_STRESS
1646 if (i < 4)
1647 return;
1648#endif
1649
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001650 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001651 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001652
1653 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001654
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001655 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001656
Joerg Roedeld3086442008-06-26 21:27:57 +02001657}
1658
Joerg Roedel431b2a22008-07-11 17:14:22 +02001659/****************************************************************************
1660 *
1661 * The next functions belong to the domain allocation. A domain is
1662 * allocated for every IOMMU as the default domain. If device isolation
1663 * is enabled, every device get its own domain. The most important thing
1664 * about domains is the page table mapping the DMA address space they
1665 * contain.
1666 *
1667 ****************************************************************************/
1668
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001669/*
1670 * This function adds a protection domain to the global protection domain list
1671 */
1672static void add_domain_to_list(struct protection_domain *domain)
1673{
1674 unsigned long flags;
1675
1676 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1677 list_add(&domain->list, &amd_iommu_pd_list);
1678 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1679}
1680
1681/*
1682 * This function removes a protection domain to the global
1683 * protection domain list
1684 */
1685static void del_domain_from_list(struct protection_domain *domain)
1686{
1687 unsigned long flags;
1688
1689 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1690 list_del(&domain->list);
1691 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1692}
1693
Joerg Roedelec487d12008-06-26 21:27:58 +02001694static u16 domain_id_alloc(void)
1695{
1696 unsigned long flags;
1697 int id;
1698
1699 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1700 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1701 BUG_ON(id == 0);
1702 if (id > 0 && id < MAX_DOMAIN_ID)
1703 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1704 else
1705 id = 0;
1706 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1707
1708 return id;
1709}
1710
Joerg Roedela2acfb72008-12-02 18:28:53 +01001711static void domain_id_free(int id)
1712{
1713 unsigned long flags;
1714
1715 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1716 if (id > 0 && id < MAX_DOMAIN_ID)
1717 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1718 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1719}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001720
Joerg Roedel86db2e52008-12-02 18:20:21 +01001721static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001722{
1723 int i, j;
1724 u64 *p1, *p2, *p3;
1725
Joerg Roedel86db2e52008-12-02 18:20:21 +01001726 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001727
1728 if (!p1)
1729 return;
1730
1731 for (i = 0; i < 512; ++i) {
1732 if (!IOMMU_PTE_PRESENT(p1[i]))
1733 continue;
1734
1735 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001736 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001737 if (!IOMMU_PTE_PRESENT(p2[j]))
1738 continue;
1739 p3 = IOMMU_PTE_PAGE(p2[j]);
1740 free_page((unsigned long)p3);
1741 }
1742
1743 free_page((unsigned long)p2);
1744 }
1745
1746 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001747
1748 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001749}
1750
Joerg Roedelb16137b2011-11-21 16:50:23 +01001751static void free_gcr3_tbl_level1(u64 *tbl)
1752{
1753 u64 *ptr;
1754 int i;
1755
1756 for (i = 0; i < 512; ++i) {
1757 if (!(tbl[i] & GCR3_VALID))
1758 continue;
1759
1760 ptr = __va(tbl[i] & PAGE_MASK);
1761
1762 free_page((unsigned long)ptr);
1763 }
1764}
1765
1766static void free_gcr3_tbl_level2(u64 *tbl)
1767{
1768 u64 *ptr;
1769 int i;
1770
1771 for (i = 0; i < 512; ++i) {
1772 if (!(tbl[i] & GCR3_VALID))
1773 continue;
1774
1775 ptr = __va(tbl[i] & PAGE_MASK);
1776
1777 free_gcr3_tbl_level1(ptr);
1778 }
1779}
1780
Joerg Roedel52815b72011-11-17 17:24:28 +01001781static void free_gcr3_table(struct protection_domain *domain)
1782{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001783 if (domain->glx == 2)
1784 free_gcr3_tbl_level2(domain->gcr3_tbl);
1785 else if (domain->glx == 1)
1786 free_gcr3_tbl_level1(domain->gcr3_tbl);
1787 else if (domain->glx != 0)
1788 BUG();
1789
Joerg Roedel52815b72011-11-17 17:24:28 +01001790 free_page((unsigned long)domain->gcr3_tbl);
1791}
1792
Joerg Roedel431b2a22008-07-11 17:14:22 +02001793/*
1794 * Free a domain, only used if something went wrong in the
1795 * allocation path and we need to free an already allocated page table
1796 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001797static void dma_ops_domain_free(struct dma_ops_domain *dom)
1798{
Joerg Roedel384de722009-05-15 12:30:05 +02001799 int i;
1800
Joerg Roedelec487d12008-06-26 21:27:58 +02001801 if (!dom)
1802 return;
1803
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001804 del_domain_from_list(&dom->domain);
1805
Joerg Roedel86db2e52008-12-02 18:20:21 +01001806 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001807
Joerg Roedel384de722009-05-15 12:30:05 +02001808 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1809 if (!dom->aperture[i])
1810 continue;
1811 free_page((unsigned long)dom->aperture[i]->bitmap);
1812 kfree(dom->aperture[i]);
1813 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001814
1815 kfree(dom);
1816}
1817
Joerg Roedel431b2a22008-07-11 17:14:22 +02001818/*
1819 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001820 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001821 * structures required for the dma_ops interface
1822 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001823static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001824{
1825 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001826
1827 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1828 if (!dma_dom)
1829 return NULL;
1830
1831 spin_lock_init(&dma_dom->domain.lock);
1832
1833 dma_dom->domain.id = domain_id_alloc();
1834 if (dma_dom->domain.id == 0)
1835 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001836 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001837 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001838 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001839 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001840 dma_dom->domain.priv = dma_dom;
1841 if (!dma_dom->domain.pt_root)
1842 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001843
Joerg Roedel1c655772008-09-04 18:40:05 +02001844 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001845 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001846
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001847 add_domain_to_list(&dma_dom->domain);
1848
Joerg Roedel576175c2009-11-23 19:08:46 +01001849 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001850 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001851
Joerg Roedel431b2a22008-07-11 17:14:22 +02001852 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001853 * mark the first page as allocated so we never return 0 as
1854 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001855 */
Joerg Roedel384de722009-05-15 12:30:05 +02001856 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001857 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001858
Joerg Roedelec487d12008-06-26 21:27:58 +02001859
1860 return dma_dom;
1861
1862free_dma_dom:
1863 dma_ops_domain_free(dma_dom);
1864
1865 return NULL;
1866}
1867
Joerg Roedel431b2a22008-07-11 17:14:22 +02001868/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001869 * little helper function to check whether a given protection domain is a
1870 * dma_ops domain
1871 */
1872static bool dma_ops_domain(struct protection_domain *domain)
1873{
1874 return domain->flags & PD_DMA_OPS_MASK;
1875}
1876
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001877static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001878{
Joerg Roedel132bd682011-11-17 14:18:46 +01001879 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001880 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001881
Joerg Roedel132bd682011-11-17 14:18:46 +01001882 if (domain->mode != PAGE_MODE_NONE)
1883 pte_root = virt_to_phys(domain->pt_root);
1884
Joerg Roedel38ddf412008-09-11 10:38:32 +02001885 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1886 << DEV_ENTRY_MODE_SHIFT;
1887 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001888
Joerg Roedelee6c2862011-11-09 12:06:03 +01001889 flags = amd_iommu_dev_table[devid].data[1];
1890
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001891 if (ats)
1892 flags |= DTE_FLAG_IOTLB;
1893
Joerg Roedel52815b72011-11-17 17:24:28 +01001894 if (domain->flags & PD_IOMMUV2_MASK) {
1895 u64 gcr3 = __pa(domain->gcr3_tbl);
1896 u64 glx = domain->glx;
1897 u64 tmp;
1898
1899 pte_root |= DTE_FLAG_GV;
1900 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1901
1902 /* First mask out possible old values for GCR3 table */
1903 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1904 flags &= ~tmp;
1905
1906 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1907 flags &= ~tmp;
1908
1909 /* Encode GCR3 table into DTE */
1910 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1911 pte_root |= tmp;
1912
1913 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1914 flags |= tmp;
1915
1916 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1917 flags |= tmp;
1918 }
1919
Joerg Roedelee6c2862011-11-09 12:06:03 +01001920 flags &= ~(0xffffUL);
1921 flags |= domain->id;
1922
1923 amd_iommu_dev_table[devid].data[1] = flags;
1924 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001925}
1926
Joerg Roedel15898bb2009-11-24 15:39:42 +01001927static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001928{
Joerg Roedel355bf552008-12-08 12:02:41 +01001929 /* remove entry from the device table seen by the hardware */
1930 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1931 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001932
Joerg Roedelc5cca142009-10-09 18:31:20 +02001933 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001934}
1935
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001936static void do_attach(struct iommu_dev_data *dev_data,
1937 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001938{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001939 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001940 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001941
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001942 iommu = amd_iommu_rlookup_table[dev_data->devid];
1943 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001944
1945 /* Update data structures */
1946 dev_data->domain = domain;
1947 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001948 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001949
1950 /* Do reference counting */
1951 domain->dev_iommu[iommu->index] += 1;
1952 domain->dev_cnt += 1;
1953
1954 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001955 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001956}
1957
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001958static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001959{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001960 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001961
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001962 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001963
Joerg Roedelc4596112009-11-20 14:57:32 +01001964 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001965 dev_data->domain->dev_iommu[iommu->index] -= 1;
1966 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001967
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001968 /* Update data structures */
1969 dev_data->domain = NULL;
1970 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001971 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001972
1973 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001974 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001975}
1976
1977/*
1978 * If a device is not yet associated with a domain, this function does
1979 * assigns it visible for the hardware
1980 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001981static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001982 struct protection_domain *domain)
1983{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001984 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001985
Joerg Roedel15898bb2009-11-24 15:39:42 +01001986 /* lock domain */
1987 spin_lock(&domain->lock);
1988
Joerg Roedel71f77582011-06-09 19:03:15 +02001989 if (dev_data->alias_data != NULL) {
1990 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001991
Joerg Roedel2b02b092011-06-09 17:48:39 +02001992 /* Some sanity checks */
1993 ret = -EBUSY;
1994 if (alias_data->domain != NULL &&
1995 alias_data->domain != domain)
1996 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001997
Joerg Roedel2b02b092011-06-09 17:48:39 +02001998 if (dev_data->domain != NULL &&
1999 dev_data->domain != domain)
2000 goto out_unlock;
2001
2002 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002003 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002004 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002005
2006 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002007 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002008
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002009 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002010 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002011
Joerg Roedel24100052009-11-25 15:59:57 +01002012 atomic_inc(&dev_data->bind);
2013
Julia Lawall84fe6c12010-05-27 12:31:51 +02002014 ret = 0;
2015
2016out_unlock:
2017
Joerg Roedel355bf552008-12-08 12:02:41 +01002018 /* ready */
2019 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002020
Julia Lawall84fe6c12010-05-27 12:31:51 +02002021 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002022}
2023
Joerg Roedel52815b72011-11-17 17:24:28 +01002024
2025static void pdev_iommuv2_disable(struct pci_dev *pdev)
2026{
2027 pci_disable_ats(pdev);
2028 pci_disable_pri(pdev);
2029 pci_disable_pasid(pdev);
2030}
2031
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002032/* FIXME: Change generic reset-function to do the same */
2033static int pri_reset_while_enabled(struct pci_dev *pdev)
2034{
2035 u16 control;
2036 int pos;
2037
Joerg Roedel46277b72011-12-07 14:34:02 +01002038 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002039 if (!pos)
2040 return -EINVAL;
2041
Joerg Roedel46277b72011-12-07 14:34:02 +01002042 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2043 control |= PCI_PRI_CTRL_RESET;
2044 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002045
2046 return 0;
2047}
2048
Joerg Roedel52815b72011-11-17 17:24:28 +01002049static int pdev_iommuv2_enable(struct pci_dev *pdev)
2050{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002051 bool reset_enable;
2052 int reqs, ret;
2053
2054 /* FIXME: Hardcode number of outstanding requests for now */
2055 reqs = 32;
2056 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2057 reqs = 1;
2058 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002059
2060 /* Only allow access to user-accessible pages */
2061 ret = pci_enable_pasid(pdev, 0);
2062 if (ret)
2063 goto out_err;
2064
2065 /* First reset the PRI state of the device */
2066 ret = pci_reset_pri(pdev);
2067 if (ret)
2068 goto out_err;
2069
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002070 /* Enable PRI */
2071 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002072 if (ret)
2073 goto out_err;
2074
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002075 if (reset_enable) {
2076 ret = pri_reset_while_enabled(pdev);
2077 if (ret)
2078 goto out_err;
2079 }
2080
Joerg Roedel52815b72011-11-17 17:24:28 +01002081 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2082 if (ret)
2083 goto out_err;
2084
2085 return 0;
2086
2087out_err:
2088 pci_disable_pri(pdev);
2089 pci_disable_pasid(pdev);
2090
2091 return ret;
2092}
2093
Joerg Roedelc99afa22011-11-21 18:19:25 +01002094/* FIXME: Move this to PCI code */
Joerg Roedelf9a07f32012-04-12 12:49:26 +02002095#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002096
2097bool pci_pri_tlp_required(struct pci_dev *pdev)
2098{
Joerg Roedelf9a07f32012-04-12 12:49:26 +02002099 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002100 int pos;
2101
Joerg Roedel46277b72011-12-07 14:34:02 +01002102 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002103 if (!pos)
2104 return false;
2105
Joerg Roedelf9a07f32012-04-12 12:49:26 +02002106 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002107
Joerg Roedelf9a07f32012-04-12 12:49:26 +02002108 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002109}
2110
Joerg Roedel15898bb2009-11-24 15:39:42 +01002111/*
2112 * If a device is not yet associated with a domain, this function does
2113 * assigns it visible for the hardware
2114 */
2115static int attach_device(struct device *dev,
2116 struct protection_domain *domain)
2117{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002118 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002119 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002120 unsigned long flags;
2121 int ret;
2122
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002123 dev_data = get_dev_data(dev);
2124
Joerg Roedel52815b72011-11-17 17:24:28 +01002125 if (domain->flags & PD_IOMMUV2_MASK) {
2126 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2127 return -EINVAL;
2128
2129 if (pdev_iommuv2_enable(pdev) != 0)
2130 return -EINVAL;
2131
2132 dev_data->ats.enabled = true;
2133 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002134 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002135 } else if (amd_iommu_iotlb_sup &&
2136 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002137 dev_data->ats.enabled = true;
2138 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2139 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002140
Joerg Roedel15898bb2009-11-24 15:39:42 +01002141 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002142 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002143 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2144
2145 /*
2146 * We might boot into a crash-kernel here. The crashed kernel
2147 * left the caches in the IOMMU dirty. So we have to flush
2148 * here to evict all dirty stuff.
2149 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002150 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002151
2152 return ret;
2153}
2154
2155/*
2156 * Removes a device from a protection domain (unlocked)
2157 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002158static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002159{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002160 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002161 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002162
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002163 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002164
Joerg Roedel2ca76272010-01-22 16:45:31 +01002165 domain = dev_data->domain;
2166
2167 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002168
Joerg Roedel71f77582011-06-09 19:03:15 +02002169 if (dev_data->alias_data != NULL) {
2170 struct iommu_dev_data *alias_data = dev_data->alias_data;
2171
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002172 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002173 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002174 }
2175
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002176 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002177 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002178
Joerg Roedel2ca76272010-01-22 16:45:31 +01002179 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002180
Joerg Roedel21129f72009-09-01 11:59:42 +02002181 /*
2182 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002183 * passthrough domain if it is detached from any other domain.
2184 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002185 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002186 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002187 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002188 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002189}
2190
2191/*
2192 * Removes a device from a protection domain (with devtable_lock held)
2193 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002194static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002195{
Joerg Roedel52815b72011-11-17 17:24:28 +01002196 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002197 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002198 unsigned long flags;
2199
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002200 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002201 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002202
Joerg Roedel355bf552008-12-08 12:02:41 +01002203 /* lock device table */
2204 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002205 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002206 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002207
Joerg Roedel52815b72011-11-17 17:24:28 +01002208 if (domain->flags & PD_IOMMUV2_MASK)
2209 pdev_iommuv2_disable(to_pci_dev(dev));
2210 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002211 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002212
2213 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002214}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002215
Joerg Roedel15898bb2009-11-24 15:39:42 +01002216/*
2217 * Find out the protection domain structure for a given PCI device. This
2218 * will give us the pointer to the page table root for example.
2219 */
2220static struct protection_domain *domain_for_device(struct device *dev)
2221{
Joerg Roedel71f77582011-06-09 19:03:15 +02002222 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002223 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002224 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002225
Joerg Roedel657cbb62009-11-23 15:26:46 +01002226 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002227
Joerg Roedel2b02b092011-06-09 17:48:39 +02002228 if (dev_data->domain)
2229 return dev_data->domain;
2230
Joerg Roedel71f77582011-06-09 19:03:15 +02002231 if (dev_data->alias_data != NULL) {
2232 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002233
2234 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2235 if (alias_data->domain != NULL) {
2236 __attach_device(dev_data, alias_data->domain);
2237 dom = alias_data->domain;
2238 }
2239 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002240 }
2241
Joerg Roedel15898bb2009-11-24 15:39:42 +01002242 return dom;
2243}
2244
Joerg Roedele275a2a2008-12-10 18:27:25 +01002245static int device_change_notifier(struct notifier_block *nb,
2246 unsigned long action, void *data)
2247{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002248 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002249 struct protection_domain *domain;
2250 struct iommu_dev_data *dev_data;
2251 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002252 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002253 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002254 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002255
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002256 if (!check_device(dev))
2257 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002258
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002259 devid = get_device_id(dev);
2260 iommu = amd_iommu_rlookup_table[devid];
2261 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002262
2263 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002264 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002265
2266 domain = domain_for_device(dev);
2267
Joerg Roedele275a2a2008-12-10 18:27:25 +01002268 if (!domain)
2269 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002270 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002271 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002272 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002273 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002274 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002275
2276 iommu_init_device(dev);
2277
Joerg Roedel06e619c2012-07-19 13:42:54 +02002278 /*
2279 * dev_data is still NULL and
2280 * got initialized in iommu_init_device
2281 */
2282 dev_data = get_dev_data(dev);
2283
2284 if (iommu_pass_through || dev_data->iommu_v2) {
2285 dev_data->passthrough = true;
2286 attach_device(dev, pt_domain);
2287 break;
2288 }
2289
Joerg Roedel657cbb62009-11-23 15:26:46 +01002290 domain = domain_for_device(dev);
2291
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002292 /* allocate a protection domain if a device is added */
2293 dma_domain = find_protection_domain(devid);
Joerg Roedel2c0260b2013-03-26 22:48:23 +01002294 if (!dma_domain) {
2295 dma_domain = dma_ops_domain_alloc();
2296 if (!dma_domain)
2297 goto out;
2298 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002299
Joerg Roedel2c0260b2013-03-26 22:48:23 +01002300 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2301 list_add_tail(&dma_domain->list, &iommu_pd_list);
2302 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2303 }
Joerg Roedelb9e619e2012-06-21 14:52:40 +02002304
Joerg Roedel06e619c2012-07-19 13:42:54 +02002305 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelb9e619e2012-06-21 14:52:40 +02002306
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002307 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002308 case BUS_NOTIFY_DEL_DEVICE:
2309
2310 iommu_uninit_device(dev);
2311
Joerg Roedele275a2a2008-12-10 18:27:25 +01002312 default:
2313 goto out;
2314 }
2315
Joerg Roedele275a2a2008-12-10 18:27:25 +01002316 iommu_completion_wait(iommu);
2317
2318out:
2319 return 0;
2320}
2321
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302322static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002323 .notifier_call = device_change_notifier,
2324};
Joerg Roedel355bf552008-12-08 12:02:41 +01002325
Joerg Roedel8638c492009-12-10 11:12:25 +01002326void amd_iommu_init_notifier(void)
2327{
2328 bus_register_notifier(&pci_bus_type, &device_nb);
2329}
2330
Joerg Roedel431b2a22008-07-11 17:14:22 +02002331/*****************************************************************************
2332 *
2333 * The next functions belong to the dma_ops mapping/unmapping code.
2334 *
2335 *****************************************************************************/
2336
2337/*
2338 * In the dma_ops path we only have the struct device. This function
2339 * finds the corresponding IOMMU, the protection domain and the
2340 * requestor id for a given device.
2341 * If the device is not yet associated with a domain this is also done
2342 * in this function.
2343 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002344static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002345{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002346 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002347 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002348 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002349
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002350 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002351 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002352
Joerg Roedel94f6d192009-11-24 16:40:02 +01002353 domain = domain_for_device(dev);
2354 if (domain != NULL && !dma_ops_domain(domain))
2355 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002356
Joerg Roedel94f6d192009-11-24 16:40:02 +01002357 if (domain != NULL)
2358 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002359
Joerg Roedel15898bb2009-11-24 15:39:42 +01002360 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002361 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002362 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002363 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2364 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002365 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002366 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002367
Joerg Roedel94f6d192009-11-24 16:40:02 +01002368 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002369}
2370
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002371static void update_device_table(struct protection_domain *domain)
2372{
Joerg Roedel492667d2009-11-27 13:25:47 +01002373 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002374
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002375 list_for_each_entry(dev_data, &domain->dev_list, list)
2376 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002377}
2378
2379static void update_domain(struct protection_domain *domain)
2380{
2381 if (!domain->updated)
2382 return;
2383
2384 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002385
2386 domain_flush_devices(domain);
2387 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002388
2389 domain->updated = false;
2390}
2391
Joerg Roedel431b2a22008-07-11 17:14:22 +02002392/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002393 * This function fetches the PTE for a given address in the aperture
2394 */
2395static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2396 unsigned long address)
2397{
Joerg Roedel384de722009-05-15 12:30:05 +02002398 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002399 u64 *pte, *pte_page;
2400
Joerg Roedel384de722009-05-15 12:30:05 +02002401 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2402 if (!aperture)
2403 return NULL;
2404
2405 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002406 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002407 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002408 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002409 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2410 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002411 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002412
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002413 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002414
2415 return pte;
2416}
2417
2418/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002419 * This is the generic map function. It maps one 4kb page at paddr to
2420 * the given address in the DMA address space for the domain.
2421 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002422static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002423 unsigned long address,
2424 phys_addr_t paddr,
2425 int direction)
2426{
2427 u64 *pte, __pte;
2428
2429 WARN_ON(address > dom->aperture_size);
2430
2431 paddr &= PAGE_MASK;
2432
Joerg Roedel8bda3092009-05-12 12:02:46 +02002433 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002434 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002435 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002436
2437 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2438
2439 if (direction == DMA_TO_DEVICE)
2440 __pte |= IOMMU_PTE_IR;
2441 else if (direction == DMA_FROM_DEVICE)
2442 __pte |= IOMMU_PTE_IW;
2443 else if (direction == DMA_BIDIRECTIONAL)
2444 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2445
2446 WARN_ON(*pte);
2447
2448 *pte = __pte;
2449
2450 return (dma_addr_t)address;
2451}
2452
Joerg Roedel431b2a22008-07-11 17:14:22 +02002453/*
2454 * The generic unmapping function for on page in the DMA address space.
2455 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002456static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002457 unsigned long address)
2458{
Joerg Roedel384de722009-05-15 12:30:05 +02002459 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002460 u64 *pte;
2461
2462 if (address >= dom->aperture_size)
2463 return;
2464
Joerg Roedel384de722009-05-15 12:30:05 +02002465 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2466 if (!aperture)
2467 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002468
Joerg Roedel384de722009-05-15 12:30:05 +02002469 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2470 if (!pte)
2471 return;
2472
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002473 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002474
2475 WARN_ON(!*pte);
2476
2477 *pte = 0ULL;
2478}
2479
Joerg Roedel431b2a22008-07-11 17:14:22 +02002480/*
2481 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002482 * contiguous memory region into DMA address space. It is used by all
2483 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002484 * Must be called with the domain lock held.
2485 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002486static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002487 struct dma_ops_domain *dma_dom,
2488 phys_addr_t paddr,
2489 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002490 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002491 bool align,
2492 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002493{
2494 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002495 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002496 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002497 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002498 int i;
2499
Joerg Roedele3c449f2008-10-15 22:02:11 -07002500 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002501 paddr &= PAGE_MASK;
2502
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002503 INC_STATS_COUNTER(total_map_requests);
2504
Joerg Roedelc1858972008-12-12 15:42:39 +01002505 if (pages > 1)
2506 INC_STATS_COUNTER(cross_page);
2507
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002508 if (align)
2509 align_mask = (1UL << get_order(size)) - 1;
2510
Joerg Roedel11b83882009-05-19 10:23:15 +02002511retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002512 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2513 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002514 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002515 /*
2516 * setting next_address here will let the address
2517 * allocator only scan the new allocated range in the
2518 * first run. This is a small optimization.
2519 */
2520 dma_dom->next_address = dma_dom->aperture_size;
2521
Joerg Roedel576175c2009-11-23 19:08:46 +01002522 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002523 goto out;
2524
2525 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002526 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002527 * allocation again
2528 */
2529 goto retry;
2530 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002531
2532 start = address;
2533 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002534 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002535 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002536 goto out_unmap;
2537
Joerg Roedelcb76c322008-06-26 21:28:00 +02002538 paddr += PAGE_SIZE;
2539 start += PAGE_SIZE;
2540 }
2541 address += offset;
2542
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002543 ADD_STATS_COUNTER(alloced_io_mem, size);
2544
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002545 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002546 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002547 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002548 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002549 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002550
Joerg Roedelcb76c322008-06-26 21:28:00 +02002551out:
2552 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002553
2554out_unmap:
2555
2556 for (--i; i >= 0; --i) {
2557 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002558 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002559 }
2560
2561 dma_ops_free_addresses(dma_dom, address, pages);
2562
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002563 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002564}
2565
Joerg Roedel431b2a22008-07-11 17:14:22 +02002566/*
2567 * Does the reverse of the __map_single function. Must be called with
2568 * the domain lock held too
2569 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002570static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002571 dma_addr_t dma_addr,
2572 size_t size,
2573 int dir)
2574{
Joerg Roedel04e04632010-09-23 16:12:48 +02002575 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002576 dma_addr_t i, start;
2577 unsigned int pages;
2578
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002579 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002580 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002581 return;
2582
Joerg Roedel04e04632010-09-23 16:12:48 +02002583 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002584 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002585 dma_addr &= PAGE_MASK;
2586 start = dma_addr;
2587
2588 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002589 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002590 start += PAGE_SIZE;
2591 }
2592
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002593 SUB_STATS_COUNTER(alloced_io_mem, size);
2594
Joerg Roedelcb76c322008-06-26 21:28:00 +02002595 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002596
Joerg Roedel80be3082008-11-06 14:59:05 +01002597 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002598 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002599 dma_dom->need_flush = false;
2600 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002601}
2602
Joerg Roedel431b2a22008-07-11 17:14:22 +02002603/*
2604 * The exported map_single function for dma_ops.
2605 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002606static dma_addr_t map_page(struct device *dev, struct page *page,
2607 unsigned long offset, size_t size,
2608 enum dma_data_direction dir,
2609 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002610{
2611 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002612 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002613 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002614 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002615 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002616
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002617 INC_STATS_COUNTER(cnt_map_single);
2618
Joerg Roedel94f6d192009-11-24 16:40:02 +01002619 domain = get_domain(dev);
2620 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002621 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002622 else if (IS_ERR(domain))
2623 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002624
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002625 dma_mask = *dev->dma_mask;
2626
Joerg Roedel4da70b92008-06-26 21:28:01 +02002627 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002628
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002629 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002630 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002631 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002632 goto out;
2633
Joerg Roedel17b124b2011-04-06 18:01:35 +02002634 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002635
2636out:
2637 spin_unlock_irqrestore(&domain->lock, flags);
2638
2639 return addr;
2640}
2641
Joerg Roedel431b2a22008-07-11 17:14:22 +02002642/*
2643 * The exported unmap_single function for dma_ops.
2644 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002645static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2646 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002647{
2648 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002649 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002650
Joerg Roedel146a6912008-12-12 15:07:12 +01002651 INC_STATS_COUNTER(cnt_unmap_single);
2652
Joerg Roedel94f6d192009-11-24 16:40:02 +01002653 domain = get_domain(dev);
2654 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002655 return;
2656
Joerg Roedel4da70b92008-06-26 21:28:01 +02002657 spin_lock_irqsave(&domain->lock, flags);
2658
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002659 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002660
Joerg Roedel17b124b2011-04-06 18:01:35 +02002661 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002662
2663 spin_unlock_irqrestore(&domain->lock, flags);
2664}
2665
Joerg Roedel431b2a22008-07-11 17:14:22 +02002666/*
2667 * This is a special map_sg function which is used if we should map a
2668 * device which is not handled by an AMD IOMMU in the system.
2669 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002670static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2671 int nelems, int dir)
2672{
2673 struct scatterlist *s;
2674 int i;
2675
2676 for_each_sg(sglist, s, nelems, i) {
2677 s->dma_address = (dma_addr_t)sg_phys(s);
2678 s->dma_length = s->length;
2679 }
2680
2681 return nelems;
2682}
2683
Joerg Roedel431b2a22008-07-11 17:14:22 +02002684/*
2685 * The exported map_sg function for dma_ops (handles scatter-gather
2686 * lists).
2687 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002688static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002689 int nelems, enum dma_data_direction dir,
2690 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002691{
2692 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002693 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002694 int i;
2695 struct scatterlist *s;
2696 phys_addr_t paddr;
2697 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002698 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002699
Joerg Roedeld03f0672008-12-12 15:09:48 +01002700 INC_STATS_COUNTER(cnt_map_sg);
2701
Joerg Roedel94f6d192009-11-24 16:40:02 +01002702 domain = get_domain(dev);
2703 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002704 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002705 else if (IS_ERR(domain))
2706 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002707
Joerg Roedel832a90c2008-09-18 15:54:23 +02002708 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002709
Joerg Roedel65b050a2008-06-26 21:28:02 +02002710 spin_lock_irqsave(&domain->lock, flags);
2711
2712 for_each_sg(sglist, s, nelems, i) {
2713 paddr = sg_phys(s);
2714
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002715 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002716 paddr, s->length, dir, false,
2717 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002718
2719 if (s->dma_address) {
2720 s->dma_length = s->length;
2721 mapped_elems++;
2722 } else
2723 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002724 }
2725
Joerg Roedel17b124b2011-04-06 18:01:35 +02002726 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002727
2728out:
2729 spin_unlock_irqrestore(&domain->lock, flags);
2730
2731 return mapped_elems;
2732unmap:
2733 for_each_sg(sglist, s, mapped_elems, i) {
2734 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002735 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002736 s->dma_length, dir);
2737 s->dma_address = s->dma_length = 0;
2738 }
2739
2740 mapped_elems = 0;
2741
2742 goto out;
2743}
2744
Joerg Roedel431b2a22008-07-11 17:14:22 +02002745/*
2746 * The exported map_sg function for dma_ops (handles scatter-gather
2747 * lists).
2748 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002749static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002750 int nelems, enum dma_data_direction dir,
2751 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002752{
2753 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002754 struct protection_domain *domain;
2755 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002756 int i;
2757
Joerg Roedel55877a62008-12-12 15:12:14 +01002758 INC_STATS_COUNTER(cnt_unmap_sg);
2759
Joerg Roedel94f6d192009-11-24 16:40:02 +01002760 domain = get_domain(dev);
2761 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002762 return;
2763
Joerg Roedel65b050a2008-06-26 21:28:02 +02002764 spin_lock_irqsave(&domain->lock, flags);
2765
2766 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002767 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002768 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002769 s->dma_address = s->dma_length = 0;
2770 }
2771
Joerg Roedel17b124b2011-04-06 18:01:35 +02002772 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002773
2774 spin_unlock_irqrestore(&domain->lock, flags);
2775}
2776
Joerg Roedel431b2a22008-07-11 17:14:22 +02002777/*
2778 * The exported alloc_coherent function for dma_ops.
2779 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002780static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002781 dma_addr_t *dma_addr, gfp_t flag,
2782 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002783{
2784 unsigned long flags;
2785 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002786 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002787 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002788 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002789
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002790 INC_STATS_COUNTER(cnt_alloc_coherent);
2791
Joerg Roedel94f6d192009-11-24 16:40:02 +01002792 domain = get_domain(dev);
2793 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002794 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2795 *dma_addr = __pa(virt_addr);
2796 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002797 } else if (IS_ERR(domain))
2798 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002799
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002800 dma_mask = dev->coherent_dma_mask;
2801 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2802 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002803
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002804 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2805 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302806 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002807
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002808 paddr = virt_to_phys(virt_addr);
2809
Joerg Roedel832a90c2008-09-18 15:54:23 +02002810 if (!dma_mask)
2811 dma_mask = *dev->dma_mask;
2812
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002813 spin_lock_irqsave(&domain->lock, flags);
2814
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002815 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002816 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002817
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002818 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002819 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002820 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002821 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002822
Joerg Roedel17b124b2011-04-06 18:01:35 +02002823 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002824
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002825 spin_unlock_irqrestore(&domain->lock, flags);
2826
2827 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002828
2829out_free:
2830
2831 free_pages((unsigned long)virt_addr, get_order(size));
2832
2833 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002834}
2835
Joerg Roedel431b2a22008-07-11 17:14:22 +02002836/*
2837 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002838 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002839static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002840 void *virt_addr, dma_addr_t dma_addr,
2841 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002842{
2843 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002844 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002845
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002846 INC_STATS_COUNTER(cnt_free_coherent);
2847
Joerg Roedel94f6d192009-11-24 16:40:02 +01002848 domain = get_domain(dev);
2849 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002850 goto free_mem;
2851
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002852 spin_lock_irqsave(&domain->lock, flags);
2853
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002854 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002855
Joerg Roedel17b124b2011-04-06 18:01:35 +02002856 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002857
2858 spin_unlock_irqrestore(&domain->lock, flags);
2859
2860free_mem:
2861 free_pages((unsigned long)virt_addr, get_order(size));
2862}
2863
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002864/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002865 * This function is called by the DMA layer to find out if we can handle a
2866 * particular device. It is part of the dma_ops.
2867 */
2868static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2869{
Joerg Roedel420aef82009-11-23 16:14:57 +01002870 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002871}
2872
2873/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002874 * The function for pre-allocating protection domains.
2875 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002876 * If the driver core informs the DMA layer if a driver grabs a device
2877 * we don't need to preallocate the protection domains anymore.
2878 * For now we have to.
2879 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002880static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002881{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002882 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002883 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002884 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002885 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002886
Chris Wrightd18c69d2010-04-02 18:27:55 -07002887 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002888
2889 /* Do we handle this device? */
2890 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002891 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002892
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002893 dev_data = get_dev_data(&dev->dev);
2894 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2895 /* Make sure passthrough domain is allocated */
2896 alloc_passthrough_domain();
2897 dev_data->passthrough = true;
2898 attach_device(&dev->dev, pt_domain);
2899 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2900 dev_name(&dev->dev));
2901 }
2902
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002903 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002904 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002905 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002906
2907 devid = get_device_id(&dev->dev);
2908
Joerg Roedel87a64d52009-11-24 17:26:43 +01002909 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002910 if (!dma_dom)
2911 continue;
2912 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002913 dma_dom->target_dev = devid;
2914
Joerg Roedel15898bb2009-11-24 15:39:42 +01002915 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002916
Joerg Roedelbd60b732008-09-11 10:24:48 +02002917 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002918 }
2919}
2920
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002921static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002922 .alloc = alloc_coherent,
2923 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002924 .map_page = map_page,
2925 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002926 .map_sg = map_sg,
2927 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002928 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002929};
2930
Joerg Roedel27c21272011-05-30 15:56:24 +02002931static unsigned device_dma_ops_init(void)
2932{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002933 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002934 struct pci_dev *pdev = NULL;
2935 unsigned unhandled = 0;
2936
2937 for_each_pci_dev(pdev) {
2938 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002939
2940 iommu_ignore_device(&pdev->dev);
2941
Joerg Roedel27c21272011-05-30 15:56:24 +02002942 unhandled += 1;
2943 continue;
2944 }
2945
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002946 dev_data = get_dev_data(&pdev->dev);
2947
2948 if (!dev_data->passthrough)
2949 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2950 else
2951 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002952 }
2953
2954 return unhandled;
2955}
2956
Joerg Roedel431b2a22008-07-11 17:14:22 +02002957/*
2958 * The function which clues the AMD IOMMU driver into dma_ops.
2959 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002960
2961void __init amd_iommu_init_api(void)
2962{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002963 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002964}
2965
Joerg Roedel6631ee92008-06-26 21:28:05 +02002966int __init amd_iommu_init_dma_ops(void)
2967{
2968 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002969 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002970
Joerg Roedel431b2a22008-07-11 17:14:22 +02002971 /*
2972 * first allocate a default protection domain for every IOMMU we
2973 * found in the system. Devices not assigned to any other
2974 * protection domain will be assigned to the default one.
2975 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002976 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002977 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002978 if (iommu->default_dom == NULL)
2979 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002980 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002981 ret = iommu_init_unity_mappings(iommu);
2982 if (ret)
2983 goto free_domains;
2984 }
2985
Joerg Roedel431b2a22008-07-11 17:14:22 +02002986 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002987 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002988 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002989 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002990
2991 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002992 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002993
Joerg Roedel431b2a22008-07-11 17:14:22 +02002994 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002995 unhandled = device_dma_ops_init();
2996 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2997 /* There are unhandled devices - initialize swiotlb for them */
2998 swiotlb = 1;
2999 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003000
Joerg Roedel7f265082008-12-12 13:50:21 +01003001 amd_iommu_stats_init();
3002
Joerg Roedel6631ee92008-06-26 21:28:05 +02003003 return 0;
3004
3005free_domains:
3006
Joerg Roedel3bd22172009-05-04 15:06:20 +02003007 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02003008 if (iommu->default_dom)
3009 dma_ops_domain_free(iommu->default_dom);
3010 }
3011
3012 return ret;
3013}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003014
3015/*****************************************************************************
3016 *
3017 * The following functions belong to the exported interface of AMD IOMMU
3018 *
3019 * This interface allows access to lower level functions of the IOMMU
3020 * like protection domain handling and assignement of devices to domains
3021 * which is not possible with the dma_ops interface.
3022 *
3023 *****************************************************************************/
3024
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003025static void cleanup_domain(struct protection_domain *domain)
3026{
Joerg Roedel492667d2009-11-27 13:25:47 +01003027 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003028 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003029
3030 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3031
Joerg Roedel492667d2009-11-27 13:25:47 +01003032 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003033 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003034 atomic_set(&dev_data->bind, 0);
3035 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003036
3037 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3038}
3039
Joerg Roedel26508152009-08-26 16:52:40 +02003040static void protection_domain_free(struct protection_domain *domain)
3041{
3042 if (!domain)
3043 return;
3044
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003045 del_domain_from_list(domain);
3046
Joerg Roedel26508152009-08-26 16:52:40 +02003047 if (domain->id)
3048 domain_id_free(domain->id);
3049
3050 kfree(domain);
3051}
3052
3053static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003054{
3055 struct protection_domain *domain;
3056
3057 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3058 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003059 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003060
3061 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003062 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003063 domain->id = domain_id_alloc();
3064 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003065 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003066 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003067
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003068 add_domain_to_list(domain);
3069
Joerg Roedel26508152009-08-26 16:52:40 +02003070 return domain;
3071
3072out_err:
3073 kfree(domain);
3074
3075 return NULL;
3076}
3077
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003078static int __init alloc_passthrough_domain(void)
3079{
3080 if (pt_domain != NULL)
3081 return 0;
3082
3083 /* allocate passthrough domain */
3084 pt_domain = protection_domain_alloc();
3085 if (!pt_domain)
3086 return -ENOMEM;
3087
3088 pt_domain->mode = PAGE_MODE_NONE;
3089
3090 return 0;
3091}
Joerg Roedel26508152009-08-26 16:52:40 +02003092static int amd_iommu_domain_init(struct iommu_domain *dom)
3093{
3094 struct protection_domain *domain;
3095
3096 domain = protection_domain_alloc();
3097 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003098 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003099
3100 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003101 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3102 if (!domain->pt_root)
3103 goto out_free;
3104
Joerg Roedelf3572db2011-11-23 12:36:25 +01003105 domain->iommu_domain = dom;
3106
Joerg Roedelc156e342008-12-02 18:13:27 +01003107 dom->priv = domain;
3108
3109 return 0;
3110
3111out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003112 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003113
3114 return -ENOMEM;
3115}
3116
Joerg Roedel98383fc2008-12-02 18:34:12 +01003117static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3118{
3119 struct protection_domain *domain = dom->priv;
3120
3121 if (!domain)
3122 return;
3123
3124 if (domain->dev_cnt > 0)
3125 cleanup_domain(domain);
3126
3127 BUG_ON(domain->dev_cnt != 0);
3128
Joerg Roedel132bd682011-11-17 14:18:46 +01003129 if (domain->mode != PAGE_MODE_NONE)
3130 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003131
Joerg Roedel52815b72011-11-17 17:24:28 +01003132 if (domain->flags & PD_IOMMUV2_MASK)
3133 free_gcr3_table(domain);
3134
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003135 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003136
3137 dom->priv = NULL;
3138}
3139
Joerg Roedel684f2882008-12-08 12:07:44 +01003140static void amd_iommu_detach_device(struct iommu_domain *dom,
3141 struct device *dev)
3142{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003143 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003144 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003145 u16 devid;
3146
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003147 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003148 return;
3149
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003150 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003151
Joerg Roedel657cbb62009-11-23 15:26:46 +01003152 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003153 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003154
3155 iommu = amd_iommu_rlookup_table[devid];
3156 if (!iommu)
3157 return;
3158
Joerg Roedel684f2882008-12-08 12:07:44 +01003159 iommu_completion_wait(iommu);
3160}
3161
Joerg Roedel01106062008-12-02 19:34:11 +01003162static int amd_iommu_attach_device(struct iommu_domain *dom,
3163 struct device *dev)
3164{
3165 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003166 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003167 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003168 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003169
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003170 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003171 return -EINVAL;
3172
Joerg Roedel657cbb62009-11-23 15:26:46 +01003173 dev_data = dev->archdata.iommu;
3174
Joerg Roedelf62dda62011-06-09 12:55:35 +02003175 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003176 if (!iommu)
3177 return -EINVAL;
3178
Joerg Roedel657cbb62009-11-23 15:26:46 +01003179 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003180 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003181
Joerg Roedel15898bb2009-11-24 15:39:42 +01003182 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003183
3184 iommu_completion_wait(iommu);
3185
Joerg Roedel15898bb2009-11-24 15:39:42 +01003186 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003187}
3188
Joerg Roedel468e2362010-01-21 16:37:36 +01003189static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003190 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003191{
3192 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003193 int prot = 0;
3194 int ret;
3195
Joerg Roedel132bd682011-11-17 14:18:46 +01003196 if (domain->mode == PAGE_MODE_NONE)
3197 return -EINVAL;
3198
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003199 if (iommu_prot & IOMMU_READ)
3200 prot |= IOMMU_PROT_IR;
3201 if (iommu_prot & IOMMU_WRITE)
3202 prot |= IOMMU_PROT_IW;
3203
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003204 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003205 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003206 mutex_unlock(&domain->api_lock);
3207
Joerg Roedel795e74f2010-05-11 17:40:57 +02003208 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003209}
3210
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003211static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3212 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003213{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003214 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003215 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003216
Joerg Roedel132bd682011-11-17 14:18:46 +01003217 if (domain->mode == PAGE_MODE_NONE)
3218 return -EINVAL;
3219
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003220 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003221 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003222 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003223
Joerg Roedel17b124b2011-04-06 18:01:35 +02003224 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003225
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003226 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003227}
3228
Joerg Roedel645c4c82008-12-02 20:05:50 +01003229static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3230 unsigned long iova)
3231{
3232 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003233 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003234 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003235 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003236
Joerg Roedel132bd682011-11-17 14:18:46 +01003237 if (domain->mode == PAGE_MODE_NONE)
3238 return iova;
3239
Joerg Roedel24cd7722010-01-19 17:27:39 +01003240 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003241
Joerg Roedela6d41a42009-09-02 17:08:55 +02003242 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003243 return 0;
3244
Joerg Roedelf03152b2010-01-21 16:15:24 +01003245 if (PM_PTE_LEVEL(*pte) == 0)
3246 offset_mask = PAGE_SIZE - 1;
3247 else
3248 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3249
3250 __pte = *pte & PM_ADDR_MASK;
3251 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003252
3253 return paddr;
3254}
3255
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003256static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3257 unsigned long cap)
3258{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003259 switch (cap) {
3260 case IOMMU_CAP_CACHE_COHERENCY:
3261 return 1;
3262 }
3263
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003264 return 0;
3265}
3266
Alex Williamson8fbdce62011-10-21 15:56:18 -04003267static int amd_iommu_device_group(struct device *dev, unsigned int *groupid)
3268{
3269 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003270 struct pci_dev *pdev = to_pci_dev(dev);
3271 u16 devid;
Alex Williamson8fbdce62011-10-21 15:56:18 -04003272
3273 if (!dev_data)
3274 return -ENODEV;
3275
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003276 if (pdev->is_virtfn || !iommu_group_mf)
3277 devid = dev_data->devid;
3278 else
3279 devid = calc_devid(pdev->bus->number,
3280 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
3281
3282 *groupid = amd_iommu_alias_table[devid];
Alex Williamson8fbdce62011-10-21 15:56:18 -04003283
3284 return 0;
3285}
3286
Joerg Roedel26961ef2008-12-03 17:00:17 +01003287static struct iommu_ops amd_iommu_ops = {
3288 .domain_init = amd_iommu_domain_init,
3289 .domain_destroy = amd_iommu_domain_destroy,
3290 .attach_dev = amd_iommu_attach_device,
3291 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003292 .map = amd_iommu_map,
3293 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003294 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003295 .domain_has_cap = amd_iommu_domain_has_cap,
Alex Williamson8fbdce62011-10-21 15:56:18 -04003296 .device_group = amd_iommu_device_group,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003297 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003298};
3299
Joerg Roedel0feae532009-08-26 15:26:30 +02003300/*****************************************************************************
3301 *
3302 * The next functions do a basic initialization of IOMMU for pass through
3303 * mode
3304 *
3305 * In passthrough mode the IOMMU is initialized and enabled but not used for
3306 * DMA-API translation.
3307 *
3308 *****************************************************************************/
3309
3310int __init amd_iommu_init_passthrough(void)
3311{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003312 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003313 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003314 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003315 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003316 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003317
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003318 ret = alloc_passthrough_domain();
3319 if (ret)
3320 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003321
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003322 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003323 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003324 continue;
3325
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003326 dev_data = get_dev_data(&dev->dev);
3327 dev_data->passthrough = true;
3328
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003329 devid = get_device_id(&dev->dev);
3330
Joerg Roedel15898bb2009-11-24 15:39:42 +01003331 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003332 if (!iommu)
3333 continue;
3334
Joerg Roedel15898bb2009-11-24 15:39:42 +01003335 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003336 }
3337
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003338 amd_iommu_stats_init();
3339
Joerg Roedel0feae532009-08-26 15:26:30 +02003340 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3341
3342 return 0;
3343}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003344
3345/* IOMMUv2 specific functions */
3346int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3347{
3348 return atomic_notifier_chain_register(&ppr_notifier, nb);
3349}
3350EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3351
3352int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3353{
3354 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3355}
3356EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003357
3358void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3359{
3360 struct protection_domain *domain = dom->priv;
3361 unsigned long flags;
3362
3363 spin_lock_irqsave(&domain->lock, flags);
3364
3365 /* Update data structure */
3366 domain->mode = PAGE_MODE_NONE;
3367 domain->updated = true;
3368
3369 /* Make changes visible to IOMMUs */
3370 update_domain(domain);
3371
3372 /* Page-table is not visible to IOMMU anymore, so free it */
3373 free_pagetable(domain);
3374
3375 spin_unlock_irqrestore(&domain->lock, flags);
3376}
3377EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003378
3379int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3380{
3381 struct protection_domain *domain = dom->priv;
3382 unsigned long flags;
3383 int levels, ret;
3384
3385 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3386 return -EINVAL;
3387
3388 /* Number of GCR3 table levels required */
3389 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3390 levels += 1;
3391
3392 if (levels > amd_iommu_max_glx_val)
3393 return -EINVAL;
3394
3395 spin_lock_irqsave(&domain->lock, flags);
3396
3397 /*
3398 * Save us all sanity checks whether devices already in the
3399 * domain support IOMMUv2. Just force that the domain has no
3400 * devices attached when it is switched into IOMMUv2 mode.
3401 */
3402 ret = -EBUSY;
3403 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3404 goto out;
3405
3406 ret = -ENOMEM;
3407 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3408 if (domain->gcr3_tbl == NULL)
3409 goto out;
3410
3411 domain->glx = levels;
3412 domain->flags |= PD_IOMMUV2_MASK;
3413 domain->updated = true;
3414
3415 update_domain(domain);
3416
3417 ret = 0;
3418
3419out:
3420 spin_unlock_irqrestore(&domain->lock, flags);
3421
3422 return ret;
3423}
3424EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003425
3426static int __flush_pasid(struct protection_domain *domain, int pasid,
3427 u64 address, bool size)
3428{
3429 struct iommu_dev_data *dev_data;
3430 struct iommu_cmd cmd;
3431 int i, ret;
3432
3433 if (!(domain->flags & PD_IOMMUV2_MASK))
3434 return -EINVAL;
3435
3436 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3437
3438 /*
3439 * IOMMU TLB needs to be flushed before Device TLB to
3440 * prevent device TLB refill from IOMMU TLB
3441 */
3442 for (i = 0; i < amd_iommus_present; ++i) {
3443 if (domain->dev_iommu[i] == 0)
3444 continue;
3445
3446 ret = iommu_queue_command(amd_iommus[i], &cmd);
3447 if (ret != 0)
3448 goto out;
3449 }
3450
3451 /* Wait until IOMMU TLB flushes are complete */
3452 domain_flush_complete(domain);
3453
3454 /* Now flush device TLBs */
3455 list_for_each_entry(dev_data, &domain->dev_list, list) {
3456 struct amd_iommu *iommu;
3457 int qdep;
3458
3459 BUG_ON(!dev_data->ats.enabled);
3460
3461 qdep = dev_data->ats.qdep;
3462 iommu = amd_iommu_rlookup_table[dev_data->devid];
3463
3464 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3465 qdep, address, size);
3466
3467 ret = iommu_queue_command(iommu, &cmd);
3468 if (ret != 0)
3469 goto out;
3470 }
3471
3472 /* Wait until all device TLBs are flushed */
3473 domain_flush_complete(domain);
3474
3475 ret = 0;
3476
3477out:
3478
3479 return ret;
3480}
3481
3482static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3483 u64 address)
3484{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003485 INC_STATS_COUNTER(invalidate_iotlb);
3486
Joerg Roedel22e266c2011-11-21 15:59:08 +01003487 return __flush_pasid(domain, pasid, address, false);
3488}
3489
3490int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3491 u64 address)
3492{
3493 struct protection_domain *domain = dom->priv;
3494 unsigned long flags;
3495 int ret;
3496
3497 spin_lock_irqsave(&domain->lock, flags);
3498 ret = __amd_iommu_flush_page(domain, pasid, address);
3499 spin_unlock_irqrestore(&domain->lock, flags);
3500
3501 return ret;
3502}
3503EXPORT_SYMBOL(amd_iommu_flush_page);
3504
3505static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3506{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003507 INC_STATS_COUNTER(invalidate_iotlb_all);
3508
Joerg Roedel22e266c2011-11-21 15:59:08 +01003509 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3510 true);
3511}
3512
3513int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3514{
3515 struct protection_domain *domain = dom->priv;
3516 unsigned long flags;
3517 int ret;
3518
3519 spin_lock_irqsave(&domain->lock, flags);
3520 ret = __amd_iommu_flush_tlb(domain, pasid);
3521 spin_unlock_irqrestore(&domain->lock, flags);
3522
3523 return ret;
3524}
3525EXPORT_SYMBOL(amd_iommu_flush_tlb);
3526
Joerg Roedelb16137b2011-11-21 16:50:23 +01003527static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3528{
3529 int index;
3530 u64 *pte;
3531
3532 while (true) {
3533
3534 index = (pasid >> (9 * level)) & 0x1ff;
3535 pte = &root[index];
3536
3537 if (level == 0)
3538 break;
3539
3540 if (!(*pte & GCR3_VALID)) {
3541 if (!alloc)
3542 return NULL;
3543
3544 root = (void *)get_zeroed_page(GFP_ATOMIC);
3545 if (root == NULL)
3546 return NULL;
3547
3548 *pte = __pa(root) | GCR3_VALID;
3549 }
3550
3551 root = __va(*pte & PAGE_MASK);
3552
3553 level -= 1;
3554 }
3555
3556 return pte;
3557}
3558
3559static int __set_gcr3(struct protection_domain *domain, int pasid,
3560 unsigned long cr3)
3561{
3562 u64 *pte;
3563
3564 if (domain->mode != PAGE_MODE_NONE)
3565 return -EINVAL;
3566
3567 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3568 if (pte == NULL)
3569 return -ENOMEM;
3570
3571 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3572
3573 return __amd_iommu_flush_tlb(domain, pasid);
3574}
3575
3576static int __clear_gcr3(struct protection_domain *domain, int pasid)
3577{
3578 u64 *pte;
3579
3580 if (domain->mode != PAGE_MODE_NONE)
3581 return -EINVAL;
3582
3583 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3584 if (pte == NULL)
3585 return 0;
3586
3587 *pte = 0;
3588
3589 return __amd_iommu_flush_tlb(domain, pasid);
3590}
3591
3592int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3593 unsigned long cr3)
3594{
3595 struct protection_domain *domain = dom->priv;
3596 unsigned long flags;
3597 int ret;
3598
3599 spin_lock_irqsave(&domain->lock, flags);
3600 ret = __set_gcr3(domain, pasid, cr3);
3601 spin_unlock_irqrestore(&domain->lock, flags);
3602
3603 return ret;
3604}
3605EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3606
3607int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3608{
3609 struct protection_domain *domain = dom->priv;
3610 unsigned long flags;
3611 int ret;
3612
3613 spin_lock_irqsave(&domain->lock, flags);
3614 ret = __clear_gcr3(domain, pasid);
3615 spin_unlock_irqrestore(&domain->lock, flags);
3616
3617 return ret;
3618}
3619EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003620
3621int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3622 int status, int tag)
3623{
3624 struct iommu_dev_data *dev_data;
3625 struct amd_iommu *iommu;
3626 struct iommu_cmd cmd;
3627
Joerg Roedel399be2f2011-12-01 16:53:47 +01003628 INC_STATS_COUNTER(complete_ppr);
3629
Joerg Roedelc99afa22011-11-21 18:19:25 +01003630 dev_data = get_dev_data(&pdev->dev);
3631 iommu = amd_iommu_rlookup_table[dev_data->devid];
3632
3633 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3634 tag, dev_data->pri_tlp);
3635
3636 return iommu_queue_command(iommu, &cmd);
3637}
3638EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003639
3640struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3641{
3642 struct protection_domain *domain;
3643
3644 domain = get_domain(&pdev->dev);
3645 if (IS_ERR(domain))
3646 return NULL;
3647
3648 /* Only return IOMMUv2 domains */
3649 if (!(domain->flags & PD_IOMMUV2_MASK))
3650 return NULL;
3651
3652 return domain->iommu_domain;
3653}
3654EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003655
3656void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3657{
3658 struct iommu_dev_data *dev_data;
3659
3660 if (!amd_iommu_v2_supported())
3661 return;
3662
3663 dev_data = get_dev_data(&pdev->dev);
3664 dev_data->errata |= (1 << erratum);
3665}
3666EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003667
3668int amd_iommu_device_info(struct pci_dev *pdev,
3669 struct amd_iommu_device_info *info)
3670{
3671 int max_pasids;
3672 int pos;
3673
3674 if (pdev == NULL || info == NULL)
3675 return -EINVAL;
3676
3677 if (!amd_iommu_v2_supported())
3678 return -EINVAL;
3679
3680 memset(info, 0, sizeof(*info));
3681
3682 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3683 if (pos)
3684 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3685
3686 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3687 if (pos)
3688 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3689
3690 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3691 if (pos) {
3692 int features;
3693
3694 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3695 max_pasids = min(max_pasids, (1 << 20));
3696
3697 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3698 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3699
3700 features = pci_pasid_features(pdev);
3701 if (features & PCI_PASID_CAP_EXEC)
3702 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3703 if (features & PCI_PASID_CAP_PRIV)
3704 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3705 }
3706
3707 return 0;
3708}
3709EXPORT_SYMBOL(amd_iommu_device_info);