blob: 65a118ce626e39c7a4f1a486fe750f1d3af96bc1 [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 Roedel71c70982009-11-24 16:43:06 +0100175/*
176 * In this function the list of preallocated protection domains is traversed to
177 * find the domain for a specific device
178 */
179static struct dma_ops_domain *find_protection_domain(u16 devid)
180{
181 struct dma_ops_domain *entry, *ret = NULL;
182 unsigned long flags;
183 u16 alias = amd_iommu_alias_table[devid];
184
185 if (list_empty(&iommu_pd_list))
186 return NULL;
187
188 spin_lock_irqsave(&iommu_pd_list_lock, flags);
189
190 list_for_each_entry(entry, &iommu_pd_list, list) {
191 if (entry->target_dev == devid ||
192 entry->target_dev == alias) {
193 ret = entry;
194 break;
195 }
196 }
197
198 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
199
200 return ret;
201}
202
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100203/*
204 * This function checks if the driver got a valid device from the caller to
205 * avoid dereferencing invalid pointers.
206 */
207static bool check_device(struct device *dev)
208{
209 u16 devid;
210
211 if (!dev || !dev->dma_mask)
212 return false;
213
214 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100215 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100216 return false;
217
218 devid = get_device_id(dev);
219
220 /* Out of our scope? */
221 if (devid > amd_iommu_last_bdf)
222 return false;
223
224 if (amd_iommu_rlookup_table[devid] == NULL)
225 return false;
226
227 return true;
228}
229
Joerg Roedel657cbb62009-11-23 15:26:46 +0100230static int iommu_init_device(struct device *dev)
231{
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100232 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100233 struct iommu_dev_data *dev_data;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200234 u16 alias;
Joerg Roedel657cbb62009-11-23 15:26:46 +0100235
236 if (dev->archdata.iommu)
237 return 0;
238
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200239 dev_data = find_dev_data(get_device_id(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +0100240 if (!dev_data)
241 return -ENOMEM;
242
Joerg Roedelf62dda62011-06-09 12:55:35 +0200243 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel2b02b092011-06-09 17:48:39 +0200244 if (alias != dev_data->devid) {
Joerg Roedel71f77582011-06-09 19:03:15 +0200245 struct iommu_dev_data *alias_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100246
Joerg Roedel71f77582011-06-09 19:03:15 +0200247 alias_data = find_dev_data(alias);
248 if (alias_data == NULL) {
249 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
250 dev_name(dev));
Joerg Roedel2b02b092011-06-09 17:48:39 +0200251 free_dev_data(dev_data);
252 return -ENOTSUPP;
253 }
Joerg Roedel71f77582011-06-09 19:03:15 +0200254 dev_data->alias_data = alias_data;
Joerg Roedel26018872011-06-06 16:50:14 +0200255 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100256
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100257 if (pci_iommuv2_capable(pdev)) {
258 struct amd_iommu *iommu;
259
260 iommu = amd_iommu_rlookup_table[dev_data->devid];
261 dev_data->iommu_v2 = iommu->is_iommu_v2;
262 }
263
Joerg Roedel657cbb62009-11-23 15:26:46 +0100264 dev->archdata.iommu = dev_data;
265
Joerg Roedel657cbb62009-11-23 15:26:46 +0100266 return 0;
267}
268
Joerg Roedel26018872011-06-06 16:50:14 +0200269static void iommu_ignore_device(struct device *dev)
270{
271 u16 devid, alias;
272
273 devid = get_device_id(dev);
274 alias = amd_iommu_alias_table[devid];
275
276 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
277 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
278
279 amd_iommu_rlookup_table[devid] = NULL;
280 amd_iommu_rlookup_table[alias] = NULL;
281}
282
Joerg Roedel657cbb62009-11-23 15:26:46 +0100283static void iommu_uninit_device(struct device *dev)
284{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200285 /*
286 * Nothing to do here - we keep dev_data around for unplugged devices
287 * and reuse it when the device is re-plugged - not doing so would
288 * introduce a ton of races.
289 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100290}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100291
292void __init amd_iommu_uninit_devices(void)
293{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200294 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100295 struct pci_dev *pdev = NULL;
296
297 for_each_pci_dev(pdev) {
298
299 if (!check_device(&pdev->dev))
300 continue;
301
302 iommu_uninit_device(&pdev->dev);
303 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200304
305 /* Free all of our dev_data structures */
306 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
307 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100308}
309
310int __init amd_iommu_init_devices(void)
311{
312 struct pci_dev *pdev = NULL;
313 int ret = 0;
314
315 for_each_pci_dev(pdev) {
316
317 if (!check_device(&pdev->dev))
318 continue;
319
320 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200321 if (ret == -ENOTSUPP)
322 iommu_ignore_device(&pdev->dev);
323 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100324 goto out_free;
325 }
326
327 return 0;
328
329out_free:
330
331 amd_iommu_uninit_devices();
332
333 return ret;
334}
Joerg Roedel7f265082008-12-12 13:50:21 +0100335#ifdef CONFIG_AMD_IOMMU_STATS
336
337/*
338 * Initialization code for statistics collection
339 */
340
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100341DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100342DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100343DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100344DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100345DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100346DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100347DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100348DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100349DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100350DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100351DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100352DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100353
Joerg Roedel7f265082008-12-12 13:50:21 +0100354static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100355static struct dentry *de_fflush;
356
357static void amd_iommu_stats_add(struct __iommu_counter *cnt)
358{
359 if (stats_dir == NULL)
360 return;
361
362 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
363 &cnt->value);
364}
365
366static void amd_iommu_stats_init(void)
367{
368 stats_dir = debugfs_create_dir("amd-iommu", NULL);
369 if (stats_dir == NULL)
370 return;
371
Joerg Roedel7f265082008-12-12 13:50:21 +0100372 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
373 (u32 *)&amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100374
375 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100376 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100377 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100378 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100379 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100380 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100381 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100382 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100383 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100384 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100385 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100386 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100387}
388
389#endif
390
Joerg Roedel431b2a22008-07-11 17:14:22 +0200391/****************************************************************************
392 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200393 * Interrupt handling functions
394 *
395 ****************************************************************************/
396
Joerg Roedele3e59872009-09-03 14:02:10 +0200397static void dump_dte_entry(u16 devid)
398{
399 int i;
400
Joerg Roedelee6c2862011-11-09 12:06:03 +0100401 for (i = 0; i < 4; ++i)
402 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200403 amd_iommu_dev_table[devid].data[i]);
404}
405
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200406static void dump_command(unsigned long phys_addr)
407{
408 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
409 int i;
410
411 for (i = 0; i < 4; ++i)
412 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
413}
414
Joerg Roedela345b232009-09-03 15:01:43 +0200415static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200416{
417 u32 *event = __evt;
418 int type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
419 int devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
420 int domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
421 int flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
422 u64 address = (u64)(((u64)event[3]) << 32) | event[2];
423
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200424 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200425
426 switch (type) {
427 case EVENT_TYPE_ILL_DEV:
428 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
429 "address=0x%016llx flags=0x%04x]\n",
430 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
431 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200432 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200433 break;
434 case EVENT_TYPE_IO_FAULT:
435 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
436 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
437 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
438 domid, address, flags);
439 break;
440 case EVENT_TYPE_DEV_TAB_ERR:
441 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
442 "address=0x%016llx flags=0x%04x]\n",
443 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
444 address, flags);
445 break;
446 case EVENT_TYPE_PAGE_TAB_ERR:
447 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
448 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
449 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
450 domid, address, flags);
451 break;
452 case EVENT_TYPE_ILL_CMD:
453 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200454 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200455 break;
456 case EVENT_TYPE_CMD_HARD_ERR:
457 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
458 "flags=0x%04x]\n", address, flags);
459 break;
460 case EVENT_TYPE_IOTLB_INV_TO:
461 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
462 "address=0x%016llx]\n",
463 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
464 address);
465 break;
466 case EVENT_TYPE_INV_DEV_REQ:
467 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
468 "address=0x%016llx flags=0x%04x]\n",
469 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
470 address, flags);
471 break;
472 default:
473 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
474 }
475}
476
477static void iommu_poll_events(struct amd_iommu *iommu)
478{
479 u32 head, tail;
480 unsigned long flags;
481
482 spin_lock_irqsave(&iommu->lock, flags);
483
484 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
485 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
486
487 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200488 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200489 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
490 }
491
492 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
493
494 spin_unlock_irqrestore(&iommu->lock, flags);
495}
496
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100497static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u32 head)
498{
499 struct amd_iommu_fault fault;
500 volatile u64 *raw;
501 int i;
502
503 raw = (u64 *)(iommu->ppr_log + head);
504
505 /*
506 * Hardware bug: Interrupt may arrive before the entry is written to
507 * memory. If this happens we need to wait for the entry to arrive.
508 */
509 for (i = 0; i < LOOP_TIMEOUT; ++i) {
510 if (PPR_REQ_TYPE(raw[0]) != 0)
511 break;
512 udelay(1);
513 }
514
515 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
516 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
517 return;
518 }
519
520 fault.address = raw[1];
521 fault.pasid = PPR_PASID(raw[0]);
522 fault.device_id = PPR_DEVID(raw[0]);
523 fault.tag = PPR_TAG(raw[0]);
524 fault.flags = PPR_FLAGS(raw[0]);
525
526 /*
527 * To detect the hardware bug we need to clear the entry
528 * to back to zero.
529 */
530 raw[0] = raw[1] = 0;
531
532 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
533}
534
535static void iommu_poll_ppr_log(struct amd_iommu *iommu)
536{
537 unsigned long flags;
538 u32 head, tail;
539
540 if (iommu->ppr_log == NULL)
541 return;
542
543 spin_lock_irqsave(&iommu->lock, flags);
544
545 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
546 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
547
548 while (head != tail) {
549
550 /* Handle PPR entry */
551 iommu_handle_ppr_entry(iommu, head);
552
553 /* Update and refresh ring-buffer state*/
554 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
555 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
556 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
557 }
558
559 /* enable ppr interrupts again */
560 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
561
562 spin_unlock_irqrestore(&iommu->lock, flags);
563}
564
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200565irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200566{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200567 struct amd_iommu *iommu;
568
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100569 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200570 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100571 iommu_poll_ppr_log(iommu);
572 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200573
574 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200575}
576
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200577irqreturn_t amd_iommu_int_handler(int irq, void *data)
578{
579 return IRQ_WAKE_THREAD;
580}
581
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200582/****************************************************************************
583 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200584 * IOMMU command queuing functions
585 *
586 ****************************************************************************/
587
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200588static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200589{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200590 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200591
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200592 while (*sem == 0 && i < LOOP_TIMEOUT) {
593 udelay(1);
594 i += 1;
595 }
596
597 if (i == LOOP_TIMEOUT) {
598 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
599 return -EIO;
600 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200601
602 return 0;
603}
604
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200605static void copy_cmd_to_buffer(struct amd_iommu *iommu,
606 struct iommu_cmd *cmd,
607 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200608{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200609 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200610
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200611 target = iommu->cmd_buf + tail;
612 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200613
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200614 /* Copy command to buffer */
615 memcpy(target, cmd, sizeof(*cmd));
616
617 /* Tell the IOMMU about it */
618 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
619}
620
Joerg Roedel815b33f2011-04-06 17:26:49 +0200621static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200622{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200623 WARN_ON(address & 0x7ULL);
624
Joerg Roedelded46732011-04-06 10:53:48 +0200625 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200626 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
627 cmd->data[1] = upper_32_bits(__pa(address));
628 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200629 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
630}
631
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200632static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
633{
634 memset(cmd, 0, sizeof(*cmd));
635 cmd->data[0] = devid;
636 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
637}
638
Joerg Roedel11b64022011-04-06 11:49:28 +0200639static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
640 size_t size, u16 domid, int pde)
641{
642 u64 pages;
643 int s;
644
645 pages = iommu_num_pages(address, size, PAGE_SIZE);
646 s = 0;
647
648 if (pages > 1) {
649 /*
650 * If we have to flush more than one page, flush all
651 * TLB entries for this domain
652 */
653 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
654 s = 1;
655 }
656
657 address &= PAGE_MASK;
658
659 memset(cmd, 0, sizeof(*cmd));
660 cmd->data[1] |= domid;
661 cmd->data[2] = lower_32_bits(address);
662 cmd->data[3] = upper_32_bits(address);
663 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
664 if (s) /* size bit - we flush more than one 4kb page */
665 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
666 if (pde) /* PDE bit - we wan't flush everything not only the PTEs */
667 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
668}
669
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200670static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
671 u64 address, size_t size)
672{
673 u64 pages;
674 int s;
675
676 pages = iommu_num_pages(address, size, PAGE_SIZE);
677 s = 0;
678
679 if (pages > 1) {
680 /*
681 * If we have to flush more than one page, flush all
682 * TLB entries for this domain
683 */
684 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
685 s = 1;
686 }
687
688 address &= PAGE_MASK;
689
690 memset(cmd, 0, sizeof(*cmd));
691 cmd->data[0] = devid;
692 cmd->data[0] |= (qdep & 0xff) << 24;
693 cmd->data[1] = devid;
694 cmd->data[2] = lower_32_bits(address);
695 cmd->data[3] = upper_32_bits(address);
696 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
697 if (s)
698 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
699}
700
Joerg Roedel22e266c2011-11-21 15:59:08 +0100701static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
702 u64 address, bool size)
703{
704 memset(cmd, 0, sizeof(*cmd));
705
706 address &= ~(0xfffULL);
707
708 cmd->data[0] = pasid & PASID_MASK;
709 cmd->data[1] = domid;
710 cmd->data[2] = lower_32_bits(address);
711 cmd->data[3] = upper_32_bits(address);
712 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
713 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
714 if (size)
715 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
716 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
717}
718
719static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
720 int qdep, u64 address, bool size)
721{
722 memset(cmd, 0, sizeof(*cmd));
723
724 address &= ~(0xfffULL);
725
726 cmd->data[0] = devid;
727 cmd->data[0] |= (pasid & 0xff) << 16;
728 cmd->data[0] |= (qdep & 0xff) << 24;
729 cmd->data[1] = devid;
730 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
731 cmd->data[2] = lower_32_bits(address);
732 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
733 cmd->data[3] = upper_32_bits(address);
734 if (size)
735 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
736 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
737}
738
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200739static void build_inv_all(struct iommu_cmd *cmd)
740{
741 memset(cmd, 0, sizeof(*cmd));
742 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200743}
744
Joerg Roedel431b2a22008-07-11 17:14:22 +0200745/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200746 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200747 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200748 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200749static int iommu_queue_command_sync(struct amd_iommu *iommu,
750 struct iommu_cmd *cmd,
751 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200752{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200753 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200754 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200755
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200756 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100757
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200758again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200759 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200760
761 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
762 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
763 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
764 left = (head - next_tail) % iommu->cmd_buf_size;
765
766 if (left <= 2) {
767 struct iommu_cmd sync_cmd;
768 volatile u64 sem = 0;
769 int ret;
770
771 build_completion_wait(&sync_cmd, (u64)&sem);
772 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
773
774 spin_unlock_irqrestore(&iommu->lock, flags);
775
776 if ((ret = wait_on_sem(&sem)) != 0)
777 return ret;
778
779 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200780 }
781
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200782 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200783
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200784 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200785 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200786
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200787 spin_unlock_irqrestore(&iommu->lock, flags);
788
Joerg Roedel815b33f2011-04-06 17:26:49 +0200789 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100790}
791
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200792static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
793{
794 return iommu_queue_command_sync(iommu, cmd, true);
795}
796
Joerg Roedel8d201962008-12-02 20:34:41 +0100797/*
798 * This function queues a completion wait command into the command
799 * buffer of an IOMMU
800 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100801static int iommu_completion_wait(struct amd_iommu *iommu)
802{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200803 struct iommu_cmd cmd;
804 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200805 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100806
807 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200808 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100809
Joerg Roedel815b33f2011-04-06 17:26:49 +0200810 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100811
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200812 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100813 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200814 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100815
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200816 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200817}
818
Joerg Roedeld8c13082011-04-06 18:51:26 +0200819static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200820{
821 struct iommu_cmd cmd;
822
Joerg Roedeld8c13082011-04-06 18:51:26 +0200823 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200824
Joerg Roedeld8c13082011-04-06 18:51:26 +0200825 return iommu_queue_command(iommu, &cmd);
826}
827
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200828static void iommu_flush_dte_all(struct amd_iommu *iommu)
829{
830 u32 devid;
831
832 for (devid = 0; devid <= 0xffff; ++devid)
833 iommu_flush_dte(iommu, devid);
834
835 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200836}
837
838/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200839 * This function uses heavy locking and may disable irqs for some time. But
840 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200841 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200842static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200843{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200844 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200845
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200846 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
847 struct iommu_cmd cmd;
848 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
849 dom_id, 1);
850 iommu_queue_command(iommu, &cmd);
851 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200852
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200853 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200854}
855
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200856static void iommu_flush_all(struct amd_iommu *iommu)
857{
858 struct iommu_cmd cmd;
859
860 build_inv_all(&cmd);
861
862 iommu_queue_command(iommu, &cmd);
863 iommu_completion_wait(iommu);
864}
865
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200866void iommu_flush_all_caches(struct amd_iommu *iommu)
867{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200868 if (iommu_feature(iommu, FEATURE_IA)) {
869 iommu_flush_all(iommu);
870 } else {
871 iommu_flush_dte_all(iommu);
872 iommu_flush_tlb_all(iommu);
873 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200874}
875
Joerg Roedel431b2a22008-07-11 17:14:22 +0200876/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200877 * Command send function for flushing on-device TLB
878 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200879static int device_flush_iotlb(struct iommu_dev_data *dev_data,
880 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200881{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200882 struct amd_iommu *iommu;
883 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200884 int qdep;
885
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200886 qdep = dev_data->ats.qdep;
887 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200888
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200889 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200890
891 return iommu_queue_command(iommu, &cmd);
892}
893
894/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200895 * Command send function for invalidating a device table entry
896 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200897static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +0100898{
899 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200900 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100901
Joerg Roedel6c542042011-06-09 17:07:31 +0200902 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +0100903
Joerg Roedelf62dda62011-06-09 12:55:35 +0200904 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200905 if (ret)
906 return ret;
907
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200908 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +0200909 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200910
911 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +0100912}
913
Joerg Roedel431b2a22008-07-11 17:14:22 +0200914/*
915 * TLB invalidation function which is called from the mapping functions.
916 * It invalidates a single PTE if the range to flush is within a single
917 * page. Otherwise it flushes the whole TLB of the IOMMU.
918 */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200919static void __domain_flush_pages(struct protection_domain *domain,
920 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200921{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200922 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +0200923 struct iommu_cmd cmd;
924 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200925
Joerg Roedel11b64022011-04-06 11:49:28 +0200926 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +0200927
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100928 for (i = 0; i < amd_iommus_present; ++i) {
929 if (!domain->dev_iommu[i])
930 continue;
931
932 /*
933 * Devices of this domain are behind this IOMMU
934 * We need a TLB flush
935 */
Joerg Roedel11b64022011-04-06 11:49:28 +0200936 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100937 }
938
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200939 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200940
Joerg Roedelea61cdd2011-06-09 12:56:30 +0200941 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200942 continue;
943
Joerg Roedel6c542042011-06-09 17:07:31 +0200944 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200945 }
946
Joerg Roedel11b64022011-04-06 11:49:28 +0200947 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100948}
949
Joerg Roedel17b124b2011-04-06 18:01:35 +0200950static void domain_flush_pages(struct protection_domain *domain,
951 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +0100952{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200953 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200954}
Joerg Roedelb6c02712008-06-26 21:27:53 +0200955
Joerg Roedel1c655772008-09-04 18:40:05 +0200956/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200957static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +0200958{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200959 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +0200960}
961
Chris Wright42a49f92009-06-15 15:42:00 +0200962/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200963static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +0200964{
Joerg Roedel17b124b2011-04-06 18:01:35 +0200965 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
966}
967
968static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +0200969{
970 int i;
971
972 for (i = 0; i < amd_iommus_present; ++i) {
973 if (!domain->dev_iommu[i])
974 continue;
975
976 /*
977 * Devices of this domain are behind this IOMMU
978 * We need to wait for completion of all commands.
979 */
980 iommu_completion_wait(amd_iommus[i]);
981 }
982}
983
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100984
Joerg Roedel43f49602008-12-02 21:01:12 +0100985/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100986 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +0100987 */
Joerg Roedel17b124b2011-04-06 18:01:35 +0200988static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +0200989{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100990 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100991
992 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +0200993 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +0100994}
995
Joerg Roedel431b2a22008-07-11 17:14:22 +0200996/****************************************************************************
997 *
998 * The functions below are used the create the page table mappings for
999 * unity mapped regions.
1000 *
1001 ****************************************************************************/
1002
1003/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001004 * This function is used to add another level to an IO page table. Adding
1005 * another level increases the size of the address space by 9 bits to a size up
1006 * to 64 bits.
1007 */
1008static bool increase_address_space(struct protection_domain *domain,
1009 gfp_t gfp)
1010{
1011 u64 *pte;
1012
1013 if (domain->mode == PAGE_MODE_6_LEVEL)
1014 /* address space already 64 bit large */
1015 return false;
1016
1017 pte = (void *)get_zeroed_page(gfp);
1018 if (!pte)
1019 return false;
1020
1021 *pte = PM_LEVEL_PDE(domain->mode,
1022 virt_to_phys(domain->pt_root));
1023 domain->pt_root = pte;
1024 domain->mode += 1;
1025 domain->updated = true;
1026
1027 return true;
1028}
1029
1030static u64 *alloc_pte(struct protection_domain *domain,
1031 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001032 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001033 u64 **pte_page,
1034 gfp_t gfp)
1035{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001036 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001037 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001038
1039 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001040
1041 while (address > PM_LEVEL_SIZE(domain->mode))
1042 increase_address_space(domain, gfp);
1043
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001044 level = domain->mode - 1;
1045 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1046 address = PAGE_SIZE_ALIGN(address, page_size);
1047 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001048
1049 while (level > end_lvl) {
1050 if (!IOMMU_PTE_PRESENT(*pte)) {
1051 page = (u64 *)get_zeroed_page(gfp);
1052 if (!page)
1053 return NULL;
1054 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1055 }
1056
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001057 /* No level skipping support yet */
1058 if (PM_PTE_LEVEL(*pte) != level)
1059 return NULL;
1060
Joerg Roedel308973d2009-11-24 17:43:32 +01001061 level -= 1;
1062
1063 pte = IOMMU_PTE_PAGE(*pte);
1064
1065 if (pte_page && level == end_lvl)
1066 *pte_page = pte;
1067
1068 pte = &pte[PM_LEVEL_INDEX(level, address)];
1069 }
1070
1071 return pte;
1072}
1073
1074/*
1075 * This function checks if there is a PTE for a given dma address. If
1076 * there is one, it returns the pointer to it.
1077 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001078static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001079{
1080 int level;
1081 u64 *pte;
1082
Joerg Roedel24cd7722010-01-19 17:27:39 +01001083 if (address > PM_LEVEL_SIZE(domain->mode))
1084 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001085
Joerg Roedel24cd7722010-01-19 17:27:39 +01001086 level = domain->mode - 1;
1087 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1088
1089 while (level > 0) {
1090
1091 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001092 if (!IOMMU_PTE_PRESENT(*pte))
1093 return NULL;
1094
Joerg Roedel24cd7722010-01-19 17:27:39 +01001095 /* Large PTE */
1096 if (PM_PTE_LEVEL(*pte) == 0x07) {
1097 unsigned long pte_mask, __pte;
1098
1099 /*
1100 * If we have a series of large PTEs, make
1101 * sure to return a pointer to the first one.
1102 */
1103 pte_mask = PTE_PAGE_SIZE(*pte);
1104 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1105 __pte = ((unsigned long)pte) & pte_mask;
1106
1107 return (u64 *)__pte;
1108 }
1109
1110 /* No level skipping support yet */
1111 if (PM_PTE_LEVEL(*pte) != level)
1112 return NULL;
1113
Joerg Roedel308973d2009-11-24 17:43:32 +01001114 level -= 1;
1115
Joerg Roedel24cd7722010-01-19 17:27:39 +01001116 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001117 pte = IOMMU_PTE_PAGE(*pte);
1118 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001119 }
1120
1121 return pte;
1122}
1123
1124/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001125 * Generic mapping functions. It maps a physical address into a DMA
1126 * address space. It allocates the page table pages if necessary.
1127 * In the future it can be extended to a generic mapping function
1128 * supporting all features of AMD IOMMU page tables like level skipping
1129 * and full 64 bit address spaces.
1130 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001131static int iommu_map_page(struct protection_domain *dom,
1132 unsigned long bus_addr,
1133 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001134 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001135 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001136{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001137 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001138 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001139
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001140 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001141 return -EINVAL;
1142
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001143 bus_addr = PAGE_ALIGN(bus_addr);
1144 phys_addr = PAGE_ALIGN(phys_addr);
1145 count = PAGE_SIZE_PTE_COUNT(page_size);
1146 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001147
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001148 for (i = 0; i < count; ++i)
1149 if (IOMMU_PTE_PRESENT(pte[i]))
1150 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001151
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001152 if (page_size > PAGE_SIZE) {
1153 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1154 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1155 } else
1156 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1157
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001158 if (prot & IOMMU_PROT_IR)
1159 __pte |= IOMMU_PTE_IR;
1160 if (prot & IOMMU_PROT_IW)
1161 __pte |= IOMMU_PTE_IW;
1162
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001163 for (i = 0; i < count; ++i)
1164 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001165
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001166 update_domain(dom);
1167
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001168 return 0;
1169}
1170
Joerg Roedel24cd7722010-01-19 17:27:39 +01001171static unsigned long iommu_unmap_page(struct protection_domain *dom,
1172 unsigned long bus_addr,
1173 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001174{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001175 unsigned long long unmap_size, unmapped;
1176 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001177
Joerg Roedel24cd7722010-01-19 17:27:39 +01001178 BUG_ON(!is_power_of_2(page_size));
1179
1180 unmapped = 0;
1181
1182 while (unmapped < page_size) {
1183
1184 pte = fetch_pte(dom, bus_addr);
1185
1186 if (!pte) {
1187 /*
1188 * No PTE for this address
1189 * move forward in 4kb steps
1190 */
1191 unmap_size = PAGE_SIZE;
1192 } else if (PM_PTE_LEVEL(*pte) == 0) {
1193 /* 4kb PTE found for this address */
1194 unmap_size = PAGE_SIZE;
1195 *pte = 0ULL;
1196 } else {
1197 int count, i;
1198
1199 /* Large PTE found which maps this address */
1200 unmap_size = PTE_PAGE_SIZE(*pte);
1201 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1202 for (i = 0; i < count; i++)
1203 pte[i] = 0ULL;
1204 }
1205
1206 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1207 unmapped += unmap_size;
1208 }
1209
1210 BUG_ON(!is_power_of_2(unmapped));
1211
1212 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001213}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001214
Joerg Roedel431b2a22008-07-11 17:14:22 +02001215/*
1216 * This function checks if a specific unity mapping entry is needed for
1217 * this specific IOMMU.
1218 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001219static int iommu_for_unity_map(struct amd_iommu *iommu,
1220 struct unity_map_entry *entry)
1221{
1222 u16 bdf, i;
1223
1224 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1225 bdf = amd_iommu_alias_table[i];
1226 if (amd_iommu_rlookup_table[bdf] == iommu)
1227 return 1;
1228 }
1229
1230 return 0;
1231}
1232
Joerg Roedel431b2a22008-07-11 17:14:22 +02001233/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001234 * This function actually applies the mapping to the page table of the
1235 * dma_ops domain.
1236 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001237static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1238 struct unity_map_entry *e)
1239{
1240 u64 addr;
1241 int ret;
1242
1243 for (addr = e->address_start; addr < e->address_end;
1244 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001245 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001246 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001247 if (ret)
1248 return ret;
1249 /*
1250 * if unity mapping is in aperture range mark the page
1251 * as allocated in the aperture
1252 */
1253 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001254 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001255 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001256 }
1257
1258 return 0;
1259}
1260
Joerg Roedel431b2a22008-07-11 17:14:22 +02001261/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001262 * Init the unity mappings for a specific IOMMU in the system
1263 *
1264 * Basically iterates over all unity mapping entries and applies them to
1265 * the default domain DMA of that IOMMU if necessary.
1266 */
1267static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1268{
1269 struct unity_map_entry *entry;
1270 int ret;
1271
1272 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1273 if (!iommu_for_unity_map(iommu, entry))
1274 continue;
1275 ret = dma_ops_unity_map(iommu->default_dom, entry);
1276 if (ret)
1277 return ret;
1278 }
1279
1280 return 0;
1281}
1282
1283/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001284 * Inits the unity mappings required for a specific device
1285 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001286static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1287 u16 devid)
1288{
1289 struct unity_map_entry *e;
1290 int ret;
1291
1292 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1293 if (!(devid >= e->devid_start && devid <= e->devid_end))
1294 continue;
1295 ret = dma_ops_unity_map(dma_dom, e);
1296 if (ret)
1297 return ret;
1298 }
1299
1300 return 0;
1301}
1302
Joerg Roedel431b2a22008-07-11 17:14:22 +02001303/****************************************************************************
1304 *
1305 * The next functions belong to the address allocator for the dma_ops
1306 * interface functions. They work like the allocators in the other IOMMU
1307 * drivers. Its basically a bitmap which marks the allocated pages in
1308 * the aperture. Maybe it could be enhanced in the future to a more
1309 * efficient allocator.
1310 *
1311 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001312
Joerg Roedel431b2a22008-07-11 17:14:22 +02001313/*
Joerg Roedel384de722009-05-15 12:30:05 +02001314 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001315 *
1316 * called with domain->lock held
1317 */
Joerg Roedel384de722009-05-15 12:30:05 +02001318
Joerg Roedel9cabe892009-05-18 16:38:55 +02001319/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001320 * Used to reserve address ranges in the aperture (e.g. for exclusion
1321 * ranges.
1322 */
1323static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1324 unsigned long start_page,
1325 unsigned int pages)
1326{
1327 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1328
1329 if (start_page + pages > last_page)
1330 pages = last_page - start_page;
1331
1332 for (i = start_page; i < start_page + pages; ++i) {
1333 int index = i / APERTURE_RANGE_PAGES;
1334 int page = i % APERTURE_RANGE_PAGES;
1335 __set_bit(page, dom->aperture[index]->bitmap);
1336 }
1337}
1338
1339/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001340 * This function is used to add a new aperture range to an existing
1341 * aperture in case of dma_ops domain allocation or address allocation
1342 * failure.
1343 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001344static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001345 bool populate, gfp_t gfp)
1346{
1347 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001348 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001349 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001350
Joerg Roedelf5e97052009-05-22 12:31:53 +02001351#ifdef CONFIG_IOMMU_STRESS
1352 populate = false;
1353#endif
1354
Joerg Roedel9cabe892009-05-18 16:38:55 +02001355 if (index >= APERTURE_MAX_RANGES)
1356 return -ENOMEM;
1357
1358 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1359 if (!dma_dom->aperture[index])
1360 return -ENOMEM;
1361
1362 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1363 if (!dma_dom->aperture[index]->bitmap)
1364 goto out_free;
1365
1366 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1367
1368 if (populate) {
1369 unsigned long address = dma_dom->aperture_size;
1370 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1371 u64 *pte, *pte_page;
1372
1373 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001374 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001375 &pte_page, gfp);
1376 if (!pte)
1377 goto out_free;
1378
1379 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1380
1381 address += APERTURE_RANGE_SIZE / 64;
1382 }
1383 }
1384
Joerg Roedel17f5b562011-07-06 17:14:44 +02001385 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001386 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1387
Joerg Roedel17f5b562011-07-06 17:14:44 +02001388 /* Reserve address range used for MSI messages */
1389 if (old_size < MSI_ADDR_BASE_LO &&
1390 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1391 unsigned long spage;
1392 int pages;
1393
1394 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1395 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1396
1397 dma_ops_reserve_addresses(dma_dom, spage, pages);
1398 }
1399
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001400 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001401 for_each_iommu(iommu) {
1402 if (iommu->exclusion_start &&
1403 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1404 && iommu->exclusion_start < dma_dom->aperture_size) {
1405 unsigned long startpage;
1406 int pages = iommu_num_pages(iommu->exclusion_start,
1407 iommu->exclusion_length,
1408 PAGE_SIZE);
1409 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1410 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1411 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001412 }
1413
1414 /*
1415 * Check for areas already mapped as present in the new aperture
1416 * range and mark those pages as reserved in the allocator. Such
1417 * mappings may already exist as a result of requested unity
1418 * mappings for devices.
1419 */
1420 for (i = dma_dom->aperture[index]->offset;
1421 i < dma_dom->aperture_size;
1422 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001423 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001424 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1425 continue;
1426
Joerg Roedelfcd08612011-10-11 17:41:32 +02001427 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001428 }
1429
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001430 update_domain(&dma_dom->domain);
1431
Joerg Roedel9cabe892009-05-18 16:38:55 +02001432 return 0;
1433
1434out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001435 update_domain(&dma_dom->domain);
1436
Joerg Roedel9cabe892009-05-18 16:38:55 +02001437 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1438
1439 kfree(dma_dom->aperture[index]);
1440 dma_dom->aperture[index] = NULL;
1441
1442 return -ENOMEM;
1443}
1444
Joerg Roedel384de722009-05-15 12:30:05 +02001445static unsigned long dma_ops_area_alloc(struct device *dev,
1446 struct dma_ops_domain *dom,
1447 unsigned int pages,
1448 unsigned long align_mask,
1449 u64 dma_mask,
1450 unsigned long start)
1451{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001452 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001453 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1454 int i = start >> APERTURE_RANGE_SHIFT;
1455 unsigned long boundary_size;
1456 unsigned long address = -1;
1457 unsigned long limit;
1458
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001459 next_bit >>= PAGE_SHIFT;
1460
Joerg Roedel384de722009-05-15 12:30:05 +02001461 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1462 PAGE_SIZE) >> PAGE_SHIFT;
1463
1464 for (;i < max_index; ++i) {
1465 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1466
1467 if (dom->aperture[i]->offset >= dma_mask)
1468 break;
1469
1470 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1471 dma_mask >> PAGE_SHIFT);
1472
1473 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1474 limit, next_bit, pages, 0,
1475 boundary_size, align_mask);
1476 if (address != -1) {
1477 address = dom->aperture[i]->offset +
1478 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001479 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001480 break;
1481 }
1482
1483 next_bit = 0;
1484 }
1485
1486 return address;
1487}
1488
Joerg Roedeld3086442008-06-26 21:27:57 +02001489static unsigned long dma_ops_alloc_addresses(struct device *dev,
1490 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001491 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001492 unsigned long align_mask,
1493 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001494{
Joerg Roedeld3086442008-06-26 21:27:57 +02001495 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001496
Joerg Roedelfe16f082009-05-22 12:27:53 +02001497#ifdef CONFIG_IOMMU_STRESS
1498 dom->next_address = 0;
1499 dom->need_flush = true;
1500#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001501
Joerg Roedel384de722009-05-15 12:30:05 +02001502 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001503 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001504
Joerg Roedel1c655772008-09-04 18:40:05 +02001505 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001506 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001507 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1508 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001509 dom->need_flush = true;
1510 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001511
Joerg Roedel384de722009-05-15 12:30:05 +02001512 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001513 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001514
1515 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1516
1517 return address;
1518}
1519
Joerg Roedel431b2a22008-07-11 17:14:22 +02001520/*
1521 * The address free function.
1522 *
1523 * called with domain->lock held
1524 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001525static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1526 unsigned long address,
1527 unsigned int pages)
1528{
Joerg Roedel384de722009-05-15 12:30:05 +02001529 unsigned i = address >> APERTURE_RANGE_SHIFT;
1530 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001531
Joerg Roedel384de722009-05-15 12:30:05 +02001532 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1533
Joerg Roedel47bccd62009-05-22 12:40:54 +02001534#ifdef CONFIG_IOMMU_STRESS
1535 if (i < 4)
1536 return;
1537#endif
1538
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001539 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001540 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001541
1542 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001543
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001544 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001545
Joerg Roedeld3086442008-06-26 21:27:57 +02001546}
1547
Joerg Roedel431b2a22008-07-11 17:14:22 +02001548/****************************************************************************
1549 *
1550 * The next functions belong to the domain allocation. A domain is
1551 * allocated for every IOMMU as the default domain. If device isolation
1552 * is enabled, every device get its own domain. The most important thing
1553 * about domains is the page table mapping the DMA address space they
1554 * contain.
1555 *
1556 ****************************************************************************/
1557
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001558/*
1559 * This function adds a protection domain to the global protection domain list
1560 */
1561static void add_domain_to_list(struct protection_domain *domain)
1562{
1563 unsigned long flags;
1564
1565 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1566 list_add(&domain->list, &amd_iommu_pd_list);
1567 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1568}
1569
1570/*
1571 * This function removes a protection domain to the global
1572 * protection domain list
1573 */
1574static void del_domain_from_list(struct protection_domain *domain)
1575{
1576 unsigned long flags;
1577
1578 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1579 list_del(&domain->list);
1580 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1581}
1582
Joerg Roedelec487d12008-06-26 21:27:58 +02001583static u16 domain_id_alloc(void)
1584{
1585 unsigned long flags;
1586 int id;
1587
1588 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1589 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1590 BUG_ON(id == 0);
1591 if (id > 0 && id < MAX_DOMAIN_ID)
1592 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1593 else
1594 id = 0;
1595 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1596
1597 return id;
1598}
1599
Joerg Roedela2acfb72008-12-02 18:28:53 +01001600static void domain_id_free(int id)
1601{
1602 unsigned long flags;
1603
1604 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1605 if (id > 0 && id < MAX_DOMAIN_ID)
1606 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1607 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1608}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001609
Joerg Roedel86db2e52008-12-02 18:20:21 +01001610static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001611{
1612 int i, j;
1613 u64 *p1, *p2, *p3;
1614
Joerg Roedel86db2e52008-12-02 18:20:21 +01001615 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001616
1617 if (!p1)
1618 return;
1619
1620 for (i = 0; i < 512; ++i) {
1621 if (!IOMMU_PTE_PRESENT(p1[i]))
1622 continue;
1623
1624 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001625 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001626 if (!IOMMU_PTE_PRESENT(p2[j]))
1627 continue;
1628 p3 = IOMMU_PTE_PAGE(p2[j]);
1629 free_page((unsigned long)p3);
1630 }
1631
1632 free_page((unsigned long)p2);
1633 }
1634
1635 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001636
1637 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001638}
1639
Joerg Roedelb16137b2011-11-21 16:50:23 +01001640static void free_gcr3_tbl_level1(u64 *tbl)
1641{
1642 u64 *ptr;
1643 int i;
1644
1645 for (i = 0; i < 512; ++i) {
1646 if (!(tbl[i] & GCR3_VALID))
1647 continue;
1648
1649 ptr = __va(tbl[i] & PAGE_MASK);
1650
1651 free_page((unsigned long)ptr);
1652 }
1653}
1654
1655static void free_gcr3_tbl_level2(u64 *tbl)
1656{
1657 u64 *ptr;
1658 int i;
1659
1660 for (i = 0; i < 512; ++i) {
1661 if (!(tbl[i] & GCR3_VALID))
1662 continue;
1663
1664 ptr = __va(tbl[i] & PAGE_MASK);
1665
1666 free_gcr3_tbl_level1(ptr);
1667 }
1668}
1669
Joerg Roedel52815b72011-11-17 17:24:28 +01001670static void free_gcr3_table(struct protection_domain *domain)
1671{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001672 if (domain->glx == 2)
1673 free_gcr3_tbl_level2(domain->gcr3_tbl);
1674 else if (domain->glx == 1)
1675 free_gcr3_tbl_level1(domain->gcr3_tbl);
1676 else if (domain->glx != 0)
1677 BUG();
1678
Joerg Roedel52815b72011-11-17 17:24:28 +01001679 free_page((unsigned long)domain->gcr3_tbl);
1680}
1681
Joerg Roedel431b2a22008-07-11 17:14:22 +02001682/*
1683 * Free a domain, only used if something went wrong in the
1684 * allocation path and we need to free an already allocated page table
1685 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001686static void dma_ops_domain_free(struct dma_ops_domain *dom)
1687{
Joerg Roedel384de722009-05-15 12:30:05 +02001688 int i;
1689
Joerg Roedelec487d12008-06-26 21:27:58 +02001690 if (!dom)
1691 return;
1692
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001693 del_domain_from_list(&dom->domain);
1694
Joerg Roedel86db2e52008-12-02 18:20:21 +01001695 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001696
Joerg Roedel384de722009-05-15 12:30:05 +02001697 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1698 if (!dom->aperture[i])
1699 continue;
1700 free_page((unsigned long)dom->aperture[i]->bitmap);
1701 kfree(dom->aperture[i]);
1702 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001703
1704 kfree(dom);
1705}
1706
Joerg Roedel431b2a22008-07-11 17:14:22 +02001707/*
1708 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001709 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001710 * structures required for the dma_ops interface
1711 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001712static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001713{
1714 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001715
1716 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1717 if (!dma_dom)
1718 return NULL;
1719
1720 spin_lock_init(&dma_dom->domain.lock);
1721
1722 dma_dom->domain.id = domain_id_alloc();
1723 if (dma_dom->domain.id == 0)
1724 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001725 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001726 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001727 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001728 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001729 dma_dom->domain.priv = dma_dom;
1730 if (!dma_dom->domain.pt_root)
1731 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001732
Joerg Roedel1c655772008-09-04 18:40:05 +02001733 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001734 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001735
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001736 add_domain_to_list(&dma_dom->domain);
1737
Joerg Roedel576175c2009-11-23 19:08:46 +01001738 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001739 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001740
Joerg Roedel431b2a22008-07-11 17:14:22 +02001741 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001742 * mark the first page as allocated so we never return 0 as
1743 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001744 */
Joerg Roedel384de722009-05-15 12:30:05 +02001745 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001746 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001747
Joerg Roedelec487d12008-06-26 21:27:58 +02001748
1749 return dma_dom;
1750
1751free_dma_dom:
1752 dma_ops_domain_free(dma_dom);
1753
1754 return NULL;
1755}
1756
Joerg Roedel431b2a22008-07-11 17:14:22 +02001757/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001758 * little helper function to check whether a given protection domain is a
1759 * dma_ops domain
1760 */
1761static bool dma_ops_domain(struct protection_domain *domain)
1762{
1763 return domain->flags & PD_DMA_OPS_MASK;
1764}
1765
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001766static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001767{
Joerg Roedel132bd682011-11-17 14:18:46 +01001768 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001769 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001770
Joerg Roedel132bd682011-11-17 14:18:46 +01001771 if (domain->mode != PAGE_MODE_NONE)
1772 pte_root = virt_to_phys(domain->pt_root);
1773
Joerg Roedel38ddf412008-09-11 10:38:32 +02001774 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1775 << DEV_ENTRY_MODE_SHIFT;
1776 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001777
Joerg Roedelee6c2862011-11-09 12:06:03 +01001778 flags = amd_iommu_dev_table[devid].data[1];
1779
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001780 if (ats)
1781 flags |= DTE_FLAG_IOTLB;
1782
Joerg Roedel52815b72011-11-17 17:24:28 +01001783 if (domain->flags & PD_IOMMUV2_MASK) {
1784 u64 gcr3 = __pa(domain->gcr3_tbl);
1785 u64 glx = domain->glx;
1786 u64 tmp;
1787
1788 pte_root |= DTE_FLAG_GV;
1789 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1790
1791 /* First mask out possible old values for GCR3 table */
1792 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1793 flags &= ~tmp;
1794
1795 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1796 flags &= ~tmp;
1797
1798 /* Encode GCR3 table into DTE */
1799 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1800 pte_root |= tmp;
1801
1802 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1803 flags |= tmp;
1804
1805 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1806 flags |= tmp;
1807 }
1808
Joerg Roedelee6c2862011-11-09 12:06:03 +01001809 flags &= ~(0xffffUL);
1810 flags |= domain->id;
1811
1812 amd_iommu_dev_table[devid].data[1] = flags;
1813 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001814}
1815
Joerg Roedel15898bb2009-11-24 15:39:42 +01001816static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001817{
Joerg Roedel355bf552008-12-08 12:02:41 +01001818 /* remove entry from the device table seen by the hardware */
1819 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1820 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001821
Joerg Roedelc5cca142009-10-09 18:31:20 +02001822 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001823}
1824
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001825static void do_attach(struct iommu_dev_data *dev_data,
1826 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001827{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001828 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001829 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001830
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001831 iommu = amd_iommu_rlookup_table[dev_data->devid];
1832 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001833
1834 /* Update data structures */
1835 dev_data->domain = domain;
1836 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001837 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001838
1839 /* Do reference counting */
1840 domain->dev_iommu[iommu->index] += 1;
1841 domain->dev_cnt += 1;
1842
1843 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001844 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001845}
1846
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001847static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001848{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001849 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001850
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001851 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001852
Joerg Roedelc4596112009-11-20 14:57:32 +01001853 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001854 dev_data->domain->dev_iommu[iommu->index] -= 1;
1855 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001856
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001857 /* Update data structures */
1858 dev_data->domain = NULL;
1859 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001860 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001861
1862 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001863 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001864}
1865
1866/*
1867 * If a device is not yet associated with a domain, this function does
1868 * assigns it visible for the hardware
1869 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001870static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001871 struct protection_domain *domain)
1872{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001873 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001874
Joerg Roedel15898bb2009-11-24 15:39:42 +01001875 /* lock domain */
1876 spin_lock(&domain->lock);
1877
Joerg Roedel71f77582011-06-09 19:03:15 +02001878 if (dev_data->alias_data != NULL) {
1879 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001880
Joerg Roedel2b02b092011-06-09 17:48:39 +02001881 /* Some sanity checks */
1882 ret = -EBUSY;
1883 if (alias_data->domain != NULL &&
1884 alias_data->domain != domain)
1885 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001886
Joerg Roedel2b02b092011-06-09 17:48:39 +02001887 if (dev_data->domain != NULL &&
1888 dev_data->domain != domain)
1889 goto out_unlock;
1890
1891 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001892 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001893 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001894
1895 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01001896 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01001897
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001898 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001899 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001900
Joerg Roedel24100052009-11-25 15:59:57 +01001901 atomic_inc(&dev_data->bind);
1902
Julia Lawall84fe6c12010-05-27 12:31:51 +02001903 ret = 0;
1904
1905out_unlock:
1906
Joerg Roedel355bf552008-12-08 12:02:41 +01001907 /* ready */
1908 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001909
Julia Lawall84fe6c12010-05-27 12:31:51 +02001910 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001911}
1912
Joerg Roedel52815b72011-11-17 17:24:28 +01001913
1914static void pdev_iommuv2_disable(struct pci_dev *pdev)
1915{
1916 pci_disable_ats(pdev);
1917 pci_disable_pri(pdev);
1918 pci_disable_pasid(pdev);
1919}
1920
1921static int pdev_iommuv2_enable(struct pci_dev *pdev)
1922{
1923 int ret;
1924
1925 /* Only allow access to user-accessible pages */
1926 ret = pci_enable_pasid(pdev, 0);
1927 if (ret)
1928 goto out_err;
1929
1930 /* First reset the PRI state of the device */
1931 ret = pci_reset_pri(pdev);
1932 if (ret)
1933 goto out_err;
1934
1935 /* FIXME: Hardcode number of outstanding requests for now */
1936 ret = pci_enable_pri(pdev, 32);
1937 if (ret)
1938 goto out_err;
1939
1940 ret = pci_enable_ats(pdev, PAGE_SHIFT);
1941 if (ret)
1942 goto out_err;
1943
1944 return 0;
1945
1946out_err:
1947 pci_disable_pri(pdev);
1948 pci_disable_pasid(pdev);
1949
1950 return ret;
1951}
1952
Joerg Roedel15898bb2009-11-24 15:39:42 +01001953/*
1954 * If a device is not yet associated with a domain, this function does
1955 * assigns it visible for the hardware
1956 */
1957static int attach_device(struct device *dev,
1958 struct protection_domain *domain)
1959{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001960 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001961 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001962 unsigned long flags;
1963 int ret;
1964
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001965 dev_data = get_dev_data(dev);
1966
Joerg Roedel52815b72011-11-17 17:24:28 +01001967 if (domain->flags & PD_IOMMUV2_MASK) {
1968 if (!dev_data->iommu_v2 || !dev_data->passthrough)
1969 return -EINVAL;
1970
1971 if (pdev_iommuv2_enable(pdev) != 0)
1972 return -EINVAL;
1973
1974 dev_data->ats.enabled = true;
1975 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
1976 } else if (amd_iommu_iotlb_sup &&
1977 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001978 dev_data->ats.enabled = true;
1979 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
1980 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001981
Joerg Roedel15898bb2009-11-24 15:39:42 +01001982 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001983 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001984 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1985
1986 /*
1987 * We might boot into a crash-kernel here. The crashed kernel
1988 * left the caches in the IOMMU dirty. So we have to flush
1989 * here to evict all dirty stuff.
1990 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001991 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001992
1993 return ret;
1994}
1995
1996/*
1997 * Removes a device from a protection domain (unlocked)
1998 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001999static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002000{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002001 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002002 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002003
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002004 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002005
Joerg Roedel2ca76272010-01-22 16:45:31 +01002006 domain = dev_data->domain;
2007
2008 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002009
Joerg Roedel71f77582011-06-09 19:03:15 +02002010 if (dev_data->alias_data != NULL) {
2011 struct iommu_dev_data *alias_data = dev_data->alias_data;
2012
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002013 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002014 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002015 }
2016
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002017 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002018 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002019
Joerg Roedel2ca76272010-01-22 16:45:31 +01002020 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002021
Joerg Roedel21129f72009-09-01 11:59:42 +02002022 /*
2023 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002024 * passthrough domain if it is detached from any other domain.
2025 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002026 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002027 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002028 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002029 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002030}
2031
2032/*
2033 * Removes a device from a protection domain (with devtable_lock held)
2034 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002035static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002036{
Joerg Roedel52815b72011-11-17 17:24:28 +01002037 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002038 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002039 unsigned long flags;
2040
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002041 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002042 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002043
Joerg Roedel355bf552008-12-08 12:02:41 +01002044 /* lock device table */
2045 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002046 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002047 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002048
Joerg Roedel52815b72011-11-17 17:24:28 +01002049 if (domain->flags & PD_IOMMUV2_MASK)
2050 pdev_iommuv2_disable(to_pci_dev(dev));
2051 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002052 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002053
2054 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002055}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002056
Joerg Roedel15898bb2009-11-24 15:39:42 +01002057/*
2058 * Find out the protection domain structure for a given PCI device. This
2059 * will give us the pointer to the page table root for example.
2060 */
2061static struct protection_domain *domain_for_device(struct device *dev)
2062{
Joerg Roedel71f77582011-06-09 19:03:15 +02002063 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002064 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002065 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002066
Joerg Roedel657cbb62009-11-23 15:26:46 +01002067 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002068
Joerg Roedel2b02b092011-06-09 17:48:39 +02002069 if (dev_data->domain)
2070 return dev_data->domain;
2071
Joerg Roedel71f77582011-06-09 19:03:15 +02002072 if (dev_data->alias_data != NULL) {
2073 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002074
2075 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2076 if (alias_data->domain != NULL) {
2077 __attach_device(dev_data, alias_data->domain);
2078 dom = alias_data->domain;
2079 }
2080 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002081 }
2082
Joerg Roedel15898bb2009-11-24 15:39:42 +01002083 return dom;
2084}
2085
Joerg Roedele275a2a2008-12-10 18:27:25 +01002086static int device_change_notifier(struct notifier_block *nb,
2087 unsigned long action, void *data)
2088{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002089 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002090 struct protection_domain *domain;
2091 struct iommu_dev_data *dev_data;
2092 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002093 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002094 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002095 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002096
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002097 if (!check_device(dev))
2098 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002099
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002100 devid = get_device_id(dev);
2101 iommu = amd_iommu_rlookup_table[devid];
2102 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002103
2104 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002105 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002106
2107 domain = domain_for_device(dev);
2108
Joerg Roedele275a2a2008-12-10 18:27:25 +01002109 if (!domain)
2110 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002111 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002112 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002113 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002114 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002115 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002116
2117 iommu_init_device(dev);
2118
2119 domain = domain_for_device(dev);
2120
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002121 /* allocate a protection domain if a device is added */
2122 dma_domain = find_protection_domain(devid);
2123 if (dma_domain)
2124 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002125 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002126 if (!dma_domain)
2127 goto out;
2128 dma_domain->target_dev = devid;
2129
2130 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2131 list_add_tail(&dma_domain->list, &iommu_pd_list);
2132 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2133
2134 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002135 case BUS_NOTIFY_DEL_DEVICE:
2136
2137 iommu_uninit_device(dev);
2138
Joerg Roedele275a2a2008-12-10 18:27:25 +01002139 default:
2140 goto out;
2141 }
2142
Joerg Roedele275a2a2008-12-10 18:27:25 +01002143 iommu_completion_wait(iommu);
2144
2145out:
2146 return 0;
2147}
2148
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302149static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002150 .notifier_call = device_change_notifier,
2151};
Joerg Roedel355bf552008-12-08 12:02:41 +01002152
Joerg Roedel8638c492009-12-10 11:12:25 +01002153void amd_iommu_init_notifier(void)
2154{
2155 bus_register_notifier(&pci_bus_type, &device_nb);
2156}
2157
Joerg Roedel431b2a22008-07-11 17:14:22 +02002158/*****************************************************************************
2159 *
2160 * The next functions belong to the dma_ops mapping/unmapping code.
2161 *
2162 *****************************************************************************/
2163
2164/*
2165 * In the dma_ops path we only have the struct device. This function
2166 * finds the corresponding IOMMU, the protection domain and the
2167 * requestor id for a given device.
2168 * If the device is not yet associated with a domain this is also done
2169 * in this function.
2170 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002171static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002172{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002173 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002174 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002175 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002176
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002177 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002178 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002179
Joerg Roedel94f6d192009-11-24 16:40:02 +01002180 domain = domain_for_device(dev);
2181 if (domain != NULL && !dma_ops_domain(domain))
2182 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002183
Joerg Roedel94f6d192009-11-24 16:40:02 +01002184 if (domain != NULL)
2185 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002186
Joerg Roedel15898bb2009-11-24 15:39:42 +01002187 /* Device not bount yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002188 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002189 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002190 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2191 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002192 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002193 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002194
Joerg Roedel94f6d192009-11-24 16:40:02 +01002195 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002196}
2197
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002198static void update_device_table(struct protection_domain *domain)
2199{
Joerg Roedel492667d2009-11-27 13:25:47 +01002200 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002201
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002202 list_for_each_entry(dev_data, &domain->dev_list, list)
2203 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002204}
2205
2206static void update_domain(struct protection_domain *domain)
2207{
2208 if (!domain->updated)
2209 return;
2210
2211 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002212
2213 domain_flush_devices(domain);
2214 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002215
2216 domain->updated = false;
2217}
2218
Joerg Roedel431b2a22008-07-11 17:14:22 +02002219/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002220 * This function fetches the PTE for a given address in the aperture
2221 */
2222static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2223 unsigned long address)
2224{
Joerg Roedel384de722009-05-15 12:30:05 +02002225 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002226 u64 *pte, *pte_page;
2227
Joerg Roedel384de722009-05-15 12:30:05 +02002228 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2229 if (!aperture)
2230 return NULL;
2231
2232 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002233 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002234 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002235 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002236 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2237 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002238 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002239
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002240 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002241
2242 return pte;
2243}
2244
2245/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002246 * This is the generic map function. It maps one 4kb page at paddr to
2247 * the given address in the DMA address space for the domain.
2248 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002249static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002250 unsigned long address,
2251 phys_addr_t paddr,
2252 int direction)
2253{
2254 u64 *pte, __pte;
2255
2256 WARN_ON(address > dom->aperture_size);
2257
2258 paddr &= PAGE_MASK;
2259
Joerg Roedel8bda3092009-05-12 12:02:46 +02002260 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002261 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002262 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002263
2264 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2265
2266 if (direction == DMA_TO_DEVICE)
2267 __pte |= IOMMU_PTE_IR;
2268 else if (direction == DMA_FROM_DEVICE)
2269 __pte |= IOMMU_PTE_IW;
2270 else if (direction == DMA_BIDIRECTIONAL)
2271 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2272
2273 WARN_ON(*pte);
2274
2275 *pte = __pte;
2276
2277 return (dma_addr_t)address;
2278}
2279
Joerg Roedel431b2a22008-07-11 17:14:22 +02002280/*
2281 * The generic unmapping function for on page in the DMA address space.
2282 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002283static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002284 unsigned long address)
2285{
Joerg Roedel384de722009-05-15 12:30:05 +02002286 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002287 u64 *pte;
2288
2289 if (address >= dom->aperture_size)
2290 return;
2291
Joerg Roedel384de722009-05-15 12:30:05 +02002292 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2293 if (!aperture)
2294 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002295
Joerg Roedel384de722009-05-15 12:30:05 +02002296 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2297 if (!pte)
2298 return;
2299
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002300 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002301
2302 WARN_ON(!*pte);
2303
2304 *pte = 0ULL;
2305}
2306
Joerg Roedel431b2a22008-07-11 17:14:22 +02002307/*
2308 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002309 * contiguous memory region into DMA address space. It is used by all
2310 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002311 * Must be called with the domain lock held.
2312 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002313static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002314 struct dma_ops_domain *dma_dom,
2315 phys_addr_t paddr,
2316 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002317 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002318 bool align,
2319 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002320{
2321 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002322 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002323 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002324 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002325 int i;
2326
Joerg Roedele3c449f2008-10-15 22:02:11 -07002327 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002328 paddr &= PAGE_MASK;
2329
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002330 INC_STATS_COUNTER(total_map_requests);
2331
Joerg Roedelc1858972008-12-12 15:42:39 +01002332 if (pages > 1)
2333 INC_STATS_COUNTER(cross_page);
2334
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002335 if (align)
2336 align_mask = (1UL << get_order(size)) - 1;
2337
Joerg Roedel11b83882009-05-19 10:23:15 +02002338retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002339 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2340 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002341 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002342 /*
2343 * setting next_address here will let the address
2344 * allocator only scan the new allocated range in the
2345 * first run. This is a small optimization.
2346 */
2347 dma_dom->next_address = dma_dom->aperture_size;
2348
Joerg Roedel576175c2009-11-23 19:08:46 +01002349 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002350 goto out;
2351
2352 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002353 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002354 * allocation again
2355 */
2356 goto retry;
2357 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002358
2359 start = address;
2360 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002361 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002362 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002363 goto out_unmap;
2364
Joerg Roedelcb76c322008-06-26 21:28:00 +02002365 paddr += PAGE_SIZE;
2366 start += PAGE_SIZE;
2367 }
2368 address += offset;
2369
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002370 ADD_STATS_COUNTER(alloced_io_mem, size);
2371
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002372 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002373 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002374 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002375 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002376 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002377
Joerg Roedelcb76c322008-06-26 21:28:00 +02002378out:
2379 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002380
2381out_unmap:
2382
2383 for (--i; i >= 0; --i) {
2384 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002385 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002386 }
2387
2388 dma_ops_free_addresses(dma_dom, address, pages);
2389
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002390 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002391}
2392
Joerg Roedel431b2a22008-07-11 17:14:22 +02002393/*
2394 * Does the reverse of the __map_single function. Must be called with
2395 * the domain lock held too
2396 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002397static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002398 dma_addr_t dma_addr,
2399 size_t size,
2400 int dir)
2401{
Joerg Roedel04e04632010-09-23 16:12:48 +02002402 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002403 dma_addr_t i, start;
2404 unsigned int pages;
2405
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002406 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002407 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002408 return;
2409
Joerg Roedel04e04632010-09-23 16:12:48 +02002410 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002411 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002412 dma_addr &= PAGE_MASK;
2413 start = dma_addr;
2414
2415 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002416 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002417 start += PAGE_SIZE;
2418 }
2419
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002420 SUB_STATS_COUNTER(alloced_io_mem, size);
2421
Joerg Roedelcb76c322008-06-26 21:28:00 +02002422 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002423
Joerg Roedel80be3082008-11-06 14:59:05 +01002424 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002425 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002426 dma_dom->need_flush = false;
2427 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002428}
2429
Joerg Roedel431b2a22008-07-11 17:14:22 +02002430/*
2431 * The exported map_single function for dma_ops.
2432 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002433static dma_addr_t map_page(struct device *dev, struct page *page,
2434 unsigned long offset, size_t size,
2435 enum dma_data_direction dir,
2436 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002437{
2438 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002439 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002440 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002441 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002442 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002443
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002444 INC_STATS_COUNTER(cnt_map_single);
2445
Joerg Roedel94f6d192009-11-24 16:40:02 +01002446 domain = get_domain(dev);
2447 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002448 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002449 else if (IS_ERR(domain))
2450 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002451
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002452 dma_mask = *dev->dma_mask;
2453
Joerg Roedel4da70b92008-06-26 21:28:01 +02002454 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002455
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002456 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002457 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002458 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002459 goto out;
2460
Joerg Roedel17b124b2011-04-06 18:01:35 +02002461 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002462
2463out:
2464 spin_unlock_irqrestore(&domain->lock, flags);
2465
2466 return addr;
2467}
2468
Joerg Roedel431b2a22008-07-11 17:14:22 +02002469/*
2470 * The exported unmap_single function for dma_ops.
2471 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002472static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2473 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002474{
2475 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002476 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002477
Joerg Roedel146a6912008-12-12 15:07:12 +01002478 INC_STATS_COUNTER(cnt_unmap_single);
2479
Joerg Roedel94f6d192009-11-24 16:40:02 +01002480 domain = get_domain(dev);
2481 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002482 return;
2483
Joerg Roedel4da70b92008-06-26 21:28:01 +02002484 spin_lock_irqsave(&domain->lock, flags);
2485
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002486 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002487
Joerg Roedel17b124b2011-04-06 18:01:35 +02002488 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002489
2490 spin_unlock_irqrestore(&domain->lock, flags);
2491}
2492
Joerg Roedel431b2a22008-07-11 17:14:22 +02002493/*
2494 * This is a special map_sg function which is used if we should map a
2495 * device which is not handled by an AMD IOMMU in the system.
2496 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002497static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2498 int nelems, int dir)
2499{
2500 struct scatterlist *s;
2501 int i;
2502
2503 for_each_sg(sglist, s, nelems, i) {
2504 s->dma_address = (dma_addr_t)sg_phys(s);
2505 s->dma_length = s->length;
2506 }
2507
2508 return nelems;
2509}
2510
Joerg Roedel431b2a22008-07-11 17:14:22 +02002511/*
2512 * The exported map_sg function for dma_ops (handles scatter-gather
2513 * lists).
2514 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002515static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002516 int nelems, enum dma_data_direction dir,
2517 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002518{
2519 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002520 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002521 int i;
2522 struct scatterlist *s;
2523 phys_addr_t paddr;
2524 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002525 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002526
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002527 INC_STATS_COUNTER(cnt_map_sg);
2528
Joerg Roedel94f6d192009-11-24 16:40:02 +01002529 domain = get_domain(dev);
2530 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002531 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002532 else if (IS_ERR(domain))
2533 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002534
Joerg Roedel832a90c2008-09-18 15:54:23 +02002535 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002536
Joerg Roedel65b050a2008-06-26 21:28:02 +02002537 spin_lock_irqsave(&domain->lock, flags);
2538
2539 for_each_sg(sglist, s, nelems, i) {
2540 paddr = sg_phys(s);
2541
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002542 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002543 paddr, s->length, dir, false,
2544 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002545
2546 if (s->dma_address) {
2547 s->dma_length = s->length;
2548 mapped_elems++;
2549 } else
2550 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002551 }
2552
Joerg Roedel17b124b2011-04-06 18:01:35 +02002553 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002554
2555out:
2556 spin_unlock_irqrestore(&domain->lock, flags);
2557
2558 return mapped_elems;
2559unmap:
2560 for_each_sg(sglist, s, mapped_elems, i) {
2561 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002562 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002563 s->dma_length, dir);
2564 s->dma_address = s->dma_length = 0;
2565 }
2566
2567 mapped_elems = 0;
2568
2569 goto out;
2570}
2571
Joerg Roedel431b2a22008-07-11 17:14:22 +02002572/*
2573 * The exported map_sg function for dma_ops (handles scatter-gather
2574 * lists).
2575 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002576static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002577 int nelems, enum dma_data_direction dir,
2578 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002579{
2580 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002581 struct protection_domain *domain;
2582 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002583 int i;
2584
Joerg Roedel55877a62008-12-12 15:12:14 +01002585 INC_STATS_COUNTER(cnt_unmap_sg);
2586
Joerg Roedel94f6d192009-11-24 16:40:02 +01002587 domain = get_domain(dev);
2588 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002589 return;
2590
Joerg Roedel65b050a2008-06-26 21:28:02 +02002591 spin_lock_irqsave(&domain->lock, flags);
2592
2593 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002594 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002595 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002596 s->dma_address = s->dma_length = 0;
2597 }
2598
Joerg Roedel17b124b2011-04-06 18:01:35 +02002599 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002600
2601 spin_unlock_irqrestore(&domain->lock, flags);
2602}
2603
Joerg Roedel431b2a22008-07-11 17:14:22 +02002604/*
2605 * The exported alloc_coherent function for dma_ops.
2606 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002607static void *alloc_coherent(struct device *dev, size_t size,
2608 dma_addr_t *dma_addr, gfp_t flag)
2609{
2610 unsigned long flags;
2611 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002612 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002613 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002614 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002615
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002616 INC_STATS_COUNTER(cnt_alloc_coherent);
2617
Joerg Roedel94f6d192009-11-24 16:40:02 +01002618 domain = get_domain(dev);
2619 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002620 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2621 *dma_addr = __pa(virt_addr);
2622 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002623 } else if (IS_ERR(domain))
2624 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002625
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002626 dma_mask = dev->coherent_dma_mask;
2627 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2628 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002629
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002630 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2631 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302632 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002633
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002634 paddr = virt_to_phys(virt_addr);
2635
Joerg Roedel832a90c2008-09-18 15:54:23 +02002636 if (!dma_mask)
2637 dma_mask = *dev->dma_mask;
2638
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002639 spin_lock_irqsave(&domain->lock, flags);
2640
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002641 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002642 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002643
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002644 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002645 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002646 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002647 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002648
Joerg Roedel17b124b2011-04-06 18:01:35 +02002649 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002650
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002651 spin_unlock_irqrestore(&domain->lock, flags);
2652
2653 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002654
2655out_free:
2656
2657 free_pages((unsigned long)virt_addr, get_order(size));
2658
2659 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002660}
2661
Joerg Roedel431b2a22008-07-11 17:14:22 +02002662/*
2663 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002664 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002665static void free_coherent(struct device *dev, size_t size,
2666 void *virt_addr, dma_addr_t dma_addr)
2667{
2668 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002669 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002670
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002671 INC_STATS_COUNTER(cnt_free_coherent);
2672
Joerg Roedel94f6d192009-11-24 16:40:02 +01002673 domain = get_domain(dev);
2674 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002675 goto free_mem;
2676
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002677 spin_lock_irqsave(&domain->lock, flags);
2678
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002679 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002680
Joerg Roedel17b124b2011-04-06 18:01:35 +02002681 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002682
2683 spin_unlock_irqrestore(&domain->lock, flags);
2684
2685free_mem:
2686 free_pages((unsigned long)virt_addr, get_order(size));
2687}
2688
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002689/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002690 * This function is called by the DMA layer to find out if we can handle a
2691 * particular device. It is part of the dma_ops.
2692 */
2693static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2694{
Joerg Roedel420aef82009-11-23 16:14:57 +01002695 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002696}
2697
2698/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002699 * The function for pre-allocating protection domains.
2700 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002701 * If the driver core informs the DMA layer if a driver grabs a device
2702 * we don't need to preallocate the protection domains anymore.
2703 * For now we have to.
2704 */
Jaswinder Singh Rajput0e93dd82008-12-29 21:45:22 +05302705static void prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002706{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002707 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002708 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002709 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002710 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002711
Chris Wrightd18c69d2010-04-02 18:27:55 -07002712 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002713
2714 /* Do we handle this device? */
2715 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002716 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002717
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002718 dev_data = get_dev_data(&dev->dev);
2719 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
2720 /* Make sure passthrough domain is allocated */
2721 alloc_passthrough_domain();
2722 dev_data->passthrough = true;
2723 attach_device(&dev->dev, pt_domain);
2724 pr_info("AMD-Vi: Using passthough domain for device %s\n",
2725 dev_name(&dev->dev));
2726 }
2727
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002728 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002729 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002730 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002731
2732 devid = get_device_id(&dev->dev);
2733
Joerg Roedel87a64d52009-11-24 17:26:43 +01002734 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002735 if (!dma_dom)
2736 continue;
2737 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02002738 dma_dom->target_dev = devid;
2739
Joerg Roedel15898bb2009-11-24 15:39:42 +01002740 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01002741
Joerg Roedelbd60b732008-09-11 10:24:48 +02002742 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002743 }
2744}
2745
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002746static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002747 .alloc_coherent = alloc_coherent,
2748 .free_coherent = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002749 .map_page = map_page,
2750 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002751 .map_sg = map_sg,
2752 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002753 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002754};
2755
Joerg Roedel27c21272011-05-30 15:56:24 +02002756static unsigned device_dma_ops_init(void)
2757{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002758 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02002759 struct pci_dev *pdev = NULL;
2760 unsigned unhandled = 0;
2761
2762 for_each_pci_dev(pdev) {
2763 if (!check_device(&pdev->dev)) {
2764 unhandled += 1;
2765 continue;
2766 }
2767
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002768 dev_data = get_dev_data(&pdev->dev);
2769
2770 if (!dev_data->passthrough)
2771 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
2772 else
2773 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02002774 }
2775
2776 return unhandled;
2777}
2778
Joerg Roedel431b2a22008-07-11 17:14:22 +02002779/*
2780 * The function which clues the AMD IOMMU driver into dma_ops.
2781 */
Joerg Roedelf5325092010-01-22 17:44:35 +01002782
2783void __init amd_iommu_init_api(void)
2784{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02002785 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002786}
2787
Joerg Roedel6631ee92008-06-26 21:28:05 +02002788int __init amd_iommu_init_dma_ops(void)
2789{
2790 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02002791 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002792
Joerg Roedel431b2a22008-07-11 17:14:22 +02002793 /*
2794 * first allocate a default protection domain for every IOMMU we
2795 * found in the system. Devices not assigned to any other
2796 * protection domain will be assigned to the default one.
2797 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02002798 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01002799 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002800 if (iommu->default_dom == NULL)
2801 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01002802 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002803 ret = iommu_init_unity_mappings(iommu);
2804 if (ret)
2805 goto free_domains;
2806 }
2807
Joerg Roedel431b2a22008-07-11 17:14:22 +02002808 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01002809 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002810 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01002811 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02002812
2813 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002814 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002815
Joerg Roedel431b2a22008-07-11 17:14:22 +02002816 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02002817 unhandled = device_dma_ops_init();
2818 if (unhandled && max_pfn > MAX_DMA32_PFN) {
2819 /* There are unhandled devices - initialize swiotlb for them */
2820 swiotlb = 1;
2821 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02002822
Joerg Roedel7f265082008-12-12 13:50:21 +01002823 amd_iommu_stats_init();
2824
Joerg Roedel6631ee92008-06-26 21:28:05 +02002825 return 0;
2826
2827free_domains:
2828
Joerg Roedel3bd22172009-05-04 15:06:20 +02002829 for_each_iommu(iommu) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02002830 if (iommu->default_dom)
2831 dma_ops_domain_free(iommu->default_dom);
2832 }
2833
2834 return ret;
2835}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002836
2837/*****************************************************************************
2838 *
2839 * The following functions belong to the exported interface of AMD IOMMU
2840 *
2841 * This interface allows access to lower level functions of the IOMMU
2842 * like protection domain handling and assignement of devices to domains
2843 * which is not possible with the dma_ops interface.
2844 *
2845 *****************************************************************************/
2846
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002847static void cleanup_domain(struct protection_domain *domain)
2848{
Joerg Roedel492667d2009-11-27 13:25:47 +01002849 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002850 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002851
2852 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2853
Joerg Roedel492667d2009-11-27 13:25:47 +01002854 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002855 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01002856 atomic_set(&dev_data->bind, 0);
2857 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002858
2859 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2860}
2861
Joerg Roedel26508152009-08-26 16:52:40 +02002862static void protection_domain_free(struct protection_domain *domain)
2863{
2864 if (!domain)
2865 return;
2866
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002867 del_domain_from_list(domain);
2868
Joerg Roedel26508152009-08-26 16:52:40 +02002869 if (domain->id)
2870 domain_id_free(domain->id);
2871
2872 kfree(domain);
2873}
2874
2875static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002876{
2877 struct protection_domain *domain;
2878
2879 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2880 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002881 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002882
2883 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002884 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01002885 domain->id = domain_id_alloc();
2886 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02002887 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002888 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02002889
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002890 add_domain_to_list(domain);
2891
Joerg Roedel26508152009-08-26 16:52:40 +02002892 return domain;
2893
2894out_err:
2895 kfree(domain);
2896
2897 return NULL;
2898}
2899
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002900static int __init alloc_passthrough_domain(void)
2901{
2902 if (pt_domain != NULL)
2903 return 0;
2904
2905 /* allocate passthrough domain */
2906 pt_domain = protection_domain_alloc();
2907 if (!pt_domain)
2908 return -ENOMEM;
2909
2910 pt_domain->mode = PAGE_MODE_NONE;
2911
2912 return 0;
2913}
Joerg Roedel26508152009-08-26 16:52:40 +02002914static int amd_iommu_domain_init(struct iommu_domain *dom)
2915{
2916 struct protection_domain *domain;
2917
2918 domain = protection_domain_alloc();
2919 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01002920 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02002921
2922 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002923 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2924 if (!domain->pt_root)
2925 goto out_free;
2926
2927 dom->priv = domain;
2928
2929 return 0;
2930
2931out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02002932 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01002933
2934 return -ENOMEM;
2935}
2936
Joerg Roedel98383fc2008-12-02 18:34:12 +01002937static void amd_iommu_domain_destroy(struct iommu_domain *dom)
2938{
2939 struct protection_domain *domain = dom->priv;
2940
2941 if (!domain)
2942 return;
2943
2944 if (domain->dev_cnt > 0)
2945 cleanup_domain(domain);
2946
2947 BUG_ON(domain->dev_cnt != 0);
2948
Joerg Roedel132bd682011-11-17 14:18:46 +01002949 if (domain->mode != PAGE_MODE_NONE)
2950 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002951
Joerg Roedel52815b72011-11-17 17:24:28 +01002952 if (domain->flags & PD_IOMMUV2_MASK)
2953 free_gcr3_table(domain);
2954
Joerg Roedel8b408fe2010-03-08 14:20:07 +01002955 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002956
2957 dom->priv = NULL;
2958}
2959
Joerg Roedel684f2882008-12-08 12:07:44 +01002960static void amd_iommu_detach_device(struct iommu_domain *dom,
2961 struct device *dev)
2962{
Joerg Roedel657cbb62009-11-23 15:26:46 +01002963 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002964 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002965 u16 devid;
2966
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002967 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01002968 return;
2969
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002970 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002971
Joerg Roedel657cbb62009-11-23 15:26:46 +01002972 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002973 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002974
2975 iommu = amd_iommu_rlookup_table[devid];
2976 if (!iommu)
2977 return;
2978
Joerg Roedel684f2882008-12-08 12:07:44 +01002979 iommu_completion_wait(iommu);
2980}
2981
Joerg Roedel01106062008-12-02 19:34:11 +01002982static int amd_iommu_attach_device(struct iommu_domain *dom,
2983 struct device *dev)
2984{
2985 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002986 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01002987 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002988 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01002989
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002990 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01002991 return -EINVAL;
2992
Joerg Roedel657cbb62009-11-23 15:26:46 +01002993 dev_data = dev->archdata.iommu;
2994
Joerg Roedelf62dda62011-06-09 12:55:35 +02002995 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01002996 if (!iommu)
2997 return -EINVAL;
2998
Joerg Roedel657cbb62009-11-23 15:26:46 +01002999 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003000 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003001
Joerg Roedel15898bb2009-11-24 15:39:42 +01003002 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003003
3004 iommu_completion_wait(iommu);
3005
Joerg Roedel15898bb2009-11-24 15:39:42 +01003006 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003007}
3008
Joerg Roedel468e2362010-01-21 16:37:36 +01003009static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
3010 phys_addr_t paddr, int gfp_order, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003011{
Joerg Roedel468e2362010-01-21 16:37:36 +01003012 unsigned long page_size = 0x1000UL << gfp_order;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003013 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003014 int prot = 0;
3015 int ret;
3016
Joerg Roedel132bd682011-11-17 14:18:46 +01003017 if (domain->mode == PAGE_MODE_NONE)
3018 return -EINVAL;
3019
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003020 if (iommu_prot & IOMMU_READ)
3021 prot |= IOMMU_PROT_IR;
3022 if (iommu_prot & IOMMU_WRITE)
3023 prot |= IOMMU_PROT_IW;
3024
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003025 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003026 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003027 mutex_unlock(&domain->api_lock);
3028
Joerg Roedel795e74f2010-05-11 17:40:57 +02003029 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003030}
3031
Joerg Roedel468e2362010-01-21 16:37:36 +01003032static int amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3033 int gfp_order)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003034{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003035 struct protection_domain *domain = dom->priv;
Joerg Roedel468e2362010-01-21 16:37:36 +01003036 unsigned long page_size, unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003037
Joerg Roedel132bd682011-11-17 14:18:46 +01003038 if (domain->mode == PAGE_MODE_NONE)
3039 return -EINVAL;
3040
Joerg Roedel468e2362010-01-21 16:37:36 +01003041 page_size = 0x1000UL << gfp_order;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003042
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003043 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003044 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003045 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003046
Joerg Roedel17b124b2011-04-06 18:01:35 +02003047 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003048
Joerg Roedel468e2362010-01-21 16:37:36 +01003049 return get_order(unmap_size);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003050}
3051
Joerg Roedel645c4c82008-12-02 20:05:50 +01003052static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3053 unsigned long iova)
3054{
3055 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003056 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003057 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003058 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003059
Joerg Roedel132bd682011-11-17 14:18:46 +01003060 if (domain->mode == PAGE_MODE_NONE)
3061 return iova;
3062
Joerg Roedel24cd7722010-01-19 17:27:39 +01003063 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003064
Joerg Roedela6d41a42009-09-02 17:08:55 +02003065 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003066 return 0;
3067
Joerg Roedelf03152b2010-01-21 16:15:24 +01003068 if (PM_PTE_LEVEL(*pte) == 0)
3069 offset_mask = PAGE_SIZE - 1;
3070 else
3071 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3072
3073 __pte = *pte & PM_ADDR_MASK;
3074 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003075
3076 return paddr;
3077}
3078
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003079static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3080 unsigned long cap)
3081{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003082 switch (cap) {
3083 case IOMMU_CAP_CACHE_COHERENCY:
3084 return 1;
3085 }
3086
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003087 return 0;
3088}
3089
Joerg Roedel26961ef2008-12-03 17:00:17 +01003090static struct iommu_ops amd_iommu_ops = {
3091 .domain_init = amd_iommu_domain_init,
3092 .domain_destroy = amd_iommu_domain_destroy,
3093 .attach_dev = amd_iommu_attach_device,
3094 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003095 .map = amd_iommu_map,
3096 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003097 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003098 .domain_has_cap = amd_iommu_domain_has_cap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003099};
3100
Joerg Roedel0feae532009-08-26 15:26:30 +02003101/*****************************************************************************
3102 *
3103 * The next functions do a basic initialization of IOMMU for pass through
3104 * mode
3105 *
3106 * In passthrough mode the IOMMU is initialized and enabled but not used for
3107 * DMA-API translation.
3108 *
3109 *****************************************************************************/
3110
3111int __init amd_iommu_init_passthrough(void)
3112{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003113 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003114 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003115 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003116 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003117 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003118
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003119 ret = alloc_passthrough_domain();
3120 if (ret)
3121 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003122
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003123 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003124 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003125 continue;
3126
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003127 dev_data = get_dev_data(&dev->dev);
3128 dev_data->passthrough = true;
3129
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003130 devid = get_device_id(&dev->dev);
3131
Joerg Roedel15898bb2009-11-24 15:39:42 +01003132 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003133 if (!iommu)
3134 continue;
3135
Joerg Roedel15898bb2009-11-24 15:39:42 +01003136 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003137 }
3138
3139 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3140
3141 return 0;
3142}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003143
3144/* IOMMUv2 specific functions */
3145int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3146{
3147 return atomic_notifier_chain_register(&ppr_notifier, nb);
3148}
3149EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3150
3151int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3152{
3153 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3154}
3155EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003156
3157void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3158{
3159 struct protection_domain *domain = dom->priv;
3160 unsigned long flags;
3161
3162 spin_lock_irqsave(&domain->lock, flags);
3163
3164 /* Update data structure */
3165 domain->mode = PAGE_MODE_NONE;
3166 domain->updated = true;
3167
3168 /* Make changes visible to IOMMUs */
3169 update_domain(domain);
3170
3171 /* Page-table is not visible to IOMMU anymore, so free it */
3172 free_pagetable(domain);
3173
3174 spin_unlock_irqrestore(&domain->lock, flags);
3175}
3176EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003177
3178int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3179{
3180 struct protection_domain *domain = dom->priv;
3181 unsigned long flags;
3182 int levels, ret;
3183
3184 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3185 return -EINVAL;
3186
3187 /* Number of GCR3 table levels required */
3188 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3189 levels += 1;
3190
3191 if (levels > amd_iommu_max_glx_val)
3192 return -EINVAL;
3193
3194 spin_lock_irqsave(&domain->lock, flags);
3195
3196 /*
3197 * Save us all sanity checks whether devices already in the
3198 * domain support IOMMUv2. Just force that the domain has no
3199 * devices attached when it is switched into IOMMUv2 mode.
3200 */
3201 ret = -EBUSY;
3202 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3203 goto out;
3204
3205 ret = -ENOMEM;
3206 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3207 if (domain->gcr3_tbl == NULL)
3208 goto out;
3209
3210 domain->glx = levels;
3211 domain->flags |= PD_IOMMUV2_MASK;
3212 domain->updated = true;
3213
3214 update_domain(domain);
3215
3216 ret = 0;
3217
3218out:
3219 spin_unlock_irqrestore(&domain->lock, flags);
3220
3221 return ret;
3222}
3223EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003224
3225static int __flush_pasid(struct protection_domain *domain, int pasid,
3226 u64 address, bool size)
3227{
3228 struct iommu_dev_data *dev_data;
3229 struct iommu_cmd cmd;
3230 int i, ret;
3231
3232 if (!(domain->flags & PD_IOMMUV2_MASK))
3233 return -EINVAL;
3234
3235 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3236
3237 /*
3238 * IOMMU TLB needs to be flushed before Device TLB to
3239 * prevent device TLB refill from IOMMU TLB
3240 */
3241 for (i = 0; i < amd_iommus_present; ++i) {
3242 if (domain->dev_iommu[i] == 0)
3243 continue;
3244
3245 ret = iommu_queue_command(amd_iommus[i], &cmd);
3246 if (ret != 0)
3247 goto out;
3248 }
3249
3250 /* Wait until IOMMU TLB flushes are complete */
3251 domain_flush_complete(domain);
3252
3253 /* Now flush device TLBs */
3254 list_for_each_entry(dev_data, &domain->dev_list, list) {
3255 struct amd_iommu *iommu;
3256 int qdep;
3257
3258 BUG_ON(!dev_data->ats.enabled);
3259
3260 qdep = dev_data->ats.qdep;
3261 iommu = amd_iommu_rlookup_table[dev_data->devid];
3262
3263 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3264 qdep, address, size);
3265
3266 ret = iommu_queue_command(iommu, &cmd);
3267 if (ret != 0)
3268 goto out;
3269 }
3270
3271 /* Wait until all device TLBs are flushed */
3272 domain_flush_complete(domain);
3273
3274 ret = 0;
3275
3276out:
3277
3278 return ret;
3279}
3280
3281static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3282 u64 address)
3283{
3284 return __flush_pasid(domain, pasid, address, false);
3285}
3286
3287int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3288 u64 address)
3289{
3290 struct protection_domain *domain = dom->priv;
3291 unsigned long flags;
3292 int ret;
3293
3294 spin_lock_irqsave(&domain->lock, flags);
3295 ret = __amd_iommu_flush_page(domain, pasid, address);
3296 spin_unlock_irqrestore(&domain->lock, flags);
3297
3298 return ret;
3299}
3300EXPORT_SYMBOL(amd_iommu_flush_page);
3301
3302static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3303{
3304 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3305 true);
3306}
3307
3308int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3309{
3310 struct protection_domain *domain = dom->priv;
3311 unsigned long flags;
3312 int ret;
3313
3314 spin_lock_irqsave(&domain->lock, flags);
3315 ret = __amd_iommu_flush_tlb(domain, pasid);
3316 spin_unlock_irqrestore(&domain->lock, flags);
3317
3318 return ret;
3319}
3320EXPORT_SYMBOL(amd_iommu_flush_tlb);
3321
Joerg Roedelb16137b2011-11-21 16:50:23 +01003322static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3323{
3324 int index;
3325 u64 *pte;
3326
3327 while (true) {
3328
3329 index = (pasid >> (9 * level)) & 0x1ff;
3330 pte = &root[index];
3331
3332 if (level == 0)
3333 break;
3334
3335 if (!(*pte & GCR3_VALID)) {
3336 if (!alloc)
3337 return NULL;
3338
3339 root = (void *)get_zeroed_page(GFP_ATOMIC);
3340 if (root == NULL)
3341 return NULL;
3342
3343 *pte = __pa(root) | GCR3_VALID;
3344 }
3345
3346 root = __va(*pte & PAGE_MASK);
3347
3348 level -= 1;
3349 }
3350
3351 return pte;
3352}
3353
3354static int __set_gcr3(struct protection_domain *domain, int pasid,
3355 unsigned long cr3)
3356{
3357 u64 *pte;
3358
3359 if (domain->mode != PAGE_MODE_NONE)
3360 return -EINVAL;
3361
3362 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3363 if (pte == NULL)
3364 return -ENOMEM;
3365
3366 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3367
3368 return __amd_iommu_flush_tlb(domain, pasid);
3369}
3370
3371static int __clear_gcr3(struct protection_domain *domain, int pasid)
3372{
3373 u64 *pte;
3374
3375 if (domain->mode != PAGE_MODE_NONE)
3376 return -EINVAL;
3377
3378 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3379 if (pte == NULL)
3380 return 0;
3381
3382 *pte = 0;
3383
3384 return __amd_iommu_flush_tlb(domain, pasid);
3385}
3386
3387int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3388 unsigned long cr3)
3389{
3390 struct protection_domain *domain = dom->priv;
3391 unsigned long flags;
3392 int ret;
3393
3394 spin_lock_irqsave(&domain->lock, flags);
3395 ret = __set_gcr3(domain, pasid, cr3);
3396 spin_unlock_irqrestore(&domain->lock, flags);
3397
3398 return ret;
3399}
3400EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3401
3402int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3403{
3404 struct protection_domain *domain = dom->priv;
3405 unsigned long flags;
3406 int ret;
3407
3408 spin_lock_irqsave(&domain->lock, flags);
3409 ret = __clear_gcr3(domain, pasid);
3410 spin_unlock_irqrestore(&domain->lock, flags);
3411
3412 return ret;
3413}
3414EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);