blob: e27b354c3e9b553a723290b988d1114df67579a0 [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 Roedel6efed632012-06-14 15:52:58 +020075LIST_HEAD(ioapic_map);
76LIST_HEAD(hpet_map);
77
Joerg Roedel0feae532009-08-26 15:26:30 +020078/*
79 * Domain for untranslated devices - only allocated
80 * if iommu=pt passed on kernel cmd line.
81 */
82static struct protection_domain *pt_domain;
83
Joerg Roedel26961ef2008-12-03 17:00:17 +010084static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010085
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010086static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010087int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010088
Joerg Roedelac1534a2012-06-21 14:52:40 +020089static struct dma_map_ops amd_iommu_dma_ops;
90
Joerg Roedel431b2a22008-07-11 17:14:22 +020091/*
92 * general struct to manage commands send to an IOMMU
93 */
Joerg Roedeld6449532008-07-11 17:14:28 +020094struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020095 u32 data[4];
96};
97
Joerg Roedel05152a02012-06-15 16:53:51 +020098struct kmem_cache *amd_iommu_irq_cache;
99
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200100static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100101static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700102
Joerg Roedel15898bb2009-11-24 15:39:42 +0100103/****************************************************************************
104 *
105 * Helper functions
106 *
107 ****************************************************************************/
108
Joerg Roedelf62dda62011-06-09 12:55:35 +0200109static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200110{
111 struct iommu_dev_data *dev_data;
112 unsigned long flags;
113
114 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
115 if (!dev_data)
116 return NULL;
117
Joerg Roedelf62dda62011-06-09 12:55:35 +0200118 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200119 atomic_set(&dev_data->bind, 0);
120
121 spin_lock_irqsave(&dev_data_list_lock, flags);
122 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
123 spin_unlock_irqrestore(&dev_data_list_lock, flags);
124
125 return dev_data;
126}
127
128static void free_dev_data(struct iommu_dev_data *dev_data)
129{
130 unsigned long flags;
131
132 spin_lock_irqsave(&dev_data_list_lock, flags);
133 list_del(&dev_data->dev_data_list);
134 spin_unlock_irqrestore(&dev_data_list_lock, flags);
135
136 kfree(dev_data);
137}
138
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200139static struct iommu_dev_data *search_dev_data(u16 devid)
140{
141 struct iommu_dev_data *dev_data;
142 unsigned long flags;
143
144 spin_lock_irqsave(&dev_data_list_lock, flags);
145 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
146 if (dev_data->devid == devid)
147 goto out_unlock;
148 }
149
150 dev_data = NULL;
151
152out_unlock:
153 spin_unlock_irqrestore(&dev_data_list_lock, flags);
154
155 return dev_data;
156}
157
158static struct iommu_dev_data *find_dev_data(u16 devid)
159{
160 struct iommu_dev_data *dev_data;
161
162 dev_data = search_dev_data(devid);
163
164 if (dev_data == NULL)
165 dev_data = alloc_dev_data(devid);
166
167 return dev_data;
168}
169
Joerg Roedel15898bb2009-11-24 15:39:42 +0100170static inline u16 get_device_id(struct device *dev)
171{
172 struct pci_dev *pdev = to_pci_dev(dev);
173
174 return calc_devid(pdev->bus->number, pdev->devfn);
175}
176
Joerg Roedel657cbb62009-11-23 15:26:46 +0100177static struct iommu_dev_data *get_dev_data(struct device *dev)
178{
179 return dev->archdata.iommu;
180}
181
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100182static bool pci_iommuv2_capable(struct pci_dev *pdev)
183{
184 static const int caps[] = {
185 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100186 PCI_EXT_CAP_ID_PRI,
187 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100188 };
189 int i, pos;
190
191 for (i = 0; i < 3; ++i) {
192 pos = pci_find_ext_capability(pdev, caps[i]);
193 if (pos == 0)
194 return false;
195 }
196
197 return true;
198}
199
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100200static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
201{
202 struct iommu_dev_data *dev_data;
203
204 dev_data = get_dev_data(&pdev->dev);
205
206 return dev_data->errata & (1 << erratum) ? true : false;
207}
208
Joerg Roedel71c70982009-11-24 16:43:06 +0100209/*
210 * In this function the list of preallocated protection domains is traversed to
211 * find the domain for a specific device
212 */
213static struct dma_ops_domain *find_protection_domain(u16 devid)
214{
215 struct dma_ops_domain *entry, *ret = NULL;
216 unsigned long flags;
217 u16 alias = amd_iommu_alias_table[devid];
218
219 if (list_empty(&iommu_pd_list))
220 return NULL;
221
222 spin_lock_irqsave(&iommu_pd_list_lock, flags);
223
224 list_for_each_entry(entry, &iommu_pd_list, list) {
225 if (entry->target_dev == devid ||
226 entry->target_dev == alias) {
227 ret = entry;
228 break;
229 }
230 }
231
232 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
233
234 return ret;
235}
236
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100237/*
238 * This function checks if the driver got a valid device from the caller to
239 * avoid dereferencing invalid pointers.
240 */
241static bool check_device(struct device *dev)
242{
243 u16 devid;
244
245 if (!dev || !dev->dma_mask)
246 return false;
247
248 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100249 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100250 return false;
251
252 devid = get_device_id(dev);
253
254 /* Out of our scope? */
255 if (devid > amd_iommu_last_bdf)
256 return false;
257
258 if (amd_iommu_rlookup_table[devid] == NULL)
259 return false;
260
261 return true;
262}
263
Alex Williamson664b6002012-05-30 14:19:31 -0600264static void swap_pci_ref(struct pci_dev **from, struct pci_dev *to)
265{
266 pci_dev_put(*from);
267 *from = to;
268}
269
270#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
271
Joerg Roedel657cbb62009-11-23 15:26:46 +0100272static int iommu_init_device(struct device *dev)
273{
Alex Williamson9dcd6132012-05-30 14:19:07 -0600274 struct pci_dev *dma_pdev, *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100275 struct iommu_dev_data *dev_data;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600276 struct iommu_group *group;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200277 u16 alias;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600278 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100279
280 if (dev->archdata.iommu)
281 return 0;
282
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200283 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100284 if (!dev_data)
285 return -ENOMEM;
286
Joerg Roedelf62dda62011-06-09 12:55:35 +0200287 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200288 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200289 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100290
Joerg Roedel71f77582011-06-09 19:03:15 +0200291 alias_data = find_dev_data(alias);
292 if (alias_data == NULL) {
293 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
294 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200295 free_dev_data(dev_data);
296 return -ENOTSUPP;
297 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200298 dev_data->alias_data = alias_data;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600299
300 dma_pdev = pci_get_bus_and_slot(alias >> 8, alias & 0xff);
301 } else
302 dma_pdev = pci_dev_get(pdev);
303
Alex Williamson31fe9432012-08-04 12:09:03 -0600304 /* Account for quirked devices */
Alex Williamson664b6002012-05-30 14:19:31 -0600305 swap_pci_ref(&dma_pdev, pci_get_dma_source(dma_pdev));
306
Alex Williamson31fe9432012-08-04 12:09:03 -0600307 /*
308 * If it's a multifunction device that does not support our
309 * required ACS flags, add to the same group as function 0.
310 */
Alex Williamson664b6002012-05-30 14:19:31 -0600311 if (dma_pdev->multifunction &&
312 !pci_acs_enabled(dma_pdev, REQ_ACS_FLAGS))
313 swap_pci_ref(&dma_pdev,
314 pci_get_slot(dma_pdev->bus,
315 PCI_DEVFN(PCI_SLOT(dma_pdev->devfn),
316 0)));
317
Alex Williamson31fe9432012-08-04 12:09:03 -0600318 /*
319 * Devices on the root bus go through the iommu. If that's not us,
320 * find the next upstream device and test ACS up to the root bus.
321 * Finding the next device may require skipping virtual buses.
322 */
Alex Williamson664b6002012-05-30 14:19:31 -0600323 while (!pci_is_root_bus(dma_pdev->bus)) {
Alex Williamson31fe9432012-08-04 12:09:03 -0600324 struct pci_bus *bus = dma_pdev->bus;
325
326 while (!bus->self) {
327 if (!pci_is_root_bus(bus))
328 bus = bus->parent;
329 else
330 goto root_bus;
331 }
332
333 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
Alex Williamson664b6002012-05-30 14:19:31 -0600334 break;
335
Alex Williamson31fe9432012-08-04 12:09:03 -0600336 swap_pci_ref(&dma_pdev, pci_dev_get(bus->self));
Joerg Roedel26018872011-06-06 16:50:14 +0200337 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100338
Alex Williamson31fe9432012-08-04 12:09:03 -0600339root_bus:
Alex Williamson9dcd6132012-05-30 14:19:07 -0600340 group = iommu_group_get(&dma_pdev->dev);
341 pci_dev_put(dma_pdev);
342 if (!group) {
343 group = iommu_group_alloc();
344 if (IS_ERR(group))
345 return PTR_ERR(group);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100346 }
347
Alex Williamson9dcd6132012-05-30 14:19:07 -0600348 ret = iommu_group_add_device(group, dev);
349
350 iommu_group_put(group);
351
352 if (ret)
353 return ret;
354
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100355 if (pci_iommuv2_capable(pdev)) {
356 struct amd_iommu *iommu;
357
358 iommu = amd_iommu_rlookup_table[dev_data->devid];
359 dev_data->iommu_v2 = iommu->is_iommu_v2;
360 }
361
Joerg Roedel657cbb62009-11-23 15:26:46 +0100362 dev->archdata.iommu = dev_data;
363
Joerg Roedel657cbb62009-11-23 15:26:46 +0100364 return 0;
365}
366
Joerg Roedel26018872011-06-06 16:50:14 +0200367static void iommu_ignore_device(struct device *dev)
368{
369 u16 devid, alias;
370
371 devid = get_device_id(dev);
372 alias = amd_iommu_alias_table[devid];
373
374 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
375 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
376
377 amd_iommu_rlookup_table[devid] = NULL;
378 amd_iommu_rlookup_table[alias] = NULL;
379}
380
Joerg Roedel657cbb62009-11-23 15:26:46 +0100381static void iommu_uninit_device(struct device *dev)
382{
Alex Williamson9dcd6132012-05-30 14:19:07 -0600383 iommu_group_remove_device(dev);
384
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200385 /*
386 * Nothing to do here - we keep dev_data around for unplugged devices
387 * and reuse it when the device is re-plugged - not doing so would
388 * introduce a ton of races.
389 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100390}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100391
392void __init amd_iommu_uninit_devices(void)
393{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200394 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100395 struct pci_dev *pdev = NULL;
396
397 for_each_pci_dev(pdev) {
398
399 if (!check_device(&pdev->dev))
400 continue;
401
402 iommu_uninit_device(&pdev->dev);
403 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200404
405 /* Free all of our dev_data structures */
406 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
407 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100408}
409
410int __init amd_iommu_init_devices(void)
411{
412 struct pci_dev *pdev = NULL;
413 int ret = 0;
414
415 for_each_pci_dev(pdev) {
416
417 if (!check_device(&pdev->dev))
418 continue;
419
420 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200421 if (ret == -ENOTSUPP)
422 iommu_ignore_device(&pdev->dev);
423 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100424 goto out_free;
425 }
426
427 return 0;
428
429out_free:
430
431 amd_iommu_uninit_devices();
432
433 return ret;
434}
Joerg Roedel7f265082008-12-12 13:50:21 +0100435#ifdef CONFIG_AMD_IOMMU_STATS
436
437/*
438 * Initialization code for statistics collection
439 */
440
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100441DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100442DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100443DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100444DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100445DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100446DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100447DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100448DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100449DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100450DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100451DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100452DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100453DECLARE_STATS_COUNTER(complete_ppr);
454DECLARE_STATS_COUNTER(invalidate_iotlb);
455DECLARE_STATS_COUNTER(invalidate_iotlb_all);
456DECLARE_STATS_COUNTER(pri_requests);
457
Joerg Roedel7f265082008-12-12 13:50:21 +0100458static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100459static struct dentry *de_fflush;
460
461static void amd_iommu_stats_add(struct __iommu_counter *cnt)
462{
463 if (stats_dir == NULL)
464 return;
465
466 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
467 &cnt->value);
468}
469
470static void amd_iommu_stats_init(void)
471{
472 stats_dir = debugfs_create_dir("amd-iommu", NULL);
473 if (stats_dir == NULL)
474 return;
475
Joerg Roedel7f265082008-12-12 13:50:21 +0100476 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300477 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100478
479 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100480 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100481 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100482 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100483 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100484 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100485 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100486 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100487 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100488 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100489 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100490 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100491 amd_iommu_stats_add(&complete_ppr);
492 amd_iommu_stats_add(&invalidate_iotlb);
493 amd_iommu_stats_add(&invalidate_iotlb_all);
494 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100495}
496
497#endif
498
Joerg Roedel431b2a22008-07-11 17:14:22 +0200499/****************************************************************************
500 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200501 * Interrupt handling functions
502 *
503 ****************************************************************************/
504
Joerg Roedele3e59872009-09-03 14:02:10 +0200505static void dump_dte_entry(u16 devid)
506{
507 int i;
508
Joerg Roedelee6c2862011-11-09 12:06:03 +0100509 for (i = 0; i < 4; ++i)
510 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200511 amd_iommu_dev_table[devid].data[i]);
512}
513
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200514static void dump_command(unsigned long phys_addr)
515{
516 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
517 int i;
518
519 for (i = 0; i < 4; ++i)
520 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
521}
522
Joerg Roedela345b232009-09-03 15:01:43 +0200523static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200524{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200525 int type, devid, domid, flags;
526 volatile u32 *event = __evt;
527 int count = 0;
528 u64 address;
529
530retry:
531 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
532 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
533 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
534 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
535 address = (u64)(((u64)event[3]) << 32) | event[2];
536
537 if (type == 0) {
538 /* Did we hit the erratum? */
539 if (++count == LOOP_TIMEOUT) {
540 pr_err("AMD-Vi: No event written to event log\n");
541 return;
542 }
543 udelay(1);
544 goto retry;
545 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200546
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200547 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200548
549 switch (type) {
550 case EVENT_TYPE_ILL_DEV:
551 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
552 "address=0x%016llx flags=0x%04x]\n",
553 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
554 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200555 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200556 break;
557 case EVENT_TYPE_IO_FAULT:
558 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
559 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
560 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
561 domid, address, flags);
562 break;
563 case EVENT_TYPE_DEV_TAB_ERR:
564 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
565 "address=0x%016llx flags=0x%04x]\n",
566 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
567 address, flags);
568 break;
569 case EVENT_TYPE_PAGE_TAB_ERR:
570 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
571 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
572 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
573 domid, address, flags);
574 break;
575 case EVENT_TYPE_ILL_CMD:
576 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200577 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200578 break;
579 case EVENT_TYPE_CMD_HARD_ERR:
580 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
581 "flags=0x%04x]\n", address, flags);
582 break;
583 case EVENT_TYPE_IOTLB_INV_TO:
584 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
585 "address=0x%016llx]\n",
586 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
587 address);
588 break;
589 case EVENT_TYPE_INV_DEV_REQ:
590 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
591 "address=0x%016llx flags=0x%04x]\n",
592 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
593 address, flags);
594 break;
595 default:
596 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
597 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200598
599 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200600}
601
602static void iommu_poll_events(struct amd_iommu *iommu)
603{
604 u32 head, tail;
605 unsigned long flags;
606
607 spin_lock_irqsave(&iommu->lock, flags);
608
609 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
610 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
611
612 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200613 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200614 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
615 }
616
617 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
618
619 spin_unlock_irqrestore(&iommu->lock, flags);
620}
621
Joerg Roedeleee53532012-06-01 15:20:23 +0200622static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100623{
624 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100625
Joerg Roedel399be2f2011-12-01 16:53:47 +0100626 INC_STATS_COUNTER(pri_requests);
627
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100628 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
629 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
630 return;
631 }
632
633 fault.address = raw[1];
634 fault.pasid = PPR_PASID(raw[0]);
635 fault.device_id = PPR_DEVID(raw[0]);
636 fault.tag = PPR_TAG(raw[0]);
637 fault.flags = PPR_FLAGS(raw[0]);
638
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100639 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
640}
641
642static void iommu_poll_ppr_log(struct amd_iommu *iommu)
643{
644 unsigned long flags;
645 u32 head, tail;
646
647 if (iommu->ppr_log == NULL)
648 return;
649
Joerg Roedeleee53532012-06-01 15:20:23 +0200650 /* enable ppr interrupts again */
651 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
652
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100653 spin_lock_irqsave(&iommu->lock, flags);
654
655 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
656 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
657
658 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200659 volatile u64 *raw;
660 u64 entry[2];
661 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100662
Joerg Roedeleee53532012-06-01 15:20:23 +0200663 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100664
Joerg Roedeleee53532012-06-01 15:20:23 +0200665 /*
666 * Hardware bug: Interrupt may arrive before the entry is
667 * written to memory. If this happens we need to wait for the
668 * entry to arrive.
669 */
670 for (i = 0; i < LOOP_TIMEOUT; ++i) {
671 if (PPR_REQ_TYPE(raw[0]) != 0)
672 break;
673 udelay(1);
674 }
675
676 /* Avoid memcpy function-call overhead */
677 entry[0] = raw[0];
678 entry[1] = raw[1];
679
680 /*
681 * To detect the hardware bug we need to clear the entry
682 * back to zero.
683 */
684 raw[0] = raw[1] = 0UL;
685
686 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100687 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
688 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200689
690 /*
691 * Release iommu->lock because ppr-handling might need to
692 * re-aquire it
693 */
694 spin_unlock_irqrestore(&iommu->lock, flags);
695
696 /* Handle PPR entry */
697 iommu_handle_ppr_entry(iommu, entry);
698
699 spin_lock_irqsave(&iommu->lock, flags);
700
701 /* Refresh ring-buffer information */
702 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100703 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
704 }
705
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100706 spin_unlock_irqrestore(&iommu->lock, flags);
707}
708
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200709irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200710{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200711 struct amd_iommu *iommu;
712
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100713 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200714 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100715 iommu_poll_ppr_log(iommu);
716 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200717
718 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200719}
720
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200721irqreturn_t amd_iommu_int_handler(int irq, void *data)
722{
723 return IRQ_WAKE_THREAD;
724}
725
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200726/****************************************************************************
727 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200728 * IOMMU command queuing functions
729 *
730 ****************************************************************************/
731
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200732static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200733{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200734 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200735
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200736 while (*sem == 0 && i < LOOP_TIMEOUT) {
737 udelay(1);
738 i += 1;
739 }
740
741 if (i == LOOP_TIMEOUT) {
742 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
743 return -EIO;
744 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200745
746 return 0;
747}
748
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200749static void copy_cmd_to_buffer(struct amd_iommu *iommu,
750 struct iommu_cmd *cmd,
751 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200752{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200753 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200754
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200755 target = iommu->cmd_buf + tail;
756 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200757
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200758 /* Copy command to buffer */
759 memcpy(target, cmd, sizeof(*cmd));
760
761 /* Tell the IOMMU about it */
762 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
763}
764
Joerg Roedel815b33f2011-04-06 17:26:49 +0200765static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200766{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200767 WARN_ON(address & 0x7ULL);
768
Joerg Roedelded46732011-04-06 10:53:48 +0200769 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200770 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
771 cmd->data[1] = upper_32_bits(__pa(address));
772 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200773 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
774}
775
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200776static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
777{
778 memset(cmd, 0, sizeof(*cmd));
779 cmd->data[0] = devid;
780 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
781}
782
Joerg Roedel11b64022011-04-06 11:49:28 +0200783static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
784 size_t size, u16 domid, int pde)
785{
786 u64 pages;
787 int s;
788
789 pages = iommu_num_pages(address, size, PAGE_SIZE);
790 s = 0;
791
792 if (pages > 1) {
793 /*
794 * If we have to flush more than one page, flush all
795 * TLB entries for this domain
796 */
797 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
798 s = 1;
799 }
800
801 address &= PAGE_MASK;
802
803 memset(cmd, 0, sizeof(*cmd));
804 cmd->data[1] |= domid;
805 cmd->data[2] = lower_32_bits(address);
806 cmd->data[3] = upper_32_bits(address);
807 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
808 if (s) /* size bit - we flush more than one 4kb page */
809 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
810 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
811 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
812}
813
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200814static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
815 u64 address, size_t size)
816{
817 u64 pages;
818 int s;
819
820 pages = iommu_num_pages(address, size, PAGE_SIZE);
821 s = 0;
822
823 if (pages > 1) {
824 /*
825 * If we have to flush more than one page, flush all
826 * TLB entries for this domain
827 */
828 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
829 s = 1;
830 }
831
832 address &= PAGE_MASK;
833
834 memset(cmd, 0, sizeof(*cmd));
835 cmd->data[0] = devid;
836 cmd->data[0] |= (qdep & 0xff) << 24;
837 cmd->data[1] = devid;
838 cmd->data[2] = lower_32_bits(address);
839 cmd->data[3] = upper_32_bits(address);
840 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
841 if (s)
842 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
843}
844
Joerg Roedel22e266c2011-11-21 15:59:08 +0100845static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
846 u64 address, bool size)
847{
848 memset(cmd, 0, sizeof(*cmd));
849
850 address &= ~(0xfffULL);
851
852 cmd->data[0] = pasid & PASID_MASK;
853 cmd->data[1] = domid;
854 cmd->data[2] = lower_32_bits(address);
855 cmd->data[3] = upper_32_bits(address);
856 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
857 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
858 if (size)
859 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
860 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
861}
862
863static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
864 int qdep, u64 address, bool size)
865{
866 memset(cmd, 0, sizeof(*cmd));
867
868 address &= ~(0xfffULL);
869
870 cmd->data[0] = devid;
871 cmd->data[0] |= (pasid & 0xff) << 16;
872 cmd->data[0] |= (qdep & 0xff) << 24;
873 cmd->data[1] = devid;
874 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
875 cmd->data[2] = lower_32_bits(address);
876 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
877 cmd->data[3] = upper_32_bits(address);
878 if (size)
879 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
880 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
881}
882
Joerg Roedelc99afa22011-11-21 18:19:25 +0100883static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
884 int status, int tag, bool gn)
885{
886 memset(cmd, 0, sizeof(*cmd));
887
888 cmd->data[0] = devid;
889 if (gn) {
890 cmd->data[1] = pasid & PASID_MASK;
891 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
892 }
893 cmd->data[3] = tag & 0x1ff;
894 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
895
896 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
897}
898
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200899static void build_inv_all(struct iommu_cmd *cmd)
900{
901 memset(cmd, 0, sizeof(*cmd));
902 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200903}
904
Joerg Roedel7ef27982012-06-21 16:46:04 +0200905static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
906{
907 memset(cmd, 0, sizeof(*cmd));
908 cmd->data[0] = devid;
909 CMD_SET_TYPE(cmd, CMD_INV_IRT);
910}
911
Joerg Roedel431b2a22008-07-11 17:14:22 +0200912/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200913 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200914 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200915 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200916static int iommu_queue_command_sync(struct amd_iommu *iommu,
917 struct iommu_cmd *cmd,
918 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200919{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200920 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200921 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200922
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200923 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100924
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200925again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200926 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200927
928 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
929 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
930 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
931 left = (head - next_tail) % iommu->cmd_buf_size;
932
933 if (left <= 2) {
934 struct iommu_cmd sync_cmd;
935 volatile u64 sem = 0;
936 int ret;
937
938 build_completion_wait(&sync_cmd, (u64)&sem);
939 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
940
941 spin_unlock_irqrestore(&iommu->lock, flags);
942
943 if ((ret = wait_on_sem(&sem)) != 0)
944 return ret;
945
946 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200947 }
948
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200949 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200950
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200951 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200952 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200953
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200954 spin_unlock_irqrestore(&iommu->lock, flags);
955
Joerg Roedel815b33f2011-04-06 17:26:49 +0200956 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100957}
958
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200959static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
960{
961 return iommu_queue_command_sync(iommu, cmd, true);
962}
963
Joerg Roedel8d201962008-12-02 20:34:41 +0100964/*
965 * This function queues a completion wait command into the command
966 * buffer of an IOMMU
967 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100968static int iommu_completion_wait(struct amd_iommu *iommu)
969{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200970 struct iommu_cmd cmd;
971 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200972 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100973
974 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200975 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100976
Joerg Roedel815b33f2011-04-06 17:26:49 +0200977 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100978
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200979 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100980 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200981 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100982
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200983 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200984}
985
Joerg Roedeld8c13082011-04-06 18:51:26 +0200986static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200987{
988 struct iommu_cmd cmd;
989
Joerg Roedeld8c13082011-04-06 18:51:26 +0200990 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200991
Joerg Roedeld8c13082011-04-06 18:51:26 +0200992 return iommu_queue_command(iommu, &cmd);
993}
994
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200995static void iommu_flush_dte_all(struct amd_iommu *iommu)
996{
997 u32 devid;
998
999 for (devid = 0; devid <= 0xffff; ++devid)
1000 iommu_flush_dte(iommu, devid);
1001
1002 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001003}
1004
1005/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001006 * This function uses heavy locking and may disable irqs for some time. But
1007 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001008 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001009static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001010{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001011 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001012
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001013 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1014 struct iommu_cmd cmd;
1015 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1016 dom_id, 1);
1017 iommu_queue_command(iommu, &cmd);
1018 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001019
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001020 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001021}
1022
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001023static void iommu_flush_all(struct amd_iommu *iommu)
1024{
1025 struct iommu_cmd cmd;
1026
1027 build_inv_all(&cmd);
1028
1029 iommu_queue_command(iommu, &cmd);
1030 iommu_completion_wait(iommu);
1031}
1032
Joerg Roedel7ef27982012-06-21 16:46:04 +02001033static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1034{
1035 struct iommu_cmd cmd;
1036
1037 build_inv_irt(&cmd, devid);
1038
1039 iommu_queue_command(iommu, &cmd);
1040}
1041
1042static void iommu_flush_irt_all(struct amd_iommu *iommu)
1043{
1044 u32 devid;
1045
1046 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1047 iommu_flush_irt(iommu, devid);
1048
1049 iommu_completion_wait(iommu);
1050}
1051
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001052void iommu_flush_all_caches(struct amd_iommu *iommu)
1053{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001054 if (iommu_feature(iommu, FEATURE_IA)) {
1055 iommu_flush_all(iommu);
1056 } else {
1057 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001058 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001059 iommu_flush_tlb_all(iommu);
1060 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001061}
1062
Joerg Roedel431b2a22008-07-11 17:14:22 +02001063/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001064 * Command send function for flushing on-device TLB
1065 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001066static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1067 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001068{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001069 struct amd_iommu *iommu;
1070 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001071 int qdep;
1072
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001073 qdep = dev_data->ats.qdep;
1074 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001075
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001076 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001077
1078 return iommu_queue_command(iommu, &cmd);
1079}
1080
1081/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001082 * Command send function for invalidating a device table entry
1083 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001084static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001085{
1086 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001087 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001088
Joerg Roedel6c542042011-06-09 17:07:31 +02001089 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001090
Joerg Roedelf62dda62011-06-09 12:55:35 +02001091 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001092 if (ret)
1093 return ret;
1094
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001095 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001096 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001097
1098 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001099}
1100
Joerg Roedel431b2a22008-07-11 17:14:22 +02001101/*
1102 * TLB invalidation function which is called from the mapping functions.
1103 * It invalidates a single PTE if the range to flush is within a single
1104 * page. Otherwise it flushes the whole TLB of the IOMMU.
1105 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001106static void __domain_flush_pages(struct protection_domain *domain,
1107 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001108{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001109 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001110 struct iommu_cmd cmd;
1111 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001112
Joerg Roedel11b64022011-04-06 11:49:28 +02001113 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001114
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001115 for (i = 0; i < amd_iommus_present; ++i) {
1116 if (!domain->dev_iommu[i])
1117 continue;
1118
1119 /*
1120 * Devices of this domain are behind this IOMMU
1121 * We need a TLB flush
1122 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001123 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001124 }
1125
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001126 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001127
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001128 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001129 continue;
1130
Joerg Roedel6c542042011-06-09 17:07:31 +02001131 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001132 }
1133
Joerg Roedel11b64022011-04-06 11:49:28 +02001134 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001135}
1136
Joerg Roedel17b124b2011-04-06 18:01:35 +02001137static void domain_flush_pages(struct protection_domain *domain,
1138 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001139{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001140 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001141}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001142
Joerg Roedel1c655772008-09-04 18:40:05 +02001143/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001144static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001145{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001146 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001147}
1148
Chris Wright42a49f92009-06-15 15:42:00 +02001149/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001150static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001151{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001152 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1153}
1154
1155static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001156{
1157 int i;
1158
1159 for (i = 0; i < amd_iommus_present; ++i) {
1160 if (!domain->dev_iommu[i])
1161 continue;
1162
1163 /*
1164 * Devices of this domain are behind this IOMMU
1165 * We need to wait for completion of all commands.
1166 */
1167 iommu_completion_wait(amd_iommus[i]);
1168 }
1169}
1170
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001171
Joerg Roedel43f49602008-12-02 21:01:12 +01001172/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001173 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001174 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001175static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001176{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001177 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001178
1179 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001180 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001181}
1182
Joerg Roedel431b2a22008-07-11 17:14:22 +02001183/****************************************************************************
1184 *
1185 * The functions below are used the create the page table mappings for
1186 * unity mapped regions.
1187 *
1188 ****************************************************************************/
1189
1190/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001191 * This function is used to add another level to an IO page table. Adding
1192 * another level increases the size of the address space by 9 bits to a size up
1193 * to 64 bits.
1194 */
1195static bool increase_address_space(struct protection_domain *domain,
1196 gfp_t gfp)
1197{
1198 u64 *pte;
1199
1200 if (domain->mode == PAGE_MODE_6_LEVEL)
1201 /* address space already 64 bit large */
1202 return false;
1203
1204 pte = (void *)get_zeroed_page(gfp);
1205 if (!pte)
1206 return false;
1207
1208 *pte = PM_LEVEL_PDE(domain->mode,
1209 virt_to_phys(domain->pt_root));
1210 domain->pt_root = pte;
1211 domain->mode += 1;
1212 domain->updated = true;
1213
1214 return true;
1215}
1216
1217static u64 *alloc_pte(struct protection_domain *domain,
1218 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001219 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001220 u64 **pte_page,
1221 gfp_t gfp)
1222{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001223 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001224 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001225
1226 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001227
1228 while (address > PM_LEVEL_SIZE(domain->mode))
1229 increase_address_space(domain, gfp);
1230
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001231 level = domain->mode - 1;
1232 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1233 address = PAGE_SIZE_ALIGN(address, page_size);
1234 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001235
1236 while (level > end_lvl) {
1237 if (!IOMMU_PTE_PRESENT(*pte)) {
1238 page = (u64 *)get_zeroed_page(gfp);
1239 if (!page)
1240 return NULL;
1241 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1242 }
1243
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001244 /* No level skipping support yet */
1245 if (PM_PTE_LEVEL(*pte) != level)
1246 return NULL;
1247
Joerg Roedel308973d2009-11-24 17:43:32 +01001248 level -= 1;
1249
1250 pte = IOMMU_PTE_PAGE(*pte);
1251
1252 if (pte_page && level == end_lvl)
1253 *pte_page = pte;
1254
1255 pte = &pte[PM_LEVEL_INDEX(level, address)];
1256 }
1257
1258 return pte;
1259}
1260
1261/*
1262 * This function checks if there is a PTE for a given dma address. If
1263 * there is one, it returns the pointer to it.
1264 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001265static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001266{
1267 int level;
1268 u64 *pte;
1269
Joerg Roedel24cd7722010-01-19 17:27:39 +01001270 if (address > PM_LEVEL_SIZE(domain->mode))
1271 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001272
Joerg Roedel24cd7722010-01-19 17:27:39 +01001273 level = domain->mode - 1;
1274 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1275
1276 while (level > 0) {
1277
1278 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001279 if (!IOMMU_PTE_PRESENT(*pte))
1280 return NULL;
1281
Joerg Roedel24cd7722010-01-19 17:27:39 +01001282 /* Large PTE */
1283 if (PM_PTE_LEVEL(*pte) == 0x07) {
1284 unsigned long pte_mask, __pte;
1285
1286 /*
1287 * If we have a series of large PTEs, make
1288 * sure to return a pointer to the first one.
1289 */
1290 pte_mask = PTE_PAGE_SIZE(*pte);
1291 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1292 __pte = ((unsigned long)pte) & pte_mask;
1293
1294 return (u64 *)__pte;
1295 }
1296
1297 /* No level skipping support yet */
1298 if (PM_PTE_LEVEL(*pte) != level)
1299 return NULL;
1300
Joerg Roedel308973d2009-11-24 17:43:32 +01001301 level -= 1;
1302
Joerg Roedel24cd7722010-01-19 17:27:39 +01001303 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001304 pte = IOMMU_PTE_PAGE(*pte);
1305 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001306 }
1307
1308 return pte;
1309}
1310
1311/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001312 * Generic mapping functions. It maps a physical address into a DMA
1313 * address space. It allocates the page table pages if necessary.
1314 * In the future it can be extended to a generic mapping function
1315 * supporting all features of AMD IOMMU page tables like level skipping
1316 * and full 64 bit address spaces.
1317 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001318static int iommu_map_page(struct protection_domain *dom,
1319 unsigned long bus_addr,
1320 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001321 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001322 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001323{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001324 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001325 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001326
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001327 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001328 return -EINVAL;
1329
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001330 bus_addr = PAGE_ALIGN(bus_addr);
1331 phys_addr = PAGE_ALIGN(phys_addr);
1332 count = PAGE_SIZE_PTE_COUNT(page_size);
1333 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001334
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001335 for (i = 0; i < count; ++i)
1336 if (IOMMU_PTE_PRESENT(pte[i]))
1337 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001338
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001339 if (page_size > PAGE_SIZE) {
1340 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1341 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1342 } else
1343 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1344
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001345 if (prot & IOMMU_PROT_IR)
1346 __pte |= IOMMU_PTE_IR;
1347 if (prot & IOMMU_PROT_IW)
1348 __pte |= IOMMU_PTE_IW;
1349
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001350 for (i = 0; i < count; ++i)
1351 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001352
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001353 update_domain(dom);
1354
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001355 return 0;
1356}
1357
Joerg Roedel24cd7722010-01-19 17:27:39 +01001358static unsigned long iommu_unmap_page(struct protection_domain *dom,
1359 unsigned long bus_addr,
1360 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001361{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001362 unsigned long long unmap_size, unmapped;
1363 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001364
Joerg Roedel24cd7722010-01-19 17:27:39 +01001365 BUG_ON(!is_power_of_2(page_size));
1366
1367 unmapped = 0;
1368
1369 while (unmapped < page_size) {
1370
1371 pte = fetch_pte(dom, bus_addr);
1372
1373 if (!pte) {
1374 /*
1375 * No PTE for this address
1376 * move forward in 4kb steps
1377 */
1378 unmap_size = PAGE_SIZE;
1379 } else if (PM_PTE_LEVEL(*pte) == 0) {
1380 /* 4kb PTE found for this address */
1381 unmap_size = PAGE_SIZE;
1382 *pte = 0ULL;
1383 } else {
1384 int count, i;
1385
1386 /* Large PTE found which maps this address */
1387 unmap_size = PTE_PAGE_SIZE(*pte);
1388 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1389 for (i = 0; i < count; i++)
1390 pte[i] = 0ULL;
1391 }
1392
1393 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1394 unmapped += unmap_size;
1395 }
1396
1397 BUG_ON(!is_power_of_2(unmapped));
1398
1399 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001400}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001401
Joerg Roedel431b2a22008-07-11 17:14:22 +02001402/*
1403 * This function checks if a specific unity mapping entry is needed for
1404 * this specific IOMMU.
1405 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001406static int iommu_for_unity_map(struct amd_iommu *iommu,
1407 struct unity_map_entry *entry)
1408{
1409 u16 bdf, i;
1410
1411 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1412 bdf = amd_iommu_alias_table[i];
1413 if (amd_iommu_rlookup_table[bdf] == iommu)
1414 return 1;
1415 }
1416
1417 return 0;
1418}
1419
Joerg Roedel431b2a22008-07-11 17:14:22 +02001420/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001421 * This function actually applies the mapping to the page table of the
1422 * dma_ops domain.
1423 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001424static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1425 struct unity_map_entry *e)
1426{
1427 u64 addr;
1428 int ret;
1429
1430 for (addr = e->address_start; addr < e->address_end;
1431 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001432 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001433 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001434 if (ret)
1435 return ret;
1436 /*
1437 * if unity mapping is in aperture range mark the page
1438 * as allocated in the aperture
1439 */
1440 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001441 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001442 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001443 }
1444
1445 return 0;
1446}
1447
Joerg Roedel431b2a22008-07-11 17:14:22 +02001448/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001449 * Init the unity mappings for a specific IOMMU in the system
1450 *
1451 * Basically iterates over all unity mapping entries and applies them to
1452 * the default domain DMA of that IOMMU if necessary.
1453 */
1454static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1455{
1456 struct unity_map_entry *entry;
1457 int ret;
1458
1459 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1460 if (!iommu_for_unity_map(iommu, entry))
1461 continue;
1462 ret = dma_ops_unity_map(iommu->default_dom, entry);
1463 if (ret)
1464 return ret;
1465 }
1466
1467 return 0;
1468}
1469
1470/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001471 * Inits the unity mappings required for a specific device
1472 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001473static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1474 u16 devid)
1475{
1476 struct unity_map_entry *e;
1477 int ret;
1478
1479 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1480 if (!(devid >= e->devid_start && devid <= e->devid_end))
1481 continue;
1482 ret = dma_ops_unity_map(dma_dom, e);
1483 if (ret)
1484 return ret;
1485 }
1486
1487 return 0;
1488}
1489
Joerg Roedel431b2a22008-07-11 17:14:22 +02001490/****************************************************************************
1491 *
1492 * The next functions belong to the address allocator for the dma_ops
1493 * interface functions. They work like the allocators in the other IOMMU
1494 * drivers. Its basically a bitmap which marks the allocated pages in
1495 * the aperture. Maybe it could be enhanced in the future to a more
1496 * efficient allocator.
1497 *
1498 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001499
Joerg Roedel431b2a22008-07-11 17:14:22 +02001500/*
Joerg Roedel384de722009-05-15 12:30:05 +02001501 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001502 *
1503 * called with domain->lock held
1504 */
Joerg Roedel384de722009-05-15 12:30:05 +02001505
Joerg Roedel9cabe892009-05-18 16:38:55 +02001506/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001507 * Used to reserve address ranges in the aperture (e.g. for exclusion
1508 * ranges.
1509 */
1510static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1511 unsigned long start_page,
1512 unsigned int pages)
1513{
1514 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1515
1516 if (start_page + pages > last_page)
1517 pages = last_page - start_page;
1518
1519 for (i = start_page; i < start_page + pages; ++i) {
1520 int index = i / APERTURE_RANGE_PAGES;
1521 int page = i % APERTURE_RANGE_PAGES;
1522 __set_bit(page, dom->aperture[index]->bitmap);
1523 }
1524}
1525
1526/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001527 * This function is used to add a new aperture range to an existing
1528 * aperture in case of dma_ops domain allocation or address allocation
1529 * failure.
1530 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001531static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001532 bool populate, gfp_t gfp)
1533{
1534 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001535 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001536 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001537
Joerg Roedelf5e97052009-05-22 12:31:53 +02001538#ifdef CONFIG_IOMMU_STRESS
1539 populate = false;
1540#endif
1541
Joerg Roedel9cabe892009-05-18 16:38:55 +02001542 if (index >= APERTURE_MAX_RANGES)
1543 return -ENOMEM;
1544
1545 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1546 if (!dma_dom->aperture[index])
1547 return -ENOMEM;
1548
1549 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1550 if (!dma_dom->aperture[index]->bitmap)
1551 goto out_free;
1552
1553 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1554
1555 if (populate) {
1556 unsigned long address = dma_dom->aperture_size;
1557 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1558 u64 *pte, *pte_page;
1559
1560 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001561 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001562 &pte_page, gfp);
1563 if (!pte)
1564 goto out_free;
1565
1566 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1567
1568 address += APERTURE_RANGE_SIZE / 64;
1569 }
1570 }
1571
Joerg Roedel17f5b562011-07-06 17:14:44 +02001572 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001573 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1574
Joerg Roedel17f5b562011-07-06 17:14:44 +02001575 /* Reserve address range used for MSI messages */
1576 if (old_size < MSI_ADDR_BASE_LO &&
1577 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1578 unsigned long spage;
1579 int pages;
1580
1581 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1582 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1583
1584 dma_ops_reserve_addresses(dma_dom, spage, pages);
1585 }
1586
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001587 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001588 for_each_iommu(iommu) {
1589 if (iommu->exclusion_start &&
1590 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1591 && iommu->exclusion_start < dma_dom->aperture_size) {
1592 unsigned long startpage;
1593 int pages = iommu_num_pages(iommu->exclusion_start,
1594 iommu->exclusion_length,
1595 PAGE_SIZE);
1596 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1597 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1598 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001599 }
1600
1601 /*
1602 * Check for areas already mapped as present in the new aperture
1603 * range and mark those pages as reserved in the allocator. Such
1604 * mappings may already exist as a result of requested unity
1605 * mappings for devices.
1606 */
1607 for (i = dma_dom->aperture[index]->offset;
1608 i < dma_dom->aperture_size;
1609 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001610 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001611 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1612 continue;
1613
Joerg Roedelfcd08612011-10-11 17:41:32 +02001614 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001615 }
1616
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001617 update_domain(&dma_dom->domain);
1618
Joerg Roedel9cabe892009-05-18 16:38:55 +02001619 return 0;
1620
1621out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001622 update_domain(&dma_dom->domain);
1623
Joerg Roedel9cabe892009-05-18 16:38:55 +02001624 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1625
1626 kfree(dma_dom->aperture[index]);
1627 dma_dom->aperture[index] = NULL;
1628
1629 return -ENOMEM;
1630}
1631
Joerg Roedel384de722009-05-15 12:30:05 +02001632static unsigned long dma_ops_area_alloc(struct device *dev,
1633 struct dma_ops_domain *dom,
1634 unsigned int pages,
1635 unsigned long align_mask,
1636 u64 dma_mask,
1637 unsigned long start)
1638{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001639 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001640 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1641 int i = start >> APERTURE_RANGE_SHIFT;
1642 unsigned long boundary_size;
1643 unsigned long address = -1;
1644 unsigned long limit;
1645
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001646 next_bit >>= PAGE_SHIFT;
1647
Joerg Roedel384de722009-05-15 12:30:05 +02001648 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1649 PAGE_SIZE) >> PAGE_SHIFT;
1650
1651 for (;i < max_index; ++i) {
1652 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1653
1654 if (dom->aperture[i]->offset >= dma_mask)
1655 break;
1656
1657 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1658 dma_mask >> PAGE_SHIFT);
1659
1660 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1661 limit, next_bit, pages, 0,
1662 boundary_size, align_mask);
1663 if (address != -1) {
1664 address = dom->aperture[i]->offset +
1665 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001666 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001667 break;
1668 }
1669
1670 next_bit = 0;
1671 }
1672
1673 return address;
1674}
1675
Joerg Roedeld3086442008-06-26 21:27:57 +02001676static unsigned long dma_ops_alloc_addresses(struct device *dev,
1677 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001678 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001679 unsigned long align_mask,
1680 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001681{
Joerg Roedeld3086442008-06-26 21:27:57 +02001682 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001683
Joerg Roedelfe16f082009-05-22 12:27:53 +02001684#ifdef CONFIG_IOMMU_STRESS
1685 dom->next_address = 0;
1686 dom->need_flush = true;
1687#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001688
Joerg Roedel384de722009-05-15 12:30:05 +02001689 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001690 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001691
Joerg Roedel1c655772008-09-04 18:40:05 +02001692 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001693 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001694 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1695 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001696 dom->need_flush = true;
1697 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001698
Joerg Roedel384de722009-05-15 12:30:05 +02001699 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001700 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001701
1702 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1703
1704 return address;
1705}
1706
Joerg Roedel431b2a22008-07-11 17:14:22 +02001707/*
1708 * The address free function.
1709 *
1710 * called with domain->lock held
1711 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001712static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1713 unsigned long address,
1714 unsigned int pages)
1715{
Joerg Roedel384de722009-05-15 12:30:05 +02001716 unsigned i = address >> APERTURE_RANGE_SHIFT;
1717 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001718
Joerg Roedel384de722009-05-15 12:30:05 +02001719 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1720
Joerg Roedel47bccd62009-05-22 12:40:54 +02001721#ifdef CONFIG_IOMMU_STRESS
1722 if (i < 4)
1723 return;
1724#endif
1725
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001726 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001727 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001728
1729 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001730
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001731 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001732
Joerg Roedeld3086442008-06-26 21:27:57 +02001733}
1734
Joerg Roedel431b2a22008-07-11 17:14:22 +02001735/****************************************************************************
1736 *
1737 * The next functions belong to the domain allocation. A domain is
1738 * allocated for every IOMMU as the default domain. If device isolation
1739 * is enabled, every device get its own domain. The most important thing
1740 * about domains is the page table mapping the DMA address space they
1741 * contain.
1742 *
1743 ****************************************************************************/
1744
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001745/*
1746 * This function adds a protection domain to the global protection domain list
1747 */
1748static void add_domain_to_list(struct protection_domain *domain)
1749{
1750 unsigned long flags;
1751
1752 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1753 list_add(&domain->list, &amd_iommu_pd_list);
1754 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1755}
1756
1757/*
1758 * This function removes a protection domain to the global
1759 * protection domain list
1760 */
1761static void del_domain_from_list(struct protection_domain *domain)
1762{
1763 unsigned long flags;
1764
1765 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1766 list_del(&domain->list);
1767 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1768}
1769
Joerg Roedelec487d12008-06-26 21:27:58 +02001770static u16 domain_id_alloc(void)
1771{
1772 unsigned long flags;
1773 int id;
1774
1775 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1776 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1777 BUG_ON(id == 0);
1778 if (id > 0 && id < MAX_DOMAIN_ID)
1779 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1780 else
1781 id = 0;
1782 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1783
1784 return id;
1785}
1786
Joerg Roedela2acfb72008-12-02 18:28:53 +01001787static void domain_id_free(int id)
1788{
1789 unsigned long flags;
1790
1791 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1792 if (id > 0 && id < MAX_DOMAIN_ID)
1793 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1794 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1795}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001796
Joerg Roedel86db2e52008-12-02 18:20:21 +01001797static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001798{
1799 int i, j;
1800 u64 *p1, *p2, *p3;
1801
Joerg Roedel86db2e52008-12-02 18:20:21 +01001802 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001803
1804 if (!p1)
1805 return;
1806
1807 for (i = 0; i < 512; ++i) {
1808 if (!IOMMU_PTE_PRESENT(p1[i]))
1809 continue;
1810
1811 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001812 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001813 if (!IOMMU_PTE_PRESENT(p2[j]))
1814 continue;
1815 p3 = IOMMU_PTE_PAGE(p2[j]);
1816 free_page((unsigned long)p3);
1817 }
1818
1819 free_page((unsigned long)p2);
1820 }
1821
1822 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001823
1824 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001825}
1826
Joerg Roedelb16137b2011-11-21 16:50:23 +01001827static void free_gcr3_tbl_level1(u64 *tbl)
1828{
1829 u64 *ptr;
1830 int i;
1831
1832 for (i = 0; i < 512; ++i) {
1833 if (!(tbl[i] & GCR3_VALID))
1834 continue;
1835
1836 ptr = __va(tbl[i] & PAGE_MASK);
1837
1838 free_page((unsigned long)ptr);
1839 }
1840}
1841
1842static void free_gcr3_tbl_level2(u64 *tbl)
1843{
1844 u64 *ptr;
1845 int i;
1846
1847 for (i = 0; i < 512; ++i) {
1848 if (!(tbl[i] & GCR3_VALID))
1849 continue;
1850
1851 ptr = __va(tbl[i] & PAGE_MASK);
1852
1853 free_gcr3_tbl_level1(ptr);
1854 }
1855}
1856
Joerg Roedel52815b72011-11-17 17:24:28 +01001857static void free_gcr3_table(struct protection_domain *domain)
1858{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001859 if (domain->glx == 2)
1860 free_gcr3_tbl_level2(domain->gcr3_tbl);
1861 else if (domain->glx == 1)
1862 free_gcr3_tbl_level1(domain->gcr3_tbl);
1863 else if (domain->glx != 0)
1864 BUG();
1865
Joerg Roedel52815b72011-11-17 17:24:28 +01001866 free_page((unsigned long)domain->gcr3_tbl);
1867}
1868
Joerg Roedel431b2a22008-07-11 17:14:22 +02001869/*
1870 * Free a domain, only used if something went wrong in the
1871 * allocation path and we need to free an already allocated page table
1872 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001873static void dma_ops_domain_free(struct dma_ops_domain *dom)
1874{
Joerg Roedel384de722009-05-15 12:30:05 +02001875 int i;
1876
Joerg Roedelec487d12008-06-26 21:27:58 +02001877 if (!dom)
1878 return;
1879
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001880 del_domain_from_list(&dom->domain);
1881
Joerg Roedel86db2e52008-12-02 18:20:21 +01001882 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001883
Joerg Roedel384de722009-05-15 12:30:05 +02001884 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1885 if (!dom->aperture[i])
1886 continue;
1887 free_page((unsigned long)dom->aperture[i]->bitmap);
1888 kfree(dom->aperture[i]);
1889 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001890
1891 kfree(dom);
1892}
1893
Joerg Roedel431b2a22008-07-11 17:14:22 +02001894/*
1895 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001896 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001897 * structures required for the dma_ops interface
1898 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001899static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001900{
1901 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001902
1903 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1904 if (!dma_dom)
1905 return NULL;
1906
1907 spin_lock_init(&dma_dom->domain.lock);
1908
1909 dma_dom->domain.id = domain_id_alloc();
1910 if (dma_dom->domain.id == 0)
1911 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001912 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001913 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001914 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001915 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001916 dma_dom->domain.priv = dma_dom;
1917 if (!dma_dom->domain.pt_root)
1918 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001919
Joerg Roedel1c655772008-09-04 18:40:05 +02001920 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001921 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001922
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001923 add_domain_to_list(&dma_dom->domain);
1924
Joerg Roedel576175c2009-11-23 19:08:46 +01001925 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001926 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001927
Joerg Roedel431b2a22008-07-11 17:14:22 +02001928 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001929 * mark the first page as allocated so we never return 0 as
1930 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001931 */
Joerg Roedel384de722009-05-15 12:30:05 +02001932 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001933 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001934
Joerg Roedelec487d12008-06-26 21:27:58 +02001935
1936 return dma_dom;
1937
1938free_dma_dom:
1939 dma_ops_domain_free(dma_dom);
1940
1941 return NULL;
1942}
1943
Joerg Roedel431b2a22008-07-11 17:14:22 +02001944/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001945 * little helper function to check whether a given protection domain is a
1946 * dma_ops domain
1947 */
1948static bool dma_ops_domain(struct protection_domain *domain)
1949{
1950 return domain->flags & PD_DMA_OPS_MASK;
1951}
1952
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001953static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001954{
Joerg Roedel132bd682011-11-17 14:18:46 +01001955 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001956 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001957
Joerg Roedel132bd682011-11-17 14:18:46 +01001958 if (domain->mode != PAGE_MODE_NONE)
1959 pte_root = virt_to_phys(domain->pt_root);
1960
Joerg Roedel38ddf412008-09-11 10:38:32 +02001961 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1962 << DEV_ENTRY_MODE_SHIFT;
1963 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001964
Joerg Roedelee6c2862011-11-09 12:06:03 +01001965 flags = amd_iommu_dev_table[devid].data[1];
1966
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001967 if (ats)
1968 flags |= DTE_FLAG_IOTLB;
1969
Joerg Roedel52815b72011-11-17 17:24:28 +01001970 if (domain->flags & PD_IOMMUV2_MASK) {
1971 u64 gcr3 = __pa(domain->gcr3_tbl);
1972 u64 glx = domain->glx;
1973 u64 tmp;
1974
1975 pte_root |= DTE_FLAG_GV;
1976 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1977
1978 /* First mask out possible old values for GCR3 table */
1979 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1980 flags &= ~tmp;
1981
1982 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1983 flags &= ~tmp;
1984
1985 /* Encode GCR3 table into DTE */
1986 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1987 pte_root |= tmp;
1988
1989 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1990 flags |= tmp;
1991
1992 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1993 flags |= tmp;
1994 }
1995
Joerg Roedelee6c2862011-11-09 12:06:03 +01001996 flags &= ~(0xffffUL);
1997 flags |= domain->id;
1998
1999 amd_iommu_dev_table[devid].data[1] = flags;
2000 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002001}
2002
Joerg Roedel15898bb2009-11-24 15:39:42 +01002003static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002004{
Joerg Roedel355bf552008-12-08 12:02:41 +01002005 /* remove entry from the device table seen by the hardware */
2006 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2007 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002008
Joerg Roedelc5cca142009-10-09 18:31:20 +02002009 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002010}
2011
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002012static void do_attach(struct iommu_dev_data *dev_data,
2013 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002014{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002015 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002016 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002017
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002018 iommu = amd_iommu_rlookup_table[dev_data->devid];
2019 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002020
2021 /* Update data structures */
2022 dev_data->domain = domain;
2023 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002024 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002025
2026 /* Do reference counting */
2027 domain->dev_iommu[iommu->index] += 1;
2028 domain->dev_cnt += 1;
2029
2030 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002031 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002032}
2033
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002034static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002035{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002036 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002037
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002038 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002039
Joerg Roedelc4596112009-11-20 14:57:32 +01002040 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002041 dev_data->domain->dev_iommu[iommu->index] -= 1;
2042 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002043
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002044 /* Update data structures */
2045 dev_data->domain = NULL;
2046 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002047 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002048
2049 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002050 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002051}
2052
2053/*
2054 * If a device is not yet associated with a domain, this function does
2055 * assigns it visible for the hardware
2056 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002057static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002058 struct protection_domain *domain)
2059{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002060 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002061
Joerg Roedel15898bb2009-11-24 15:39:42 +01002062 /* lock domain */
2063 spin_lock(&domain->lock);
2064
Joerg Roedel71f77582011-06-09 19:03:15 +02002065 if (dev_data->alias_data != NULL) {
2066 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002067
Joerg Roedel2b02b092011-06-09 17:48:39 +02002068 /* Some sanity checks */
2069 ret = -EBUSY;
2070 if (alias_data->domain != NULL &&
2071 alias_data->domain != domain)
2072 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002073
Joerg Roedel2b02b092011-06-09 17:48:39 +02002074 if (dev_data->domain != NULL &&
2075 dev_data->domain != domain)
2076 goto out_unlock;
2077
2078 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002079 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002080 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002081
2082 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002083 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002084
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002085 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002086 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002087
Joerg Roedel24100052009-11-25 15:59:57 +01002088 atomic_inc(&dev_data->bind);
2089
Julia Lawall84fe6c12010-05-27 12:31:51 +02002090 ret = 0;
2091
2092out_unlock:
2093
Joerg Roedel355bf552008-12-08 12:02:41 +01002094 /* ready */
2095 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002096
Julia Lawall84fe6c12010-05-27 12:31:51 +02002097 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002098}
2099
Joerg Roedel52815b72011-11-17 17:24:28 +01002100
2101static void pdev_iommuv2_disable(struct pci_dev *pdev)
2102{
2103 pci_disable_ats(pdev);
2104 pci_disable_pri(pdev);
2105 pci_disable_pasid(pdev);
2106}
2107
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002108/* FIXME: Change generic reset-function to do the same */
2109static int pri_reset_while_enabled(struct pci_dev *pdev)
2110{
2111 u16 control;
2112 int pos;
2113
Joerg Roedel46277b72011-12-07 14:34:02 +01002114 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002115 if (!pos)
2116 return -EINVAL;
2117
Joerg Roedel46277b72011-12-07 14:34:02 +01002118 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2119 control |= PCI_PRI_CTRL_RESET;
2120 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002121
2122 return 0;
2123}
2124
Joerg Roedel52815b72011-11-17 17:24:28 +01002125static int pdev_iommuv2_enable(struct pci_dev *pdev)
2126{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002127 bool reset_enable;
2128 int reqs, ret;
2129
2130 /* FIXME: Hardcode number of outstanding requests for now */
2131 reqs = 32;
2132 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2133 reqs = 1;
2134 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002135
2136 /* Only allow access to user-accessible pages */
2137 ret = pci_enable_pasid(pdev, 0);
2138 if (ret)
2139 goto out_err;
2140
2141 /* First reset the PRI state of the device */
2142 ret = pci_reset_pri(pdev);
2143 if (ret)
2144 goto out_err;
2145
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002146 /* Enable PRI */
2147 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002148 if (ret)
2149 goto out_err;
2150
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002151 if (reset_enable) {
2152 ret = pri_reset_while_enabled(pdev);
2153 if (ret)
2154 goto out_err;
2155 }
2156
Joerg Roedel52815b72011-11-17 17:24:28 +01002157 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2158 if (ret)
2159 goto out_err;
2160
2161 return 0;
2162
2163out_err:
2164 pci_disable_pri(pdev);
2165 pci_disable_pasid(pdev);
2166
2167 return ret;
2168}
2169
Joerg Roedelc99afa22011-11-21 18:19:25 +01002170/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002171#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002172
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002173static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002174{
Joerg Roedela3b93122012-04-12 12:49:26 +02002175 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002176 int pos;
2177
Joerg Roedel46277b72011-12-07 14:34:02 +01002178 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002179 if (!pos)
2180 return false;
2181
Joerg Roedela3b93122012-04-12 12:49:26 +02002182 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002183
Joerg Roedela3b93122012-04-12 12:49:26 +02002184 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002185}
2186
Joerg Roedel15898bb2009-11-24 15:39:42 +01002187/*
2188 * If a device is not yet associated with a domain, this function does
2189 * assigns it visible for the hardware
2190 */
2191static int attach_device(struct device *dev,
2192 struct protection_domain *domain)
2193{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002194 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002195 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002196 unsigned long flags;
2197 int ret;
2198
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002199 dev_data = get_dev_data(dev);
2200
Joerg Roedel52815b72011-11-17 17:24:28 +01002201 if (domain->flags & PD_IOMMUV2_MASK) {
2202 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2203 return -EINVAL;
2204
2205 if (pdev_iommuv2_enable(pdev) != 0)
2206 return -EINVAL;
2207
2208 dev_data->ats.enabled = true;
2209 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002210 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002211 } else if (amd_iommu_iotlb_sup &&
2212 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002213 dev_data->ats.enabled = true;
2214 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2215 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002216
Joerg Roedel15898bb2009-11-24 15:39:42 +01002217 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002218 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002219 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2220
2221 /*
2222 * We might boot into a crash-kernel here. The crashed kernel
2223 * left the caches in the IOMMU dirty. So we have to flush
2224 * here to evict all dirty stuff.
2225 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002226 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002227
2228 return ret;
2229}
2230
2231/*
2232 * Removes a device from a protection domain (unlocked)
2233 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002234static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002235{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002236 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002237 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002238
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002239 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002240
Joerg Roedel2ca76272010-01-22 16:45:31 +01002241 domain = dev_data->domain;
2242
2243 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002244
Joerg Roedel71f77582011-06-09 19:03:15 +02002245 if (dev_data->alias_data != NULL) {
2246 struct iommu_dev_data *alias_data = dev_data->alias_data;
2247
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002248 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002249 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002250 }
2251
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002252 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002253 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002254
Joerg Roedel2ca76272010-01-22 16:45:31 +01002255 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002256
Joerg Roedel21129f72009-09-01 11:59:42 +02002257 /*
2258 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002259 * passthrough domain if it is detached from any other domain.
2260 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002261 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002262 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002263 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002264 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002265}
2266
2267/*
2268 * Removes a device from a protection domain (with devtable_lock held)
2269 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002270static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002271{
Joerg Roedel52815b72011-11-17 17:24:28 +01002272 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002273 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002274 unsigned long flags;
2275
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002276 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002277 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002278
Joerg Roedel355bf552008-12-08 12:02:41 +01002279 /* lock device table */
2280 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002281 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002282 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002283
Joerg Roedel52815b72011-11-17 17:24:28 +01002284 if (domain->flags & PD_IOMMUV2_MASK)
2285 pdev_iommuv2_disable(to_pci_dev(dev));
2286 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002287 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002288
2289 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002290}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002291
Joerg Roedel15898bb2009-11-24 15:39:42 +01002292/*
2293 * Find out the protection domain structure for a given PCI device. This
2294 * will give us the pointer to the page table root for example.
2295 */
2296static struct protection_domain *domain_for_device(struct device *dev)
2297{
Joerg Roedel71f77582011-06-09 19:03:15 +02002298 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002299 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002300 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002301
Joerg Roedel657cbb62009-11-23 15:26:46 +01002302 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002303
Joerg Roedel2b02b092011-06-09 17:48:39 +02002304 if (dev_data->domain)
2305 return dev_data->domain;
2306
Joerg Roedel71f77582011-06-09 19:03:15 +02002307 if (dev_data->alias_data != NULL) {
2308 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002309
2310 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2311 if (alias_data->domain != NULL) {
2312 __attach_device(dev_data, alias_data->domain);
2313 dom = alias_data->domain;
2314 }
2315 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002316 }
2317
Joerg Roedel15898bb2009-11-24 15:39:42 +01002318 return dom;
2319}
2320
Joerg Roedele275a2a2008-12-10 18:27:25 +01002321static int device_change_notifier(struct notifier_block *nb,
2322 unsigned long action, void *data)
2323{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002324 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002325 struct protection_domain *domain;
2326 struct iommu_dev_data *dev_data;
2327 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002328 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002329 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002330 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002331
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002332 if (!check_device(dev))
2333 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002334
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002335 devid = get_device_id(dev);
2336 iommu = amd_iommu_rlookup_table[devid];
2337 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002338
2339 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002340 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002341
2342 domain = domain_for_device(dev);
2343
Joerg Roedele275a2a2008-12-10 18:27:25 +01002344 if (!domain)
2345 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002346 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002347 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002348 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002349 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002350 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002351
2352 iommu_init_device(dev);
2353
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002354 /*
2355 * dev_data is still NULL and
2356 * got initialized in iommu_init_device
2357 */
2358 dev_data = get_dev_data(dev);
2359
2360 if (iommu_pass_through || dev_data->iommu_v2) {
2361 dev_data->passthrough = true;
2362 attach_device(dev, pt_domain);
2363 break;
2364 }
2365
Joerg Roedel657cbb62009-11-23 15:26:46 +01002366 domain = domain_for_device(dev);
2367
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002368 /* allocate a protection domain if a device is added */
2369 dma_domain = find_protection_domain(devid);
2370 if (dma_domain)
2371 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002372 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002373 if (!dma_domain)
2374 goto out;
2375 dma_domain->target_dev = devid;
2376
2377 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2378 list_add_tail(&dma_domain->list, &iommu_pd_list);
2379 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2380
Joerg Roedelac1534a2012-06-21 14:52:40 +02002381 dev_data = get_dev_data(dev);
2382
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002383 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002384
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002385 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002386 case BUS_NOTIFY_DEL_DEVICE:
2387
2388 iommu_uninit_device(dev);
2389
Joerg Roedele275a2a2008-12-10 18:27:25 +01002390 default:
2391 goto out;
2392 }
2393
Joerg Roedele275a2a2008-12-10 18:27:25 +01002394 iommu_completion_wait(iommu);
2395
2396out:
2397 return 0;
2398}
2399
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302400static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002401 .notifier_call = device_change_notifier,
2402};
Joerg Roedel355bf552008-12-08 12:02:41 +01002403
Joerg Roedel8638c492009-12-10 11:12:25 +01002404void amd_iommu_init_notifier(void)
2405{
2406 bus_register_notifier(&pci_bus_type, &device_nb);
2407}
2408
Joerg Roedel431b2a22008-07-11 17:14:22 +02002409/*****************************************************************************
2410 *
2411 * The next functions belong to the dma_ops mapping/unmapping code.
2412 *
2413 *****************************************************************************/
2414
2415/*
2416 * In the dma_ops path we only have the struct device. This function
2417 * finds the corresponding IOMMU, the protection domain and the
2418 * requestor id for a given device.
2419 * If the device is not yet associated with a domain this is also done
2420 * in this function.
2421 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002422static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002423{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002424 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002425 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002426 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002427
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002428 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002429 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002430
Joerg Roedel94f6d192009-11-24 16:40:02 +01002431 domain = domain_for_device(dev);
2432 if (domain != NULL && !dma_ops_domain(domain))
2433 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002434
Joerg Roedel94f6d192009-11-24 16:40:02 +01002435 if (domain != NULL)
2436 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002437
Joerg Roedel15898bb2009-11-24 15:39:42 +01002438 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002439 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002440 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002441 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2442 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002443 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002444 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002445
Joerg Roedel94f6d192009-11-24 16:40:02 +01002446 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002447}
2448
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002449static void update_device_table(struct protection_domain *domain)
2450{
Joerg Roedel492667d2009-11-27 13:25:47 +01002451 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002452
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002453 list_for_each_entry(dev_data, &domain->dev_list, list)
2454 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002455}
2456
2457static void update_domain(struct protection_domain *domain)
2458{
2459 if (!domain->updated)
2460 return;
2461
2462 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002463
2464 domain_flush_devices(domain);
2465 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002466
2467 domain->updated = false;
2468}
2469
Joerg Roedel431b2a22008-07-11 17:14:22 +02002470/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002471 * This function fetches the PTE for a given address in the aperture
2472 */
2473static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2474 unsigned long address)
2475{
Joerg Roedel384de722009-05-15 12:30:05 +02002476 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002477 u64 *pte, *pte_page;
2478
Joerg Roedel384de722009-05-15 12:30:05 +02002479 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2480 if (!aperture)
2481 return NULL;
2482
2483 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002484 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002485 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002486 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002487 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2488 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002489 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002490
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002491 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002492
2493 return pte;
2494}
2495
2496/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002497 * This is the generic map function. It maps one 4kb page at paddr to
2498 * the given address in the DMA address space for the domain.
2499 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002500static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002501 unsigned long address,
2502 phys_addr_t paddr,
2503 int direction)
2504{
2505 u64 *pte, __pte;
2506
2507 WARN_ON(address > dom->aperture_size);
2508
2509 paddr &= PAGE_MASK;
2510
Joerg Roedel8bda3092009-05-12 12:02:46 +02002511 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002512 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002513 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002514
2515 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2516
2517 if (direction == DMA_TO_DEVICE)
2518 __pte |= IOMMU_PTE_IR;
2519 else if (direction == DMA_FROM_DEVICE)
2520 __pte |= IOMMU_PTE_IW;
2521 else if (direction == DMA_BIDIRECTIONAL)
2522 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2523
2524 WARN_ON(*pte);
2525
2526 *pte = __pte;
2527
2528 return (dma_addr_t)address;
2529}
2530
Joerg Roedel431b2a22008-07-11 17:14:22 +02002531/*
2532 * The generic unmapping function for on page in the DMA address space.
2533 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002534static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002535 unsigned long address)
2536{
Joerg Roedel384de722009-05-15 12:30:05 +02002537 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002538 u64 *pte;
2539
2540 if (address >= dom->aperture_size)
2541 return;
2542
Joerg Roedel384de722009-05-15 12:30:05 +02002543 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2544 if (!aperture)
2545 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002546
Joerg Roedel384de722009-05-15 12:30:05 +02002547 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2548 if (!pte)
2549 return;
2550
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002551 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002552
2553 WARN_ON(!*pte);
2554
2555 *pte = 0ULL;
2556}
2557
Joerg Roedel431b2a22008-07-11 17:14:22 +02002558/*
2559 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002560 * contiguous memory region into DMA address space. It is used by all
2561 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002562 * Must be called with the domain lock held.
2563 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002564static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002565 struct dma_ops_domain *dma_dom,
2566 phys_addr_t paddr,
2567 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002568 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002569 bool align,
2570 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002571{
2572 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002573 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002574 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002575 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002576 int i;
2577
Joerg Roedele3c449f2008-10-15 22:02:11 -07002578 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002579 paddr &= PAGE_MASK;
2580
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002581 INC_STATS_COUNTER(total_map_requests);
2582
Joerg Roedelc1858972008-12-12 15:42:39 +01002583 if (pages > 1)
2584 INC_STATS_COUNTER(cross_page);
2585
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002586 if (align)
2587 align_mask = (1UL << get_order(size)) - 1;
2588
Joerg Roedel11b83882009-05-19 10:23:15 +02002589retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002590 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2591 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002592 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002593 /*
2594 * setting next_address here will let the address
2595 * allocator only scan the new allocated range in the
2596 * first run. This is a small optimization.
2597 */
2598 dma_dom->next_address = dma_dom->aperture_size;
2599
Joerg Roedel576175c2009-11-23 19:08:46 +01002600 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002601 goto out;
2602
2603 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002604 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002605 * allocation again
2606 */
2607 goto retry;
2608 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002609
2610 start = address;
2611 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002612 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002613 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002614 goto out_unmap;
2615
Joerg Roedelcb76c322008-06-26 21:28:00 +02002616 paddr += PAGE_SIZE;
2617 start += PAGE_SIZE;
2618 }
2619 address += offset;
2620
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002621 ADD_STATS_COUNTER(alloced_io_mem, size);
2622
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002623 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002624 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002625 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002626 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002627 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002628
Joerg Roedelcb76c322008-06-26 21:28:00 +02002629out:
2630 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002631
2632out_unmap:
2633
2634 for (--i; i >= 0; --i) {
2635 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002636 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002637 }
2638
2639 dma_ops_free_addresses(dma_dom, address, pages);
2640
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002641 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002642}
2643
Joerg Roedel431b2a22008-07-11 17:14:22 +02002644/*
2645 * Does the reverse of the __map_single function. Must be called with
2646 * the domain lock held too
2647 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002648static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002649 dma_addr_t dma_addr,
2650 size_t size,
2651 int dir)
2652{
Joerg Roedel04e04632010-09-23 16:12:48 +02002653 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002654 dma_addr_t i, start;
2655 unsigned int pages;
2656
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002657 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002658 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002659 return;
2660
Joerg Roedel04e04632010-09-23 16:12:48 +02002661 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002662 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002663 dma_addr &= PAGE_MASK;
2664 start = dma_addr;
2665
2666 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002667 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002668 start += PAGE_SIZE;
2669 }
2670
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002671 SUB_STATS_COUNTER(alloced_io_mem, size);
2672
Joerg Roedelcb76c322008-06-26 21:28:00 +02002673 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002674
Joerg Roedel80be3082008-11-06 14:59:05 +01002675 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002676 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002677 dma_dom->need_flush = false;
2678 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002679}
2680
Joerg Roedel431b2a22008-07-11 17:14:22 +02002681/*
2682 * The exported map_single function for dma_ops.
2683 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002684static dma_addr_t map_page(struct device *dev, struct page *page,
2685 unsigned long offset, size_t size,
2686 enum dma_data_direction dir,
2687 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002688{
2689 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002690 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002691 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002692 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002693 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002694
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002695 INC_STATS_COUNTER(cnt_map_single);
2696
Joerg Roedel94f6d192009-11-24 16:40:02 +01002697 domain = get_domain(dev);
2698 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002699 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002700 else if (IS_ERR(domain))
2701 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002702
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002703 dma_mask = *dev->dma_mask;
2704
Joerg Roedel4da70b92008-06-26 21:28:01 +02002705 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002706
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002707 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002708 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002709 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002710 goto out;
2711
Joerg Roedel17b124b2011-04-06 18:01:35 +02002712 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002713
2714out:
2715 spin_unlock_irqrestore(&domain->lock, flags);
2716
2717 return addr;
2718}
2719
Joerg Roedel431b2a22008-07-11 17:14:22 +02002720/*
2721 * The exported unmap_single function for dma_ops.
2722 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002723static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2724 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002725{
2726 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002727 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002728
Joerg Roedel146a6912008-12-12 15:07:12 +01002729 INC_STATS_COUNTER(cnt_unmap_single);
2730
Joerg Roedel94f6d192009-11-24 16:40:02 +01002731 domain = get_domain(dev);
2732 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002733 return;
2734
Joerg Roedel4da70b92008-06-26 21:28:01 +02002735 spin_lock_irqsave(&domain->lock, flags);
2736
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002737 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002738
Joerg Roedel17b124b2011-04-06 18:01:35 +02002739 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002740
2741 spin_unlock_irqrestore(&domain->lock, flags);
2742}
2743
Joerg Roedel431b2a22008-07-11 17:14:22 +02002744/*
2745 * This is a special map_sg function which is used if we should map a
2746 * device which is not handled by an AMD IOMMU in the system.
2747 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002748static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2749 int nelems, int dir)
2750{
2751 struct scatterlist *s;
2752 int i;
2753
2754 for_each_sg(sglist, s, nelems, i) {
2755 s->dma_address = (dma_addr_t)sg_phys(s);
2756 s->dma_length = s->length;
2757 }
2758
2759 return nelems;
2760}
2761
Joerg Roedel431b2a22008-07-11 17:14:22 +02002762/*
2763 * The exported map_sg function for dma_ops (handles scatter-gather
2764 * lists).
2765 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002766static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002767 int nelems, enum dma_data_direction dir,
2768 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002769{
2770 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002771 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002772 int i;
2773 struct scatterlist *s;
2774 phys_addr_t paddr;
2775 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002776 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002777
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002778 INC_STATS_COUNTER(cnt_map_sg);
2779
Joerg Roedel94f6d192009-11-24 16:40:02 +01002780 domain = get_domain(dev);
2781 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002782 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002783 else if (IS_ERR(domain))
2784 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002785
Joerg Roedel832a90c2008-09-18 15:54:23 +02002786 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002787
Joerg Roedel65b050a2008-06-26 21:28:02 +02002788 spin_lock_irqsave(&domain->lock, flags);
2789
2790 for_each_sg(sglist, s, nelems, i) {
2791 paddr = sg_phys(s);
2792
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002793 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002794 paddr, s->length, dir, false,
2795 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002796
2797 if (s->dma_address) {
2798 s->dma_length = s->length;
2799 mapped_elems++;
2800 } else
2801 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002802 }
2803
Joerg Roedel17b124b2011-04-06 18:01:35 +02002804 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002805
2806out:
2807 spin_unlock_irqrestore(&domain->lock, flags);
2808
2809 return mapped_elems;
2810unmap:
2811 for_each_sg(sglist, s, mapped_elems, i) {
2812 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002813 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002814 s->dma_length, dir);
2815 s->dma_address = s->dma_length = 0;
2816 }
2817
2818 mapped_elems = 0;
2819
2820 goto out;
2821}
2822
Joerg Roedel431b2a22008-07-11 17:14:22 +02002823/*
2824 * The exported map_sg function for dma_ops (handles scatter-gather
2825 * lists).
2826 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002827static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002828 int nelems, enum dma_data_direction dir,
2829 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002830{
2831 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002832 struct protection_domain *domain;
2833 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002834 int i;
2835
Joerg Roedel55877a62008-12-12 15:12:14 +01002836 INC_STATS_COUNTER(cnt_unmap_sg);
2837
Joerg Roedel94f6d192009-11-24 16:40:02 +01002838 domain = get_domain(dev);
2839 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002840 return;
2841
Joerg Roedel65b050a2008-06-26 21:28:02 +02002842 spin_lock_irqsave(&domain->lock, flags);
2843
2844 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002845 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002846 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002847 s->dma_address = s->dma_length = 0;
2848 }
2849
Joerg Roedel17b124b2011-04-06 18:01:35 +02002850 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002851
2852 spin_unlock_irqrestore(&domain->lock, flags);
2853}
2854
Joerg Roedel431b2a22008-07-11 17:14:22 +02002855/*
2856 * The exported alloc_coherent function for dma_ops.
2857 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002858static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002859 dma_addr_t *dma_addr, gfp_t flag,
2860 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002861{
2862 unsigned long flags;
2863 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002864 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002865 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002866 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002867
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002868 INC_STATS_COUNTER(cnt_alloc_coherent);
2869
Joerg Roedel94f6d192009-11-24 16:40:02 +01002870 domain = get_domain(dev);
2871 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002872 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2873 *dma_addr = __pa(virt_addr);
2874 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002875 } else if (IS_ERR(domain))
2876 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002877
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002878 dma_mask = dev->coherent_dma_mask;
2879 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2880 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002881
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002882 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2883 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302884 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002885
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002886 paddr = virt_to_phys(virt_addr);
2887
Joerg Roedel832a90c2008-09-18 15:54:23 +02002888 if (!dma_mask)
2889 dma_mask = *dev->dma_mask;
2890
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002891 spin_lock_irqsave(&domain->lock, flags);
2892
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002893 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002894 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002895
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002896 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002897 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002898 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002899 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002900
Joerg Roedel17b124b2011-04-06 18:01:35 +02002901 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002902
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002903 spin_unlock_irqrestore(&domain->lock, flags);
2904
2905 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002906
2907out_free:
2908
2909 free_pages((unsigned long)virt_addr, get_order(size));
2910
2911 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002912}
2913
Joerg Roedel431b2a22008-07-11 17:14:22 +02002914/*
2915 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002916 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002917static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002918 void *virt_addr, dma_addr_t dma_addr,
2919 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002920{
2921 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002922 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002923
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002924 INC_STATS_COUNTER(cnt_free_coherent);
2925
Joerg Roedel94f6d192009-11-24 16:40:02 +01002926 domain = get_domain(dev);
2927 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002928 goto free_mem;
2929
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002930 spin_lock_irqsave(&domain->lock, flags);
2931
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002932 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002933
Joerg Roedel17b124b2011-04-06 18:01:35 +02002934 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002935
2936 spin_unlock_irqrestore(&domain->lock, flags);
2937
2938free_mem:
2939 free_pages((unsigned long)virt_addr, get_order(size));
2940}
2941
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002942/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002943 * This function is called by the DMA layer to find out if we can handle a
2944 * particular device. It is part of the dma_ops.
2945 */
2946static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2947{
Joerg Roedel420aef82009-11-23 16:14:57 +01002948 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002949}
2950
2951/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002952 * The function for pre-allocating protection domains.
2953 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002954 * If the driver core informs the DMA layer if a driver grabs a device
2955 * we don't need to preallocate the protection domains anymore.
2956 * For now we have to.
2957 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002958static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002959{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002960 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002961 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002962 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002963 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002964
Chris Wrightd18c69d2010-04-02 18:27:55 -07002965 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002966
2967 /* Do we handle this device? */
2968 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002969 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002970
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002971 dev_data = get_dev_data(&dev->dev);
2972 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2973 /* Make sure passthrough domain is allocated */
2974 alloc_passthrough_domain();
2975 dev_data->passthrough = true;
2976 attach_device(&dev->dev, pt_domain);
2977 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2978 dev_name(&dev->dev));
2979 }
2980
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002981 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002982 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002983 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002984
2985 devid = get_device_id(&dev->dev);
2986
Joerg Roedel87a64d52009-11-24 17:26:43 +01002987 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002988 if (!dma_dom)
2989 continue;
2990 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002991 dma_dom->target_dev = devid;
2992
Joerg Roedel15898bb2009-11-24 15:39:42 +01002993 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002994
Joerg Roedelbd60b732008-09-11 10:24:48 +02002995 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002996 }
2997}
2998
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002999static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003000 .alloc = alloc_coherent,
3001 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003002 .map_page = map_page,
3003 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003004 .map_sg = map_sg,
3005 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003006 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003007};
3008
Joerg Roedel27c21272011-05-30 15:56:24 +02003009static unsigned device_dma_ops_init(void)
3010{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003011 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003012 struct pci_dev *pdev = NULL;
3013 unsigned unhandled = 0;
3014
3015 for_each_pci_dev(pdev) {
3016 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003017
3018 iommu_ignore_device(&pdev->dev);
3019
Joerg Roedel27c21272011-05-30 15:56:24 +02003020 unhandled += 1;
3021 continue;
3022 }
3023
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003024 dev_data = get_dev_data(&pdev->dev);
3025
3026 if (!dev_data->passthrough)
3027 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3028 else
3029 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003030 }
3031
3032 return unhandled;
3033}
3034
Joerg Roedel431b2a22008-07-11 17:14:22 +02003035/*
3036 * The function which clues the AMD IOMMU driver into dma_ops.
3037 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003038
3039void __init amd_iommu_init_api(void)
3040{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003041 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003042}
3043
Joerg Roedel6631ee92008-06-26 21:28:05 +02003044int __init amd_iommu_init_dma_ops(void)
3045{
3046 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003047 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003048
Joerg Roedel431b2a22008-07-11 17:14:22 +02003049 /*
3050 * first allocate a default protection domain for every IOMMU we
3051 * found in the system. Devices not assigned to any other
3052 * protection domain will be assigned to the default one.
3053 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003054 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003055 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003056 if (iommu->default_dom == NULL)
3057 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003058 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003059 ret = iommu_init_unity_mappings(iommu);
3060 if (ret)
3061 goto free_domains;
3062 }
3063
Joerg Roedel431b2a22008-07-11 17:14:22 +02003064 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003065 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003066 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003067 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003068
3069 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003070 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003071
Joerg Roedel431b2a22008-07-11 17:14:22 +02003072 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003073 unhandled = device_dma_ops_init();
3074 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3075 /* There are unhandled devices - initialize swiotlb for them */
3076 swiotlb = 1;
3077 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003078
Joerg Roedel7f265082008-12-12 13:50:21 +01003079 amd_iommu_stats_init();
3080
Joerg Roedel62410ee2012-06-12 16:42:43 +02003081 if (amd_iommu_unmap_flush)
3082 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3083 else
3084 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3085
Joerg Roedel6631ee92008-06-26 21:28:05 +02003086 return 0;
3087
3088free_domains:
3089
Joerg Roedel3bd22172009-05-04 15:06:20 +02003090 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02003091 if (iommu->default_dom)
3092 dma_ops_domain_free(iommu->default_dom);
3093 }
3094
3095 return ret;
3096}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003097
3098/*****************************************************************************
3099 *
3100 * The following functions belong to the exported interface of AMD IOMMU
3101 *
3102 * This interface allows access to lower level functions of the IOMMU
3103 * like protection domain handling and assignement of devices to domains
3104 * which is not possible with the dma_ops interface.
3105 *
3106 *****************************************************************************/
3107
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003108static void cleanup_domain(struct protection_domain *domain)
3109{
Joerg Roedel492667d2009-11-27 13:25:47 +01003110 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003111 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003112
3113 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3114
Joerg Roedel492667d2009-11-27 13:25:47 +01003115 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003116 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003117 atomic_set(&dev_data->bind, 0);
3118 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003119
3120 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3121}
3122
Joerg Roedel26508152009-08-26 16:52:40 +02003123static void protection_domain_free(struct protection_domain *domain)
3124{
3125 if (!domain)
3126 return;
3127
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003128 del_domain_from_list(domain);
3129
Joerg Roedel26508152009-08-26 16:52:40 +02003130 if (domain->id)
3131 domain_id_free(domain->id);
3132
3133 kfree(domain);
3134}
3135
3136static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003137{
3138 struct protection_domain *domain;
3139
3140 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3141 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003142 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003143
3144 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003145 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003146 domain->id = domain_id_alloc();
3147 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003148 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003149 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003150
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003151 add_domain_to_list(domain);
3152
Joerg Roedel26508152009-08-26 16:52:40 +02003153 return domain;
3154
3155out_err:
3156 kfree(domain);
3157
3158 return NULL;
3159}
3160
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003161static int __init alloc_passthrough_domain(void)
3162{
3163 if (pt_domain != NULL)
3164 return 0;
3165
3166 /* allocate passthrough domain */
3167 pt_domain = protection_domain_alloc();
3168 if (!pt_domain)
3169 return -ENOMEM;
3170
3171 pt_domain->mode = PAGE_MODE_NONE;
3172
3173 return 0;
3174}
Joerg Roedel26508152009-08-26 16:52:40 +02003175static int amd_iommu_domain_init(struct iommu_domain *dom)
3176{
3177 struct protection_domain *domain;
3178
3179 domain = protection_domain_alloc();
3180 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003181 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003182
3183 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003184 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3185 if (!domain->pt_root)
3186 goto out_free;
3187
Joerg Roedelf3572db2011-11-23 12:36:25 +01003188 domain->iommu_domain = dom;
3189
Joerg Roedelc156e342008-12-02 18:13:27 +01003190 dom->priv = domain;
3191
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003192 dom->geometry.aperture_start = 0;
3193 dom->geometry.aperture_end = ~0ULL;
3194 dom->geometry.force_aperture = true;
3195
Joerg Roedelc156e342008-12-02 18:13:27 +01003196 return 0;
3197
3198out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003199 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003200
3201 return -ENOMEM;
3202}
3203
Joerg Roedel98383fc2008-12-02 18:34:12 +01003204static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3205{
3206 struct protection_domain *domain = dom->priv;
3207
3208 if (!domain)
3209 return;
3210
3211 if (domain->dev_cnt > 0)
3212 cleanup_domain(domain);
3213
3214 BUG_ON(domain->dev_cnt != 0);
3215
Joerg Roedel132bd682011-11-17 14:18:46 +01003216 if (domain->mode != PAGE_MODE_NONE)
3217 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003218
Joerg Roedel52815b72011-11-17 17:24:28 +01003219 if (domain->flags & PD_IOMMUV2_MASK)
3220 free_gcr3_table(domain);
3221
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003222 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003223
3224 dom->priv = NULL;
3225}
3226
Joerg Roedel684f2882008-12-08 12:07:44 +01003227static void amd_iommu_detach_device(struct iommu_domain *dom,
3228 struct device *dev)
3229{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003230 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003231 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003232 u16 devid;
3233
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003234 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003235 return;
3236
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003237 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003238
Joerg Roedel657cbb62009-11-23 15:26:46 +01003239 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003240 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003241
3242 iommu = amd_iommu_rlookup_table[devid];
3243 if (!iommu)
3244 return;
3245
Joerg Roedel684f2882008-12-08 12:07:44 +01003246 iommu_completion_wait(iommu);
3247}
3248
Joerg Roedel01106062008-12-02 19:34:11 +01003249static int amd_iommu_attach_device(struct iommu_domain *dom,
3250 struct device *dev)
3251{
3252 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003253 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003254 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003255 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003256
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003257 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003258 return -EINVAL;
3259
Joerg Roedel657cbb62009-11-23 15:26:46 +01003260 dev_data = dev->archdata.iommu;
3261
Joerg Roedelf62dda62011-06-09 12:55:35 +02003262 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003263 if (!iommu)
3264 return -EINVAL;
3265
Joerg Roedel657cbb62009-11-23 15:26:46 +01003266 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003267 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003268
Joerg Roedel15898bb2009-11-24 15:39:42 +01003269 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003270
3271 iommu_completion_wait(iommu);
3272
Joerg Roedel15898bb2009-11-24 15:39:42 +01003273 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003274}
3275
Joerg Roedel468e2362010-01-21 16:37:36 +01003276static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003277 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003278{
3279 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003280 int prot = 0;
3281 int ret;
3282
Joerg Roedel132bd682011-11-17 14:18:46 +01003283 if (domain->mode == PAGE_MODE_NONE)
3284 return -EINVAL;
3285
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003286 if (iommu_prot & IOMMU_READ)
3287 prot |= IOMMU_PROT_IR;
3288 if (iommu_prot & IOMMU_WRITE)
3289 prot |= IOMMU_PROT_IW;
3290
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003291 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003292 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003293 mutex_unlock(&domain->api_lock);
3294
Joerg Roedel795e74f2010-05-11 17:40:57 +02003295 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003296}
3297
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003298static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3299 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003300{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003301 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003302 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003303
Joerg Roedel132bd682011-11-17 14:18:46 +01003304 if (domain->mode == PAGE_MODE_NONE)
3305 return -EINVAL;
3306
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003307 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003308 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003309 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003310
Joerg Roedel17b124b2011-04-06 18:01:35 +02003311 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003312
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003313 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003314}
3315
Joerg Roedel645c4c82008-12-02 20:05:50 +01003316static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3317 unsigned long iova)
3318{
3319 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003320 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003321 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003322 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003323
Joerg Roedel132bd682011-11-17 14:18:46 +01003324 if (domain->mode == PAGE_MODE_NONE)
3325 return iova;
3326
Joerg Roedel24cd7722010-01-19 17:27:39 +01003327 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003328
Joerg Roedela6d41a42009-09-02 17:08:55 +02003329 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003330 return 0;
3331
Joerg Roedelf03152b2010-01-21 16:15:24 +01003332 if (PM_PTE_LEVEL(*pte) == 0)
3333 offset_mask = PAGE_SIZE - 1;
3334 else
3335 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3336
3337 __pte = *pte & PM_ADDR_MASK;
3338 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003339
3340 return paddr;
3341}
3342
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003343static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3344 unsigned long cap)
3345{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003346 switch (cap) {
3347 case IOMMU_CAP_CACHE_COHERENCY:
3348 return 1;
3349 }
3350
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003351 return 0;
3352}
3353
Joerg Roedel26961ef2008-12-03 17:00:17 +01003354static struct iommu_ops amd_iommu_ops = {
3355 .domain_init = amd_iommu_domain_init,
3356 .domain_destroy = amd_iommu_domain_destroy,
3357 .attach_dev = amd_iommu_attach_device,
3358 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003359 .map = amd_iommu_map,
3360 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003361 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003362 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003363 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003364};
3365
Joerg Roedel0feae532009-08-26 15:26:30 +02003366/*****************************************************************************
3367 *
3368 * The next functions do a basic initialization of IOMMU for pass through
3369 * mode
3370 *
3371 * In passthrough mode the IOMMU is initialized and enabled but not used for
3372 * DMA-API translation.
3373 *
3374 *****************************************************************************/
3375
3376int __init amd_iommu_init_passthrough(void)
3377{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003378 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003379 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003380 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003381 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003382 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003383
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003384 ret = alloc_passthrough_domain();
3385 if (ret)
3386 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003387
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003388 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003389 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003390 continue;
3391
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003392 dev_data = get_dev_data(&dev->dev);
3393 dev_data->passthrough = true;
3394
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003395 devid = get_device_id(&dev->dev);
3396
Joerg Roedel15898bb2009-11-24 15:39:42 +01003397 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003398 if (!iommu)
3399 continue;
3400
Joerg Roedel15898bb2009-11-24 15:39:42 +01003401 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003402 }
3403
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003404 amd_iommu_stats_init();
3405
Joerg Roedel0feae532009-08-26 15:26:30 +02003406 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3407
3408 return 0;
3409}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003410
3411/* IOMMUv2 specific functions */
3412int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3413{
3414 return atomic_notifier_chain_register(&ppr_notifier, nb);
3415}
3416EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3417
3418int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3419{
3420 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3421}
3422EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003423
3424void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3425{
3426 struct protection_domain *domain = dom->priv;
3427 unsigned long flags;
3428
3429 spin_lock_irqsave(&domain->lock, flags);
3430
3431 /* Update data structure */
3432 domain->mode = PAGE_MODE_NONE;
3433 domain->updated = true;
3434
3435 /* Make changes visible to IOMMUs */
3436 update_domain(domain);
3437
3438 /* Page-table is not visible to IOMMU anymore, so free it */
3439 free_pagetable(domain);
3440
3441 spin_unlock_irqrestore(&domain->lock, flags);
3442}
3443EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003444
3445int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3446{
3447 struct protection_domain *domain = dom->priv;
3448 unsigned long flags;
3449 int levels, ret;
3450
3451 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3452 return -EINVAL;
3453
3454 /* Number of GCR3 table levels required */
3455 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3456 levels += 1;
3457
3458 if (levels > amd_iommu_max_glx_val)
3459 return -EINVAL;
3460
3461 spin_lock_irqsave(&domain->lock, flags);
3462
3463 /*
3464 * Save us all sanity checks whether devices already in the
3465 * domain support IOMMUv2. Just force that the domain has no
3466 * devices attached when it is switched into IOMMUv2 mode.
3467 */
3468 ret = -EBUSY;
3469 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3470 goto out;
3471
3472 ret = -ENOMEM;
3473 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3474 if (domain->gcr3_tbl == NULL)
3475 goto out;
3476
3477 domain->glx = levels;
3478 domain->flags |= PD_IOMMUV2_MASK;
3479 domain->updated = true;
3480
3481 update_domain(domain);
3482
3483 ret = 0;
3484
3485out:
3486 spin_unlock_irqrestore(&domain->lock, flags);
3487
3488 return ret;
3489}
3490EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003491
3492static int __flush_pasid(struct protection_domain *domain, int pasid,
3493 u64 address, bool size)
3494{
3495 struct iommu_dev_data *dev_data;
3496 struct iommu_cmd cmd;
3497 int i, ret;
3498
3499 if (!(domain->flags & PD_IOMMUV2_MASK))
3500 return -EINVAL;
3501
3502 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3503
3504 /*
3505 * IOMMU TLB needs to be flushed before Device TLB to
3506 * prevent device TLB refill from IOMMU TLB
3507 */
3508 for (i = 0; i < amd_iommus_present; ++i) {
3509 if (domain->dev_iommu[i] == 0)
3510 continue;
3511
3512 ret = iommu_queue_command(amd_iommus[i], &cmd);
3513 if (ret != 0)
3514 goto out;
3515 }
3516
3517 /* Wait until IOMMU TLB flushes are complete */
3518 domain_flush_complete(domain);
3519
3520 /* Now flush device TLBs */
3521 list_for_each_entry(dev_data, &domain->dev_list, list) {
3522 struct amd_iommu *iommu;
3523 int qdep;
3524
3525 BUG_ON(!dev_data->ats.enabled);
3526
3527 qdep = dev_data->ats.qdep;
3528 iommu = amd_iommu_rlookup_table[dev_data->devid];
3529
3530 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3531 qdep, address, size);
3532
3533 ret = iommu_queue_command(iommu, &cmd);
3534 if (ret != 0)
3535 goto out;
3536 }
3537
3538 /* Wait until all device TLBs are flushed */
3539 domain_flush_complete(domain);
3540
3541 ret = 0;
3542
3543out:
3544
3545 return ret;
3546}
3547
3548static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3549 u64 address)
3550{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003551 INC_STATS_COUNTER(invalidate_iotlb);
3552
Joerg Roedel22e266c2011-11-21 15:59:08 +01003553 return __flush_pasid(domain, pasid, address, false);
3554}
3555
3556int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3557 u64 address)
3558{
3559 struct protection_domain *domain = dom->priv;
3560 unsigned long flags;
3561 int ret;
3562
3563 spin_lock_irqsave(&domain->lock, flags);
3564 ret = __amd_iommu_flush_page(domain, pasid, address);
3565 spin_unlock_irqrestore(&domain->lock, flags);
3566
3567 return ret;
3568}
3569EXPORT_SYMBOL(amd_iommu_flush_page);
3570
3571static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3572{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003573 INC_STATS_COUNTER(invalidate_iotlb_all);
3574
Joerg Roedel22e266c2011-11-21 15:59:08 +01003575 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3576 true);
3577}
3578
3579int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3580{
3581 struct protection_domain *domain = dom->priv;
3582 unsigned long flags;
3583 int ret;
3584
3585 spin_lock_irqsave(&domain->lock, flags);
3586 ret = __amd_iommu_flush_tlb(domain, pasid);
3587 spin_unlock_irqrestore(&domain->lock, flags);
3588
3589 return ret;
3590}
3591EXPORT_SYMBOL(amd_iommu_flush_tlb);
3592
Joerg Roedelb16137b2011-11-21 16:50:23 +01003593static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3594{
3595 int index;
3596 u64 *pte;
3597
3598 while (true) {
3599
3600 index = (pasid >> (9 * level)) & 0x1ff;
3601 pte = &root[index];
3602
3603 if (level == 0)
3604 break;
3605
3606 if (!(*pte & GCR3_VALID)) {
3607 if (!alloc)
3608 return NULL;
3609
3610 root = (void *)get_zeroed_page(GFP_ATOMIC);
3611 if (root == NULL)
3612 return NULL;
3613
3614 *pte = __pa(root) | GCR3_VALID;
3615 }
3616
3617 root = __va(*pte & PAGE_MASK);
3618
3619 level -= 1;
3620 }
3621
3622 return pte;
3623}
3624
3625static int __set_gcr3(struct protection_domain *domain, int pasid,
3626 unsigned long cr3)
3627{
3628 u64 *pte;
3629
3630 if (domain->mode != PAGE_MODE_NONE)
3631 return -EINVAL;
3632
3633 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3634 if (pte == NULL)
3635 return -ENOMEM;
3636
3637 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3638
3639 return __amd_iommu_flush_tlb(domain, pasid);
3640}
3641
3642static int __clear_gcr3(struct protection_domain *domain, int pasid)
3643{
3644 u64 *pte;
3645
3646 if (domain->mode != PAGE_MODE_NONE)
3647 return -EINVAL;
3648
3649 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3650 if (pte == NULL)
3651 return 0;
3652
3653 *pte = 0;
3654
3655 return __amd_iommu_flush_tlb(domain, pasid);
3656}
3657
3658int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3659 unsigned long cr3)
3660{
3661 struct protection_domain *domain = dom->priv;
3662 unsigned long flags;
3663 int ret;
3664
3665 spin_lock_irqsave(&domain->lock, flags);
3666 ret = __set_gcr3(domain, pasid, cr3);
3667 spin_unlock_irqrestore(&domain->lock, flags);
3668
3669 return ret;
3670}
3671EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3672
3673int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3674{
3675 struct protection_domain *domain = dom->priv;
3676 unsigned long flags;
3677 int ret;
3678
3679 spin_lock_irqsave(&domain->lock, flags);
3680 ret = __clear_gcr3(domain, pasid);
3681 spin_unlock_irqrestore(&domain->lock, flags);
3682
3683 return ret;
3684}
3685EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003686
3687int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3688 int status, int tag)
3689{
3690 struct iommu_dev_data *dev_data;
3691 struct amd_iommu *iommu;
3692 struct iommu_cmd cmd;
3693
Joerg Roedel399be2f2011-12-01 16:53:47 +01003694 INC_STATS_COUNTER(complete_ppr);
3695
Joerg Roedelc99afa22011-11-21 18:19:25 +01003696 dev_data = get_dev_data(&pdev->dev);
3697 iommu = amd_iommu_rlookup_table[dev_data->devid];
3698
3699 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3700 tag, dev_data->pri_tlp);
3701
3702 return iommu_queue_command(iommu, &cmd);
3703}
3704EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003705
3706struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3707{
3708 struct protection_domain *domain;
3709
3710 domain = get_domain(&pdev->dev);
3711 if (IS_ERR(domain))
3712 return NULL;
3713
3714 /* Only return IOMMUv2 domains */
3715 if (!(domain->flags & PD_IOMMUV2_MASK))
3716 return NULL;
3717
3718 return domain->iommu_domain;
3719}
3720EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003721
3722void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3723{
3724 struct iommu_dev_data *dev_data;
3725
3726 if (!amd_iommu_v2_supported())
3727 return;
3728
3729 dev_data = get_dev_data(&pdev->dev);
3730 dev_data->errata |= (1 << erratum);
3731}
3732EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003733
3734int amd_iommu_device_info(struct pci_dev *pdev,
3735 struct amd_iommu_device_info *info)
3736{
3737 int max_pasids;
3738 int pos;
3739
3740 if (pdev == NULL || info == NULL)
3741 return -EINVAL;
3742
3743 if (!amd_iommu_v2_supported())
3744 return -EINVAL;
3745
3746 memset(info, 0, sizeof(*info));
3747
3748 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3749 if (pos)
3750 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3751
3752 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3753 if (pos)
3754 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3755
3756 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3757 if (pos) {
3758 int features;
3759
3760 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3761 max_pasids = min(max_pasids, (1 << 20));
3762
3763 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3764 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3765
3766 features = pci_pasid_features(pdev);
3767 if (features & PCI_PASID_CAP_EXEC)
3768 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3769 if (features & PCI_PASID_CAP_PRIV)
3770 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3771 }
3772
3773 return 0;
3774}
3775EXPORT_SYMBOL(amd_iommu_device_info);