blob: a2e418cba0ff9df7ebb0c4b5b44361a8987b829c [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedelb6c02712008-06-26 21:27:53 +02003 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020034#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020035#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090036#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010037#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020038#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020039
40#include "amd_iommu_proto.h"
41#include "amd_iommu_types.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020042
43#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
44
Joerg Roedel815b33f2011-04-06 17:26:49 +020045#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020046
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020047/*
48 * This bitmap is used to advertise the page sizes our hardware support
49 * to the IOMMU core, which will then use this information to split
50 * physically contiguous memory regions it is mapping into page sizes
51 * that we support.
52 *
53 * Traditionally the IOMMU core just handed us the mappings directly,
54 * after making sure the size is an order of a 4KiB page and that the
55 * mapping has natural alignment.
56 *
57 * To retain this behavior, we currently advertise that we support
58 * all page sizes that are an order of 4KiB.
59 *
60 * If at some point we'd like to utilize the IOMMU core's new behavior,
61 * we could change this to advertise the real page sizes we support.
62 */
63#define AMD_IOMMU_PGSIZES (~0xFFFUL)
64
Joerg Roedelb6c02712008-06-26 21:27:53 +020065static DEFINE_RWLOCK(amd_iommu_devtable_lock);
66
Joerg Roedelbd60b732008-09-11 10:24:48 +020067/* A list of preallocated protection domains */
68static LIST_HEAD(iommu_pd_list);
69static DEFINE_SPINLOCK(iommu_pd_list_lock);
70
Joerg Roedel8fa5f802011-06-09 12:24:45 +020071/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
Joerg Roedel0feae532009-08-26 15:26:30 +020075/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
79static struct protection_domain *pt_domain;
80
Joerg Roedel26961ef2008-12-03 17:00:17 +010081static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010082
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010083static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010084int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085
Joerg Roedel431b2a22008-07-11 17:14:22 +020086/*
87 * general struct to manage commands send to an IOMMU
88 */
Joerg Roedeld6449532008-07-11 17:14:28 +020089struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020090 u32 data[4];
91};
92
Joerg Roedel04bfdd82009-09-02 16:00:23 +020093static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +010094static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -070095
Joerg Roedel15898bb2009-11-24 15:39:42 +010096/****************************************************************************
97 *
98 * Helper functions
99 *
100 ****************************************************************************/
101
Joerg Roedelf62dda62011-06-09 12:55:35 +0200102static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200103{
104 struct iommu_dev_data *dev_data;
105 unsigned long flags;
106
107 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
108 if (!dev_data)
109 return NULL;
110
Joerg Roedelf62dda62011-06-09 12:55:35 +0200111 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200112 atomic_set(&dev_data->bind, 0);
113
114 spin_lock_irqsave(&dev_data_list_lock, flags);
115 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
116 spin_unlock_irqrestore(&dev_data_list_lock, flags);
117
118 return dev_data;
119}
120
121static void free_dev_data(struct iommu_dev_data *dev_data)
122{
123 unsigned long flags;
124
125 spin_lock_irqsave(&dev_data_list_lock, flags);
126 list_del(&dev_data->dev_data_list);
127 spin_unlock_irqrestore(&dev_data_list_lock, flags);
128
129 kfree(dev_data);
130}
131
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200132static struct iommu_dev_data *search_dev_data(u16 devid)
133{
134 struct iommu_dev_data *dev_data;
135 unsigned long flags;
136
137 spin_lock_irqsave(&dev_data_list_lock, flags);
138 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
139 if (dev_data->devid == devid)
140 goto out_unlock;
141 }
142
143 dev_data = NULL;
144
145out_unlock:
146 spin_unlock_irqrestore(&dev_data_list_lock, flags);
147
148 return dev_data;
149}
150
151static struct iommu_dev_data *find_dev_data(u16 devid)
152{
153 struct iommu_dev_data *dev_data;
154
155 dev_data = search_dev_data(devid);
156
157 if (dev_data == NULL)
158 dev_data = alloc_dev_data(devid);
159
160 return dev_data;
161}
162
Joerg Roedel15898bb2009-11-24 15:39:42 +0100163static inline u16 get_device_id(struct device *dev)
164{
165 struct pci_dev *pdev = to_pci_dev(dev);
166
167 return calc_devid(pdev->bus->number, pdev->devfn);
168}
169
Joerg Roedel657cbb62009-11-23 15:26:46 +0100170static struct iommu_dev_data *get_dev_data(struct device *dev)
171{
172 return dev->archdata.iommu;
173}
174
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100175static bool pci_iommuv2_capable(struct pci_dev *pdev)
176{
177 static const int caps[] = {
178 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100179 PCI_EXT_CAP_ID_PRI,
180 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100181 };
182 int i, pos;
183
184 for (i = 0; i < 3; ++i) {
185 pos = pci_find_ext_capability(pdev, caps[i]);
186 if (pos == 0)
187 return false;
188 }
189
190 return true;
191}
192
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100193static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
194{
195 struct iommu_dev_data *dev_data;
196
197 dev_data = get_dev_data(&pdev->dev);
198
199 return dev_data->errata & (1 << erratum) ? true : false;
200}
201
Joerg Roedel71c70982009-11-24 16:43:06 +0100202/*
203 * In this function the list of preallocated protection domains is traversed to
204 * find the domain for a specific device
205 */
206static struct dma_ops_domain *find_protection_domain(u16 devid)
207{
208 struct dma_ops_domain *entry, *ret = NULL;
209 unsigned long flags;
210 u16 alias = amd_iommu_alias_table[devid];
211
212 if (list_empty(&iommu_pd_list))
213 return NULL;
214
215 spin_lock_irqsave(&iommu_pd_list_lock, flags);
216
217 list_for_each_entry(entry, &iommu_pd_list, list) {
218 if (entry->target_dev == devid ||
219 entry->target_dev == alias) {
220 ret = entry;
221 break;
222 }
223 }
224
225 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
226
227 return ret;
228}
229
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100230/*
231 * This function checks if the driver got a valid device from the caller to
232 * avoid dereferencing invalid pointers.
233 */
234static bool check_device(struct device *dev)
235{
236 u16 devid;
237
238 if (!dev || !dev->dma_mask)
239 return false;
240
241 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100242 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100243 return false;
244
245 devid = get_device_id(dev);
246
247 /* Out of our scope? */
248 if (devid > amd_iommu_last_bdf)
249 return false;
250
251 if (amd_iommu_rlookup_table[devid] == NULL)
252 return false;
253
254 return true;
255}
256
Joerg Roedel657cbb62009-11-23 15:26:46 +0100257static int iommu_init_device(struct device *dev)
258{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100259 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100260 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200261 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100262
263 if (dev->archdata.iommu)
264 return 0;
265
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200266 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100267 if (!dev_data)
268 return -ENOMEM;
269
Joerg Roedelf62dda62011-06-09 12:55:35 +0200270 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200271 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200272 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100273
Joerg Roedel71f77582011-06-09 19:03:15 +0200274 alias_data = find_dev_data(alias);
275 if (alias_data == NULL) {
276 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
277 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200278 free_dev_data(dev_data);
279 return -ENOTSUPP;
280 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200281 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200282 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100283
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100284 if (pci_iommuv2_capable(pdev)) {
285 struct amd_iommu *iommu;
286
287 iommu = amd_iommu_rlookup_table[dev_data->devid];
288 dev_data->iommu_v2 = iommu->is_iommu_v2;
289 }
290
Joerg Roedel657cbb62009-11-23 15:26:46 +0100291 dev->archdata.iommu = dev_data;
292
Joerg Roedel657cbb62009-11-23 15:26:46 +0100293 return 0;
294}
295
Joerg Roedel26018872011-06-06 16:50:14 +0200296static void iommu_ignore_device(struct device *dev)
297{
298 u16 devid, alias;
299
300 devid = get_device_id(dev);
301 alias = amd_iommu_alias_table[devid];
302
303 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
304 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
305
306 amd_iommu_rlookup_table[devid] = NULL;
307 amd_iommu_rlookup_table[alias] = NULL;
308}
309
Joerg Roedel657cbb62009-11-23 15:26:46 +0100310static void iommu_uninit_device(struct device *dev)
311{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200312 /*
313 * Nothing to do here - we keep dev_data around for unplugged devices
314 * and reuse it when the device is re-plugged - not doing so would
315 * introduce a ton of races.
316 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100317}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100318
319void __init amd_iommu_uninit_devices(void)
320{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200321 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100322 struct pci_dev *pdev = NULL;
323
324 for_each_pci_dev(pdev) {
325
326 if (!check_device(&pdev->dev))
327 continue;
328
329 iommu_uninit_device(&pdev->dev);
330 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200331
332 /* Free all of our dev_data structures */
333 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
334 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100335}
336
337int __init amd_iommu_init_devices(void)
338{
339 struct pci_dev *pdev = NULL;
340 int ret = 0;
341
342 for_each_pci_dev(pdev) {
343
344 if (!check_device(&pdev->dev))
345 continue;
346
347 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200348 if (ret == -ENOTSUPP)
349 iommu_ignore_device(&pdev->dev);
350 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100351 goto out_free;
352 }
353
354 return 0;
355
356out_free:
357
358 amd_iommu_uninit_devices();
359
360 return ret;
361}
Joerg Roedel7f265082008-12-12 13:50:21 +0100362#ifdef CONFIG_AMD_IOMMU_STATS
363
364/*
365 * Initialization code for statistics collection
366 */
367
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100368DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100369DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100370DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100371DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100372DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100373DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100374DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100375DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100376DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100377DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100378DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100379DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100380DECLARE_STATS_COUNTER(complete_ppr);
381DECLARE_STATS_COUNTER(invalidate_iotlb);
382DECLARE_STATS_COUNTER(invalidate_iotlb_all);
383DECLARE_STATS_COUNTER(pri_requests);
384
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100385
Joerg Roedel7f265082008-12-12 13:50:21 +0100386static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100387static struct dentry *de_fflush;
388
389static void amd_iommu_stats_add(struct __iommu_counter *cnt)
390{
391 if (stats_dir == NULL)
392 return;
393
394 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
395 &cnt->value);
396}
397
398static void amd_iommu_stats_init(void)
399{
400 stats_dir = debugfs_create_dir("amd-iommu", NULL);
401 if (stats_dir == NULL)
402 return;
403
Joerg Roedel7f265082008-12-12 13:50:21 +0100404 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
405 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100406
407 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100408 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100409 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100410 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100411 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100412 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100413 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100414 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100415 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100416 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100417 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100418 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100419 amd_iommu_stats_add(&complete_ppr);
420 amd_iommu_stats_add(&invalidate_iotlb);
421 amd_iommu_stats_add(&invalidate_iotlb_all);
422 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100423}
424
425#endif
426
Joerg Roedel431b2a22008-07-11 17:14:22 +0200427/****************************************************************************
428 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200429 * Interrupt handling functions
430 *
431 ****************************************************************************/
432
Joerg Roedele3e59872009-09-03 14:02:10 +0200433static void dump_dte_entry(u16 devid)
434{
435 int i;
436
Joerg Roedelee6c2862011-11-09 12:06:03 +0100437 for (i = 0; i < 4; ++i)
438 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200439 amd_iommu_dev_table[devid].data[i]);
440}
441
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200442static void dump_command(unsigned long phys_addr)
443{
444 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
445 int i;
446
447 for (i = 0; i < 4; ++i)
448 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
449}
450
Joerg Roedela345b232009-09-03 15:01:43 +0200451static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200452{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200453 int type, devid, domid, flags;
454 volatile u32 *event = __evt;
455 int count = 0;
456 u64 address;
457
458retry:
459 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
460 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
461 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
462 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
463 address = (u64)(((u64)event[3]) << 32) | event[2];
464
465 if (type == 0) {
466 /* Did we hit the erratum? */
467 if (++count == LOOP_TIMEOUT) {
468 pr_err("AMD-Vi: No event written to event log\n");
469 return;
470 }
471 udelay(1);
472 goto retry;
473 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200474
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200475 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200476
477 switch (type) {
478 case EVENT_TYPE_ILL_DEV:
479 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
480 "address=0x%016llx flags=0x%04x]\n",
481 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
482 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200483 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200484 break;
485 case EVENT_TYPE_IO_FAULT:
486 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
487 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
488 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
489 domid, address, flags);
490 break;
491 case EVENT_TYPE_DEV_TAB_ERR:
492 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
493 "address=0x%016llx flags=0x%04x]\n",
494 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
495 address, flags);
496 break;
497 case EVENT_TYPE_PAGE_TAB_ERR:
498 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
499 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
500 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
501 domid, address, flags);
502 break;
503 case EVENT_TYPE_ILL_CMD:
504 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200505 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200506 break;
507 case EVENT_TYPE_CMD_HARD_ERR:
508 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
509 "flags=0x%04x]\n", address, flags);
510 break;
511 case EVENT_TYPE_IOTLB_INV_TO:
512 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
513 "address=0x%016llx]\n",
514 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
515 address);
516 break;
517 case EVENT_TYPE_INV_DEV_REQ:
518 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
519 "address=0x%016llx flags=0x%04x]\n",
520 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
521 address, flags);
522 break;
523 default:
524 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
525 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200526
527 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200528}
529
530static void iommu_poll_events(struct amd_iommu *iommu)
531{
532 u32 head, tail;
533 unsigned long flags;
534
535 spin_lock_irqsave(&iommu->lock, flags);
536
537 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
538 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
539
540 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200541 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200542 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
543 }
544
545 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
546
547 spin_unlock_irqrestore(&iommu->lock, flags);
548}
549
Joerg Roedeleee53532012-06-01 15:20:23 +0200550static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100551{
552 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100553
Joerg Roedel399be2f2011-12-01 16:53:47 +0100554 INC_STATS_COUNTER(pri_requests);
555
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100556 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
557 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
558 return;
559 }
560
561 fault.address = raw[1];
562 fault.pasid = PPR_PASID(raw[0]);
563 fault.device_id = PPR_DEVID(raw[0]);
564 fault.tag = PPR_TAG(raw[0]);
565 fault.flags = PPR_FLAGS(raw[0]);
566
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100567 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
568}
569
570static void iommu_poll_ppr_log(struct amd_iommu *iommu)
571{
572 unsigned long flags;
573 u32 head, tail;
574
575 if (iommu->ppr_log == NULL)
576 return;
577
Joerg Roedeleee53532012-06-01 15:20:23 +0200578 /* enable ppr interrupts again */
579 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
580
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100581 spin_lock_irqsave(&iommu->lock, flags);
582
583 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
584 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
585
586 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200587 volatile u64 *raw;
588 u64 entry[2];
589 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100590
Joerg Roedeleee53532012-06-01 15:20:23 +0200591 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100592
Joerg Roedeleee53532012-06-01 15:20:23 +0200593 /*
594 * Hardware bug: Interrupt may arrive before the entry is
595 * written to memory. If this happens we need to wait for the
596 * entry to arrive.
597 */
598 for (i = 0; i < LOOP_TIMEOUT; ++i) {
599 if (PPR_REQ_TYPE(raw[0]) != 0)
600 break;
601 udelay(1);
602 }
603
604 /* Avoid memcpy function-call overhead */
605 entry[0] = raw[0];
606 entry[1] = raw[1];
607
608 /*
609 * To detect the hardware bug we need to clear the entry
610 * back to zero.
611 */
612 raw[0] = raw[1] = 0UL;
613
614 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100615 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
616 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200617
618 /*
619 * Release iommu->lock because ppr-handling might need to
620 * re-aquire it
621 */
622 spin_unlock_irqrestore(&iommu->lock, flags);
623
624 /* Handle PPR entry */
625 iommu_handle_ppr_entry(iommu, entry);
626
627 spin_lock_irqsave(&iommu->lock, flags);
628
629 /* Refresh ring-buffer information */
630 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100631 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
632 }
633
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100634 spin_unlock_irqrestore(&iommu->lock, flags);
635}
636
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200637irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200638{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200639 struct amd_iommu *iommu;
640
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100641 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200642 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100643 iommu_poll_ppr_log(iommu);
644 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200645
646 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200647}
648
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200649irqreturn_t amd_iommu_int_handler(int irq, void *data)
650{
651 return IRQ_WAKE_THREAD;
652}
653
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200654/****************************************************************************
655 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200656 * IOMMU command queuing functions
657 *
658 ****************************************************************************/
659
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200660static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200661{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200662 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200663
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200664 while (*sem == 0 && i < LOOP_TIMEOUT) {
665 udelay(1);
666 i += 1;
667 }
668
669 if (i == LOOP_TIMEOUT) {
670 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
671 return -EIO;
672 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200673
674 return 0;
675}
676
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200677static void copy_cmd_to_buffer(struct amd_iommu *iommu,
678 struct iommu_cmd *cmd,
679 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200680{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200681 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200682
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200683 target = iommu->cmd_buf + tail;
684 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200685
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200686 /* Copy command to buffer */
687 memcpy(target, cmd, sizeof(*cmd));
688
689 /* Tell the IOMMU about it */
690 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
691}
692
Joerg Roedel815b33f2011-04-06 17:26:49 +0200693static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200694{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200695 WARN_ON(address & 0x7ULL);
696
Joerg Roedelded46732011-04-06 10:53:48 +0200697 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200698 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
699 cmd->data[1] = upper_32_bits(__pa(address));
700 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200701 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
702}
703
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200704static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
705{
706 memset(cmd, 0, sizeof(*cmd));
707 cmd->data[0] = devid;
708 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
709}
710
Joerg Roedel11b64022011-04-06 11:49:28 +0200711static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
712 size_t size, u16 domid, int pde)
713{
714 u64 pages;
715 int s;
716
717 pages = iommu_num_pages(address, size, PAGE_SIZE);
718 s = 0;
719
720 if (pages > 1) {
721 /*
722 * If we have to flush more than one page, flush all
723 * TLB entries for this domain
724 */
725 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
726 s = 1;
727 }
728
729 address &= PAGE_MASK;
730
731 memset(cmd, 0, sizeof(*cmd));
732 cmd->data[1] |= domid;
733 cmd->data[2] = lower_32_bits(address);
734 cmd->data[3] = upper_32_bits(address);
735 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
736 if (s) /* size bit - we flush more than one 4kb page */
737 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
738 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
739 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
740}
741
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200742static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
743 u64 address, size_t size)
744{
745 u64 pages;
746 int s;
747
748 pages = iommu_num_pages(address, size, PAGE_SIZE);
749 s = 0;
750
751 if (pages > 1) {
752 /*
753 * If we have to flush more than one page, flush all
754 * TLB entries for this domain
755 */
756 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
757 s = 1;
758 }
759
760 address &= PAGE_MASK;
761
762 memset(cmd, 0, sizeof(*cmd));
763 cmd->data[0] = devid;
764 cmd->data[0] |= (qdep & 0xff) << 24;
765 cmd->data[1] = devid;
766 cmd->data[2] = lower_32_bits(address);
767 cmd->data[3] = upper_32_bits(address);
768 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
769 if (s)
770 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
771}
772
Joerg Roedel22e266c2011-11-21 15:59:08 +0100773static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
774 u64 address, bool size)
775{
776 memset(cmd, 0, sizeof(*cmd));
777
778 address &= ~(0xfffULL);
779
780 cmd->data[0] = pasid & PASID_MASK;
781 cmd->data[1] = domid;
782 cmd->data[2] = lower_32_bits(address);
783 cmd->data[3] = upper_32_bits(address);
784 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
785 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
786 if (size)
787 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
788 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
789}
790
791static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
792 int qdep, u64 address, bool size)
793{
794 memset(cmd, 0, sizeof(*cmd));
795
796 address &= ~(0xfffULL);
797
798 cmd->data[0] = devid;
799 cmd->data[0] |= (pasid & 0xff) << 16;
800 cmd->data[0] |= (qdep & 0xff) << 24;
801 cmd->data[1] = devid;
802 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
803 cmd->data[2] = lower_32_bits(address);
804 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
805 cmd->data[3] = upper_32_bits(address);
806 if (size)
807 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
808 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
809}
810
Joerg Roedelc99afa22011-11-21 18:19:25 +0100811static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
812 int status, int tag, bool gn)
813{
814 memset(cmd, 0, sizeof(*cmd));
815
816 cmd->data[0] = devid;
817 if (gn) {
818 cmd->data[1] = pasid & PASID_MASK;
819 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
820 }
821 cmd->data[3] = tag & 0x1ff;
822 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
823
824 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
825}
826
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200827static void build_inv_all(struct iommu_cmd *cmd)
828{
829 memset(cmd, 0, sizeof(*cmd));
830 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200831}
832
Joerg Roedel431b2a22008-07-11 17:14:22 +0200833/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200834 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200835 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200836 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200837static int iommu_queue_command_sync(struct amd_iommu *iommu,
838 struct iommu_cmd *cmd,
839 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200840{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200841 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200842 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200843
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200844 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100845
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200846again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200847 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200848
849 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
850 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
851 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
852 left = (head - next_tail) % iommu->cmd_buf_size;
853
854 if (left <= 2) {
855 struct iommu_cmd sync_cmd;
856 volatile u64 sem = 0;
857 int ret;
858
859 build_completion_wait(&sync_cmd, (u64)&sem);
860 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
861
862 spin_unlock_irqrestore(&iommu->lock, flags);
863
864 if ((ret = wait_on_sem(&sem)) != 0)
865 return ret;
866
867 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200868 }
869
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200870 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200871
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200872 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200873 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200874
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200875 spin_unlock_irqrestore(&iommu->lock, flags);
876
Joerg Roedel815b33f2011-04-06 17:26:49 +0200877 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100878}
879
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200880static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
881{
882 return iommu_queue_command_sync(iommu, cmd, true);
883}
884
Joerg Roedel8d201962008-12-02 20:34:41 +0100885/*
886 * This function queues a completion wait command into the command
887 * buffer of an IOMMU
888 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100889static int iommu_completion_wait(struct amd_iommu *iommu)
890{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200891 struct iommu_cmd cmd;
892 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200893 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100894
895 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200896 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100897
Joerg Roedel815b33f2011-04-06 17:26:49 +0200898 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100899
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200900 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100901 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200902 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100903
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200904 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200905}
906
Joerg Roedeld8c13082011-04-06 18:51:26 +0200907static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200908{
909 struct iommu_cmd cmd;
910
Joerg Roedeld8c13082011-04-06 18:51:26 +0200911 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200912
Joerg Roedeld8c13082011-04-06 18:51:26 +0200913 return iommu_queue_command(iommu, &cmd);
914}
915
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200916static void iommu_flush_dte_all(struct amd_iommu *iommu)
917{
918 u32 devid;
919
920 for (devid = 0; devid <= 0xffff; ++devid)
921 iommu_flush_dte(iommu, devid);
922
923 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200924}
925
926/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200927 * This function uses heavy locking and may disable irqs for some time. But
928 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200929 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200930static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200931{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200932 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200933
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200934 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
935 struct iommu_cmd cmd;
936 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
937 dom_id, 1);
938 iommu_queue_command(iommu, &cmd);
939 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200940
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200941 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200942}
943
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200944static void iommu_flush_all(struct amd_iommu *iommu)
945{
946 struct iommu_cmd cmd;
947
948 build_inv_all(&cmd);
949
950 iommu_queue_command(iommu, &cmd);
951 iommu_completion_wait(iommu);
952}
953
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200954void iommu_flush_all_caches(struct amd_iommu *iommu)
955{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200956 if (iommu_feature(iommu, FEATURE_IA)) {
957 iommu_flush_all(iommu);
958 } else {
959 iommu_flush_dte_all(iommu);
960 iommu_flush_tlb_all(iommu);
961 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200962}
963
Joerg Roedel431b2a22008-07-11 17:14:22 +0200964/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200965 * Command send function for flushing on-device TLB
966 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200967static int device_flush_iotlb(struct iommu_dev_data *dev_data,
968 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200969{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200970 struct amd_iommu *iommu;
971 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200972 int qdep;
973
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200974 qdep = dev_data->ats.qdep;
975 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200976
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200977 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200978
979 return iommu_queue_command(iommu, &cmd);
980}
981
982/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200983 * Command send function for invalidating a device table entry
984 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200985static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100986{
987 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200988 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100989
Joerg Roedel6c542042011-06-09 17:07:31 +0200990 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100991
Joerg Roedelf62dda62011-06-09 12:55:35 +0200992 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200993 if (ret)
994 return ret;
995
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200996 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200997 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200998
999 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001000}
1001
Joerg Roedel431b2a22008-07-11 17:14:22 +02001002/*
1003 * TLB invalidation function which is called from the mapping functions.
1004 * It invalidates a single PTE if the range to flush is within a single
1005 * page. Otherwise it flushes the whole TLB of the IOMMU.
1006 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001007static void __domain_flush_pages(struct protection_domain *domain,
1008 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001009{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001010 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001011 struct iommu_cmd cmd;
1012 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001013
Joerg Roedel11b64022011-04-06 11:49:28 +02001014 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001015
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001016 for (i = 0; i < amd_iommus_present; ++i) {
1017 if (!domain->dev_iommu[i])
1018 continue;
1019
1020 /*
1021 * Devices of this domain are behind this IOMMU
1022 * We need a TLB flush
1023 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001024 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001025 }
1026
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001027 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001028
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001029 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001030 continue;
1031
Joerg Roedel6c542042011-06-09 17:07:31 +02001032 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001033 }
1034
Joerg Roedel11b64022011-04-06 11:49:28 +02001035 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001036}
1037
Joerg Roedel17b124b2011-04-06 18:01:35 +02001038static void domain_flush_pages(struct protection_domain *domain,
1039 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001040{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001041 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001042}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001043
Joerg Roedel1c655772008-09-04 18:40:05 +02001044/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001045static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001046{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001047 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001048}
1049
Chris Wright42a49f92009-06-15 15:42:00 +02001050/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001051static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001052{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001053 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1054}
1055
1056static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001057{
1058 int i;
1059
1060 for (i = 0; i < amd_iommus_present; ++i) {
1061 if (!domain->dev_iommu[i])
1062 continue;
1063
1064 /*
1065 * Devices of this domain are behind this IOMMU
1066 * We need to wait for completion of all commands.
1067 */
1068 iommu_completion_wait(amd_iommus[i]);
1069 }
1070}
1071
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001072
Joerg Roedel43f49602008-12-02 21:01:12 +01001073/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001074 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001075 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001076static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001077{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001078 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001079
1080 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001081 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001082}
1083
Joerg Roedel431b2a22008-07-11 17:14:22 +02001084/****************************************************************************
1085 *
1086 * The functions below are used the create the page table mappings for
1087 * unity mapped regions.
1088 *
1089 ****************************************************************************/
1090
1091/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001092 * This function is used to add another level to an IO page table. Adding
1093 * another level increases the size of the address space by 9 bits to a size up
1094 * to 64 bits.
1095 */
1096static bool increase_address_space(struct protection_domain *domain,
1097 gfp_t gfp)
1098{
1099 u64 *pte;
1100
1101 if (domain->mode == PAGE_MODE_6_LEVEL)
1102 /* address space already 64 bit large */
1103 return false;
1104
1105 pte = (void *)get_zeroed_page(gfp);
1106 if (!pte)
1107 return false;
1108
1109 *pte = PM_LEVEL_PDE(domain->mode,
1110 virt_to_phys(domain->pt_root));
1111 domain->pt_root = pte;
1112 domain->mode += 1;
1113 domain->updated = true;
1114
1115 return true;
1116}
1117
1118static u64 *alloc_pte(struct protection_domain *domain,
1119 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001120 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001121 u64 **pte_page,
1122 gfp_t gfp)
1123{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001124 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001125 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001126
1127 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001128
1129 while (address > PM_LEVEL_SIZE(domain->mode))
1130 increase_address_space(domain, gfp);
1131
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001132 level = domain->mode - 1;
1133 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1134 address = PAGE_SIZE_ALIGN(address, page_size);
1135 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001136
1137 while (level > end_lvl) {
1138 if (!IOMMU_PTE_PRESENT(*pte)) {
1139 page = (u64 *)get_zeroed_page(gfp);
1140 if (!page)
1141 return NULL;
1142 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1143 }
1144
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001145 /* No level skipping support yet */
1146 if (PM_PTE_LEVEL(*pte) != level)
1147 return NULL;
1148
Joerg Roedel308973d2009-11-24 17:43:32 +01001149 level -= 1;
1150
1151 pte = IOMMU_PTE_PAGE(*pte);
1152
1153 if (pte_page && level == end_lvl)
1154 *pte_page = pte;
1155
1156 pte = &pte[PM_LEVEL_INDEX(level, address)];
1157 }
1158
1159 return pte;
1160}
1161
1162/*
1163 * This function checks if there is a PTE for a given dma address. If
1164 * there is one, it returns the pointer to it.
1165 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001166static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001167{
1168 int level;
1169 u64 *pte;
1170
Joerg Roedel24cd7722010-01-19 17:27:39 +01001171 if (address > PM_LEVEL_SIZE(domain->mode))
1172 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001173
Joerg Roedel24cd7722010-01-19 17:27:39 +01001174 level = domain->mode - 1;
1175 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1176
1177 while (level > 0) {
1178
1179 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001180 if (!IOMMU_PTE_PRESENT(*pte))
1181 return NULL;
1182
Joerg Roedel24cd7722010-01-19 17:27:39 +01001183 /* Large PTE */
1184 if (PM_PTE_LEVEL(*pte) == 0x07) {
1185 unsigned long pte_mask, __pte;
1186
1187 /*
1188 * If we have a series of large PTEs, make
1189 * sure to return a pointer to the first one.
1190 */
1191 pte_mask = PTE_PAGE_SIZE(*pte);
1192 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1193 __pte = ((unsigned long)pte) & pte_mask;
1194
1195 return (u64 *)__pte;
1196 }
1197
1198 /* No level skipping support yet */
1199 if (PM_PTE_LEVEL(*pte) != level)
1200 return NULL;
1201
Joerg Roedel308973d2009-11-24 17:43:32 +01001202 level -= 1;
1203
Joerg Roedel24cd7722010-01-19 17:27:39 +01001204 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001205 pte = IOMMU_PTE_PAGE(*pte);
1206 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001207 }
1208
1209 return pte;
1210}
1211
1212/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001213 * Generic mapping functions. It maps a physical address into a DMA
1214 * address space. It allocates the page table pages if necessary.
1215 * In the future it can be extended to a generic mapping function
1216 * supporting all features of AMD IOMMU page tables like level skipping
1217 * and full 64 bit address spaces.
1218 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001219static int iommu_map_page(struct protection_domain *dom,
1220 unsigned long bus_addr,
1221 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001222 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001223 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001224{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001225 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001226 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001227
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001228 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001229 return -EINVAL;
1230
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001231 bus_addr = PAGE_ALIGN(bus_addr);
1232 phys_addr = PAGE_ALIGN(phys_addr);
1233 count = PAGE_SIZE_PTE_COUNT(page_size);
1234 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001235
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001236 for (i = 0; i < count; ++i)
1237 if (IOMMU_PTE_PRESENT(pte[i]))
1238 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001239
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001240 if (page_size > PAGE_SIZE) {
1241 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1242 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1243 } else
1244 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1245
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001246 if (prot & IOMMU_PROT_IR)
1247 __pte |= IOMMU_PTE_IR;
1248 if (prot & IOMMU_PROT_IW)
1249 __pte |= IOMMU_PTE_IW;
1250
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001251 for (i = 0; i < count; ++i)
1252 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001253
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001254 update_domain(dom);
1255
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001256 return 0;
1257}
1258
Joerg Roedel24cd7722010-01-19 17:27:39 +01001259static unsigned long iommu_unmap_page(struct protection_domain *dom,
1260 unsigned long bus_addr,
1261 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001262{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001263 unsigned long long unmap_size, unmapped;
1264 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001265
Joerg Roedel24cd7722010-01-19 17:27:39 +01001266 BUG_ON(!is_power_of_2(page_size));
1267
1268 unmapped = 0;
1269
1270 while (unmapped < page_size) {
1271
1272 pte = fetch_pte(dom, bus_addr);
1273
1274 if (!pte) {
1275 /*
1276 * No PTE for this address
1277 * move forward in 4kb steps
1278 */
1279 unmap_size = PAGE_SIZE;
1280 } else if (PM_PTE_LEVEL(*pte) == 0) {
1281 /* 4kb PTE found for this address */
1282 unmap_size = PAGE_SIZE;
1283 *pte = 0ULL;
1284 } else {
1285 int count, i;
1286
1287 /* Large PTE found which maps this address */
1288 unmap_size = PTE_PAGE_SIZE(*pte);
1289 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1290 for (i = 0; i < count; i++)
1291 pte[i] = 0ULL;
1292 }
1293
1294 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1295 unmapped += unmap_size;
1296 }
1297
1298 BUG_ON(!is_power_of_2(unmapped));
1299
1300 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001301}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001302
Joerg Roedel431b2a22008-07-11 17:14:22 +02001303/*
1304 * This function checks if a specific unity mapping entry is needed for
1305 * this specific IOMMU.
1306 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001307static int iommu_for_unity_map(struct amd_iommu *iommu,
1308 struct unity_map_entry *entry)
1309{
1310 u16 bdf, i;
1311
1312 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1313 bdf = amd_iommu_alias_table[i];
1314 if (amd_iommu_rlookup_table[bdf] == iommu)
1315 return 1;
1316 }
1317
1318 return 0;
1319}
1320
Joerg Roedel431b2a22008-07-11 17:14:22 +02001321/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001322 * This function actually applies the mapping to the page table of the
1323 * dma_ops domain.
1324 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001325static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1326 struct unity_map_entry *e)
1327{
1328 u64 addr;
1329 int ret;
1330
1331 for (addr = e->address_start; addr < e->address_end;
1332 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001333 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001334 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001335 if (ret)
1336 return ret;
1337 /*
1338 * if unity mapping is in aperture range mark the page
1339 * as allocated in the aperture
1340 */
1341 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001342 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001343 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001344 }
1345
1346 return 0;
1347}
1348
Joerg Roedel431b2a22008-07-11 17:14:22 +02001349/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001350 * Init the unity mappings for a specific IOMMU in the system
1351 *
1352 * Basically iterates over all unity mapping entries and applies them to
1353 * the default domain DMA of that IOMMU if necessary.
1354 */
1355static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1356{
1357 struct unity_map_entry *entry;
1358 int ret;
1359
1360 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1361 if (!iommu_for_unity_map(iommu, entry))
1362 continue;
1363 ret = dma_ops_unity_map(iommu->default_dom, entry);
1364 if (ret)
1365 return ret;
1366 }
1367
1368 return 0;
1369}
1370
1371/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001372 * Inits the unity mappings required for a specific device
1373 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001374static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1375 u16 devid)
1376{
1377 struct unity_map_entry *e;
1378 int ret;
1379
1380 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1381 if (!(devid >= e->devid_start && devid <= e->devid_end))
1382 continue;
1383 ret = dma_ops_unity_map(dma_dom, e);
1384 if (ret)
1385 return ret;
1386 }
1387
1388 return 0;
1389}
1390
Joerg Roedel431b2a22008-07-11 17:14:22 +02001391/****************************************************************************
1392 *
1393 * The next functions belong to the address allocator for the dma_ops
1394 * interface functions. They work like the allocators in the other IOMMU
1395 * drivers. Its basically a bitmap which marks the allocated pages in
1396 * the aperture. Maybe it could be enhanced in the future to a more
1397 * efficient allocator.
1398 *
1399 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001400
Joerg Roedel431b2a22008-07-11 17:14:22 +02001401/*
Joerg Roedel384de722009-05-15 12:30:05 +02001402 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001403 *
1404 * called with domain->lock held
1405 */
Joerg Roedel384de722009-05-15 12:30:05 +02001406
Joerg Roedel9cabe892009-05-18 16:38:55 +02001407/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001408 * Used to reserve address ranges in the aperture (e.g. for exclusion
1409 * ranges.
1410 */
1411static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1412 unsigned long start_page,
1413 unsigned int pages)
1414{
1415 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1416
1417 if (start_page + pages > last_page)
1418 pages = last_page - start_page;
1419
1420 for (i = start_page; i < start_page + pages; ++i) {
1421 int index = i / APERTURE_RANGE_PAGES;
1422 int page = i % APERTURE_RANGE_PAGES;
1423 __set_bit(page, dom->aperture[index]->bitmap);
1424 }
1425}
1426
1427/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001428 * This function is used to add a new aperture range to an existing
1429 * aperture in case of dma_ops domain allocation or address allocation
1430 * failure.
1431 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001432static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001433 bool populate, gfp_t gfp)
1434{
1435 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001436 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001437 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001438
Joerg Roedelf5e97052009-05-22 12:31:53 +02001439#ifdef CONFIG_IOMMU_STRESS
1440 populate = false;
1441#endif
1442
Joerg Roedel9cabe892009-05-18 16:38:55 +02001443 if (index >= APERTURE_MAX_RANGES)
1444 return -ENOMEM;
1445
1446 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1447 if (!dma_dom->aperture[index])
1448 return -ENOMEM;
1449
1450 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1451 if (!dma_dom->aperture[index]->bitmap)
1452 goto out_free;
1453
1454 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1455
1456 if (populate) {
1457 unsigned long address = dma_dom->aperture_size;
1458 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1459 u64 *pte, *pte_page;
1460
1461 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001462 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001463 &pte_page, gfp);
1464 if (!pte)
1465 goto out_free;
1466
1467 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1468
1469 address += APERTURE_RANGE_SIZE / 64;
1470 }
1471 }
1472
Joerg Roedel17f5b562011-07-06 17:14:44 +02001473 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001474 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1475
Joerg Roedel17f5b562011-07-06 17:14:44 +02001476 /* Reserve address range used for MSI messages */
1477 if (old_size < MSI_ADDR_BASE_LO &&
1478 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1479 unsigned long spage;
1480 int pages;
1481
1482 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1483 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1484
1485 dma_ops_reserve_addresses(dma_dom, spage, pages);
1486 }
1487
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001488 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001489 for_each_iommu(iommu) {
1490 if (iommu->exclusion_start &&
1491 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1492 && iommu->exclusion_start < dma_dom->aperture_size) {
1493 unsigned long startpage;
1494 int pages = iommu_num_pages(iommu->exclusion_start,
1495 iommu->exclusion_length,
1496 PAGE_SIZE);
1497 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1498 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1499 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001500 }
1501
1502 /*
1503 * Check for areas already mapped as present in the new aperture
1504 * range and mark those pages as reserved in the allocator. Such
1505 * mappings may already exist as a result of requested unity
1506 * mappings for devices.
1507 */
1508 for (i = dma_dom->aperture[index]->offset;
1509 i < dma_dom->aperture_size;
1510 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001511 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001512 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1513 continue;
1514
Joerg Roedelfcd08612011-10-11 17:41:32 +02001515 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001516 }
1517
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001518 update_domain(&dma_dom->domain);
1519
Joerg Roedel9cabe892009-05-18 16:38:55 +02001520 return 0;
1521
1522out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001523 update_domain(&dma_dom->domain);
1524
Joerg Roedel9cabe892009-05-18 16:38:55 +02001525 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1526
1527 kfree(dma_dom->aperture[index]);
1528 dma_dom->aperture[index] = NULL;
1529
1530 return -ENOMEM;
1531}
1532
Joerg Roedel384de722009-05-15 12:30:05 +02001533static unsigned long dma_ops_area_alloc(struct device *dev,
1534 struct dma_ops_domain *dom,
1535 unsigned int pages,
1536 unsigned long align_mask,
1537 u64 dma_mask,
1538 unsigned long start)
1539{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001540 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001541 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1542 int i = start >> APERTURE_RANGE_SHIFT;
1543 unsigned long boundary_size;
1544 unsigned long address = -1;
1545 unsigned long limit;
1546
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001547 next_bit >>= PAGE_SHIFT;
1548
Joerg Roedel384de722009-05-15 12:30:05 +02001549 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1550 PAGE_SIZE) >> PAGE_SHIFT;
1551
1552 for (;i < max_index; ++i) {
1553 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1554
1555 if (dom->aperture[i]->offset >= dma_mask)
1556 break;
1557
1558 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1559 dma_mask >> PAGE_SHIFT);
1560
1561 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1562 limit, next_bit, pages, 0,
1563 boundary_size, align_mask);
1564 if (address != -1) {
1565 address = dom->aperture[i]->offset +
1566 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001567 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001568 break;
1569 }
1570
1571 next_bit = 0;
1572 }
1573
1574 return address;
1575}
1576
Joerg Roedeld3086442008-06-26 21:27:57 +02001577static unsigned long dma_ops_alloc_addresses(struct device *dev,
1578 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001579 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001580 unsigned long align_mask,
1581 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001582{
Joerg Roedeld3086442008-06-26 21:27:57 +02001583 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001584
Joerg Roedelfe16f082009-05-22 12:27:53 +02001585#ifdef CONFIG_IOMMU_STRESS
1586 dom->next_address = 0;
1587 dom->need_flush = true;
1588#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001589
Joerg Roedel384de722009-05-15 12:30:05 +02001590 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001591 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001592
Joerg Roedel1c655772008-09-04 18:40:05 +02001593 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001594 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001595 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1596 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001597 dom->need_flush = true;
1598 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001599
Joerg Roedel384de722009-05-15 12:30:05 +02001600 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001601 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001602
1603 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1604
1605 return address;
1606}
1607
Joerg Roedel431b2a22008-07-11 17:14:22 +02001608/*
1609 * The address free function.
1610 *
1611 * called with domain->lock held
1612 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001613static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1614 unsigned long address,
1615 unsigned int pages)
1616{
Joerg Roedel384de722009-05-15 12:30:05 +02001617 unsigned i = address >> APERTURE_RANGE_SHIFT;
1618 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001619
Joerg Roedel384de722009-05-15 12:30:05 +02001620 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1621
Joerg Roedel47bccd62009-05-22 12:40:54 +02001622#ifdef CONFIG_IOMMU_STRESS
1623 if (i < 4)
1624 return;
1625#endif
1626
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001627 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001628 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001629
1630 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001631
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001632 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001633
Joerg Roedeld3086442008-06-26 21:27:57 +02001634}
1635
Joerg Roedel431b2a22008-07-11 17:14:22 +02001636/****************************************************************************
1637 *
1638 * The next functions belong to the domain allocation. A domain is
1639 * allocated for every IOMMU as the default domain. If device isolation
1640 * is enabled, every device get its own domain. The most important thing
1641 * about domains is the page table mapping the DMA address space they
1642 * contain.
1643 *
1644 ****************************************************************************/
1645
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001646/*
1647 * This function adds a protection domain to the global protection domain list
1648 */
1649static void add_domain_to_list(struct protection_domain *domain)
1650{
1651 unsigned long flags;
1652
1653 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1654 list_add(&domain->list, &amd_iommu_pd_list);
1655 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1656}
1657
1658/*
1659 * This function removes a protection domain to the global
1660 * protection domain list
1661 */
1662static void del_domain_from_list(struct protection_domain *domain)
1663{
1664 unsigned long flags;
1665
1666 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1667 list_del(&domain->list);
1668 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1669}
1670
Joerg Roedelec487d12008-06-26 21:27:58 +02001671static u16 domain_id_alloc(void)
1672{
1673 unsigned long flags;
1674 int id;
1675
1676 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1677 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1678 BUG_ON(id == 0);
1679 if (id > 0 && id < MAX_DOMAIN_ID)
1680 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1681 else
1682 id = 0;
1683 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1684
1685 return id;
1686}
1687
Joerg Roedela2acfb72008-12-02 18:28:53 +01001688static void domain_id_free(int id)
1689{
1690 unsigned long flags;
1691
1692 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1693 if (id > 0 && id < MAX_DOMAIN_ID)
1694 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1695 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1696}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001697
Joerg Roedel86db2e52008-12-02 18:20:21 +01001698static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001699{
1700 int i, j;
1701 u64 *p1, *p2, *p3;
1702
Joerg Roedel86db2e52008-12-02 18:20:21 +01001703 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001704
1705 if (!p1)
1706 return;
1707
1708 for (i = 0; i < 512; ++i) {
1709 if (!IOMMU_PTE_PRESENT(p1[i]))
1710 continue;
1711
1712 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001713 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001714 if (!IOMMU_PTE_PRESENT(p2[j]))
1715 continue;
1716 p3 = IOMMU_PTE_PAGE(p2[j]);
1717 free_page((unsigned long)p3);
1718 }
1719
1720 free_page((unsigned long)p2);
1721 }
1722
1723 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001724
1725 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001726}
1727
Joerg Roedelb16137b2011-11-21 16:50:23 +01001728static void free_gcr3_tbl_level1(u64 *tbl)
1729{
1730 u64 *ptr;
1731 int i;
1732
1733 for (i = 0; i < 512; ++i) {
1734 if (!(tbl[i] & GCR3_VALID))
1735 continue;
1736
1737 ptr = __va(tbl[i] & PAGE_MASK);
1738
1739 free_page((unsigned long)ptr);
1740 }
1741}
1742
1743static void free_gcr3_tbl_level2(u64 *tbl)
1744{
1745 u64 *ptr;
1746 int i;
1747
1748 for (i = 0; i < 512; ++i) {
1749 if (!(tbl[i] & GCR3_VALID))
1750 continue;
1751
1752 ptr = __va(tbl[i] & PAGE_MASK);
1753
1754 free_gcr3_tbl_level1(ptr);
1755 }
1756}
1757
Joerg Roedel52815b72011-11-17 17:24:28 +01001758static void free_gcr3_table(struct protection_domain *domain)
1759{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001760 if (domain->glx == 2)
1761 free_gcr3_tbl_level2(domain->gcr3_tbl);
1762 else if (domain->glx == 1)
1763 free_gcr3_tbl_level1(domain->gcr3_tbl);
1764 else if (domain->glx != 0)
1765 BUG();
1766
Joerg Roedel52815b72011-11-17 17:24:28 +01001767 free_page((unsigned long)domain->gcr3_tbl);
1768}
1769
Joerg Roedel431b2a22008-07-11 17:14:22 +02001770/*
1771 * Free a domain, only used if something went wrong in the
1772 * allocation path and we need to free an already allocated page table
1773 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001774static void dma_ops_domain_free(struct dma_ops_domain *dom)
1775{
Joerg Roedel384de722009-05-15 12:30:05 +02001776 int i;
1777
Joerg Roedelec487d12008-06-26 21:27:58 +02001778 if (!dom)
1779 return;
1780
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001781 del_domain_from_list(&dom->domain);
1782
Joerg Roedel86db2e52008-12-02 18:20:21 +01001783 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001784
Joerg Roedel384de722009-05-15 12:30:05 +02001785 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1786 if (!dom->aperture[i])
1787 continue;
1788 free_page((unsigned long)dom->aperture[i]->bitmap);
1789 kfree(dom->aperture[i]);
1790 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001791
1792 kfree(dom);
1793}
1794
Joerg Roedel431b2a22008-07-11 17:14:22 +02001795/*
1796 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001797 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001798 * structures required for the dma_ops interface
1799 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001800static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001801{
1802 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001803
1804 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1805 if (!dma_dom)
1806 return NULL;
1807
1808 spin_lock_init(&dma_dom->domain.lock);
1809
1810 dma_dom->domain.id = domain_id_alloc();
1811 if (dma_dom->domain.id == 0)
1812 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001813 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001814 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001815 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001816 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001817 dma_dom->domain.priv = dma_dom;
1818 if (!dma_dom->domain.pt_root)
1819 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001820
Joerg Roedel1c655772008-09-04 18:40:05 +02001821 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001822 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001823
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001824 add_domain_to_list(&dma_dom->domain);
1825
Joerg Roedel576175c2009-11-23 19:08:46 +01001826 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001827 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001828
Joerg Roedel431b2a22008-07-11 17:14:22 +02001829 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001830 * mark the first page as allocated so we never return 0 as
1831 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001832 */
Joerg Roedel384de722009-05-15 12:30:05 +02001833 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001834 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001835
Joerg Roedelec487d12008-06-26 21:27:58 +02001836
1837 return dma_dom;
1838
1839free_dma_dom:
1840 dma_ops_domain_free(dma_dom);
1841
1842 return NULL;
1843}
1844
Joerg Roedel431b2a22008-07-11 17:14:22 +02001845/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001846 * little helper function to check whether a given protection domain is a
1847 * dma_ops domain
1848 */
1849static bool dma_ops_domain(struct protection_domain *domain)
1850{
1851 return domain->flags & PD_DMA_OPS_MASK;
1852}
1853
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001854static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001855{
Joerg Roedel132bd682011-11-17 14:18:46 +01001856 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001857 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001858
Joerg Roedel132bd682011-11-17 14:18:46 +01001859 if (domain->mode != PAGE_MODE_NONE)
1860 pte_root = virt_to_phys(domain->pt_root);
1861
Joerg Roedel38ddf412008-09-11 10:38:32 +02001862 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1863 << DEV_ENTRY_MODE_SHIFT;
1864 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001865
Joerg Roedelee6c2862011-11-09 12:06:03 +01001866 flags = amd_iommu_dev_table[devid].data[1];
1867
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001868 if (ats)
1869 flags |= DTE_FLAG_IOTLB;
1870
Joerg Roedel52815b72011-11-17 17:24:28 +01001871 if (domain->flags & PD_IOMMUV2_MASK) {
1872 u64 gcr3 = __pa(domain->gcr3_tbl);
1873 u64 glx = domain->glx;
1874 u64 tmp;
1875
1876 pte_root |= DTE_FLAG_GV;
1877 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1878
1879 /* First mask out possible old values for GCR3 table */
1880 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1881 flags &= ~tmp;
1882
1883 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1884 flags &= ~tmp;
1885
1886 /* Encode GCR3 table into DTE */
1887 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1888 pte_root |= tmp;
1889
1890 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1891 flags |= tmp;
1892
1893 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1894 flags |= tmp;
1895 }
1896
Joerg Roedelee6c2862011-11-09 12:06:03 +01001897 flags &= ~(0xffffUL);
1898 flags |= domain->id;
1899
1900 amd_iommu_dev_table[devid].data[1] = flags;
1901 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001902}
1903
Joerg Roedel15898bb2009-11-24 15:39:42 +01001904static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001905{
Joerg Roedel355bf552008-12-08 12:02:41 +01001906 /* remove entry from the device table seen by the hardware */
1907 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1908 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001909
Joerg Roedelc5cca142009-10-09 18:31:20 +02001910 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001911}
1912
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001913static void do_attach(struct iommu_dev_data *dev_data,
1914 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001915{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001916 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001917 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001918
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001919 iommu = amd_iommu_rlookup_table[dev_data->devid];
1920 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001921
1922 /* Update data structures */
1923 dev_data->domain = domain;
1924 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001925 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001926
1927 /* Do reference counting */
1928 domain->dev_iommu[iommu->index] += 1;
1929 domain->dev_cnt += 1;
1930
1931 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001932 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001933}
1934
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001935static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001936{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001937 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001938
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001939 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001940
Joerg Roedelc4596112009-11-20 14:57:32 +01001941 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001942 dev_data->domain->dev_iommu[iommu->index] -= 1;
1943 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001944
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001945 /* Update data structures */
1946 dev_data->domain = NULL;
1947 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001948 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001949
1950 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001951 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001952}
1953
1954/*
1955 * If a device is not yet associated with a domain, this function does
1956 * assigns it visible for the hardware
1957 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001958static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001959 struct protection_domain *domain)
1960{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001961 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001962
Joerg Roedel15898bb2009-11-24 15:39:42 +01001963 /* lock domain */
1964 spin_lock(&domain->lock);
1965
Joerg Roedel71f77582011-06-09 19:03:15 +02001966 if (dev_data->alias_data != NULL) {
1967 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001968
Joerg Roedel2b02b092011-06-09 17:48:39 +02001969 /* Some sanity checks */
1970 ret = -EBUSY;
1971 if (alias_data->domain != NULL &&
1972 alias_data->domain != domain)
1973 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001974
Joerg Roedel2b02b092011-06-09 17:48:39 +02001975 if (dev_data->domain != NULL &&
1976 dev_data->domain != domain)
1977 goto out_unlock;
1978
1979 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001980 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001981 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001982
1983 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001984 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001985
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001986 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001987 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001988
Joerg Roedel24100052009-11-25 15:59:57 +01001989 atomic_inc(&dev_data->bind);
1990
Julia Lawall84fe6c12010-05-27 12:31:51 +02001991 ret = 0;
1992
1993out_unlock:
1994
Joerg Roedel355bf552008-12-08 12:02:41 +01001995 /* ready */
1996 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001997
Julia Lawall84fe6c12010-05-27 12:31:51 +02001998 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001999}
2000
Joerg Roedel52815b72011-11-17 17:24:28 +01002001
2002static void pdev_iommuv2_disable(struct pci_dev *pdev)
2003{
2004 pci_disable_ats(pdev);
2005 pci_disable_pri(pdev);
2006 pci_disable_pasid(pdev);
2007}
2008
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002009/* FIXME: Change generic reset-function to do the same */
2010static int pri_reset_while_enabled(struct pci_dev *pdev)
2011{
2012 u16 control;
2013 int pos;
2014
Joerg Roedel46277b72011-12-07 14:34:02 +01002015 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002016 if (!pos)
2017 return -EINVAL;
2018
Joerg Roedel46277b72011-12-07 14:34:02 +01002019 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2020 control |= PCI_PRI_CTRL_RESET;
2021 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002022
2023 return 0;
2024}
2025
Joerg Roedel52815b72011-11-17 17:24:28 +01002026static int pdev_iommuv2_enable(struct pci_dev *pdev)
2027{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002028 bool reset_enable;
2029 int reqs, ret;
2030
2031 /* FIXME: Hardcode number of outstanding requests for now */
2032 reqs = 32;
2033 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2034 reqs = 1;
2035 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002036
2037 /* Only allow access to user-accessible pages */
2038 ret = pci_enable_pasid(pdev, 0);
2039 if (ret)
2040 goto out_err;
2041
2042 /* First reset the PRI state of the device */
2043 ret = pci_reset_pri(pdev);
2044 if (ret)
2045 goto out_err;
2046
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002047 /* Enable PRI */
2048 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002049 if (ret)
2050 goto out_err;
2051
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002052 if (reset_enable) {
2053 ret = pri_reset_while_enabled(pdev);
2054 if (ret)
2055 goto out_err;
2056 }
2057
Joerg Roedel52815b72011-11-17 17:24:28 +01002058 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2059 if (ret)
2060 goto out_err;
2061
2062 return 0;
2063
2064out_err:
2065 pci_disable_pri(pdev);
2066 pci_disable_pasid(pdev);
2067
2068 return ret;
2069}
2070
Joerg Roedelc99afa22011-11-21 18:19:25 +01002071/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002072#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002073
2074bool pci_pri_tlp_required(struct pci_dev *pdev)
2075{
Joerg Roedela3b93122012-04-12 12:49:26 +02002076 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002077 int pos;
2078
Joerg Roedel46277b72011-12-07 14:34:02 +01002079 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002080 if (!pos)
2081 return false;
2082
Joerg Roedela3b93122012-04-12 12:49:26 +02002083 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002084
Joerg Roedela3b93122012-04-12 12:49:26 +02002085 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002086}
2087
Joerg Roedel15898bb2009-11-24 15:39:42 +01002088/*
2089 * If a device is not yet associated with a domain, this function does
2090 * assigns it visible for the hardware
2091 */
2092static int attach_device(struct device *dev,
2093 struct protection_domain *domain)
2094{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002095 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002096 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002097 unsigned long flags;
2098 int ret;
2099
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002100 dev_data = get_dev_data(dev);
2101
Joerg Roedel52815b72011-11-17 17:24:28 +01002102 if (domain->flags & PD_IOMMUV2_MASK) {
2103 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2104 return -EINVAL;
2105
2106 if (pdev_iommuv2_enable(pdev) != 0)
2107 return -EINVAL;
2108
2109 dev_data->ats.enabled = true;
2110 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002111 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002112 } else if (amd_iommu_iotlb_sup &&
2113 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002114 dev_data->ats.enabled = true;
2115 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2116 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002117
Joerg Roedel15898bb2009-11-24 15:39:42 +01002118 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002119 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002120 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2121
2122 /*
2123 * We might boot into a crash-kernel here. The crashed kernel
2124 * left the caches in the IOMMU dirty. So we have to flush
2125 * here to evict all dirty stuff.
2126 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002127 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002128
2129 return ret;
2130}
2131
2132/*
2133 * Removes a device from a protection domain (unlocked)
2134 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002135static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002136{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002137 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002138 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002139
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002140 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002141
Joerg Roedel2ca76272010-01-22 16:45:31 +01002142 domain = dev_data->domain;
2143
2144 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002145
Joerg Roedel71f77582011-06-09 19:03:15 +02002146 if (dev_data->alias_data != NULL) {
2147 struct iommu_dev_data *alias_data = dev_data->alias_data;
2148
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002149 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002150 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002151 }
2152
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002153 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002154 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002155
Joerg Roedel2ca76272010-01-22 16:45:31 +01002156 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002157
Joerg Roedel21129f72009-09-01 11:59:42 +02002158 /*
2159 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002160 * passthrough domain if it is detached from any other domain.
2161 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002162 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002163 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002164 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002165 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002166}
2167
2168/*
2169 * Removes a device from a protection domain (with devtable_lock held)
2170 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002171static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002172{
Joerg Roedel52815b72011-11-17 17:24:28 +01002173 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002174 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002175 unsigned long flags;
2176
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002177 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002178 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002179
Joerg Roedel355bf552008-12-08 12:02:41 +01002180 /* lock device table */
2181 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002182 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002183 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002184
Joerg Roedel52815b72011-11-17 17:24:28 +01002185 if (domain->flags & PD_IOMMUV2_MASK)
2186 pdev_iommuv2_disable(to_pci_dev(dev));
2187 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002188 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002189
2190 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002191}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002192
Joerg Roedel15898bb2009-11-24 15:39:42 +01002193/*
2194 * Find out the protection domain structure for a given PCI device. This
2195 * will give us the pointer to the page table root for example.
2196 */
2197static struct protection_domain *domain_for_device(struct device *dev)
2198{
Joerg Roedel71f77582011-06-09 19:03:15 +02002199 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002200 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002201 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002202
Joerg Roedel657cbb62009-11-23 15:26:46 +01002203 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002204
Joerg Roedel2b02b092011-06-09 17:48:39 +02002205 if (dev_data->domain)
2206 return dev_data->domain;
2207
Joerg Roedel71f77582011-06-09 19:03:15 +02002208 if (dev_data->alias_data != NULL) {
2209 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002210
2211 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2212 if (alias_data->domain != NULL) {
2213 __attach_device(dev_data, alias_data->domain);
2214 dom = alias_data->domain;
2215 }
2216 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002217 }
2218
Joerg Roedel15898bb2009-11-24 15:39:42 +01002219 return dom;
2220}
2221
Joerg Roedele275a2a2008-12-10 18:27:25 +01002222static int device_change_notifier(struct notifier_block *nb,
2223 unsigned long action, void *data)
2224{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002225 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002226 struct protection_domain *domain;
2227 struct iommu_dev_data *dev_data;
2228 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002229 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002230 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002231 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002232
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002233 if (!check_device(dev))
2234 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002235
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002236 devid = get_device_id(dev);
2237 iommu = amd_iommu_rlookup_table[devid];
2238 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002239
2240 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002241 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002242
2243 domain = domain_for_device(dev);
2244
Joerg Roedele275a2a2008-12-10 18:27:25 +01002245 if (!domain)
2246 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002247 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002248 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002249 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002250 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002251 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002252
2253 iommu_init_device(dev);
2254
2255 domain = domain_for_device(dev);
2256
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002257 /* allocate a protection domain if a device is added */
2258 dma_domain = find_protection_domain(devid);
2259 if (dma_domain)
2260 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002261 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002262 if (!dma_domain)
2263 goto out;
2264 dma_domain->target_dev = devid;
2265
2266 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2267 list_add_tail(&dma_domain->list, &iommu_pd_list);
2268 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2269
2270 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002271 case BUS_NOTIFY_DEL_DEVICE:
2272
2273 iommu_uninit_device(dev);
2274
Joerg Roedele275a2a2008-12-10 18:27:25 +01002275 default:
2276 goto out;
2277 }
2278
Joerg Roedele275a2a2008-12-10 18:27:25 +01002279 iommu_completion_wait(iommu);
2280
2281out:
2282 return 0;
2283}
2284
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302285static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002286 .notifier_call = device_change_notifier,
2287};
Joerg Roedel355bf552008-12-08 12:02:41 +01002288
Joerg Roedel8638c492009-12-10 11:12:25 +01002289void amd_iommu_init_notifier(void)
2290{
2291 bus_register_notifier(&pci_bus_type, &device_nb);
2292}
2293
Joerg Roedel431b2a22008-07-11 17:14:22 +02002294/*****************************************************************************
2295 *
2296 * The next functions belong to the dma_ops mapping/unmapping code.
2297 *
2298 *****************************************************************************/
2299
2300/*
2301 * In the dma_ops path we only have the struct device. This function
2302 * finds the corresponding IOMMU, the protection domain and the
2303 * requestor id for a given device.
2304 * If the device is not yet associated with a domain this is also done
2305 * in this function.
2306 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002307static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002308{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002309 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002310 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002311 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002312
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002313 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002314 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002315
Joerg Roedel94f6d192009-11-24 16:40:02 +01002316 domain = domain_for_device(dev);
2317 if (domain != NULL && !dma_ops_domain(domain))
2318 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002319
Joerg Roedel94f6d192009-11-24 16:40:02 +01002320 if (domain != NULL)
2321 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002322
Joerg Roedel15898bb2009-11-24 15:39:42 +01002323 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002324 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002325 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002326 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2327 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002328 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002329 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002330
Joerg Roedel94f6d192009-11-24 16:40:02 +01002331 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002332}
2333
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002334static void update_device_table(struct protection_domain *domain)
2335{
Joerg Roedel492667d2009-11-27 13:25:47 +01002336 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002337
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002338 list_for_each_entry(dev_data, &domain->dev_list, list)
2339 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002340}
2341
2342static void update_domain(struct protection_domain *domain)
2343{
2344 if (!domain->updated)
2345 return;
2346
2347 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002348
2349 domain_flush_devices(domain);
2350 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002351
2352 domain->updated = false;
2353}
2354
Joerg Roedel431b2a22008-07-11 17:14:22 +02002355/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002356 * This function fetches the PTE for a given address in the aperture
2357 */
2358static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2359 unsigned long address)
2360{
Joerg Roedel384de722009-05-15 12:30:05 +02002361 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002362 u64 *pte, *pte_page;
2363
Joerg Roedel384de722009-05-15 12:30:05 +02002364 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2365 if (!aperture)
2366 return NULL;
2367
2368 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002369 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002370 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002371 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002372 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2373 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002374 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002375
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002376 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002377
2378 return pte;
2379}
2380
2381/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002382 * This is the generic map function. It maps one 4kb page at paddr to
2383 * the given address in the DMA address space for the domain.
2384 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002385static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002386 unsigned long address,
2387 phys_addr_t paddr,
2388 int direction)
2389{
2390 u64 *pte, __pte;
2391
2392 WARN_ON(address > dom->aperture_size);
2393
2394 paddr &= PAGE_MASK;
2395
Joerg Roedel8bda3092009-05-12 12:02:46 +02002396 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002397 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002398 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002399
2400 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2401
2402 if (direction == DMA_TO_DEVICE)
2403 __pte |= IOMMU_PTE_IR;
2404 else if (direction == DMA_FROM_DEVICE)
2405 __pte |= IOMMU_PTE_IW;
2406 else if (direction == DMA_BIDIRECTIONAL)
2407 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2408
2409 WARN_ON(*pte);
2410
2411 *pte = __pte;
2412
2413 return (dma_addr_t)address;
2414}
2415
Joerg Roedel431b2a22008-07-11 17:14:22 +02002416/*
2417 * The generic unmapping function for on page in the DMA address space.
2418 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002419static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002420 unsigned long address)
2421{
Joerg Roedel384de722009-05-15 12:30:05 +02002422 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002423 u64 *pte;
2424
2425 if (address >= dom->aperture_size)
2426 return;
2427
Joerg Roedel384de722009-05-15 12:30:05 +02002428 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2429 if (!aperture)
2430 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002431
Joerg Roedel384de722009-05-15 12:30:05 +02002432 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2433 if (!pte)
2434 return;
2435
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002436 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002437
2438 WARN_ON(!*pte);
2439
2440 *pte = 0ULL;
2441}
2442
Joerg Roedel431b2a22008-07-11 17:14:22 +02002443/*
2444 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002445 * contiguous memory region into DMA address space. It is used by all
2446 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002447 * Must be called with the domain lock held.
2448 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002449static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002450 struct dma_ops_domain *dma_dom,
2451 phys_addr_t paddr,
2452 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002453 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002454 bool align,
2455 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002456{
2457 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002458 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002459 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002460 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002461 int i;
2462
Joerg Roedele3c449f2008-10-15 22:02:11 -07002463 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002464 paddr &= PAGE_MASK;
2465
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002466 INC_STATS_COUNTER(total_map_requests);
2467
Joerg Roedelc1858972008-12-12 15:42:39 +01002468 if (pages > 1)
2469 INC_STATS_COUNTER(cross_page);
2470
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002471 if (align)
2472 align_mask = (1UL << get_order(size)) - 1;
2473
Joerg Roedel11b83882009-05-19 10:23:15 +02002474retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002475 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2476 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002477 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002478 /*
2479 * setting next_address here will let the address
2480 * allocator only scan the new allocated range in the
2481 * first run. This is a small optimization.
2482 */
2483 dma_dom->next_address = dma_dom->aperture_size;
2484
Joerg Roedel576175c2009-11-23 19:08:46 +01002485 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002486 goto out;
2487
2488 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002489 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002490 * allocation again
2491 */
2492 goto retry;
2493 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002494
2495 start = address;
2496 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002497 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002498 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002499 goto out_unmap;
2500
Joerg Roedelcb76c322008-06-26 21:28:00 +02002501 paddr += PAGE_SIZE;
2502 start += PAGE_SIZE;
2503 }
2504 address += offset;
2505
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002506 ADD_STATS_COUNTER(alloced_io_mem, size);
2507
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002508 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002509 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002510 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002511 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002512 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002513
Joerg Roedelcb76c322008-06-26 21:28:00 +02002514out:
2515 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002516
2517out_unmap:
2518
2519 for (--i; i >= 0; --i) {
2520 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002521 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002522 }
2523
2524 dma_ops_free_addresses(dma_dom, address, pages);
2525
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002526 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002527}
2528
Joerg Roedel431b2a22008-07-11 17:14:22 +02002529/*
2530 * Does the reverse of the __map_single function. Must be called with
2531 * the domain lock held too
2532 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002533static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002534 dma_addr_t dma_addr,
2535 size_t size,
2536 int dir)
2537{
Joerg Roedel04e04632010-09-23 16:12:48 +02002538 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002539 dma_addr_t i, start;
2540 unsigned int pages;
2541
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002542 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002543 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002544 return;
2545
Joerg Roedel04e04632010-09-23 16:12:48 +02002546 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002547 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002548 dma_addr &= PAGE_MASK;
2549 start = dma_addr;
2550
2551 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002552 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002553 start += PAGE_SIZE;
2554 }
2555
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002556 SUB_STATS_COUNTER(alloced_io_mem, size);
2557
Joerg Roedelcb76c322008-06-26 21:28:00 +02002558 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002559
Joerg Roedel80be3082008-11-06 14:59:05 +01002560 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002561 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002562 dma_dom->need_flush = false;
2563 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002564}
2565
Joerg Roedel431b2a22008-07-11 17:14:22 +02002566/*
2567 * The exported map_single function for dma_ops.
2568 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002569static dma_addr_t map_page(struct device *dev, struct page *page,
2570 unsigned long offset, size_t size,
2571 enum dma_data_direction dir,
2572 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002573{
2574 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002575 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002576 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002577 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002578 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002579
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002580 INC_STATS_COUNTER(cnt_map_single);
2581
Joerg Roedel94f6d192009-11-24 16:40:02 +01002582 domain = get_domain(dev);
2583 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002584 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002585 else if (IS_ERR(domain))
2586 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002587
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002588 dma_mask = *dev->dma_mask;
2589
Joerg Roedel4da70b92008-06-26 21:28:01 +02002590 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002591
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002592 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002593 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002594 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002595 goto out;
2596
Joerg Roedel17b124b2011-04-06 18:01:35 +02002597 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002598
2599out:
2600 spin_unlock_irqrestore(&domain->lock, flags);
2601
2602 return addr;
2603}
2604
Joerg Roedel431b2a22008-07-11 17:14:22 +02002605/*
2606 * The exported unmap_single function for dma_ops.
2607 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002608static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2609 enum dma_data_direction dir, 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
Joerg Roedel146a6912008-12-12 15:07:12 +01002614 INC_STATS_COUNTER(cnt_unmap_single);
2615
Joerg Roedel94f6d192009-11-24 16:40:02 +01002616 domain = get_domain(dev);
2617 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002618 return;
2619
Joerg Roedel4da70b92008-06-26 21:28:01 +02002620 spin_lock_irqsave(&domain->lock, flags);
2621
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002622 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002623
Joerg Roedel17b124b2011-04-06 18:01:35 +02002624 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002625
2626 spin_unlock_irqrestore(&domain->lock, flags);
2627}
2628
Joerg Roedel431b2a22008-07-11 17:14:22 +02002629/*
2630 * This is a special map_sg function which is used if we should map a
2631 * device which is not handled by an AMD IOMMU in the system.
2632 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002633static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2634 int nelems, int dir)
2635{
2636 struct scatterlist *s;
2637 int i;
2638
2639 for_each_sg(sglist, s, nelems, i) {
2640 s->dma_address = (dma_addr_t)sg_phys(s);
2641 s->dma_length = s->length;
2642 }
2643
2644 return nelems;
2645}
2646
Joerg Roedel431b2a22008-07-11 17:14:22 +02002647/*
2648 * The exported map_sg function for dma_ops (handles scatter-gather
2649 * lists).
2650 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002651static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002652 int nelems, enum dma_data_direction dir,
2653 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002654{
2655 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002656 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002657 int i;
2658 struct scatterlist *s;
2659 phys_addr_t paddr;
2660 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002661 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002662
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002663 INC_STATS_COUNTER(cnt_map_sg);
2664
Joerg Roedel94f6d192009-11-24 16:40:02 +01002665 domain = get_domain(dev);
2666 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002667 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002668 else if (IS_ERR(domain))
2669 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002670
Joerg Roedel832a90c2008-09-18 15:54:23 +02002671 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002672
Joerg Roedel65b050a2008-06-26 21:28:02 +02002673 spin_lock_irqsave(&domain->lock, flags);
2674
2675 for_each_sg(sglist, s, nelems, i) {
2676 paddr = sg_phys(s);
2677
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002678 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002679 paddr, s->length, dir, false,
2680 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002681
2682 if (s->dma_address) {
2683 s->dma_length = s->length;
2684 mapped_elems++;
2685 } else
2686 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002687 }
2688
Joerg Roedel17b124b2011-04-06 18:01:35 +02002689 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002690
2691out:
2692 spin_unlock_irqrestore(&domain->lock, flags);
2693
2694 return mapped_elems;
2695unmap:
2696 for_each_sg(sglist, s, mapped_elems, i) {
2697 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002698 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002699 s->dma_length, dir);
2700 s->dma_address = s->dma_length = 0;
2701 }
2702
2703 mapped_elems = 0;
2704
2705 goto out;
2706}
2707
Joerg Roedel431b2a22008-07-11 17:14:22 +02002708/*
2709 * The exported map_sg function for dma_ops (handles scatter-gather
2710 * lists).
2711 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002712static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002713 int nelems, enum dma_data_direction dir,
2714 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002715{
2716 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002717 struct protection_domain *domain;
2718 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002719 int i;
2720
Joerg Roedel55877a62008-12-12 15:12:14 +01002721 INC_STATS_COUNTER(cnt_unmap_sg);
2722
Joerg Roedel94f6d192009-11-24 16:40:02 +01002723 domain = get_domain(dev);
2724 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002725 return;
2726
Joerg Roedel65b050a2008-06-26 21:28:02 +02002727 spin_lock_irqsave(&domain->lock, flags);
2728
2729 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002730 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002731 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002732 s->dma_address = s->dma_length = 0;
2733 }
2734
Joerg Roedel17b124b2011-04-06 18:01:35 +02002735 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002736
2737 spin_unlock_irqrestore(&domain->lock, flags);
2738}
2739
Joerg Roedel431b2a22008-07-11 17:14:22 +02002740/*
2741 * The exported alloc_coherent function for dma_ops.
2742 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002743static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002744 dma_addr_t *dma_addr, gfp_t flag,
2745 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002746{
2747 unsigned long flags;
2748 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002749 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002750 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002751 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002752
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002753 INC_STATS_COUNTER(cnt_alloc_coherent);
2754
Joerg Roedel94f6d192009-11-24 16:40:02 +01002755 domain = get_domain(dev);
2756 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002757 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2758 *dma_addr = __pa(virt_addr);
2759 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002760 } else if (IS_ERR(domain))
2761 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002762
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002763 dma_mask = dev->coherent_dma_mask;
2764 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2765 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002766
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002767 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2768 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302769 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002770
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002771 paddr = virt_to_phys(virt_addr);
2772
Joerg Roedel832a90c2008-09-18 15:54:23 +02002773 if (!dma_mask)
2774 dma_mask = *dev->dma_mask;
2775
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002776 spin_lock_irqsave(&domain->lock, flags);
2777
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002778 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002779 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002780
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002781 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002782 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002783 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002784 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002785
Joerg Roedel17b124b2011-04-06 18:01:35 +02002786 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002787
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002788 spin_unlock_irqrestore(&domain->lock, flags);
2789
2790 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002791
2792out_free:
2793
2794 free_pages((unsigned long)virt_addr, get_order(size));
2795
2796 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002797}
2798
Joerg Roedel431b2a22008-07-11 17:14:22 +02002799/*
2800 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002801 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002802static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002803 void *virt_addr, dma_addr_t dma_addr,
2804 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002805{
2806 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002807 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002808
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002809 INC_STATS_COUNTER(cnt_free_coherent);
2810
Joerg Roedel94f6d192009-11-24 16:40:02 +01002811 domain = get_domain(dev);
2812 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002813 goto free_mem;
2814
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002815 spin_lock_irqsave(&domain->lock, flags);
2816
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002817 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002818
Joerg Roedel17b124b2011-04-06 18:01:35 +02002819 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002820
2821 spin_unlock_irqrestore(&domain->lock, flags);
2822
2823free_mem:
2824 free_pages((unsigned long)virt_addr, get_order(size));
2825}
2826
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002827/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002828 * This function is called by the DMA layer to find out if we can handle a
2829 * particular device. It is part of the dma_ops.
2830 */
2831static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2832{
Joerg Roedel420aef82009-11-23 16:14:57 +01002833 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002834}
2835
2836/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002837 * The function for pre-allocating protection domains.
2838 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002839 * If the driver core informs the DMA layer if a driver grabs a device
2840 * we don't need to preallocate the protection domains anymore.
2841 * For now we have to.
2842 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002843static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002844{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002845 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002846 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002847 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002848 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002849
Chris Wrightd18c69d2010-04-02 18:27:55 -07002850 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002851
2852 /* Do we handle this device? */
2853 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002854 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002855
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002856 dev_data = get_dev_data(&dev->dev);
2857 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2858 /* Make sure passthrough domain is allocated */
2859 alloc_passthrough_domain();
2860 dev_data->passthrough = true;
2861 attach_device(&dev->dev, pt_domain);
2862 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2863 dev_name(&dev->dev));
2864 }
2865
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002866 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002867 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002868 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002869
2870 devid = get_device_id(&dev->dev);
2871
Joerg Roedel87a64d52009-11-24 17:26:43 +01002872 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002873 if (!dma_dom)
2874 continue;
2875 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002876 dma_dom->target_dev = devid;
2877
Joerg Roedel15898bb2009-11-24 15:39:42 +01002878 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002879
Joerg Roedelbd60b732008-09-11 10:24:48 +02002880 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002881 }
2882}
2883
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002884static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002885 .alloc = alloc_coherent,
2886 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002887 .map_page = map_page,
2888 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002889 .map_sg = map_sg,
2890 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002891 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002892};
2893
Joerg Roedel27c21272011-05-30 15:56:24 +02002894static unsigned device_dma_ops_init(void)
2895{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002896 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002897 struct pci_dev *pdev = NULL;
2898 unsigned unhandled = 0;
2899
2900 for_each_pci_dev(pdev) {
2901 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002902
2903 iommu_ignore_device(&pdev->dev);
2904
Joerg Roedel27c21272011-05-30 15:56:24 +02002905 unhandled += 1;
2906 continue;
2907 }
2908
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002909 dev_data = get_dev_data(&pdev->dev);
2910
2911 if (!dev_data->passthrough)
2912 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2913 else
2914 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002915 }
2916
2917 return unhandled;
2918}
2919
Joerg Roedel431b2a22008-07-11 17:14:22 +02002920/*
2921 * The function which clues the AMD IOMMU driver into dma_ops.
2922 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002923
2924void __init amd_iommu_init_api(void)
2925{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002926 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002927}
2928
Joerg Roedel6631ee92008-06-26 21:28:05 +02002929int __init amd_iommu_init_dma_ops(void)
2930{
2931 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002932 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002933
Joerg Roedel431b2a22008-07-11 17:14:22 +02002934 /*
2935 * first allocate a default protection domain for every IOMMU we
2936 * found in the system. Devices not assigned to any other
2937 * protection domain will be assigned to the default one.
2938 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002939 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002940 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002941 if (iommu->default_dom == NULL)
2942 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002943 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002944 ret = iommu_init_unity_mappings(iommu);
2945 if (ret)
2946 goto free_domains;
2947 }
2948
Joerg Roedel431b2a22008-07-11 17:14:22 +02002949 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002950 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002951 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002952 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002953
2954 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002955 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002956
Joerg Roedel431b2a22008-07-11 17:14:22 +02002957 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002958 unhandled = device_dma_ops_init();
2959 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2960 /* There are unhandled devices - initialize swiotlb for them */
2961 swiotlb = 1;
2962 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002963
Joerg Roedel7f265082008-12-12 13:50:21 +01002964 amd_iommu_stats_init();
2965
Joerg Roedel6631ee92008-06-26 21:28:05 +02002966 return 0;
2967
2968free_domains:
2969
Joerg Roedel3bd22172009-05-04 15:06:20 +02002970 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002971 if (iommu->default_dom)
2972 dma_ops_domain_free(iommu->default_dom);
2973 }
2974
2975 return ret;
2976}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002977
2978/*****************************************************************************
2979 *
2980 * The following functions belong to the exported interface of AMD IOMMU
2981 *
2982 * This interface allows access to lower level functions of the IOMMU
2983 * like protection domain handling and assignement of devices to domains
2984 * which is not possible with the dma_ops interface.
2985 *
2986 *****************************************************************************/
2987
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002988static void cleanup_domain(struct protection_domain *domain)
2989{
Joerg Roedel492667d2009-11-27 13:25:47 +01002990 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002991 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002992
2993 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2994
Joerg Roedel492667d2009-11-27 13:25:47 +01002995 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002996 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01002997 atomic_set(&dev_data->bind, 0);
2998 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002999
3000 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3001}
3002
Joerg Roedel26508152009-08-26 16:52:40 +02003003static void protection_domain_free(struct protection_domain *domain)
3004{
3005 if (!domain)
3006 return;
3007
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003008 del_domain_from_list(domain);
3009
Joerg Roedel26508152009-08-26 16:52:40 +02003010 if (domain->id)
3011 domain_id_free(domain->id);
3012
3013 kfree(domain);
3014}
3015
3016static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003017{
3018 struct protection_domain *domain;
3019
3020 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3021 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003022 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003023
3024 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003025 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003026 domain->id = domain_id_alloc();
3027 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003028 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003029 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003030
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003031 add_domain_to_list(domain);
3032
Joerg Roedel26508152009-08-26 16:52:40 +02003033 return domain;
3034
3035out_err:
3036 kfree(domain);
3037
3038 return NULL;
3039}
3040
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003041static int __init alloc_passthrough_domain(void)
3042{
3043 if (pt_domain != NULL)
3044 return 0;
3045
3046 /* allocate passthrough domain */
3047 pt_domain = protection_domain_alloc();
3048 if (!pt_domain)
3049 return -ENOMEM;
3050
3051 pt_domain->mode = PAGE_MODE_NONE;
3052
3053 return 0;
3054}
Joerg Roedel26508152009-08-26 16:52:40 +02003055static int amd_iommu_domain_init(struct iommu_domain *dom)
3056{
3057 struct protection_domain *domain;
3058
3059 domain = protection_domain_alloc();
3060 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003061 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003062
3063 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003064 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3065 if (!domain->pt_root)
3066 goto out_free;
3067
Joerg Roedelf3572db2011-11-23 12:36:25 +01003068 domain->iommu_domain = dom;
3069
Joerg Roedelc156e342008-12-02 18:13:27 +01003070 dom->priv = domain;
3071
3072 return 0;
3073
3074out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003075 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003076
3077 return -ENOMEM;
3078}
3079
Joerg Roedel98383fc2008-12-02 18:34:12 +01003080static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3081{
3082 struct protection_domain *domain = dom->priv;
3083
3084 if (!domain)
3085 return;
3086
3087 if (domain->dev_cnt > 0)
3088 cleanup_domain(domain);
3089
3090 BUG_ON(domain->dev_cnt != 0);
3091
Joerg Roedel132bd682011-11-17 14:18:46 +01003092 if (domain->mode != PAGE_MODE_NONE)
3093 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003094
Joerg Roedel52815b72011-11-17 17:24:28 +01003095 if (domain->flags & PD_IOMMUV2_MASK)
3096 free_gcr3_table(domain);
3097
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003098 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003099
3100 dom->priv = NULL;
3101}
3102
Joerg Roedel684f2882008-12-08 12:07:44 +01003103static void amd_iommu_detach_device(struct iommu_domain *dom,
3104 struct device *dev)
3105{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003106 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003107 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003108 u16 devid;
3109
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003110 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003111 return;
3112
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003113 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003114
Joerg Roedel657cbb62009-11-23 15:26:46 +01003115 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003116 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003117
3118 iommu = amd_iommu_rlookup_table[devid];
3119 if (!iommu)
3120 return;
3121
Joerg Roedel684f2882008-12-08 12:07:44 +01003122 iommu_completion_wait(iommu);
3123}
3124
Joerg Roedel01106062008-12-02 19:34:11 +01003125static int amd_iommu_attach_device(struct iommu_domain *dom,
3126 struct device *dev)
3127{
3128 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003129 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003130 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003131 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003132
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003133 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003134 return -EINVAL;
3135
Joerg Roedel657cbb62009-11-23 15:26:46 +01003136 dev_data = dev->archdata.iommu;
3137
Joerg Roedelf62dda62011-06-09 12:55:35 +02003138 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003139 if (!iommu)
3140 return -EINVAL;
3141
Joerg Roedel657cbb62009-11-23 15:26:46 +01003142 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003143 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003144
Joerg Roedel15898bb2009-11-24 15:39:42 +01003145 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003146
3147 iommu_completion_wait(iommu);
3148
Joerg Roedel15898bb2009-11-24 15:39:42 +01003149 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003150}
3151
Joerg Roedel468e2362010-01-21 16:37:36 +01003152static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003153 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003154{
3155 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003156 int prot = 0;
3157 int ret;
3158
Joerg Roedel132bd682011-11-17 14:18:46 +01003159 if (domain->mode == PAGE_MODE_NONE)
3160 return -EINVAL;
3161
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003162 if (iommu_prot & IOMMU_READ)
3163 prot |= IOMMU_PROT_IR;
3164 if (iommu_prot & IOMMU_WRITE)
3165 prot |= IOMMU_PROT_IW;
3166
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003167 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003168 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003169 mutex_unlock(&domain->api_lock);
3170
Joerg Roedel795e74f72010-05-11 17:40:57 +02003171 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003172}
3173
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003174static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3175 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003176{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003177 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003178 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003179
Joerg Roedel132bd682011-11-17 14:18:46 +01003180 if (domain->mode == PAGE_MODE_NONE)
3181 return -EINVAL;
3182
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003183 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003184 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003185 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003186
Joerg Roedel17b124b2011-04-06 18:01:35 +02003187 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003188
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003189 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003190}
3191
Joerg Roedel645c4c82008-12-02 20:05:50 +01003192static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3193 unsigned long iova)
3194{
3195 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003196 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003197 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003198 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003199
Joerg Roedel132bd682011-11-17 14:18:46 +01003200 if (domain->mode == PAGE_MODE_NONE)
3201 return iova;
3202
Joerg Roedel24cd7722010-01-19 17:27:39 +01003203 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003204
Joerg Roedela6d41a42009-09-02 17:08:55 +02003205 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003206 return 0;
3207
Joerg Roedelf03152b2010-01-21 16:15:24 +01003208 if (PM_PTE_LEVEL(*pte) == 0)
3209 offset_mask = PAGE_SIZE - 1;
3210 else
3211 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3212
3213 __pte = *pte & PM_ADDR_MASK;
3214 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003215
3216 return paddr;
3217}
3218
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003219static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3220 unsigned long cap)
3221{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003222 switch (cap) {
3223 case IOMMU_CAP_CACHE_COHERENCY:
3224 return 1;
3225 }
3226
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003227 return 0;
3228}
3229
Alex Williamson8fbdce62011-10-21 15:56:18 -04003230static int amd_iommu_device_group(struct device *dev, unsigned int *groupid)
3231{
3232 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003233 struct pci_dev *pdev = to_pci_dev(dev);
3234 u16 devid;
Alex Williamson8fbdce62011-10-21 15:56:18 -04003235
3236 if (!dev_data)
3237 return -ENODEV;
3238
Alex Williamsonbcb71ab2011-10-21 15:56:24 -04003239 if (pdev->is_virtfn || !iommu_group_mf)
3240 devid = dev_data->devid;
3241 else
3242 devid = calc_devid(pdev->bus->number,
3243 PCI_DEVFN(PCI_SLOT(pdev->devfn), 0));
3244
3245 *groupid = amd_iommu_alias_table[devid];
Alex Williamson8fbdce62011-10-21 15:56:18 -04003246
3247 return 0;
3248}
3249
Joerg Roedel26961ef2008-12-03 17:00:17 +01003250static struct iommu_ops amd_iommu_ops = {
3251 .domain_init = amd_iommu_domain_init,
3252 .domain_destroy = amd_iommu_domain_destroy,
3253 .attach_dev = amd_iommu_attach_device,
3254 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003255 .map = amd_iommu_map,
3256 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003257 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003258 .domain_has_cap = amd_iommu_domain_has_cap,
Alex Williamson8fbdce62011-10-21 15:56:18 -04003259 .device_group = amd_iommu_device_group,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003260 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003261};
3262
Joerg Roedel0feae532009-08-26 15:26:30 +02003263/*****************************************************************************
3264 *
3265 * The next functions do a basic initialization of IOMMU for pass through
3266 * mode
3267 *
3268 * In passthrough mode the IOMMU is initialized and enabled but not used for
3269 * DMA-API translation.
3270 *
3271 *****************************************************************************/
3272
3273int __init amd_iommu_init_passthrough(void)
3274{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003275 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003276 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003277 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003278 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003279 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003280
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003281 ret = alloc_passthrough_domain();
3282 if (ret)
3283 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003284
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003285 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003286 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003287 continue;
3288
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003289 dev_data = get_dev_data(&dev->dev);
3290 dev_data->passthrough = true;
3291
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003292 devid = get_device_id(&dev->dev);
3293
Joerg Roedel15898bb2009-11-24 15:39:42 +01003294 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003295 if (!iommu)
3296 continue;
3297
Joerg Roedel15898bb2009-11-24 15:39:42 +01003298 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003299 }
3300
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003301 amd_iommu_stats_init();
3302
Joerg Roedel0feae532009-08-26 15:26:30 +02003303 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3304
3305 return 0;
3306}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003307
3308/* IOMMUv2 specific functions */
3309int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3310{
3311 return atomic_notifier_chain_register(&ppr_notifier, nb);
3312}
3313EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3314
3315int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3316{
3317 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3318}
3319EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003320
3321void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3322{
3323 struct protection_domain *domain = dom->priv;
3324 unsigned long flags;
3325
3326 spin_lock_irqsave(&domain->lock, flags);
3327
3328 /* Update data structure */
3329 domain->mode = PAGE_MODE_NONE;
3330 domain->updated = true;
3331
3332 /* Make changes visible to IOMMUs */
3333 update_domain(domain);
3334
3335 /* Page-table is not visible to IOMMU anymore, so free it */
3336 free_pagetable(domain);
3337
3338 spin_unlock_irqrestore(&domain->lock, flags);
3339}
3340EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003341
3342int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3343{
3344 struct protection_domain *domain = dom->priv;
3345 unsigned long flags;
3346 int levels, ret;
3347
3348 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3349 return -EINVAL;
3350
3351 /* Number of GCR3 table levels required */
3352 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3353 levels += 1;
3354
3355 if (levels > amd_iommu_max_glx_val)
3356 return -EINVAL;
3357
3358 spin_lock_irqsave(&domain->lock, flags);
3359
3360 /*
3361 * Save us all sanity checks whether devices already in the
3362 * domain support IOMMUv2. Just force that the domain has no
3363 * devices attached when it is switched into IOMMUv2 mode.
3364 */
3365 ret = -EBUSY;
3366 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3367 goto out;
3368
3369 ret = -ENOMEM;
3370 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3371 if (domain->gcr3_tbl == NULL)
3372 goto out;
3373
3374 domain->glx = levels;
3375 domain->flags |= PD_IOMMUV2_MASK;
3376 domain->updated = true;
3377
3378 update_domain(domain);
3379
3380 ret = 0;
3381
3382out:
3383 spin_unlock_irqrestore(&domain->lock, flags);
3384
3385 return ret;
3386}
3387EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003388
3389static int __flush_pasid(struct protection_domain *domain, int pasid,
3390 u64 address, bool size)
3391{
3392 struct iommu_dev_data *dev_data;
3393 struct iommu_cmd cmd;
3394 int i, ret;
3395
3396 if (!(domain->flags & PD_IOMMUV2_MASK))
3397 return -EINVAL;
3398
3399 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3400
3401 /*
3402 * IOMMU TLB needs to be flushed before Device TLB to
3403 * prevent device TLB refill from IOMMU TLB
3404 */
3405 for (i = 0; i < amd_iommus_present; ++i) {
3406 if (domain->dev_iommu[i] == 0)
3407 continue;
3408
3409 ret = iommu_queue_command(amd_iommus[i], &cmd);
3410 if (ret != 0)
3411 goto out;
3412 }
3413
3414 /* Wait until IOMMU TLB flushes are complete */
3415 domain_flush_complete(domain);
3416
3417 /* Now flush device TLBs */
3418 list_for_each_entry(dev_data, &domain->dev_list, list) {
3419 struct amd_iommu *iommu;
3420 int qdep;
3421
3422 BUG_ON(!dev_data->ats.enabled);
3423
3424 qdep = dev_data->ats.qdep;
3425 iommu = amd_iommu_rlookup_table[dev_data->devid];
3426
3427 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3428 qdep, address, size);
3429
3430 ret = iommu_queue_command(iommu, &cmd);
3431 if (ret != 0)
3432 goto out;
3433 }
3434
3435 /* Wait until all device TLBs are flushed */
3436 domain_flush_complete(domain);
3437
3438 ret = 0;
3439
3440out:
3441
3442 return ret;
3443}
3444
3445static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3446 u64 address)
3447{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003448 INC_STATS_COUNTER(invalidate_iotlb);
3449
Joerg Roedel22e266c2011-11-21 15:59:08 +01003450 return __flush_pasid(domain, pasid, address, false);
3451}
3452
3453int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3454 u64 address)
3455{
3456 struct protection_domain *domain = dom->priv;
3457 unsigned long flags;
3458 int ret;
3459
3460 spin_lock_irqsave(&domain->lock, flags);
3461 ret = __amd_iommu_flush_page(domain, pasid, address);
3462 spin_unlock_irqrestore(&domain->lock, flags);
3463
3464 return ret;
3465}
3466EXPORT_SYMBOL(amd_iommu_flush_page);
3467
3468static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3469{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003470 INC_STATS_COUNTER(invalidate_iotlb_all);
3471
Joerg Roedel22e266c2011-11-21 15:59:08 +01003472 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3473 true);
3474}
3475
3476int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3477{
3478 struct protection_domain *domain = dom->priv;
3479 unsigned long flags;
3480 int ret;
3481
3482 spin_lock_irqsave(&domain->lock, flags);
3483 ret = __amd_iommu_flush_tlb(domain, pasid);
3484 spin_unlock_irqrestore(&domain->lock, flags);
3485
3486 return ret;
3487}
3488EXPORT_SYMBOL(amd_iommu_flush_tlb);
3489
Joerg Roedelb16137b2011-11-21 16:50:23 +01003490static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3491{
3492 int index;
3493 u64 *pte;
3494
3495 while (true) {
3496
3497 index = (pasid >> (9 * level)) & 0x1ff;
3498 pte = &root[index];
3499
3500 if (level == 0)
3501 break;
3502
3503 if (!(*pte & GCR3_VALID)) {
3504 if (!alloc)
3505 return NULL;
3506
3507 root = (void *)get_zeroed_page(GFP_ATOMIC);
3508 if (root == NULL)
3509 return NULL;
3510
3511 *pte = __pa(root) | GCR3_VALID;
3512 }
3513
3514 root = __va(*pte & PAGE_MASK);
3515
3516 level -= 1;
3517 }
3518
3519 return pte;
3520}
3521
3522static int __set_gcr3(struct protection_domain *domain, int pasid,
3523 unsigned long cr3)
3524{
3525 u64 *pte;
3526
3527 if (domain->mode != PAGE_MODE_NONE)
3528 return -EINVAL;
3529
3530 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3531 if (pte == NULL)
3532 return -ENOMEM;
3533
3534 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3535
3536 return __amd_iommu_flush_tlb(domain, pasid);
3537}
3538
3539static int __clear_gcr3(struct protection_domain *domain, int pasid)
3540{
3541 u64 *pte;
3542
3543 if (domain->mode != PAGE_MODE_NONE)
3544 return -EINVAL;
3545
3546 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3547 if (pte == NULL)
3548 return 0;
3549
3550 *pte = 0;
3551
3552 return __amd_iommu_flush_tlb(domain, pasid);
3553}
3554
3555int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3556 unsigned long cr3)
3557{
3558 struct protection_domain *domain = dom->priv;
3559 unsigned long flags;
3560 int ret;
3561
3562 spin_lock_irqsave(&domain->lock, flags);
3563 ret = __set_gcr3(domain, pasid, cr3);
3564 spin_unlock_irqrestore(&domain->lock, flags);
3565
3566 return ret;
3567}
3568EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3569
3570int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3571{
3572 struct protection_domain *domain = dom->priv;
3573 unsigned long flags;
3574 int ret;
3575
3576 spin_lock_irqsave(&domain->lock, flags);
3577 ret = __clear_gcr3(domain, pasid);
3578 spin_unlock_irqrestore(&domain->lock, flags);
3579
3580 return ret;
3581}
3582EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003583
3584int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3585 int status, int tag)
3586{
3587 struct iommu_dev_data *dev_data;
3588 struct amd_iommu *iommu;
3589 struct iommu_cmd cmd;
3590
Joerg Roedel399be2f2011-12-01 16:53:47 +01003591 INC_STATS_COUNTER(complete_ppr);
3592
Joerg Roedelc99afa22011-11-21 18:19:25 +01003593 dev_data = get_dev_data(&pdev->dev);
3594 iommu = amd_iommu_rlookup_table[dev_data->devid];
3595
3596 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3597 tag, dev_data->pri_tlp);
3598
3599 return iommu_queue_command(iommu, &cmd);
3600}
3601EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003602
3603struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3604{
3605 struct protection_domain *domain;
3606
3607 domain = get_domain(&pdev->dev);
3608 if (IS_ERR(domain))
3609 return NULL;
3610
3611 /* Only return IOMMUv2 domains */
3612 if (!(domain->flags & PD_IOMMUV2_MASK))
3613 return NULL;
3614
3615 return domain->iommu_domain;
3616}
3617EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003618
3619void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3620{
3621 struct iommu_dev_data *dev_data;
3622
3623 if (!amd_iommu_v2_supported())
3624 return;
3625
3626 dev_data = get_dev_data(&pdev->dev);
3627 dev_data->errata |= (1 << erratum);
3628}
3629EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003630
3631int amd_iommu_device_info(struct pci_dev *pdev,
3632 struct amd_iommu_device_info *info)
3633{
3634 int max_pasids;
3635 int pos;
3636
3637 if (pdev == NULL || info == NULL)
3638 return -EINVAL;
3639
3640 if (!amd_iommu_v2_supported())
3641 return -EINVAL;
3642
3643 memset(info, 0, sizeof(*info));
3644
3645 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3646 if (pos)
3647 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3648
3649 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3650 if (pos)
3651 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3652
3653 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3654 if (pos) {
3655 int features;
3656
3657 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3658 max_pasids = min(max_pasids, (1 << 20));
3659
3660 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3661 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3662
3663 features = pci_pasid_features(pdev);
3664 if (features & PCI_PASID_CAP_EXEC)
3665 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3666 if (features & PCI_PASID_CAP_PRIV)
3667 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3668 }
3669
3670 return 0;
3671}
3672EXPORT_SYMBOL(amd_iommu_device_info);