blob: 2a46b1d7a60193b222d0810d6f509c58d4b76a07 [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 Roedeld03f0672008-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 Roedel399be2f2011-12-01 16:53:47 +0100362DECLARE_STATS_COUNTER(complete_ppr);
363DECLARE_STATS_COUNTER(invalidate_iotlb);
364DECLARE_STATS_COUNTER(invalidate_iotlb_all);
365DECLARE_STATS_COUNTER(pri_requests);
366
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100367
Joerg Roedel7f265082008-12-12 13:50:21 +0100368static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100369static struct dentry *de_fflush;
370
371static void amd_iommu_stats_add(struct __iommu_counter *cnt)
372{
373 if (stats_dir == NULL)
374 return;
375
376 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
377 &cnt->value);
378}
379
380static void amd_iommu_stats_init(void)
381{
382 stats_dir = debugfs_create_dir("amd-iommu", NULL);
383 if (stats_dir == NULL)
384 return;
385
Joerg Roedel7f265082008-12-12 13:50:21 +0100386 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
387 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100388
389 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100390 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100391 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100392 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100393 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100394 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100395 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100396 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100397 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100398 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100399 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100400 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100401 amd_iommu_stats_add(&complete_ppr);
402 amd_iommu_stats_add(&invalidate_iotlb);
403 amd_iommu_stats_add(&invalidate_iotlb_all);
404 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100405}
406
407#endif
408
Joerg Roedel431b2a22008-07-11 17:14:22 +0200409/****************************************************************************
410 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200411 * Interrupt handling functions
412 *
413 ****************************************************************************/
414
Joerg Roedele3e59872009-09-03 14:02:10 +0200415static void dump_dte_entry(u16 devid)
416{
417 int i;
418
Joerg Roedelee6c2862011-11-09 12:06:03 +0100419 for (i = 0; i < 4; ++i)
420 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200421 amd_iommu_dev_table[devid].data[i]);
422}
423
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200424static void dump_command(unsigned long phys_addr)
425{
426 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
427 int i;
428
429 for (i = 0; i < 4; ++i)
430 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
431}
432
Joerg Roedela345b232009-09-03 15:01:43 +0200433static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200434{
435 u32 *event = __evt;
436 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
437 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
438 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
439 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
440 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
441
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200442 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200443
444 switch (type) {
445 case EVENT_TYPE_ILL_DEV:
446 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
447 "address=0x%016llx flags=0x%04x]\n",
448 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
449 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200450 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200451 break;
452 case EVENT_TYPE_IO_FAULT:
453 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
454 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
455 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
456 domid, address, flags);
457 break;
458 case EVENT_TYPE_DEV_TAB_ERR:
459 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
460 "address=0x%016llx flags=0x%04x]\n",
461 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
462 address, flags);
463 break;
464 case EVENT_TYPE_PAGE_TAB_ERR:
465 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
466 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
467 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
468 domid, address, flags);
469 break;
470 case EVENT_TYPE_ILL_CMD:
471 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200472 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200473 break;
474 case EVENT_TYPE_CMD_HARD_ERR:
475 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
476 "flags=0x%04x]\n", address, flags);
477 break;
478 case EVENT_TYPE_IOTLB_INV_TO:
479 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
480 "address=0x%016llx]\n",
481 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
482 address);
483 break;
484 case EVENT_TYPE_INV_DEV_REQ:
485 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
486 "address=0x%016llx flags=0x%04x]\n",
487 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
488 address, flags);
489 break;
490 default:
491 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
492 }
493}
494
495static void iommu_poll_events(struct amd_iommu *iommu)
496{
497 u32 head, tail;
498 unsigned long flags;
499
500 spin_lock_irqsave(&iommu->lock, flags);
501
502 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
503 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
504
505 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200506 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200507 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
508 }
509
510 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
511
512 spin_unlock_irqrestore(&iommu->lock, flags);
513}
514
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100515static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u32 head)
516{
517 struct amd_iommu_fault fault;
518 volatile u64 *raw;
519 int i;
520
Joerg Roedel399be2f2011-12-01 16:53:47 +0100521 INC_STATS_COUNTER(pri_requests);
522
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100523 raw = (u64 *)(iommu->ppr_log + head);
524
525 /*
526 * Hardware bug: Interrupt may arrive before the entry is written to
527 * memory. If this happens we need to wait for the entry to arrive.
528 */
529 for (i = 0; i < LOOP_TIMEOUT; ++i) {
530 if (PPR_REQ_TYPE(raw[0]) != 0)
531 break;
532 udelay(1);
533 }
534
535 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
536 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
537 return;
538 }
539
540 fault.address = raw[1];
541 fault.pasid = PPR_PASID(raw[0]);
542 fault.device_id = PPR_DEVID(raw[0]);
543 fault.tag = PPR_TAG(raw[0]);
544 fault.flags = PPR_FLAGS(raw[0]);
545
546 /*
547 * To detect the hardware bug we need to clear the entry
548 * to back to zero.
549 */
550 raw[0] = raw[1] = 0;
551
552 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
553}
554
555static void iommu_poll_ppr_log(struct amd_iommu *iommu)
556{
557 unsigned long flags;
558 u32 head, tail;
559
560 if (iommu->ppr_log == NULL)
561 return;
562
563 spin_lock_irqsave(&iommu->lock, flags);
564
565 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
566 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
567
568 while (head != tail) {
569
570 /* Handle PPR entry */
571 iommu_handle_ppr_entry(iommu, head);
572
573 /* Update and refresh ring-buffer state*/
574 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
575 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
576 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
577 }
578
579 /* enable ppr interrupts again */
580 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
581
582 spin_unlock_irqrestore(&iommu->lock, flags);
583}
584
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200585irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200586{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200587 struct amd_iommu *iommu;
588
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100589 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200590 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100591 iommu_poll_ppr_log(iommu);
592 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200593
594 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200595}
596
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200597irqreturn_t amd_iommu_int_handler(int irq, void *data)
598{
599 return IRQ_WAKE_THREAD;
600}
601
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200602/****************************************************************************
603 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200604 * IOMMU command queuing functions
605 *
606 ****************************************************************************/
607
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200608static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200609{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200610 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200611
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200612 while (*sem == 0 && i < LOOP_TIMEOUT) {
613 udelay(1);
614 i += 1;
615 }
616
617 if (i == LOOP_TIMEOUT) {
618 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
619 return -EIO;
620 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200621
622 return 0;
623}
624
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200625static void copy_cmd_to_buffer(struct amd_iommu *iommu,
626 struct iommu_cmd *cmd,
627 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200628{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200629 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200630
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200631 target = iommu->cmd_buf + tail;
632 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200633
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200634 /* Copy command to buffer */
635 memcpy(target, cmd, sizeof(*cmd));
636
637 /* Tell the IOMMU about it */
638 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
639}
640
Joerg Roedel815b33f2011-04-06 17:26:49 +0200641static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200642{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200643 WARN_ON(address & 0x7ULL);
644
Joerg Roedelded46732011-04-06 10:53:48 +0200645 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200646 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
647 cmd->data[1] = upper_32_bits(__pa(address));
648 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200649 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
650}
651
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200652static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
653{
654 memset(cmd, 0, sizeof(*cmd));
655 cmd->data[0] = devid;
656 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
657}
658
Joerg Roedel11b64022011-04-06 11:49:28 +0200659static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
660 size_t size, u16 domid, int pde)
661{
662 u64 pages;
663 int s;
664
665 pages = iommu_num_pages(address, size, PAGE_SIZE);
666 s = 0;
667
668 if (pages > 1) {
669 /*
670 * If we have to flush more than one page, flush all
671 * TLB entries for this domain
672 */
673 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
674 s = 1;
675 }
676
677 address &= PAGE_MASK;
678
679 memset(cmd, 0, sizeof(*cmd));
680 cmd->data[1] |= domid;
681 cmd->data[2] = lower_32_bits(address);
682 cmd->data[3] = upper_32_bits(address);
683 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
684 if (s) /* size bit - we flush more than one 4kb page */
685 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
686 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
687 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
688}
689
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200690static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
691 u64 address, size_t size)
692{
693 u64 pages;
694 int s;
695
696 pages = iommu_num_pages(address, size, PAGE_SIZE);
697 s = 0;
698
699 if (pages > 1) {
700 /*
701 * If we have to flush more than one page, flush all
702 * TLB entries for this domain
703 */
704 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
705 s = 1;
706 }
707
708 address &= PAGE_MASK;
709
710 memset(cmd, 0, sizeof(*cmd));
711 cmd->data[0] = devid;
712 cmd->data[0] |= (qdep & 0xff) << 24;
713 cmd->data[1] = devid;
714 cmd->data[2] = lower_32_bits(address);
715 cmd->data[3] = upper_32_bits(address);
716 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
717 if (s)
718 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
719}
720
Joerg Roedel22e266c2011-11-21 15:59:08 +0100721static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
722 u64 address, bool size)
723{
724 memset(cmd, 0, sizeof(*cmd));
725
726 address &= ~(0xfffULL);
727
728 cmd->data[0] = pasid & PASID_MASK;
729 cmd->data[1] = domid;
730 cmd->data[2] = lower_32_bits(address);
731 cmd->data[3] = upper_32_bits(address);
732 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
733 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
734 if (size)
735 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
736 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
737}
738
739static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
740 int qdep, u64 address, bool size)
741{
742 memset(cmd, 0, sizeof(*cmd));
743
744 address &= ~(0xfffULL);
745
746 cmd->data[0] = devid;
747 cmd->data[0] |= (pasid & 0xff) << 16;
748 cmd->data[0] |= (qdep & 0xff) << 24;
749 cmd->data[1] = devid;
750 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
751 cmd->data[2] = lower_32_bits(address);
752 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
753 cmd->data[3] = upper_32_bits(address);
754 if (size)
755 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
756 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
757}
758
Joerg Roedelc99afa22011-11-21 18:19:25 +0100759static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
760 int status, int tag, bool gn)
761{
762 memset(cmd, 0, sizeof(*cmd));
763
764 cmd->data[0] = devid;
765 if (gn) {
766 cmd->data[1] = pasid & PASID_MASK;
767 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
768 }
769 cmd->data[3] = tag & 0x1ff;
770 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
771
772 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
773}
774
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200775static void build_inv_all(struct iommu_cmd *cmd)
776{
777 memset(cmd, 0, sizeof(*cmd));
778 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200779}
780
Joerg Roedel431b2a22008-07-11 17:14:22 +0200781/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200782 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200783 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200784 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200785static int iommu_queue_command_sync(struct amd_iommu *iommu,
786 struct iommu_cmd *cmd,
787 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200788{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200789 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200790 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200791
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200792 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100793
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200794again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200795 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200796
797 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
798 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
799 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
800 left = (head - next_tail) % iommu->cmd_buf_size;
801
802 if (left <= 2) {
803 struct iommu_cmd sync_cmd;
804 volatile u64 sem = 0;
805 int ret;
806
807 build_completion_wait(&sync_cmd, (u64)&sem);
808 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
809
810 spin_unlock_irqrestore(&iommu->lock, flags);
811
812 if ((ret = wait_on_sem(&sem)) != 0)
813 return ret;
814
815 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200816 }
817
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200818 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200819
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200820 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200821 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200822
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200823 spin_unlock_irqrestore(&iommu->lock, flags);
824
Joerg Roedel815b33f2011-04-06 17:26:49 +0200825 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100826}
827
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200828static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
829{
830 return iommu_queue_command_sync(iommu, cmd, true);
831}
832
Joerg Roedel8d201962008-12-02 20:34:41 +0100833/*
834 * This function queues a completion wait command into the command
835 * buffer of an IOMMU
836 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100837static int iommu_completion_wait(struct amd_iommu *iommu)
838{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200839 struct iommu_cmd cmd;
840 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200841 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100842
843 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200844 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100845
Joerg Roedel815b33f2011-04-06 17:26:49 +0200846 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100847
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200848 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100849 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200850 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100851
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200852 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200853}
854
Joerg Roedeld8c13082011-04-06 18:51:26 +0200855static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200856{
857 struct iommu_cmd cmd;
858
Joerg Roedeld8c13082011-04-06 18:51:26 +0200859 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200860
Joerg Roedeld8c13082011-04-06 18:51:26 +0200861 return iommu_queue_command(iommu, &cmd);
862}
863
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200864static void iommu_flush_dte_all(struct amd_iommu *iommu)
865{
866 u32 devid;
867
868 for (devid = 0; devid <= 0xffff; ++devid)
869 iommu_flush_dte(iommu, devid);
870
871 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200872}
873
874/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200875 * This function uses heavy locking and may disable irqs for some time. But
876 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200877 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200878static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200879{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200880 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200881
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200882 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
883 struct iommu_cmd cmd;
884 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
885 dom_id, 1);
886 iommu_queue_command(iommu, &cmd);
887 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200888
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200889 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200890}
891
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200892static void iommu_flush_all(struct amd_iommu *iommu)
893{
894 struct iommu_cmd cmd;
895
896 build_inv_all(&cmd);
897
898 iommu_queue_command(iommu, &cmd);
899 iommu_completion_wait(iommu);
900}
901
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200902void iommu_flush_all_caches(struct amd_iommu *iommu)
903{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200904 if (iommu_feature(iommu, FEATURE_IA)) {
905 iommu_flush_all(iommu);
906 } else {
907 iommu_flush_dte_all(iommu);
908 iommu_flush_tlb_all(iommu);
909 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200910}
911
Joerg Roedel431b2a22008-07-11 17:14:22 +0200912/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200913 * Command send function for flushing on-device TLB
914 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200915static int device_flush_iotlb(struct iommu_dev_data *dev_data,
916 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200917{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200918 struct amd_iommu *iommu;
919 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200920 int qdep;
921
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200922 qdep = dev_data->ats.qdep;
923 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200924
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200925 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200926
927 return iommu_queue_command(iommu, &cmd);
928}
929
930/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200931 * Command send function for invalidating a device table entry
932 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200933static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100934{
935 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200936 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100937
Joerg Roedel6c542042011-06-09 17:07:31 +0200938 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100939
Joerg Roedelf62dda62011-06-09 12:55:35 +0200940 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200941 if (ret)
942 return ret;
943
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200944 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200945 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200946
947 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100948}
949
Joerg Roedel431b2a22008-07-11 17:14:22 +0200950/*
951 * TLB invalidation function which is called from the mapping functions.
952 * It invalidates a single PTE if the range to flush is within a single
953 * page. Otherwise it flushes the whole TLB of the IOMMU.
954 */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200955static void __domain_flush_pages(struct protection_domain *domain,
956 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200957{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200958 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +0200959 struct iommu_cmd cmd;
960 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200961
Joerg Roedel11b64022011-04-06 11:49:28 +0200962 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +0200963
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100964 for (i = 0; i < amd_iommus_present; ++i) {
965 if (!domain->dev_iommu[i])
966 continue;
967
968 /*
969 * Devices of this domain are behind this IOMMU
970 * We need a TLB flush
971 */
Joerg Roedel11b64022011-04-06 11:49:28 +0200972 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100973 }
974
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200975 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200976
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200977 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200978 continue;
979
Joerg Roedel6c542042011-06-09 17:07:31 +0200980 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200981 }
982
Joerg Roedel11b64022011-04-06 11:49:28 +0200983 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100984}
985
Joerg Roedel17b124b2011-04-06 18:01:35 +0200986static void domain_flush_pages(struct protection_domain *domain,
987 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100988{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200989 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200990}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200991
Joerg Roedel1c655772008-09-04 18:40:05 +0200992/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200993static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +0200994{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200995 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200996}
997
Chris Wright42a49f92009-06-15 15:42:00 +0200998/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200999static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001000{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001001 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1002}
1003
1004static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001005{
1006 int i;
1007
1008 for (i = 0; i < amd_iommus_present; ++i) {
1009 if (!domain->dev_iommu[i])
1010 continue;
1011
1012 /*
1013 * Devices of this domain are behind this IOMMU
1014 * We need to wait for completion of all commands.
1015 */
1016 iommu_completion_wait(amd_iommus[i]);
1017 }
1018}
1019
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001020
Joerg Roedel43f49602008-12-02 21:01:12 +01001021/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001022 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001023 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001024static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001025{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001026 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001027
1028 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001029 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001030}
1031
Joerg Roedel431b2a22008-07-11 17:14:22 +02001032/****************************************************************************
1033 *
1034 * The functions below are used the create the page table mappings for
1035 * unity mapped regions.
1036 *
1037 ****************************************************************************/
1038
1039/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001040 * This function is used to add another level to an IO page table. Adding
1041 * another level increases the size of the address space by 9 bits to a size up
1042 * to 64 bits.
1043 */
1044static bool increase_address_space(struct protection_domain *domain,
1045 gfp_t gfp)
1046{
1047 u64 *pte;
1048
1049 if (domain->mode == PAGE_MODE_6_LEVEL)
1050 /* address space already 64 bit large */
1051 return false;
1052
1053 pte = (void *)get_zeroed_page(gfp);
1054 if (!pte)
1055 return false;
1056
1057 *pte = PM_LEVEL_PDE(domain->mode,
1058 virt_to_phys(domain->pt_root));
1059 domain->pt_root = pte;
1060 domain->mode += 1;
1061 domain->updated = true;
1062
1063 return true;
1064}
1065
1066static u64 *alloc_pte(struct protection_domain *domain,
1067 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001068 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001069 u64 **pte_page,
1070 gfp_t gfp)
1071{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001072 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001073 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001074
1075 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001076
1077 while (address > PM_LEVEL_SIZE(domain->mode))
1078 increase_address_space(domain, gfp);
1079
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001080 level = domain->mode - 1;
1081 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1082 address = PAGE_SIZE_ALIGN(address, page_size);
1083 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001084
1085 while (level > end_lvl) {
1086 if (!IOMMU_PTE_PRESENT(*pte)) {
1087 page = (u64 *)get_zeroed_page(gfp);
1088 if (!page)
1089 return NULL;
1090 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1091 }
1092
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001093 /* No level skipping support yet */
1094 if (PM_PTE_LEVEL(*pte) != level)
1095 return NULL;
1096
Joerg Roedel308973d2009-11-24 17:43:32 +01001097 level -= 1;
1098
1099 pte = IOMMU_PTE_PAGE(*pte);
1100
1101 if (pte_page && level == end_lvl)
1102 *pte_page = pte;
1103
1104 pte = &pte[PM_LEVEL_INDEX(level, address)];
1105 }
1106
1107 return pte;
1108}
1109
1110/*
1111 * This function checks if there is a PTE for a given dma address. If
1112 * there is one, it returns the pointer to it.
1113 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001114static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001115{
1116 int level;
1117 u64 *pte;
1118
Joerg Roedel24cd7722010-01-19 17:27:39 +01001119 if (address > PM_LEVEL_SIZE(domain->mode))
1120 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001121
Joerg Roedel24cd7722010-01-19 17:27:39 +01001122 level = domain->mode - 1;
1123 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1124
1125 while (level > 0) {
1126
1127 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001128 if (!IOMMU_PTE_PRESENT(*pte))
1129 return NULL;
1130
Joerg Roedel24cd7722010-01-19 17:27:39 +01001131 /* Large PTE */
1132 if (PM_PTE_LEVEL(*pte) == 0x07) {
1133 unsigned long pte_mask, __pte;
1134
1135 /*
1136 * If we have a series of large PTEs, make
1137 * sure to return a pointer to the first one.
1138 */
1139 pte_mask = PTE_PAGE_SIZE(*pte);
1140 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1141 __pte = ((unsigned long)pte) & pte_mask;
1142
1143 return (u64 *)__pte;
1144 }
1145
1146 /* No level skipping support yet */
1147 if (PM_PTE_LEVEL(*pte) != level)
1148 return NULL;
1149
Joerg Roedel308973d2009-11-24 17:43:32 +01001150 level -= 1;
1151
Joerg Roedel24cd7722010-01-19 17:27:39 +01001152 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001153 pte = IOMMU_PTE_PAGE(*pte);
1154 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001155 }
1156
1157 return pte;
1158}
1159
1160/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001161 * Generic mapping functions. It maps a physical address into a DMA
1162 * address space. It allocates the page table pages if necessary.
1163 * In the future it can be extended to a generic mapping function
1164 * supporting all features of AMD IOMMU page tables like level skipping
1165 * and full 64 bit address spaces.
1166 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001167static int iommu_map_page(struct protection_domain *dom,
1168 unsigned long bus_addr,
1169 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001170 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001171 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001172{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001173 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001174 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001175
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001176 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001177 return -EINVAL;
1178
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001179 bus_addr = PAGE_ALIGN(bus_addr);
1180 phys_addr = PAGE_ALIGN(phys_addr);
1181 count = PAGE_SIZE_PTE_COUNT(page_size);
1182 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001183
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001184 for (i = 0; i < count; ++i)
1185 if (IOMMU_PTE_PRESENT(pte[i]))
1186 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001187
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001188 if (page_size > PAGE_SIZE) {
1189 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1190 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1191 } else
1192 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1193
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001194 if (prot & IOMMU_PROT_IR)
1195 __pte |= IOMMU_PTE_IR;
1196 if (prot & IOMMU_PROT_IW)
1197 __pte |= IOMMU_PTE_IW;
1198
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001199 for (i = 0; i < count; ++i)
1200 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001201
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001202 update_domain(dom);
1203
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001204 return 0;
1205}
1206
Joerg Roedel24cd7722010-01-19 17:27:39 +01001207static unsigned long iommu_unmap_page(struct protection_domain *dom,
1208 unsigned long bus_addr,
1209 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001210{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001211 unsigned long long unmap_size, unmapped;
1212 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001213
Joerg Roedel24cd7722010-01-19 17:27:39 +01001214 BUG_ON(!is_power_of_2(page_size));
1215
1216 unmapped = 0;
1217
1218 while (unmapped < page_size) {
1219
1220 pte = fetch_pte(dom, bus_addr);
1221
1222 if (!pte) {
1223 /*
1224 * No PTE for this address
1225 * move forward in 4kb steps
1226 */
1227 unmap_size = PAGE_SIZE;
1228 } else if (PM_PTE_LEVEL(*pte) == 0) {
1229 /* 4kb PTE found for this address */
1230 unmap_size = PAGE_SIZE;
1231 *pte = 0ULL;
1232 } else {
1233 int count, i;
1234
1235 /* Large PTE found which maps this address */
1236 unmap_size = PTE_PAGE_SIZE(*pte);
1237 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1238 for (i = 0; i < count; i++)
1239 pte[i] = 0ULL;
1240 }
1241
1242 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1243 unmapped += unmap_size;
1244 }
1245
1246 BUG_ON(!is_power_of_2(unmapped));
1247
1248 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001249}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001250
Joerg Roedel431b2a22008-07-11 17:14:22 +02001251/*
1252 * This function checks if a specific unity mapping entry is needed for
1253 * this specific IOMMU.
1254 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001255static int iommu_for_unity_map(struct amd_iommu *iommu,
1256 struct unity_map_entry *entry)
1257{
1258 u16 bdf, i;
1259
1260 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1261 bdf = amd_iommu_alias_table[i];
1262 if (amd_iommu_rlookup_table[bdf] == iommu)
1263 return 1;
1264 }
1265
1266 return 0;
1267}
1268
Joerg Roedel431b2a22008-07-11 17:14:22 +02001269/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001270 * This function actually applies the mapping to the page table of the
1271 * dma_ops domain.
1272 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001273static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1274 struct unity_map_entry *e)
1275{
1276 u64 addr;
1277 int ret;
1278
1279 for (addr = e->address_start; addr < e->address_end;
1280 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001281 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001282 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001283 if (ret)
1284 return ret;
1285 /*
1286 * if unity mapping is in aperture range mark the page
1287 * as allocated in the aperture
1288 */
1289 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001290 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001291 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001292 }
1293
1294 return 0;
1295}
1296
Joerg Roedel431b2a22008-07-11 17:14:22 +02001297/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001298 * Init the unity mappings for a specific IOMMU in the system
1299 *
1300 * Basically iterates over all unity mapping entries and applies them to
1301 * the default domain DMA of that IOMMU if necessary.
1302 */
1303static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1304{
1305 struct unity_map_entry *entry;
1306 int ret;
1307
1308 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1309 if (!iommu_for_unity_map(iommu, entry))
1310 continue;
1311 ret = dma_ops_unity_map(iommu->default_dom, entry);
1312 if (ret)
1313 return ret;
1314 }
1315
1316 return 0;
1317}
1318
1319/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001320 * Inits the unity mappings required for a specific device
1321 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001322static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1323 u16 devid)
1324{
1325 struct unity_map_entry *e;
1326 int ret;
1327
1328 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1329 if (!(devid >= e->devid_start && devid <= e->devid_end))
1330 continue;
1331 ret = dma_ops_unity_map(dma_dom, e);
1332 if (ret)
1333 return ret;
1334 }
1335
1336 return 0;
1337}
1338
Joerg Roedel431b2a22008-07-11 17:14:22 +02001339/****************************************************************************
1340 *
1341 * The next functions belong to the address allocator for the dma_ops
1342 * interface functions. They work like the allocators in the other IOMMU
1343 * drivers. Its basically a bitmap which marks the allocated pages in
1344 * the aperture. Maybe it could be enhanced in the future to a more
1345 * efficient allocator.
1346 *
1347 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001348
Joerg Roedel431b2a22008-07-11 17:14:22 +02001349/*
Joerg Roedel384de722009-05-15 12:30:05 +02001350 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001351 *
1352 * called with domain->lock held
1353 */
Joerg Roedel384de722009-05-15 12:30:05 +02001354
Joerg Roedel9cabe892009-05-18 16:38:55 +02001355/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001356 * Used to reserve address ranges in the aperture (e.g. for exclusion
1357 * ranges.
1358 */
1359static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1360 unsigned long start_page,
1361 unsigned int pages)
1362{
1363 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1364
1365 if (start_page + pages > last_page)
1366 pages = last_page - start_page;
1367
1368 for (i = start_page; i < start_page + pages; ++i) {
1369 int index = i / APERTURE_RANGE_PAGES;
1370 int page = i % APERTURE_RANGE_PAGES;
1371 __set_bit(page, dom->aperture[index]->bitmap);
1372 }
1373}
1374
1375/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001376 * This function is used to add a new aperture range to an existing
1377 * aperture in case of dma_ops domain allocation or address allocation
1378 * failure.
1379 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001380static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001381 bool populate, gfp_t gfp)
1382{
1383 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001384 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001385 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001386
Joerg Roedelf5e97052009-05-22 12:31:53 +02001387#ifdef CONFIG_IOMMU_STRESS
1388 populate = false;
1389#endif
1390
Joerg Roedel9cabe892009-05-18 16:38:55 +02001391 if (index >= APERTURE_MAX_RANGES)
1392 return -ENOMEM;
1393
1394 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1395 if (!dma_dom->aperture[index])
1396 return -ENOMEM;
1397
1398 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1399 if (!dma_dom->aperture[index]->bitmap)
1400 goto out_free;
1401
1402 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1403
1404 if (populate) {
1405 unsigned long address = dma_dom->aperture_size;
1406 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1407 u64 *pte, *pte_page;
1408
1409 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001410 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001411 &pte_page, gfp);
1412 if (!pte)
1413 goto out_free;
1414
1415 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1416
1417 address += APERTURE_RANGE_SIZE / 64;
1418 }
1419 }
1420
Joerg Roedel17f5b562011-07-06 17:14:44 +02001421 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001422 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1423
Joerg Roedel17f5b562011-07-06 17:14:44 +02001424 /* Reserve address range used for MSI messages */
1425 if (old_size < MSI_ADDR_BASE_LO &&
1426 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1427 unsigned long spage;
1428 int pages;
1429
1430 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1431 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1432
1433 dma_ops_reserve_addresses(dma_dom, spage, pages);
1434 }
1435
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001436 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001437 for_each_iommu(iommu) {
1438 if (iommu->exclusion_start &&
1439 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1440 && iommu->exclusion_start < dma_dom->aperture_size) {
1441 unsigned long startpage;
1442 int pages = iommu_num_pages(iommu->exclusion_start,
1443 iommu->exclusion_length,
1444 PAGE_SIZE);
1445 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1446 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1447 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001448 }
1449
1450 /*
1451 * Check for areas already mapped as present in the new aperture
1452 * range and mark those pages as reserved in the allocator. Such
1453 * mappings may already exist as a result of requested unity
1454 * mappings for devices.
1455 */
1456 for (i = dma_dom->aperture[index]->offset;
1457 i < dma_dom->aperture_size;
1458 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001459 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001460 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1461 continue;
1462
Joerg Roedelfcd08612011-10-11 17:41:32 +02001463 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001464 }
1465
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001466 update_domain(&dma_dom->domain);
1467
Joerg Roedel9cabe892009-05-18 16:38:55 +02001468 return 0;
1469
1470out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001471 update_domain(&dma_dom->domain);
1472
Joerg Roedel9cabe892009-05-18 16:38:55 +02001473 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1474
1475 kfree(dma_dom->aperture[index]);
1476 dma_dom->aperture[index] = NULL;
1477
1478 return -ENOMEM;
1479}
1480
Joerg Roedel384de722009-05-15 12:30:05 +02001481static unsigned long dma_ops_area_alloc(struct device *dev,
1482 struct dma_ops_domain *dom,
1483 unsigned int pages,
1484 unsigned long align_mask,
1485 u64 dma_mask,
1486 unsigned long start)
1487{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001488 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001489 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1490 int i = start >> APERTURE_RANGE_SHIFT;
1491 unsigned long boundary_size;
1492 unsigned long address = -1;
1493 unsigned long limit;
1494
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001495 next_bit >>= PAGE_SHIFT;
1496
Joerg Roedel384de722009-05-15 12:30:05 +02001497 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1498 PAGE_SIZE) >> PAGE_SHIFT;
1499
1500 for (;i < max_index; ++i) {
1501 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1502
1503 if (dom->aperture[i]->offset >= dma_mask)
1504 break;
1505
1506 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1507 dma_mask >> PAGE_SHIFT);
1508
1509 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1510 limit, next_bit, pages, 0,
1511 boundary_size, align_mask);
1512 if (address != -1) {
1513 address = dom->aperture[i]->offset +
1514 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001515 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001516 break;
1517 }
1518
1519 next_bit = 0;
1520 }
1521
1522 return address;
1523}
1524
Joerg Roedeld3086442008-06-26 21:27:57 +02001525static unsigned long dma_ops_alloc_addresses(struct device *dev,
1526 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001527 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001528 unsigned long align_mask,
1529 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001530{
Joerg Roedeld3086442008-06-26 21:27:57 +02001531 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001532
Joerg Roedelfe16f082009-05-22 12:27:53 +02001533#ifdef CONFIG_IOMMU_STRESS
1534 dom->next_address = 0;
1535 dom->need_flush = true;
1536#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001537
Joerg Roedel384de722009-05-15 12:30:05 +02001538 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001539 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001540
Joerg Roedel1c655772008-09-04 18:40:05 +02001541 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001542 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001543 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1544 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001545 dom->need_flush = true;
1546 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001547
Joerg Roedel384de722009-05-15 12:30:05 +02001548 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001549 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001550
1551 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1552
1553 return address;
1554}
1555
Joerg Roedel431b2a22008-07-11 17:14:22 +02001556/*
1557 * The address free function.
1558 *
1559 * called with domain->lock held
1560 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001561static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1562 unsigned long address,
1563 unsigned int pages)
1564{
Joerg Roedel384de722009-05-15 12:30:05 +02001565 unsigned i = address >> APERTURE_RANGE_SHIFT;
1566 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001567
Joerg Roedel384de722009-05-15 12:30:05 +02001568 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1569
Joerg Roedel47bccd62009-05-22 12:40:54 +02001570#ifdef CONFIG_IOMMU_STRESS
1571 if (i < 4)
1572 return;
1573#endif
1574
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001575 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001576 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001577
1578 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001579
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001580 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001581
Joerg Roedeld3086442008-06-26 21:27:57 +02001582}
1583
Joerg Roedel431b2a22008-07-11 17:14:22 +02001584/****************************************************************************
1585 *
1586 * The next functions belong to the domain allocation. A domain is
1587 * allocated for every IOMMU as the default domain. If device isolation
1588 * is enabled, every device get its own domain. The most important thing
1589 * about domains is the page table mapping the DMA address space they
1590 * contain.
1591 *
1592 ****************************************************************************/
1593
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001594/*
1595 * This function adds a protection domain to the global protection domain list
1596 */
1597static void add_domain_to_list(struct protection_domain *domain)
1598{
1599 unsigned long flags;
1600
1601 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1602 list_add(&domain->list, &amd_iommu_pd_list);
1603 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1604}
1605
1606/*
1607 * This function removes a protection domain to the global
1608 * protection domain list
1609 */
1610static void del_domain_from_list(struct protection_domain *domain)
1611{
1612 unsigned long flags;
1613
1614 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1615 list_del(&domain->list);
1616 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1617}
1618
Joerg Roedelec487d12008-06-26 21:27:58 +02001619static u16 domain_id_alloc(void)
1620{
1621 unsigned long flags;
1622 int id;
1623
1624 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1625 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1626 BUG_ON(id == 0);
1627 if (id > 0 && id < MAX_DOMAIN_ID)
1628 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1629 else
1630 id = 0;
1631 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1632
1633 return id;
1634}
1635
Joerg Roedela2acfb72008-12-02 18:28:53 +01001636static void domain_id_free(int id)
1637{
1638 unsigned long flags;
1639
1640 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1641 if (id > 0 && id < MAX_DOMAIN_ID)
1642 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1643 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1644}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001645
Joerg Roedel86db2e52008-12-02 18:20:21 +01001646static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001647{
1648 int i, j;
1649 u64 *p1, *p2, *p3;
1650
Joerg Roedel86db2e52008-12-02 18:20:21 +01001651 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001652
1653 if (!p1)
1654 return;
1655
1656 for (i = 0; i < 512; ++i) {
1657 if (!IOMMU_PTE_PRESENT(p1[i]))
1658 continue;
1659
1660 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001661 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001662 if (!IOMMU_PTE_PRESENT(p2[j]))
1663 continue;
1664 p3 = IOMMU_PTE_PAGE(p2[j]);
1665 free_page((unsigned long)p3);
1666 }
1667
1668 free_page((unsigned long)p2);
1669 }
1670
1671 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001672
1673 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001674}
1675
Joerg Roedelb16137b2011-11-21 16:50:23 +01001676static void free_gcr3_tbl_level1(u64 *tbl)
1677{
1678 u64 *ptr;
1679 int i;
1680
1681 for (i = 0; i < 512; ++i) {
1682 if (!(tbl[i] & GCR3_VALID))
1683 continue;
1684
1685 ptr = __va(tbl[i] & PAGE_MASK);
1686
1687 free_page((unsigned long)ptr);
1688 }
1689}
1690
1691static void free_gcr3_tbl_level2(u64 *tbl)
1692{
1693 u64 *ptr;
1694 int i;
1695
1696 for (i = 0; i < 512; ++i) {
1697 if (!(tbl[i] & GCR3_VALID))
1698 continue;
1699
1700 ptr = __va(tbl[i] & PAGE_MASK);
1701
1702 free_gcr3_tbl_level1(ptr);
1703 }
1704}
1705
Joerg Roedel52815b72011-11-17 17:24:28 +01001706static void free_gcr3_table(struct protection_domain *domain)
1707{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001708 if (domain->glx == 2)
1709 free_gcr3_tbl_level2(domain->gcr3_tbl);
1710 else if (domain->glx == 1)
1711 free_gcr3_tbl_level1(domain->gcr3_tbl);
1712 else if (domain->glx != 0)
1713 BUG();
1714
Joerg Roedel52815b72011-11-17 17:24:28 +01001715 free_page((unsigned long)domain->gcr3_tbl);
1716}
1717
Joerg Roedel431b2a22008-07-11 17:14:22 +02001718/*
1719 * Free a domain, only used if something went wrong in the
1720 * allocation path and we need to free an already allocated page table
1721 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001722static void dma_ops_domain_free(struct dma_ops_domain *dom)
1723{
Joerg Roedel384de722009-05-15 12:30:05 +02001724 int i;
1725
Joerg Roedelec487d12008-06-26 21:27:58 +02001726 if (!dom)
1727 return;
1728
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001729 del_domain_from_list(&dom->domain);
1730
Joerg Roedel86db2e52008-12-02 18:20:21 +01001731 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001732
Joerg Roedel384de722009-05-15 12:30:05 +02001733 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1734 if (!dom->aperture[i])
1735 continue;
1736 free_page((unsigned long)dom->aperture[i]->bitmap);
1737 kfree(dom->aperture[i]);
1738 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001739
1740 kfree(dom);
1741}
1742
Joerg Roedel431b2a22008-07-11 17:14:22 +02001743/*
1744 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001745 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001746 * structures required for the dma_ops interface
1747 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001748static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001749{
1750 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001751
1752 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1753 if (!dma_dom)
1754 return NULL;
1755
1756 spin_lock_init(&dma_dom->domain.lock);
1757
1758 dma_dom->domain.id = domain_id_alloc();
1759 if (dma_dom->domain.id == 0)
1760 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001761 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001762 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001763 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001764 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001765 dma_dom->domain.priv = dma_dom;
1766 if (!dma_dom->domain.pt_root)
1767 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001768
Joerg Roedel1c655772008-09-04 18:40:05 +02001769 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001770 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001771
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001772 add_domain_to_list(&dma_dom->domain);
1773
Joerg Roedel576175c2009-11-23 19:08:46 +01001774 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001775 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001776
Joerg Roedel431b2a22008-07-11 17:14:22 +02001777 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001778 * mark the first page as allocated so we never return 0 as
1779 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001780 */
Joerg Roedel384de722009-05-15 12:30:05 +02001781 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001782 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001783
Joerg Roedelec487d12008-06-26 21:27:58 +02001784
1785 return dma_dom;
1786
1787free_dma_dom:
1788 dma_ops_domain_free(dma_dom);
1789
1790 return NULL;
1791}
1792
Joerg Roedel431b2a22008-07-11 17:14:22 +02001793/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001794 * little helper function to check whether a given protection domain is a
1795 * dma_ops domain
1796 */
1797static bool dma_ops_domain(struct protection_domain *domain)
1798{
1799 return domain->flags & PD_DMA_OPS_MASK;
1800}
1801
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001802static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001803{
Joerg Roedel132bd682011-11-17 14:18:46 +01001804 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001805 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001806
Joerg Roedel132bd682011-11-17 14:18:46 +01001807 if (domain->mode != PAGE_MODE_NONE)
1808 pte_root = virt_to_phys(domain->pt_root);
1809
Joerg Roedel38ddf412008-09-11 10:38:32 +02001810 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1811 << DEV_ENTRY_MODE_SHIFT;
1812 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001813
Joerg Roedelee6c2862011-11-09 12:06:03 +01001814 flags = amd_iommu_dev_table[devid].data[1];
1815
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001816 if (ats)
1817 flags |= DTE_FLAG_IOTLB;
1818
Joerg Roedel52815b72011-11-17 17:24:28 +01001819 if (domain->flags & PD_IOMMUV2_MASK) {
1820 u64 gcr3 = __pa(domain->gcr3_tbl);
1821 u64 glx = domain->glx;
1822 u64 tmp;
1823
1824 pte_root |= DTE_FLAG_GV;
1825 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1826
1827 /* First mask out possible old values for GCR3 table */
1828 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1829 flags &= ~tmp;
1830
1831 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1832 flags &= ~tmp;
1833
1834 /* Encode GCR3 table into DTE */
1835 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1836 pte_root |= tmp;
1837
1838 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1839 flags |= tmp;
1840
1841 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1842 flags |= tmp;
1843 }
1844
Joerg Roedelee6c2862011-11-09 12:06:03 +01001845 flags &= ~(0xffffUL);
1846 flags |= domain->id;
1847
1848 amd_iommu_dev_table[devid].data[1] = flags;
1849 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001850}
1851
Joerg Roedel15898bb2009-11-24 15:39:42 +01001852static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001853{
Joerg Roedel355bf552008-12-08 12:02:41 +01001854 /* remove entry from the device table seen by the hardware */
1855 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1856 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001857
Joerg Roedelc5cca142009-10-09 18:31:20 +02001858 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001859}
1860
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001861static void do_attach(struct iommu_dev_data *dev_data,
1862 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001863{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001864 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001865 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001866
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001867 iommu = amd_iommu_rlookup_table[dev_data->devid];
1868 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001869
1870 /* Update data structures */
1871 dev_data->domain = domain;
1872 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001873 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001874
1875 /* Do reference counting */
1876 domain->dev_iommu[iommu->index] += 1;
1877 domain->dev_cnt += 1;
1878
1879 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001880 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001881}
1882
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001883static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001884{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001885 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001886
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001887 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001888
Joerg Roedelc4596112009-11-20 14:57:32 +01001889 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001890 dev_data->domain->dev_iommu[iommu->index] -= 1;
1891 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001892
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001893 /* Update data structures */
1894 dev_data->domain = NULL;
1895 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001896 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001897
1898 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001899 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001900}
1901
1902/*
1903 * If a device is not yet associated with a domain, this function does
1904 * assigns it visible for the hardware
1905 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001906static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001907 struct protection_domain *domain)
1908{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001909 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001910
Joerg Roedel15898bb2009-11-24 15:39:42 +01001911 /* lock domain */
1912 spin_lock(&domain->lock);
1913
Joerg Roedel71f77582011-06-09 19:03:15 +02001914 if (dev_data->alias_data != NULL) {
1915 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001916
Joerg Roedel2b02b092011-06-09 17:48:39 +02001917 /* Some sanity checks */
1918 ret = -EBUSY;
1919 if (alias_data->domain != NULL &&
1920 alias_data->domain != domain)
1921 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001922
Joerg Roedel2b02b092011-06-09 17:48:39 +02001923 if (dev_data->domain != NULL &&
1924 dev_data->domain != domain)
1925 goto out_unlock;
1926
1927 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001928 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001929 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001930
1931 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001932 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001933
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001934 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001935 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001936
Joerg Roedel24100052009-11-25 15:59:57 +01001937 atomic_inc(&dev_data->bind);
1938
Julia Lawall84fe6c12010-05-27 12:31:51 +02001939 ret = 0;
1940
1941out_unlock:
1942
Joerg Roedel355bf552008-12-08 12:02:41 +01001943 /* ready */
1944 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001945
Julia Lawall84fe6c12010-05-27 12:31:51 +02001946 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001947}
1948
Joerg Roedel52815b72011-11-17 17:24:28 +01001949
1950static void pdev_iommuv2_disable(struct pci_dev *pdev)
1951{
1952 pci_disable_ats(pdev);
1953 pci_disable_pri(pdev);
1954 pci_disable_pasid(pdev);
1955}
1956
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001957/* FIXME: Change generic reset-function to do the same */
1958static int pri_reset_while_enabled(struct pci_dev *pdev)
1959{
1960 u16 control;
1961 int pos;
1962
1963 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
1964 if (!pos)
1965 return -EINVAL;
1966
1967 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
1968 control |= PCI_PRI_RESET;
1969 pci_write_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, control);
1970
1971 return 0;
1972}
1973
Joerg Roedel52815b72011-11-17 17:24:28 +01001974static int pdev_iommuv2_enable(struct pci_dev *pdev)
1975{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001976 bool reset_enable;
1977 int reqs, ret;
1978
1979 /* FIXME: Hardcode number of outstanding requests for now */
1980 reqs = 32;
1981 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
1982 reqs = 1;
1983 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01001984
1985 /* Only allow access to user-accessible pages */
1986 ret = pci_enable_pasid(pdev, 0);
1987 if (ret)
1988 goto out_err;
1989
1990 /* First reset the PRI state of the device */
1991 ret = pci_reset_pri(pdev);
1992 if (ret)
1993 goto out_err;
1994
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001995 /* Enable PRI */
1996 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01001997 if (ret)
1998 goto out_err;
1999
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002000 if (reset_enable) {
2001 ret = pri_reset_while_enabled(pdev);
2002 if (ret)
2003 goto out_err;
2004 }
2005
Joerg Roedel52815b72011-11-17 17:24:28 +01002006 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2007 if (ret)
2008 goto out_err;
2009
2010 return 0;
2011
2012out_err:
2013 pci_disable_pri(pdev);
2014 pci_disable_pasid(pdev);
2015
2016 return ret;
2017}
2018
Joerg Roedelc99afa22011-11-21 18:19:25 +01002019/* FIXME: Move this to PCI code */
2020#define PCI_PRI_TLP_OFF (1 << 2)
2021
2022bool pci_pri_tlp_required(struct pci_dev *pdev)
2023{
2024 u16 control;
2025 int pos;
2026
2027 pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
2028 if (!pos)
2029 return false;
2030
2031 pci_read_config_word(pdev, pos + PCI_PRI_CONTROL_OFF, &control);
2032
2033 return (control & PCI_PRI_TLP_OFF) ? true : false;
2034}
2035
Joerg Roedel15898bb2009-11-24 15:39:42 +01002036/*
2037 * If a device is not yet associated with a domain, this function does
2038 * assigns it visible for the hardware
2039 */
2040static int attach_device(struct device *dev,
2041 struct protection_domain *domain)
2042{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002043 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002044 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002045 unsigned long flags;
2046 int ret;
2047
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002048 dev_data = get_dev_data(dev);
2049
Joerg Roedel52815b72011-11-17 17:24:28 +01002050 if (domain->flags & PD_IOMMUV2_MASK) {
2051 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2052 return -EINVAL;
2053
2054 if (pdev_iommuv2_enable(pdev) != 0)
2055 return -EINVAL;
2056
2057 dev_data->ats.enabled = true;
2058 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002059 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002060 } else if (amd_iommu_iotlb_sup &&
2061 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002062 dev_data->ats.enabled = true;
2063 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2064 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002065
Joerg Roedel15898bb2009-11-24 15:39:42 +01002066 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002067 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002068 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2069
2070 /*
2071 * We might boot into a crash-kernel here. The crashed kernel
2072 * left the caches in the IOMMU dirty. So we have to flush
2073 * here to evict all dirty stuff.
2074 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002075 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002076
2077 return ret;
2078}
2079
2080/*
2081 * Removes a device from a protection domain (unlocked)
2082 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002083static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002084{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002085 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002086 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002087
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002088 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002089
Joerg Roedel2ca76272010-01-22 16:45:31 +01002090 domain = dev_data->domain;
2091
2092 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002093
Joerg Roedel71f77582011-06-09 19:03:15 +02002094 if (dev_data->alias_data != NULL) {
2095 struct iommu_dev_data *alias_data = dev_data->alias_data;
2096
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002097 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002098 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002099 }
2100
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002101 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002102 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002103
Joerg Roedel2ca76272010-01-22 16:45:31 +01002104 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002105
Joerg Roedel21129f72009-09-01 11:59:42 +02002106 /*
2107 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002108 * passthrough domain if it is detached from any other domain.
2109 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002110 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002111 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002112 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002113 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002114}
2115
2116/*
2117 * Removes a device from a protection domain (with devtable_lock held)
2118 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002119static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002120{
Joerg Roedel52815b72011-11-17 17:24:28 +01002121 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002122 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002123 unsigned long flags;
2124
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002125 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002126 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002127
Joerg Roedel355bf552008-12-08 12:02:41 +01002128 /* lock device table */
2129 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002130 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002131 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002132
Joerg Roedel52815b72011-11-17 17:24:28 +01002133 if (domain->flags & PD_IOMMUV2_MASK)
2134 pdev_iommuv2_disable(to_pci_dev(dev));
2135 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002136 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002137
2138 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002139}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002140
Joerg Roedel15898bb2009-11-24 15:39:42 +01002141/*
2142 * Find out the protection domain structure for a given PCI device. This
2143 * will give us the pointer to the page table root for example.
2144 */
2145static struct protection_domain *domain_for_device(struct device *dev)
2146{
Joerg Roedel71f77582011-06-09 19:03:15 +02002147 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002148 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002149 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002150
Joerg Roedel657cbb62009-11-23 15:26:46 +01002151 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002152
Joerg Roedel2b02b092011-06-09 17:48:39 +02002153 if (dev_data->domain)
2154 return dev_data->domain;
2155
Joerg Roedel71f77582011-06-09 19:03:15 +02002156 if (dev_data->alias_data != NULL) {
2157 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002158
2159 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2160 if (alias_data->domain != NULL) {
2161 __attach_device(dev_data, alias_data->domain);
2162 dom = alias_data->domain;
2163 }
2164 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002165 }
2166
Joerg Roedel15898bb2009-11-24 15:39:42 +01002167 return dom;
2168}
2169
Joerg Roedele275a2a2008-12-10 18:27:25 +01002170static int device_change_notifier(struct notifier_block *nb,
2171 unsigned long action, void *data)
2172{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002173 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002174 struct protection_domain *domain;
2175 struct iommu_dev_data *dev_data;
2176 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002177 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002178 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002179 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002180
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002181 if (!check_device(dev))
2182 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002183
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002184 devid = get_device_id(dev);
2185 iommu = amd_iommu_rlookup_table[devid];
2186 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002187
2188 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002189 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002190
2191 domain = domain_for_device(dev);
2192
Joerg Roedele275a2a2008-12-10 18:27:25 +01002193 if (!domain)
2194 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002195 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002196 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002197 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002198 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002199 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002200
2201 iommu_init_device(dev);
2202
2203 domain = domain_for_device(dev);
2204
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002205 /* allocate a protection domain if a device is added */
2206 dma_domain = find_protection_domain(devid);
2207 if (dma_domain)
2208 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002209 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002210 if (!dma_domain)
2211 goto out;
2212 dma_domain->target_dev = devid;
2213
2214 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2215 list_add_tail(&dma_domain->list, &iommu_pd_list);
2216 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2217
2218 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002219 case BUS_NOTIFY_DEL_DEVICE:
2220
2221 iommu_uninit_device(dev);
2222
Joerg Roedele275a2a2008-12-10 18:27:25 +01002223 default:
2224 goto out;
2225 }
2226
Joerg Roedele275a2a2008-12-10 18:27:25 +01002227 iommu_completion_wait(iommu);
2228
2229out:
2230 return 0;
2231}
2232
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302233static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002234 .notifier_call = device_change_notifier,
2235};
Joerg Roedel355bf552008-12-08 12:02:41 +01002236
Joerg Roedel8638c492009-12-10 11:12:25 +01002237void amd_iommu_init_notifier(void)
2238{
2239 bus_register_notifier(&pci_bus_type, &device_nb);
2240}
2241
Joerg Roedel431b2a22008-07-11 17:14:22 +02002242/*****************************************************************************
2243 *
2244 * The next functions belong to the dma_ops mapping/unmapping code.
2245 *
2246 *****************************************************************************/
2247
2248/*
2249 * In the dma_ops path we only have the struct device. This function
2250 * finds the corresponding IOMMU, the protection domain and the
2251 * requestor id for a given device.
2252 * If the device is not yet associated with a domain this is also done
2253 * in this function.
2254 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002255static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002256{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002257 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002258 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002259 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002260
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002261 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002262 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002263
Joerg Roedel94f6d192009-11-24 16:40:02 +01002264 domain = domain_for_device(dev);
2265 if (domain != NULL && !dma_ops_domain(domain))
2266 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002267
Joerg Roedel94f6d192009-11-24 16:40:02 +01002268 if (domain != NULL)
2269 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002270
Joerg Roedel15898bb2009-11-24 15:39:42 +01002271 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002272 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002273 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002274 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2275 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002276 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002277 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002278
Joerg Roedel94f6d192009-11-24 16:40:02 +01002279 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002280}
2281
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002282static void update_device_table(struct protection_domain *domain)
2283{
Joerg Roedel492667d2009-11-27 13:25:47 +01002284 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002285
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002286 list_for_each_entry(dev_data, &domain->dev_list, list)
2287 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002288}
2289
2290static void update_domain(struct protection_domain *domain)
2291{
2292 if (!domain->updated)
2293 return;
2294
2295 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002296
2297 domain_flush_devices(domain);
2298 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002299
2300 domain->updated = false;
2301}
2302
Joerg Roedel431b2a22008-07-11 17:14:22 +02002303/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002304 * This function fetches the PTE for a given address in the aperture
2305 */
2306static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2307 unsigned long address)
2308{
Joerg Roedel384de722009-05-15 12:30:05 +02002309 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002310 u64 *pte, *pte_page;
2311
Joerg Roedel384de722009-05-15 12:30:05 +02002312 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2313 if (!aperture)
2314 return NULL;
2315
2316 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002317 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002318 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002319 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002320 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2321 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002322 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002323
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002324 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002325
2326 return pte;
2327}
2328
2329/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002330 * This is the generic map function. It maps one 4kb page at paddr to
2331 * the given address in the DMA address space for the domain.
2332 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002333static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002334 unsigned long address,
2335 phys_addr_t paddr,
2336 int direction)
2337{
2338 u64 *pte, __pte;
2339
2340 WARN_ON(address > dom->aperture_size);
2341
2342 paddr &= PAGE_MASK;
2343
Joerg Roedel8bda3092009-05-12 12:02:46 +02002344 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002345 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002346 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002347
2348 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2349
2350 if (direction == DMA_TO_DEVICE)
2351 __pte |= IOMMU_PTE_IR;
2352 else if (direction == DMA_FROM_DEVICE)
2353 __pte |= IOMMU_PTE_IW;
2354 else if (direction == DMA_BIDIRECTIONAL)
2355 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2356
2357 WARN_ON(*pte);
2358
2359 *pte = __pte;
2360
2361 return (dma_addr_t)address;
2362}
2363
Joerg Roedel431b2a22008-07-11 17:14:22 +02002364/*
2365 * The generic unmapping function for on page in the DMA address space.
2366 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002367static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002368 unsigned long address)
2369{
Joerg Roedel384de722009-05-15 12:30:05 +02002370 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002371 u64 *pte;
2372
2373 if (address >= dom->aperture_size)
2374 return;
2375
Joerg Roedel384de722009-05-15 12:30:05 +02002376 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2377 if (!aperture)
2378 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002379
Joerg Roedel384de722009-05-15 12:30:05 +02002380 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2381 if (!pte)
2382 return;
2383
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002384 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002385
2386 WARN_ON(!*pte);
2387
2388 *pte = 0ULL;
2389}
2390
Joerg Roedel431b2a22008-07-11 17:14:22 +02002391/*
2392 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002393 * contiguous memory region into DMA address space. It is used by all
2394 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002395 * Must be called with the domain lock held.
2396 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002397static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002398 struct dma_ops_domain *dma_dom,
2399 phys_addr_t paddr,
2400 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002401 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002402 bool align,
2403 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002404{
2405 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002406 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002407 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002408 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002409 int i;
2410
Joerg Roedele3c449f2008-10-15 22:02:11 -07002411 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002412 paddr &= PAGE_MASK;
2413
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002414 INC_STATS_COUNTER(total_map_requests);
2415
Joerg Roedelc1858972008-12-12 15:42:39 +01002416 if (pages > 1)
2417 INC_STATS_COUNTER(cross_page);
2418
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002419 if (align)
2420 align_mask = (1UL << get_order(size)) - 1;
2421
Joerg Roedel11b83882009-05-19 10:23:15 +02002422retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002423 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2424 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002425 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002426 /*
2427 * setting next_address here will let the address
2428 * allocator only scan the new allocated range in the
2429 * first run. This is a small optimization.
2430 */
2431 dma_dom->next_address = dma_dom->aperture_size;
2432
Joerg Roedel576175c2009-11-23 19:08:46 +01002433 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002434 goto out;
2435
2436 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002437 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002438 * allocation again
2439 */
2440 goto retry;
2441 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002442
2443 start = address;
2444 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002445 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002446 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002447 goto out_unmap;
2448
Joerg Roedelcb76c322008-06-26 21:28:00 +02002449 paddr += PAGE_SIZE;
2450 start += PAGE_SIZE;
2451 }
2452 address += offset;
2453
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002454 ADD_STATS_COUNTER(alloced_io_mem, size);
2455
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002456 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002457 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002458 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002459 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002460 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002461
Joerg Roedelcb76c322008-06-26 21:28:00 +02002462out:
2463 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002464
2465out_unmap:
2466
2467 for (--i; i >= 0; --i) {
2468 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002469 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002470 }
2471
2472 dma_ops_free_addresses(dma_dom, address, pages);
2473
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002474 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002475}
2476
Joerg Roedel431b2a22008-07-11 17:14:22 +02002477/*
2478 * Does the reverse of the __map_single function. Must be called with
2479 * the domain lock held too
2480 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002481static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002482 dma_addr_t dma_addr,
2483 size_t size,
2484 int dir)
2485{
Joerg Roedel04e04632010-09-23 16:12:48 +02002486 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002487 dma_addr_t i, start;
2488 unsigned int pages;
2489
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002490 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002491 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002492 return;
2493
Joerg Roedel04e04632010-09-23 16:12:48 +02002494 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002495 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002496 dma_addr &= PAGE_MASK;
2497 start = dma_addr;
2498
2499 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002500 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002501 start += PAGE_SIZE;
2502 }
2503
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002504 SUB_STATS_COUNTER(alloced_io_mem, size);
2505
Joerg Roedelcb76c322008-06-26 21:28:00 +02002506 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002507
Joerg Roedel80be3082008-11-06 14:59:05 +01002508 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002509 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002510 dma_dom->need_flush = false;
2511 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002512}
2513
Joerg Roedel431b2a22008-07-11 17:14:22 +02002514/*
2515 * The exported map_single function for dma_ops.
2516 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002517static dma_addr_t map_page(struct device *dev, struct page *page,
2518 unsigned long offset, size_t size,
2519 enum dma_data_direction dir,
2520 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002521{
2522 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002523 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002524 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002525 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002526 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002527
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002528 INC_STATS_COUNTER(cnt_map_single);
2529
Joerg Roedel94f6d192009-11-24 16:40:02 +01002530 domain = get_domain(dev);
2531 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002532 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002533 else if (IS_ERR(domain))
2534 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002535
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002536 dma_mask = *dev->dma_mask;
2537
Joerg Roedel4da70b92008-06-26 21:28:01 +02002538 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002539
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002540 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002541 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002542 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002543 goto out;
2544
Joerg Roedel17b124b2011-04-06 18:01:35 +02002545 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002546
2547out:
2548 spin_unlock_irqrestore(&domain->lock, flags);
2549
2550 return addr;
2551}
2552
Joerg Roedel431b2a22008-07-11 17:14:22 +02002553/*
2554 * The exported unmap_single function for dma_ops.
2555 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002556static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2557 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002558{
2559 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002560 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002561
Joerg Roedel146a6912008-12-12 15:07:12 +01002562 INC_STATS_COUNTER(cnt_unmap_single);
2563
Joerg Roedel94f6d192009-11-24 16:40:02 +01002564 domain = get_domain(dev);
2565 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002566 return;
2567
Joerg Roedel4da70b92008-06-26 21:28:01 +02002568 spin_lock_irqsave(&domain->lock, flags);
2569
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002570 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002571
Joerg Roedel17b124b2011-04-06 18:01:35 +02002572 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002573
2574 spin_unlock_irqrestore(&domain->lock, flags);
2575}
2576
Joerg Roedel431b2a22008-07-11 17:14:22 +02002577/*
2578 * This is a special map_sg function which is used if we should map a
2579 * device which is not handled by an AMD IOMMU in the system.
2580 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002581static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2582 int nelems, int dir)
2583{
2584 struct scatterlist *s;
2585 int i;
2586
2587 for_each_sg(sglist, s, nelems, i) {
2588 s->dma_address = (dma_addr_t)sg_phys(s);
2589 s->dma_length = s->length;
2590 }
2591
2592 return nelems;
2593}
2594
Joerg Roedel431b2a22008-07-11 17:14:22 +02002595/*
2596 * The exported map_sg function for dma_ops (handles scatter-gather
2597 * lists).
2598 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002599static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002600 int nelems, enum dma_data_direction dir,
2601 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002602{
2603 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002604 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002605 int i;
2606 struct scatterlist *s;
2607 phys_addr_t paddr;
2608 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002609 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002610
Joerg Roedeld03f0672008-12-12 15:09:48 +01002611 INC_STATS_COUNTER(cnt_map_sg);
2612
Joerg Roedel94f6d192009-11-24 16:40:02 +01002613 domain = get_domain(dev);
2614 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002615 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002616 else if (IS_ERR(domain))
2617 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002618
Joerg Roedel832a90c2008-09-18 15:54:23 +02002619 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002620
Joerg Roedel65b050a2008-06-26 21:28:02 +02002621 spin_lock_irqsave(&domain->lock, flags);
2622
2623 for_each_sg(sglist, s, nelems, i) {
2624 paddr = sg_phys(s);
2625
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002626 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002627 paddr, s->length, dir, false,
2628 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002629
2630 if (s->dma_address) {
2631 s->dma_length = s->length;
2632 mapped_elems++;
2633 } else
2634 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002635 }
2636
Joerg Roedel17b124b2011-04-06 18:01:35 +02002637 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002638
2639out:
2640 spin_unlock_irqrestore(&domain->lock, flags);
2641
2642 return mapped_elems;
2643unmap:
2644 for_each_sg(sglist, s, mapped_elems, i) {
2645 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002646 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002647 s->dma_length, dir);
2648 s->dma_address = s->dma_length = 0;
2649 }
2650
2651 mapped_elems = 0;
2652
2653 goto out;
2654}
2655
Joerg Roedel431b2a22008-07-11 17:14:22 +02002656/*
2657 * The exported map_sg function for dma_ops (handles scatter-gather
2658 * lists).
2659 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002660static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002661 int nelems, enum dma_data_direction dir,
2662 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002663{
2664 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002665 struct protection_domain *domain;
2666 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002667 int i;
2668
Joerg Roedel55877a62008-12-12 15:12:14 +01002669 INC_STATS_COUNTER(cnt_unmap_sg);
2670
Joerg Roedel94f6d192009-11-24 16:40:02 +01002671 domain = get_domain(dev);
2672 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002673 return;
2674
Joerg Roedel65b050a2008-06-26 21:28:02 +02002675 spin_lock_irqsave(&domain->lock, flags);
2676
2677 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002678 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002679 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002680 s->dma_address = s->dma_length = 0;
2681 }
2682
Joerg Roedel17b124b2011-04-06 18:01:35 +02002683 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002684
2685 spin_unlock_irqrestore(&domain->lock, flags);
2686}
2687
Joerg Roedel431b2a22008-07-11 17:14:22 +02002688/*
2689 * The exported alloc_coherent function for dma_ops.
2690 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002691static void *alloc_coherent(struct device *dev, size_t size,
2692 dma_addr_t *dma_addr, gfp_t flag)
2693{
2694 unsigned long flags;
2695 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002696 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002697 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002698 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002699
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002700 INC_STATS_COUNTER(cnt_alloc_coherent);
2701
Joerg Roedel94f6d192009-11-24 16:40:02 +01002702 domain = get_domain(dev);
2703 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002704 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2705 *dma_addr = __pa(virt_addr);
2706 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002707 } else if (IS_ERR(domain))
2708 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002709
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002710 dma_mask = dev->coherent_dma_mask;
2711 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2712 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002713
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002714 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2715 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302716 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002717
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002718 paddr = virt_to_phys(virt_addr);
2719
Joerg Roedel832a90c2008-09-18 15:54:23 +02002720 if (!dma_mask)
2721 dma_mask = *dev->dma_mask;
2722
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002723 spin_lock_irqsave(&domain->lock, flags);
2724
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002725 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002726 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002727
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002728 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002729 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002730 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002731 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002732
Joerg Roedel17b124b2011-04-06 18:01:35 +02002733 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002734
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002735 spin_unlock_irqrestore(&domain->lock, flags);
2736
2737 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002738
2739out_free:
2740
2741 free_pages((unsigned long)virt_addr, get_order(size));
2742
2743 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002744}
2745
Joerg Roedel431b2a22008-07-11 17:14:22 +02002746/*
2747 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002748 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002749static void free_coherent(struct device *dev, size_t size,
2750 void *virt_addr, dma_addr_t dma_addr)
2751{
2752 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002753 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002754
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002755 INC_STATS_COUNTER(cnt_free_coherent);
2756
Joerg Roedel94f6d192009-11-24 16:40:02 +01002757 domain = get_domain(dev);
2758 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002759 goto free_mem;
2760
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002761 spin_lock_irqsave(&domain->lock, flags);
2762
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002763 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002764
Joerg Roedel17b124b2011-04-06 18:01:35 +02002765 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002766
2767 spin_unlock_irqrestore(&domain->lock, flags);
2768
2769free_mem:
2770 free_pages((unsigned long)virt_addr, get_order(size));
2771}
2772
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002773/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002774 * This function is called by the DMA layer to find out if we can handle a
2775 * particular device. It is part of the dma_ops.
2776 */
2777static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2778{
Joerg Roedel420aef82009-11-23 16:14:57 +01002779 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002780}
2781
2782/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002783 * The function for pre-allocating protection domains.
2784 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002785 * If the driver core informs the DMA layer if a driver grabs a device
2786 * we don't need to preallocate the protection domains anymore.
2787 * For now we have to.
2788 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05302789static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002790{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002791 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002792 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002793 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002794 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002795
Chris Wrightd18c69d2010-04-02 18:27:55 -07002796 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002797
2798 /* Do we handle this device? */
2799 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002800 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002801
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002802 dev_data = get_dev_data(&dev->dev);
2803 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2804 /* Make sure passthrough domain is allocated */
2805 alloc_passthrough_domain();
2806 dev_data->passthrough = true;
2807 attach_device(&dev->dev, pt_domain);
2808 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2809 dev_name(&dev->dev));
2810 }
2811
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002812 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002813 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002814 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002815
2816 devid = get_device_id(&dev->dev);
2817
Joerg Roedel87a64d52009-11-24 17:26:43 +01002818 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002819 if (!dma_dom)
2820 continue;
2821 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002822 dma_dom->target_dev = devid;
2823
Joerg Roedel15898bb2009-11-24 15:39:42 +01002824 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002825
Joerg Roedelbd60b732008-09-11 10:24:48 +02002826 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002827 }
2828}
2829
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002830static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002831 .alloc_coherent = alloc_coherent,
2832 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002833 .map_page = map_page,
2834 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002835 .map_sg = map_sg,
2836 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002837 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002838};
2839
Joerg Roedel27c21272011-05-30 15:56:24 +02002840static unsigned device_dma_ops_init(void)
2841{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002842 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002843 struct pci_dev *pdev = NULL;
2844 unsigned unhandled = 0;
2845
2846 for_each_pci_dev(pdev) {
2847 if (!check_device(&pdev->dev)) {
2848 unhandled += 1;
2849 continue;
2850 }
2851
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002852 dev_data = get_dev_data(&pdev->dev);
2853
2854 if (!dev_data->passthrough)
2855 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2856 else
2857 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002858 }
2859
2860 return unhandled;
2861}
2862
Joerg Roedel431b2a22008-07-11 17:14:22 +02002863/*
2864 * The function which clues the AMD IOMMU driver into dma_ops.
2865 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002866
2867void __init amd_iommu_init_api(void)
2868{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002869 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002870}
2871
Joerg Roedel6631ee92008-06-26 21:28:05 +02002872int __init amd_iommu_init_dma_ops(void)
2873{
2874 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002875 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002876
Joerg Roedel431b2a22008-07-11 17:14:22 +02002877 /*
2878 * first allocate a default protection domain for every IOMMU we
2879 * found in the system. Devices not assigned to any other
2880 * protection domain will be assigned to the default one.
2881 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002882 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002883 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002884 if (iommu->default_dom == NULL)
2885 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002886 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002887 ret = iommu_init_unity_mappings(iommu);
2888 if (ret)
2889 goto free_domains;
2890 }
2891
Joerg Roedel431b2a22008-07-11 17:14:22 +02002892 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002893 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002894 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002895 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002896
2897 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002898 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002899
Joerg Roedel431b2a22008-07-11 17:14:22 +02002900 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002901 unhandled = device_dma_ops_init();
2902 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2903 /* There are unhandled devices - initialize swiotlb for them */
2904 swiotlb = 1;
2905 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002906
Joerg Roedel7f265082008-12-12 13:50:21 +01002907 amd_iommu_stats_init();
2908
Joerg Roedel6631ee92008-06-26 21:28:05 +02002909 return 0;
2910
2911free_domains:
2912
Joerg Roedel3bd22172009-05-04 15:06:20 +02002913 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002914 if (iommu->default_dom)
2915 dma_ops_domain_free(iommu->default_dom);
2916 }
2917
2918 return ret;
2919}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002920
2921/*****************************************************************************
2922 *
2923 * The following functions belong to the exported interface of AMD IOMMU
2924 *
2925 * This interface allows access to lower level functions of the IOMMU
2926 * like protection domain handling and assignement of devices to domains
2927 * which is not possible with the dma_ops interface.
2928 *
2929 *****************************************************************************/
2930
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002931static void cleanup_domain(struct protection_domain *domain)
2932{
Joerg Roedel492667d2009-11-27 13:25:47 +01002933 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002934 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002935
2936 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2937
Joerg Roedel492667d2009-11-27 13:25:47 +01002938 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002939 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01002940 atomic_set(&dev_data->bind, 0);
2941 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002942
2943 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2944}
2945
Joerg Roedel26508152009-08-26 16:52:40 +02002946static void protection_domain_free(struct protection_domain *domain)
2947{
2948 if (!domain)
2949 return;
2950
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002951 del_domain_from_list(domain);
2952
Joerg Roedel26508152009-08-26 16:52:40 +02002953 if (domain->id)
2954 domain_id_free(domain->id);
2955
2956 kfree(domain);
2957}
2958
2959static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002960{
2961 struct protection_domain *domain;
2962
2963 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2964 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002965 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002966
2967 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002968 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002969 domain->id = domain_id_alloc();
2970 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002971 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002972 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02002973
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002974 add_domain_to_list(domain);
2975
Joerg Roedel26508152009-08-26 16:52:40 +02002976 return domain;
2977
2978out_err:
2979 kfree(domain);
2980
2981 return NULL;
2982}
2983
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002984static int __init alloc_passthrough_domain(void)
2985{
2986 if (pt_domain != NULL)
2987 return 0;
2988
2989 /* allocate passthrough domain */
2990 pt_domain = protection_domain_alloc();
2991 if (!pt_domain)
2992 return -ENOMEM;
2993
2994 pt_domain->mode = PAGE_MODE_NONE;
2995
2996 return 0;
2997}
Joerg Roedel26508152009-08-26 16:52:40 +02002998static int amd_iommu_domain_init(struct iommu_domain *dom)
2999{
3000 struct protection_domain *domain;
3001
3002 domain = protection_domain_alloc();
3003 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003004 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003005
3006 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003007 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3008 if (!domain->pt_root)
3009 goto out_free;
3010
Joerg Roedelf3572db2011-11-23 12:36:25 +01003011 domain->iommu_domain = dom;
3012
Joerg Roedelc156e342008-12-02 18:13:27 +01003013 dom->priv = domain;
3014
3015 return 0;
3016
3017out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003018 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003019
3020 return -ENOMEM;
3021}
3022
Joerg Roedel98383fc2008-12-02 18:34:12 +01003023static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3024{
3025 struct protection_domain *domain = dom->priv;
3026
3027 if (!domain)
3028 return;
3029
3030 if (domain->dev_cnt > 0)
3031 cleanup_domain(domain);
3032
3033 BUG_ON(domain->dev_cnt != 0);
3034
Joerg Roedel132bd682011-11-17 14:18:46 +01003035 if (domain->mode != PAGE_MODE_NONE)
3036 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003037
Joerg Roedel52815b72011-11-17 17:24:28 +01003038 if (domain->flags & PD_IOMMUV2_MASK)
3039 free_gcr3_table(domain);
3040
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003041 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003042
3043 dom->priv = NULL;
3044}
3045
Joerg Roedel684f2882008-12-08 12:07:44 +01003046static void amd_iommu_detach_device(struct iommu_domain *dom,
3047 struct device *dev)
3048{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003049 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003050 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003051 u16 devid;
3052
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003053 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003054 return;
3055
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003056 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003057
Joerg Roedel657cbb62009-11-23 15:26:46 +01003058 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003059 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003060
3061 iommu = amd_iommu_rlookup_table[devid];
3062 if (!iommu)
3063 return;
3064
Joerg Roedel684f2882008-12-08 12:07:44 +01003065 iommu_completion_wait(iommu);
3066}
3067
Joerg Roedel01106062008-12-02 19:34:11 +01003068static int amd_iommu_attach_device(struct iommu_domain *dom,
3069 struct device *dev)
3070{
3071 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003072 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003073 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003074 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003075
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003076 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003077 return -EINVAL;
3078
Joerg Roedel657cbb62009-11-23 15:26:46 +01003079 dev_data = dev->archdata.iommu;
3080
Joerg Roedelf62dda62011-06-09 12:55:35 +02003081 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003082 if (!iommu)
3083 return -EINVAL;
3084
Joerg Roedel657cbb62009-11-23 15:26:46 +01003085 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003086 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003087
Joerg Roedel15898bb2009-11-24 15:39:42 +01003088 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003089
3090 iommu_completion_wait(iommu);
3091
Joerg Roedel15898bb2009-11-24 15:39:42 +01003092 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003093}
3094
Joerg Roedel468e2362010-01-21 16:37:36 +01003095static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
3096 phys_addr_t paddr, int gfp_order, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003097{
Joerg Roedel468e2362010-01-21 16:37:36 +01003098 unsigned long page_size = 0x1000UL << gfp_order;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003099 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003100 int prot = 0;
3101 int ret;
3102
Joerg Roedel132bd682011-11-17 14:18:46 +01003103 if (domain->mode == PAGE_MODE_NONE)
3104 return -EINVAL;
3105
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003106 if (iommu_prot & IOMMU_READ)
3107 prot |= IOMMU_PROT_IR;
3108 if (iommu_prot & IOMMU_WRITE)
3109 prot |= IOMMU_PROT_IW;
3110
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003111 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003112 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003113 mutex_unlock(&domain->api_lock);
3114
Joerg Roedel795e74f2010-05-11 17:40:57 +02003115 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003116}
3117
Joerg Roedel468e2362010-01-21 16:37:36 +01003118static int amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3119 int gfp_order)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003120{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003121 struct protection_domain *domain = dom->priv;
Joerg Roedel468e2362010-01-21 16:37:36 +01003122 unsigned long page_size, unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003123
Joerg Roedel132bd682011-11-17 14:18:46 +01003124 if (domain->mode == PAGE_MODE_NONE)
3125 return -EINVAL;
3126
Joerg Roedel468e2362010-01-21 16:37:36 +01003127 page_size = 0x1000UL << gfp_order;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003128
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003129 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003130 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003131 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003132
Joerg Roedel17b124b2011-04-06 18:01:35 +02003133 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003134
Joerg Roedel468e2362010-01-21 16:37:36 +01003135 return get_order(unmap_size);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003136}
3137
Joerg Roedel645c4c82008-12-02 20:05:50 +01003138static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3139 unsigned long iova)
3140{
3141 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003142 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003143 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003144 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003145
Joerg Roedel132bd682011-11-17 14:18:46 +01003146 if (domain->mode == PAGE_MODE_NONE)
3147 return iova;
3148
Joerg Roedel24cd7722010-01-19 17:27:39 +01003149 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003150
Joerg Roedela6d41a42009-09-02 17:08:55 +02003151 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003152 return 0;
3153
Joerg Roedelf03152b2010-01-21 16:15:24 +01003154 if (PM_PTE_LEVEL(*pte) == 0)
3155 offset_mask = PAGE_SIZE - 1;
3156 else
3157 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3158
3159 __pte = *pte & PM_ADDR_MASK;
3160 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003161
3162 return paddr;
3163}
3164
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003165static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3166 unsigned long cap)
3167{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003168 switch (cap) {
3169 case IOMMU_CAP_CACHE_COHERENCY:
3170 return 1;
3171 }
3172
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003173 return 0;
3174}
3175
Joerg Roedel26961ef2008-12-03 17:00:17 +01003176static struct iommu_ops amd_iommu_ops = {
3177 .domain_init = amd_iommu_domain_init,
3178 .domain_destroy = amd_iommu_domain_destroy,
3179 .attach_dev = amd_iommu_attach_device,
3180 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003181 .map = amd_iommu_map,
3182 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003183 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003184 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003185};
3186
Joerg Roedel0feae532009-08-26 15:26:30 +02003187/*****************************************************************************
3188 *
3189 * The next functions do a basic initialization of IOMMU for pass through
3190 * mode
3191 *
3192 * In passthrough mode the IOMMU is initialized and enabled but not used for
3193 * DMA-API translation.
3194 *
3195 *****************************************************************************/
3196
3197int __init amd_iommu_init_passthrough(void)
3198{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003199 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003200 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003201 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003202 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003203 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003204
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003205 ret = alloc_passthrough_domain();
3206 if (ret)
3207 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003208
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003209 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003210 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003211 continue;
3212
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003213 dev_data = get_dev_data(&dev->dev);
3214 dev_data->passthrough = true;
3215
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003216 devid = get_device_id(&dev->dev);
3217
Joerg Roedel15898bb2009-11-24 15:39:42 +01003218 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003219 if (!iommu)
3220 continue;
3221
Joerg Roedel15898bb2009-11-24 15:39:42 +01003222 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003223 }
3224
3225 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3226
3227 return 0;
3228}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003229
3230/* IOMMUv2 specific functions */
3231int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3232{
3233 return atomic_notifier_chain_register(&ppr_notifier, nb);
3234}
3235EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3236
3237int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3238{
3239 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3240}
3241EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003242
3243void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3244{
3245 struct protection_domain *domain = dom->priv;
3246 unsigned long flags;
3247
3248 spin_lock_irqsave(&domain->lock, flags);
3249
3250 /* Update data structure */
3251 domain->mode = PAGE_MODE_NONE;
3252 domain->updated = true;
3253
3254 /* Make changes visible to IOMMUs */
3255 update_domain(domain);
3256
3257 /* Page-table is not visible to IOMMU anymore, so free it */
3258 free_pagetable(domain);
3259
3260 spin_unlock_irqrestore(&domain->lock, flags);
3261}
3262EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003263
3264int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3265{
3266 struct protection_domain *domain = dom->priv;
3267 unsigned long flags;
3268 int levels, ret;
3269
3270 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3271 return -EINVAL;
3272
3273 /* Number of GCR3 table levels required */
3274 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3275 levels += 1;
3276
3277 if (levels > amd_iommu_max_glx_val)
3278 return -EINVAL;
3279
3280 spin_lock_irqsave(&domain->lock, flags);
3281
3282 /*
3283 * Save us all sanity checks whether devices already in the
3284 * domain support IOMMUv2. Just force that the domain has no
3285 * devices attached when it is switched into IOMMUv2 mode.
3286 */
3287 ret = -EBUSY;
3288 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3289 goto out;
3290
3291 ret = -ENOMEM;
3292 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3293 if (domain->gcr3_tbl == NULL)
3294 goto out;
3295
3296 domain->glx = levels;
3297 domain->flags |= PD_IOMMUV2_MASK;
3298 domain->updated = true;
3299
3300 update_domain(domain);
3301
3302 ret = 0;
3303
3304out:
3305 spin_unlock_irqrestore(&domain->lock, flags);
3306
3307 return ret;
3308}
3309EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003310
3311static int __flush_pasid(struct protection_domain *domain, int pasid,
3312 u64 address, bool size)
3313{
3314 struct iommu_dev_data *dev_data;
3315 struct iommu_cmd cmd;
3316 int i, ret;
3317
3318 if (!(domain->flags & PD_IOMMUV2_MASK))
3319 return -EINVAL;
3320
3321 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3322
3323 /*
3324 * IOMMU TLB needs to be flushed before Device TLB to
3325 * prevent device TLB refill from IOMMU TLB
3326 */
3327 for (i = 0; i < amd_iommus_present; ++i) {
3328 if (domain->dev_iommu[i] == 0)
3329 continue;
3330
3331 ret = iommu_queue_command(amd_iommus[i], &cmd);
3332 if (ret != 0)
3333 goto out;
3334 }
3335
3336 /* Wait until IOMMU TLB flushes are complete */
3337 domain_flush_complete(domain);
3338
3339 /* Now flush device TLBs */
3340 list_for_each_entry(dev_data, &domain->dev_list, list) {
3341 struct amd_iommu *iommu;
3342 int qdep;
3343
3344 BUG_ON(!dev_data->ats.enabled);
3345
3346 qdep = dev_data->ats.qdep;
3347 iommu = amd_iommu_rlookup_table[dev_data->devid];
3348
3349 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3350 qdep, address, size);
3351
3352 ret = iommu_queue_command(iommu, &cmd);
3353 if (ret != 0)
3354 goto out;
3355 }
3356
3357 /* Wait until all device TLBs are flushed */
3358 domain_flush_complete(domain);
3359
3360 ret = 0;
3361
3362out:
3363
3364 return ret;
3365}
3366
3367static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3368 u64 address)
3369{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003370 INC_STATS_COUNTER(invalidate_iotlb);
3371
Joerg Roedel22e266c2011-11-21 15:59:08 +01003372 return __flush_pasid(domain, pasid, address, false);
3373}
3374
3375int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3376 u64 address)
3377{
3378 struct protection_domain *domain = dom->priv;
3379 unsigned long flags;
3380 int ret;
3381
3382 spin_lock_irqsave(&domain->lock, flags);
3383 ret = __amd_iommu_flush_page(domain, pasid, address);
3384 spin_unlock_irqrestore(&domain->lock, flags);
3385
3386 return ret;
3387}
3388EXPORT_SYMBOL(amd_iommu_flush_page);
3389
3390static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3391{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003392 INC_STATS_COUNTER(invalidate_iotlb_all);
3393
Joerg Roedel22e266c2011-11-21 15:59:08 +01003394 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3395 true);
3396}
3397
3398int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3399{
3400 struct protection_domain *domain = dom->priv;
3401 unsigned long flags;
3402 int ret;
3403
3404 spin_lock_irqsave(&domain->lock, flags);
3405 ret = __amd_iommu_flush_tlb(domain, pasid);
3406 spin_unlock_irqrestore(&domain->lock, flags);
3407
3408 return ret;
3409}
3410EXPORT_SYMBOL(amd_iommu_flush_tlb);
3411
Joerg Roedelb16137b2011-11-21 16:50:23 +01003412static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3413{
3414 int index;
3415 u64 *pte;
3416
3417 while (true) {
3418
3419 index = (pasid >> (9 * level)) & 0x1ff;
3420 pte = &root[index];
3421
3422 if (level == 0)
3423 break;
3424
3425 if (!(*pte & GCR3_VALID)) {
3426 if (!alloc)
3427 return NULL;
3428
3429 root = (void *)get_zeroed_page(GFP_ATOMIC);
3430 if (root == NULL)
3431 return NULL;
3432
3433 *pte = __pa(root) | GCR3_VALID;
3434 }
3435
3436 root = __va(*pte & PAGE_MASK);
3437
3438 level -= 1;
3439 }
3440
3441 return pte;
3442}
3443
3444static int __set_gcr3(struct protection_domain *domain, int pasid,
3445 unsigned long cr3)
3446{
3447 u64 *pte;
3448
3449 if (domain->mode != PAGE_MODE_NONE)
3450 return -EINVAL;
3451
3452 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3453 if (pte == NULL)
3454 return -ENOMEM;
3455
3456 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3457
3458 return __amd_iommu_flush_tlb(domain, pasid);
3459}
3460
3461static int __clear_gcr3(struct protection_domain *domain, int pasid)
3462{
3463 u64 *pte;
3464
3465 if (domain->mode != PAGE_MODE_NONE)
3466 return -EINVAL;
3467
3468 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3469 if (pte == NULL)
3470 return 0;
3471
3472 *pte = 0;
3473
3474 return __amd_iommu_flush_tlb(domain, pasid);
3475}
3476
3477int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3478 unsigned long cr3)
3479{
3480 struct protection_domain *domain = dom->priv;
3481 unsigned long flags;
3482 int ret;
3483
3484 spin_lock_irqsave(&domain->lock, flags);
3485 ret = __set_gcr3(domain, pasid, cr3);
3486 spin_unlock_irqrestore(&domain->lock, flags);
3487
3488 return ret;
3489}
3490EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3491
3492int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3493{
3494 struct protection_domain *domain = dom->priv;
3495 unsigned long flags;
3496 int ret;
3497
3498 spin_lock_irqsave(&domain->lock, flags);
3499 ret = __clear_gcr3(domain, pasid);
3500 spin_unlock_irqrestore(&domain->lock, flags);
3501
3502 return ret;
3503}
3504EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003505
3506int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3507 int status, int tag)
3508{
3509 struct iommu_dev_data *dev_data;
3510 struct amd_iommu *iommu;
3511 struct iommu_cmd cmd;
3512
Joerg Roedel399be2f2011-12-01 16:53:47 +01003513 INC_STATS_COUNTER(complete_ppr);
3514
Joerg Roedelc99afa22011-11-21 18:19:25 +01003515 dev_data = get_dev_data(&pdev->dev);
3516 iommu = amd_iommu_rlookup_table[dev_data->devid];
3517
3518 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3519 tag, dev_data->pri_tlp);
3520
3521 return iommu_queue_command(iommu, &cmd);
3522}
3523EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003524
3525struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3526{
3527 struct protection_domain *domain;
3528
3529 domain = get_domain(&pdev->dev);
3530 if (IS_ERR(domain))
3531 return NULL;
3532
3533 /* Only return IOMMUv2 domains */
3534 if (!(domain->flags & PD_IOMMUV2_MASK))
3535 return NULL;
3536
3537 return domain->iommu_domain;
3538}
3539EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003540
3541void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3542{
3543 struct iommu_dev_data *dev_data;
3544
3545 if (!amd_iommu_v2_supported())
3546 return;
3547
3548 dev_data = get_dev_data(&pdev->dev);
3549 dev_data->errata |= (1 << erratum);
3550}
3551EXPORT_SYMBOL(amd_iommu_enable_device_erratum);