blob: 49172393d6ecfd756f22c00d0b4b4ce7b2bac434 [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
Alex Williamson664b6002012-05-30 14:19:31 -0600257static void swap_pci_ref(struct pci_dev **from, struct pci_dev *to)
258{
259 pci_dev_put(*from);
260 *from = to;
261}
262
263#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
264
Joerg Roedel657cbb62009-11-23 15:26:46 +0100265static int iommu_init_device(struct device *dev)
266{
Alex Williamson9dcd6132012-05-30 14:19:07 -0600267 struct pci_dev *dma_pdev, *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100268 struct iommu_dev_data *dev_data;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600269 struct iommu_group *group;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200270 u16 alias;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600271 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100272
273 if (dev->archdata.iommu)
274 return 0;
275
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200276 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100277 if (!dev_data)
278 return -ENOMEM;
279
Joerg Roedelf62dda62011-06-09 12:55:35 +0200280 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200281 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200282 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100283
Joerg Roedel71f77582011-06-09 19:03:15 +0200284 alias_data = find_dev_data(alias);
285 if (alias_data == NULL) {
286 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
287 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200288 free_dev_data(dev_data);
289 return -ENOTSUPP;
290 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200291 dev_data->alias_data = alias_data;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600292
293 dma_pdev = pci_get_bus_and_slot(alias >> 8, alias & 0xff);
294 } else
295 dma_pdev = pci_dev_get(pdev);
296
Alex Williamson664b6002012-05-30 14:19:31 -0600297 swap_pci_ref(&dma_pdev, pci_get_dma_source(dma_pdev));
298
299 if (dma_pdev->multifunction &&
300 !pci_acs_enabled(dma_pdev, REQ_ACS_FLAGS))
301 swap_pci_ref(&dma_pdev,
302 pci_get_slot(dma_pdev->bus,
303 PCI_DEVFN(PCI_SLOT(dma_pdev->devfn),
304 0)));
305
306 while (!pci_is_root_bus(dma_pdev->bus)) {
307 if (pci_acs_path_enabled(dma_pdev->bus->self,
308 NULL, REQ_ACS_FLAGS))
309 break;
310
311 swap_pci_ref(&dma_pdev, pci_dev_get(dma_pdev->bus->self));
312 }
313
Alex Williamson9dcd6132012-05-30 14:19:07 -0600314 group = iommu_group_get(&dma_pdev->dev);
315 pci_dev_put(dma_pdev);
316 if (!group) {
317 group = iommu_group_alloc();
318 if (IS_ERR(group))
319 return PTR_ERR(group);
Joerg Roedel26018872011-06-06 16:50:14 +0200320 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100321
Alex Williamson9dcd6132012-05-30 14:19:07 -0600322 ret = iommu_group_add_device(group, dev);
323
324 iommu_group_put(group);
325
326 if (ret)
327 return ret;
328
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100329 if (pci_iommuv2_capable(pdev)) {
330 struct amd_iommu *iommu;
331
332 iommu = amd_iommu_rlookup_table[dev_data->devid];
333 dev_data->iommu_v2 = iommu->is_iommu_v2;
334 }
335
Joerg Roedel657cbb62009-11-23 15:26:46 +0100336 dev->archdata.iommu = dev_data;
337
Joerg Roedel657cbb62009-11-23 15:26:46 +0100338 return 0;
339}
340
Joerg Roedel26018872011-06-06 16:50:14 +0200341static void iommu_ignore_device(struct device *dev)
342{
343 u16 devid, alias;
344
345 devid = get_device_id(dev);
346 alias = amd_iommu_alias_table[devid];
347
348 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
349 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
350
351 amd_iommu_rlookup_table[devid] = NULL;
352 amd_iommu_rlookup_table[alias] = NULL;
353}
354
Joerg Roedel657cbb62009-11-23 15:26:46 +0100355static void iommu_uninit_device(struct device *dev)
356{
Alex Williamson9dcd6132012-05-30 14:19:07 -0600357 iommu_group_remove_device(dev);
358
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200359 /*
360 * Nothing to do here - we keep dev_data around for unplugged devices
361 * and reuse it when the device is re-plugged - not doing so would
362 * introduce a ton of races.
363 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100364}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100365
366void __init amd_iommu_uninit_devices(void)
367{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200368 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100369 struct pci_dev *pdev = NULL;
370
371 for_each_pci_dev(pdev) {
372
373 if (!check_device(&pdev->dev))
374 continue;
375
376 iommu_uninit_device(&pdev->dev);
377 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200378
379 /* Free all of our dev_data structures */
380 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
381 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100382}
383
384int __init amd_iommu_init_devices(void)
385{
386 struct pci_dev *pdev = NULL;
387 int ret = 0;
388
389 for_each_pci_dev(pdev) {
390
391 if (!check_device(&pdev->dev))
392 continue;
393
394 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200395 if (ret == -ENOTSUPP)
396 iommu_ignore_device(&pdev->dev);
397 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100398 goto out_free;
399 }
400
401 return 0;
402
403out_free:
404
405 amd_iommu_uninit_devices();
406
407 return ret;
408}
Joerg Roedel7f265082008-12-12 13:50:21 +0100409#ifdef CONFIG_AMD_IOMMU_STATS
410
411/*
412 * Initialization code for statistics collection
413 */
414
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100415DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100416DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100417DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100418DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100419DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100420DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100421DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100422DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100423DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100424DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100425DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100426DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100427DECLARE_STATS_COUNTER(complete_ppr);
428DECLARE_STATS_COUNTER(invalidate_iotlb);
429DECLARE_STATS_COUNTER(invalidate_iotlb_all);
430DECLARE_STATS_COUNTER(pri_requests);
431
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100432
Joerg Roedel7f265082008-12-12 13:50:21 +0100433static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100434static struct dentry *de_fflush;
435
436static void amd_iommu_stats_add(struct __iommu_counter *cnt)
437{
438 if (stats_dir == NULL)
439 return;
440
441 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
442 &cnt->value);
443}
444
445static void amd_iommu_stats_init(void)
446{
447 stats_dir = debugfs_create_dir("amd-iommu", NULL);
448 if (stats_dir == NULL)
449 return;
450
Joerg Roedel7f265082008-12-12 13:50:21 +0100451 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
452 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100453
454 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100455 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100456 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100457 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100458 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100459 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100460 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100461 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100462 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100463 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100464 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100465 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100466 amd_iommu_stats_add(&complete_ppr);
467 amd_iommu_stats_add(&invalidate_iotlb);
468 amd_iommu_stats_add(&invalidate_iotlb_all);
469 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100470}
471
472#endif
473
Joerg Roedel431b2a22008-07-11 17:14:22 +0200474/****************************************************************************
475 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200476 * Interrupt handling functions
477 *
478 ****************************************************************************/
479
Joerg Roedele3e59872009-09-03 14:02:10 +0200480static void dump_dte_entry(u16 devid)
481{
482 int i;
483
Joerg Roedelee6c2862011-11-09 12:06:03 +0100484 for (i = 0; i < 4; ++i)
485 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200486 amd_iommu_dev_table[devid].data[i]);
487}
488
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200489static void dump_command(unsigned long phys_addr)
490{
491 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
492 int i;
493
494 for (i = 0; i < 4; ++i)
495 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
496}
497
Joerg Roedela345b232009-09-03 15:01:43 +0200498static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200499{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200500 int type, devid, domid, flags;
501 volatile u32 *event = __evt;
502 int count = 0;
503 u64 address;
504
505retry:
506 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
507 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
508 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
509 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
510 address = (u64)(((u64)event[3]) << 32) | event[2];
511
512 if (type == 0) {
513 /* Did we hit the erratum? */
514 if (++count == LOOP_TIMEOUT) {
515 pr_err("AMD-Vi: No event written to event log\n");
516 return;
517 }
518 udelay(1);
519 goto retry;
520 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200521
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200522 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200523
524 switch (type) {
525 case EVENT_TYPE_ILL_DEV:
526 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
527 "address=0x%016llx flags=0x%04x]\n",
528 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
529 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200530 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200531 break;
532 case EVENT_TYPE_IO_FAULT:
533 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
534 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
535 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
536 domid, address, flags);
537 break;
538 case EVENT_TYPE_DEV_TAB_ERR:
539 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
540 "address=0x%016llx flags=0x%04x]\n",
541 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
542 address, flags);
543 break;
544 case EVENT_TYPE_PAGE_TAB_ERR:
545 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
546 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
547 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
548 domid, address, flags);
549 break;
550 case EVENT_TYPE_ILL_CMD:
551 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200552 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200553 break;
554 case EVENT_TYPE_CMD_HARD_ERR:
555 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
556 "flags=0x%04x]\n", address, flags);
557 break;
558 case EVENT_TYPE_IOTLB_INV_TO:
559 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
560 "address=0x%016llx]\n",
561 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
562 address);
563 break;
564 case EVENT_TYPE_INV_DEV_REQ:
565 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
566 "address=0x%016llx flags=0x%04x]\n",
567 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
568 address, flags);
569 break;
570 default:
571 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
572 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200573
574 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200575}
576
577static void iommu_poll_events(struct amd_iommu *iommu)
578{
579 u32 head, tail;
580 unsigned long flags;
581
582 spin_lock_irqsave(&iommu->lock, flags);
583
584 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
585 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
586
587 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200588 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200589 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
590 }
591
592 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
593
594 spin_unlock_irqrestore(&iommu->lock, flags);
595}
596
Joerg Roedeleee53532012-06-01 15:20:23 +0200597static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100598{
599 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100600
Joerg Roedel399be2f2011-12-01 16:53:47 +0100601 INC_STATS_COUNTER(pri_requests);
602
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100603 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
604 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
605 return;
606 }
607
608 fault.address = raw[1];
609 fault.pasid = PPR_PASID(raw[0]);
610 fault.device_id = PPR_DEVID(raw[0]);
611 fault.tag = PPR_TAG(raw[0]);
612 fault.flags = PPR_FLAGS(raw[0]);
613
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100614 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
615}
616
617static void iommu_poll_ppr_log(struct amd_iommu *iommu)
618{
619 unsigned long flags;
620 u32 head, tail;
621
622 if (iommu->ppr_log == NULL)
623 return;
624
Joerg Roedeleee53532012-06-01 15:20:23 +0200625 /* enable ppr interrupts again */
626 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
627
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100628 spin_lock_irqsave(&iommu->lock, flags);
629
630 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
631 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
632
633 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200634 volatile u64 *raw;
635 u64 entry[2];
636 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100637
Joerg Roedeleee53532012-06-01 15:20:23 +0200638 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100639
Joerg Roedeleee53532012-06-01 15:20:23 +0200640 /*
641 * Hardware bug: Interrupt may arrive before the entry is
642 * written to memory. If this happens we need to wait for the
643 * entry to arrive.
644 */
645 for (i = 0; i < LOOP_TIMEOUT; ++i) {
646 if (PPR_REQ_TYPE(raw[0]) != 0)
647 break;
648 udelay(1);
649 }
650
651 /* Avoid memcpy function-call overhead */
652 entry[0] = raw[0];
653 entry[1] = raw[1];
654
655 /*
656 * To detect the hardware bug we need to clear the entry
657 * back to zero.
658 */
659 raw[0] = raw[1] = 0UL;
660
661 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100662 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
663 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200664
665 /*
666 * Release iommu->lock because ppr-handling might need to
667 * re-aquire it
668 */
669 spin_unlock_irqrestore(&iommu->lock, flags);
670
671 /* Handle PPR entry */
672 iommu_handle_ppr_entry(iommu, entry);
673
674 spin_lock_irqsave(&iommu->lock, flags);
675
676 /* Refresh ring-buffer information */
677 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
679 }
680
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100681 spin_unlock_irqrestore(&iommu->lock, flags);
682}
683
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200684irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200685{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200686 struct amd_iommu *iommu;
687
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100688 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200689 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100690 iommu_poll_ppr_log(iommu);
691 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200692
693 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200694}
695
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200696irqreturn_t amd_iommu_int_handler(int irq, void *data)
697{
698 return IRQ_WAKE_THREAD;
699}
700
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200701/****************************************************************************
702 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200703 * IOMMU command queuing functions
704 *
705 ****************************************************************************/
706
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200707static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200708{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200709 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200710
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200711 while (*sem == 0 && i < LOOP_TIMEOUT) {
712 udelay(1);
713 i += 1;
714 }
715
716 if (i == LOOP_TIMEOUT) {
717 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
718 return -EIO;
719 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200720
721 return 0;
722}
723
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200724static void copy_cmd_to_buffer(struct amd_iommu *iommu,
725 struct iommu_cmd *cmd,
726 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200727{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200728 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200729
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200730 target = iommu->cmd_buf + tail;
731 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200732
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200733 /* Copy command to buffer */
734 memcpy(target, cmd, sizeof(*cmd));
735
736 /* Tell the IOMMU about it */
737 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
738}
739
Joerg Roedel815b33f2011-04-06 17:26:49 +0200740static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200741{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200742 WARN_ON(address & 0x7ULL);
743
Joerg Roedelded46732011-04-06 10:53:48 +0200744 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200745 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
746 cmd->data[1] = upper_32_bits(__pa(address));
747 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200748 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
749}
750
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200751static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
752{
753 memset(cmd, 0, sizeof(*cmd));
754 cmd->data[0] = devid;
755 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
756}
757
Joerg Roedel11b64022011-04-06 11:49:28 +0200758static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
759 size_t size, u16 domid, int pde)
760{
761 u64 pages;
762 int s;
763
764 pages = iommu_num_pages(address, size, PAGE_SIZE);
765 s = 0;
766
767 if (pages > 1) {
768 /*
769 * If we have to flush more than one page, flush all
770 * TLB entries for this domain
771 */
772 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
773 s = 1;
774 }
775
776 address &= PAGE_MASK;
777
778 memset(cmd, 0, sizeof(*cmd));
779 cmd->data[1] |= domid;
780 cmd->data[2] = lower_32_bits(address);
781 cmd->data[3] = upper_32_bits(address);
782 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
783 if (s) /* size bit - we flush more than one 4kb page */
784 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
785 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
786 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
787}
788
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200789static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
790 u64 address, size_t size)
791{
792 u64 pages;
793 int s;
794
795 pages = iommu_num_pages(address, size, PAGE_SIZE);
796 s = 0;
797
798 if (pages > 1) {
799 /*
800 * If we have to flush more than one page, flush all
801 * TLB entries for this domain
802 */
803 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
804 s = 1;
805 }
806
807 address &= PAGE_MASK;
808
809 memset(cmd, 0, sizeof(*cmd));
810 cmd->data[0] = devid;
811 cmd->data[0] |= (qdep & 0xff) << 24;
812 cmd->data[1] = devid;
813 cmd->data[2] = lower_32_bits(address);
814 cmd->data[3] = upper_32_bits(address);
815 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
816 if (s)
817 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
818}
819
Joerg Roedel22e266c2011-11-21 15:59:08 +0100820static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
821 u64 address, bool size)
822{
823 memset(cmd, 0, sizeof(*cmd));
824
825 address &= ~(0xfffULL);
826
827 cmd->data[0] = pasid & PASID_MASK;
828 cmd->data[1] = domid;
829 cmd->data[2] = lower_32_bits(address);
830 cmd->data[3] = upper_32_bits(address);
831 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
832 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
833 if (size)
834 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
835 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
836}
837
838static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
839 int qdep, u64 address, bool size)
840{
841 memset(cmd, 0, sizeof(*cmd));
842
843 address &= ~(0xfffULL);
844
845 cmd->data[0] = devid;
846 cmd->data[0] |= (pasid & 0xff) << 16;
847 cmd->data[0] |= (qdep & 0xff) << 24;
848 cmd->data[1] = devid;
849 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
850 cmd->data[2] = lower_32_bits(address);
851 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
852 cmd->data[3] = upper_32_bits(address);
853 if (size)
854 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
855 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
856}
857
Joerg Roedelc99afa22011-11-21 18:19:25 +0100858static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
859 int status, int tag, bool gn)
860{
861 memset(cmd, 0, sizeof(*cmd));
862
863 cmd->data[0] = devid;
864 if (gn) {
865 cmd->data[1] = pasid & PASID_MASK;
866 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
867 }
868 cmd->data[3] = tag & 0x1ff;
869 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
870
871 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
872}
873
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200874static void build_inv_all(struct iommu_cmd *cmd)
875{
876 memset(cmd, 0, sizeof(*cmd));
877 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200878}
879
Joerg Roedel431b2a22008-07-11 17:14:22 +0200880/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200881 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200882 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200883 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200884static int iommu_queue_command_sync(struct amd_iommu *iommu,
885 struct iommu_cmd *cmd,
886 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200887{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200888 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200889 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200890
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200891 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100892
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200893again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200894 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200895
896 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
897 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
898 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
899 left = (head - next_tail) % iommu->cmd_buf_size;
900
901 if (left <= 2) {
902 struct iommu_cmd sync_cmd;
903 volatile u64 sem = 0;
904 int ret;
905
906 build_completion_wait(&sync_cmd, (u64)&sem);
907 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
908
909 spin_unlock_irqrestore(&iommu->lock, flags);
910
911 if ((ret = wait_on_sem(&sem)) != 0)
912 return ret;
913
914 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200915 }
916
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200917 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200918
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200919 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200920 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200921
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200922 spin_unlock_irqrestore(&iommu->lock, flags);
923
Joerg Roedel815b33f2011-04-06 17:26:49 +0200924 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100925}
926
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200927static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
928{
929 return iommu_queue_command_sync(iommu, cmd, true);
930}
931
Joerg Roedel8d201962008-12-02 20:34:41 +0100932/*
933 * This function queues a completion wait command into the command
934 * buffer of an IOMMU
935 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100936static int iommu_completion_wait(struct amd_iommu *iommu)
937{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200938 struct iommu_cmd cmd;
939 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200940 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100941
942 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200943 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100944
Joerg Roedel815b33f2011-04-06 17:26:49 +0200945 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100946
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200947 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100948 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200949 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100950
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200951 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200952}
953
Joerg Roedeld8c13082011-04-06 18:51:26 +0200954static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200955{
956 struct iommu_cmd cmd;
957
Joerg Roedeld8c13082011-04-06 18:51:26 +0200958 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200959
Joerg Roedeld8c13082011-04-06 18:51:26 +0200960 return iommu_queue_command(iommu, &cmd);
961}
962
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200963static void iommu_flush_dte_all(struct amd_iommu *iommu)
964{
965 u32 devid;
966
967 for (devid = 0; devid <= 0xffff; ++devid)
968 iommu_flush_dte(iommu, devid);
969
970 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200971}
972
973/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200974 * This function uses heavy locking and may disable irqs for some time. But
975 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200976 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200977static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200978{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200979 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200980
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200981 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
982 struct iommu_cmd cmd;
983 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
984 dom_id, 1);
985 iommu_queue_command(iommu, &cmd);
986 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200987
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200988 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200989}
990
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200991static void iommu_flush_all(struct amd_iommu *iommu)
992{
993 struct iommu_cmd cmd;
994
995 build_inv_all(&cmd);
996
997 iommu_queue_command(iommu, &cmd);
998 iommu_completion_wait(iommu);
999}
1000
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001001void iommu_flush_all_caches(struct amd_iommu *iommu)
1002{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001003 if (iommu_feature(iommu, FEATURE_IA)) {
1004 iommu_flush_all(iommu);
1005 } else {
1006 iommu_flush_dte_all(iommu);
1007 iommu_flush_tlb_all(iommu);
1008 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001009}
1010
Joerg Roedel431b2a22008-07-11 17:14:22 +02001011/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001012 * Command send function for flushing on-device TLB
1013 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001014static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1015 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001016{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001017 struct amd_iommu *iommu;
1018 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001019 int qdep;
1020
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001021 qdep = dev_data->ats.qdep;
1022 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001023
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001024 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001025
1026 return iommu_queue_command(iommu, &cmd);
1027}
1028
1029/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001030 * Command send function for invalidating a device table entry
1031 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001032static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001033{
1034 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001035 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001036
Joerg Roedel6c542042011-06-09 17:07:31 +02001037 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001038
Joerg Roedelf62dda62011-06-09 12:55:35 +02001039 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001040 if (ret)
1041 return ret;
1042
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001043 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001044 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001045
1046 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001047}
1048
Joerg Roedel431b2a22008-07-11 17:14:22 +02001049/*
1050 * TLB invalidation function which is called from the mapping functions.
1051 * It invalidates a single PTE if the range to flush is within a single
1052 * page. Otherwise it flushes the whole TLB of the IOMMU.
1053 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001054static void __domain_flush_pages(struct protection_domain *domain,
1055 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001056{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001057 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001058 struct iommu_cmd cmd;
1059 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001060
Joerg Roedel11b64022011-04-06 11:49:28 +02001061 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001062
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001063 for (i = 0; i < amd_iommus_present; ++i) {
1064 if (!domain->dev_iommu[i])
1065 continue;
1066
1067 /*
1068 * Devices of this domain are behind this IOMMU
1069 * We need a TLB flush
1070 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001071 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001072 }
1073
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001074 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001075
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001076 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001077 continue;
1078
Joerg Roedel6c542042011-06-09 17:07:31 +02001079 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001080 }
1081
Joerg Roedel11b64022011-04-06 11:49:28 +02001082 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001083}
1084
Joerg Roedel17b124b2011-04-06 18:01:35 +02001085static void domain_flush_pages(struct protection_domain *domain,
1086 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001087{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001088 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001089}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001090
Joerg Roedel1c655772008-09-04 18:40:05 +02001091/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001092static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001093{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001094 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001095}
1096
Chris Wright42a49f92009-06-15 15:42:00 +02001097/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001098static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001099{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001100 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1101}
1102
1103static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001104{
1105 int i;
1106
1107 for (i = 0; i < amd_iommus_present; ++i) {
1108 if (!domain->dev_iommu[i])
1109 continue;
1110
1111 /*
1112 * Devices of this domain are behind this IOMMU
1113 * We need to wait for completion of all commands.
1114 */
1115 iommu_completion_wait(amd_iommus[i]);
1116 }
1117}
1118
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001119
Joerg Roedel43f49602008-12-02 21:01:12 +01001120/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001121 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001122 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001123static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001124{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001125 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001126
1127 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001128 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001129}
1130
Joerg Roedel431b2a22008-07-11 17:14:22 +02001131/****************************************************************************
1132 *
1133 * The functions below are used the create the page table mappings for
1134 * unity mapped regions.
1135 *
1136 ****************************************************************************/
1137
1138/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001139 * This function is used to add another level to an IO page table. Adding
1140 * another level increases the size of the address space by 9 bits to a size up
1141 * to 64 bits.
1142 */
1143static bool increase_address_space(struct protection_domain *domain,
1144 gfp_t gfp)
1145{
1146 u64 *pte;
1147
1148 if (domain->mode == PAGE_MODE_6_LEVEL)
1149 /* address space already 64 bit large */
1150 return false;
1151
1152 pte = (void *)get_zeroed_page(gfp);
1153 if (!pte)
1154 return false;
1155
1156 *pte = PM_LEVEL_PDE(domain->mode,
1157 virt_to_phys(domain->pt_root));
1158 domain->pt_root = pte;
1159 domain->mode += 1;
1160 domain->updated = true;
1161
1162 return true;
1163}
1164
1165static u64 *alloc_pte(struct protection_domain *domain,
1166 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001167 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001168 u64 **pte_page,
1169 gfp_t gfp)
1170{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001171 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001172 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001173
1174 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001175
1176 while (address > PM_LEVEL_SIZE(domain->mode))
1177 increase_address_space(domain, gfp);
1178
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001179 level = domain->mode - 1;
1180 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1181 address = PAGE_SIZE_ALIGN(address, page_size);
1182 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001183
1184 while (level > end_lvl) {
1185 if (!IOMMU_PTE_PRESENT(*pte)) {
1186 page = (u64 *)get_zeroed_page(gfp);
1187 if (!page)
1188 return NULL;
1189 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1190 }
1191
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001192 /* No level skipping support yet */
1193 if (PM_PTE_LEVEL(*pte) != level)
1194 return NULL;
1195
Joerg Roedel308973d2009-11-24 17:43:32 +01001196 level -= 1;
1197
1198 pte = IOMMU_PTE_PAGE(*pte);
1199
1200 if (pte_page && level == end_lvl)
1201 *pte_page = pte;
1202
1203 pte = &pte[PM_LEVEL_INDEX(level, address)];
1204 }
1205
1206 return pte;
1207}
1208
1209/*
1210 * This function checks if there is a PTE for a given dma address. If
1211 * there is one, it returns the pointer to it.
1212 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001213static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001214{
1215 int level;
1216 u64 *pte;
1217
Joerg Roedel24cd7722010-01-19 17:27:39 +01001218 if (address > PM_LEVEL_SIZE(domain->mode))
1219 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001220
Joerg Roedel24cd7722010-01-19 17:27:39 +01001221 level = domain->mode - 1;
1222 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1223
1224 while (level > 0) {
1225
1226 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001227 if (!IOMMU_PTE_PRESENT(*pte))
1228 return NULL;
1229
Joerg Roedel24cd7722010-01-19 17:27:39 +01001230 /* Large PTE */
1231 if (PM_PTE_LEVEL(*pte) == 0x07) {
1232 unsigned long pte_mask, __pte;
1233
1234 /*
1235 * If we have a series of large PTEs, make
1236 * sure to return a pointer to the first one.
1237 */
1238 pte_mask = PTE_PAGE_SIZE(*pte);
1239 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1240 __pte = ((unsigned long)pte) & pte_mask;
1241
1242 return (u64 *)__pte;
1243 }
1244
1245 /* No level skipping support yet */
1246 if (PM_PTE_LEVEL(*pte) != level)
1247 return NULL;
1248
Joerg Roedel308973d2009-11-24 17:43:32 +01001249 level -= 1;
1250
Joerg Roedel24cd7722010-01-19 17:27:39 +01001251 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001252 pte = IOMMU_PTE_PAGE(*pte);
1253 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 }
1255
1256 return pte;
1257}
1258
1259/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001260 * Generic mapping functions. It maps a physical address into a DMA
1261 * address space. It allocates the page table pages if necessary.
1262 * In the future it can be extended to a generic mapping function
1263 * supporting all features of AMD IOMMU page tables like level skipping
1264 * and full 64 bit address spaces.
1265 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001266static int iommu_map_page(struct protection_domain *dom,
1267 unsigned long bus_addr,
1268 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001269 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001270 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001271{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001272 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001273 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001274
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001275 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001276 return -EINVAL;
1277
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001278 bus_addr = PAGE_ALIGN(bus_addr);
1279 phys_addr = PAGE_ALIGN(phys_addr);
1280 count = PAGE_SIZE_PTE_COUNT(page_size);
1281 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001282
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001283 for (i = 0; i < count; ++i)
1284 if (IOMMU_PTE_PRESENT(pte[i]))
1285 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001286
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001287 if (page_size > PAGE_SIZE) {
1288 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1289 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1290 } else
1291 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1292
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001293 if (prot & IOMMU_PROT_IR)
1294 __pte |= IOMMU_PTE_IR;
1295 if (prot & IOMMU_PROT_IW)
1296 __pte |= IOMMU_PTE_IW;
1297
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001298 for (i = 0; i < count; ++i)
1299 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001300
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001301 update_domain(dom);
1302
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001303 return 0;
1304}
1305
Joerg Roedel24cd7722010-01-19 17:27:39 +01001306static unsigned long iommu_unmap_page(struct protection_domain *dom,
1307 unsigned long bus_addr,
1308 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001309{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001310 unsigned long long unmap_size, unmapped;
1311 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001312
Joerg Roedel24cd7722010-01-19 17:27:39 +01001313 BUG_ON(!is_power_of_2(page_size));
1314
1315 unmapped = 0;
1316
1317 while (unmapped < page_size) {
1318
1319 pte = fetch_pte(dom, bus_addr);
1320
1321 if (!pte) {
1322 /*
1323 * No PTE for this address
1324 * move forward in 4kb steps
1325 */
1326 unmap_size = PAGE_SIZE;
1327 } else if (PM_PTE_LEVEL(*pte) == 0) {
1328 /* 4kb PTE found for this address */
1329 unmap_size = PAGE_SIZE;
1330 *pte = 0ULL;
1331 } else {
1332 int count, i;
1333
1334 /* Large PTE found which maps this address */
1335 unmap_size = PTE_PAGE_SIZE(*pte);
1336 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1337 for (i = 0; i < count; i++)
1338 pte[i] = 0ULL;
1339 }
1340
1341 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1342 unmapped += unmap_size;
1343 }
1344
1345 BUG_ON(!is_power_of_2(unmapped));
1346
1347 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001348}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001349
Joerg Roedel431b2a22008-07-11 17:14:22 +02001350/*
1351 * This function checks if a specific unity mapping entry is needed for
1352 * this specific IOMMU.
1353 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001354static int iommu_for_unity_map(struct amd_iommu *iommu,
1355 struct unity_map_entry *entry)
1356{
1357 u16 bdf, i;
1358
1359 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1360 bdf = amd_iommu_alias_table[i];
1361 if (amd_iommu_rlookup_table[bdf] == iommu)
1362 return 1;
1363 }
1364
1365 return 0;
1366}
1367
Joerg Roedel431b2a22008-07-11 17:14:22 +02001368/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001369 * This function actually applies the mapping to the page table of the
1370 * dma_ops domain.
1371 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001372static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1373 struct unity_map_entry *e)
1374{
1375 u64 addr;
1376 int ret;
1377
1378 for (addr = e->address_start; addr < e->address_end;
1379 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001380 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001381 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001382 if (ret)
1383 return ret;
1384 /*
1385 * if unity mapping is in aperture range mark the page
1386 * as allocated in the aperture
1387 */
1388 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001389 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001390 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001391 }
1392
1393 return 0;
1394}
1395
Joerg Roedel431b2a22008-07-11 17:14:22 +02001396/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001397 * Init the unity mappings for a specific IOMMU in the system
1398 *
1399 * Basically iterates over all unity mapping entries and applies them to
1400 * the default domain DMA of that IOMMU if necessary.
1401 */
1402static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1403{
1404 struct unity_map_entry *entry;
1405 int ret;
1406
1407 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1408 if (!iommu_for_unity_map(iommu, entry))
1409 continue;
1410 ret = dma_ops_unity_map(iommu->default_dom, entry);
1411 if (ret)
1412 return ret;
1413 }
1414
1415 return 0;
1416}
1417
1418/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001419 * Inits the unity mappings required for a specific device
1420 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001421static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1422 u16 devid)
1423{
1424 struct unity_map_entry *e;
1425 int ret;
1426
1427 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1428 if (!(devid >= e->devid_start && devid <= e->devid_end))
1429 continue;
1430 ret = dma_ops_unity_map(dma_dom, e);
1431 if (ret)
1432 return ret;
1433 }
1434
1435 return 0;
1436}
1437
Joerg Roedel431b2a22008-07-11 17:14:22 +02001438/****************************************************************************
1439 *
1440 * The next functions belong to the address allocator for the dma_ops
1441 * interface functions. They work like the allocators in the other IOMMU
1442 * drivers. Its basically a bitmap which marks the allocated pages in
1443 * the aperture. Maybe it could be enhanced in the future to a more
1444 * efficient allocator.
1445 *
1446 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001447
Joerg Roedel431b2a22008-07-11 17:14:22 +02001448/*
Joerg Roedel384de722009-05-15 12:30:05 +02001449 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001450 *
1451 * called with domain->lock held
1452 */
Joerg Roedel384de722009-05-15 12:30:05 +02001453
Joerg Roedel9cabe892009-05-18 16:38:55 +02001454/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001455 * Used to reserve address ranges in the aperture (e.g. for exclusion
1456 * ranges.
1457 */
1458static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1459 unsigned long start_page,
1460 unsigned int pages)
1461{
1462 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1463
1464 if (start_page + pages > last_page)
1465 pages = last_page - start_page;
1466
1467 for (i = start_page; i < start_page + pages; ++i) {
1468 int index = i / APERTURE_RANGE_PAGES;
1469 int page = i % APERTURE_RANGE_PAGES;
1470 __set_bit(page, dom->aperture[index]->bitmap);
1471 }
1472}
1473
1474/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001475 * This function is used to add a new aperture range to an existing
1476 * aperture in case of dma_ops domain allocation or address allocation
1477 * failure.
1478 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001479static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001480 bool populate, gfp_t gfp)
1481{
1482 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001483 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001484 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001485
Joerg Roedelf5e97052009-05-22 12:31:53 +02001486#ifdef CONFIG_IOMMU_STRESS
1487 populate = false;
1488#endif
1489
Joerg Roedel9cabe892009-05-18 16:38:55 +02001490 if (index >= APERTURE_MAX_RANGES)
1491 return -ENOMEM;
1492
1493 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1494 if (!dma_dom->aperture[index])
1495 return -ENOMEM;
1496
1497 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1498 if (!dma_dom->aperture[index]->bitmap)
1499 goto out_free;
1500
1501 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1502
1503 if (populate) {
1504 unsigned long address = dma_dom->aperture_size;
1505 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1506 u64 *pte, *pte_page;
1507
1508 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001509 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001510 &pte_page, gfp);
1511 if (!pte)
1512 goto out_free;
1513
1514 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1515
1516 address += APERTURE_RANGE_SIZE / 64;
1517 }
1518 }
1519
Joerg Roedel17f5b562011-07-06 17:14:44 +02001520 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001521 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1522
Joerg Roedel17f5b562011-07-06 17:14:44 +02001523 /* Reserve address range used for MSI messages */
1524 if (old_size < MSI_ADDR_BASE_LO &&
1525 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1526 unsigned long spage;
1527 int pages;
1528
1529 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1530 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1531
1532 dma_ops_reserve_addresses(dma_dom, spage, pages);
1533 }
1534
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001535 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001536 for_each_iommu(iommu) {
1537 if (iommu->exclusion_start &&
1538 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1539 && iommu->exclusion_start < dma_dom->aperture_size) {
1540 unsigned long startpage;
1541 int pages = iommu_num_pages(iommu->exclusion_start,
1542 iommu->exclusion_length,
1543 PAGE_SIZE);
1544 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1545 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1546 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001547 }
1548
1549 /*
1550 * Check for areas already mapped as present in the new aperture
1551 * range and mark those pages as reserved in the allocator. Such
1552 * mappings may already exist as a result of requested unity
1553 * mappings for devices.
1554 */
1555 for (i = dma_dom->aperture[index]->offset;
1556 i < dma_dom->aperture_size;
1557 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001558 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001559 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1560 continue;
1561
Joerg Roedelfcd08612011-10-11 17:41:32 +02001562 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001563 }
1564
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001565 update_domain(&dma_dom->domain);
1566
Joerg Roedel9cabe892009-05-18 16:38:55 +02001567 return 0;
1568
1569out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001570 update_domain(&dma_dom->domain);
1571
Joerg Roedel9cabe892009-05-18 16:38:55 +02001572 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1573
1574 kfree(dma_dom->aperture[index]);
1575 dma_dom->aperture[index] = NULL;
1576
1577 return -ENOMEM;
1578}
1579
Joerg Roedel384de722009-05-15 12:30:05 +02001580static unsigned long dma_ops_area_alloc(struct device *dev,
1581 struct dma_ops_domain *dom,
1582 unsigned int pages,
1583 unsigned long align_mask,
1584 u64 dma_mask,
1585 unsigned long start)
1586{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001587 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001588 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1589 int i = start >> APERTURE_RANGE_SHIFT;
1590 unsigned long boundary_size;
1591 unsigned long address = -1;
1592 unsigned long limit;
1593
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001594 next_bit >>= PAGE_SHIFT;
1595
Joerg Roedel384de722009-05-15 12:30:05 +02001596 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1597 PAGE_SIZE) >> PAGE_SHIFT;
1598
1599 for (;i < max_index; ++i) {
1600 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1601
1602 if (dom->aperture[i]->offset >= dma_mask)
1603 break;
1604
1605 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1606 dma_mask >> PAGE_SHIFT);
1607
1608 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1609 limit, next_bit, pages, 0,
1610 boundary_size, align_mask);
1611 if (address != -1) {
1612 address = dom->aperture[i]->offset +
1613 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001614 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001615 break;
1616 }
1617
1618 next_bit = 0;
1619 }
1620
1621 return address;
1622}
1623
Joerg Roedeld3086442008-06-26 21:27:57 +02001624static unsigned long dma_ops_alloc_addresses(struct device *dev,
1625 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001626 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001627 unsigned long align_mask,
1628 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001629{
Joerg Roedeld3086442008-06-26 21:27:57 +02001630 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001631
Joerg Roedelfe16f082009-05-22 12:27:53 +02001632#ifdef CONFIG_IOMMU_STRESS
1633 dom->next_address = 0;
1634 dom->need_flush = true;
1635#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001636
Joerg Roedel384de722009-05-15 12:30:05 +02001637 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001638 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001639
Joerg Roedel1c655772008-09-04 18:40:05 +02001640 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001641 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001642 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1643 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001644 dom->need_flush = true;
1645 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001646
Joerg Roedel384de722009-05-15 12:30:05 +02001647 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001648 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001649
1650 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1651
1652 return address;
1653}
1654
Joerg Roedel431b2a22008-07-11 17:14:22 +02001655/*
1656 * The address free function.
1657 *
1658 * called with domain->lock held
1659 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001660static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1661 unsigned long address,
1662 unsigned int pages)
1663{
Joerg Roedel384de722009-05-15 12:30:05 +02001664 unsigned i = address >> APERTURE_RANGE_SHIFT;
1665 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001666
Joerg Roedel384de722009-05-15 12:30:05 +02001667 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1668
Joerg Roedel47bccd62009-05-22 12:40:54 +02001669#ifdef CONFIG_IOMMU_STRESS
1670 if (i < 4)
1671 return;
1672#endif
1673
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001674 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001675 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001676
1677 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001678
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001679 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001680
Joerg Roedeld3086442008-06-26 21:27:57 +02001681}
1682
Joerg Roedel431b2a22008-07-11 17:14:22 +02001683/****************************************************************************
1684 *
1685 * The next functions belong to the domain allocation. A domain is
1686 * allocated for every IOMMU as the default domain. If device isolation
1687 * is enabled, every device get its own domain. The most important thing
1688 * about domains is the page table mapping the DMA address space they
1689 * contain.
1690 *
1691 ****************************************************************************/
1692
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001693/*
1694 * This function adds a protection domain to the global protection domain list
1695 */
1696static void add_domain_to_list(struct protection_domain *domain)
1697{
1698 unsigned long flags;
1699
1700 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1701 list_add(&domain->list, &amd_iommu_pd_list);
1702 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1703}
1704
1705/*
1706 * This function removes a protection domain to the global
1707 * protection domain list
1708 */
1709static void del_domain_from_list(struct protection_domain *domain)
1710{
1711 unsigned long flags;
1712
1713 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1714 list_del(&domain->list);
1715 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1716}
1717
Joerg Roedelec487d12008-06-26 21:27:58 +02001718static u16 domain_id_alloc(void)
1719{
1720 unsigned long flags;
1721 int id;
1722
1723 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1724 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1725 BUG_ON(id == 0);
1726 if (id > 0 && id < MAX_DOMAIN_ID)
1727 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1728 else
1729 id = 0;
1730 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1731
1732 return id;
1733}
1734
Joerg Roedela2acfb72008-12-02 18:28:53 +01001735static void domain_id_free(int id)
1736{
1737 unsigned long flags;
1738
1739 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1740 if (id > 0 && id < MAX_DOMAIN_ID)
1741 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1742 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1743}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001744
Joerg Roedel86db2e52008-12-02 18:20:21 +01001745static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001746{
1747 int i, j;
1748 u64 *p1, *p2, *p3;
1749
Joerg Roedel86db2e52008-12-02 18:20:21 +01001750 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001751
1752 if (!p1)
1753 return;
1754
1755 for (i = 0; i < 512; ++i) {
1756 if (!IOMMU_PTE_PRESENT(p1[i]))
1757 continue;
1758
1759 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001760 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001761 if (!IOMMU_PTE_PRESENT(p2[j]))
1762 continue;
1763 p3 = IOMMU_PTE_PAGE(p2[j]);
1764 free_page((unsigned long)p3);
1765 }
1766
1767 free_page((unsigned long)p2);
1768 }
1769
1770 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001771
1772 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001773}
1774
Joerg Roedelb16137b2011-11-21 16:50:23 +01001775static void free_gcr3_tbl_level1(u64 *tbl)
1776{
1777 u64 *ptr;
1778 int i;
1779
1780 for (i = 0; i < 512; ++i) {
1781 if (!(tbl[i] & GCR3_VALID))
1782 continue;
1783
1784 ptr = __va(tbl[i] & PAGE_MASK);
1785
1786 free_page((unsigned long)ptr);
1787 }
1788}
1789
1790static void free_gcr3_tbl_level2(u64 *tbl)
1791{
1792 u64 *ptr;
1793 int i;
1794
1795 for (i = 0; i < 512; ++i) {
1796 if (!(tbl[i] & GCR3_VALID))
1797 continue;
1798
1799 ptr = __va(tbl[i] & PAGE_MASK);
1800
1801 free_gcr3_tbl_level1(ptr);
1802 }
1803}
1804
Joerg Roedel52815b72011-11-17 17:24:28 +01001805static void free_gcr3_table(struct protection_domain *domain)
1806{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001807 if (domain->glx == 2)
1808 free_gcr3_tbl_level2(domain->gcr3_tbl);
1809 else if (domain->glx == 1)
1810 free_gcr3_tbl_level1(domain->gcr3_tbl);
1811 else if (domain->glx != 0)
1812 BUG();
1813
Joerg Roedel52815b72011-11-17 17:24:28 +01001814 free_page((unsigned long)domain->gcr3_tbl);
1815}
1816
Joerg Roedel431b2a22008-07-11 17:14:22 +02001817/*
1818 * Free a domain, only used if something went wrong in the
1819 * allocation path and we need to free an already allocated page table
1820 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001821static void dma_ops_domain_free(struct dma_ops_domain *dom)
1822{
Joerg Roedel384de722009-05-15 12:30:05 +02001823 int i;
1824
Joerg Roedelec487d12008-06-26 21:27:58 +02001825 if (!dom)
1826 return;
1827
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001828 del_domain_from_list(&dom->domain);
1829
Joerg Roedel86db2e52008-12-02 18:20:21 +01001830 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001831
Joerg Roedel384de722009-05-15 12:30:05 +02001832 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1833 if (!dom->aperture[i])
1834 continue;
1835 free_page((unsigned long)dom->aperture[i]->bitmap);
1836 kfree(dom->aperture[i]);
1837 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001838
1839 kfree(dom);
1840}
1841
Joerg Roedel431b2a22008-07-11 17:14:22 +02001842/*
1843 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001844 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001845 * structures required for the dma_ops interface
1846 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001847static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001848{
1849 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001850
1851 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1852 if (!dma_dom)
1853 return NULL;
1854
1855 spin_lock_init(&dma_dom->domain.lock);
1856
1857 dma_dom->domain.id = domain_id_alloc();
1858 if (dma_dom->domain.id == 0)
1859 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001860 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001861 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001862 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001863 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001864 dma_dom->domain.priv = dma_dom;
1865 if (!dma_dom->domain.pt_root)
1866 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001867
Joerg Roedel1c655772008-09-04 18:40:05 +02001868 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001869 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001870
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001871 add_domain_to_list(&dma_dom->domain);
1872
Joerg Roedel576175c2009-11-23 19:08:46 +01001873 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001874 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001875
Joerg Roedel431b2a22008-07-11 17:14:22 +02001876 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001877 * mark the first page as allocated so we never return 0 as
1878 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001879 */
Joerg Roedel384de722009-05-15 12:30:05 +02001880 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001881 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001882
Joerg Roedelec487d12008-06-26 21:27:58 +02001883
1884 return dma_dom;
1885
1886free_dma_dom:
1887 dma_ops_domain_free(dma_dom);
1888
1889 return NULL;
1890}
1891
Joerg Roedel431b2a22008-07-11 17:14:22 +02001892/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001893 * little helper function to check whether a given protection domain is a
1894 * dma_ops domain
1895 */
1896static bool dma_ops_domain(struct protection_domain *domain)
1897{
1898 return domain->flags & PD_DMA_OPS_MASK;
1899}
1900
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001901static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001902{
Joerg Roedel132bd682011-11-17 14:18:46 +01001903 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001904 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001905
Joerg Roedel132bd682011-11-17 14:18:46 +01001906 if (domain->mode != PAGE_MODE_NONE)
1907 pte_root = virt_to_phys(domain->pt_root);
1908
Joerg Roedel38ddf412008-09-11 10:38:32 +02001909 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1910 << DEV_ENTRY_MODE_SHIFT;
1911 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001912
Joerg Roedelee6c2862011-11-09 12:06:03 +01001913 flags = amd_iommu_dev_table[devid].data[1];
1914
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001915 if (ats)
1916 flags |= DTE_FLAG_IOTLB;
1917
Joerg Roedel52815b72011-11-17 17:24:28 +01001918 if (domain->flags & PD_IOMMUV2_MASK) {
1919 u64 gcr3 = __pa(domain->gcr3_tbl);
1920 u64 glx = domain->glx;
1921 u64 tmp;
1922
1923 pte_root |= DTE_FLAG_GV;
1924 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1925
1926 /* First mask out possible old values for GCR3 table */
1927 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1928 flags &= ~tmp;
1929
1930 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1931 flags &= ~tmp;
1932
1933 /* Encode GCR3 table into DTE */
1934 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1935 pte_root |= tmp;
1936
1937 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1938 flags |= tmp;
1939
1940 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1941 flags |= tmp;
1942 }
1943
Joerg Roedelee6c2862011-11-09 12:06:03 +01001944 flags &= ~(0xffffUL);
1945 flags |= domain->id;
1946
1947 amd_iommu_dev_table[devid].data[1] = flags;
1948 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001949}
1950
Joerg Roedel15898bb2009-11-24 15:39:42 +01001951static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001952{
Joerg Roedel355bf552008-12-08 12:02:41 +01001953 /* remove entry from the device table seen by the hardware */
1954 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1955 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001956
Joerg Roedelc5cca142009-10-09 18:31:20 +02001957 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001958}
1959
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001960static void do_attach(struct iommu_dev_data *dev_data,
1961 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001962{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001963 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001964 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001965
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001966 iommu = amd_iommu_rlookup_table[dev_data->devid];
1967 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001968
1969 /* Update data structures */
1970 dev_data->domain = domain;
1971 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001972 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001973
1974 /* Do reference counting */
1975 domain->dev_iommu[iommu->index] += 1;
1976 domain->dev_cnt += 1;
1977
1978 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001979 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001980}
1981
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001982static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001983{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001984 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001985
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001986 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001987
Joerg Roedelc4596112009-11-20 14:57:32 +01001988 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001989 dev_data->domain->dev_iommu[iommu->index] -= 1;
1990 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001991
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001992 /* Update data structures */
1993 dev_data->domain = NULL;
1994 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001995 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001996
1997 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001998 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001999}
2000
2001/*
2002 * If a device is not yet associated with a domain, this function does
2003 * assigns it visible for the hardware
2004 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002005static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002006 struct protection_domain *domain)
2007{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002008 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002009
Joerg Roedel15898bb2009-11-24 15:39:42 +01002010 /* lock domain */
2011 spin_lock(&domain->lock);
2012
Joerg Roedel71f77582011-06-09 19:03:15 +02002013 if (dev_data->alias_data != NULL) {
2014 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002015
Joerg Roedel2b02b092011-06-09 17:48:39 +02002016 /* Some sanity checks */
2017 ret = -EBUSY;
2018 if (alias_data->domain != NULL &&
2019 alias_data->domain != domain)
2020 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002021
Joerg Roedel2b02b092011-06-09 17:48:39 +02002022 if (dev_data->domain != NULL &&
2023 dev_data->domain != domain)
2024 goto out_unlock;
2025
2026 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002027 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002028 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002029
2030 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002031 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002032
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002033 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002034 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002035
Joerg Roedel24100052009-11-25 15:59:57 +01002036 atomic_inc(&dev_data->bind);
2037
Julia Lawall84fe6c12010-05-27 12:31:51 +02002038 ret = 0;
2039
2040out_unlock:
2041
Joerg Roedel355bf552008-12-08 12:02:41 +01002042 /* ready */
2043 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002044
Julia Lawall84fe6c12010-05-27 12:31:51 +02002045 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002046}
2047
Joerg Roedel52815b72011-11-17 17:24:28 +01002048
2049static void pdev_iommuv2_disable(struct pci_dev *pdev)
2050{
2051 pci_disable_ats(pdev);
2052 pci_disable_pri(pdev);
2053 pci_disable_pasid(pdev);
2054}
2055
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002056/* FIXME: Change generic reset-function to do the same */
2057static int pri_reset_while_enabled(struct pci_dev *pdev)
2058{
2059 u16 control;
2060 int pos;
2061
Joerg Roedel46277b72011-12-07 14:34:02 +01002062 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002063 if (!pos)
2064 return -EINVAL;
2065
Joerg Roedel46277b72011-12-07 14:34:02 +01002066 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2067 control |= PCI_PRI_CTRL_RESET;
2068 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002069
2070 return 0;
2071}
2072
Joerg Roedel52815b72011-11-17 17:24:28 +01002073static int pdev_iommuv2_enable(struct pci_dev *pdev)
2074{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002075 bool reset_enable;
2076 int reqs, ret;
2077
2078 /* FIXME: Hardcode number of outstanding requests for now */
2079 reqs = 32;
2080 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2081 reqs = 1;
2082 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002083
2084 /* Only allow access to user-accessible pages */
2085 ret = pci_enable_pasid(pdev, 0);
2086 if (ret)
2087 goto out_err;
2088
2089 /* First reset the PRI state of the device */
2090 ret = pci_reset_pri(pdev);
2091 if (ret)
2092 goto out_err;
2093
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002094 /* Enable PRI */
2095 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002096 if (ret)
2097 goto out_err;
2098
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002099 if (reset_enable) {
2100 ret = pri_reset_while_enabled(pdev);
2101 if (ret)
2102 goto out_err;
2103 }
2104
Joerg Roedel52815b72011-11-17 17:24:28 +01002105 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2106 if (ret)
2107 goto out_err;
2108
2109 return 0;
2110
2111out_err:
2112 pci_disable_pri(pdev);
2113 pci_disable_pasid(pdev);
2114
2115 return ret;
2116}
2117
Joerg Roedelc99afa22011-11-21 18:19:25 +01002118/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002119#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002120
2121bool pci_pri_tlp_required(struct pci_dev *pdev)
2122{
Joerg Roedela3b93122012-04-12 12:49:26 +02002123 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002124 int pos;
2125
Joerg Roedel46277b72011-12-07 14:34:02 +01002126 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002127 if (!pos)
2128 return false;
2129
Joerg Roedela3b93122012-04-12 12:49:26 +02002130 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002131
Joerg Roedela3b93122012-04-12 12:49:26 +02002132 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002133}
2134
Joerg Roedel15898bb2009-11-24 15:39:42 +01002135/*
2136 * If a device is not yet associated with a domain, this function does
2137 * assigns it visible for the hardware
2138 */
2139static int attach_device(struct device *dev,
2140 struct protection_domain *domain)
2141{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002142 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002143 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002144 unsigned long flags;
2145 int ret;
2146
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002147 dev_data = get_dev_data(dev);
2148
Joerg Roedel52815b72011-11-17 17:24:28 +01002149 if (domain->flags & PD_IOMMUV2_MASK) {
2150 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2151 return -EINVAL;
2152
2153 if (pdev_iommuv2_enable(pdev) != 0)
2154 return -EINVAL;
2155
2156 dev_data->ats.enabled = true;
2157 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002158 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002159 } else if (amd_iommu_iotlb_sup &&
2160 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002161 dev_data->ats.enabled = true;
2162 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2163 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002164
Joerg Roedel15898bb2009-11-24 15:39:42 +01002165 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002166 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002167 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2168
2169 /*
2170 * We might boot into a crash-kernel here. The crashed kernel
2171 * left the caches in the IOMMU dirty. So we have to flush
2172 * here to evict all dirty stuff.
2173 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002174 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002175
2176 return ret;
2177}
2178
2179/*
2180 * Removes a device from a protection domain (unlocked)
2181 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002182static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002183{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002184 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002185 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002186
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002187 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002188
Joerg Roedel2ca76272010-01-22 16:45:31 +01002189 domain = dev_data->domain;
2190
2191 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002192
Joerg Roedel71f77582011-06-09 19:03:15 +02002193 if (dev_data->alias_data != NULL) {
2194 struct iommu_dev_data *alias_data = dev_data->alias_data;
2195
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002196 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002197 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002198 }
2199
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002200 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002201 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002202
Joerg Roedel2ca76272010-01-22 16:45:31 +01002203 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002204
Joerg Roedel21129f72009-09-01 11:59:42 +02002205 /*
2206 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002207 * passthrough domain if it is detached from any other domain.
2208 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002209 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002210 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002211 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002212 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002213}
2214
2215/*
2216 * Removes a device from a protection domain (with devtable_lock held)
2217 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002218static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002219{
Joerg Roedel52815b72011-11-17 17:24:28 +01002220 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002221 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002222 unsigned long flags;
2223
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002224 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002225 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002226
Joerg Roedel355bf552008-12-08 12:02:41 +01002227 /* lock device table */
2228 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002229 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002230 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002231
Joerg Roedel52815b72011-11-17 17:24:28 +01002232 if (domain->flags & PD_IOMMUV2_MASK)
2233 pdev_iommuv2_disable(to_pci_dev(dev));
2234 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002235 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002236
2237 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002238}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002239
Joerg Roedel15898bb2009-11-24 15:39:42 +01002240/*
2241 * Find out the protection domain structure for a given PCI device. This
2242 * will give us the pointer to the page table root for example.
2243 */
2244static struct protection_domain *domain_for_device(struct device *dev)
2245{
Joerg Roedel71f77582011-06-09 19:03:15 +02002246 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002247 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002248 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002249
Joerg Roedel657cbb62009-11-23 15:26:46 +01002250 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002251
Joerg Roedel2b02b092011-06-09 17:48:39 +02002252 if (dev_data->domain)
2253 return dev_data->domain;
2254
Joerg Roedel71f77582011-06-09 19:03:15 +02002255 if (dev_data->alias_data != NULL) {
2256 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002257
2258 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2259 if (alias_data->domain != NULL) {
2260 __attach_device(dev_data, alias_data->domain);
2261 dom = alias_data->domain;
2262 }
2263 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002264 }
2265
Joerg Roedel15898bb2009-11-24 15:39:42 +01002266 return dom;
2267}
2268
Joerg Roedele275a2a2008-12-10 18:27:25 +01002269static int device_change_notifier(struct notifier_block *nb,
2270 unsigned long action, void *data)
2271{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002272 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002273 struct protection_domain *domain;
2274 struct iommu_dev_data *dev_data;
2275 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002276 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002277 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002278 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002279
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002280 if (!check_device(dev))
2281 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002282
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002283 devid = get_device_id(dev);
2284 iommu = amd_iommu_rlookup_table[devid];
2285 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002286
2287 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002288 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002289
2290 domain = domain_for_device(dev);
2291
Joerg Roedele275a2a2008-12-10 18:27:25 +01002292 if (!domain)
2293 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002294 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002295 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002296 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002297 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002298 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002299
2300 iommu_init_device(dev);
2301
2302 domain = domain_for_device(dev);
2303
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002304 /* allocate a protection domain if a device is added */
2305 dma_domain = find_protection_domain(devid);
2306 if (dma_domain)
2307 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002308 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002309 if (!dma_domain)
2310 goto out;
2311 dma_domain->target_dev = devid;
2312
2313 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2314 list_add_tail(&dma_domain->list, &iommu_pd_list);
2315 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2316
2317 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002318 case BUS_NOTIFY_DEL_DEVICE:
2319
2320 iommu_uninit_device(dev);
2321
Joerg Roedele275a2a2008-12-10 18:27:25 +01002322 default:
2323 goto out;
2324 }
2325
Joerg Roedele275a2a2008-12-10 18:27:25 +01002326 iommu_completion_wait(iommu);
2327
2328out:
2329 return 0;
2330}
2331
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302332static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002333 .notifier_call = device_change_notifier,
2334};
Joerg Roedel355bf552008-12-08 12:02:41 +01002335
Joerg Roedel8638c492009-12-10 11:12:25 +01002336void amd_iommu_init_notifier(void)
2337{
2338 bus_register_notifier(&pci_bus_type, &device_nb);
2339}
2340
Joerg Roedel431b2a22008-07-11 17:14:22 +02002341/*****************************************************************************
2342 *
2343 * The next functions belong to the dma_ops mapping/unmapping code.
2344 *
2345 *****************************************************************************/
2346
2347/*
2348 * In the dma_ops path we only have the struct device. This function
2349 * finds the corresponding IOMMU, the protection domain and the
2350 * requestor id for a given device.
2351 * If the device is not yet associated with a domain this is also done
2352 * in this function.
2353 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002354static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002355{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002356 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002357 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002358 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002359
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002360 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002361 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002362
Joerg Roedel94f6d192009-11-24 16:40:02 +01002363 domain = domain_for_device(dev);
2364 if (domain != NULL && !dma_ops_domain(domain))
2365 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002366
Joerg Roedel94f6d192009-11-24 16:40:02 +01002367 if (domain != NULL)
2368 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002369
Joerg Roedel15898bb2009-11-24 15:39:42 +01002370 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002371 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002372 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002373 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2374 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002375 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002376 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002377
Joerg Roedel94f6d192009-11-24 16:40:02 +01002378 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002379}
2380
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002381static void update_device_table(struct protection_domain *domain)
2382{
Joerg Roedel492667d2009-11-27 13:25:47 +01002383 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002384
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002385 list_for_each_entry(dev_data, &domain->dev_list, list)
2386 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002387}
2388
2389static void update_domain(struct protection_domain *domain)
2390{
2391 if (!domain->updated)
2392 return;
2393
2394 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002395
2396 domain_flush_devices(domain);
2397 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002398
2399 domain->updated = false;
2400}
2401
Joerg Roedel431b2a22008-07-11 17:14:22 +02002402/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002403 * This function fetches the PTE for a given address in the aperture
2404 */
2405static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2406 unsigned long address)
2407{
Joerg Roedel384de722009-05-15 12:30:05 +02002408 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002409 u64 *pte, *pte_page;
2410
Joerg Roedel384de722009-05-15 12:30:05 +02002411 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2412 if (!aperture)
2413 return NULL;
2414
2415 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002416 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002417 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002418 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002419 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2420 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002421 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002422
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002423 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002424
2425 return pte;
2426}
2427
2428/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002429 * This is the generic map function. It maps one 4kb page at paddr to
2430 * the given address in the DMA address space for the domain.
2431 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002432static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002433 unsigned long address,
2434 phys_addr_t paddr,
2435 int direction)
2436{
2437 u64 *pte, __pte;
2438
2439 WARN_ON(address > dom->aperture_size);
2440
2441 paddr &= PAGE_MASK;
2442
Joerg Roedel8bda3092009-05-12 12:02:46 +02002443 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002444 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002445 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002446
2447 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2448
2449 if (direction == DMA_TO_DEVICE)
2450 __pte |= IOMMU_PTE_IR;
2451 else if (direction == DMA_FROM_DEVICE)
2452 __pte |= IOMMU_PTE_IW;
2453 else if (direction == DMA_BIDIRECTIONAL)
2454 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2455
2456 WARN_ON(*pte);
2457
2458 *pte = __pte;
2459
2460 return (dma_addr_t)address;
2461}
2462
Joerg Roedel431b2a22008-07-11 17:14:22 +02002463/*
2464 * The generic unmapping function for on page in the DMA address space.
2465 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002466static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002467 unsigned long address)
2468{
Joerg Roedel384de722009-05-15 12:30:05 +02002469 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002470 u64 *pte;
2471
2472 if (address >= dom->aperture_size)
2473 return;
2474
Joerg Roedel384de722009-05-15 12:30:05 +02002475 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2476 if (!aperture)
2477 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002478
Joerg Roedel384de722009-05-15 12:30:05 +02002479 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2480 if (!pte)
2481 return;
2482
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002483 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002484
2485 WARN_ON(!*pte);
2486
2487 *pte = 0ULL;
2488}
2489
Joerg Roedel431b2a22008-07-11 17:14:22 +02002490/*
2491 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002492 * contiguous memory region into DMA address space. It is used by all
2493 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002494 * Must be called with the domain lock held.
2495 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002496static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002497 struct dma_ops_domain *dma_dom,
2498 phys_addr_t paddr,
2499 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002500 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002501 bool align,
2502 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002503{
2504 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002505 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002506 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002507 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002508 int i;
2509
Joerg Roedele3c449f2008-10-15 22:02:11 -07002510 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002511 paddr &= PAGE_MASK;
2512
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002513 INC_STATS_COUNTER(total_map_requests);
2514
Joerg Roedelc1858972008-12-12 15:42:39 +01002515 if (pages > 1)
2516 INC_STATS_COUNTER(cross_page);
2517
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002518 if (align)
2519 align_mask = (1UL << get_order(size)) - 1;
2520
Joerg Roedel11b83882009-05-19 10:23:15 +02002521retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002522 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2523 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002524 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002525 /*
2526 * setting next_address here will let the address
2527 * allocator only scan the new allocated range in the
2528 * first run. This is a small optimization.
2529 */
2530 dma_dom->next_address = dma_dom->aperture_size;
2531
Joerg Roedel576175c2009-11-23 19:08:46 +01002532 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002533 goto out;
2534
2535 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002536 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002537 * allocation again
2538 */
2539 goto retry;
2540 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002541
2542 start = address;
2543 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002544 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002545 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002546 goto out_unmap;
2547
Joerg Roedelcb76c322008-06-26 21:28:00 +02002548 paddr += PAGE_SIZE;
2549 start += PAGE_SIZE;
2550 }
2551 address += offset;
2552
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002553 ADD_STATS_COUNTER(alloced_io_mem, size);
2554
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002555 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002556 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002557 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002558 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002559 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002560
Joerg Roedelcb76c322008-06-26 21:28:00 +02002561out:
2562 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002563
2564out_unmap:
2565
2566 for (--i; i >= 0; --i) {
2567 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002568 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002569 }
2570
2571 dma_ops_free_addresses(dma_dom, address, pages);
2572
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002573 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002574}
2575
Joerg Roedel431b2a22008-07-11 17:14:22 +02002576/*
2577 * Does the reverse of the __map_single function. Must be called with
2578 * the domain lock held too
2579 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002580static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002581 dma_addr_t dma_addr,
2582 size_t size,
2583 int dir)
2584{
Joerg Roedel04e04632010-09-23 16:12:48 +02002585 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002586 dma_addr_t i, start;
2587 unsigned int pages;
2588
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002589 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002590 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002591 return;
2592
Joerg Roedel04e04632010-09-23 16:12:48 +02002593 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002594 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002595 dma_addr &= PAGE_MASK;
2596 start = dma_addr;
2597
2598 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002599 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002600 start += PAGE_SIZE;
2601 }
2602
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002603 SUB_STATS_COUNTER(alloced_io_mem, size);
2604
Joerg Roedelcb76c322008-06-26 21:28:00 +02002605 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002606
Joerg Roedel80be3082008-11-06 14:59:05 +01002607 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002608 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002609 dma_dom->need_flush = false;
2610 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002611}
2612
Joerg Roedel431b2a22008-07-11 17:14:22 +02002613/*
2614 * The exported map_single function for dma_ops.
2615 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002616static dma_addr_t map_page(struct device *dev, struct page *page,
2617 unsigned long offset, size_t size,
2618 enum dma_data_direction dir,
2619 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002620{
2621 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002622 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002623 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002624 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002625 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002626
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002627 INC_STATS_COUNTER(cnt_map_single);
2628
Joerg Roedel94f6d192009-11-24 16:40:02 +01002629 domain = get_domain(dev);
2630 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002631 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002632 else if (IS_ERR(domain))
2633 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002634
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002635 dma_mask = *dev->dma_mask;
2636
Joerg Roedel4da70b92008-06-26 21:28:01 +02002637 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002638
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002639 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002640 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002641 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002642 goto out;
2643
Joerg Roedel17b124b2011-04-06 18:01:35 +02002644 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002645
2646out:
2647 spin_unlock_irqrestore(&domain->lock, flags);
2648
2649 return addr;
2650}
2651
Joerg Roedel431b2a22008-07-11 17:14:22 +02002652/*
2653 * The exported unmap_single function for dma_ops.
2654 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002655static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2656 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002657{
2658 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002659 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002660
Joerg Roedel146a6912008-12-12 15:07:12 +01002661 INC_STATS_COUNTER(cnt_unmap_single);
2662
Joerg Roedel94f6d192009-11-24 16:40:02 +01002663 domain = get_domain(dev);
2664 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002665 return;
2666
Joerg Roedel4da70b92008-06-26 21:28:01 +02002667 spin_lock_irqsave(&domain->lock, flags);
2668
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002669 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002670
Joerg Roedel17b124b2011-04-06 18:01:35 +02002671 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002672
2673 spin_unlock_irqrestore(&domain->lock, flags);
2674}
2675
Joerg Roedel431b2a22008-07-11 17:14:22 +02002676/*
2677 * This is a special map_sg function which is used if we should map a
2678 * device which is not handled by an AMD IOMMU in the system.
2679 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002680static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2681 int nelems, int dir)
2682{
2683 struct scatterlist *s;
2684 int i;
2685
2686 for_each_sg(sglist, s, nelems, i) {
2687 s->dma_address = (dma_addr_t)sg_phys(s);
2688 s->dma_length = s->length;
2689 }
2690
2691 return nelems;
2692}
2693
Joerg Roedel431b2a22008-07-11 17:14:22 +02002694/*
2695 * The exported map_sg function for dma_ops (handles scatter-gather
2696 * lists).
2697 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002698static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002699 int nelems, enum dma_data_direction dir,
2700 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002701{
2702 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002703 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002704 int i;
2705 struct scatterlist *s;
2706 phys_addr_t paddr;
2707 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002708 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002709
Joerg Roedeld03f0672008-12-12 15:09:48 +01002710 INC_STATS_COUNTER(cnt_map_sg);
2711
Joerg Roedel94f6d192009-11-24 16:40:02 +01002712 domain = get_domain(dev);
2713 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002714 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002715 else if (IS_ERR(domain))
2716 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002717
Joerg Roedel832a90c2008-09-18 15:54:23 +02002718 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002719
Joerg Roedel65b050a2008-06-26 21:28:02 +02002720 spin_lock_irqsave(&domain->lock, flags);
2721
2722 for_each_sg(sglist, s, nelems, i) {
2723 paddr = sg_phys(s);
2724
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002725 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002726 paddr, s->length, dir, false,
2727 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002728
2729 if (s->dma_address) {
2730 s->dma_length = s->length;
2731 mapped_elems++;
2732 } else
2733 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002734 }
2735
Joerg Roedel17b124b2011-04-06 18:01:35 +02002736 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002737
2738out:
2739 spin_unlock_irqrestore(&domain->lock, flags);
2740
2741 return mapped_elems;
2742unmap:
2743 for_each_sg(sglist, s, mapped_elems, i) {
2744 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002745 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002746 s->dma_length, dir);
2747 s->dma_address = s->dma_length = 0;
2748 }
2749
2750 mapped_elems = 0;
2751
2752 goto out;
2753}
2754
Joerg Roedel431b2a22008-07-11 17:14:22 +02002755/*
2756 * The exported map_sg function for dma_ops (handles scatter-gather
2757 * lists).
2758 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002759static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002760 int nelems, enum dma_data_direction dir,
2761 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002762{
2763 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002764 struct protection_domain *domain;
2765 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002766 int i;
2767
Joerg Roedel55877a62008-12-12 15:12:14 +01002768 INC_STATS_COUNTER(cnt_unmap_sg);
2769
Joerg Roedel94f6d192009-11-24 16:40:02 +01002770 domain = get_domain(dev);
2771 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002772 return;
2773
Joerg Roedel65b050a2008-06-26 21:28:02 +02002774 spin_lock_irqsave(&domain->lock, flags);
2775
2776 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002777 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002778 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002779 s->dma_address = s->dma_length = 0;
2780 }
2781
Joerg Roedel17b124b2011-04-06 18:01:35 +02002782 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002783
2784 spin_unlock_irqrestore(&domain->lock, flags);
2785}
2786
Joerg Roedel431b2a22008-07-11 17:14:22 +02002787/*
2788 * The exported alloc_coherent function for dma_ops.
2789 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002790static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002791 dma_addr_t *dma_addr, gfp_t flag,
2792 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002793{
2794 unsigned long flags;
2795 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002796 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002797 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002798 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002799
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002800 INC_STATS_COUNTER(cnt_alloc_coherent);
2801
Joerg Roedel94f6d192009-11-24 16:40:02 +01002802 domain = get_domain(dev);
2803 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002804 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2805 *dma_addr = __pa(virt_addr);
2806 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002807 } else if (IS_ERR(domain))
2808 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002809
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002810 dma_mask = dev->coherent_dma_mask;
2811 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2812 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002813
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002814 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2815 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302816 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002817
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002818 paddr = virt_to_phys(virt_addr);
2819
Joerg Roedel832a90c2008-09-18 15:54:23 +02002820 if (!dma_mask)
2821 dma_mask = *dev->dma_mask;
2822
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002823 spin_lock_irqsave(&domain->lock, flags);
2824
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002825 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002826 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002827
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002828 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002829 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002830 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002831 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002832
Joerg Roedel17b124b2011-04-06 18:01:35 +02002833 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002834
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002835 spin_unlock_irqrestore(&domain->lock, flags);
2836
2837 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002838
2839out_free:
2840
2841 free_pages((unsigned long)virt_addr, get_order(size));
2842
2843 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002844}
2845
Joerg Roedel431b2a22008-07-11 17:14:22 +02002846/*
2847 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002848 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002849static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002850 void *virt_addr, dma_addr_t dma_addr,
2851 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002852{
2853 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002854 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002855
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002856 INC_STATS_COUNTER(cnt_free_coherent);
2857
Joerg Roedel94f6d192009-11-24 16:40:02 +01002858 domain = get_domain(dev);
2859 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002860 goto free_mem;
2861
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002862 spin_lock_irqsave(&domain->lock, flags);
2863
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002864 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002865
Joerg Roedel17b124b2011-04-06 18:01:35 +02002866 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002867
2868 spin_unlock_irqrestore(&domain->lock, flags);
2869
2870free_mem:
2871 free_pages((unsigned long)virt_addr, get_order(size));
2872}
2873
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002874/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002875 * This function is called by the DMA layer to find out if we can handle a
2876 * particular device. It is part of the dma_ops.
2877 */
2878static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2879{
Joerg Roedel420aef82009-11-23 16:14:57 +01002880 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002881}
2882
2883/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002884 * The function for pre-allocating protection domains.
2885 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002886 * If the driver core informs the DMA layer if a driver grabs a device
2887 * we don't need to preallocate the protection domains anymore.
2888 * For now we have to.
2889 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002890static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002891{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002892 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002893 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002894 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002895 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002896
Chris Wrightd18c69d2010-04-02 18:27:55 -07002897 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002898
2899 /* Do we handle this device? */
2900 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002901 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002902
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002903 dev_data = get_dev_data(&dev->dev);
2904 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2905 /* Make sure passthrough domain is allocated */
2906 alloc_passthrough_domain();
2907 dev_data->passthrough = true;
2908 attach_device(&dev->dev, pt_domain);
2909 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2910 dev_name(&dev->dev));
2911 }
2912
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002913 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002914 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002915 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002916
2917 devid = get_device_id(&dev->dev);
2918
Joerg Roedel87a64d52009-11-24 17:26:43 +01002919 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002920 if (!dma_dom)
2921 continue;
2922 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002923 dma_dom->target_dev = devid;
2924
Joerg Roedel15898bb2009-11-24 15:39:42 +01002925 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002926
Joerg Roedelbd60b732008-09-11 10:24:48 +02002927 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002928 }
2929}
2930
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002931static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002932 .alloc = alloc_coherent,
2933 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002934 .map_page = map_page,
2935 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002936 .map_sg = map_sg,
2937 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002938 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002939};
2940
Joerg Roedel27c21272011-05-30 15:56:24 +02002941static unsigned device_dma_ops_init(void)
2942{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002943 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002944 struct pci_dev *pdev = NULL;
2945 unsigned unhandled = 0;
2946
2947 for_each_pci_dev(pdev) {
2948 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01002949
2950 iommu_ignore_device(&pdev->dev);
2951
Joerg Roedel27c21272011-05-30 15:56:24 +02002952 unhandled += 1;
2953 continue;
2954 }
2955
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002956 dev_data = get_dev_data(&pdev->dev);
2957
2958 if (!dev_data->passthrough)
2959 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2960 else
2961 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002962 }
2963
2964 return unhandled;
2965}
2966
Joerg Roedel431b2a22008-07-11 17:14:22 +02002967/*
2968 * The function which clues the AMD IOMMU driver into dma_ops.
2969 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002970
2971void __init amd_iommu_init_api(void)
2972{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002973 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002974}
2975
Joerg Roedel6631ee92008-06-26 21:28:05 +02002976int __init amd_iommu_init_dma_ops(void)
2977{
2978 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002979 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002980
Joerg Roedel431b2a22008-07-11 17:14:22 +02002981 /*
2982 * first allocate a default protection domain for every IOMMU we
2983 * found in the system. Devices not assigned to any other
2984 * protection domain will be assigned to the default one.
2985 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002986 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002987 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002988 if (iommu->default_dom == NULL)
2989 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002990 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002991 ret = iommu_init_unity_mappings(iommu);
2992 if (ret)
2993 goto free_domains;
2994 }
2995
Joerg Roedel431b2a22008-07-11 17:14:22 +02002996 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002997 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002998 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002999 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003000
3001 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003002 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003003
Joerg Roedel431b2a22008-07-11 17:14:22 +02003004 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003005 unhandled = device_dma_ops_init();
3006 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3007 /* There are unhandled devices - initialize swiotlb for them */
3008 swiotlb = 1;
3009 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003010
Joerg Roedel7f265082008-12-12 13:50:21 +01003011 amd_iommu_stats_init();
3012
Joerg Roedel6631ee92008-06-26 21:28:05 +02003013 return 0;
3014
3015free_domains:
3016
Joerg Roedel3bd22172009-05-04 15:06:20 +02003017 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02003018 if (iommu->default_dom)
3019 dma_ops_domain_free(iommu->default_dom);
3020 }
3021
3022 return ret;
3023}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003024
3025/*****************************************************************************
3026 *
3027 * The following functions belong to the exported interface of AMD IOMMU
3028 *
3029 * This interface allows access to lower level functions of the IOMMU
3030 * like protection domain handling and assignement of devices to domains
3031 * which is not possible with the dma_ops interface.
3032 *
3033 *****************************************************************************/
3034
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003035static void cleanup_domain(struct protection_domain *domain)
3036{
Joerg Roedel492667d2009-11-27 13:25:47 +01003037 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003038 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003039
3040 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3041
Joerg Roedel492667d2009-11-27 13:25:47 +01003042 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003043 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003044 atomic_set(&dev_data->bind, 0);
3045 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003046
3047 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3048}
3049
Joerg Roedel26508152009-08-26 16:52:40 +02003050static void protection_domain_free(struct protection_domain *domain)
3051{
3052 if (!domain)
3053 return;
3054
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003055 del_domain_from_list(domain);
3056
Joerg Roedel26508152009-08-26 16:52:40 +02003057 if (domain->id)
3058 domain_id_free(domain->id);
3059
3060 kfree(domain);
3061}
3062
3063static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003064{
3065 struct protection_domain *domain;
3066
3067 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3068 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003069 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003070
3071 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003072 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003073 domain->id = domain_id_alloc();
3074 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003075 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003076 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003077
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003078 add_domain_to_list(domain);
3079
Joerg Roedel26508152009-08-26 16:52:40 +02003080 return domain;
3081
3082out_err:
3083 kfree(domain);
3084
3085 return NULL;
3086}
3087
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003088static int __init alloc_passthrough_domain(void)
3089{
3090 if (pt_domain != NULL)
3091 return 0;
3092
3093 /* allocate passthrough domain */
3094 pt_domain = protection_domain_alloc();
3095 if (!pt_domain)
3096 return -ENOMEM;
3097
3098 pt_domain->mode = PAGE_MODE_NONE;
3099
3100 return 0;
3101}
Joerg Roedel26508152009-08-26 16:52:40 +02003102static int amd_iommu_domain_init(struct iommu_domain *dom)
3103{
3104 struct protection_domain *domain;
3105
3106 domain = protection_domain_alloc();
3107 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003108 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003109
3110 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003111 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3112 if (!domain->pt_root)
3113 goto out_free;
3114
Joerg Roedelf3572db2011-11-23 12:36:25 +01003115 domain->iommu_domain = dom;
3116
Joerg Roedelc156e342008-12-02 18:13:27 +01003117 dom->priv = domain;
3118
3119 return 0;
3120
3121out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003122 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003123
3124 return -ENOMEM;
3125}
3126
Joerg Roedel98383fc2008-12-02 18:34:12 +01003127static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3128{
3129 struct protection_domain *domain = dom->priv;
3130
3131 if (!domain)
3132 return;
3133
3134 if (domain->dev_cnt > 0)
3135 cleanup_domain(domain);
3136
3137 BUG_ON(domain->dev_cnt != 0);
3138
Joerg Roedel132bd682011-11-17 14:18:46 +01003139 if (domain->mode != PAGE_MODE_NONE)
3140 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003141
Joerg Roedel52815b72011-11-17 17:24:28 +01003142 if (domain->flags & PD_IOMMUV2_MASK)
3143 free_gcr3_table(domain);
3144
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003145 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003146
3147 dom->priv = NULL;
3148}
3149
Joerg Roedel684f2882008-12-08 12:07:44 +01003150static void amd_iommu_detach_device(struct iommu_domain *dom,
3151 struct device *dev)
3152{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003153 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003154 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003155 u16 devid;
3156
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003157 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003158 return;
3159
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003160 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003161
Joerg Roedel657cbb62009-11-23 15:26:46 +01003162 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003163 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003164
3165 iommu = amd_iommu_rlookup_table[devid];
3166 if (!iommu)
3167 return;
3168
Joerg Roedel684f2882008-12-08 12:07:44 +01003169 iommu_completion_wait(iommu);
3170}
3171
Joerg Roedel01106062008-12-02 19:34:11 +01003172static int amd_iommu_attach_device(struct iommu_domain *dom,
3173 struct device *dev)
3174{
3175 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003176 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003177 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003178 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003179
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003180 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003181 return -EINVAL;
3182
Joerg Roedel657cbb62009-11-23 15:26:46 +01003183 dev_data = dev->archdata.iommu;
3184
Joerg Roedelf62dda62011-06-09 12:55:35 +02003185 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003186 if (!iommu)
3187 return -EINVAL;
3188
Joerg Roedel657cbb62009-11-23 15:26:46 +01003189 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003190 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003191
Joerg Roedel15898bb2009-11-24 15:39:42 +01003192 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003193
3194 iommu_completion_wait(iommu);
3195
Joerg Roedel15898bb2009-11-24 15:39:42 +01003196 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003197}
3198
Joerg Roedel468e2362010-01-21 16:37:36 +01003199static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003200 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003201{
3202 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003203 int prot = 0;
3204 int ret;
3205
Joerg Roedel132bd682011-11-17 14:18:46 +01003206 if (domain->mode == PAGE_MODE_NONE)
3207 return -EINVAL;
3208
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003209 if (iommu_prot & IOMMU_READ)
3210 prot |= IOMMU_PROT_IR;
3211 if (iommu_prot & IOMMU_WRITE)
3212 prot |= IOMMU_PROT_IW;
3213
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003214 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003215 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003216 mutex_unlock(&domain->api_lock);
3217
Joerg Roedel795e74f72010-05-11 17:40:57 +02003218 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003219}
3220
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003221static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3222 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003223{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003224 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003225 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003226
Joerg Roedel132bd682011-11-17 14:18:46 +01003227 if (domain->mode == PAGE_MODE_NONE)
3228 return -EINVAL;
3229
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003230 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003231 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003232 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003233
Joerg Roedel17b124b2011-04-06 18:01:35 +02003234 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003235
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003236 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003237}
3238
Joerg Roedel645c4c82008-12-02 20:05:50 +01003239static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3240 unsigned long iova)
3241{
3242 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003243 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003244 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003245 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003246
Joerg Roedel132bd682011-11-17 14:18:46 +01003247 if (domain->mode == PAGE_MODE_NONE)
3248 return iova;
3249
Joerg Roedel24cd7722010-01-19 17:27:39 +01003250 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003251
Joerg Roedela6d41a42009-09-02 17:08:55 +02003252 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003253 return 0;
3254
Joerg Roedelf03152b2010-01-21 16:15:24 +01003255 if (PM_PTE_LEVEL(*pte) == 0)
3256 offset_mask = PAGE_SIZE - 1;
3257 else
3258 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3259
3260 __pte = *pte & PM_ADDR_MASK;
3261 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003262
3263 return paddr;
3264}
3265
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003266static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3267 unsigned long cap)
3268{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003269 switch (cap) {
3270 case IOMMU_CAP_CACHE_COHERENCY:
3271 return 1;
3272 }
3273
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003274 return 0;
3275}
3276
Joerg Roedel26961ef2008-12-03 17:00:17 +01003277static struct iommu_ops amd_iommu_ops = {
3278 .domain_init = amd_iommu_domain_init,
3279 .domain_destroy = amd_iommu_domain_destroy,
3280 .attach_dev = amd_iommu_attach_device,
3281 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003282 .map = amd_iommu_map,
3283 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003284 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003285 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003286 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003287};
3288
Joerg Roedel0feae532009-08-26 15:26:30 +02003289/*****************************************************************************
3290 *
3291 * The next functions do a basic initialization of IOMMU for pass through
3292 * mode
3293 *
3294 * In passthrough mode the IOMMU is initialized and enabled but not used for
3295 * DMA-API translation.
3296 *
3297 *****************************************************************************/
3298
3299int __init amd_iommu_init_passthrough(void)
3300{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003301 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003302 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003303 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003304 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003305 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003306
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003307 ret = alloc_passthrough_domain();
3308 if (ret)
3309 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003310
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003311 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003312 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003313 continue;
3314
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003315 dev_data = get_dev_data(&dev->dev);
3316 dev_data->passthrough = true;
3317
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003318 devid = get_device_id(&dev->dev);
3319
Joerg Roedel15898bb2009-11-24 15:39:42 +01003320 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003321 if (!iommu)
3322 continue;
3323
Joerg Roedel15898bb2009-11-24 15:39:42 +01003324 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003325 }
3326
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003327 amd_iommu_stats_init();
3328
Joerg Roedel0feae532009-08-26 15:26:30 +02003329 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3330
3331 return 0;
3332}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003333
3334/* IOMMUv2 specific functions */
3335int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3336{
3337 return atomic_notifier_chain_register(&ppr_notifier, nb);
3338}
3339EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3340
3341int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3342{
3343 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3344}
3345EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003346
3347void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3348{
3349 struct protection_domain *domain = dom->priv;
3350 unsigned long flags;
3351
3352 spin_lock_irqsave(&domain->lock, flags);
3353
3354 /* Update data structure */
3355 domain->mode = PAGE_MODE_NONE;
3356 domain->updated = true;
3357
3358 /* Make changes visible to IOMMUs */
3359 update_domain(domain);
3360
3361 /* Page-table is not visible to IOMMU anymore, so free it */
3362 free_pagetable(domain);
3363
3364 spin_unlock_irqrestore(&domain->lock, flags);
3365}
3366EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003367
3368int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3369{
3370 struct protection_domain *domain = dom->priv;
3371 unsigned long flags;
3372 int levels, ret;
3373
3374 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3375 return -EINVAL;
3376
3377 /* Number of GCR3 table levels required */
3378 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3379 levels += 1;
3380
3381 if (levels > amd_iommu_max_glx_val)
3382 return -EINVAL;
3383
3384 spin_lock_irqsave(&domain->lock, flags);
3385
3386 /*
3387 * Save us all sanity checks whether devices already in the
3388 * domain support IOMMUv2. Just force that the domain has no
3389 * devices attached when it is switched into IOMMUv2 mode.
3390 */
3391 ret = -EBUSY;
3392 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3393 goto out;
3394
3395 ret = -ENOMEM;
3396 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3397 if (domain->gcr3_tbl == NULL)
3398 goto out;
3399
3400 domain->glx = levels;
3401 domain->flags |= PD_IOMMUV2_MASK;
3402 domain->updated = true;
3403
3404 update_domain(domain);
3405
3406 ret = 0;
3407
3408out:
3409 spin_unlock_irqrestore(&domain->lock, flags);
3410
3411 return ret;
3412}
3413EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003414
3415static int __flush_pasid(struct protection_domain *domain, int pasid,
3416 u64 address, bool size)
3417{
3418 struct iommu_dev_data *dev_data;
3419 struct iommu_cmd cmd;
3420 int i, ret;
3421
3422 if (!(domain->flags & PD_IOMMUV2_MASK))
3423 return -EINVAL;
3424
3425 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3426
3427 /*
3428 * IOMMU TLB needs to be flushed before Device TLB to
3429 * prevent device TLB refill from IOMMU TLB
3430 */
3431 for (i = 0; i < amd_iommus_present; ++i) {
3432 if (domain->dev_iommu[i] == 0)
3433 continue;
3434
3435 ret = iommu_queue_command(amd_iommus[i], &cmd);
3436 if (ret != 0)
3437 goto out;
3438 }
3439
3440 /* Wait until IOMMU TLB flushes are complete */
3441 domain_flush_complete(domain);
3442
3443 /* Now flush device TLBs */
3444 list_for_each_entry(dev_data, &domain->dev_list, list) {
3445 struct amd_iommu *iommu;
3446 int qdep;
3447
3448 BUG_ON(!dev_data->ats.enabled);
3449
3450 qdep = dev_data->ats.qdep;
3451 iommu = amd_iommu_rlookup_table[dev_data->devid];
3452
3453 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3454 qdep, address, size);
3455
3456 ret = iommu_queue_command(iommu, &cmd);
3457 if (ret != 0)
3458 goto out;
3459 }
3460
3461 /* Wait until all device TLBs are flushed */
3462 domain_flush_complete(domain);
3463
3464 ret = 0;
3465
3466out:
3467
3468 return ret;
3469}
3470
3471static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3472 u64 address)
3473{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003474 INC_STATS_COUNTER(invalidate_iotlb);
3475
Joerg Roedel22e266c2011-11-21 15:59:08 +01003476 return __flush_pasid(domain, pasid, address, false);
3477}
3478
3479int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3480 u64 address)
3481{
3482 struct protection_domain *domain = dom->priv;
3483 unsigned long flags;
3484 int ret;
3485
3486 spin_lock_irqsave(&domain->lock, flags);
3487 ret = __amd_iommu_flush_page(domain, pasid, address);
3488 spin_unlock_irqrestore(&domain->lock, flags);
3489
3490 return ret;
3491}
3492EXPORT_SYMBOL(amd_iommu_flush_page);
3493
3494static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3495{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003496 INC_STATS_COUNTER(invalidate_iotlb_all);
3497
Joerg Roedel22e266c2011-11-21 15:59:08 +01003498 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3499 true);
3500}
3501
3502int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3503{
3504 struct protection_domain *domain = dom->priv;
3505 unsigned long flags;
3506 int ret;
3507
3508 spin_lock_irqsave(&domain->lock, flags);
3509 ret = __amd_iommu_flush_tlb(domain, pasid);
3510 spin_unlock_irqrestore(&domain->lock, flags);
3511
3512 return ret;
3513}
3514EXPORT_SYMBOL(amd_iommu_flush_tlb);
3515
Joerg Roedelb16137b2011-11-21 16:50:23 +01003516static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3517{
3518 int index;
3519 u64 *pte;
3520
3521 while (true) {
3522
3523 index = (pasid >> (9 * level)) & 0x1ff;
3524 pte = &root[index];
3525
3526 if (level == 0)
3527 break;
3528
3529 if (!(*pte & GCR3_VALID)) {
3530 if (!alloc)
3531 return NULL;
3532
3533 root = (void *)get_zeroed_page(GFP_ATOMIC);
3534 if (root == NULL)
3535 return NULL;
3536
3537 *pte = __pa(root) | GCR3_VALID;
3538 }
3539
3540 root = __va(*pte & PAGE_MASK);
3541
3542 level -= 1;
3543 }
3544
3545 return pte;
3546}
3547
3548static int __set_gcr3(struct protection_domain *domain, int pasid,
3549 unsigned long cr3)
3550{
3551 u64 *pte;
3552
3553 if (domain->mode != PAGE_MODE_NONE)
3554 return -EINVAL;
3555
3556 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3557 if (pte == NULL)
3558 return -ENOMEM;
3559
3560 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3561
3562 return __amd_iommu_flush_tlb(domain, pasid);
3563}
3564
3565static int __clear_gcr3(struct protection_domain *domain, int pasid)
3566{
3567 u64 *pte;
3568
3569 if (domain->mode != PAGE_MODE_NONE)
3570 return -EINVAL;
3571
3572 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3573 if (pte == NULL)
3574 return 0;
3575
3576 *pte = 0;
3577
3578 return __amd_iommu_flush_tlb(domain, pasid);
3579}
3580
3581int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3582 unsigned long cr3)
3583{
3584 struct protection_domain *domain = dom->priv;
3585 unsigned long flags;
3586 int ret;
3587
3588 spin_lock_irqsave(&domain->lock, flags);
3589 ret = __set_gcr3(domain, pasid, cr3);
3590 spin_unlock_irqrestore(&domain->lock, flags);
3591
3592 return ret;
3593}
3594EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3595
3596int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3597{
3598 struct protection_domain *domain = dom->priv;
3599 unsigned long flags;
3600 int ret;
3601
3602 spin_lock_irqsave(&domain->lock, flags);
3603 ret = __clear_gcr3(domain, pasid);
3604 spin_unlock_irqrestore(&domain->lock, flags);
3605
3606 return ret;
3607}
3608EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003609
3610int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3611 int status, int tag)
3612{
3613 struct iommu_dev_data *dev_data;
3614 struct amd_iommu *iommu;
3615 struct iommu_cmd cmd;
3616
Joerg Roedel399be2f2011-12-01 16:53:47 +01003617 INC_STATS_COUNTER(complete_ppr);
3618
Joerg Roedelc99afa22011-11-21 18:19:25 +01003619 dev_data = get_dev_data(&pdev->dev);
3620 iommu = amd_iommu_rlookup_table[dev_data->devid];
3621
3622 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3623 tag, dev_data->pri_tlp);
3624
3625 return iommu_queue_command(iommu, &cmd);
3626}
3627EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003628
3629struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3630{
3631 struct protection_domain *domain;
3632
3633 domain = get_domain(&pdev->dev);
3634 if (IS_ERR(domain))
3635 return NULL;
3636
3637 /* Only return IOMMUv2 domains */
3638 if (!(domain->flags & PD_IOMMUV2_MASK))
3639 return NULL;
3640
3641 return domain->iommu_domain;
3642}
3643EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003644
3645void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3646{
3647 struct iommu_dev_data *dev_data;
3648
3649 if (!amd_iommu_v2_supported())
3650 return;
3651
3652 dev_data = get_dev_data(&pdev->dev);
3653 dev_data->errata |= (1 << erratum);
3654}
3655EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003656
3657int amd_iommu_device_info(struct pci_dev *pdev,
3658 struct amd_iommu_device_info *info)
3659{
3660 int max_pasids;
3661 int pos;
3662
3663 if (pdev == NULL || info == NULL)
3664 return -EINVAL;
3665
3666 if (!amd_iommu_v2_supported())
3667 return -EINVAL;
3668
3669 memset(info, 0, sizeof(*info));
3670
3671 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3672 if (pos)
3673 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3674
3675 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3676 if (pos)
3677 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3678
3679 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3680 if (pos) {
3681 int features;
3682
3683 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3684 max_pasids = min(max_pasids, (1 << 20));
3685
3686 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3687 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3688
3689 features = pci_pasid_features(pdev);
3690 if (features & PCI_PASID_CAP_EXEC)
3691 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3692 if (features & PCI_PASID_CAP_PRIV)
3693 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3694 }
3695
3696 return 0;
3697}
3698EXPORT_SYMBOL(amd_iommu_device_info);