blob: e453bbd0944508f02bef79890fcd8e187781862d [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
Joerg Roedelb6c02712008-06-26 21:27:53 +020047static DEFINE_RWLOCK(amd_iommu_devtable_lock);
48
Joerg Roedelbd60b732008-09-11 10:24:48 +020049/* A list of preallocated protection domains */
50static LIST_HEAD(iommu_pd_list);
51static DEFINE_SPINLOCK(iommu_pd_list_lock);
52
Joerg Roedel8fa5f802011-06-09 12:24:45 +020053/* List of all available dev_data structures */
54static LIST_HEAD(dev_data_list);
55static DEFINE_SPINLOCK(dev_data_list_lock);
56
Joerg Roedel0feae532009-08-26 15:26:30 +020057/*
58 * Domain for untranslated devices - only allocated
59 * if iommu=pt passed on kernel cmd line.
60 */
61static struct protection_domain *pt_domain;
62
Joerg Roedel26961ef2008-12-03 17:00:17 +010063static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010064
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010065static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010066int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010067
Joerg Roedel431b2a22008-07-11 17:14:22 +020068/*
69 * general struct to manage commands send to an IOMMU
70 */
Joerg Roedeld6449532008-07-11 17:14:28 +020071struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020072 u32 data[4];
73};
74
Joerg Roedel04bfdd82009-09-02 16:00:23 +020075static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +010076static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -070077
Joerg Roedel15898bb2009-11-24 15:39:42 +010078/****************************************************************************
79 *
80 * Helper functions
81 *
82 ****************************************************************************/
83
Joerg Roedelf62dda62011-06-09 12:55:35 +020084static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +020085{
86 struct iommu_dev_data *dev_data;
87 unsigned long flags;
88
89 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
90 if (!dev_data)
91 return NULL;
92
Joerg Roedelf62dda62011-06-09 12:55:35 +020093 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +020094 atomic_set(&dev_data->bind, 0);
95
96 spin_lock_irqsave(&dev_data_list_lock, flags);
97 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
98 spin_unlock_irqrestore(&dev_data_list_lock, flags);
99
100 return dev_data;
101}
102
103static void free_dev_data(struct iommu_dev_data *dev_data)
104{
105 unsigned long flags;
106
107 spin_lock_irqsave(&dev_data_list_lock, flags);
108 list_del(&dev_data->dev_data_list);
109 spin_unlock_irqrestore(&dev_data_list_lock, flags);
110
111 kfree(dev_data);
112}
113
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200114static struct iommu_dev_data *search_dev_data(u16 devid)
115{
116 struct iommu_dev_data *dev_data;
117 unsigned long flags;
118
119 spin_lock_irqsave(&dev_data_list_lock, flags);
120 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
121 if (dev_data->devid == devid)
122 goto out_unlock;
123 }
124
125 dev_data = NULL;
126
127out_unlock:
128 spin_unlock_irqrestore(&dev_data_list_lock, flags);
129
130 return dev_data;
131}
132
133static struct iommu_dev_data *find_dev_data(u16 devid)
134{
135 struct iommu_dev_data *dev_data;
136
137 dev_data = search_dev_data(devid);
138
139 if (dev_data == NULL)
140 dev_data = alloc_dev_data(devid);
141
142 return dev_data;
143}
144
Joerg Roedel15898bb2009-11-24 15:39:42 +0100145static inline u16 get_device_id(struct device *dev)
146{
147 struct pci_dev *pdev = to_pci_dev(dev);
148
149 return calc_devid(pdev->bus->number, pdev->devfn);
150}
151
Joerg Roedel657cbb62009-11-23 15:26:46 +0100152static struct iommu_dev_data *get_dev_data(struct device *dev)
153{
154 return dev->archdata.iommu;
155}
156
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100157static bool pci_iommuv2_capable(struct pci_dev *pdev)
158{
159 static const int caps[] = {
160 PCI_EXT_CAP_ID_ATS,
161 PCI_PRI_CAP,
162 PCI_PASID_CAP,
163 };
164 int i, pos;
165
166 for (i = 0; i < 3; ++i) {
167 pos = pci_find_ext_capability(pdev, caps[i]);
168 if (pos == 0)
169 return false;
170 }
171
172 return true;
173}
174
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100175static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
176{
177 struct iommu_dev_data *dev_data;
178
179 dev_data = get_dev_data(&pdev->dev);
180
181 return dev_data->errata & (1 << erratum) ? true : false;
182}
183
Joerg Roedel71c70982009-11-24 16:43:06 +0100184/*
185 * In this function the list of preallocated protection domains is traversed to
186 * find the domain for a specific device
187 */
188static struct dma_ops_domain *find_protection_domain(u16 devid)
189{
190 struct dma_ops_domain *entry, *ret = NULL;
191 unsigned long flags;
192 u16 alias = amd_iommu_alias_table[devid];
193
194 if (list_empty(&iommu_pd_list))
195 return NULL;
196
197 spin_lock_irqsave(&iommu_pd_list_lock, flags);
198
199 list_for_each_entry(entry, &iommu_pd_list, list) {
200 if (entry->target_dev == devid ||
201 entry->target_dev == alias) {
202 ret = entry;
203 break;
204 }
205 }
206
207 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
208
209 return ret;
210}
211
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100212/*
213 * This function checks if the driver got a valid device from the caller to
214 * avoid dereferencing invalid pointers.
215 */
216static bool check_device(struct device *dev)
217{
218 u16 devid;
219
220 if (!dev || !dev->dma_mask)
221 return false;
222
223 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100224 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100225 return false;
226
227 devid = get_device_id(dev);
228
229 /* Out of our scope? */
230 if (devid > amd_iommu_last_bdf)
231 return false;
232
233 if (amd_iommu_rlookup_table[devid] == NULL)
234 return false;
235
236 return true;
237}
238
Joerg Roedel657cbb62009-11-23 15:26:46 +0100239static int iommu_init_device(struct device *dev)
240{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100241 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100242 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200243 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100244
245 if (dev->archdata.iommu)
246 return 0;
247
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200248 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100249 if (!dev_data)
250 return -ENOMEM;
251
Joerg Roedelf62dda62011-06-09 12:55:35 +0200252 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200253 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200254 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100255
Joerg Roedel71f77582011-06-09 19:03:15 +0200256 alias_data = find_dev_data(alias);
257 if (alias_data == NULL) {
258 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
259 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200260 free_dev_data(dev_data);
261 return -ENOTSUPP;
262 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200263 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200264 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100265
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100266 if (pci_iommuv2_capable(pdev)) {
267 struct amd_iommu *iommu;
268
269 iommu = amd_iommu_rlookup_table[dev_data->devid];
270 dev_data->iommu_v2 = iommu->is_iommu_v2;
271 }
272
Joerg Roedel657cbb62009-11-23 15:26:46 +0100273 dev->archdata.iommu = dev_data;
274
Joerg Roedel657cbb62009-11-23 15:26:46 +0100275 return 0;
276}
277
Joerg Roedel26018872011-06-06 16:50:14 +0200278static void iommu_ignore_device(struct device *dev)
279{
280 u16 devid, alias;
281
282 devid = get_device_id(dev);
283 alias = amd_iommu_alias_table[devid];
284
285 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
286 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
287
288 amd_iommu_rlookup_table[devid] = NULL;
289 amd_iommu_rlookup_table[alias] = NULL;
290}
291
Joerg Roedel657cbb62009-11-23 15:26:46 +0100292static void iommu_uninit_device(struct device *dev)
293{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200294 /*
295 * Nothing to do here - we keep dev_data around for unplugged devices
296 * and reuse it when the device is re-plugged - not doing so would
297 * introduce a ton of races.
298 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100299}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100300
301void __init amd_iommu_uninit_devices(void)
302{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200303 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100304 struct pci_dev *pdev = NULL;
305
306 for_each_pci_dev(pdev) {
307
308 if (!check_device(&pdev->dev))
309 continue;
310
311 iommu_uninit_device(&pdev->dev);
312 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200313
314 /* Free all of our dev_data structures */
315 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
316 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100317}
318
319int __init amd_iommu_init_devices(void)
320{
321 struct pci_dev *pdev = NULL;
322 int ret = 0;
323
324 for_each_pci_dev(pdev) {
325
326 if (!check_device(&pdev->dev))
327 continue;
328
329 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200330 if (ret == -ENOTSUPP)
331 iommu_ignore_device(&pdev->dev);
332 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100333 goto out_free;
334 }
335
336 return 0;
337
338out_free:
339
340 amd_iommu_uninit_devices();
341
342 return ret;
343}
Joerg Roedel7f265082008-12-12 13:50:21 +0100344#ifdef CONFIG_AMD_IOMMU_STATS
345
346/*
347 * Initialization code for statistics collection
348 */
349
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100350DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100351DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100352DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100353DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100354DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100355DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100356DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100357DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100358DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100359DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100360DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100361DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100362
Joerg Roedel7f265082008-12-12 13:50:21 +0100363static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100364static struct dentry *de_fflush;
365
366static void amd_iommu_stats_add(struct __iommu_counter *cnt)
367{
368 if (stats_dir == NULL)
369 return;
370
371 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
372 &cnt->value);
373}
374
375static void amd_iommu_stats_init(void)
376{
377 stats_dir = debugfs_create_dir("amd-iommu", NULL);
378 if (stats_dir == NULL)
379 return;
380
Joerg Roedel7f265082008-12-12 13:50:21 +0100381 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
382 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100383
384 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100385 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100386 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100387 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100388 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100389 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100390 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100391 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100392 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100393 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100394 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100395 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100396}
397
398#endif
399
Joerg Roedel431b2a22008-07-11 17:14:22 +0200400/****************************************************************************
401 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200402 * Interrupt handling functions
403 *
404 ****************************************************************************/
405
Joerg Roedele3e59872009-09-03 14:02:10 +0200406static void dump_dte_entry(u16 devid)
407{
408 int i;
409
Joerg Roedelee6c2862011-11-09 12:06:03 +0100410 for (i = 0; i < 4; ++i)
411 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200412 amd_iommu_dev_table[devid].data[i]);
413}
414
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200415static void dump_command(unsigned long phys_addr)
416{
417 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
418 int i;
419
420 for (i = 0; i < 4; ++i)
421 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
422}
423
Joerg Roedela345b232009-09-03 15:01:43 +0200424static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200425{
426 u32 *event = __evt;
427 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
428 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
429 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
430 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
431 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
432
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200433 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200434
435 switch (type) {
436 case EVENT_TYPE_ILL_DEV:
437 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
438 "address=0x%016llx flags=0x%04x]\n",
439 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
440 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200441 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200442 break;
443 case EVENT_TYPE_IO_FAULT:
444 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
445 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
446 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
447 domid, address, flags);
448 break;
449 case EVENT_TYPE_DEV_TAB_ERR:
450 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
451 "address=0x%016llx flags=0x%04x]\n",
452 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
453 address, flags);
454 break;
455 case EVENT_TYPE_PAGE_TAB_ERR:
456 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
457 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
458 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
459 domid, address, flags);
460 break;
461 case EVENT_TYPE_ILL_CMD:
462 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200463 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200464 break;
465 case EVENT_TYPE_CMD_HARD_ERR:
466 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
467 "flags=0x%04x]\n", address, flags);
468 break;
469 case EVENT_TYPE_IOTLB_INV_TO:
470 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
471 "address=0x%016llx]\n",
472 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
473 address);
474 break;
475 case EVENT_TYPE_INV_DEV_REQ:
476 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
477 "address=0x%016llx flags=0x%04x]\n",
478 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
479 address, flags);
480 break;
481 default:
482 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
483 }
484}
485
486static void iommu_poll_events(struct amd_iommu *iommu)
487{
488 u32 head, tail;
489 unsigned long flags;
490
491 spin_lock_irqsave(&iommu->lock, flags);
492
493 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
494 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
495
496 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200497 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200498 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
499 }
500
501 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
502
503 spin_unlock_irqrestore(&iommu->lock, flags);
504}
505
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100506static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u32 head)
507{
508 struct amd_iommu_fault fault;
509 volatile u64 *raw;
510 int i;
511
512 raw = (u64 *)(iommu->ppr_log + head);
513
514 /*
515 * Hardware bug: Interrupt may arrive before the entry is written to
516 * memory. If this happens we need to wait for the entry to arrive.
517 */
518 for (i = 0; i < LOOP_TIMEOUT; ++i) {
519 if (PPR_REQ_TYPE(raw[0]) != 0)
520 break;
521 udelay(1);
522 }
523
524 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
525 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
526 return;
527 }
528
529 fault.address = raw[1];
530 fault.pasid = PPR_PASID(raw[0]);
531 fault.device_id = PPR_DEVID(raw[0]);
532 fault.tag = PPR_TAG(raw[0]);
533 fault.flags = PPR_FLAGS(raw[0]);
534
535 /*
536 * To detect the hardware bug we need to clear the entry
537 * to back to zero.
538 */
539 raw[0] = raw[1] = 0;
540
541 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
542}
543
544static void iommu_poll_ppr_log(struct amd_iommu *iommu)
545{
546 unsigned long flags;
547 u32 head, tail;
548
549 if (iommu->ppr_log == NULL)
550 return;
551
552 spin_lock_irqsave(&iommu->lock, flags);
553
554 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
555 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
556
557 while (head != tail) {
558
559 /* Handle PPR entry */
560 iommu_handle_ppr_entry(iommu, head);
561
562 /* Update and refresh ring-buffer state*/
563 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
564 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
565 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
566 }
567
568 /* enable ppr interrupts again */
569 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
570
571 spin_unlock_irqrestore(&iommu->lock, flags);
572}
573
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200574irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200575{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200576 struct amd_iommu *iommu;
577
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100578 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100580 iommu_poll_ppr_log(iommu);
581 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200582
583 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200584}
585
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200586irqreturn_t amd_iommu_int_handler(int irq, void *data)
587{
588 return IRQ_WAKE_THREAD;
589}
590
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200591/****************************************************************************
592 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200593 * IOMMU command queuing functions
594 *
595 ****************************************************************************/
596
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200597static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200598{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200599 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200600
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200601 while (*sem == 0 && i < LOOP_TIMEOUT) {
602 udelay(1);
603 i += 1;
604 }
605
606 if (i == LOOP_TIMEOUT) {
607 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
608 return -EIO;
609 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200610
611 return 0;
612}
613
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200614static void copy_cmd_to_buffer(struct amd_iommu *iommu,
615 struct iommu_cmd *cmd,
616 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200617{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200618 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200619
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200620 target = iommu->cmd_buf + tail;
621 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200622
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200623 /* Copy command to buffer */
624 memcpy(target, cmd, sizeof(*cmd));
625
626 /* Tell the IOMMU about it */
627 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
628}
629
Joerg Roedel815b33f2011-04-06 17:26:49 +0200630static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200631{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200632 WARN_ON(address & 0x7ULL);
633
Joerg Roedelded46732011-04-06 10:53:48 +0200634 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200635 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
636 cmd->data[1] = upper_32_bits(__pa(address));
637 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200638 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
639}
640
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200641static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
642{
643 memset(cmd, 0, sizeof(*cmd));
644 cmd->data[0] = devid;
645 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
646}
647
Joerg Roedel11b64022011-04-06 11:49:28 +0200648static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
649 size_t size, u16 domid, int pde)
650{
651 u64 pages;
652 int s;
653
654 pages = iommu_num_pages(address, size, PAGE_SIZE);
655 s = 0;
656
657 if (pages > 1) {
658 /*
659 * If we have to flush more than one page, flush all
660 * TLB entries for this domain
661 */
662 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
663 s = 1;
664 }
665
666 address &= PAGE_MASK;
667
668 memset(cmd, 0, sizeof(*cmd));
669 cmd->data[1] |= domid;
670 cmd->data[2] = lower_32_bits(address);
671 cmd->data[3] = upper_32_bits(address);
672 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
673 if (s) /* size bit - we flush more than one 4kb page */
674 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
675 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
676 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
677}
678
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200679static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
680 u64 address, size_t size)
681{
682 u64 pages;
683 int s;
684
685 pages = iommu_num_pages(address, size, PAGE_SIZE);
686 s = 0;
687
688 if (pages > 1) {
689 /*
690 * If we have to flush more than one page, flush all
691 * TLB entries for this domain
692 */
693 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
694 s = 1;
695 }
696
697 address &= PAGE_MASK;
698
699 memset(cmd, 0, sizeof(*cmd));
700 cmd->data[0] = devid;
701 cmd->data[0] |= (qdep & 0xff) << 24;
702 cmd->data[1] = devid;
703 cmd->data[2] = lower_32_bits(address);
704 cmd->data[3] = upper_32_bits(address);
705 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
706 if (s)
707 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
708}
709
Joerg Roedel22e266c2011-11-21 15:59:08 +0100710static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
711 u64 address, bool size)
712{
713 memset(cmd, 0, sizeof(*cmd));
714
715 address &= ~(0xfffULL);
716
717 cmd->data[0] = pasid & PASID_MASK;
718 cmd->data[1] = domid;
719 cmd->data[2] = lower_32_bits(address);
720 cmd->data[3] = upper_32_bits(address);
721 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
722 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
723 if (size)
724 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
725 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
726}
727
728static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
729 int qdep, u64 address, bool size)
730{
731 memset(cmd, 0, sizeof(*cmd));
732
733 address &= ~(0xfffULL);
734
735 cmd->data[0] = devid;
736 cmd->data[0] |= (pasid & 0xff) << 16;
737 cmd->data[0] |= (qdep & 0xff) << 24;
738 cmd->data[1] = devid;
739 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
740 cmd->data[2] = lower_32_bits(address);
741 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
742 cmd->data[3] = upper_32_bits(address);
743 if (size)
744 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
745 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
746}
747
Joerg Roedelc99afa22011-11-21 18:19:25 +0100748static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
749 int status, int tag, bool gn)
750{
751 memset(cmd, 0, sizeof(*cmd));
752
753 cmd->data[0] = devid;
754 if (gn) {
755 cmd->data[1] = pasid & PASID_MASK;
756 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
757 }
758 cmd->data[3] = tag & 0x1ff;
759 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
760
761 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
762}
763
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200764static void build_inv_all(struct iommu_cmd *cmd)
765{
766 memset(cmd, 0, sizeof(*cmd));
767 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200768}
769
Joerg Roedel431b2a22008-07-11 17:14:22 +0200770/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200771 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200772 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200773 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200774static int iommu_queue_command_sync(struct amd_iommu *iommu,
775 struct iommu_cmd *cmd,
776 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200777{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200778 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200779 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200780
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200781 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100782
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200783again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200784 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200785
786 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
787 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
788 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
789 left = (head - next_tail) % iommu->cmd_buf_size;
790
791 if (left <= 2) {
792 struct iommu_cmd sync_cmd;
793 volatile u64 sem = 0;
794 int ret;
795
796 build_completion_wait(&sync_cmd, (u64)&sem);
797 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
798
799 spin_unlock_irqrestore(&iommu->lock, flags);
800
801 if ((ret = wait_on_sem(&sem)) != 0)
802 return ret;
803
804 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200805 }
806
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200807 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200808
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200809 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200810 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200811
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200812 spin_unlock_irqrestore(&iommu->lock, flags);
813
Joerg Roedel815b33f2011-04-06 17:26:49 +0200814 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100815}
816
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200817static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
818{
819 return iommu_queue_command_sync(iommu, cmd, true);
820}
821
Joerg Roedel8d201962008-12-02 20:34:41 +0100822/*
823 * This function queues a completion wait command into the command
824 * buffer of an IOMMU
825 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100826static int iommu_completion_wait(struct amd_iommu *iommu)
827{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200828 struct iommu_cmd cmd;
829 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200830 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100831
832 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200833 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100834
Joerg Roedel815b33f2011-04-06 17:26:49 +0200835 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100836
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200837 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100838 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200839 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100840
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200841 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200842}
843
Joerg Roedeld8c13082011-04-06 18:51:26 +0200844static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200845{
846 struct iommu_cmd cmd;
847
Joerg Roedeld8c13082011-04-06 18:51:26 +0200848 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200849
Joerg Roedeld8c13082011-04-06 18:51:26 +0200850 return iommu_queue_command(iommu, &cmd);
851}
852
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200853static void iommu_flush_dte_all(struct amd_iommu *iommu)
854{
855 u32 devid;
856
857 for (devid = 0; devid <= 0xffff; ++devid)
858 iommu_flush_dte(iommu, devid);
859
860 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200861}
862
863/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200864 * This function uses heavy locking and may disable irqs for some time. But
865 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200866 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200867static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200868{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200869 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200870
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200871 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
872 struct iommu_cmd cmd;
873 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
874 dom_id, 1);
875 iommu_queue_command(iommu, &cmd);
876 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200877
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200878 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200879}
880
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200881static void iommu_flush_all(struct amd_iommu *iommu)
882{
883 struct iommu_cmd cmd;
884
885 build_inv_all(&cmd);
886
887 iommu_queue_command(iommu, &cmd);
888 iommu_completion_wait(iommu);
889}
890
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200891void iommu_flush_all_caches(struct amd_iommu *iommu)
892{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200893 if (iommu_feature(iommu, FEATURE_IA)) {
894 iommu_flush_all(iommu);
895 } else {
896 iommu_flush_dte_all(iommu);
897 iommu_flush_tlb_all(iommu);
898 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200899}
900
Joerg Roedel431b2a22008-07-11 17:14:22 +0200901/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200902 * Command send function for flushing on-device TLB
903 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200904static int device_flush_iotlb(struct iommu_dev_data *dev_data,
905 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200906{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200907 struct amd_iommu *iommu;
908 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200909 int qdep;
910
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200911 qdep = dev_data->ats.qdep;
912 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200913
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200914 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200915
916 return iommu_queue_command(iommu, &cmd);
917}
918
919/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200920 * Command send function for invalidating a device table entry
921 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200922static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100923{
924 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200925 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100926
Joerg Roedel6c542042011-06-09 17:07:31 +0200927 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100928
Joerg Roedelf62dda62011-06-09 12:55:35 +0200929 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200930 if (ret)
931 return ret;
932
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200933 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200934 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200935
936 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100937}
938
Joerg Roedel431b2a22008-07-11 17:14:22 +0200939/*
940 * TLB invalidation function which is called from the mapping functions.
941 * It invalidates a single PTE if the range to flush is within a single
942 * page. Otherwise it flushes the whole TLB of the IOMMU.
943 */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200944static void __domain_flush_pages(struct protection_domain *domain,
945 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200946{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200947 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +0200948 struct iommu_cmd cmd;
949 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200950
Joerg Roedel11b64022011-04-06 11:49:28 +0200951 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +0200952
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100953 for (i = 0; i < amd_iommus_present; ++i) {
954 if (!domain->dev_iommu[i])
955 continue;
956
957 /*
958 * Devices of this domain are behind this IOMMU
959 * We need a TLB flush
960 */
Joerg Roedel11b64022011-04-06 11:49:28 +0200961 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100962 }
963
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200964 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200965
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200966 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200967 continue;
968
Joerg Roedel6c542042011-06-09 17:07:31 +0200969 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200970 }
971
Joerg Roedel11b64022011-04-06 11:49:28 +0200972 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100973}
974
Joerg Roedel17b124b2011-04-06 18:01:35 +0200975static void domain_flush_pages(struct protection_domain *domain,
976 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100977{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200978 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200979}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200980
Joerg Roedel1c655772008-09-04 18:40:05 +0200981/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200982static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +0200983{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200984 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200985}
986
Chris Wright42a49f92009-06-15 15:42:00 +0200987/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200988static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +0200989{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200990 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
991}
992
993static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +0200994{
995 int i;
996
997 for (i = 0; i < amd_iommus_present; ++i) {
998 if (!domain->dev_iommu[i])
999 continue;
1000
1001 /*
1002 * Devices of this domain are behind this IOMMU
1003 * We need to wait for completion of all commands.
1004 */
1005 iommu_completion_wait(amd_iommus[i]);
1006 }
1007}
1008
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001009
Joerg Roedel43f49602008-12-02 21:01:12 +01001010/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001011 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001012 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001013static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001014{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001015 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001016
1017 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001018 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001019}
1020
Joerg Roedel431b2a22008-07-11 17:14:22 +02001021/****************************************************************************
1022 *
1023 * The functions below are used the create the page table mappings for
1024 * unity mapped regions.
1025 *
1026 ****************************************************************************/
1027
1028/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001029 * This function is used to add another level to an IO page table. Adding
1030 * another level increases the size of the address space by 9 bits to a size up
1031 * to 64 bits.
1032 */
1033static bool increase_address_space(struct protection_domain *domain,
1034 gfp_t gfp)
1035{
1036 u64 *pte;
1037
1038 if (domain->mode == PAGE_MODE_6_LEVEL)
1039 /* address space already 64 bit large */
1040 return false;
1041
1042 pte = (void *)get_zeroed_page(gfp);
1043 if (!pte)
1044 return false;
1045
1046 *pte = PM_LEVEL_PDE(domain->mode,
1047 virt_to_phys(domain->pt_root));
1048 domain->pt_root = pte;
1049 domain->mode += 1;
1050 domain->updated = true;
1051
1052 return true;
1053}
1054
1055static u64 *alloc_pte(struct protection_domain *domain,
1056 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001057 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001058 u64 **pte_page,
1059 gfp_t gfp)
1060{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001061 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001062 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001063
1064 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001065
1066 while (address > PM_LEVEL_SIZE(domain->mode))
1067 increase_address_space(domain, gfp);
1068
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001069 level = domain->mode - 1;
1070 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1071 address = PAGE_SIZE_ALIGN(address, page_size);
1072 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001073
1074 while (level > end_lvl) {
1075 if (!IOMMU_PTE_PRESENT(*pte)) {
1076 page = (u64 *)get_zeroed_page(gfp);
1077 if (!page)
1078 return NULL;
1079 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1080 }
1081
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001082 /* No level skipping support yet */
1083 if (PM_PTE_LEVEL(*pte) != level)
1084 return NULL;
1085
Joerg Roedel308973d2009-11-24 17:43:32 +01001086 level -= 1;
1087
1088 pte = IOMMU_PTE_PAGE(*pte);
1089
1090 if (pte_page && level == end_lvl)
1091 *pte_page = pte;
1092
1093 pte = &pte[PM_LEVEL_INDEX(level, address)];
1094 }
1095
1096 return pte;
1097}
1098
1099/*
1100 * This function checks if there is a PTE for a given dma address. If
1101 * there is one, it returns the pointer to it.
1102 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001103static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001104{
1105 int level;
1106 u64 *pte;
1107
Joerg Roedel24cd7722010-01-19 17:27:39 +01001108 if (address > PM_LEVEL_SIZE(domain->mode))
1109 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001110
Joerg Roedel24cd7722010-01-19 17:27:39 +01001111 level = domain->mode - 1;
1112 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1113
1114 while (level > 0) {
1115
1116 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001117 if (!IOMMU_PTE_PRESENT(*pte))
1118 return NULL;
1119
Joerg Roedel24cd7722010-01-19 17:27:39 +01001120 /* Large PTE */
1121 if (PM_PTE_LEVEL(*pte) == 0x07) {
1122 unsigned long pte_mask, __pte;
1123
1124 /*
1125 * If we have a series of large PTEs, make
1126 * sure to return a pointer to the first one.
1127 */
1128 pte_mask = PTE_PAGE_SIZE(*pte);
1129 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1130 __pte = ((unsigned long)pte) & pte_mask;
1131
1132 return (u64 *)__pte;
1133 }
1134
1135 /* No level skipping support yet */
1136 if (PM_PTE_LEVEL(*pte) != level)
1137 return NULL;
1138
Joerg Roedel308973d2009-11-24 17:43:32 +01001139 level -= 1;
1140
Joerg Roedel24cd7722010-01-19 17:27:39 +01001141 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001142 pte = IOMMU_PTE_PAGE(*pte);
1143 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001144 }
1145
1146 return pte;
1147}
1148
1149/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001150 * Generic mapping functions. It maps a physical address into a DMA
1151 * address space. It allocates the page table pages if necessary.
1152 * In the future it can be extended to a generic mapping function
1153 * supporting all features of AMD IOMMU page tables like level skipping
1154 * and full 64 bit address spaces.
1155 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001156static int iommu_map_page(struct protection_domain *dom,
1157 unsigned long bus_addr,
1158 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001159 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001160 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001161{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001162 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001163 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001164
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001165 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001166 return -EINVAL;
1167
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001168 bus_addr = PAGE_ALIGN(bus_addr);
1169 phys_addr = PAGE_ALIGN(phys_addr);
1170 count = PAGE_SIZE_PTE_COUNT(page_size);
1171 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001172
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001173 for (i = 0; i < count; ++i)
1174 if (IOMMU_PTE_PRESENT(pte[i]))
1175 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001176
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001177 if (page_size > PAGE_SIZE) {
1178 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1179 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1180 } else
1181 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1182
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001183 if (prot & IOMMU_PROT_IR)
1184 __pte |= IOMMU_PTE_IR;
1185 if (prot & IOMMU_PROT_IW)
1186 __pte |= IOMMU_PTE_IW;
1187
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001188 for (i = 0; i < count; ++i)
1189 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001190
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001191 update_domain(dom);
1192
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001193 return 0;
1194}
1195
Joerg Roedel24cd7722010-01-19 17:27:39 +01001196static unsigned long iommu_unmap_page(struct protection_domain *dom,
1197 unsigned long bus_addr,
1198 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001199{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001200 unsigned long long unmap_size, unmapped;
1201 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001202
Joerg Roedel24cd7722010-01-19 17:27:39 +01001203 BUG_ON(!is_power_of_2(page_size));
1204
1205 unmapped = 0;
1206
1207 while (unmapped < page_size) {
1208
1209 pte = fetch_pte(dom, bus_addr);
1210
1211 if (!pte) {
1212 /*
1213 * No PTE for this address
1214 * move forward in 4kb steps
1215 */
1216 unmap_size = PAGE_SIZE;
1217 } else if (PM_PTE_LEVEL(*pte) == 0) {
1218 /* 4kb PTE found for this address */
1219 unmap_size = PAGE_SIZE;
1220 *pte = 0ULL;
1221 } else {
1222 int count, i;
1223
1224 /* Large PTE found which maps this address */
1225 unmap_size = PTE_PAGE_SIZE(*pte);
1226 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1227 for (i = 0; i < count; i++)
1228 pte[i] = 0ULL;
1229 }
1230
1231 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1232 unmapped += unmap_size;
1233 }
1234
1235 BUG_ON(!is_power_of_2(unmapped));
1236
1237 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001238}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001239
Joerg Roedel431b2a22008-07-11 17:14:22 +02001240/*
1241 * This function checks if a specific unity mapping entry is needed for
1242 * this specific IOMMU.
1243 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001244static int iommu_for_unity_map(struct amd_iommu *iommu,
1245 struct unity_map_entry *entry)
1246{
1247 u16 bdf, i;
1248
1249 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1250 bdf = amd_iommu_alias_table[i];
1251 if (amd_iommu_rlookup_table[bdf] == iommu)
1252 return 1;
1253 }
1254
1255 return 0;
1256}
1257
Joerg Roedel431b2a22008-07-11 17:14:22 +02001258/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001259 * This function actually applies the mapping to the page table of the
1260 * dma_ops domain.
1261 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001262static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1263 struct unity_map_entry *e)
1264{
1265 u64 addr;
1266 int ret;
1267
1268 for (addr = e->address_start; addr < e->address_end;
1269 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001270 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001271 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001272 if (ret)
1273 return ret;
1274 /*
1275 * if unity mapping is in aperture range mark the page
1276 * as allocated in the aperture
1277 */
1278 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001279 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001280 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001281 }
1282
1283 return 0;
1284}
1285
Joerg Roedel431b2a22008-07-11 17:14:22 +02001286/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001287 * Init the unity mappings for a specific IOMMU in the system
1288 *
1289 * Basically iterates over all unity mapping entries and applies them to
1290 * the default domain DMA of that IOMMU if necessary.
1291 */
1292static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1293{
1294 struct unity_map_entry *entry;
1295 int ret;
1296
1297 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1298 if (!iommu_for_unity_map(iommu, entry))
1299 continue;
1300 ret = dma_ops_unity_map(iommu->default_dom, entry);
1301 if (ret)
1302 return ret;
1303 }
1304
1305 return 0;
1306}
1307
1308/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001309 * Inits the unity mappings required for a specific device
1310 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001311static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1312 u16 devid)
1313{
1314 struct unity_map_entry *e;
1315 int ret;
1316
1317 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1318 if (!(devid >= e->devid_start && devid <= e->devid_end))
1319 continue;
1320 ret = dma_ops_unity_map(dma_dom, e);
1321 if (ret)
1322 return ret;
1323 }
1324
1325 return 0;
1326}
1327
Joerg Roedel431b2a22008-07-11 17:14:22 +02001328/****************************************************************************
1329 *
1330 * The next functions belong to the address allocator for the dma_ops
1331 * interface functions. They work like the allocators in the other IOMMU
1332 * drivers. Its basically a bitmap which marks the allocated pages in
1333 * the aperture. Maybe it could be enhanced in the future to a more
1334 * efficient allocator.
1335 *
1336 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001337
Joerg Roedel431b2a22008-07-11 17:14:22 +02001338/*
Joerg Roedel384de722009-05-15 12:30:05 +02001339 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001340 *
1341 * called with domain->lock held
1342 */
Joerg Roedel384de722009-05-15 12:30:05 +02001343
Joerg Roedel9cabe892009-05-18 16:38:55 +02001344/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001345 * Used to reserve address ranges in the aperture (e.g. for exclusion
1346 * ranges.
1347 */
1348static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1349 unsigned long start_page,
1350 unsigned int pages)
1351{
1352 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1353
1354 if (start_page + pages > last_page)
1355 pages = last_page - start_page;
1356
1357 for (i = start_page; i < start_page + pages; ++i) {
1358 int index = i / APERTURE_RANGE_PAGES;
1359 int page = i % APERTURE_RANGE_PAGES;
1360 __set_bit(page, dom->aperture[index]->bitmap);
1361 }
1362}
1363
1364/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001365 * This function is used to add a new aperture range to an existing
1366 * aperture in case of dma_ops domain allocation or address allocation
1367 * failure.
1368 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001369static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001370 bool populate, gfp_t gfp)
1371{
1372 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001373 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001374 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001375
Joerg Roedelf5e97052009-05-22 12:31:53 +02001376#ifdef CONFIG_IOMMU_STRESS
1377 populate = false;
1378#endif
1379
Joerg Roedel9cabe892009-05-18 16:38:55 +02001380 if (index >= APERTURE_MAX_RANGES)
1381 return -ENOMEM;
1382
1383 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1384 if (!dma_dom->aperture[index])
1385 return -ENOMEM;
1386
1387 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1388 if (!dma_dom->aperture[index]->bitmap)
1389 goto out_free;
1390
1391 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1392
1393 if (populate) {
1394 unsigned long address = dma_dom->aperture_size;
1395 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1396 u64 *pte, *pte_page;
1397
1398 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001399 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001400 &pte_page, gfp);
1401 if (!pte)
1402 goto out_free;
1403
1404 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1405
1406 address += APERTURE_RANGE_SIZE / 64;
1407 }
1408 }
1409
Joerg Roedel17f5b562011-07-06 17:14:44 +02001410 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001411 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1412
Joerg Roedel17f5b562011-07-06 17:14:44 +02001413 /* Reserve address range used for MSI messages */
1414 if (old_size < MSI_ADDR_BASE_LO &&
1415 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1416 unsigned long spage;
1417 int pages;
1418
1419 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1420 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1421
1422 dma_ops_reserve_addresses(dma_dom, spage, pages);
1423 }
1424
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001425 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001426 for_each_iommu(iommu) {
1427 if (iommu->exclusion_start &&
1428 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1429 && iommu->exclusion_start < dma_dom->aperture_size) {
1430 unsigned long startpage;
1431 int pages = iommu_num_pages(iommu->exclusion_start,
1432 iommu->exclusion_length,
1433 PAGE_SIZE);
1434 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1435 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1436 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001437 }
1438
1439 /*
1440 * Check for areas already mapped as present in the new aperture
1441 * range and mark those pages as reserved in the allocator. Such
1442 * mappings may already exist as a result of requested unity
1443 * mappings for devices.
1444 */
1445 for (i = dma_dom->aperture[index]->offset;
1446 i < dma_dom->aperture_size;
1447 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001448 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001449 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1450 continue;
1451
Joerg Roedelfcd08612011-10-11 17:41:32 +02001452 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001453 }
1454
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001455 update_domain(&dma_dom->domain);
1456
Joerg Roedel9cabe892009-05-18 16:38:55 +02001457 return 0;
1458
1459out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001460 update_domain(&dma_dom->domain);
1461
Joerg Roedel9cabe892009-05-18 16:38:55 +02001462 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1463
1464 kfree(dma_dom->aperture[index]);
1465 dma_dom->aperture[index] = NULL;
1466
1467 return -ENOMEM;
1468}
1469
Joerg Roedel384de722009-05-15 12:30:05 +02001470static unsigned long dma_ops_area_alloc(struct device *dev,
1471 struct dma_ops_domain *dom,
1472 unsigned int pages,
1473 unsigned long align_mask,
1474 u64 dma_mask,
1475 unsigned long start)
1476{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001477 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001478 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1479 int i = start >> APERTURE_RANGE_SHIFT;
1480 unsigned long boundary_size;
1481 unsigned long address = -1;
1482 unsigned long limit;
1483
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001484 next_bit >>= PAGE_SHIFT;
1485
Joerg Roedel384de722009-05-15 12:30:05 +02001486 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1487 PAGE_SIZE) >> PAGE_SHIFT;
1488
1489 for (;i < max_index; ++i) {
1490 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1491
1492 if (dom->aperture[i]->offset >= dma_mask)
1493 break;
1494
1495 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1496 dma_mask >> PAGE_SHIFT);
1497
1498 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1499 limit, next_bit, pages, 0,
1500 boundary_size, align_mask);
1501 if (address != -1) {
1502 address = dom->aperture[i]->offset +
1503 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001504 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001505 break;
1506 }
1507
1508 next_bit = 0;
1509 }
1510
1511 return address;
1512}
1513
Joerg Roedeld3086442008-06-26 21:27:57 +02001514static unsigned long dma_ops_alloc_addresses(struct device *dev,
1515 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001516 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001517 unsigned long align_mask,
1518 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001519{
Joerg Roedeld3086442008-06-26 21:27:57 +02001520 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001521
Joerg Roedelfe16f082009-05-22 12:27:53 +02001522#ifdef CONFIG_IOMMU_STRESS
1523 dom->next_address = 0;
1524 dom->need_flush = true;
1525#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001526
Joerg Roedel384de722009-05-15 12:30:05 +02001527 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001528 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001529
Joerg Roedel1c655772008-09-04 18:40:05 +02001530 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001531 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001532 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1533 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001534 dom->need_flush = true;
1535 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001536
Joerg Roedel384de722009-05-15 12:30:05 +02001537 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001538 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001539
1540 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1541
1542 return address;
1543}
1544
Joerg Roedel431b2a22008-07-11 17:14:22 +02001545/*
1546 * The address free function.
1547 *
1548 * called with domain->lock held
1549 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001550static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1551 unsigned long address,
1552 unsigned int pages)
1553{
Joerg Roedel384de722009-05-15 12:30:05 +02001554 unsigned i = address >> APERTURE_RANGE_SHIFT;
1555 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001556
Joerg Roedel384de722009-05-15 12:30:05 +02001557 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1558
Joerg Roedel47bccd62009-05-22 12:40:54 +02001559#ifdef CONFIG_IOMMU_STRESS
1560 if (i < 4)
1561 return;
1562#endif
1563
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001564 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001565 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001566
1567 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001568
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001569 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001570
Joerg Roedeld3086442008-06-26 21:27:57 +02001571}
1572
Joerg Roedel431b2a22008-07-11 17:14:22 +02001573/****************************************************************************
1574 *
1575 * The next functions belong to the domain allocation. A domain is
1576 * allocated for every IOMMU as the default domain. If device isolation
1577 * is enabled, every device get its own domain. The most important thing
1578 * about domains is the page table mapping the DMA address space they
1579 * contain.
1580 *
1581 ****************************************************************************/
1582
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001583/*
1584 * This function adds a protection domain to the global protection domain list
1585 */
1586static void add_domain_to_list(struct protection_domain *domain)
1587{
1588 unsigned long flags;
1589
1590 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1591 list_add(&domain->list, &amd_iommu_pd_list);
1592 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1593}
1594
1595/*
1596 * This function removes a protection domain to the global
1597 * protection domain list
1598 */
1599static void del_domain_from_list(struct protection_domain *domain)
1600{
1601 unsigned long flags;
1602
1603 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1604 list_del(&domain->list);
1605 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1606}
1607
Joerg Roedelec487d12008-06-26 21:27:58 +02001608static u16 domain_id_alloc(void)
1609{
1610 unsigned long flags;
1611 int id;
1612
1613 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1614 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1615 BUG_ON(id == 0);
1616 if (id > 0 && id < MAX_DOMAIN_ID)
1617 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1618 else
1619 id = 0;
1620 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1621
1622 return id;
1623}
1624
Joerg Roedela2acfb72008-12-02 18:28:53 +01001625static void domain_id_free(int id)
1626{
1627 unsigned long flags;
1628
1629 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1630 if (id > 0 && id < MAX_DOMAIN_ID)
1631 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1632 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1633}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001634
Joerg Roedel86db2e52008-12-02 18:20:21 +01001635static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001636{
1637 int i, j;
1638 u64 *p1, *p2, *p3;
1639
Joerg Roedel86db2e52008-12-02 18:20:21 +01001640 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001641
1642 if (!p1)
1643 return;
1644
1645 for (i = 0; i < 512; ++i) {
1646 if (!IOMMU_PTE_PRESENT(p1[i]))
1647 continue;
1648
1649 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001650 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001651 if (!IOMMU_PTE_PRESENT(p2[j]))
1652 continue;
1653 p3 = IOMMU_PTE_PAGE(p2[j]);
1654 free_page((unsigned long)p3);
1655 }
1656
1657 free_page((unsigned long)p2);
1658 }
1659
1660 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001661
1662 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001663}
1664
Joerg Roedelb16137b2011-11-21 16:50:23 +01001665static void free_gcr3_tbl_level1(u64 *tbl)
1666{
1667 u64 *ptr;
1668 int i;
1669
1670 for (i = 0; i < 512; ++i) {
1671 if (!(tbl[i] & GCR3_VALID))
1672 continue;
1673
1674 ptr = __va(tbl[i] & PAGE_MASK);
1675
1676 free_page((unsigned long)ptr);
1677 }
1678}
1679
1680static void free_gcr3_tbl_level2(u64 *tbl)
1681{
1682 u64 *ptr;
1683 int i;
1684
1685 for (i = 0; i < 512; ++i) {
1686 if (!(tbl[i] & GCR3_VALID))
1687 continue;
1688
1689 ptr = __va(tbl[i] & PAGE_MASK);
1690
1691 free_gcr3_tbl_level1(ptr);
1692 }
1693}
1694
Joerg Roedel52815b72011-11-17 17:24:28 +01001695static void free_gcr3_table(struct protection_domain *domain)
1696{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001697 if (domain->glx == 2)
1698 free_gcr3_tbl_level2(domain->gcr3_tbl);
1699 else if (domain->glx == 1)
1700 free_gcr3_tbl_level1(domain->gcr3_tbl);
1701 else if (domain->glx != 0)
1702 BUG();
1703
Joerg Roedel52815b72011-11-17 17:24:28 +01001704 free_page((unsigned long)domain->gcr3_tbl);
1705}
1706
Joerg Roedel431b2a22008-07-11 17:14:22 +02001707/*
1708 * Free a domain, only used if something went wrong in the
1709 * allocation path and we need to free an already allocated page table
1710 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001711static void dma_ops_domain_free(struct dma_ops_domain *dom)
1712{
Joerg Roedel384de722009-05-15 12:30:05 +02001713 int i;
1714
Joerg Roedelec487d12008-06-26 21:27:58 +02001715 if (!dom)
1716 return;
1717
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001718 del_domain_from_list(&dom->domain);
1719
Joerg Roedel86db2e52008-12-02 18:20:21 +01001720 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001721
Joerg Roedel384de722009-05-15 12:30:05 +02001722 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1723 if (!dom->aperture[i])
1724 continue;
1725 free_page((unsigned long)dom->aperture[i]->bitmap);
1726 kfree(dom->aperture[i]);
1727 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001728
1729 kfree(dom);
1730}
1731
Joerg Roedel431b2a22008-07-11 17:14:22 +02001732/*
1733 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001734 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001735 * structures required for the dma_ops interface
1736 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001737static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001738{
1739 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001740
1741 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1742 if (!dma_dom)
1743 return NULL;
1744
1745 spin_lock_init(&dma_dom->domain.lock);
1746
1747 dma_dom->domain.id = domain_id_alloc();
1748 if (dma_dom->domain.id == 0)
1749 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001750 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001751 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001752 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001753 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001754 dma_dom->domain.priv = dma_dom;
1755 if (!dma_dom->domain.pt_root)
1756 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001757
Joerg Roedel1c655772008-09-04 18:40:05 +02001758 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001759 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001760
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001761 add_domain_to_list(&dma_dom->domain);
1762
Joerg Roedel576175c2009-11-23 19:08:46 +01001763 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001764 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001765
Joerg Roedel431b2a22008-07-11 17:14:22 +02001766 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001767 * mark the first page as allocated so we never return 0 as
1768 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001769 */
Joerg Roedel384de722009-05-15 12:30:05 +02001770 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001771 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001772
Joerg Roedelec487d12008-06-26 21:27:58 +02001773
1774 return dma_dom;
1775
1776free_dma_dom:
1777 dma_ops_domain_free(dma_dom);
1778
1779 return NULL;
1780}
1781
Joerg Roedel431b2a22008-07-11 17:14:22 +02001782/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001783 * little helper function to check whether a given protection domain is a
1784 * dma_ops domain
1785 */
1786static bool dma_ops_domain(struct protection_domain *domain)
1787{
1788 return domain->flags & PD_DMA_OPS_MASK;
1789}
1790
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001791static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001792{
Joerg Roedel132bd682011-11-17 14:18:46 +01001793 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001794 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001795
Joerg Roedel132bd682011-11-17 14:18:46 +01001796 if (domain->mode != PAGE_MODE_NONE)
1797 pte_root = virt_to_phys(domain->pt_root);
1798
Joerg Roedel38ddf412008-09-11 10:38:32 +02001799 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1800 << DEV_ENTRY_MODE_SHIFT;
1801 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001802
Joerg Roedelee6c2862011-11-09 12:06:03 +01001803 flags = amd_iommu_dev_table[devid].data[1];
1804
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001805 if (ats)
1806 flags |= DTE_FLAG_IOTLB;
1807
Joerg Roedel52815b72011-11-17 17:24:28 +01001808 if (domain->flags & PD_IOMMUV2_MASK) {
1809 u64 gcr3 = __pa(domain->gcr3_tbl);
1810 u64 glx = domain->glx;
1811 u64 tmp;
1812
1813 pte_root |= DTE_FLAG_GV;
1814 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1815
1816 /* First mask out possible old values for GCR3 table */
1817 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1818 flags &= ~tmp;
1819
1820 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1821 flags &= ~tmp;
1822
1823 /* Encode GCR3 table into DTE */
1824 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1825 pte_root |= tmp;
1826
1827 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1828 flags |= tmp;
1829
1830 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1831 flags |= tmp;
1832 }
1833
Joerg Roedelee6c2862011-11-09 12:06:03 +01001834 flags &= ~(0xffffUL);
1835 flags |= domain->id;
1836
1837 amd_iommu_dev_table[devid].data[1] = flags;
1838 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001839}
1840
Joerg Roedel15898bb2009-11-24 15:39:42 +01001841static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001842{
Joerg Roedel355bf552008-12-08 12:02:41 +01001843 /* remove entry from the device table seen by the hardware */
1844 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1845 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001846
Joerg Roedelc5cca142009-10-09 18:31:20 +02001847 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001848}
1849
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001850static void do_attach(struct iommu_dev_data *dev_data,
1851 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001852{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001853 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001854 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001855
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001856 iommu = amd_iommu_rlookup_table[dev_data->devid];
1857 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001858
1859 /* Update data structures */
1860 dev_data->domain = domain;
1861 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001862 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001863
1864 /* Do reference counting */
1865 domain->dev_iommu[iommu->index] += 1;
1866 domain->dev_cnt += 1;
1867
1868 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001869 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001870}
1871
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001872static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001873{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001874 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001875
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001876 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001877
Joerg Roedelc4596112009-11-20 14:57:32 +01001878 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001879 dev_data->domain->dev_iommu[iommu->index] -= 1;
1880 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001881
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001882 /* Update data structures */
1883 dev_data->domain = NULL;
1884 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001885 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001886
1887 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001888 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001889}
1890
1891/*
1892 * If a device is not yet associated with a domain, this function does
1893 * assigns it visible for the hardware
1894 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001895static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001896 struct protection_domain *domain)
1897{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001898 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001899
Joerg Roedel15898bb2009-11-24 15:39:42 +01001900 /* lock domain */
1901 spin_lock(&domain->lock);
1902
Joerg Roedel71f77582011-06-09 19:03:15 +02001903 if (dev_data->alias_data != NULL) {
1904 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001905
Joerg Roedel2b02b092011-06-09 17:48:39 +02001906 /* Some sanity checks */
1907 ret = -EBUSY;
1908 if (alias_data->domain != NULL &&
1909 alias_data->domain != domain)
1910 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001911
Joerg Roedel2b02b092011-06-09 17:48:39 +02001912 if (dev_data->domain != NULL &&
1913 dev_data->domain != domain)
1914 goto out_unlock;
1915
1916 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001917 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001918 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001919
1920 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001921 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001922
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001923 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001924 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001925
Joerg Roedel24100052009-11-25 15:59:57 +01001926 atomic_inc(&dev_data->bind);
1927
Julia Lawall84fe6c12010-05-27 12:31:51 +02001928 ret = 0;
1929
1930out_unlock:
1931
Joerg Roedel355bf552008-12-08 12:02:41 +01001932 /* ready */
1933 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001934
Julia Lawall84fe6c12010-05-27 12:31:51 +02001935 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001936}
1937
Joerg Roedel52815b72011-11-17 17:24:28 +01001938
1939static void pdev_iommuv2_disable(struct pci_dev *pdev)
1940{
1941 pci_disable_ats(pdev);
1942 pci_disable_pri(pdev);
1943 pci_disable_pasid(pdev);
1944}
1945
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001946/* FIXME: Change generic reset-function to do the same */
1947static int pri_reset_while_enabled(struct pci_dev *pdev)
1948{
1949 u16 control;
1950 int pos;
1951
1952 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
1953 if (!pos)
1954 return -EINVAL;
1955
1956 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
1957 control |= PCI_PRI_RESET;
1958 pci_write_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, control);
1959
1960 return 0;
1961}
1962
Joerg Roedel52815b72011-11-17 17:24:28 +01001963static int pdev_iommuv2_enable(struct pci_dev *pdev)
1964{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001965 bool reset_enable;
1966 int reqs, ret;
1967
1968 /* FIXME: Hardcode number of outstanding requests for now */
1969 reqs = 32;
1970 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
1971 reqs = 1;
1972 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01001973
1974 /* Only allow access to user-accessible pages */
1975 ret = pci_enable_pasid(pdev, 0);
1976 if (ret)
1977 goto out_err;
1978
1979 /* First reset the PRI state of the device */
1980 ret = pci_reset_pri(pdev);
1981 if (ret)
1982 goto out_err;
1983
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001984 /* Enable PRI */
1985 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01001986 if (ret)
1987 goto out_err;
1988
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001989 if (reset_enable) {
1990 ret = pri_reset_while_enabled(pdev);
1991 if (ret)
1992 goto out_err;
1993 }
1994
Joerg Roedel52815b72011-11-17 17:24:28 +01001995 ret = pci_enable_ats(pdev, PAGE_SHIFT);
1996 if (ret)
1997 goto out_err;
1998
1999 return 0;
2000
2001out_err:
2002 pci_disable_pri(pdev);
2003 pci_disable_pasid(pdev);
2004
2005 return ret;
2006}
2007
Joerg Roedelc99afa22011-11-21 18:19:25 +01002008/* FIXME: Move this to PCI code */
2009#define PCI_PRI_TLP_OFF (1 << 2)
2010
2011bool pci_pri_tlp_required(struct pci_dev *pdev)
2012{
2013 u16 control;
2014 int pos;
2015
2016 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
2017 if (!pos)
2018 return false;
2019
2020 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
2021
2022 return (control & PCI_PRI_TLP_OFF) ? true : false;
2023}
2024
Joerg Roedel15898bb2009-11-24 15:39:42 +01002025/*
2026 * If a device is not yet associated with a domain, this function does
2027 * assigns it visible for the hardware
2028 */
2029static int attach_device(struct device *dev,
2030 struct protection_domain *domain)
2031{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002032 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002033 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002034 unsigned long flags;
2035 int ret;
2036
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002037 dev_data = get_dev_data(dev);
2038
Joerg Roedel52815b72011-11-17 17:24:28 +01002039 if (domain->flags & PD_IOMMUV2_MASK) {
2040 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2041 return -EINVAL;
2042
2043 if (pdev_iommuv2_enable(pdev) != 0)
2044 return -EINVAL;
2045
2046 dev_data->ats.enabled = true;
2047 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002048 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002049 } else if (amd_iommu_iotlb_sup &&
2050 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002051 dev_data->ats.enabled = true;
2052 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2053 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002054
Joerg Roedel15898bb2009-11-24 15:39:42 +01002055 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002056 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002057 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2058
2059 /*
2060 * We might boot into a crash-kernel here. The crashed kernel
2061 * left the caches in the IOMMU dirty. So we have to flush
2062 * here to evict all dirty stuff.
2063 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002064 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002065
2066 return ret;
2067}
2068
2069/*
2070 * Removes a device from a protection domain (unlocked)
2071 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002072static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002073{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002074 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002075 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002076
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002077 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002078
Joerg Roedel2ca76272010-01-22 16:45:31 +01002079 domain = dev_data->domain;
2080
2081 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002082
Joerg Roedel71f77582011-06-09 19:03:15 +02002083 if (dev_data->alias_data != NULL) {
2084 struct iommu_dev_data *alias_data = dev_data->alias_data;
2085
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002086 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002087 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002088 }
2089
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002090 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002091 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002092
Joerg Roedel2ca76272010-01-22 16:45:31 +01002093 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002094
Joerg Roedel21129f72009-09-01 11:59:42 +02002095 /*
2096 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002097 * passthrough domain if it is detached from any other domain.
2098 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002099 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002100 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002101 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002102 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002103}
2104
2105/*
2106 * Removes a device from a protection domain (with devtable_lock held)
2107 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002108static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002109{
Joerg Roedel52815b72011-11-17 17:24:28 +01002110 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002111 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002112 unsigned long flags;
2113
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002114 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002115 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002116
Joerg Roedel355bf552008-12-08 12:02:41 +01002117 /* lock device table */
2118 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002119 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002120 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002121
Joerg Roedel52815b72011-11-17 17:24:28 +01002122 if (domain->flags & PD_IOMMUV2_MASK)
2123 pdev_iommuv2_disable(to_pci_dev(dev));
2124 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002125 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002126
2127 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002128}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002129
Joerg Roedel15898bb2009-11-24 15:39:42 +01002130/*
2131 * Find out the protection domain structure for a given PCI device. This
2132 * will give us the pointer to the page table root for example.
2133 */
2134static struct protection_domain *domain_for_device(struct device *dev)
2135{
Joerg Roedel71f77582011-06-09 19:03:15 +02002136 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002137 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002138 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002139
Joerg Roedel657cbb62009-11-23 15:26:46 +01002140 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002141
Joerg Roedel2b02b092011-06-09 17:48:39 +02002142 if (dev_data->domain)
2143 return dev_data->domain;
2144
Joerg Roedel71f77582011-06-09 19:03:15 +02002145 if (dev_data->alias_data != NULL) {
2146 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002147
2148 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2149 if (alias_data->domain != NULL) {
2150 __attach_device(dev_data, alias_data->domain);
2151 dom = alias_data->domain;
2152 }
2153 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002154 }
2155
Joerg Roedel15898bb2009-11-24 15:39:42 +01002156 return dom;
2157}
2158
Joerg Roedele275a2a2008-12-10 18:27:25 +01002159static int device_change_notifier(struct notifier_block *nb,
2160 unsigned long action, void *data)
2161{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002162 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002163 struct protection_domain *domain;
2164 struct iommu_dev_data *dev_data;
2165 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002166 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002167 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002168 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002169
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002170 if (!check_device(dev))
2171 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002172
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002173 devid = get_device_id(dev);
2174 iommu = amd_iommu_rlookup_table[devid];
2175 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002176
2177 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002178 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002179
2180 domain = domain_for_device(dev);
2181
Joerg Roedele275a2a2008-12-10 18:27:25 +01002182 if (!domain)
2183 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002184 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002185 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002186 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002187 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002188 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002189
2190 iommu_init_device(dev);
2191
2192 domain = domain_for_device(dev);
2193
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002194 /* allocate a protection domain if a device is added */
2195 dma_domain = find_protection_domain(devid);
2196 if (dma_domain)
2197 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002198 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002199 if (!dma_domain)
2200 goto out;
2201 dma_domain->target_dev = devid;
2202
2203 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2204 list_add_tail(&dma_domain->list, &iommu_pd_list);
2205 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2206
2207 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002208 case BUS_NOTIFY_DEL_DEVICE:
2209
2210 iommu_uninit_device(dev);
2211
Joerg Roedele275a2a2008-12-10 18:27:25 +01002212 default:
2213 goto out;
2214 }
2215
Joerg Roedele275a2a2008-12-10 18:27:25 +01002216 iommu_completion_wait(iommu);
2217
2218out:
2219 return 0;
2220}
2221
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302222static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002223 .notifier_call = device_change_notifier,
2224};
Joerg Roedel355bf552008-12-08 12:02:41 +01002225
Joerg Roedel8638c492009-12-10 11:12:25 +01002226void amd_iommu_init_notifier(void)
2227{
2228 bus_register_notifier(&pci_bus_type, &device_nb);
2229}
2230
Joerg Roedel431b2a22008-07-11 17:14:22 +02002231/*****************************************************************************
2232 *
2233 * The next functions belong to the dma_ops mapping/unmapping code.
2234 *
2235 *****************************************************************************/
2236
2237/*
2238 * In the dma_ops path we only have the struct device. This function
2239 * finds the corresponding IOMMU, the protection domain and the
2240 * requestor id for a given device.
2241 * If the device is not yet associated with a domain this is also done
2242 * in this function.
2243 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002244static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002245{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002246 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002247 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002248 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002249
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002250 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002251 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002252
Joerg Roedel94f6d192009-11-24 16:40:02 +01002253 domain = domain_for_device(dev);
2254 if (domain != NULL && !dma_ops_domain(domain))
2255 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002256
Joerg Roedel94f6d192009-11-24 16:40:02 +01002257 if (domain != NULL)
2258 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002259
Joerg Roedel15898bb2009-11-24 15:39:42 +01002260 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002261 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002262 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002263 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2264 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002265 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002266 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002267
Joerg Roedel94f6d192009-11-24 16:40:02 +01002268 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002269}
2270
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002271static void update_device_table(struct protection_domain *domain)
2272{
Joerg Roedel492667d2009-11-27 13:25:47 +01002273 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002274
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002275 list_for_each_entry(dev_data, &domain->dev_list, list)
2276 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002277}
2278
2279static void update_domain(struct protection_domain *domain)
2280{
2281 if (!domain->updated)
2282 return;
2283
2284 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002285
2286 domain_flush_devices(domain);
2287 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002288
2289 domain->updated = false;
2290}
2291
Joerg Roedel431b2a22008-07-11 17:14:22 +02002292/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002293 * This function fetches the PTE for a given address in the aperture
2294 */
2295static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2296 unsigned long address)
2297{
Joerg Roedel384de722009-05-15 12:30:05 +02002298 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002299 u64 *pte, *pte_page;
2300
Joerg Roedel384de722009-05-15 12:30:05 +02002301 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2302 if (!aperture)
2303 return NULL;
2304
2305 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002306 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002307 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002308 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002309 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2310 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002311 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002312
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002313 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002314
2315 return pte;
2316}
2317
2318/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002319 * This is the generic map function. It maps one 4kb page at paddr to
2320 * the given address in the DMA address space for the domain.
2321 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002322static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002323 unsigned long address,
2324 phys_addr_t paddr,
2325 int direction)
2326{
2327 u64 *pte, __pte;
2328
2329 WARN_ON(address > dom->aperture_size);
2330
2331 paddr &= PAGE_MASK;
2332
Joerg Roedel8bda3092009-05-12 12:02:46 +02002333 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002334 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002335 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002336
2337 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2338
2339 if (direction == DMA_TO_DEVICE)
2340 __pte |= IOMMU_PTE_IR;
2341 else if (direction == DMA_FROM_DEVICE)
2342 __pte |= IOMMU_PTE_IW;
2343 else if (direction == DMA_BIDIRECTIONAL)
2344 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2345
2346 WARN_ON(*pte);
2347
2348 *pte = __pte;
2349
2350 return (dma_addr_t)address;
2351}
2352
Joerg Roedel431b2a22008-07-11 17:14:22 +02002353/*
2354 * The generic unmapping function for on page in the DMA address space.
2355 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002356static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002357 unsigned long address)
2358{
Joerg Roedel384de722009-05-15 12:30:05 +02002359 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002360 u64 *pte;
2361
2362 if (address >= dom->aperture_size)
2363 return;
2364
Joerg Roedel384de722009-05-15 12:30:05 +02002365 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2366 if (!aperture)
2367 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002368
Joerg Roedel384de722009-05-15 12:30:05 +02002369 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2370 if (!pte)
2371 return;
2372
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002373 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002374
2375 WARN_ON(!*pte);
2376
2377 *pte = 0ULL;
2378}
2379
Joerg Roedel431b2a22008-07-11 17:14:22 +02002380/*
2381 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002382 * contiguous memory region into DMA address space. It is used by all
2383 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002384 * Must be called with the domain lock held.
2385 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002386static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002387 struct dma_ops_domain *dma_dom,
2388 phys_addr_t paddr,
2389 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002390 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002391 bool align,
2392 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002393{
2394 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002395 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002396 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002397 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002398 int i;
2399
Joerg Roedele3c449f2008-10-15 22:02:11 -07002400 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002401 paddr &= PAGE_MASK;
2402
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002403 INC_STATS_COUNTER(total_map_requests);
2404
Joerg Roedelc1858972008-12-12 15:42:39 +01002405 if (pages > 1)
2406 INC_STATS_COUNTER(cross_page);
2407
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002408 if (align)
2409 align_mask = (1UL << get_order(size)) - 1;
2410
Joerg Roedel11b83882009-05-19 10:23:15 +02002411retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002412 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2413 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002414 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002415 /*
2416 * setting next_address here will let the address
2417 * allocator only scan the new allocated range in the
2418 * first run. This is a small optimization.
2419 */
2420 dma_dom->next_address = dma_dom->aperture_size;
2421
Joerg Roedel576175c2009-11-23 19:08:46 +01002422 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002423 goto out;
2424
2425 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002426 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002427 * allocation again
2428 */
2429 goto retry;
2430 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002431
2432 start = address;
2433 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002434 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002435 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002436 goto out_unmap;
2437
Joerg Roedelcb76c322008-06-26 21:28:00 +02002438 paddr += PAGE_SIZE;
2439 start += PAGE_SIZE;
2440 }
2441 address += offset;
2442
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002443 ADD_STATS_COUNTER(alloced_io_mem, size);
2444
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002445 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002446 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002447 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002448 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002449 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002450
Joerg Roedelcb76c322008-06-26 21:28:00 +02002451out:
2452 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002453
2454out_unmap:
2455
2456 for (--i; i >= 0; --i) {
2457 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002458 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002459 }
2460
2461 dma_ops_free_addresses(dma_dom, address, pages);
2462
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002463 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002464}
2465
Joerg Roedel431b2a22008-07-11 17:14:22 +02002466/*
2467 * Does the reverse of the __map_single function. Must be called with
2468 * the domain lock held too
2469 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002470static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002471 dma_addr_t dma_addr,
2472 size_t size,
2473 int dir)
2474{
Joerg Roedel04e04632010-09-23 16:12:48 +02002475 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002476 dma_addr_t i, start;
2477 unsigned int pages;
2478
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002479 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002480 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002481 return;
2482
Joerg Roedel04e04632010-09-23 16:12:48 +02002483 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002484 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002485 dma_addr &= PAGE_MASK;
2486 start = dma_addr;
2487
2488 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002489 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002490 start += PAGE_SIZE;
2491 }
2492
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002493 SUB_STATS_COUNTER(alloced_io_mem, size);
2494
Joerg Roedelcb76c322008-06-26 21:28:00 +02002495 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002496
Joerg Roedel80be3082008-11-06 14:59:05 +01002497 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002498 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002499 dma_dom->need_flush = false;
2500 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002501}
2502
Joerg Roedel431b2a22008-07-11 17:14:22 +02002503/*
2504 * The exported map_single function for dma_ops.
2505 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002506static dma_addr_t map_page(struct device *dev, struct page *page,
2507 unsigned long offset, size_t size,
2508 enum dma_data_direction dir,
2509 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002510{
2511 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002512 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002513 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002514 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002515 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002516
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002517 INC_STATS_COUNTER(cnt_map_single);
2518
Joerg Roedel94f6d192009-11-24 16:40:02 +01002519 domain = get_domain(dev);
2520 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002521 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002522 else if (IS_ERR(domain))
2523 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002524
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002525 dma_mask = *dev->dma_mask;
2526
Joerg Roedel4da70b92008-06-26 21:28:01 +02002527 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002528
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002529 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002530 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002531 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002532 goto out;
2533
Joerg Roedel17b124b2011-04-06 18:01:35 +02002534 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002535
2536out:
2537 spin_unlock_irqrestore(&domain->lock, flags);
2538
2539 return addr;
2540}
2541
Joerg Roedel431b2a22008-07-11 17:14:22 +02002542/*
2543 * The exported unmap_single function for dma_ops.
2544 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002545static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2546 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002547{
2548 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002549 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002550
Joerg Roedel146a6912008-12-12 15:07:12 +01002551 INC_STATS_COUNTER(cnt_unmap_single);
2552
Joerg Roedel94f6d192009-11-24 16:40:02 +01002553 domain = get_domain(dev);
2554 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002555 return;
2556
Joerg Roedel4da70b92008-06-26 21:28:01 +02002557 spin_lock_irqsave(&domain->lock, flags);
2558
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002559 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002560
Joerg Roedel17b124b2011-04-06 18:01:35 +02002561 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002562
2563 spin_unlock_irqrestore(&domain->lock, flags);
2564}
2565
Joerg Roedel431b2a22008-07-11 17:14:22 +02002566/*
2567 * This is a special map_sg function which is used if we should map a
2568 * device which is not handled by an AMD IOMMU in the system.
2569 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002570static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2571 int nelems, int dir)
2572{
2573 struct scatterlist *s;
2574 int i;
2575
2576 for_each_sg(sglist, s, nelems, i) {
2577 s->dma_address = (dma_addr_t)sg_phys(s);
2578 s->dma_length = s->length;
2579 }
2580
2581 return nelems;
2582}
2583
Joerg Roedel431b2a22008-07-11 17:14:22 +02002584/*
2585 * The exported map_sg function for dma_ops (handles scatter-gather
2586 * lists).
2587 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002588static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002589 int nelems, enum dma_data_direction dir,
2590 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002591{
2592 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002593 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002594 int i;
2595 struct scatterlist *s;
2596 phys_addr_t paddr;
2597 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002598 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002599
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002600 INC_STATS_COUNTER(cnt_map_sg);
2601
Joerg Roedel94f6d192009-11-24 16:40:02 +01002602 domain = get_domain(dev);
2603 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002604 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002605 else if (IS_ERR(domain))
2606 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002607
Joerg Roedel832a90c2008-09-18 15:54:23 +02002608 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002609
Joerg Roedel65b050a2008-06-26 21:28:02 +02002610 spin_lock_irqsave(&domain->lock, flags);
2611
2612 for_each_sg(sglist, s, nelems, i) {
2613 paddr = sg_phys(s);
2614
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002615 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002616 paddr, s->length, dir, false,
2617 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002618
2619 if (s->dma_address) {
2620 s->dma_length = s->length;
2621 mapped_elems++;
2622 } else
2623 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002624 }
2625
Joerg Roedel17b124b2011-04-06 18:01:35 +02002626 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002627
2628out:
2629 spin_unlock_irqrestore(&domain->lock, flags);
2630
2631 return mapped_elems;
2632unmap:
2633 for_each_sg(sglist, s, mapped_elems, i) {
2634 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002635 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002636 s->dma_length, dir);
2637 s->dma_address = s->dma_length = 0;
2638 }
2639
2640 mapped_elems = 0;
2641
2642 goto out;
2643}
2644
Joerg Roedel431b2a22008-07-11 17:14:22 +02002645/*
2646 * The exported map_sg function for dma_ops (handles scatter-gather
2647 * lists).
2648 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002649static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002650 int nelems, enum dma_data_direction dir,
2651 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002652{
2653 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002654 struct protection_domain *domain;
2655 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002656 int i;
2657
Joerg Roedel55877a62008-12-12 15:12:14 +01002658 INC_STATS_COUNTER(cnt_unmap_sg);
2659
Joerg Roedel94f6d192009-11-24 16:40:02 +01002660 domain = get_domain(dev);
2661 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002662 return;
2663
Joerg Roedel65b050a2008-06-26 21:28:02 +02002664 spin_lock_irqsave(&domain->lock, flags);
2665
2666 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002667 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002668 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002669 s->dma_address = s->dma_length = 0;
2670 }
2671
Joerg Roedel17b124b2011-04-06 18:01:35 +02002672 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002673
2674 spin_unlock_irqrestore(&domain->lock, flags);
2675}
2676
Joerg Roedel431b2a22008-07-11 17:14:22 +02002677/*
2678 * The exported alloc_coherent function for dma_ops.
2679 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002680static void *alloc_coherent(struct device *dev, size_t size,
2681 dma_addr_t *dma_addr, gfp_t flag)
2682{
2683 unsigned long flags;
2684 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002685 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002686 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002687 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002688
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002689 INC_STATS_COUNTER(cnt_alloc_coherent);
2690
Joerg Roedel94f6d192009-11-24 16:40:02 +01002691 domain = get_domain(dev);
2692 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002693 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2694 *dma_addr = __pa(virt_addr);
2695 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002696 } else if (IS_ERR(domain))
2697 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002698
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002699 dma_mask = dev->coherent_dma_mask;
2700 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2701 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002702
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002703 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2704 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302705 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002706
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002707 paddr = virt_to_phys(virt_addr);
2708
Joerg Roedel832a90c2008-09-18 15:54:23 +02002709 if (!dma_mask)
2710 dma_mask = *dev->dma_mask;
2711
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002712 spin_lock_irqsave(&domain->lock, flags);
2713
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002714 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002715 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002716
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002717 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002718 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002719 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002720 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002721
Joerg Roedel17b124b2011-04-06 18:01:35 +02002722 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002723
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002724 spin_unlock_irqrestore(&domain->lock, flags);
2725
2726 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002727
2728out_free:
2729
2730 free_pages((unsigned long)virt_addr, get_order(size));
2731
2732 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002733}
2734
Joerg Roedel431b2a22008-07-11 17:14:22 +02002735/*
2736 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002737 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002738static void free_coherent(struct device *dev, size_t size,
2739 void *virt_addr, dma_addr_t dma_addr)
2740{
2741 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002742 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002743
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002744 INC_STATS_COUNTER(cnt_free_coherent);
2745
Joerg Roedel94f6d192009-11-24 16:40:02 +01002746 domain = get_domain(dev);
2747 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002748 goto free_mem;
2749
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002750 spin_lock_irqsave(&domain->lock, flags);
2751
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002752 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002753
Joerg Roedel17b124b2011-04-06 18:01:35 +02002754 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002755
2756 spin_unlock_irqrestore(&domain->lock, flags);
2757
2758free_mem:
2759 free_pages((unsigned long)virt_addr, get_order(size));
2760}
2761
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002762/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002763 * This function is called by the DMA layer to find out if we can handle a
2764 * particular device. It is part of the dma_ops.
2765 */
2766static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2767{
Joerg Roedel420aef82009-11-23 16:14:57 +01002768 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002769}
2770
2771/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002772 * The function for pre-allocating protection domains.
2773 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002774 * If the driver core informs the DMA layer if a driver grabs a device
2775 * we don't need to preallocate the protection domains anymore.
2776 * For now we have to.
2777 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05302778static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002779{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002780 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002781 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002782 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002783 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002784
Chris Wrightd18c69d2010-04-02 18:27:55 -07002785 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002786
2787 /* Do we handle this device? */
2788 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002789 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002790
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002791 dev_data = get_dev_data(&dev->dev);
2792 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2793 /* Make sure passthrough domain is allocated */
2794 alloc_passthrough_domain();
2795 dev_data->passthrough = true;
2796 attach_device(&dev->dev, pt_domain);
2797 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2798 dev_name(&dev->dev));
2799 }
2800
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002801 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002802 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002803 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002804
2805 devid = get_device_id(&dev->dev);
2806
Joerg Roedel87a64d52009-11-24 17:26:43 +01002807 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002808 if (!dma_dom)
2809 continue;
2810 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002811 dma_dom->target_dev = devid;
2812
Joerg Roedel15898bb2009-11-24 15:39:42 +01002813 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002814
Joerg Roedelbd60b732008-09-11 10:24:48 +02002815 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002816 }
2817}
2818
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002819static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002820 .alloc_coherent = alloc_coherent,
2821 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002822 .map_page = map_page,
2823 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002824 .map_sg = map_sg,
2825 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002826 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002827};
2828
Joerg Roedel27c21272011-05-30 15:56:24 +02002829static unsigned device_dma_ops_init(void)
2830{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002831 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002832 struct pci_dev *pdev = NULL;
2833 unsigned unhandled = 0;
2834
2835 for_each_pci_dev(pdev) {
2836 if (!check_device(&pdev->dev)) {
2837 unhandled += 1;
2838 continue;
2839 }
2840
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002841 dev_data = get_dev_data(&pdev->dev);
2842
2843 if (!dev_data->passthrough)
2844 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2845 else
2846 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002847 }
2848
2849 return unhandled;
2850}
2851
Joerg Roedel431b2a22008-07-11 17:14:22 +02002852/*
2853 * The function which clues the AMD IOMMU driver into dma_ops.
2854 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002855
2856void __init amd_iommu_init_api(void)
2857{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002858 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002859}
2860
Joerg Roedel6631ee92008-06-26 21:28:05 +02002861int __init amd_iommu_init_dma_ops(void)
2862{
2863 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002864 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002865
Joerg Roedel431b2a22008-07-11 17:14:22 +02002866 /*
2867 * first allocate a default protection domain for every IOMMU we
2868 * found in the system. Devices not assigned to any other
2869 * protection domain will be assigned to the default one.
2870 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002871 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002872 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002873 if (iommu->default_dom == NULL)
2874 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002875 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002876 ret = iommu_init_unity_mappings(iommu);
2877 if (ret)
2878 goto free_domains;
2879 }
2880
Joerg Roedel431b2a22008-07-11 17:14:22 +02002881 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002882 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002883 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002884 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002885
2886 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002887 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002888
Joerg Roedel431b2a22008-07-11 17:14:22 +02002889 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002890 unhandled = device_dma_ops_init();
2891 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2892 /* There are unhandled devices - initialize swiotlb for them */
2893 swiotlb = 1;
2894 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002895
Joerg Roedel7f265082008-12-12 13:50:21 +01002896 amd_iommu_stats_init();
2897
Joerg Roedel6631ee92008-06-26 21:28:05 +02002898 return 0;
2899
2900free_domains:
2901
Joerg Roedel3bd22172009-05-04 15:06:20 +02002902 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002903 if (iommu->default_dom)
2904 dma_ops_domain_free(iommu->default_dom);
2905 }
2906
2907 return ret;
2908}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002909
2910/*****************************************************************************
2911 *
2912 * The following functions belong to the exported interface of AMD IOMMU
2913 *
2914 * This interface allows access to lower level functions of the IOMMU
2915 * like protection domain handling and assignement of devices to domains
2916 * which is not possible with the dma_ops interface.
2917 *
2918 *****************************************************************************/
2919
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002920static void cleanup_domain(struct protection_domain *domain)
2921{
Joerg Roedel492667d2009-11-27 13:25:47 +01002922 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002923 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002924
2925 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2926
Joerg Roedel492667d2009-11-27 13:25:47 +01002927 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002928 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01002929 atomic_set(&dev_data->bind, 0);
2930 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002931
2932 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2933}
2934
Joerg Roedel26508152009-08-26 16:52:40 +02002935static void protection_domain_free(struct protection_domain *domain)
2936{
2937 if (!domain)
2938 return;
2939
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002940 del_domain_from_list(domain);
2941
Joerg Roedel26508152009-08-26 16:52:40 +02002942 if (domain->id)
2943 domain_id_free(domain->id);
2944
2945 kfree(domain);
2946}
2947
2948static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002949{
2950 struct protection_domain *domain;
2951
2952 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2953 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002954 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002955
2956 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002957 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002958 domain->id = domain_id_alloc();
2959 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002960 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002961 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02002962
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002963 add_domain_to_list(domain);
2964
Joerg Roedel26508152009-08-26 16:52:40 +02002965 return domain;
2966
2967out_err:
2968 kfree(domain);
2969
2970 return NULL;
2971}
2972
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002973static int __init alloc_passthrough_domain(void)
2974{
2975 if (pt_domain != NULL)
2976 return 0;
2977
2978 /* allocate passthrough domain */
2979 pt_domain = protection_domain_alloc();
2980 if (!pt_domain)
2981 return -ENOMEM;
2982
2983 pt_domain->mode = PAGE_MODE_NONE;
2984
2985 return 0;
2986}
Joerg Roedel26508152009-08-26 16:52:40 +02002987static int amd_iommu_domain_init(struct iommu_domain *dom)
2988{
2989 struct protection_domain *domain;
2990
2991 domain = protection_domain_alloc();
2992 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01002993 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02002994
2995 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002996 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2997 if (!domain->pt_root)
2998 goto out_free;
2999
Joerg Roedelf3572db2011-11-23 12:36:25 +01003000 domain->iommu_domain = dom;
3001
Joerg Roedelc156e342008-12-02 18:13:27 +01003002 dom->priv = domain;
3003
3004 return 0;
3005
3006out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003007 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003008
3009 return -ENOMEM;
3010}
3011
Joerg Roedel98383fc2008-12-02 18:34:12 +01003012static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3013{
3014 struct protection_domain *domain = dom->priv;
3015
3016 if (!domain)
3017 return;
3018
3019 if (domain->dev_cnt > 0)
3020 cleanup_domain(domain);
3021
3022 BUG_ON(domain->dev_cnt != 0);
3023
Joerg Roedel132bd682011-11-17 14:18:46 +01003024 if (domain->mode != PAGE_MODE_NONE)
3025 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003026
Joerg Roedel52815b72011-11-17 17:24:28 +01003027 if (domain->flags & PD_IOMMUV2_MASK)
3028 free_gcr3_table(domain);
3029
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003030 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003031
3032 dom->priv = NULL;
3033}
3034
Joerg Roedel684f2882008-12-08 12:07:44 +01003035static void amd_iommu_detach_device(struct iommu_domain *dom,
3036 struct device *dev)
3037{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003038 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003039 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003040 u16 devid;
3041
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003042 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003043 return;
3044
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003045 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003046
Joerg Roedel657cbb62009-11-23 15:26:46 +01003047 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003048 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003049
3050 iommu = amd_iommu_rlookup_table[devid];
3051 if (!iommu)
3052 return;
3053
Joerg Roedel684f2882008-12-08 12:07:44 +01003054 iommu_completion_wait(iommu);
3055}
3056
Joerg Roedel01106062008-12-02 19:34:11 +01003057static int amd_iommu_attach_device(struct iommu_domain *dom,
3058 struct device *dev)
3059{
3060 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003061 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003062 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003063 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003064
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003065 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003066 return -EINVAL;
3067
Joerg Roedel657cbb62009-11-23 15:26:46 +01003068 dev_data = dev->archdata.iommu;
3069
Joerg Roedelf62dda62011-06-09 12:55:35 +02003070 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003071 if (!iommu)
3072 return -EINVAL;
3073
Joerg Roedel657cbb62009-11-23 15:26:46 +01003074 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003075 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003076
Joerg Roedel15898bb2009-11-24 15:39:42 +01003077 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003078
3079 iommu_completion_wait(iommu);
3080
Joerg Roedel15898bb2009-11-24 15:39:42 +01003081 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003082}
3083
Joerg Roedel468e2362010-01-21 16:37:36 +01003084static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
3085 phys_addr_t paddr, int gfp_order, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003086{
Joerg Roedel468e2362010-01-21 16:37:36 +01003087 unsigned long page_size = 0x1000UL << gfp_order;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003088 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003089 int prot = 0;
3090 int ret;
3091
Joerg Roedel132bd682011-11-17 14:18:46 +01003092 if (domain->mode == PAGE_MODE_NONE)
3093 return -EINVAL;
3094
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003095 if (iommu_prot & IOMMU_READ)
3096 prot |= IOMMU_PROT_IR;
3097 if (iommu_prot & IOMMU_WRITE)
3098 prot |= IOMMU_PROT_IW;
3099
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003100 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003101 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003102 mutex_unlock(&domain->api_lock);
3103
Joerg Roedel795e74f72010-05-11 17:40:57 +02003104 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003105}
3106
Joerg Roedel468e2362010-01-21 16:37:36 +01003107static int amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3108 int gfp_order)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003109{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003110 struct protection_domain *domain = dom->priv;
Joerg Roedel468e2362010-01-21 16:37:36 +01003111 unsigned long page_size, unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003112
Joerg Roedel132bd682011-11-17 14:18:46 +01003113 if (domain->mode == PAGE_MODE_NONE)
3114 return -EINVAL;
3115
Joerg Roedel468e2362010-01-21 16:37:36 +01003116 page_size = 0x1000UL << gfp_order;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003117
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003118 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003119 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003120 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003121
Joerg Roedel17b124b2011-04-06 18:01:35 +02003122 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003123
Joerg Roedel468e2362010-01-21 16:37:36 +01003124 return get_order(unmap_size);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003125}
3126
Joerg Roedel645c4c82008-12-02 20:05:50 +01003127static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3128 unsigned long iova)
3129{
3130 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003131 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003132 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003133 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003134
Joerg Roedel132bd682011-11-17 14:18:46 +01003135 if (domain->mode == PAGE_MODE_NONE)
3136 return iova;
3137
Joerg Roedel24cd7722010-01-19 17:27:39 +01003138 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003139
Joerg Roedela6d41a42009-09-02 17:08:55 +02003140 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003141 return 0;
3142
Joerg Roedelf03152b2010-01-21 16:15:24 +01003143 if (PM_PTE_LEVEL(*pte) == 0)
3144 offset_mask = PAGE_SIZE - 1;
3145 else
3146 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3147
3148 __pte = *pte & PM_ADDR_MASK;
3149 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003150
3151 return paddr;
3152}
3153
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003154static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3155 unsigned long cap)
3156{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003157 switch (cap) {
3158 case IOMMU_CAP_CACHE_COHERENCY:
3159 return 1;
3160 }
3161
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003162 return 0;
3163}
3164
Joerg Roedel26961ef2008-12-03 17:00:17 +01003165static struct iommu_ops amd_iommu_ops = {
3166 .domain_init = amd_iommu_domain_init,
3167 .domain_destroy = amd_iommu_domain_destroy,
3168 .attach_dev = amd_iommu_attach_device,
3169 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003170 .map = amd_iommu_map,
3171 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003172 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003173 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003174};
3175
Joerg Roedel0feae532009-08-26 15:26:30 +02003176/*****************************************************************************
3177 *
3178 * The next functions do a basic initialization of IOMMU for pass through
3179 * mode
3180 *
3181 * In passthrough mode the IOMMU is initialized and enabled but not used for
3182 * DMA-API translation.
3183 *
3184 *****************************************************************************/
3185
3186int __init amd_iommu_init_passthrough(void)
3187{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003188 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003189 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003190 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003191 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003192 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003193
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003194 ret = alloc_passthrough_domain();
3195 if (ret)
3196 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003197
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003198 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003199 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003200 continue;
3201
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003202 dev_data = get_dev_data(&dev->dev);
3203 dev_data->passthrough = true;
3204
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003205 devid = get_device_id(&dev->dev);
3206
Joerg Roedel15898bb2009-11-24 15:39:42 +01003207 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003208 if (!iommu)
3209 continue;
3210
Joerg Roedel15898bb2009-11-24 15:39:42 +01003211 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003212 }
3213
3214 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3215
3216 return 0;
3217}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003218
3219/* IOMMUv2 specific functions */
3220int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3221{
3222 return atomic_notifier_chain_register(&ppr_notifier, nb);
3223}
3224EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3225
3226int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3227{
3228 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3229}
3230EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003231
3232void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3233{
3234 struct protection_domain *domain = dom->priv;
3235 unsigned long flags;
3236
3237 spin_lock_irqsave(&domain->lock, flags);
3238
3239 /* Update data structure */
3240 domain->mode = PAGE_MODE_NONE;
3241 domain->updated = true;
3242
3243 /* Make changes visible to IOMMUs */
3244 update_domain(domain);
3245
3246 /* Page-table is not visible to IOMMU anymore, so free it */
3247 free_pagetable(domain);
3248
3249 spin_unlock_irqrestore(&domain->lock, flags);
3250}
3251EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003252
3253int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3254{
3255 struct protection_domain *domain = dom->priv;
3256 unsigned long flags;
3257 int levels, ret;
3258
3259 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3260 return -EINVAL;
3261
3262 /* Number of GCR3 table levels required */
3263 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3264 levels += 1;
3265
3266 if (levels > amd_iommu_max_glx_val)
3267 return -EINVAL;
3268
3269 spin_lock_irqsave(&domain->lock, flags);
3270
3271 /*
3272 * Save us all sanity checks whether devices already in the
3273 * domain support IOMMUv2. Just force that the domain has no
3274 * devices attached when it is switched into IOMMUv2 mode.
3275 */
3276 ret = -EBUSY;
3277 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3278 goto out;
3279
3280 ret = -ENOMEM;
3281 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3282 if (domain->gcr3_tbl == NULL)
3283 goto out;
3284
3285 domain->glx = levels;
3286 domain->flags |= PD_IOMMUV2_MASK;
3287 domain->updated = true;
3288
3289 update_domain(domain);
3290
3291 ret = 0;
3292
3293out:
3294 spin_unlock_irqrestore(&domain->lock, flags);
3295
3296 return ret;
3297}
3298EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003299
3300static int __flush_pasid(struct protection_domain *domain, int pasid,
3301 u64 address, bool size)
3302{
3303 struct iommu_dev_data *dev_data;
3304 struct iommu_cmd cmd;
3305 int i, ret;
3306
3307 if (!(domain->flags & PD_IOMMUV2_MASK))
3308 return -EINVAL;
3309
3310 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3311
3312 /*
3313 * IOMMU TLB needs to be flushed before Device TLB to
3314 * prevent device TLB refill from IOMMU TLB
3315 */
3316 for (i = 0; i < amd_iommus_present; ++i) {
3317 if (domain->dev_iommu[i] == 0)
3318 continue;
3319
3320 ret = iommu_queue_command(amd_iommus[i], &cmd);
3321 if (ret != 0)
3322 goto out;
3323 }
3324
3325 /* Wait until IOMMU TLB flushes are complete */
3326 domain_flush_complete(domain);
3327
3328 /* Now flush device TLBs */
3329 list_for_each_entry(dev_data, &domain->dev_list, list) {
3330 struct amd_iommu *iommu;
3331 int qdep;
3332
3333 BUG_ON(!dev_data->ats.enabled);
3334
3335 qdep = dev_data->ats.qdep;
3336 iommu = amd_iommu_rlookup_table[dev_data->devid];
3337
3338 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3339 qdep, address, size);
3340
3341 ret = iommu_queue_command(iommu, &cmd);
3342 if (ret != 0)
3343 goto out;
3344 }
3345
3346 /* Wait until all device TLBs are flushed */
3347 domain_flush_complete(domain);
3348
3349 ret = 0;
3350
3351out:
3352
3353 return ret;
3354}
3355
3356static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3357 u64 address)
3358{
3359 return __flush_pasid(domain, pasid, address, false);
3360}
3361
3362int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3363 u64 address)
3364{
3365 struct protection_domain *domain = dom->priv;
3366 unsigned long flags;
3367 int ret;
3368
3369 spin_lock_irqsave(&domain->lock, flags);
3370 ret = __amd_iommu_flush_page(domain, pasid, address);
3371 spin_unlock_irqrestore(&domain->lock, flags);
3372
3373 return ret;
3374}
3375EXPORT_SYMBOL(amd_iommu_flush_page);
3376
3377static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3378{
3379 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3380 true);
3381}
3382
3383int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3384{
3385 struct protection_domain *domain = dom->priv;
3386 unsigned long flags;
3387 int ret;
3388
3389 spin_lock_irqsave(&domain->lock, flags);
3390 ret = __amd_iommu_flush_tlb(domain, pasid);
3391 spin_unlock_irqrestore(&domain->lock, flags);
3392
3393 return ret;
3394}
3395EXPORT_SYMBOL(amd_iommu_flush_tlb);
3396
Joerg Roedelb16137b2011-11-21 16:50:23 +01003397static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3398{
3399 int index;
3400 u64 *pte;
3401
3402 while (true) {
3403
3404 index = (pasid >> (9 * level)) & 0x1ff;
3405 pte = &root[index];
3406
3407 if (level == 0)
3408 break;
3409
3410 if (!(*pte & GCR3_VALID)) {
3411 if (!alloc)
3412 return NULL;
3413
3414 root = (void *)get_zeroed_page(GFP_ATOMIC);
3415 if (root == NULL)
3416 return NULL;
3417
3418 *pte = __pa(root) | GCR3_VALID;
3419 }
3420
3421 root = __va(*pte & PAGE_MASK);
3422
3423 level -= 1;
3424 }
3425
3426 return pte;
3427}
3428
3429static int __set_gcr3(struct protection_domain *domain, int pasid,
3430 unsigned long cr3)
3431{
3432 u64 *pte;
3433
3434 if (domain->mode != PAGE_MODE_NONE)
3435 return -EINVAL;
3436
3437 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3438 if (pte == NULL)
3439 return -ENOMEM;
3440
3441 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3442
3443 return __amd_iommu_flush_tlb(domain, pasid);
3444}
3445
3446static int __clear_gcr3(struct protection_domain *domain, int pasid)
3447{
3448 u64 *pte;
3449
3450 if (domain->mode != PAGE_MODE_NONE)
3451 return -EINVAL;
3452
3453 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3454 if (pte == NULL)
3455 return 0;
3456
3457 *pte = 0;
3458
3459 return __amd_iommu_flush_tlb(domain, pasid);
3460}
3461
3462int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3463 unsigned long cr3)
3464{
3465 struct protection_domain *domain = dom->priv;
3466 unsigned long flags;
3467 int ret;
3468
3469 spin_lock_irqsave(&domain->lock, flags);
3470 ret = __set_gcr3(domain, pasid, cr3);
3471 spin_unlock_irqrestore(&domain->lock, flags);
3472
3473 return ret;
3474}
3475EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3476
3477int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3478{
3479 struct protection_domain *domain = dom->priv;
3480 unsigned long flags;
3481 int ret;
3482
3483 spin_lock_irqsave(&domain->lock, flags);
3484 ret = __clear_gcr3(domain, pasid);
3485 spin_unlock_irqrestore(&domain->lock, flags);
3486
3487 return ret;
3488}
3489EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003490
3491int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3492 int status, int tag)
3493{
3494 struct iommu_dev_data *dev_data;
3495 struct amd_iommu *iommu;
3496 struct iommu_cmd cmd;
3497
3498 dev_data = get_dev_data(&pdev->dev);
3499 iommu = amd_iommu_rlookup_table[dev_data->devid];
3500
3501 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3502 tag, dev_data->pri_tlp);
3503
3504 return iommu_queue_command(iommu, &cmd);
3505}
3506EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003507
3508struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3509{
3510 struct protection_domain *domain;
3511
3512 domain = get_domain(&pdev->dev);
3513 if (IS_ERR(domain))
3514 return NULL;
3515
3516 /* Only return IOMMUv2 domains */
3517 if (!(domain->flags & PD_IOMMUV2_MASK))
3518 return NULL;
3519
3520 return domain->iommu_domain;
3521}
3522EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003523
3524void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3525{
3526 struct iommu_dev_data *dev_data;
3527
3528 if (!amd_iommu_v2_supported())
3529 return;
3530
3531 dev_data = get_dev_data(&pdev->dev);
3532 dev_data->errata |= (1 << erratum);
3533}
3534EXPORT_SYMBOL(amd_iommu_enable_device_erratum);